Notice that all have the same low order bytes, but only differ in high order bytes. Also, they appear to be Odd, which strikes me as unlikely - Pointers are usually 2 or 4 byte aligned on even addresses.
Also, if it is just an hex of a string of bytes based on addresses, lower bytes comes first
Var m As New MemoryBlock(8)
m.Ptr(0) = m
// Little Endian = lower bytes first
Messagebox("Address Hex "+hex(m.Int64Value(0)) + " - In memory is " + EncodeHex(m.StringValue(0, 8)))