static int readUint16LE(List<int> array, [int offset = 0]) { return ((array[offset + 1] << 8) | array[offset]) & mask32; }