diff --git a/generator/sbpg/targets/resources/rust/sbp2json_cargo.toml b/generator/sbpg/targets/resources/rust/sbp2json_cargo.toml index 04074eac5c..3e45c82962 100644 --- a/generator/sbpg/targets/resources/rust/sbp2json_cargo.toml +++ b/generator/sbpg/targets/resources/rust/sbp2json_cargo.toml @@ -18,11 +18,11 @@ keywords = ["encoding", "parsing"] [dependencies.sbp] path = "../sbp" # TODO: replace with published `sbp` crate version -features = ["json"] +features = ["json", "float_roundtrip"] [dependencies] env_logger = "0.8" -serde_json = "1.0" +serde_json = "1.0.82" clap = { version = "3.1.15", features = ["derive"] } mimalloc = { version = "0.1", default-features = false } @@ -34,7 +34,7 @@ default-features = false sha2 = "0.8" hex = "0.4" assert_cmd = "1.0.1" -serde_json = "1.0" +serde_json = "1.0.82" assert-json-diff = "2.0" [profile.release] diff --git a/generator/sbpg/targets/resources/rust/sbp_cargo.toml b/generator/sbpg/targets/resources/rust/sbp_cargo.toml index 0d9ded174b..b6d7ba93de 100644 --- a/generator/sbpg/targets/resources/rust/sbp_cargo.toml +++ b/generator/sbpg/targets/resources/rust/sbp_cargo.toml @@ -21,6 +21,7 @@ readme = "../../README.md" default = [] async = ["futures", "dencode/async"] json = ["serde", "serde_json", "serde-big-array", "base64"] +float_roundtrip = ["serde_json/float_roundtrip"] link = ["slotmap"] [lib] @@ -45,11 +46,11 @@ features = ["derive"] optional = true [dependencies.serde_json] -version = "1.0" +version = "1" optional = true [dependencies.serde-big-array] -version = "0.4.1" +version = "0.4" optional = true [dependencies.base64] diff --git a/generator/sbpg/targets/resources/rust/sbp_messages_mod.rs b/generator/sbpg/targets/resources/rust/sbp_messages_mod.rs index 8b14ccced0..d54804610e 100644 --- a/generator/sbpg/targets/resources/rust/sbp_messages_mod.rs +++ b/generator/sbpg/targets/resources/rust/sbp_messages_mod.rs @@ -123,6 +123,26 @@ pub enum Sbp { Unknown( Unknown ), } +#[cfg(feature = "serde")] +impl<'de> serde::Deserialize<'de> for Sbp { + fn deserialize(deserializer: D) -> Result + where + D: serde::Deserializer<'de>, + { + let value = serde_json::Value::deserialize(deserializer)?; + match value.get("msg_type").and_then(|v| v.as_u64()).and_then(|v| v.try_into().ok()) { + ((*- for m in msgs *)) + Some( (((m.msg_name)))::MESSAGE_TYPE) => { + serde_json::from_value::<(((m.msg_name)))>(value).map(Sbp::(((m.msg_name))) ) + }, + ((*- endfor *)) + _ => { + serde_json::from_value::(value).map(Sbp::Unknown) + }, + }.map_err(serde::de::Error::custom) + } +} + impl Sbp { /// Parse a message from a [Frame](crate::Frame). /// diff --git a/generator/sbpg/targets/resources/rust/sbp_messages_template.rs b/generator/sbpg/targets/resources/rust/sbp_messages_template.rs index c1295b533d..8c37cd3c78 100644 --- a/generator/sbpg/targets/resources/rust/sbp_messages_template.rs +++ b/generator/sbpg/targets/resources/rust/sbp_messages_template.rs @@ -41,12 +41,12 @@ use crate::messages::(((i)))::*; ((*- elif m.short_desc *)) /// (((m.short_desc))) ((*- endif *)) -#[cfg_attr(feature = "serde", derive(serde::Serialize))] +#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] #[derive(Debug, PartialEq, Clone)] pub struct (((m.msg_name))) { ((*- if m.is_real_message *)) /// The message sender_id - #[cfg_attr(feature = "serde", serde(skip_serializing))] + #[cfg_attr(feature = "serde", serde(skip_serializing, alias = "sender"))] pub sender_id: Option, ((*- endif *)) ((*- for f in m.fields *)) @@ -54,9 +54,9 @@ pub struct (((m.msg_name))) { /// (((f.desc | commentify(indent=2) ))) ((*- endif *)) ((*- if f.type_id == "array" and "size" in f.options and f.options["size"].value >= 32 *)) - #[cfg_attr(feature = "serde", serde(with="BigArray", rename(serialize = "(((f.identifier)))")))] + #[cfg_attr(feature = "serde", serde(with="BigArray", rename = "(((f.identifier)))"))] ((*- else *)) - #[cfg_attr(feature = "serde", serde(rename(serialize = "(((f.identifier)))")))] + #[cfg_attr(feature = "serde", serde(rename = "(((f.identifier)))"))] ((*- endif *)) pub (((f.field_name))): (((f.type))), diff --git a/rust/sbp/Cargo.toml b/rust/sbp/Cargo.toml index 7c2590dffd..2624f189ac 100644 --- a/rust/sbp/Cargo.toml +++ b/rust/sbp/Cargo.toml @@ -21,6 +21,7 @@ readme = "../../README.md" default = [] async = ["futures", "dencode/async"] json = ["serde", "serde_json", "serde-big-array", "base64"] +float_roundtrip = ["serde_json/float_roundtrip"] link = ["slotmap"] [lib] @@ -45,11 +46,11 @@ features = ["derive"] optional = true [dependencies.serde_json] -version = "1.0" +version = "1" optional = true [dependencies.serde-big-array] -version = "0.4.1" +version = "0.4" optional = true [dependencies.base64] diff --git a/rust/sbp/src/json/de.rs b/rust/sbp/src/json/de.rs index be21da9596..e0dcc83042 100644 --- a/rust/sbp/src/json/de.rs +++ b/rust/sbp/src/json/de.rs @@ -17,6 +17,16 @@ pub fn iter_messages(input: R) -> impl Iterator( + input: R, +) -> impl Iterator> { + Deserializer::from_reader(input) + .into_iter() + .map(|msg| msg.map_err(JsonError::SerdeJsonError)) +} + /// Deserialize the IO stream into an iterator of [Json2JsonInput] messages. pub fn iter_json2json_messages( input: R, diff --git a/rust/sbp/src/json/mod.rs b/rust/sbp/src/json/mod.rs index 5bafe71688..e818fe42cc 100644 --- a/rust/sbp/src/json/mod.rs +++ b/rust/sbp/src/json/mod.rs @@ -13,7 +13,7 @@ pub use serde_json::ser::CompactFormatter; #[cfg(feature = "async")] pub use de::stream_messages; -pub use de::{iter_json2json_messages, iter_messages}; +pub use de::{iter_json2json_messages, iter_messages, iter_messages_from_fields}; pub use ser::{to_vec, to_writer, Json2JsonEncoder, JsonEncoder}; diff --git a/rust/sbp/src/messages/acquisition.rs b/rust/sbp/src/messages/acquisition.rs index 98c1b8e8ec..6682daeab9 100644 --- a/rust/sbp/src/messages/acquisition.rs +++ b/rust/sbp/src/messages/acquisition.rs @@ -35,44 +35,44 @@ pub mod acq_sv_profile { /// profile during acquisition time. The message is used to debug and measure /// the performance. /// - #[cfg_attr(feature = "serde", derive(serde::Serialize))] + #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] #[derive(Debug, PartialEq, Clone)] pub struct AcqSvProfile { /// SV search job type (deep, fallback, etc) - #[cfg_attr(feature = "serde", serde(rename(serialize = "job_type")))] + #[cfg_attr(feature = "serde", serde(rename = "job_type"))] pub job_type: u8, /// Acquisition status 1 is Success, 0 is Failure - #[cfg_attr(feature = "serde", serde(rename(serialize = "status")))] + #[cfg_attr(feature = "serde", serde(rename = "status"))] pub status: u8, /// CN0 value. Only valid if status is '1' - #[cfg_attr(feature = "serde", serde(rename(serialize = "cn0")))] + #[cfg_attr(feature = "serde", serde(rename = "cn0"))] pub cn0: u16, /// Acquisition integration time - #[cfg_attr(feature = "serde", serde(rename(serialize = "int_time")))] + #[cfg_attr(feature = "serde", serde(rename = "int_time"))] pub int_time: u8, /// GNSS signal for which acquisition was attempted - #[cfg_attr(feature = "serde", serde(rename(serialize = "sid")))] + #[cfg_attr(feature = "serde", serde(rename = "sid"))] pub sid: GnssSignal, /// Acq frequency bin width - #[cfg_attr(feature = "serde", serde(rename(serialize = "bin_width")))] + #[cfg_attr(feature = "serde", serde(rename = "bin_width"))] pub bin_width: u16, /// Timestamp of the job complete event - #[cfg_attr(feature = "serde", serde(rename(serialize = "timestamp")))] + #[cfg_attr(feature = "serde", serde(rename = "timestamp"))] pub timestamp: u32, /// Time spent to search for sid.code - #[cfg_attr(feature = "serde", serde(rename(serialize = "time_spent")))] + #[cfg_attr(feature = "serde", serde(rename = "time_spent"))] pub time_spent: u32, /// Doppler range lowest frequency - #[cfg_attr(feature = "serde", serde(rename(serialize = "cf_min")))] + #[cfg_attr(feature = "serde", serde(rename = "cf_min"))] pub cf_min: i32, /// Doppler range highest frequency - #[cfg_attr(feature = "serde", serde(rename(serialize = "cf_max")))] + #[cfg_attr(feature = "serde", serde(rename = "cf_max"))] pub cf_max: i32, /// Doppler value of detected peak. Only valid if status is '1' - #[cfg_attr(feature = "serde", serde(rename(serialize = "cf")))] + #[cfg_attr(feature = "serde", serde(rename = "cf"))] pub cf: i32, /// Codephase of detected peak. Only valid if status is '1' - #[cfg_attr(feature = "serde", serde(rename(serialize = "cp")))] + #[cfg_attr(feature = "serde", serde(rename = "cp"))] pub cp: u32, } @@ -147,44 +147,44 @@ pub mod acq_sv_profile_dep { /// /// Deprecated. /// - #[cfg_attr(feature = "serde", derive(serde::Serialize))] + #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] #[derive(Debug, PartialEq, Clone)] pub struct AcqSvProfileDep { /// SV search job type (deep, fallback, etc) - #[cfg_attr(feature = "serde", serde(rename(serialize = "job_type")))] + #[cfg_attr(feature = "serde", serde(rename = "job_type"))] pub job_type: u8, /// Acquisition status 1 is Success, 0 is Failure - #[cfg_attr(feature = "serde", serde(rename(serialize = "status")))] + #[cfg_attr(feature = "serde", serde(rename = "status"))] pub status: u8, /// CN0 value. Only valid if status is '1' - #[cfg_attr(feature = "serde", serde(rename(serialize = "cn0")))] + #[cfg_attr(feature = "serde", serde(rename = "cn0"))] pub cn0: u16, /// Acquisition integration time - #[cfg_attr(feature = "serde", serde(rename(serialize = "int_time")))] + #[cfg_attr(feature = "serde", serde(rename = "int_time"))] pub int_time: u8, /// GNSS signal for which acquisition was attempted - #[cfg_attr(feature = "serde", serde(rename(serialize = "sid")))] + #[cfg_attr(feature = "serde", serde(rename = "sid"))] pub sid: GnssSignalDep, /// Acq frequency bin width - #[cfg_attr(feature = "serde", serde(rename(serialize = "bin_width")))] + #[cfg_attr(feature = "serde", serde(rename = "bin_width"))] pub bin_width: u16, /// Timestamp of the job complete event - #[cfg_attr(feature = "serde", serde(rename(serialize = "timestamp")))] + #[cfg_attr(feature = "serde", serde(rename = "timestamp"))] pub timestamp: u32, /// Time spent to search for sid.code - #[cfg_attr(feature = "serde", serde(rename(serialize = "time_spent")))] + #[cfg_attr(feature = "serde", serde(rename = "time_spent"))] pub time_spent: u32, /// Doppler range lowest frequency - #[cfg_attr(feature = "serde", serde(rename(serialize = "cf_min")))] + #[cfg_attr(feature = "serde", serde(rename = "cf_min"))] pub cf_min: i32, /// Doppler range highest frequency - #[cfg_attr(feature = "serde", serde(rename(serialize = "cf_max")))] + #[cfg_attr(feature = "serde", serde(rename = "cf_max"))] pub cf_max: i32, /// Doppler value of detected peak. Only valid if status is '1' - #[cfg_attr(feature = "serde", serde(rename(serialize = "cf")))] + #[cfg_attr(feature = "serde", serde(rename = "cf"))] pub cf: i32, /// Codephase of detected peak. Only valid if status is '1' - #[cfg_attr(feature = "serde", serde(rename(serialize = "cp")))] + #[cfg_attr(feature = "serde", serde(rename = "cp"))] pub cp: u32, } @@ -262,23 +262,23 @@ pub mod msg_acq_result { /// range. It contains the parameters of the point in the acquisition search /// space with the best carrier-to-noise (CN/0) ratio. /// - #[cfg_attr(feature = "serde", derive(serde::Serialize))] + #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] #[derive(Debug, PartialEq, Clone)] pub struct MsgAcqResult { /// The message sender_id - #[cfg_attr(feature = "serde", serde(skip_serializing))] + #[cfg_attr(feature = "serde", serde(skip_serializing, alias = "sender"))] pub sender_id: Option, /// CN/0 of best point - #[cfg_attr(feature = "serde", serde(rename(serialize = "cn0")))] + #[cfg_attr(feature = "serde", serde(rename = "cn0"))] pub cn0: f32, /// Code phase of best point - #[cfg_attr(feature = "serde", serde(rename(serialize = "cp")))] + #[cfg_attr(feature = "serde", serde(rename = "cp"))] pub cp: f32, /// Carrier frequency of best point - #[cfg_attr(feature = "serde", serde(rename(serialize = "cf")))] + #[cfg_attr(feature = "serde", serde(rename = "cf"))] pub cf: f32, /// GNSS signal for which acquisition was attempted - #[cfg_attr(feature = "serde", serde(rename(serialize = "sid")))] + #[cfg_attr(feature = "serde", serde(rename = "sid"))] pub sid: GnssSignal, } @@ -355,25 +355,25 @@ pub mod msg_acq_result_dep_a { /// /// Deprecated. /// - #[cfg_attr(feature = "serde", derive(serde::Serialize))] + #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] #[derive(Debug, PartialEq, Clone)] pub struct MsgAcqResultDepA { /// The message sender_id - #[cfg_attr(feature = "serde", serde(skip_serializing))] + #[cfg_attr(feature = "serde", serde(skip_serializing, alias = "sender"))] pub sender_id: Option, /// SNR of best point. Currently dimensionless, but will have units of dB Hz /// in the revision of this message. - #[cfg_attr(feature = "serde", serde(rename(serialize = "snr")))] + #[cfg_attr(feature = "serde", serde(rename = "snr"))] pub snr: f32, /// Code phase of best point - #[cfg_attr(feature = "serde", serde(rename(serialize = "cp")))] + #[cfg_attr(feature = "serde", serde(rename = "cp"))] pub cp: f32, /// Carrier frequency of best point - #[cfg_attr(feature = "serde", serde(rename(serialize = "cf")))] + #[cfg_attr(feature = "serde", serde(rename = "cf"))] pub cf: f32, /// PRN-1 identifier of the satellite signal for which acquisition was /// attempted - #[cfg_attr(feature = "serde", serde(rename(serialize = "prn")))] + #[cfg_attr(feature = "serde", serde(rename = "prn"))] pub prn: u8, } @@ -450,24 +450,24 @@ pub mod msg_acq_result_dep_b { /// /// Deprecated. /// - #[cfg_attr(feature = "serde", derive(serde::Serialize))] + #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] #[derive(Debug, PartialEq, Clone)] pub struct MsgAcqResultDepB { /// The message sender_id - #[cfg_attr(feature = "serde", serde(skip_serializing))] + #[cfg_attr(feature = "serde", serde(skip_serializing, alias = "sender"))] pub sender_id: Option, /// SNR of best point. Currently in arbitrary SNR points, but will be in /// units of dB Hz in a later revision of this message. - #[cfg_attr(feature = "serde", serde(rename(serialize = "snr")))] + #[cfg_attr(feature = "serde", serde(rename = "snr"))] pub snr: f32, /// Code phase of best point - #[cfg_attr(feature = "serde", serde(rename(serialize = "cp")))] + #[cfg_attr(feature = "serde", serde(rename = "cp"))] pub cp: f32, /// Carrier frequency of best point - #[cfg_attr(feature = "serde", serde(rename(serialize = "cf")))] + #[cfg_attr(feature = "serde", serde(rename = "cf"))] pub cf: f32, /// GNSS signal for which acquisition was attempted - #[cfg_attr(feature = "serde", serde(rename(serialize = "sid")))] + #[cfg_attr(feature = "serde", serde(rename = "sid"))] pub sid: GnssSignalDep, } @@ -544,23 +544,23 @@ pub mod msg_acq_result_dep_c { /// /// Deprecated. /// - #[cfg_attr(feature = "serde", derive(serde::Serialize))] + #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] #[derive(Debug, PartialEq, Clone)] pub struct MsgAcqResultDepC { /// The message sender_id - #[cfg_attr(feature = "serde", serde(skip_serializing))] + #[cfg_attr(feature = "serde", serde(skip_serializing, alias = "sender"))] pub sender_id: Option, /// CN/0 of best point - #[cfg_attr(feature = "serde", serde(rename(serialize = "cn0")))] + #[cfg_attr(feature = "serde", serde(rename = "cn0"))] pub cn0: f32, /// Code phase of best point - #[cfg_attr(feature = "serde", serde(rename(serialize = "cp")))] + #[cfg_attr(feature = "serde", serde(rename = "cp"))] pub cp: f32, /// Carrier frequency of best point - #[cfg_attr(feature = "serde", serde(rename(serialize = "cf")))] + #[cfg_attr(feature = "serde", serde(rename = "cf"))] pub cf: f32, /// GNSS signal for which acquisition was attempted - #[cfg_attr(feature = "serde", serde(rename(serialize = "sid")))] + #[cfg_attr(feature = "serde", serde(rename = "sid"))] pub sid: GnssSignalDep, } @@ -638,14 +638,14 @@ pub mod msg_acq_sv_profile { /// The message describes all SV profiles during acquisition time. The message /// is used to debug and measure the performance. /// - #[cfg_attr(feature = "serde", derive(serde::Serialize))] + #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] #[derive(Debug, PartialEq, Clone)] pub struct MsgAcqSvProfile { /// The message sender_id - #[cfg_attr(feature = "serde", serde(skip_serializing))] + #[cfg_attr(feature = "serde", serde(skip_serializing, alias = "sender"))] pub sender_id: Option, /// SV profiles during acquisition time - #[cfg_attr(feature = "serde", serde(rename(serialize = "acq_sv_profile")))] + #[cfg_attr(feature = "serde", serde(rename = "acq_sv_profile"))] pub acq_sv_profile: Vec, } @@ -710,14 +710,14 @@ pub mod msg_acq_sv_profile_dep { /// /// Deprecated. /// - #[cfg_attr(feature = "serde", derive(serde::Serialize))] + #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] #[derive(Debug, PartialEq, Clone)] pub struct MsgAcqSvProfileDep { /// The message sender_id - #[cfg_attr(feature = "serde", serde(skip_serializing))] + #[cfg_attr(feature = "serde", serde(skip_serializing, alias = "sender"))] pub sender_id: Option, /// SV profiles during acquisition time - #[cfg_attr(feature = "serde", serde(rename(serialize = "acq_sv_profile")))] + #[cfg_attr(feature = "serde", serde(rename = "acq_sv_profile"))] pub acq_sv_profile: Vec, } diff --git a/rust/sbp/src/messages/bootload.rs b/rust/sbp/src/messages/bootload.rs index 14d08cf2ad..35b038c99a 100644 --- a/rust/sbp/src/messages/bootload.rs +++ b/rust/sbp/src/messages/bootload.rs @@ -34,14 +34,14 @@ pub mod msg_bootloader_handshake_dep_a { /// /// Deprecated. /// - #[cfg_attr(feature = "serde", derive(serde::Serialize))] + #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] #[derive(Debug, PartialEq, Clone)] pub struct MsgBootloaderHandshakeDepA { /// The message sender_id - #[cfg_attr(feature = "serde", serde(skip_serializing))] + #[cfg_attr(feature = "serde", serde(skip_serializing, alias = "sender"))] pub sender_id: Option, /// Version number string (not NULL terminated) - #[cfg_attr(feature = "serde", serde(rename(serialize = "handshake")))] + #[cfg_attr(feature = "serde", serde(rename = "handshake"))] pub handshake: Vec, } @@ -107,11 +107,11 @@ pub mod msg_bootloader_handshake_req { /// between the device bootloader and the host. The response from the device /// is MSG_BOOTLOADER_HANDSHAKE_RESP. /// - #[cfg_attr(feature = "serde", derive(serde::Serialize))] + #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] #[derive(Debug, PartialEq, Clone)] pub struct MsgBootloaderHandshakeReq { /// The message sender_id - #[cfg_attr(feature = "serde", serde(skip_serializing))] + #[cfg_attr(feature = "serde", serde(skip_serializing, alias = "sender"))] pub sender_id: Option, } @@ -173,17 +173,17 @@ pub mod msg_bootloader_handshake_resp { /// MSG_BOOTLOADER_HANDSHAKE_REQ. The payload contains the bootloader version /// number and the SBP protocol version number. /// - #[cfg_attr(feature = "serde", derive(serde::Serialize))] + #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] #[derive(Debug, PartialEq, Clone)] pub struct MsgBootloaderHandshakeResp { /// The message sender_id - #[cfg_attr(feature = "serde", serde(skip_serializing))] + #[cfg_attr(feature = "serde", serde(skip_serializing, alias = "sender"))] pub sender_id: Option, /// Bootloader flags - #[cfg_attr(feature = "serde", serde(rename(serialize = "flags")))] + #[cfg_attr(feature = "serde", serde(rename = "flags"))] pub flags: u32, /// Bootloader version number - #[cfg_attr(feature = "serde", serde(rename(serialize = "version")))] + #[cfg_attr(feature = "serde", serde(rename = "version"))] pub version: SbpString, Unterminated>, } @@ -292,14 +292,14 @@ pub mod msg_bootloader_jump_to_app { /// /// The host initiates the bootloader to jump to the application. /// - #[cfg_attr(feature = "serde", derive(serde::Serialize))] + #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] #[derive(Debug, PartialEq, Clone)] pub struct MsgBootloaderJumpToApp { /// The message sender_id - #[cfg_attr(feature = "serde", serde(skip_serializing))] + #[cfg_attr(feature = "serde", serde(skip_serializing, alias = "sender"))] pub sender_id: Option, /// Ignored by the device - #[cfg_attr(feature = "serde", serde(rename(serialize = "jump")))] + #[cfg_attr(feature = "serde", serde(rename = "jump"))] pub jump: u8, } @@ -368,11 +368,11 @@ pub mod msg_nap_device_dna_req { /// that this ID is tied to the FPGA, and not related to the Piksi's serial /// number. /// - #[cfg_attr(feature = "serde", derive(serde::Serialize))] + #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] #[derive(Debug, PartialEq, Clone)] pub struct MsgNapDeviceDnaReq { /// The message sender_id - #[cfg_attr(feature = "serde", serde(skip_serializing))] + #[cfg_attr(feature = "serde", serde(skip_serializing, alias = "sender"))] pub sender_id: Option, } @@ -436,14 +436,14 @@ pub mod msg_nap_device_dna_resp { /// that this ID is tied to the FPGA, and not related to the Piksi's serial /// number. /// - #[cfg_attr(feature = "serde", derive(serde::Serialize))] + #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] #[derive(Debug, PartialEq, Clone)] pub struct MsgNapDeviceDnaResp { /// The message sender_id - #[cfg_attr(feature = "serde", serde(skip_serializing))] + #[cfg_attr(feature = "serde", serde(skip_serializing, alias = "sender"))] pub sender_id: Option, /// 57-bit SwiftNAP FPGA Device ID. Remaining bits are padded on the right. - #[cfg_attr(feature = "serde", serde(rename(serialize = "dna")))] + #[cfg_attr(feature = "serde", serde(rename = "dna"))] pub dna: [u8; 8], } diff --git a/rust/sbp/src/messages/ext_events.rs b/rust/sbp/src/messages/ext_events.rs index dd36b3d8d1..0fb2f18e22 100644 --- a/rust/sbp/src/messages/ext_events.rs +++ b/rust/sbp/src/messages/ext_events.rs @@ -27,27 +27,27 @@ pub mod msg_ext_event { /// Reports detection of an external event, the GPS time it occurred, which /// pin it was and whether it was rising or falling. /// - #[cfg_attr(feature = "serde", derive(serde::Serialize))] + #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] #[derive(Debug, PartialEq, Clone)] pub struct MsgExtEvent { /// The message sender_id - #[cfg_attr(feature = "serde", serde(skip_serializing))] + #[cfg_attr(feature = "serde", serde(skip_serializing, alias = "sender"))] pub sender_id: Option, /// GPS week number - #[cfg_attr(feature = "serde", serde(rename(serialize = "wn")))] + #[cfg_attr(feature = "serde", serde(rename = "wn"))] pub wn: u16, /// GPS time of week rounded to the nearest millisecond - #[cfg_attr(feature = "serde", serde(rename(serialize = "tow")))] + #[cfg_attr(feature = "serde", serde(rename = "tow"))] pub tow: u32, /// Nanosecond residual of millisecond-rounded TOW (ranges from -500000 to /// 500000) - #[cfg_attr(feature = "serde", serde(rename(serialize = "ns_residual")))] + #[cfg_attr(feature = "serde", serde(rename = "ns_residual"))] pub ns_residual: i32, /// Flags - #[cfg_attr(feature = "serde", serde(rename(serialize = "flags")))] + #[cfg_attr(feature = "serde", serde(rename = "flags"))] pub flags: u8, /// Pin number. 0..9 = DEBUG0..9. - #[cfg_attr(feature = "serde", serde(rename(serialize = "pin")))] + #[cfg_attr(feature = "serde", serde(rename = "pin"))] pub pin: u8, } diff --git a/rust/sbp/src/messages/file_io.rs b/rust/sbp/src/messages/file_io.rs index c174d0ce2b..c62cd7fa6d 100644 --- a/rust/sbp/src/messages/file_io.rs +++ b/rust/sbp/src/messages/file_io.rs @@ -43,14 +43,14 @@ pub mod msg_fileio_config_req { /// window of FileIO data that can be in-flight during read or write /// operations. /// - #[cfg_attr(feature = "serde", derive(serde::Serialize))] + #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] #[derive(Debug, PartialEq, Clone)] pub struct MsgFileioConfigReq { /// The message sender_id - #[cfg_attr(feature = "serde", serde(skip_serializing))] + #[cfg_attr(feature = "serde", serde(skip_serializing, alias = "sender"))] pub sender_id: Option, /// Advice sequence number - #[cfg_attr(feature = "serde", serde(rename(serialize = "sequence")))] + #[cfg_attr(feature = "serde", serde(rename = "sequence"))] pub sequence: u32, } @@ -118,23 +118,23 @@ pub mod msg_fileio_config_resp { /// window of FileIO data that can be in-flight during read or write /// operations. /// - #[cfg_attr(feature = "serde", derive(serde::Serialize))] + #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] #[derive(Debug, PartialEq, Clone)] pub struct MsgFileioConfigResp { /// The message sender_id - #[cfg_attr(feature = "serde", serde(skip_serializing))] + #[cfg_attr(feature = "serde", serde(skip_serializing, alias = "sender"))] pub sender_id: Option, /// Advice sequence number - #[cfg_attr(feature = "serde", serde(rename(serialize = "sequence")))] + #[cfg_attr(feature = "serde", serde(rename = "sequence"))] pub sequence: u32, /// The number of SBP packets in the data in-flight window - #[cfg_attr(feature = "serde", serde(rename(serialize = "window_size")))] + #[cfg_attr(feature = "serde", serde(rename = "window_size"))] pub window_size: u32, /// The number of SBP packets sent in one PDU - #[cfg_attr(feature = "serde", serde(rename(serialize = "batch_size")))] + #[cfg_attr(feature = "serde", serde(rename = "batch_size"))] pub batch_size: u32, /// The version of FileIO that is supported - #[cfg_attr(feature = "serde", serde(rename(serialize = "fileio_version")))] + #[cfg_attr(feature = "serde", serde(rename = "fileio_version"))] pub fileio_version: u32, } @@ -218,20 +218,20 @@ pub mod msg_fileio_read_dir_req { /// device will only respond to this message when it is received from sender /// ID 0x42. /// - #[cfg_attr(feature = "serde", derive(serde::Serialize))] + #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] #[derive(Debug, PartialEq, Clone)] pub struct MsgFileioReadDirReq { /// The message sender_id - #[cfg_attr(feature = "serde", serde(skip_serializing))] + #[cfg_attr(feature = "serde", serde(skip_serializing, alias = "sender"))] pub sender_id: Option, /// Read sequence number - #[cfg_attr(feature = "serde", serde(rename(serialize = "sequence")))] + #[cfg_attr(feature = "serde", serde(rename = "sequence"))] pub sequence: u32, /// The offset to skip the first n elements of the file list - #[cfg_attr(feature = "serde", serde(rename(serialize = "offset")))] + #[cfg_attr(feature = "serde", serde(rename = "offset"))] pub offset: u32, /// Name of the directory to list - #[cfg_attr(feature = "serde", serde(rename(serialize = "dirname")))] + #[cfg_attr(feature = "serde", serde(rename = "dirname"))] pub dirname: SbpString, NullTerminated>, } @@ -307,17 +307,17 @@ pub mod msg_fileio_read_dir_resp { /// the end of the list is identified by an packet with no entries. The /// sequence number in the response is preserved from the request. /// - #[cfg_attr(feature = "serde", derive(serde::Serialize))] + #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] #[derive(Debug, PartialEq, Clone)] pub struct MsgFileioReadDirResp { /// The message sender_id - #[cfg_attr(feature = "serde", serde(skip_serializing))] + #[cfg_attr(feature = "serde", serde(skip_serializing, alias = "sender"))] pub sender_id: Option, /// Read sequence number - #[cfg_attr(feature = "serde", serde(rename(serialize = "sequence")))] + #[cfg_attr(feature = "serde", serde(rename = "sequence"))] pub sequence: u32, /// Contents of read directory - #[cfg_attr(feature = "serde", serde(rename(serialize = "contents")))] + #[cfg_attr(feature = "serde", serde(rename = "contents"))] pub contents: Vec, } @@ -389,23 +389,23 @@ pub mod msg_fileio_read_req { /// print "Invalid fileio read message". A device will only respond to this /// message when it is received from sender ID 0x42. /// - #[cfg_attr(feature = "serde", derive(serde::Serialize))] + #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] #[derive(Debug, PartialEq, Clone)] pub struct MsgFileioReadReq { /// The message sender_id - #[cfg_attr(feature = "serde", serde(skip_serializing))] + #[cfg_attr(feature = "serde", serde(skip_serializing, alias = "sender"))] pub sender_id: Option, /// Read sequence number - #[cfg_attr(feature = "serde", serde(rename(serialize = "sequence")))] + #[cfg_attr(feature = "serde", serde(rename = "sequence"))] pub sequence: u32, /// File offset - #[cfg_attr(feature = "serde", serde(rename(serialize = "offset")))] + #[cfg_attr(feature = "serde", serde(rename = "offset"))] pub offset: u32, /// Chunk size to read - #[cfg_attr(feature = "serde", serde(rename(serialize = "chunk_size")))] + #[cfg_attr(feature = "serde", serde(rename = "chunk_size"))] pub chunk_size: u8, /// Name of the file to read from - #[cfg_attr(feature = "serde", serde(rename(serialize = "filename")))] + #[cfg_attr(feature = "serde", serde(rename = "filename"))] pub filename: SbpString, NullTerminated>, } @@ -484,17 +484,17 @@ pub mod msg_fileio_read_resp { /// message length field indicates how many bytes were successfully read. The /// sequence number in the response is preserved from the request. /// - #[cfg_attr(feature = "serde", derive(serde::Serialize))] + #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] #[derive(Debug, PartialEq, Clone)] pub struct MsgFileioReadResp { /// The message sender_id - #[cfg_attr(feature = "serde", serde(skip_serializing))] + #[cfg_attr(feature = "serde", serde(skip_serializing, alias = "sender"))] pub sender_id: Option, /// Read sequence number - #[cfg_attr(feature = "serde", serde(rename(serialize = "sequence")))] + #[cfg_attr(feature = "serde", serde(rename = "sequence"))] pub sequence: u32, /// Contents of read file - #[cfg_attr(feature = "serde", serde(rename(serialize = "contents")))] + #[cfg_attr(feature = "serde", serde(rename = "contents"))] pub contents: Vec, } @@ -563,14 +563,14 @@ pub mod msg_fileio_remove { /// fileio remove message". A device will only process this message when it is /// received from sender ID 0x42. /// - #[cfg_attr(feature = "serde", derive(serde::Serialize))] + #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] #[derive(Debug, PartialEq, Clone)] pub struct MsgFileioRemove { /// The message sender_id - #[cfg_attr(feature = "serde", serde(skip_serializing))] + #[cfg_attr(feature = "serde", serde(skip_serializing, alias = "sender"))] pub sender_id: Option, /// Name of the file to delete - #[cfg_attr(feature = "serde", serde(rename(serialize = "filename")))] + #[cfg_attr(feature = "serde", serde(rename = "filename"))] pub filename: SbpString, NullTerminated>, } @@ -640,23 +640,23 @@ pub mod msg_fileio_write_req { /// fileio write message". A device will only process this message when it is /// received from sender ID 0x42. /// - #[cfg_attr(feature = "serde", derive(serde::Serialize))] + #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] #[derive(Debug, PartialEq, Clone)] pub struct MsgFileioWriteReq { /// The message sender_id - #[cfg_attr(feature = "serde", serde(skip_serializing))] + #[cfg_attr(feature = "serde", serde(skip_serializing, alias = "sender"))] pub sender_id: Option, /// Write sequence number - #[cfg_attr(feature = "serde", serde(rename(serialize = "sequence")))] + #[cfg_attr(feature = "serde", serde(rename = "sequence"))] pub sequence: u32, /// Offset into the file at which to start writing in bytes - #[cfg_attr(feature = "serde", serde(rename(serialize = "offset")))] + #[cfg_attr(feature = "serde", serde(rename = "offset"))] pub offset: u32, /// Name of the file to write to - #[cfg_attr(feature = "serde", serde(rename(serialize = "filename")))] + #[cfg_attr(feature = "serde", serde(rename = "filename"))] pub filename: SbpString, NullTerminated>, /// Variable-length array of data to write - #[cfg_attr(feature = "serde", serde(rename(serialize = "data")))] + #[cfg_attr(feature = "serde", serde(rename = "data"))] pub data: Vec, } @@ -735,14 +735,14 @@ pub mod msg_fileio_write_resp { /// MSG_FILEIO_WRITE_REQ message to check integrity of the write. The sequence /// number in the response is preserved from the request. /// - #[cfg_attr(feature = "serde", derive(serde::Serialize))] + #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] #[derive(Debug, PartialEq, Clone)] pub struct MsgFileioWriteResp { /// The message sender_id - #[cfg_attr(feature = "serde", serde(skip_serializing))] + #[cfg_attr(feature = "serde", serde(skip_serializing, alias = "sender"))] pub sender_id: Option, /// Write sequence number - #[cfg_attr(feature = "serde", serde(rename(serialize = "sequence")))] + #[cfg_attr(feature = "serde", serde(rename = "sequence"))] pub sequence: u32, } diff --git a/rust/sbp/src/messages/flash.rs b/rust/sbp/src/messages/flash.rs index bd79f97070..a036a3b671 100644 --- a/rust/sbp/src/messages/flash.rs +++ b/rust/sbp/src/messages/flash.rs @@ -40,14 +40,14 @@ pub mod msg_flash_done { /// messages, such as MSG_FLASH_READ_REQ, or MSG_FLASH_PROGRAM, may return /// this message on failure. /// - #[cfg_attr(feature = "serde", derive(serde::Serialize))] + #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] #[derive(Debug, PartialEq, Clone)] pub struct MsgFlashDone { /// The message sender_id - #[cfg_attr(feature = "serde", serde(skip_serializing))] + #[cfg_attr(feature = "serde", serde(skip_serializing, alias = "sender"))] pub sender_id: Option, /// Response flags - #[cfg_attr(feature = "serde", serde(rename(serialize = "response")))] + #[cfg_attr(feature = "serde", serde(rename = "response"))] pub response: u8, } @@ -180,17 +180,17 @@ pub mod msg_flash_erase { /// message containing the return code - FLASH_OK (0) on success or /// FLASH_INVALID_FLASH (1) if the flash specified is invalid. /// - #[cfg_attr(feature = "serde", derive(serde::Serialize))] + #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] #[derive(Debug, PartialEq, Clone)] pub struct MsgFlashErase { /// The message sender_id - #[cfg_attr(feature = "serde", serde(skip_serializing))] + #[cfg_attr(feature = "serde", serde(skip_serializing, alias = "sender"))] pub sender_id: Option, /// Target flags - #[cfg_attr(feature = "serde", serde(rename(serialize = "target")))] + #[cfg_attr(feature = "serde", serde(rename = "target"))] pub target: u8, /// Flash sector number to erase (0-11 for the STM, 0-15 for the M25) - #[cfg_attr(feature = "serde", serde(rename(serialize = "sector_num")))] + #[cfg_attr(feature = "serde", serde(rename = "sector_num"))] pub sector_num: u32, } @@ -306,23 +306,23 @@ pub mod msg_flash_program { /// (2) if the maximum write size is exceeded. Note that the sector-containing /// addresses must be erased before addresses can be programmed. /// - #[cfg_attr(feature = "serde", derive(serde::Serialize))] + #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] #[derive(Debug, PartialEq, Clone)] pub struct MsgFlashProgram { /// The message sender_id - #[cfg_attr(feature = "serde", serde(skip_serializing))] + #[cfg_attr(feature = "serde", serde(skip_serializing, alias = "sender"))] pub sender_id: Option, /// Target flags - #[cfg_attr(feature = "serde", serde(rename(serialize = "target")))] + #[cfg_attr(feature = "serde", serde(rename = "target"))] pub target: u8, /// Starting address offset to program - #[cfg_attr(feature = "serde", serde(rename(serialize = "addr_start")))] + #[cfg_attr(feature = "serde", serde(rename = "addr_start"))] pub addr_start: [u8; 3], /// Length of set of addresses to program, counting up from starting address - #[cfg_attr(feature = "serde", serde(rename(serialize = "addr_len")))] + #[cfg_attr(feature = "serde", serde(rename = "addr_len"))] pub addr_len: u8, /// Data to program addresses with, with length N=addr_len - #[cfg_attr(feature = "serde", serde(rename(serialize = "data")))] + #[cfg_attr(feature = "serde", serde(rename = "data"))] pub data: Vec, } @@ -449,20 +449,20 @@ pub mod msg_flash_read_req { /// is exceeded or FLASH_INVALID_ADDR (3) if the address is outside of the /// allowed range. /// - #[cfg_attr(feature = "serde", derive(serde::Serialize))] + #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] #[derive(Debug, PartialEq, Clone)] pub struct MsgFlashReadReq { /// The message sender_id - #[cfg_attr(feature = "serde", serde(skip_serializing))] + #[cfg_attr(feature = "serde", serde(skip_serializing, alias = "sender"))] pub sender_id: Option, /// Target flags - #[cfg_attr(feature = "serde", serde(rename(serialize = "target")))] + #[cfg_attr(feature = "serde", serde(rename = "target"))] pub target: u8, /// Starting address offset to read from - #[cfg_attr(feature = "serde", serde(rename(serialize = "addr_start")))] + #[cfg_attr(feature = "serde", serde(rename = "addr_start"))] pub addr_start: [u8; 3], /// Length of set of addresses to read, counting up from starting address - #[cfg_attr(feature = "serde", serde(rename(serialize = "addr_len")))] + #[cfg_attr(feature = "serde", serde(rename = "addr_len"))] pub addr_len: u8, } @@ -585,20 +585,20 @@ pub mod msg_flash_read_resp { /// is exceeded or FLASH_INVALID_ADDR (3) if the address is outside of the /// allowed range. /// - #[cfg_attr(feature = "serde", derive(serde::Serialize))] + #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] #[derive(Debug, PartialEq, Clone)] pub struct MsgFlashReadResp { /// The message sender_id - #[cfg_attr(feature = "serde", serde(skip_serializing))] + #[cfg_attr(feature = "serde", serde(skip_serializing, alias = "sender"))] pub sender_id: Option, /// Target flags - #[cfg_attr(feature = "serde", serde(rename(serialize = "target")))] + #[cfg_attr(feature = "serde", serde(rename = "target"))] pub target: u8, /// Starting address offset to read from - #[cfg_attr(feature = "serde", serde(rename(serialize = "addr_start")))] + #[cfg_attr(feature = "serde", serde(rename = "addr_start"))] pub addr_start: [u8; 3], /// Length of set of addresses to read, counting up from starting address - #[cfg_attr(feature = "serde", serde(rename(serialize = "addr_len")))] + #[cfg_attr(feature = "serde", serde(rename = "addr_len"))] pub addr_len: u8, } @@ -717,14 +717,14 @@ pub mod msg_m25_flash_write_status { /// The flash status message writes to the 8-bit M25 flash status register. /// The device replies with a MSG_FLASH_DONE message. /// - #[cfg_attr(feature = "serde", derive(serde::Serialize))] + #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] #[derive(Debug, PartialEq, Clone)] pub struct MsgM25FlashWriteStatus { /// The message sender_id - #[cfg_attr(feature = "serde", serde(skip_serializing))] + #[cfg_attr(feature = "serde", serde(skip_serializing, alias = "sender"))] pub sender_id: Option, /// Byte to write to the M25 flash status register - #[cfg_attr(feature = "serde", serde(rename(serialize = "status")))] + #[cfg_attr(feature = "serde", serde(rename = "status"))] pub status: [u8; 1], } @@ -789,14 +789,14 @@ pub mod msg_stm_flash_lock_sector { /// The flash lock message locks a sector of the STM flash memory. The device /// replies with a MSG_FLASH_DONE message. /// - #[cfg_attr(feature = "serde", derive(serde::Serialize))] + #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] #[derive(Debug, PartialEq, Clone)] pub struct MsgStmFlashLockSector { /// The message sender_id - #[cfg_attr(feature = "serde", serde(skip_serializing))] + #[cfg_attr(feature = "serde", serde(skip_serializing, alias = "sender"))] pub sender_id: Option, /// Flash sector number to lock - #[cfg_attr(feature = "serde", serde(rename(serialize = "sector")))] + #[cfg_attr(feature = "serde", serde(rename = "sector"))] pub sector: u32, } @@ -861,14 +861,14 @@ pub mod msg_stm_flash_unlock_sector { /// The flash unlock message unlocks a sector of the STM flash memory. The /// device replies with a MSG_FLASH_DONE message. /// - #[cfg_attr(feature = "serde", derive(serde::Serialize))] + #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] #[derive(Debug, PartialEq, Clone)] pub struct MsgStmFlashUnlockSector { /// The message sender_id - #[cfg_attr(feature = "serde", serde(skip_serializing))] + #[cfg_attr(feature = "serde", serde(skip_serializing, alias = "sender"))] pub sender_id: Option, /// Flash sector number to unlock - #[cfg_attr(feature = "serde", serde(rename(serialize = "sector")))] + #[cfg_attr(feature = "serde", serde(rename = "sector"))] pub sector: u32, } @@ -935,11 +935,11 @@ pub mod msg_stm_unique_id_req { /// the ID by sending a MSG_STM_UNIQUE_ID_REQ. The device responds with a /// MSG_STM_UNIQUE_ID_RESP with the 12-byte unique ID in the payload. /// - #[cfg_attr(feature = "serde", derive(serde::Serialize))] + #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] #[derive(Debug, PartialEq, Clone)] pub struct MsgStmUniqueIdReq { /// The message sender_id - #[cfg_attr(feature = "serde", serde(skip_serializing))] + #[cfg_attr(feature = "serde", serde(skip_serializing, alias = "sender"))] pub sender_id: Option, } @@ -1001,14 +1001,14 @@ pub mod msg_stm_unique_id_resp { /// the ID by sending a MSG_STM_UNIQUE_ID_REQ. The device responds with a /// MSG_STM_UNIQUE_ID_RESP with the 12-byte unique ID in the payload. /// - #[cfg_attr(feature = "serde", derive(serde::Serialize))] + #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] #[derive(Debug, PartialEq, Clone)] pub struct MsgStmUniqueIdResp { /// The message sender_id - #[cfg_attr(feature = "serde", serde(skip_serializing))] + #[cfg_attr(feature = "serde", serde(skip_serializing, alias = "sender"))] pub sender_id: Option, /// Device unique ID - #[cfg_attr(feature = "serde", serde(rename(serialize = "stm_id")))] + #[cfg_attr(feature = "serde", serde(rename = "stm_id"))] pub stm_id: [u8; 12], } diff --git a/rust/sbp/src/messages/gnss.rs b/rust/sbp/src/messages/gnss.rs index d8681ded9c..c3aa85dc94 100644 --- a/rust/sbp/src/messages/gnss.rs +++ b/rust/sbp/src/messages/gnss.rs @@ -33,14 +33,14 @@ pub mod carrier_phase { /// number with Q32.8 layout, i.e. 32-bits of whole cycles and 8-bits of /// fractional cycles. This phase has the same sign as the pseudorange. /// - #[cfg_attr(feature = "serde", derive(serde::Serialize))] + #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] #[derive(Debug, PartialEq, Clone)] pub struct CarrierPhase { /// Carrier phase whole cycles - #[cfg_attr(feature = "serde", serde(rename(serialize = "i")))] + #[cfg_attr(feature = "serde", serde(rename = "i"))] pub i: i32, /// Carrier phase fractional part - #[cfg_attr(feature = "serde", serde(rename(serialize = "f")))] + #[cfg_attr(feature = "serde", serde(rename = "f"))] pub f: u8, } @@ -74,18 +74,18 @@ pub mod gps_time { /// beginning of the week on the Saturday/Sunday transition. In most cases, /// observations are epoch aligned so ns field will be 0. /// - #[cfg_attr(feature = "serde", derive(serde::Serialize))] + #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] #[derive(Debug, PartialEq, Clone)] pub struct GpsTime { /// Milliseconds since start of GPS week - #[cfg_attr(feature = "serde", serde(rename(serialize = "tow")))] + #[cfg_attr(feature = "serde", serde(rename = "tow"))] pub tow: u32, /// Nanosecond residual of millisecond-rounded TOW (ranges from -500000 to /// 500000) - #[cfg_attr(feature = "serde", serde(rename(serialize = "ns_residual")))] + #[cfg_attr(feature = "serde", serde(rename = "ns_residual"))] pub ns_residual: i32, /// GPS week number - #[cfg_attr(feature = "serde", serde(rename(serialize = "wn")))] + #[cfg_attr(feature = "serde", serde(rename = "wn"))] pub wn: u16, } @@ -124,14 +124,14 @@ pub mod gps_time_dep { /// A wire-appropriate GPS time, defined as the number of milliseconds since /// beginning of the week on the Saturday/Sunday transition. /// - #[cfg_attr(feature = "serde", derive(serde::Serialize))] + #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] #[derive(Debug, PartialEq, Clone)] pub struct GpsTimeDep { /// Milliseconds since start of GPS week - #[cfg_attr(feature = "serde", serde(rename(serialize = "tow")))] + #[cfg_attr(feature = "serde", serde(rename = "tow"))] pub tow: u32, /// GPS week number - #[cfg_attr(feature = "serde", serde(rename(serialize = "wn")))] + #[cfg_attr(feature = "serde", serde(rename = "wn"))] pub wn: u16, } @@ -164,14 +164,14 @@ pub mod gps_time_sec { /// A GPS time, defined as the number of seconds since beginning of the week /// on the Saturday/Sunday transition. /// - #[cfg_attr(feature = "serde", derive(serde::Serialize))] + #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] #[derive(Debug, PartialEq, Clone)] pub struct GpsTimeSec { /// Seconds since start of GPS week - #[cfg_attr(feature = "serde", serde(rename(serialize = "tow")))] + #[cfg_attr(feature = "serde", serde(rename = "tow"))] pub tow: u32, /// GPS week number - #[cfg_attr(feature = "serde", serde(rename(serialize = "wn")))] + #[cfg_attr(feature = "serde", serde(rename = "wn"))] pub wn: u16, } @@ -204,15 +204,15 @@ pub mod gnss_signal { /// Signal identifier containing constellation, band, and satellite /// identifier. /// - #[cfg_attr(feature = "serde", derive(serde::Serialize))] + #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] #[derive(Debug, PartialEq, Clone)] pub struct GnssSignal { /// Constellation-specific satellite identifier. This field for Glonass can /// either be (100+FCN) where FCN is in \[-7,+6\] or the Slot ID in \[1,28\]. - #[cfg_attr(feature = "serde", serde(rename(serialize = "sat")))] + #[cfg_attr(feature = "serde", serde(rename = "sat"))] pub sat: u8, /// Signal constellation, band and code - #[cfg_attr(feature = "serde", serde(rename(serialize = "code")))] + #[cfg_attr(feature = "serde", serde(rename = "code"))] pub code: u8, } @@ -339,20 +339,20 @@ pub mod gnss_signal_dep { /// /// Deprecated. /// - #[cfg_attr(feature = "serde", derive(serde::Serialize))] + #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] #[derive(Debug, PartialEq, Clone)] pub struct GnssSignalDep { /// Constellation-specific satellite identifier. /// /// Note: unlike GnssSignal, GPS satellites are encoded as (PRN - 1). Other /// constellations do not have this offset. - #[cfg_attr(feature = "serde", serde(rename(serialize = "sat")))] + #[cfg_attr(feature = "serde", serde(rename = "sat"))] pub sat: u16, /// Signal constellation, band and code - #[cfg_attr(feature = "serde", serde(rename(serialize = "code")))] + #[cfg_attr(feature = "serde", serde(rename = "code"))] pub code: u8, /// Reserved - #[cfg_attr(feature = "serde", serde(rename(serialize = "reserved")))] + #[cfg_attr(feature = "serde", serde(rename = "reserved"))] pub reserved: u8, } @@ -461,14 +461,14 @@ pub mod sv_id { /// A (Constellation ID, satellite ID) tuple that uniquely identifies a space /// vehicle. /// - #[cfg_attr(feature = "serde", derive(serde::Serialize))] + #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] #[derive(Debug, PartialEq, Clone)] pub struct SvId { /// ID of the space vehicle within its constellation - #[cfg_attr(feature = "serde", serde(rename(serialize = "satId")))] + #[cfg_attr(feature = "serde", serde(rename = "satId"))] pub sat_id: u8, /// Constellation ID to which the SV belongs - #[cfg_attr(feature = "serde", serde(rename(serialize = "constellation")))] + #[cfg_attr(feature = "serde", serde(rename = "constellation"))] pub constellation: u8, } diff --git a/rust/sbp/src/messages/imu.rs b/rust/sbp/src/messages/imu.rs index a47550d17a..69d28046cf 100644 --- a/rust/sbp/src/messages/imu.rs +++ b/rust/sbp/src/messages/imu.rs @@ -28,20 +28,20 @@ pub mod msg_imu_aux { /// always be consistent but the rest of the payload is device specific and /// depends on the value of `imu_type`. /// - #[cfg_attr(feature = "serde", derive(serde::Serialize))] + #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] #[derive(Debug, PartialEq, Clone)] pub struct MsgImuAux { /// The message sender_id - #[cfg_attr(feature = "serde", serde(skip_serializing))] + #[cfg_attr(feature = "serde", serde(skip_serializing, alias = "sender"))] pub sender_id: Option, /// IMU type - #[cfg_attr(feature = "serde", serde(rename(serialize = "imu_type")))] + #[cfg_attr(feature = "serde", serde(rename = "imu_type"))] pub imu_type: u8, /// Raw IMU temperature - #[cfg_attr(feature = "serde", serde(rename(serialize = "temp")))] + #[cfg_attr(feature = "serde", serde(rename = "temp"))] pub temp: i16, /// IMU configuration - #[cfg_attr(feature = "serde", serde(rename(serialize = "imu_conf")))] + #[cfg_attr(feature = "serde", serde(rename = "imu_conf"))] pub imu_conf: u8, } @@ -283,35 +283,35 @@ pub mod msg_imu_raw { /// /// The time-tagging mode should not change throughout a run. /// - #[cfg_attr(feature = "serde", derive(serde::Serialize))] + #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] #[derive(Debug, PartialEq, Clone)] pub struct MsgImuRaw { /// The message sender_id - #[cfg_attr(feature = "serde", serde(skip_serializing))] + #[cfg_attr(feature = "serde", serde(skip_serializing, alias = "sender"))] pub sender_id: Option, /// Milliseconds since reference epoch and time status. - #[cfg_attr(feature = "serde", serde(rename(serialize = "tow")))] + #[cfg_attr(feature = "serde", serde(rename = "tow"))] pub tow: u32, /// Milliseconds since reference epoch, fractional part - #[cfg_attr(feature = "serde", serde(rename(serialize = "tow_f")))] + #[cfg_attr(feature = "serde", serde(rename = "tow_f"))] pub tow_f: u8, /// Acceleration in the IMU frame X axis - #[cfg_attr(feature = "serde", serde(rename(serialize = "acc_x")))] + #[cfg_attr(feature = "serde", serde(rename = "acc_x"))] pub acc_x: i16, /// Acceleration in the IMU frame Y axis - #[cfg_attr(feature = "serde", serde(rename(serialize = "acc_y")))] + #[cfg_attr(feature = "serde", serde(rename = "acc_y"))] pub acc_y: i16, /// Acceleration in the IMU frame Z axis - #[cfg_attr(feature = "serde", serde(rename(serialize = "acc_z")))] + #[cfg_attr(feature = "serde", serde(rename = "acc_z"))] pub acc_z: i16, /// Angular rate around IMU frame X axis - #[cfg_attr(feature = "serde", serde(rename(serialize = "gyr_x")))] + #[cfg_attr(feature = "serde", serde(rename = "gyr_x"))] pub gyr_x: i16, /// Angular rate around IMU frame Y axis - #[cfg_attr(feature = "serde", serde(rename(serialize = "gyr_y")))] + #[cfg_attr(feature = "serde", serde(rename = "gyr_y"))] pub gyr_y: i16, /// Angular rate around IMU frame Z axis - #[cfg_attr(feature = "serde", serde(rename(serialize = "gyr_z")))] + #[cfg_attr(feature = "serde", serde(rename = "gyr_z"))] pub gyr_z: i16, } diff --git a/rust/sbp/src/messages/integrity.rs b/rust/sbp/src/messages/integrity.rs index 7f8137c3a2..566023cfc4 100644 --- a/rust/sbp/src/messages/integrity.rs +++ b/rust/sbp/src/messages/integrity.rs @@ -28,29 +28,29 @@ pub mod integrity_ssr_header { use crate::messages::gnss::*; use crate::messages::lib::*; /// Common fields for SSR integrity messages - #[cfg_attr(feature = "serde", derive(serde::Serialize))] + #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] #[derive(Debug, PartialEq, Clone)] pub struct IntegritySSRHeader { /// GNSS reference time of the observation used to generate the flag. - #[cfg_attr(feature = "serde", serde(rename(serialize = "obs_time")))] + #[cfg_attr(feature = "serde", serde(rename = "obs_time"))] pub obs_time: GpsTimeSec, /// Number of messages in the dataset - #[cfg_attr(feature = "serde", serde(rename(serialize = "num_msgs")))] + #[cfg_attr(feature = "serde", serde(rename = "num_msgs"))] pub num_msgs: u8, /// Position of this message in the dataset - #[cfg_attr(feature = "serde", serde(rename(serialize = "seq_num")))] + #[cfg_attr(feature = "serde", serde(rename = "seq_num"))] pub seq_num: u8, /// SSR Solution ID. - #[cfg_attr(feature = "serde", serde(rename(serialize = "ssr_sol_id")))] + #[cfg_attr(feature = "serde", serde(rename = "ssr_sol_id"))] pub ssr_sol_id: u8, /// Unique identifier of the set this tile belongs to. - #[cfg_attr(feature = "serde", serde(rename(serialize = "tile_set_id")))] + #[cfg_attr(feature = "serde", serde(rename = "tile_set_id"))] pub tile_set_id: u16, /// Unique identifier of this tile in the tile set. - #[cfg_attr(feature = "serde", serde(rename(serialize = "tile_id")))] + #[cfg_attr(feature = "serde", serde(rename = "tile_id"))] pub tile_id: u16, /// Chain and type of flag. - #[cfg_attr(feature = "serde", serde(rename(serialize = "chain_id")))] + #[cfg_attr(feature = "serde", serde(rename = "chain_id"))] pub chain_id: u8, } @@ -101,56 +101,53 @@ pub mod msg_ssr_flag_high_level { use crate::messages::gnss::*; use crate::messages::lib::*; /// High level integrity flags - #[cfg_attr(feature = "serde", derive(serde::Serialize))] + #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] #[derive(Debug, PartialEq, Clone)] pub struct MsgSsrFlagHighLevel { /// The message sender_id - #[cfg_attr(feature = "serde", serde(skip_serializing))] + #[cfg_attr(feature = "serde", serde(skip_serializing, alias = "sender"))] pub sender_id: Option, /// GNSS reference time of the observation used to generate the flag. - #[cfg_attr(feature = "serde", serde(rename(serialize = "obs_time")))] + #[cfg_attr(feature = "serde", serde(rename = "obs_time"))] pub obs_time: GpsTimeSec, /// GNSS reference time of the correction associated to the flag. - #[cfg_attr(feature = "serde", serde(rename(serialize = "corr_time")))] + #[cfg_attr(feature = "serde", serde(rename = "corr_time"))] pub corr_time: GpsTimeSec, /// SSR Solution ID. - #[cfg_attr(feature = "serde", serde(rename(serialize = "ssr_sol_id")))] + #[cfg_attr(feature = "serde", serde(rename = "ssr_sol_id"))] pub ssr_sol_id: u8, /// Unique identifier of the set this tile belongs to. - #[cfg_attr(feature = "serde", serde(rename(serialize = "tile_set_id")))] + #[cfg_attr(feature = "serde", serde(rename = "tile_set_id"))] pub tile_set_id: u16, /// Unique identifier of this tile in the tile set. - #[cfg_attr(feature = "serde", serde(rename(serialize = "tile_id")))] + #[cfg_attr(feature = "serde", serde(rename = "tile_id"))] pub tile_id: u16, /// Chain and type of flag. - #[cfg_attr(feature = "serde", serde(rename(serialize = "chain_id")))] + #[cfg_attr(feature = "serde", serde(rename = "chain_id"))] pub chain_id: u8, /// Use GPS satellites. - #[cfg_attr(feature = "serde", serde(rename(serialize = "use_gps_sat")))] + #[cfg_attr(feature = "serde", serde(rename = "use_gps_sat"))] pub use_gps_sat: u8, /// Use GAL satellites. - #[cfg_attr(feature = "serde", serde(rename(serialize = "use_gal_sat")))] + #[cfg_attr(feature = "serde", serde(rename = "use_gal_sat"))] pub use_gal_sat: u8, /// Use BDS satellites. - #[cfg_attr(feature = "serde", serde(rename(serialize = "use_bds_sat")))] + #[cfg_attr(feature = "serde", serde(rename = "use_bds_sat"))] pub use_bds_sat: u8, /// Reserved - #[cfg_attr(feature = "serde", serde(rename(serialize = "reserved")))] + #[cfg_attr(feature = "serde", serde(rename = "reserved"))] pub reserved: [u8; 6], /// Use tropo grid points. - #[cfg_attr(feature = "serde", serde(rename(serialize = "use_tropo_grid_points")))] + #[cfg_attr(feature = "serde", serde(rename = "use_tropo_grid_points"))] pub use_tropo_grid_points: u8, /// Use iono grid points. - #[cfg_attr(feature = "serde", serde(rename(serialize = "use_iono_grid_points")))] + #[cfg_attr(feature = "serde", serde(rename = "use_iono_grid_points"))] pub use_iono_grid_points: u8, /// Use iono tile satellite LoS. - #[cfg_attr(feature = "serde", serde(rename(serialize = "use_iono_tile_sat_los")))] + #[cfg_attr(feature = "serde", serde(rename = "use_iono_tile_sat_los"))] pub use_iono_tile_sat_los: u8, /// Use iono grid point satellite LoS. - #[cfg_attr( - feature = "serde", - serde(rename(serialize = "use_iono_grid_point_sat_los")) - )] + #[cfg_attr(feature = "serde", serde(rename = "use_iono_grid_point_sat_los"))] pub use_iono_grid_point_sat_los: u8, } @@ -263,20 +260,20 @@ pub mod msg_ssr_flag_iono_grid_points { use crate::messages::gnss::*; use crate::messages::lib::*; /// List of grid points which are faulty - #[cfg_attr(feature = "serde", derive(serde::Serialize))] + #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] #[derive(Debug, PartialEq, Clone)] pub struct MsgSsrFlagIonoGridPoints { /// The message sender_id - #[cfg_attr(feature = "serde", serde(skip_serializing))] + #[cfg_attr(feature = "serde", serde(skip_serializing, alias = "sender"))] pub sender_id: Option, /// Header of an integrity message. - #[cfg_attr(feature = "serde", serde(rename(serialize = "header")))] + #[cfg_attr(feature = "serde", serde(rename = "header"))] pub header: IntegritySSRHeader, /// Number of faulty grid points. - #[cfg_attr(feature = "serde", serde(rename(serialize = "n_faulty_points")))] + #[cfg_attr(feature = "serde", serde(rename = "n_faulty_points"))] pub n_faulty_points: u8, /// List of faulty grid points. - #[cfg_attr(feature = "serde", serde(rename(serialize = "faulty_points")))] + #[cfg_attr(feature = "serde", serde(rename = "faulty_points"))] pub faulty_points: Vec, } @@ -345,23 +342,23 @@ pub mod msg_ssr_flag_iono_grid_point_sat_los { use crate::messages::gnss::*; use crate::messages::lib::*; /// List of all the grid points to satellite which are faulty - #[cfg_attr(feature = "serde", derive(serde::Serialize))] + #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] #[derive(Debug, PartialEq, Clone)] pub struct MsgSsrFlagIonoGridPointSatLos { /// The message sender_id - #[cfg_attr(feature = "serde", serde(skip_serializing))] + #[cfg_attr(feature = "serde", serde(skip_serializing, alias = "sender"))] pub sender_id: Option, /// Header of an integrity message. - #[cfg_attr(feature = "serde", serde(rename(serialize = "header")))] + #[cfg_attr(feature = "serde", serde(rename = "header"))] pub header: IntegritySSRHeader, /// Index of the grid point. - #[cfg_attr(feature = "serde", serde(rename(serialize = "grid_point_id")))] + #[cfg_attr(feature = "serde", serde(rename = "grid_point_id"))] pub grid_point_id: u16, /// Number of faulty LOS. - #[cfg_attr(feature = "serde", serde(rename(serialize = "n_faulty_los")))] + #[cfg_attr(feature = "serde", serde(rename = "n_faulty_los"))] pub n_faulty_los: u8, /// List of faulty LOS - #[cfg_attr(feature = "serde", serde(rename(serialize = "faulty_los")))] + #[cfg_attr(feature = "serde", serde(rename = "faulty_los"))] pub faulty_los: Vec, } @@ -434,20 +431,20 @@ pub mod msg_ssr_flag_iono_tile_sat_los { use crate::messages::gnss::*; use crate::messages::lib::*; /// List of all the LOS which are faulty - #[cfg_attr(feature = "serde", derive(serde::Serialize))] + #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] #[derive(Debug, PartialEq, Clone)] pub struct MsgSsrFlagIonoTileSatLos { /// The message sender_id - #[cfg_attr(feature = "serde", serde(skip_serializing))] + #[cfg_attr(feature = "serde", serde(skip_serializing, alias = "sender"))] pub sender_id: Option, /// Header of an integrity message. - #[cfg_attr(feature = "serde", serde(rename(serialize = "header")))] + #[cfg_attr(feature = "serde", serde(rename = "header"))] pub header: IntegritySSRHeader, /// Number of faulty LOS. - #[cfg_attr(feature = "serde", serde(rename(serialize = "n_faulty_los")))] + #[cfg_attr(feature = "serde", serde(rename = "n_faulty_los"))] pub n_faulty_los: u8, /// List of faulty LOS - #[cfg_attr(feature = "serde", serde(rename(serialize = "faulty_los")))] + #[cfg_attr(feature = "serde", serde(rename = "faulty_los"))] pub faulty_los: Vec, } @@ -516,35 +513,35 @@ pub mod msg_ssr_flag_satellites { use crate::messages::gnss::*; use crate::messages::lib::*; /// List of satellites which are faulty, per constellation - #[cfg_attr(feature = "serde", derive(serde::Serialize))] + #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] #[derive(Debug, PartialEq, Clone)] pub struct MsgSsrFlagSatellites { /// The message sender_id - #[cfg_attr(feature = "serde", serde(skip_serializing))] + #[cfg_attr(feature = "serde", serde(skip_serializing, alias = "sender"))] pub sender_id: Option, /// GNSS reference time of the observation used to generate the flag. - #[cfg_attr(feature = "serde", serde(rename(serialize = "obs_time")))] + #[cfg_attr(feature = "serde", serde(rename = "obs_time"))] pub obs_time: GpsTimeSec, /// Number of messages in the dataset - #[cfg_attr(feature = "serde", serde(rename(serialize = "num_msgs")))] + #[cfg_attr(feature = "serde", serde(rename = "num_msgs"))] pub num_msgs: u8, /// Position of this message in the dataset - #[cfg_attr(feature = "serde", serde(rename(serialize = "seq_num")))] + #[cfg_attr(feature = "serde", serde(rename = "seq_num"))] pub seq_num: u8, /// SSR Solution ID. - #[cfg_attr(feature = "serde", serde(rename(serialize = "ssr_sol_id")))] + #[cfg_attr(feature = "serde", serde(rename = "ssr_sol_id"))] pub ssr_sol_id: u8, /// Chain and type of flag. - #[cfg_attr(feature = "serde", serde(rename(serialize = "chain_id")))] + #[cfg_attr(feature = "serde", serde(rename = "chain_id"))] pub chain_id: u8, /// Constellation ID. - #[cfg_attr(feature = "serde", serde(rename(serialize = "const_id")))] + #[cfg_attr(feature = "serde", serde(rename = "const_id"))] pub const_id: u8, /// Number of faulty satellites. - #[cfg_attr(feature = "serde", serde(rename(serialize = "n_faulty_sats")))] + #[cfg_attr(feature = "serde", serde(rename = "n_faulty_sats"))] pub n_faulty_sats: u8, /// List of faulty satellites. - #[cfg_attr(feature = "serde", serde(rename(serialize = "faulty_sats")))] + #[cfg_attr(feature = "serde", serde(rename = "faulty_sats"))] pub faulty_sats: Vec, } @@ -633,20 +630,20 @@ pub mod msg_ssr_flag_tropo_grid_points { use crate::messages::gnss::*; use crate::messages::lib::*; /// List of grid points which are faulty - #[cfg_attr(feature = "serde", derive(serde::Serialize))] + #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] #[derive(Debug, PartialEq, Clone)] pub struct MsgSsrFlagTropoGridPoints { /// The message sender_id - #[cfg_attr(feature = "serde", serde(skip_serializing))] + #[cfg_attr(feature = "serde", serde(skip_serializing, alias = "sender"))] pub sender_id: Option, /// Header of an integrity message. - #[cfg_attr(feature = "serde", serde(rename(serialize = "header")))] + #[cfg_attr(feature = "serde", serde(rename = "header"))] pub header: IntegritySSRHeader, /// Number of faulty grid points. - #[cfg_attr(feature = "serde", serde(rename(serialize = "n_faulty_points")))] + #[cfg_attr(feature = "serde", serde(rename = "n_faulty_points"))] pub n_faulty_points: u8, /// List of faulty grid points. - #[cfg_attr(feature = "serde", serde(rename(serialize = "faulty_points")))] + #[cfg_attr(feature = "serde", serde(rename = "faulty_points"))] pub faulty_points: Vec, } diff --git a/rust/sbp/src/messages/linux.rs b/rust/sbp/src/messages/linux.rs index c67d3d52fd..7938b2c29c 100644 --- a/rust/sbp/src/messages/linux.rs +++ b/rust/sbp/src/messages/linux.rs @@ -36,32 +36,32 @@ pub mod msg_linux_cpu_state { /// This message indicates the process state of the top 10 heaviest consumers /// of CPU on the system, including a timestamp. /// - #[cfg_attr(feature = "serde", derive(serde::Serialize))] + #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] #[derive(Debug, PartialEq, Clone)] pub struct MsgLinuxCpuState { /// The message sender_id - #[cfg_attr(feature = "serde", serde(skip_serializing))] + #[cfg_attr(feature = "serde", serde(skip_serializing, alias = "sender"))] pub sender_id: Option, /// sequence of this status message, values from 0-9 - #[cfg_attr(feature = "serde", serde(rename(serialize = "index")))] + #[cfg_attr(feature = "serde", serde(rename = "index"))] pub index: u8, /// the PID of the process - #[cfg_attr(feature = "serde", serde(rename(serialize = "pid")))] + #[cfg_attr(feature = "serde", serde(rename = "pid"))] pub pid: u16, /// percent of CPU used, expressed as a fraction of 256 - #[cfg_attr(feature = "serde", serde(rename(serialize = "pcpu")))] + #[cfg_attr(feature = "serde", serde(rename = "pcpu"))] pub pcpu: u8, /// timestamp of message, refer to flags field for how to interpret - #[cfg_attr(feature = "serde", serde(rename(serialize = "time")))] + #[cfg_attr(feature = "serde", serde(rename = "time"))] pub time: u32, /// flags - #[cfg_attr(feature = "serde", serde(rename(serialize = "flags")))] + #[cfg_attr(feature = "serde", serde(rename = "flags"))] pub flags: u8, /// fixed length string representing the thread name - #[cfg_attr(feature = "serde", serde(rename(serialize = "tname")))] + #[cfg_attr(feature = "serde", serde(rename = "tname"))] pub tname: SbpString<[u8; 15], Unterminated>, /// the command line (as much as it fits in the remaining packet) - #[cfg_attr(feature = "serde", serde(rename(serialize = "cmdline")))] + #[cfg_attr(feature = "serde", serde(rename = "cmdline"))] pub cmdline: SbpString, Unterminated>, } @@ -196,26 +196,26 @@ pub mod msg_linux_cpu_state_dep_a { /// This message indicates the process state of the top 10 heaviest consumers /// of CPU on the system. /// - #[cfg_attr(feature = "serde", derive(serde::Serialize))] + #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] #[derive(Debug, PartialEq, Clone)] pub struct MsgLinuxCpuStateDepA { /// The message sender_id - #[cfg_attr(feature = "serde", serde(skip_serializing))] + #[cfg_attr(feature = "serde", serde(skip_serializing, alias = "sender"))] pub sender_id: Option, /// sequence of this status message, values from 0-9 - #[cfg_attr(feature = "serde", serde(rename(serialize = "index")))] + #[cfg_attr(feature = "serde", serde(rename = "index"))] pub index: u8, /// the PID of the process - #[cfg_attr(feature = "serde", serde(rename(serialize = "pid")))] + #[cfg_attr(feature = "serde", serde(rename = "pid"))] pub pid: u16, /// percent of cpu used, expressed as a fraction of 256 - #[cfg_attr(feature = "serde", serde(rename(serialize = "pcpu")))] + #[cfg_attr(feature = "serde", serde(rename = "pcpu"))] pub pcpu: u8, /// fixed length string representing the thread name - #[cfg_attr(feature = "serde", serde(rename(serialize = "tname")))] + #[cfg_attr(feature = "serde", serde(rename = "tname"))] pub tname: SbpString<[u8; 15], Unterminated>, /// the command line (as much as it fits in the remaining packet) - #[cfg_attr(feature = "serde", serde(rename(serialize = "cmdline")))] + #[cfg_attr(feature = "serde", serde(rename = "cmdline"))] pub cmdline: SbpString, Unterminated>, } @@ -296,32 +296,32 @@ pub mod msg_linux_mem_state { /// This message indicates the process state of the top 10 heaviest consumers /// of memory on the system, including a timestamp. /// - #[cfg_attr(feature = "serde", derive(serde::Serialize))] + #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] #[derive(Debug, PartialEq, Clone)] pub struct MsgLinuxMemState { /// The message sender_id - #[cfg_attr(feature = "serde", serde(skip_serializing))] + #[cfg_attr(feature = "serde", serde(skip_serializing, alias = "sender"))] pub sender_id: Option, /// sequence of this status message, values from 0-9 - #[cfg_attr(feature = "serde", serde(rename(serialize = "index")))] + #[cfg_attr(feature = "serde", serde(rename = "index"))] pub index: u8, /// the PID of the process - #[cfg_attr(feature = "serde", serde(rename(serialize = "pid")))] + #[cfg_attr(feature = "serde", serde(rename = "pid"))] pub pid: u16, /// percent of memory used, expressed as a fraction of 256 - #[cfg_attr(feature = "serde", serde(rename(serialize = "pmem")))] + #[cfg_attr(feature = "serde", serde(rename = "pmem"))] pub pmem: u8, /// timestamp of message, refer to flags field for how to interpret - #[cfg_attr(feature = "serde", serde(rename(serialize = "time")))] + #[cfg_attr(feature = "serde", serde(rename = "time"))] pub time: u32, /// flags - #[cfg_attr(feature = "serde", serde(rename(serialize = "flags")))] + #[cfg_attr(feature = "serde", serde(rename = "flags"))] pub flags: u8, /// fixed length string representing the thread name - #[cfg_attr(feature = "serde", serde(rename(serialize = "tname")))] + #[cfg_attr(feature = "serde", serde(rename = "tname"))] pub tname: SbpString<[u8; 15], Unterminated>, /// the command line (as much as it fits in the remaining packet) - #[cfg_attr(feature = "serde", serde(rename(serialize = "cmdline")))] + #[cfg_attr(feature = "serde", serde(rename = "cmdline"))] pub cmdline: SbpString, Unterminated>, } @@ -456,26 +456,26 @@ pub mod msg_linux_mem_state_dep_a { /// This message indicates the process state of the top 10 heaviest consumers /// of memory on the system. /// - #[cfg_attr(feature = "serde", derive(serde::Serialize))] + #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] #[derive(Debug, PartialEq, Clone)] pub struct MsgLinuxMemStateDepA { /// The message sender_id - #[cfg_attr(feature = "serde", serde(skip_serializing))] + #[cfg_attr(feature = "serde", serde(skip_serializing, alias = "sender"))] pub sender_id: Option, /// sequence of this status message, values from 0-9 - #[cfg_attr(feature = "serde", serde(rename(serialize = "index")))] + #[cfg_attr(feature = "serde", serde(rename = "index"))] pub index: u8, /// the PID of the process - #[cfg_attr(feature = "serde", serde(rename(serialize = "pid")))] + #[cfg_attr(feature = "serde", serde(rename = "pid"))] pub pid: u16, /// percent of memory used, expressed as a fraction of 256 - #[cfg_attr(feature = "serde", serde(rename(serialize = "pmem")))] + #[cfg_attr(feature = "serde", serde(rename = "pmem"))] pub pmem: u8, /// fixed length string representing the thread name - #[cfg_attr(feature = "serde", serde(rename(serialize = "tname")))] + #[cfg_attr(feature = "serde", serde(rename = "tname"))] pub tname: SbpString<[u8; 15], Unterminated>, /// the command line (as much as it fits in the remaining packet) - #[cfg_attr(feature = "serde", serde(rename(serialize = "cmdline")))] + #[cfg_attr(feature = "serde", serde(rename = "cmdline"))] pub cmdline: SbpString, Unterminated>, } @@ -555,23 +555,23 @@ pub mod msg_linux_process_fd_count { /// /// Top 10 list of processes with a large number of open file descriptors. /// - #[cfg_attr(feature = "serde", derive(serde::Serialize))] + #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] #[derive(Debug, PartialEq, Clone)] pub struct MsgLinuxProcessFdCount { /// The message sender_id - #[cfg_attr(feature = "serde", serde(skip_serializing))] + #[cfg_attr(feature = "serde", serde(skip_serializing, alias = "sender"))] pub sender_id: Option, /// sequence of this status message, values from 0-9 - #[cfg_attr(feature = "serde", serde(rename(serialize = "index")))] + #[cfg_attr(feature = "serde", serde(rename = "index"))] pub index: u8, /// the PID of the process in question - #[cfg_attr(feature = "serde", serde(rename(serialize = "pid")))] + #[cfg_attr(feature = "serde", serde(rename = "pid"))] pub pid: u16, /// a count of the number of file descriptors opened by the process - #[cfg_attr(feature = "serde", serde(rename(serialize = "fd_count")))] + #[cfg_attr(feature = "serde", serde(rename = "fd_count"))] pub fd_count: u16, /// the command line of the process in question - #[cfg_attr(feature = "serde", serde(rename(serialize = "cmdline")))] + #[cfg_attr(feature = "serde", serde(rename = "cmdline"))] pub cmdline: SbpString, Unterminated>, } @@ -647,21 +647,21 @@ pub mod msg_linux_process_fd_summary { /// /// Summary of open file descriptors on the system. /// - #[cfg_attr(feature = "serde", derive(serde::Serialize))] + #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] #[derive(Debug, PartialEq, Clone)] pub struct MsgLinuxProcessFdSummary { /// The message sender_id - #[cfg_attr(feature = "serde", serde(skip_serializing))] + #[cfg_attr(feature = "serde", serde(skip_serializing, alias = "sender"))] pub sender_id: Option, /// count of total FDs open on the system - #[cfg_attr(feature = "serde", serde(rename(serialize = "sys_fd_count")))] + #[cfg_attr(feature = "serde", serde(rename = "sys_fd_count"))] pub sys_fd_count: u32, /// A null delimited list of strings which alternates between a string /// representation of the process count and the file name whose count it /// being reported. That is, in C string syntax /// "32\0/var/log/syslog\012\0/tmp/foo\0" with the end of the list being 2 /// NULL terminators in a row. - #[cfg_attr(feature = "serde", serde(rename(serialize = "most_opened")))] + #[cfg_attr(feature = "serde", serde(rename = "most_opened"))] pub most_opened: SbpString, DoubleNullTerminated>, } @@ -728,33 +728,33 @@ pub mod msg_linux_process_socket_counts { /// /// Top 10 list of processes with high socket counts. /// - #[cfg_attr(feature = "serde", derive(serde::Serialize))] + #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] #[derive(Debug, PartialEq, Clone)] pub struct MsgLinuxProcessSocketCounts { /// The message sender_id - #[cfg_attr(feature = "serde", serde(skip_serializing))] + #[cfg_attr(feature = "serde", serde(skip_serializing, alias = "sender"))] pub sender_id: Option, /// sequence of this status message, values from 0-9 - #[cfg_attr(feature = "serde", serde(rename(serialize = "index")))] + #[cfg_attr(feature = "serde", serde(rename = "index"))] pub index: u8, /// the PID of the process in question - #[cfg_attr(feature = "serde", serde(rename(serialize = "pid")))] + #[cfg_attr(feature = "serde", serde(rename = "pid"))] pub pid: u16, /// the number of sockets the process is using - #[cfg_attr(feature = "serde", serde(rename(serialize = "socket_count")))] + #[cfg_attr(feature = "serde", serde(rename = "socket_count"))] pub socket_count: u16, /// A bitfield indicating the socket types used: 0x1 (tcp), 0x2 (udp), 0x4 /// (unix stream), 0x8 (unix dgram), 0x10 (netlink), and 0x8000 (unknown) - #[cfg_attr(feature = "serde", serde(rename(serialize = "socket_types")))] + #[cfg_attr(feature = "serde", serde(rename = "socket_types"))] pub socket_types: u16, /// A bitfield indicating the socket states: 0x1 (established), 0x2 (syn- /// sent), 0x4 (syn-recv), 0x8 (fin-wait-1), 0x10 (fin-wait-2), 0x20 (time- /// wait), 0x40 (closed), 0x80 (close-wait), 0x100 (last-ack), 0x200 /// (listen), 0x400 (closing), 0x800 (unconnected), and 0x8000 (unknown) - #[cfg_attr(feature = "serde", serde(rename(serialize = "socket_states")))] + #[cfg_attr(feature = "serde", serde(rename = "socket_states"))] pub socket_states: u16, /// the command line of the process in question - #[cfg_attr(feature = "serde", serde(rename(serialize = "cmdline")))] + #[cfg_attr(feature = "serde", serde(rename = "cmdline"))] pub cmdline: SbpString, Unterminated>, } @@ -838,40 +838,40 @@ pub mod msg_linux_process_socket_queues { /// /// Top 10 list of sockets with deep queues. /// - #[cfg_attr(feature = "serde", derive(serde::Serialize))] + #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] #[derive(Debug, PartialEq, Clone)] pub struct MsgLinuxProcessSocketQueues { /// The message sender_id - #[cfg_attr(feature = "serde", serde(skip_serializing))] + #[cfg_attr(feature = "serde", serde(skip_serializing, alias = "sender"))] pub sender_id: Option, /// sequence of this status message, values from 0-9 - #[cfg_attr(feature = "serde", serde(rename(serialize = "index")))] + #[cfg_attr(feature = "serde", serde(rename = "index"))] pub index: u8, /// the PID of the process in question - #[cfg_attr(feature = "serde", serde(rename(serialize = "pid")))] + #[cfg_attr(feature = "serde", serde(rename = "pid"))] pub pid: u16, /// the total amount of receive data queued for this process - #[cfg_attr(feature = "serde", serde(rename(serialize = "recv_queued")))] + #[cfg_attr(feature = "serde", serde(rename = "recv_queued"))] pub recv_queued: u16, /// the total amount of send data queued for this process - #[cfg_attr(feature = "serde", serde(rename(serialize = "send_queued")))] + #[cfg_attr(feature = "serde", serde(rename = "send_queued"))] pub send_queued: u16, /// A bitfield indicating the socket types used: 0x1 (tcp), 0x2 (udp), 0x4 /// (unix stream), 0x8 (unix dgram), 0x10 (netlink), and 0x8000 (unknown) - #[cfg_attr(feature = "serde", serde(rename(serialize = "socket_types")))] + #[cfg_attr(feature = "serde", serde(rename = "socket_types"))] pub socket_types: u16, /// A bitfield indicating the socket states: 0x1 (established), 0x2 (syn- /// sent), 0x4 (syn-recv), 0x8 (fin-wait-1), 0x10 (fin-wait-2), 0x20 (time- /// wait), 0x40 (closed), 0x80 (close-wait), 0x100 (last-ack), 0x200 /// (listen), 0x400 (closing), 0x800 (unconnected), and 0x8000 (unknown) - #[cfg_attr(feature = "serde", serde(rename(serialize = "socket_states")))] + #[cfg_attr(feature = "serde", serde(rename = "socket_states"))] pub socket_states: u16, /// Address of the largest queue, remote or local depending on the /// directionality of the connection. - #[cfg_attr(feature = "serde", serde(rename(serialize = "address_of_largest")))] + #[cfg_attr(feature = "serde", serde(rename = "address_of_largest"))] pub address_of_largest: SbpString<[u8; 64], Unterminated>, /// the command line of the process in question - #[cfg_attr(feature = "serde", serde(rename(serialize = "cmdline")))] + #[cfg_attr(feature = "serde", serde(rename = "cmdline"))] pub cmdline: SbpString, Unterminated>, } @@ -963,27 +963,27 @@ pub mod msg_linux_socket_usage { /// /// Summaries the socket usage across the system. /// - #[cfg_attr(feature = "serde", derive(serde::Serialize))] + #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] #[derive(Debug, PartialEq, Clone)] pub struct MsgLinuxSocketUsage { /// The message sender_id - #[cfg_attr(feature = "serde", serde(skip_serializing))] + #[cfg_attr(feature = "serde", serde(skip_serializing, alias = "sender"))] pub sender_id: Option, /// average socket queue depths across all sockets on the system - #[cfg_attr(feature = "serde", serde(rename(serialize = "avg_queue_depth")))] + #[cfg_attr(feature = "serde", serde(rename = "avg_queue_depth"))] pub avg_queue_depth: u32, /// the max queue depth seen within the reporting period - #[cfg_attr(feature = "serde", serde(rename(serialize = "max_queue_depth")))] + #[cfg_attr(feature = "serde", serde(rename = "max_queue_depth"))] pub max_queue_depth: u32, /// A count for each socket type reported in the `socket_types_reported` /// field, the first entry corresponds to the first enabled bit in /// `types_reported`. - #[cfg_attr(feature = "serde", serde(rename(serialize = "socket_state_counts")))] + #[cfg_attr(feature = "serde", serde(rename = "socket_state_counts"))] pub socket_state_counts: [u16; 16], /// A count for each socket type reported in the `socket_types_reported` /// field, the first entry corresponds to the first enabled bit in /// `types_reported`. - #[cfg_attr(feature = "serde", serde(rename(serialize = "socket_type_counts")))] + #[cfg_attr(feature = "serde", serde(rename = "socket_type_counts"))] pub socket_type_counts: [u16; 16], } @@ -1060,35 +1060,35 @@ pub mod msg_linux_sys_state { /// This presents a summary of CPU and memory utilization, including a /// timestamp. /// - #[cfg_attr(feature = "serde", derive(serde::Serialize))] + #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] #[derive(Debug, PartialEq, Clone)] pub struct MsgLinuxSysState { /// The message sender_id - #[cfg_attr(feature = "serde", serde(skip_serializing))] + #[cfg_attr(feature = "serde", serde(skip_serializing, alias = "sender"))] pub sender_id: Option, /// total system memory, in MiB - #[cfg_attr(feature = "serde", serde(rename(serialize = "mem_total")))] + #[cfg_attr(feature = "serde", serde(rename = "mem_total"))] pub mem_total: u16, /// percent of CPU used, expressed as a fraction of 256 - #[cfg_attr(feature = "serde", serde(rename(serialize = "pcpu")))] + #[cfg_attr(feature = "serde", serde(rename = "pcpu"))] pub pcpu: u8, /// percent of memory used, expressed as a fraction of 256 - #[cfg_attr(feature = "serde", serde(rename(serialize = "pmem")))] + #[cfg_attr(feature = "serde", serde(rename = "pmem"))] pub pmem: u8, /// number of processes that started during collection phase - #[cfg_attr(feature = "serde", serde(rename(serialize = "procs_starting")))] + #[cfg_attr(feature = "serde", serde(rename = "procs_starting"))] pub procs_starting: u16, /// number of processes that stopped during collection phase - #[cfg_attr(feature = "serde", serde(rename(serialize = "procs_stopping")))] + #[cfg_attr(feature = "serde", serde(rename = "procs_stopping"))] pub procs_stopping: u16, /// the count of processes on the system - #[cfg_attr(feature = "serde", serde(rename(serialize = "pid_count")))] + #[cfg_attr(feature = "serde", serde(rename = "pid_count"))] pub pid_count: u16, /// timestamp of message, refer to flags field for how to interpret - #[cfg_attr(feature = "serde", serde(rename(serialize = "time")))] + #[cfg_attr(feature = "serde", serde(rename = "time"))] pub time: u32, /// flags - #[cfg_attr(feature = "serde", serde(rename(serialize = "flags")))] + #[cfg_attr(feature = "serde", serde(rename = "flags"))] pub flags: u8, } @@ -1226,29 +1226,29 @@ pub mod msg_linux_sys_state_dep_a { /// /// This presents a summary of CPU and memory utilization. /// - #[cfg_attr(feature = "serde", derive(serde::Serialize))] + #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] #[derive(Debug, PartialEq, Clone)] pub struct MsgLinuxSysStateDepA { /// The message sender_id - #[cfg_attr(feature = "serde", serde(skip_serializing))] + #[cfg_attr(feature = "serde", serde(skip_serializing, alias = "sender"))] pub sender_id: Option, /// total system memory - #[cfg_attr(feature = "serde", serde(rename(serialize = "mem_total")))] + #[cfg_attr(feature = "serde", serde(rename = "mem_total"))] pub mem_total: u16, /// percent of total cpu currently utilized - #[cfg_attr(feature = "serde", serde(rename(serialize = "pcpu")))] + #[cfg_attr(feature = "serde", serde(rename = "pcpu"))] pub pcpu: u8, /// percent of total memory currently utilized - #[cfg_attr(feature = "serde", serde(rename(serialize = "pmem")))] + #[cfg_attr(feature = "serde", serde(rename = "pmem"))] pub pmem: u8, /// number of processes that started during collection phase - #[cfg_attr(feature = "serde", serde(rename(serialize = "procs_starting")))] + #[cfg_attr(feature = "serde", serde(rename = "procs_starting"))] pub procs_starting: u16, /// number of processes that stopped during collection phase - #[cfg_attr(feature = "serde", serde(rename(serialize = "procs_stopping")))] + #[cfg_attr(feature = "serde", serde(rename = "procs_stopping"))] pub procs_stopping: u16, /// the count of processes on the system - #[cfg_attr(feature = "serde", serde(rename(serialize = "pid_count")))] + #[cfg_attr(feature = "serde", serde(rename = "pid_count"))] pub pid_count: u16, } diff --git a/rust/sbp/src/messages/logging.rs b/rust/sbp/src/messages/logging.rs index 9f67b96559..25999dfe96 100644 --- a/rust/sbp/src/messages/logging.rs +++ b/rust/sbp/src/messages/logging.rs @@ -34,20 +34,20 @@ pub mod msg_fwd { /// forwarded msg contains. Protocol 0 represents SBP and the remaining values /// are implementation defined. /// - #[cfg_attr(feature = "serde", derive(serde::Serialize))] + #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] #[derive(Debug, PartialEq, Clone)] pub struct MsgFwd { /// The message sender_id - #[cfg_attr(feature = "serde", serde(skip_serializing))] + #[cfg_attr(feature = "serde", serde(skip_serializing, alias = "sender"))] pub sender_id: Option, /// source identifier - #[cfg_attr(feature = "serde", serde(rename(serialize = "source")))] + #[cfg_attr(feature = "serde", serde(rename = "source"))] pub source: u8, /// protocol identifier - #[cfg_attr(feature = "serde", serde(rename(serialize = "protocol")))] + #[cfg_attr(feature = "serde", serde(rename = "protocol"))] pub protocol: u8, /// variable length wrapped binary message - #[cfg_attr(feature = "serde", serde(rename(serialize = "fwd_payload")))] + #[cfg_attr(feature = "serde", serde(rename = "fwd_payload"))] pub fwd_payload: Vec, } @@ -121,17 +121,17 @@ pub mod msg_log { /// containing errors, warnings and informational messages at ERROR, WARNING, /// DEBUG, INFO logging levels. /// - #[cfg_attr(feature = "serde", derive(serde::Serialize))] + #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] #[derive(Debug, PartialEq, Clone)] pub struct MsgLog { /// The message sender_id - #[cfg_attr(feature = "serde", serde(skip_serializing))] + #[cfg_attr(feature = "serde", serde(skip_serializing, alias = "sender"))] pub sender_id: Option, /// Logging level - #[cfg_attr(feature = "serde", serde(rename(serialize = "level")))] + #[cfg_attr(feature = "serde", serde(rename = "level"))] pub level: u8, /// Human-readable string - #[cfg_attr(feature = "serde", serde(rename(serialize = "text")))] + #[cfg_attr(feature = "serde", serde(rename = "text"))] pub text: SbpString, Unterminated>, } @@ -274,14 +274,14 @@ pub mod msg_print_dep { /// /// Deprecated. /// - #[cfg_attr(feature = "serde", derive(serde::Serialize))] + #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] #[derive(Debug, PartialEq, Clone)] pub struct MsgPrintDep { /// The message sender_id - #[cfg_attr(feature = "serde", serde(skip_serializing))] + #[cfg_attr(feature = "serde", serde(skip_serializing, alias = "sender"))] pub sender_id: Option, /// Human-readable string - #[cfg_attr(feature = "serde", serde(rename(serialize = "text")))] + #[cfg_attr(feature = "serde", serde(rename = "text"))] pub text: SbpString, Unterminated>, } diff --git a/rust/sbp/src/messages/mag.rs b/rust/sbp/src/messages/mag.rs index 17ae02f291..f66dd82be7 100644 --- a/rust/sbp/src/messages/mag.rs +++ b/rust/sbp/src/messages/mag.rs @@ -25,27 +25,27 @@ pub mod msg_mag_raw { /// /// Raw data from the magnetometer. /// - #[cfg_attr(feature = "serde", derive(serde::Serialize))] + #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] #[derive(Debug, PartialEq, Clone)] pub struct MsgMagRaw { /// The message sender_id - #[cfg_attr(feature = "serde", serde(skip_serializing))] + #[cfg_attr(feature = "serde", serde(skip_serializing, alias = "sender"))] pub sender_id: Option, /// Milliseconds since start of GPS week. If the high bit is set, the time /// is unknown or invalid. - #[cfg_attr(feature = "serde", serde(rename(serialize = "tow")))] + #[cfg_attr(feature = "serde", serde(rename = "tow"))] pub tow: u32, /// Milliseconds since start of GPS week, fractional part - #[cfg_attr(feature = "serde", serde(rename(serialize = "tow_f")))] + #[cfg_attr(feature = "serde", serde(rename = "tow_f"))] pub tow_f: u8, /// Magnetic field in the body frame X axis - #[cfg_attr(feature = "serde", serde(rename(serialize = "mag_x")))] + #[cfg_attr(feature = "serde", serde(rename = "mag_x"))] pub mag_x: i16, /// Magnetic field in the body frame Y axis - #[cfg_attr(feature = "serde", serde(rename(serialize = "mag_y")))] + #[cfg_attr(feature = "serde", serde(rename = "mag_y"))] pub mag_y: i16, /// Magnetic field in the body frame Z axis - #[cfg_attr(feature = "serde", serde(rename(serialize = "mag_z")))] + #[cfg_attr(feature = "serde", serde(rename = "mag_z"))] pub mag_z: i16, } diff --git a/rust/sbp/src/messages/mod.rs b/rust/sbp/src/messages/mod.rs index 67bc7c4d1d..f33dbd05d1 100644 --- a/rust/sbp/src/messages/mod.rs +++ b/rust/sbp/src/messages/mod.rs @@ -795,6 +795,718 @@ pub enum Sbp { Unknown(Unknown), } +#[cfg(feature = "serde")] +impl<'de> serde::Deserialize<'de> for Sbp { + fn deserialize(deserializer: D) -> Result + where + D: serde::Deserializer<'de>, + { + let value = serde_json::Value::deserialize(deserializer)?; + match value + .get("msg_type") + .and_then(|v| v.as_u64()) + .and_then(|v| v.try_into().ok()) + { + Some(MsgPrintDep::MESSAGE_TYPE) => { + serde_json::from_value::(value).map(Sbp::MsgPrintDep) + } + Some(MsgTrackingStateDetailedDep::MESSAGE_TYPE) => { + serde_json::from_value::(value) + .map(Sbp::MsgTrackingStateDetailedDep) + } + Some(MsgTrackingStateDepB::MESSAGE_TYPE) => { + serde_json::from_value::(value).map(Sbp::MsgTrackingStateDepB) + } + Some(MsgAcqResultDepB::MESSAGE_TYPE) => { + serde_json::from_value::(value).map(Sbp::MsgAcqResultDepB) + } + Some(MsgAcqResultDepA::MESSAGE_TYPE) => { + serde_json::from_value::(value).map(Sbp::MsgAcqResultDepA) + } + Some(MsgTrackingStateDepA::MESSAGE_TYPE) => { + serde_json::from_value::(value).map(Sbp::MsgTrackingStateDepA) + } + Some(MsgThreadState::MESSAGE_TYPE) => { + serde_json::from_value::(value).map(Sbp::MsgThreadState) + } + Some(MsgUartStateDepa::MESSAGE_TYPE) => { + serde_json::from_value::(value).map(Sbp::MsgUartStateDepa) + } + Some(MsgIarState::MESSAGE_TYPE) => { + serde_json::from_value::(value).map(Sbp::MsgIarState) + } + Some(MsgEphemerisDepA::MESSAGE_TYPE) => { + serde_json::from_value::(value).map(Sbp::MsgEphemerisDepA) + } + Some(MsgMaskSatelliteDep::MESSAGE_TYPE) => { + serde_json::from_value::(value).map(Sbp::MsgMaskSatelliteDep) + } + Some(MsgTrackingIqDepA::MESSAGE_TYPE) => { + serde_json::from_value::(value).map(Sbp::MsgTrackingIqDepA) + } + Some(MsgUartState::MESSAGE_TYPE) => { + serde_json::from_value::(value).map(Sbp::MsgUartState) + } + Some(MsgAcqSvProfileDep::MESSAGE_TYPE) => { + serde_json::from_value::(value).map(Sbp::MsgAcqSvProfileDep) + } + Some(MsgAcqResultDepC::MESSAGE_TYPE) => { + serde_json::from_value::(value).map(Sbp::MsgAcqResultDepC) + } + Some(MsgTrackingStateDetailedDepA::MESSAGE_TYPE) => { + serde_json::from_value::(value) + .map(Sbp::MsgTrackingStateDetailedDepA) + } + Some(MsgResetFilters::MESSAGE_TYPE) => { + serde_json::from_value::(value).map(Sbp::MsgResetFilters) + } + Some(MsgInitBaseDep::MESSAGE_TYPE) => { + serde_json::from_value::(value).map(Sbp::MsgInitBaseDep) + } + Some(MsgMaskSatellite::MESSAGE_TYPE) => { + serde_json::from_value::(value).map(Sbp::MsgMaskSatellite) + } + Some(MsgTrackingIqDepB::MESSAGE_TYPE) => { + serde_json::from_value::(value).map(Sbp::MsgTrackingIqDepB) + } + Some(MsgTrackingIq::MESSAGE_TYPE) => { + serde_json::from_value::(value).map(Sbp::MsgTrackingIq) + } + Some(MsgAcqSvProfile::MESSAGE_TYPE) => { + serde_json::from_value::(value).map(Sbp::MsgAcqSvProfile) + } + Some(MsgAcqResult::MESSAGE_TYPE) => { + serde_json::from_value::(value).map(Sbp::MsgAcqResult) + } + Some(MsgTrackingState::MESSAGE_TYPE) => { + serde_json::from_value::(value).map(Sbp::MsgTrackingState) + } + Some(MsgObsDepB::MESSAGE_TYPE) => { + serde_json::from_value::(value).map(Sbp::MsgObsDepB) + } + Some(MsgBasePosLlh::MESSAGE_TYPE) => { + serde_json::from_value::(value).map(Sbp::MsgBasePosLlh) + } + Some(MsgObsDepA::MESSAGE_TYPE) => { + serde_json::from_value::(value).map(Sbp::MsgObsDepA) + } + Some(MsgEphemerisDepB::MESSAGE_TYPE) => { + serde_json::from_value::(value).map(Sbp::MsgEphemerisDepB) + } + Some(MsgEphemerisDepC::MESSAGE_TYPE) => { + serde_json::from_value::(value).map(Sbp::MsgEphemerisDepC) + } + Some(MsgBasePosEcef::MESSAGE_TYPE) => { + serde_json::from_value::(value).map(Sbp::MsgBasePosEcef) + } + Some(MsgObsDepC::MESSAGE_TYPE) => { + serde_json::from_value::(value).map(Sbp::MsgObsDepC) + } + Some(MsgObs::MESSAGE_TYPE) => serde_json::from_value::(value).map(Sbp::MsgObs), + Some(MsgSpecanDep::MESSAGE_TYPE) => { + serde_json::from_value::(value).map(Sbp::MsgSpecanDep) + } + Some(MsgSpecan::MESSAGE_TYPE) => { + serde_json::from_value::(value).map(Sbp::MsgSpecan) + } + Some(MsgMeasurementState::MESSAGE_TYPE) => { + serde_json::from_value::(value).map(Sbp::MsgMeasurementState) + } + Some(MsgSetTime::MESSAGE_TYPE) => { + serde_json::from_value::(value).map(Sbp::MsgSetTime) + } + Some(MsgAlmanac::MESSAGE_TYPE) => { + serde_json::from_value::(value).map(Sbp::MsgAlmanac) + } + Some(MsgAlmanacGpsDep::MESSAGE_TYPE) => { + serde_json::from_value::(value).map(Sbp::MsgAlmanacGpsDep) + } + Some(MsgAlmanacGloDep::MESSAGE_TYPE) => { + serde_json::from_value::(value).map(Sbp::MsgAlmanacGloDep) + } + Some(MsgAlmanacGps::MESSAGE_TYPE) => { + serde_json::from_value::(value).map(Sbp::MsgAlmanacGps) + } + Some(MsgAlmanacGlo::MESSAGE_TYPE) => { + serde_json::from_value::(value).map(Sbp::MsgAlmanacGlo) + } + Some(MsgGloBiases::MESSAGE_TYPE) => { + serde_json::from_value::(value).map(Sbp::MsgGloBiases) + } + Some(MsgEphemerisDepD::MESSAGE_TYPE) => { + serde_json::from_value::(value).map(Sbp::MsgEphemerisDepD) + } + Some(MsgEphemerisGpsDepE::MESSAGE_TYPE) => { + serde_json::from_value::(value).map(Sbp::MsgEphemerisGpsDepE) + } + Some(MsgEphemerisSbasDepA::MESSAGE_TYPE) => { + serde_json::from_value::(value).map(Sbp::MsgEphemerisSbasDepA) + } + Some(MsgEphemerisGloDepA::MESSAGE_TYPE) => { + serde_json::from_value::(value).map(Sbp::MsgEphemerisGloDepA) + } + Some(MsgEphemerisSbasDepB::MESSAGE_TYPE) => { + serde_json::from_value::(value).map(Sbp::MsgEphemerisSbasDepB) + } + Some(MsgEphemerisGloDepB::MESSAGE_TYPE) => { + serde_json::from_value::(value).map(Sbp::MsgEphemerisGloDepB) + } + Some(MsgEphemerisGpsDepF::MESSAGE_TYPE) => { + serde_json::from_value::(value).map(Sbp::MsgEphemerisGpsDepF) + } + Some(MsgEphemerisGloDepC::MESSAGE_TYPE) => { + serde_json::from_value::(value).map(Sbp::MsgEphemerisGloDepC) + } + Some(MsgEphemerisGloDepD::MESSAGE_TYPE) => { + serde_json::from_value::(value).map(Sbp::MsgEphemerisGloDepD) + } + Some(MsgEphemerisBds::MESSAGE_TYPE) => { + serde_json::from_value::(value).map(Sbp::MsgEphemerisBds) + } + Some(MsgEphemerisGps::MESSAGE_TYPE) => { + serde_json::from_value::(value).map(Sbp::MsgEphemerisGps) + } + Some(MsgEphemerisGlo::MESSAGE_TYPE) => { + serde_json::from_value::(value).map(Sbp::MsgEphemerisGlo) + } + Some(MsgEphemerisSbas::MESSAGE_TYPE) => { + serde_json::from_value::(value).map(Sbp::MsgEphemerisSbas) + } + Some(MsgEphemerisGal::MESSAGE_TYPE) => { + serde_json::from_value::(value).map(Sbp::MsgEphemerisGal) + } + Some(MsgEphemerisQzss::MESSAGE_TYPE) => { + serde_json::from_value::(value).map(Sbp::MsgEphemerisQzss) + } + Some(MsgIono::MESSAGE_TYPE) => { + serde_json::from_value::(value).map(Sbp::MsgIono) + } + Some(MsgSvConfigurationGpsDep::MESSAGE_TYPE) => { + serde_json::from_value::(value) + .map(Sbp::MsgSvConfigurationGpsDep) + } + Some(MsgGroupDelayDepA::MESSAGE_TYPE) => { + serde_json::from_value::(value).map(Sbp::MsgGroupDelayDepA) + } + Some(MsgGroupDelayDepB::MESSAGE_TYPE) => { + serde_json::from_value::(value).map(Sbp::MsgGroupDelayDepB) + } + Some(MsgGroupDelay::MESSAGE_TYPE) => { + serde_json::from_value::(value).map(Sbp::MsgGroupDelay) + } + Some(MsgEphemerisGalDepA::MESSAGE_TYPE) => { + serde_json::from_value::(value).map(Sbp::MsgEphemerisGalDepA) + } + Some(MsgGnssCapb::MESSAGE_TYPE) => { + serde_json::from_value::(value).map(Sbp::MsgGnssCapb) + } + Some(MsgSvAzEl::MESSAGE_TYPE) => { + serde_json::from_value::(value).map(Sbp::MsgSvAzEl) + } + Some(MsgSettingsWrite::MESSAGE_TYPE) => { + serde_json::from_value::(value).map(Sbp::MsgSettingsWrite) + } + Some(MsgSettingsSave::MESSAGE_TYPE) => { + serde_json::from_value::(value).map(Sbp::MsgSettingsSave) + } + Some(MsgSettingsReadByIndexReq::MESSAGE_TYPE) => { + serde_json::from_value::(value) + .map(Sbp::MsgSettingsReadByIndexReq) + } + Some(MsgFileioReadResp::MESSAGE_TYPE) => { + serde_json::from_value::(value).map(Sbp::MsgFileioReadResp) + } + Some(MsgSettingsReadReq::MESSAGE_TYPE) => { + serde_json::from_value::(value).map(Sbp::MsgSettingsReadReq) + } + Some(MsgSettingsReadResp::MESSAGE_TYPE) => { + serde_json::from_value::(value).map(Sbp::MsgSettingsReadResp) + } + Some(MsgSettingsReadByIndexDone::MESSAGE_TYPE) => { + serde_json::from_value::(value) + .map(Sbp::MsgSettingsReadByIndexDone) + } + Some(MsgSettingsReadByIndexResp::MESSAGE_TYPE) => { + serde_json::from_value::(value) + .map(Sbp::MsgSettingsReadByIndexResp) + } + Some(MsgFileioReadReq::MESSAGE_TYPE) => { + serde_json::from_value::(value).map(Sbp::MsgFileioReadReq) + } + Some(MsgFileioReadDirReq::MESSAGE_TYPE) => { + serde_json::from_value::(value).map(Sbp::MsgFileioReadDirReq) + } + Some(MsgFileioReadDirResp::MESSAGE_TYPE) => { + serde_json::from_value::(value).map(Sbp::MsgFileioReadDirResp) + } + Some(MsgFileioWriteResp::MESSAGE_TYPE) => { + serde_json::from_value::(value).map(Sbp::MsgFileioWriteResp) + } + Some(MsgFileioRemove::MESSAGE_TYPE) => { + serde_json::from_value::(value).map(Sbp::MsgFileioRemove) + } + Some(MsgFileioWriteReq::MESSAGE_TYPE) => { + serde_json::from_value::(value).map(Sbp::MsgFileioWriteReq) + } + Some(MsgSettingsRegister::MESSAGE_TYPE) => { + serde_json::from_value::(value).map(Sbp::MsgSettingsRegister) + } + Some(MsgSettingsWriteResp::MESSAGE_TYPE) => { + serde_json::from_value::(value).map(Sbp::MsgSettingsWriteResp) + } + Some(MsgBootloaderHandshakeDepA::MESSAGE_TYPE) => { + serde_json::from_value::(value) + .map(Sbp::MsgBootloaderHandshakeDepA) + } + Some(MsgBootloaderJumpToApp::MESSAGE_TYPE) => { + serde_json::from_value::(value) + .map(Sbp::MsgBootloaderJumpToApp) + } + Some(MsgResetDep::MESSAGE_TYPE) => { + serde_json::from_value::(value).map(Sbp::MsgResetDep) + } + Some(MsgBootloaderHandshakeReq::MESSAGE_TYPE) => { + serde_json::from_value::(value) + .map(Sbp::MsgBootloaderHandshakeReq) + } + Some(MsgBootloaderHandshakeResp::MESSAGE_TYPE) => { + serde_json::from_value::(value) + .map(Sbp::MsgBootloaderHandshakeResp) + } + Some(MsgDeviceMonitor::MESSAGE_TYPE) => { + serde_json::from_value::(value).map(Sbp::MsgDeviceMonitor) + } + Some(MsgReset::MESSAGE_TYPE) => { + serde_json::from_value::(value).map(Sbp::MsgReset) + } + Some(MsgCommandReq::MESSAGE_TYPE) => { + serde_json::from_value::(value).map(Sbp::MsgCommandReq) + } + Some(MsgCommandResp::MESSAGE_TYPE) => { + serde_json::from_value::(value).map(Sbp::MsgCommandResp) + } + Some(MsgNetworkStateReq::MESSAGE_TYPE) => { + serde_json::from_value::(value).map(Sbp::MsgNetworkStateReq) + } + Some(MsgNetworkStateResp::MESSAGE_TYPE) => { + serde_json::from_value::(value).map(Sbp::MsgNetworkStateResp) + } + Some(MsgCommandOutput::MESSAGE_TYPE) => { + serde_json::from_value::(value).map(Sbp::MsgCommandOutput) + } + Some(MsgNetworkBandwidthUsage::MESSAGE_TYPE) => { + serde_json::from_value::(value) + .map(Sbp::MsgNetworkBandwidthUsage) + } + Some(MsgCellModemStatus::MESSAGE_TYPE) => { + serde_json::from_value::(value).map(Sbp::MsgCellModemStatus) + } + Some(MsgFrontEndGain::MESSAGE_TYPE) => { + serde_json::from_value::(value).map(Sbp::MsgFrontEndGain) + } + Some(MsgCwResults::MESSAGE_TYPE) => { + serde_json::from_value::(value).map(Sbp::MsgCwResults) + } + Some(MsgCwStart::MESSAGE_TYPE) => { + serde_json::from_value::(value).map(Sbp::MsgCwStart) + } + Some(MsgNapDeviceDnaResp::MESSAGE_TYPE) => { + serde_json::from_value::(value).map(Sbp::MsgNapDeviceDnaResp) + } + Some(MsgNapDeviceDnaReq::MESSAGE_TYPE) => { + serde_json::from_value::(value).map(Sbp::MsgNapDeviceDnaReq) + } + Some(MsgFlashDone::MESSAGE_TYPE) => { + serde_json::from_value::(value).map(Sbp::MsgFlashDone) + } + Some(MsgFlashReadResp::MESSAGE_TYPE) => { + serde_json::from_value::(value).map(Sbp::MsgFlashReadResp) + } + Some(MsgFlashErase::MESSAGE_TYPE) => { + serde_json::from_value::(value).map(Sbp::MsgFlashErase) + } + Some(MsgStmFlashLockSector::MESSAGE_TYPE) => { + serde_json::from_value::(value) + .map(Sbp::MsgStmFlashLockSector) + } + Some(MsgStmFlashUnlockSector::MESSAGE_TYPE) => { + serde_json::from_value::(value) + .map(Sbp::MsgStmFlashUnlockSector) + } + Some(MsgStmUniqueIdResp::MESSAGE_TYPE) => { + serde_json::from_value::(value).map(Sbp::MsgStmUniqueIdResp) + } + Some(MsgFlashProgram::MESSAGE_TYPE) => { + serde_json::from_value::(value).map(Sbp::MsgFlashProgram) + } + Some(MsgFlashReadReq::MESSAGE_TYPE) => { + serde_json::from_value::(value).map(Sbp::MsgFlashReadReq) + } + Some(MsgStmUniqueIdReq::MESSAGE_TYPE) => { + serde_json::from_value::(value).map(Sbp::MsgStmUniqueIdReq) + } + Some(MsgM25FlashWriteStatus::MESSAGE_TYPE) => { + serde_json::from_value::(value) + .map(Sbp::MsgM25FlashWriteStatus) + } + Some(MsgGpsTimeDepA::MESSAGE_TYPE) => { + serde_json::from_value::(value).map(Sbp::MsgGpsTimeDepA) + } + Some(MsgExtEvent::MESSAGE_TYPE) => { + serde_json::from_value::(value).map(Sbp::MsgExtEvent) + } + Some(MsgGpsTime::MESSAGE_TYPE) => { + serde_json::from_value::(value).map(Sbp::MsgGpsTime) + } + Some(MsgUtcTime::MESSAGE_TYPE) => { + serde_json::from_value::(value).map(Sbp::MsgUtcTime) + } + Some(MsgGpsTimeGnss::MESSAGE_TYPE) => { + serde_json::from_value::(value).map(Sbp::MsgGpsTimeGnss) + } + Some(MsgUtcTimeGnss::MESSAGE_TYPE) => { + serde_json::from_value::(value).map(Sbp::MsgUtcTimeGnss) + } + Some(MsgSettingsRegisterResp::MESSAGE_TYPE) => { + serde_json::from_value::(value) + .map(Sbp::MsgSettingsRegisterResp) + } + Some(MsgPosEcefDepA::MESSAGE_TYPE) => { + serde_json::from_value::(value).map(Sbp::MsgPosEcefDepA) + } + Some(MsgPosLlhDepA::MESSAGE_TYPE) => { + serde_json::from_value::(value).map(Sbp::MsgPosLlhDepA) + } + Some(MsgBaselineEcefDepA::MESSAGE_TYPE) => { + serde_json::from_value::(value).map(Sbp::MsgBaselineEcefDepA) + } + Some(MsgBaselineNedDepA::MESSAGE_TYPE) => { + serde_json::from_value::(value).map(Sbp::MsgBaselineNedDepA) + } + Some(MsgVelEcefDepA::MESSAGE_TYPE) => { + serde_json::from_value::(value).map(Sbp::MsgVelEcefDepA) + } + Some(MsgVelNedDepA::MESSAGE_TYPE) => { + serde_json::from_value::(value).map(Sbp::MsgVelNedDepA) + } + Some(MsgDopsDepA::MESSAGE_TYPE) => { + serde_json::from_value::(value).map(Sbp::MsgDopsDepA) + } + Some(MsgBaselineHeadingDepA::MESSAGE_TYPE) => { + serde_json::from_value::(value) + .map(Sbp::MsgBaselineHeadingDepA) + } + Some(MsgDops::MESSAGE_TYPE) => { + serde_json::from_value::(value).map(Sbp::MsgDops) + } + Some(MsgPosEcef::MESSAGE_TYPE) => { + serde_json::from_value::(value).map(Sbp::MsgPosEcef) + } + Some(MsgPosLlh::MESSAGE_TYPE) => { + serde_json::from_value::(value).map(Sbp::MsgPosLlh) + } + Some(MsgBaselineEcef::MESSAGE_TYPE) => { + serde_json::from_value::(value).map(Sbp::MsgBaselineEcef) + } + Some(MsgBaselineNed::MESSAGE_TYPE) => { + serde_json::from_value::(value).map(Sbp::MsgBaselineNed) + } + Some(MsgVelEcef::MESSAGE_TYPE) => { + serde_json::from_value::(value).map(Sbp::MsgVelEcef) + } + Some(MsgVelNed::MESSAGE_TYPE) => { + serde_json::from_value::(value).map(Sbp::MsgVelNed) + } + Some(MsgBaselineHeading::MESSAGE_TYPE) => { + serde_json::from_value::(value).map(Sbp::MsgBaselineHeading) + } + Some(MsgAgeCorrections::MESSAGE_TYPE) => { + serde_json::from_value::(value).map(Sbp::MsgAgeCorrections) + } + Some(MsgPosLlhCov::MESSAGE_TYPE) => { + serde_json::from_value::(value).map(Sbp::MsgPosLlhCov) + } + Some(MsgVelNedCov::MESSAGE_TYPE) => { + serde_json::from_value::(value).map(Sbp::MsgVelNedCov) + } + Some(MsgVelBody::MESSAGE_TYPE) => { + serde_json::from_value::(value).map(Sbp::MsgVelBody) + } + Some(MsgPosEcefCov::MESSAGE_TYPE) => { + serde_json::from_value::(value).map(Sbp::MsgPosEcefCov) + } + Some(MsgVelEcefCov::MESSAGE_TYPE) => { + serde_json::from_value::(value).map(Sbp::MsgVelEcefCov) + } + Some(MsgProtectionLevelDepA::MESSAGE_TYPE) => { + serde_json::from_value::(value) + .map(Sbp::MsgProtectionLevelDepA) + } + Some(MsgProtectionLevel::MESSAGE_TYPE) => { + serde_json::from_value::(value).map(Sbp::MsgProtectionLevel) + } + Some(MsgPosLlhAcc::MESSAGE_TYPE) => { + serde_json::from_value::(value).map(Sbp::MsgPosLlhAcc) + } + Some(MsgVelCog::MESSAGE_TYPE) => { + serde_json::from_value::(value).map(Sbp::MsgVelCog) + } + Some(MsgOrientQuat::MESSAGE_TYPE) => { + serde_json::from_value::(value).map(Sbp::MsgOrientQuat) + } + Some(MsgOrientEuler::MESSAGE_TYPE) => { + serde_json::from_value::(value).map(Sbp::MsgOrientEuler) + } + Some(MsgAngularRate::MESSAGE_TYPE) => { + serde_json::from_value::(value).map(Sbp::MsgAngularRate) + } + Some(MsgPosEcefGnss::MESSAGE_TYPE) => { + serde_json::from_value::(value).map(Sbp::MsgPosEcefGnss) + } + Some(MsgPosLlhGnss::MESSAGE_TYPE) => { + serde_json::from_value::(value).map(Sbp::MsgPosLlhGnss) + } + Some(MsgVelEcefGnss::MESSAGE_TYPE) => { + serde_json::from_value::(value).map(Sbp::MsgVelEcefGnss) + } + Some(MsgVelNedGnss::MESSAGE_TYPE) => { + serde_json::from_value::(value).map(Sbp::MsgVelNedGnss) + } + Some(MsgPosLlhCovGnss::MESSAGE_TYPE) => { + serde_json::from_value::(value).map(Sbp::MsgPosLlhCovGnss) + } + Some(MsgVelNedCovGnss::MESSAGE_TYPE) => { + serde_json::from_value::(value).map(Sbp::MsgVelNedCovGnss) + } + Some(MsgPosEcefCovGnss::MESSAGE_TYPE) => { + serde_json::from_value::(value).map(Sbp::MsgPosEcefCovGnss) + } + Some(MsgVelEcefCovGnss::MESSAGE_TYPE) => { + serde_json::from_value::(value).map(Sbp::MsgVelEcefCovGnss) + } + Some(MsgUtcLeapSecond::MESSAGE_TYPE) => { + serde_json::from_value::(value).map(Sbp::MsgUtcLeapSecond) + } + Some(MsgReferenceFrameParam::MESSAGE_TYPE) => { + serde_json::from_value::(value) + .map(Sbp::MsgReferenceFrameParam) + } + Some(MsgNdbEvent::MESSAGE_TYPE) => { + serde_json::from_value::(value).map(Sbp::MsgNdbEvent) + } + Some(MsgLog::MESSAGE_TYPE) => serde_json::from_value::(value).map(Sbp::MsgLog), + Some(MsgFwd::MESSAGE_TYPE) => serde_json::from_value::(value).map(Sbp::MsgFwd), + Some(MsgSsrOrbitClockDepA::MESSAGE_TYPE) => { + serde_json::from_value::(value).map(Sbp::MsgSsrOrbitClockDepA) + } + Some(MsgSsrOrbitClock::MESSAGE_TYPE) => { + serde_json::from_value::(value).map(Sbp::MsgSsrOrbitClock) + } + Some(MsgSsrOrbitClockBounds::MESSAGE_TYPE) => { + serde_json::from_value::(value) + .map(Sbp::MsgSsrOrbitClockBounds) + } + Some(MsgSsrOrbitClockBoundsDegradation::MESSAGE_TYPE) => { + serde_json::from_value::(value) + .map(Sbp::MsgSsrOrbitClockBoundsDegradation) + } + Some(MsgSsrCodeBiases::MESSAGE_TYPE) => { + serde_json::from_value::(value).map(Sbp::MsgSsrCodeBiases) + } + Some(MsgSsrPhaseBiases::MESSAGE_TYPE) => { + serde_json::from_value::(value).map(Sbp::MsgSsrPhaseBiases) + } + Some(MsgSsrStecCorrectionDepA::MESSAGE_TYPE) => { + serde_json::from_value::(value) + .map(Sbp::MsgSsrStecCorrectionDepA) + } + Some(MsgSsrCodePhaseBiasesBounds::MESSAGE_TYPE) => { + serde_json::from_value::(value) + .map(Sbp::MsgSsrCodePhaseBiasesBounds) + } + Some(MsgSsrGriddedCorrectionNoStdDepA::MESSAGE_TYPE) => { + serde_json::from_value::(value) + .map(Sbp::MsgSsrGriddedCorrectionNoStdDepA) + } + Some(MsgSsrGridDefinitionDepA::MESSAGE_TYPE) => { + serde_json::from_value::(value) + .map(Sbp::MsgSsrGridDefinitionDepA) + } + Some(MsgSsrTileDefinitionDep::MESSAGE_TYPE) => { + serde_json::from_value::(value) + .map(Sbp::MsgSsrTileDefinitionDep) + } + Some(MsgSsrTileDefinition::MESSAGE_TYPE) => { + serde_json::from_value::(value).map(Sbp::MsgSsrTileDefinition) + } + Some(MsgSsrGriddedCorrectionDepA::MESSAGE_TYPE) => { + serde_json::from_value::(value) + .map(Sbp::MsgSsrGriddedCorrectionDepA) + } + Some(MsgSsrStecCorrectionDep::MESSAGE_TYPE) => { + serde_json::from_value::(value) + .map(Sbp::MsgSsrStecCorrectionDep) + } + Some(MsgSsrGriddedCorrection::MESSAGE_TYPE) => { + serde_json::from_value::(value) + .map(Sbp::MsgSsrGriddedCorrection) + } + Some(MsgSsrStecCorrection::MESSAGE_TYPE) => { + serde_json::from_value::(value).map(Sbp::MsgSsrStecCorrection) + } + Some(MsgSsrGriddedCorrectionBounds::MESSAGE_TYPE) => { + serde_json::from_value::(value) + .map(Sbp::MsgSsrGriddedCorrectionBounds) + } + Some(MsgSsrSatelliteApc::MESSAGE_TYPE) => { + serde_json::from_value::(value).map(Sbp::MsgSsrSatelliteApc) + } + Some(MsgOsr::MESSAGE_TYPE) => serde_json::from_value::(value).map(Sbp::MsgOsr), + Some(MsgUserData::MESSAGE_TYPE) => { + serde_json::from_value::(value).map(Sbp::MsgUserData) + } + Some(MsgImuRaw::MESSAGE_TYPE) => { + serde_json::from_value::(value).map(Sbp::MsgImuRaw) + } + Some(MsgImuAux::MESSAGE_TYPE) => { + serde_json::from_value::(value).map(Sbp::MsgImuAux) + } + Some(MsgMagRaw::MESSAGE_TYPE) => { + serde_json::from_value::(value).map(Sbp::MsgMagRaw) + } + Some(MsgOdometry::MESSAGE_TYPE) => { + serde_json::from_value::(value).map(Sbp::MsgOdometry) + } + Some(MsgWheeltick::MESSAGE_TYPE) => { + serde_json::from_value::(value).map(Sbp::MsgWheeltick) + } + Some(MsgSsrFlagHighLevel::MESSAGE_TYPE) => { + serde_json::from_value::(value).map(Sbp::MsgSsrFlagHighLevel) + } + Some(MsgSsrFlagSatellites::MESSAGE_TYPE) => { + serde_json::from_value::(value).map(Sbp::MsgSsrFlagSatellites) + } + Some(MsgSsrFlagTropoGridPoints::MESSAGE_TYPE) => { + serde_json::from_value::(value) + .map(Sbp::MsgSsrFlagTropoGridPoints) + } + Some(MsgSsrFlagIonoGridPoints::MESSAGE_TYPE) => { + serde_json::from_value::(value) + .map(Sbp::MsgSsrFlagIonoGridPoints) + } + Some(MsgSsrFlagIonoTileSatLos::MESSAGE_TYPE) => { + serde_json::from_value::(value) + .map(Sbp::MsgSsrFlagIonoTileSatLos) + } + Some(MsgSsrFlagIonoGridPointSatLos::MESSAGE_TYPE) => { + serde_json::from_value::(value) + .map(Sbp::MsgSsrFlagIonoGridPointSatLos) + } + Some(MsgEd25519Signature::MESSAGE_TYPE) => { + serde_json::from_value::(value).map(Sbp::MsgEd25519Signature) + } + Some(MsgEd25519Certificate::MESSAGE_TYPE) => { + serde_json::from_value::(value) + .map(Sbp::MsgEd25519Certificate) + } + Some(MsgFileioConfigReq::MESSAGE_TYPE) => { + serde_json::from_value::(value).map(Sbp::MsgFileioConfigReq) + } + Some(MsgFileioConfigResp::MESSAGE_TYPE) => { + serde_json::from_value::(value).map(Sbp::MsgFileioConfigResp) + } + Some(MsgSbasRaw::MESSAGE_TYPE) => { + serde_json::from_value::(value).map(Sbp::MsgSbasRaw) + } + Some(MsgLinuxCpuStateDepA::MESSAGE_TYPE) => { + serde_json::from_value::(value).map(Sbp::MsgLinuxCpuStateDepA) + } + Some(MsgLinuxMemStateDepA::MESSAGE_TYPE) => { + serde_json::from_value::(value).map(Sbp::MsgLinuxMemStateDepA) + } + Some(MsgLinuxSysStateDepA::MESSAGE_TYPE) => { + serde_json::from_value::(value).map(Sbp::MsgLinuxSysStateDepA) + } + Some(MsgLinuxProcessSocketCounts::MESSAGE_TYPE) => { + serde_json::from_value::(value) + .map(Sbp::MsgLinuxProcessSocketCounts) + } + Some(MsgLinuxProcessSocketQueues::MESSAGE_TYPE) => { + serde_json::from_value::(value) + .map(Sbp::MsgLinuxProcessSocketQueues) + } + Some(MsgLinuxSocketUsage::MESSAGE_TYPE) => { + serde_json::from_value::(value).map(Sbp::MsgLinuxSocketUsage) + } + Some(MsgLinuxProcessFdCount::MESSAGE_TYPE) => { + serde_json::from_value::(value) + .map(Sbp::MsgLinuxProcessFdCount) + } + Some(MsgLinuxProcessFdSummary::MESSAGE_TYPE) => { + serde_json::from_value::(value) + .map(Sbp::MsgLinuxProcessFdSummary) + } + Some(MsgLinuxCpuState::MESSAGE_TYPE) => { + serde_json::from_value::(value).map(Sbp::MsgLinuxCpuState) + } + Some(MsgLinuxMemState::MESSAGE_TYPE) => { + serde_json::from_value::(value).map(Sbp::MsgLinuxMemState) + } + Some(MsgLinuxSysState::MESSAGE_TYPE) => { + serde_json::from_value::(value).map(Sbp::MsgLinuxSysState) + } + Some(MsgStartup::MESSAGE_TYPE) => { + serde_json::from_value::(value).map(Sbp::MsgStartup) + } + Some(MsgDgnssStatus::MESSAGE_TYPE) => { + serde_json::from_value::(value).map(Sbp::MsgDgnssStatus) + } + Some(MsgInsStatus::MESSAGE_TYPE) => { + serde_json::from_value::(value).map(Sbp::MsgInsStatus) + } + Some(MsgCsacTelemetry::MESSAGE_TYPE) => { + serde_json::from_value::(value).map(Sbp::MsgCsacTelemetry) + } + Some(MsgCsacTelemetryLabels::MESSAGE_TYPE) => { + serde_json::from_value::(value) + .map(Sbp::MsgCsacTelemetryLabels) + } + Some(MsgInsUpdates::MESSAGE_TYPE) => { + serde_json::from_value::(value).map(Sbp::MsgInsUpdates) + } + Some(MsgGnssTimeOffset::MESSAGE_TYPE) => { + serde_json::from_value::(value).map(Sbp::MsgGnssTimeOffset) + } + Some(MsgPpsTime::MESSAGE_TYPE) => { + serde_json::from_value::(value).map(Sbp::MsgPpsTime) + } + Some(MsgSensorAidEvent::MESSAGE_TYPE) => { + serde_json::from_value::(value).map(Sbp::MsgSensorAidEvent) + } + Some(MsgGroupMeta::MESSAGE_TYPE) => { + serde_json::from_value::(value).map(Sbp::MsgGroupMeta) + } + Some(MsgSolnMeta::MESSAGE_TYPE) => { + serde_json::from_value::(value).map(Sbp::MsgSolnMeta) + } + Some(MsgSolnMetaDepA::MESSAGE_TYPE) => { + serde_json::from_value::(value).map(Sbp::MsgSolnMetaDepA) + } + Some(MsgStatusJournal::MESSAGE_TYPE) => { + serde_json::from_value::(value).map(Sbp::MsgStatusJournal) + } + Some(MsgStatusReport::MESSAGE_TYPE) => { + serde_json::from_value::(value).map(Sbp::MsgStatusReport) + } + Some(MsgHeartbeat::MESSAGE_TYPE) => { + serde_json::from_value::(value).map(Sbp::MsgHeartbeat) + } + _ => serde_json::from_value::(value).map(Sbp::Unknown), + } + .map_err(serde::de::Error::custom) + } +} + impl Sbp { /// Parse a message from a [Frame](crate::Frame). /// diff --git a/rust/sbp/src/messages/navigation.rs b/rust/sbp/src/messages/navigation.rs index 0093d3dc5d..a43786bcc0 100644 --- a/rust/sbp/src/messages/navigation.rs +++ b/rust/sbp/src/messages/navigation.rs @@ -84,20 +84,20 @@ pub mod estimated_horizontal_error_ellipse { use super::*; use crate::messages::lib::*; /// Horizontal estimated error ellipse - #[cfg_attr(feature = "serde", derive(serde::Serialize))] + #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] #[derive(Debug, PartialEq, Clone)] pub struct EstimatedHorizontalErrorEllipse { /// The semi major axis of the estimated horizontal error ellipse at the /// user-configured confidence level; zero implies invalid. - #[cfg_attr(feature = "serde", serde(rename(serialize = "semi_major")))] + #[cfg_attr(feature = "serde", serde(rename = "semi_major"))] pub semi_major: f32, /// The semi minor axis of the estimated horizontal error ellipse at the /// user-configured confidence level; zero implies invalid. - #[cfg_attr(feature = "serde", serde(rename(serialize = "semi_minor")))] + #[cfg_attr(feature = "serde", serde(rename = "semi_minor"))] pub semi_minor: f32, /// The orientation of the semi major axis of the estimated horizontal error /// ellipse with respect to North. - #[cfg_attr(feature = "serde", serde(rename(serialize = "orientation")))] + #[cfg_attr(feature = "serde", serde(rename = "orientation"))] pub orientation: f32, } @@ -136,17 +136,17 @@ pub mod msg_age_corrections { /// This message reports the Age of the corrections used for the current /// Differential solution. /// - #[cfg_attr(feature = "serde", derive(serde::Serialize))] + #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] #[derive(Debug, PartialEq, Clone)] pub struct MsgAgeCorrections { /// The message sender_id - #[cfg_attr(feature = "serde", serde(skip_serializing))] + #[cfg_attr(feature = "serde", serde(skip_serializing, alias = "sender"))] pub sender_id: Option, /// GPS Time of Week - #[cfg_attr(feature = "serde", serde(rename(serialize = "tow")))] + #[cfg_attr(feature = "serde", serde(rename = "tow"))] pub tow: u32, /// Age of the corrections (0xFFFF indicates invalid) - #[cfg_attr(feature = "serde", serde(rename(serialize = "age")))] + #[cfg_attr(feature = "serde", serde(rename = "age"))] pub age: u16, } @@ -224,32 +224,32 @@ pub mod msg_baseline_ecef { /// base station to the rover receiver. The full GPS time is given by the /// preceding MSG_GPS_TIME with the matching time-of-week (tow). /// - #[cfg_attr(feature = "serde", derive(serde::Serialize))] + #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] #[derive(Debug, PartialEq, Clone)] pub struct MsgBaselineEcef { /// The message sender_id - #[cfg_attr(feature = "serde", serde(skip_serializing))] + #[cfg_attr(feature = "serde", serde(skip_serializing, alias = "sender"))] pub sender_id: Option, /// GPS Time of Week - #[cfg_attr(feature = "serde", serde(rename(serialize = "tow")))] + #[cfg_attr(feature = "serde", serde(rename = "tow"))] pub tow: u32, /// Baseline ECEF X coordinate - #[cfg_attr(feature = "serde", serde(rename(serialize = "x")))] + #[cfg_attr(feature = "serde", serde(rename = "x"))] pub x: i32, /// Baseline ECEF Y coordinate - #[cfg_attr(feature = "serde", serde(rename(serialize = "y")))] + #[cfg_attr(feature = "serde", serde(rename = "y"))] pub y: i32, /// Baseline ECEF Z coordinate - #[cfg_attr(feature = "serde", serde(rename(serialize = "z")))] + #[cfg_attr(feature = "serde", serde(rename = "z"))] pub z: i32, /// Position estimated standard deviation - #[cfg_attr(feature = "serde", serde(rename(serialize = "accuracy")))] + #[cfg_attr(feature = "serde", serde(rename = "accuracy"))] pub accuracy: u16, /// Number of satellites used in solution - #[cfg_attr(feature = "serde", serde(rename(serialize = "n_sats")))] + #[cfg_attr(feature = "serde", serde(rename = "n_sats"))] pub n_sats: u8, /// Status flags - #[cfg_attr(feature = "serde", serde(rename(serialize = "flags")))] + #[cfg_attr(feature = "serde", serde(rename = "flags"))] pub flags: u8, } @@ -405,32 +405,32 @@ pub mod msg_baseline_ecef_dep_a { /// base station to the rover receiver. The full GPS time is given by the /// preceding MSG_GPS_TIME with the matching time-of-week (tow). /// - #[cfg_attr(feature = "serde", derive(serde::Serialize))] + #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] #[derive(Debug, PartialEq, Clone)] pub struct MsgBaselineEcefDepA { /// The message sender_id - #[cfg_attr(feature = "serde", serde(skip_serializing))] + #[cfg_attr(feature = "serde", serde(skip_serializing, alias = "sender"))] pub sender_id: Option, /// GPS Time of Week - #[cfg_attr(feature = "serde", serde(rename(serialize = "tow")))] + #[cfg_attr(feature = "serde", serde(rename = "tow"))] pub tow: u32, /// Baseline ECEF X coordinate - #[cfg_attr(feature = "serde", serde(rename(serialize = "x")))] + #[cfg_attr(feature = "serde", serde(rename = "x"))] pub x: i32, /// Baseline ECEF Y coordinate - #[cfg_attr(feature = "serde", serde(rename(serialize = "y")))] + #[cfg_attr(feature = "serde", serde(rename = "y"))] pub y: i32, /// Baseline ECEF Z coordinate - #[cfg_attr(feature = "serde", serde(rename(serialize = "z")))] + #[cfg_attr(feature = "serde", serde(rename = "z"))] pub z: i32, /// Position accuracy estimate - #[cfg_attr(feature = "serde", serde(rename(serialize = "accuracy")))] + #[cfg_attr(feature = "serde", serde(rename = "accuracy"))] pub accuracy: u16, /// Number of satellites used in solution - #[cfg_attr(feature = "serde", serde(rename(serialize = "n_sats")))] + #[cfg_attr(feature = "serde", serde(rename = "n_sats"))] pub n_sats: u8, /// Status flags - #[cfg_attr(feature = "serde", serde(rename(serialize = "flags")))] + #[cfg_attr(feature = "serde", serde(rename = "flags"))] pub flags: u8, } @@ -669,23 +669,23 @@ pub mod msg_baseline_heading_dep_a { /// to the rover relative to True North. The full GPS time is given by the /// preceding MSG_GPS_TIME with the matching time-of-week (tow). /// - #[cfg_attr(feature = "serde", derive(serde::Serialize))] + #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] #[derive(Debug, PartialEq, Clone)] pub struct MsgBaselineHeadingDepA { /// The message sender_id - #[cfg_attr(feature = "serde", serde(skip_serializing))] + #[cfg_attr(feature = "serde", serde(skip_serializing, alias = "sender"))] pub sender_id: Option, /// GPS Time of Week - #[cfg_attr(feature = "serde", serde(rename(serialize = "tow")))] + #[cfg_attr(feature = "serde", serde(rename = "tow"))] pub tow: u32, /// Heading - #[cfg_attr(feature = "serde", serde(rename(serialize = "heading")))] + #[cfg_attr(feature = "serde", serde(rename = "heading"))] pub heading: u32, /// Number of satellites used in solution - #[cfg_attr(feature = "serde", serde(rename(serialize = "n_sats")))] + #[cfg_attr(feature = "serde", serde(rename = "n_sats"))] pub n_sats: u8, /// Status flags - #[cfg_attr(feature = "serde", serde(rename(serialize = "flags")))] + #[cfg_attr(feature = "serde", serde(rename = "flags"))] pub flags: u8, } @@ -915,35 +915,35 @@ pub mod msg_baseline_ned { /// GPS time is given by the preceding MSG_GPS_TIME with the matching time-of- /// week (tow). /// - #[cfg_attr(feature = "serde", derive(serde::Serialize))] + #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] #[derive(Debug, PartialEq, Clone)] pub struct MsgBaselineNed { /// The message sender_id - #[cfg_attr(feature = "serde", serde(skip_serializing))] + #[cfg_attr(feature = "serde", serde(skip_serializing, alias = "sender"))] pub sender_id: Option, /// GPS Time of Week - #[cfg_attr(feature = "serde", serde(rename(serialize = "tow")))] + #[cfg_attr(feature = "serde", serde(rename = "tow"))] pub tow: u32, /// Baseline North coordinate - #[cfg_attr(feature = "serde", serde(rename(serialize = "n")))] + #[cfg_attr(feature = "serde", serde(rename = "n"))] pub n: i32, /// Baseline East coordinate - #[cfg_attr(feature = "serde", serde(rename(serialize = "e")))] + #[cfg_attr(feature = "serde", serde(rename = "e"))] pub e: i32, /// Baseline Down coordinate - #[cfg_attr(feature = "serde", serde(rename(serialize = "d")))] + #[cfg_attr(feature = "serde", serde(rename = "d"))] pub d: i32, /// Horizontal position estimated standard deviation - #[cfg_attr(feature = "serde", serde(rename(serialize = "h_accuracy")))] + #[cfg_attr(feature = "serde", serde(rename = "h_accuracy"))] pub h_accuracy: u16, /// Vertical position estimated standard deviation - #[cfg_attr(feature = "serde", serde(rename(serialize = "v_accuracy")))] + #[cfg_attr(feature = "serde", serde(rename = "v_accuracy"))] pub v_accuracy: u16, /// Number of satellites used in solution - #[cfg_attr(feature = "serde", serde(rename(serialize = "n_sats")))] + #[cfg_attr(feature = "serde", serde(rename = "n_sats"))] pub n_sats: u8, /// Status flags - #[cfg_attr(feature = "serde", serde(rename(serialize = "flags")))] + #[cfg_attr(feature = "serde", serde(rename = "flags"))] pub flags: u8, } @@ -1105,35 +1105,35 @@ pub mod msg_baseline_ned_dep_a { /// GPS time is given by the preceding MSG_GPS_TIME with the matching time-of- /// week (tow). /// - #[cfg_attr(feature = "serde", derive(serde::Serialize))] + #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] #[derive(Debug, PartialEq, Clone)] pub struct MsgBaselineNedDepA { /// The message sender_id - #[cfg_attr(feature = "serde", serde(skip_serializing))] + #[cfg_attr(feature = "serde", serde(skip_serializing, alias = "sender"))] pub sender_id: Option, /// GPS Time of Week - #[cfg_attr(feature = "serde", serde(rename(serialize = "tow")))] + #[cfg_attr(feature = "serde", serde(rename = "tow"))] pub tow: u32, /// Baseline North coordinate - #[cfg_attr(feature = "serde", serde(rename(serialize = "n")))] + #[cfg_attr(feature = "serde", serde(rename = "n"))] pub n: i32, /// Baseline East coordinate - #[cfg_attr(feature = "serde", serde(rename(serialize = "e")))] + #[cfg_attr(feature = "serde", serde(rename = "e"))] pub e: i32, /// Baseline Down coordinate - #[cfg_attr(feature = "serde", serde(rename(serialize = "d")))] + #[cfg_attr(feature = "serde", serde(rename = "d"))] pub d: i32, /// Horizontal position accuracy estimate (not implemented). Defaults to 0. - #[cfg_attr(feature = "serde", serde(rename(serialize = "h_accuracy")))] + #[cfg_attr(feature = "serde", serde(rename = "h_accuracy"))] pub h_accuracy: u16, /// Vertical position accuracy estimate (not implemented). Defaults to 0. - #[cfg_attr(feature = "serde", serde(rename(serialize = "v_accuracy")))] + #[cfg_attr(feature = "serde", serde(rename = "v_accuracy"))] pub v_accuracy: u16, /// Number of satellites used in solution - #[cfg_attr(feature = "serde", serde(rename(serialize = "n_sats")))] + #[cfg_attr(feature = "serde", serde(rename = "n_sats"))] pub n_sats: u8, /// Status flags - #[cfg_attr(feature = "serde", serde(rename(serialize = "flags")))] + #[cfg_attr(feature = "serde", serde(rename = "flags"))] pub flags: u8, } @@ -1377,32 +1377,32 @@ pub mod msg_dops { /// flags field indicated whether the DOP reported corresponds to differential /// or SPP solution. /// - #[cfg_attr(feature = "serde", derive(serde::Serialize))] + #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] #[derive(Debug, PartialEq, Clone)] pub struct MsgDops { /// The message sender_id - #[cfg_attr(feature = "serde", serde(skip_serializing))] + #[cfg_attr(feature = "serde", serde(skip_serializing, alias = "sender"))] pub sender_id: Option, /// GPS Time of Week - #[cfg_attr(feature = "serde", serde(rename(serialize = "tow")))] + #[cfg_attr(feature = "serde", serde(rename = "tow"))] pub tow: u32, /// Geometric Dilution of Precision - #[cfg_attr(feature = "serde", serde(rename(serialize = "gdop")))] + #[cfg_attr(feature = "serde", serde(rename = "gdop"))] pub gdop: u16, /// Position Dilution of Precision - #[cfg_attr(feature = "serde", serde(rename(serialize = "pdop")))] + #[cfg_attr(feature = "serde", serde(rename = "pdop"))] pub pdop: u16, /// Time Dilution of Precision - #[cfg_attr(feature = "serde", serde(rename(serialize = "tdop")))] + #[cfg_attr(feature = "serde", serde(rename = "tdop"))] pub tdop: u16, /// Horizontal Dilution of Precision - #[cfg_attr(feature = "serde", serde(rename(serialize = "hdop")))] + #[cfg_attr(feature = "serde", serde(rename = "hdop"))] pub hdop: u16, /// Vertical Dilution of Precision - #[cfg_attr(feature = "serde", serde(rename(serialize = "vdop")))] + #[cfg_attr(feature = "serde", serde(rename = "vdop"))] pub vdop: u16, /// Indicates the position solution with which the DOPS message corresponds - #[cfg_attr(feature = "serde", serde(rename(serialize = "flags")))] + #[cfg_attr(feature = "serde", serde(rename = "flags"))] pub flags: u8, } @@ -1581,29 +1581,29 @@ pub mod msg_dops_dep_a { /// This dilution of precision (DOP) message describes the effect of /// navigation satellite geometry on positional measurement precision. /// - #[cfg_attr(feature = "serde", derive(serde::Serialize))] + #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] #[derive(Debug, PartialEq, Clone)] pub struct MsgDopsDepA { /// The message sender_id - #[cfg_attr(feature = "serde", serde(skip_serializing))] + #[cfg_attr(feature = "serde", serde(skip_serializing, alias = "sender"))] pub sender_id: Option, /// GPS Time of Week - #[cfg_attr(feature = "serde", serde(rename(serialize = "tow")))] + #[cfg_attr(feature = "serde", serde(rename = "tow"))] pub tow: u32, /// Geometric Dilution of Precision - #[cfg_attr(feature = "serde", serde(rename(serialize = "gdop")))] + #[cfg_attr(feature = "serde", serde(rename = "gdop"))] pub gdop: u16, /// Position Dilution of Precision - #[cfg_attr(feature = "serde", serde(rename(serialize = "pdop")))] + #[cfg_attr(feature = "serde", serde(rename = "pdop"))] pub pdop: u16, /// Time Dilution of Precision - #[cfg_attr(feature = "serde", serde(rename(serialize = "tdop")))] + #[cfg_attr(feature = "serde", serde(rename = "tdop"))] pub tdop: u16, /// Horizontal Dilution of Precision - #[cfg_attr(feature = "serde", serde(rename(serialize = "hdop")))] + #[cfg_attr(feature = "serde", serde(rename = "hdop"))] pub hdop: u16, /// Vertical Dilution of Precision - #[cfg_attr(feature = "serde", serde(rename(serialize = "vdop")))] + #[cfg_attr(feature = "serde", serde(rename = "vdop"))] pub vdop: u16, } @@ -1706,24 +1706,24 @@ pub mod msg_gps_time { /// same time (but lacking the ns field) and indicates a more precise time of /// these messages. /// - #[cfg_attr(feature = "serde", derive(serde::Serialize))] + #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] #[derive(Debug, PartialEq, Clone)] pub struct MsgGpsTime { /// The message sender_id - #[cfg_attr(feature = "serde", serde(skip_serializing))] + #[cfg_attr(feature = "serde", serde(skip_serializing, alias = "sender"))] pub sender_id: Option, /// GPS week number - #[cfg_attr(feature = "serde", serde(rename(serialize = "wn")))] + #[cfg_attr(feature = "serde", serde(rename = "wn"))] pub wn: u16, /// GPS time of week rounded to the nearest millisecond - #[cfg_attr(feature = "serde", serde(rename(serialize = "tow")))] + #[cfg_attr(feature = "serde", serde(rename = "tow"))] pub tow: u32, /// Nanosecond residual of millisecond-rounded TOW (ranges from -500000 to /// 500000) - #[cfg_attr(feature = "serde", serde(rename(serialize = "ns_residual")))] + #[cfg_attr(feature = "serde", serde(rename = "ns_residual"))] pub ns_residual: i32, /// Status flags (reserved) - #[cfg_attr(feature = "serde", serde(rename(serialize = "flags")))] + #[cfg_attr(feature = "serde", serde(rename = "flags"))] pub flags: u8, } @@ -1874,24 +1874,24 @@ pub mod msg_gps_time_dep_a { /// same time (but lacking the ns field) and indicates a more precise time of /// these messages. /// - #[cfg_attr(feature = "serde", derive(serde::Serialize))] + #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] #[derive(Debug, PartialEq, Clone)] pub struct MsgGpsTimeDepA { /// The message sender_id - #[cfg_attr(feature = "serde", serde(skip_serializing))] + #[cfg_attr(feature = "serde", serde(skip_serializing, alias = "sender"))] pub sender_id: Option, /// GPS week number - #[cfg_attr(feature = "serde", serde(rename(serialize = "wn")))] + #[cfg_attr(feature = "serde", serde(rename = "wn"))] pub wn: u16, /// GPS time of week rounded to the nearest millisecond - #[cfg_attr(feature = "serde", serde(rename(serialize = "tow")))] + #[cfg_attr(feature = "serde", serde(rename = "tow"))] pub tow: u32, /// Nanosecond residual of millisecond-rounded TOW (ranges from -500000 to /// 500000) - #[cfg_attr(feature = "serde", serde(rename(serialize = "ns_residual")))] + #[cfg_attr(feature = "serde", serde(rename = "ns_residual"))] pub ns_residual: i32, /// Status flags (reserved) - #[cfg_attr(feature = "serde", serde(rename(serialize = "flags")))] + #[cfg_attr(feature = "serde", serde(rename = "flags"))] pub flags: u8, } @@ -1991,24 +1991,24 @@ pub mod msg_gps_time_gnss { /// same time (but lacking the ns field) and indicates a more precise time of /// these messages. /// - #[cfg_attr(feature = "serde", derive(serde::Serialize))] + #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] #[derive(Debug, PartialEq, Clone)] pub struct MsgGpsTimeGnss { /// The message sender_id - #[cfg_attr(feature = "serde", serde(skip_serializing))] + #[cfg_attr(feature = "serde", serde(skip_serializing, alias = "sender"))] pub sender_id: Option, /// GPS week number - #[cfg_attr(feature = "serde", serde(rename(serialize = "wn")))] + #[cfg_attr(feature = "serde", serde(rename = "wn"))] pub wn: u16, /// GPS time of week rounded to the nearest millisecond - #[cfg_attr(feature = "serde", serde(rename(serialize = "tow")))] + #[cfg_attr(feature = "serde", serde(rename = "tow"))] pub tow: u32, /// Nanosecond residual of millisecond-rounded TOW (ranges from -500000 to /// 500000) - #[cfg_attr(feature = "serde", serde(rename(serialize = "ns_residual")))] + #[cfg_attr(feature = "serde", serde(rename = "ns_residual"))] pub ns_residual: i32, /// Status flags (reserved) - #[cfg_attr(feature = "serde", serde(rename(serialize = "flags")))] + #[cfg_attr(feature = "serde", serde(rename = "flags"))] pub flags: u8, } @@ -2155,32 +2155,32 @@ pub mod msg_pos_ecef { /// RTK baseline vector. The full GPS time is given by the preceding /// MSG_GPS_TIME with the matching time-of-week (tow). /// - #[cfg_attr(feature = "serde", derive(serde::Serialize))] + #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] #[derive(Debug, PartialEq, Clone)] pub struct MsgPosEcef { /// The message sender_id - #[cfg_attr(feature = "serde", serde(skip_serializing))] + #[cfg_attr(feature = "serde", serde(skip_serializing, alias = "sender"))] pub sender_id: Option, /// GPS Time of Week - #[cfg_attr(feature = "serde", serde(rename(serialize = "tow")))] + #[cfg_attr(feature = "serde", serde(rename = "tow"))] pub tow: u32, /// ECEF X coordinate - #[cfg_attr(feature = "serde", serde(rename(serialize = "x")))] + #[cfg_attr(feature = "serde", serde(rename = "x"))] pub x: f64, /// ECEF Y coordinate - #[cfg_attr(feature = "serde", serde(rename(serialize = "y")))] + #[cfg_attr(feature = "serde", serde(rename = "y"))] pub y: f64, /// ECEF Z coordinate - #[cfg_attr(feature = "serde", serde(rename(serialize = "z")))] + #[cfg_attr(feature = "serde", serde(rename = "z"))] pub z: f64, /// Position estimated standard deviation - #[cfg_attr(feature = "serde", serde(rename(serialize = "accuracy")))] + #[cfg_attr(feature = "serde", serde(rename = "accuracy"))] pub accuracy: u16, /// Number of satellites used in solution - #[cfg_attr(feature = "serde", serde(rename(serialize = "n_sats")))] + #[cfg_attr(feature = "serde", serde(rename = "n_sats"))] pub n_sats: u8, /// Status flags - #[cfg_attr(feature = "serde", serde(rename(serialize = "flags")))] + #[cfg_attr(feature = "serde", serde(rename = "flags"))] pub flags: u8, } @@ -2446,47 +2446,47 @@ pub mod msg_pos_ecef_cov { /// rover's RTK baseline vector. The full GPS time is given by the preceding /// MSG_GPS_TIME with the matching time-of-week (tow). /// - #[cfg_attr(feature = "serde", derive(serde::Serialize))] + #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] #[derive(Debug, PartialEq, Clone)] pub struct MsgPosEcefCov { /// The message sender_id - #[cfg_attr(feature = "serde", serde(skip_serializing))] + #[cfg_attr(feature = "serde", serde(skip_serializing, alias = "sender"))] pub sender_id: Option, /// GPS Time of Week - #[cfg_attr(feature = "serde", serde(rename(serialize = "tow")))] + #[cfg_attr(feature = "serde", serde(rename = "tow"))] pub tow: u32, /// ECEF X coordinate - #[cfg_attr(feature = "serde", serde(rename(serialize = "x")))] + #[cfg_attr(feature = "serde", serde(rename = "x"))] pub x: f64, /// ECEF Y coordinate - #[cfg_attr(feature = "serde", serde(rename(serialize = "y")))] + #[cfg_attr(feature = "serde", serde(rename = "y"))] pub y: f64, /// ECEF Z coordinate - #[cfg_attr(feature = "serde", serde(rename(serialize = "z")))] + #[cfg_attr(feature = "serde", serde(rename = "z"))] pub z: f64, /// Estimated variance of x - #[cfg_attr(feature = "serde", serde(rename(serialize = "cov_x_x")))] + #[cfg_attr(feature = "serde", serde(rename = "cov_x_x"))] pub cov_x_x: f32, /// Estimated covariance of x and y - #[cfg_attr(feature = "serde", serde(rename(serialize = "cov_x_y")))] + #[cfg_attr(feature = "serde", serde(rename = "cov_x_y"))] pub cov_x_y: f32, /// Estimated covariance of x and z - #[cfg_attr(feature = "serde", serde(rename(serialize = "cov_x_z")))] + #[cfg_attr(feature = "serde", serde(rename = "cov_x_z"))] pub cov_x_z: f32, /// Estimated variance of y - #[cfg_attr(feature = "serde", serde(rename(serialize = "cov_y_y")))] + #[cfg_attr(feature = "serde", serde(rename = "cov_y_y"))] pub cov_y_y: f32, /// Estimated covariance of y and z - #[cfg_attr(feature = "serde", serde(rename(serialize = "cov_y_z")))] + #[cfg_attr(feature = "serde", serde(rename = "cov_y_z"))] pub cov_y_z: f32, /// Estimated variance of z - #[cfg_attr(feature = "serde", serde(rename(serialize = "cov_z_z")))] + #[cfg_attr(feature = "serde", serde(rename = "cov_z_z"))] pub cov_z_z: f32, /// Number of satellites used in solution - #[cfg_attr(feature = "serde", serde(rename(serialize = "n_sats")))] + #[cfg_attr(feature = "serde", serde(rename = "n_sats"))] pub n_sats: u8, /// Status flags - #[cfg_attr(feature = "serde", serde(rename(serialize = "flags")))] + #[cfg_attr(feature = "serde", serde(rename = "flags"))] pub flags: u8, } @@ -2772,47 +2772,47 @@ pub mod msg_pos_ecef_cov_gnss { /// rover's RTK baseline vector. The full GPS time is given by the preceding /// MSG_GPS_TIME with the matching time-of-week (tow). /// - #[cfg_attr(feature = "serde", derive(serde::Serialize))] + #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] #[derive(Debug, PartialEq, Clone)] pub struct MsgPosEcefCovGnss { /// The message sender_id - #[cfg_attr(feature = "serde", serde(skip_serializing))] + #[cfg_attr(feature = "serde", serde(skip_serializing, alias = "sender"))] pub sender_id: Option, /// GPS Time of Week - #[cfg_attr(feature = "serde", serde(rename(serialize = "tow")))] + #[cfg_attr(feature = "serde", serde(rename = "tow"))] pub tow: u32, /// ECEF X coordinate - #[cfg_attr(feature = "serde", serde(rename(serialize = "x")))] + #[cfg_attr(feature = "serde", serde(rename = "x"))] pub x: f64, /// ECEF Y coordinate - #[cfg_attr(feature = "serde", serde(rename(serialize = "y")))] + #[cfg_attr(feature = "serde", serde(rename = "y"))] pub y: f64, /// ECEF Z coordinate - #[cfg_attr(feature = "serde", serde(rename(serialize = "z")))] + #[cfg_attr(feature = "serde", serde(rename = "z"))] pub z: f64, /// Estimated variance of x - #[cfg_attr(feature = "serde", serde(rename(serialize = "cov_x_x")))] + #[cfg_attr(feature = "serde", serde(rename = "cov_x_x"))] pub cov_x_x: f32, /// Estimated covariance of x and y - #[cfg_attr(feature = "serde", serde(rename(serialize = "cov_x_y")))] + #[cfg_attr(feature = "serde", serde(rename = "cov_x_y"))] pub cov_x_y: f32, /// Estimated covariance of x and z - #[cfg_attr(feature = "serde", serde(rename(serialize = "cov_x_z")))] + #[cfg_attr(feature = "serde", serde(rename = "cov_x_z"))] pub cov_x_z: f32, /// Estimated variance of y - #[cfg_attr(feature = "serde", serde(rename(serialize = "cov_y_y")))] + #[cfg_attr(feature = "serde", serde(rename = "cov_y_y"))] pub cov_y_y: f32, /// Estimated covariance of y and z - #[cfg_attr(feature = "serde", serde(rename(serialize = "cov_y_z")))] + #[cfg_attr(feature = "serde", serde(rename = "cov_y_z"))] pub cov_y_z: f32, /// Estimated variance of z - #[cfg_attr(feature = "serde", serde(rename(serialize = "cov_z_z")))] + #[cfg_attr(feature = "serde", serde(rename = "cov_z_z"))] pub cov_z_z: f32, /// Number of satellites used in solution - #[cfg_attr(feature = "serde", serde(rename(serialize = "n_sats")))] + #[cfg_attr(feature = "serde", serde(rename = "n_sats"))] pub n_sats: u8, /// Status flags - #[cfg_attr(feature = "serde", serde(rename(serialize = "flags")))] + #[cfg_attr(feature = "serde", serde(rename = "flags"))] pub flags: u8, } @@ -3001,32 +3001,32 @@ pub mod msg_pos_ecef_dep_a { /// RTK baseline vector. The full GPS time is given by the preceding /// MSG_GPS_TIME with the matching time-of-week (tow). /// - #[cfg_attr(feature = "serde", derive(serde::Serialize))] + #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] #[derive(Debug, PartialEq, Clone)] pub struct MsgPosEcefDepA { /// The message sender_id - #[cfg_attr(feature = "serde", serde(skip_serializing))] + #[cfg_attr(feature = "serde", serde(skip_serializing, alias = "sender"))] pub sender_id: Option, /// GPS Time of Week - #[cfg_attr(feature = "serde", serde(rename(serialize = "tow")))] + #[cfg_attr(feature = "serde", serde(rename = "tow"))] pub tow: u32, /// ECEF X coordinate - #[cfg_attr(feature = "serde", serde(rename(serialize = "x")))] + #[cfg_attr(feature = "serde", serde(rename = "x"))] pub x: f64, /// ECEF Y coordinate - #[cfg_attr(feature = "serde", serde(rename(serialize = "y")))] + #[cfg_attr(feature = "serde", serde(rename = "y"))] pub y: f64, /// ECEF Z coordinate - #[cfg_attr(feature = "serde", serde(rename(serialize = "z")))] + #[cfg_attr(feature = "serde", serde(rename = "z"))] pub z: f64, /// Position accuracy estimate (not implemented). Defaults to 0. - #[cfg_attr(feature = "serde", serde(rename(serialize = "accuracy")))] + #[cfg_attr(feature = "serde", serde(rename = "accuracy"))] pub accuracy: u16, /// Number of satellites used in solution - #[cfg_attr(feature = "serde", serde(rename(serialize = "n_sats")))] + #[cfg_attr(feature = "serde", serde(rename = "n_sats"))] pub n_sats: u8, /// Status flags - #[cfg_attr(feature = "serde", serde(rename(serialize = "flags")))] + #[cfg_attr(feature = "serde", serde(rename = "flags"))] pub flags: u8, } @@ -3274,32 +3274,32 @@ pub mod msg_pos_ecef_gnss { /// RTK baseline vector. The full GPS time is given by the preceding /// MSG_GPS_TIME with the matching time-of-week (tow). /// - #[cfg_attr(feature = "serde", derive(serde::Serialize))] + #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] #[derive(Debug, PartialEq, Clone)] pub struct MsgPosEcefGnss { /// The message sender_id - #[cfg_attr(feature = "serde", serde(skip_serializing))] + #[cfg_attr(feature = "serde", serde(skip_serializing, alias = "sender"))] pub sender_id: Option, /// GPS Time of Week - #[cfg_attr(feature = "serde", serde(rename(serialize = "tow")))] + #[cfg_attr(feature = "serde", serde(rename = "tow"))] pub tow: u32, /// ECEF X coordinate - #[cfg_attr(feature = "serde", serde(rename(serialize = "x")))] + #[cfg_attr(feature = "serde", serde(rename = "x"))] pub x: f64, /// ECEF Y coordinate - #[cfg_attr(feature = "serde", serde(rename(serialize = "y")))] + #[cfg_attr(feature = "serde", serde(rename = "y"))] pub y: f64, /// ECEF Z coordinate - #[cfg_attr(feature = "serde", serde(rename(serialize = "z")))] + #[cfg_attr(feature = "serde", serde(rename = "z"))] pub z: f64, /// Position estimated standard deviation - #[cfg_attr(feature = "serde", serde(rename(serialize = "accuracy")))] + #[cfg_attr(feature = "serde", serde(rename = "accuracy"))] pub accuracy: u16, /// Number of satellites used in solution - #[cfg_attr(feature = "serde", serde(rename(serialize = "n_sats")))] + #[cfg_attr(feature = "serde", serde(rename = "n_sats"))] pub n_sats: u8, /// Status flags - #[cfg_attr(feature = "serde", serde(rename(serialize = "flags")))] + #[cfg_attr(feature = "serde", serde(rename = "flags"))] pub flags: u8, } @@ -3468,35 +3468,35 @@ pub mod msg_pos_llh { /// vector. The full GPS time is given by the preceding MSG_GPS_TIME with the /// matching time-of-week (tow). /// - #[cfg_attr(feature = "serde", derive(serde::Serialize))] + #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] #[derive(Debug, PartialEq, Clone)] pub struct MsgPosLlh { /// The message sender_id - #[cfg_attr(feature = "serde", serde(skip_serializing))] + #[cfg_attr(feature = "serde", serde(skip_serializing, alias = "sender"))] pub sender_id: Option, /// GPS Time of Week - #[cfg_attr(feature = "serde", serde(rename(serialize = "tow")))] + #[cfg_attr(feature = "serde", serde(rename = "tow"))] pub tow: u32, /// Latitude - #[cfg_attr(feature = "serde", serde(rename(serialize = "lat")))] + #[cfg_attr(feature = "serde", serde(rename = "lat"))] pub lat: f64, /// Longitude - #[cfg_attr(feature = "serde", serde(rename(serialize = "lon")))] + #[cfg_attr(feature = "serde", serde(rename = "lon"))] pub lon: f64, /// Height above WGS84 ellipsoid - #[cfg_attr(feature = "serde", serde(rename(serialize = "height")))] + #[cfg_attr(feature = "serde", serde(rename = "height"))] pub height: f64, /// Horizontal position estimated standard deviation - #[cfg_attr(feature = "serde", serde(rename(serialize = "h_accuracy")))] + #[cfg_attr(feature = "serde", serde(rename = "h_accuracy"))] pub h_accuracy: u16, /// Vertical position estimated standard deviation - #[cfg_attr(feature = "serde", serde(rename(serialize = "v_accuracy")))] + #[cfg_attr(feature = "serde", serde(rename = "v_accuracy"))] pub v_accuracy: u16, /// Number of satellites used in solution. - #[cfg_attr(feature = "serde", serde(rename(serialize = "n_sats")))] + #[cfg_attr(feature = "serde", serde(rename = "n_sats"))] pub n_sats: u8, /// Status flags - #[cfg_attr(feature = "serde", serde(rename(serialize = "flags")))] + #[cfg_attr(feature = "serde", serde(rename = "flags"))] pub flags: u8, } @@ -3768,58 +3768,58 @@ pub mod msg_pos_llh_acc { /// The estimated errors are reported at a user-configurable confidence level. /// The user-configured percentile is encoded in the percentile field. /// - #[cfg_attr(feature = "serde", derive(serde::Serialize))] + #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] #[derive(Debug, PartialEq, Clone)] pub struct MsgPosLlhAcc { /// The message sender_id - #[cfg_attr(feature = "serde", serde(skip_serializing))] + #[cfg_attr(feature = "serde", serde(skip_serializing, alias = "sender"))] pub sender_id: Option, /// GPS Time of Week - #[cfg_attr(feature = "serde", serde(rename(serialize = "tow")))] + #[cfg_attr(feature = "serde", serde(rename = "tow"))] pub tow: u32, /// Latitude - #[cfg_attr(feature = "serde", serde(rename(serialize = "lat")))] + #[cfg_attr(feature = "serde", serde(rename = "lat"))] pub lat: f64, /// Longitude - #[cfg_attr(feature = "serde", serde(rename(serialize = "lon")))] + #[cfg_attr(feature = "serde", serde(rename = "lon"))] pub lon: f64, /// Height above WGS84 ellipsoid - #[cfg_attr(feature = "serde", serde(rename(serialize = "height")))] + #[cfg_attr(feature = "serde", serde(rename = "height"))] pub height: f64, /// Height above the geoid (i.e. height above mean sea level). See /// confidence_and_geoid for geoid model used. - #[cfg_attr(feature = "serde", serde(rename(serialize = "orthometric_height")))] + #[cfg_attr(feature = "serde", serde(rename = "orthometric_height"))] pub orthometric_height: f64, /// Estimated horizontal error at the user-configured confidence level; zero /// implies invalid. - #[cfg_attr(feature = "serde", serde(rename(serialize = "h_accuracy")))] + #[cfg_attr(feature = "serde", serde(rename = "h_accuracy"))] pub h_accuracy: f32, /// Estimated vertical error at the user-configured confidence level; zero /// implies invalid. - #[cfg_attr(feature = "serde", serde(rename(serialize = "v_accuracy")))] + #[cfg_attr(feature = "serde", serde(rename = "v_accuracy"))] pub v_accuracy: f32, /// Estimated cross-track error at the user-configured confidence level; /// zero implies invalid. - #[cfg_attr(feature = "serde", serde(rename(serialize = "ct_accuracy")))] + #[cfg_attr(feature = "serde", serde(rename = "ct_accuracy"))] pub ct_accuracy: f32, /// Estimated along-track error at the user-configured confidence level; /// zero implies invalid. - #[cfg_attr(feature = "serde", serde(rename(serialize = "at_accuracy")))] + #[cfg_attr(feature = "serde", serde(rename = "at_accuracy"))] pub at_accuracy: f32, /// The estimated horizontal error ellipse at the user-configured confidence /// level. - #[cfg_attr(feature = "serde", serde(rename(serialize = "h_ellipse")))] + #[cfg_attr(feature = "serde", serde(rename = "h_ellipse"))] pub h_ellipse: EstimatedHorizontalErrorEllipse, /// The lower bits describe the configured confidence level for the /// estimated position error. The middle bits describe the geoid model used /// to calculate the orthometric height. - #[cfg_attr(feature = "serde", serde(rename(serialize = "confidence_and_geoid")))] + #[cfg_attr(feature = "serde", serde(rename = "confidence_and_geoid"))] pub confidence_and_geoid: u8, /// Number of satellites used in solution. - #[cfg_attr(feature = "serde", serde(rename(serialize = "n_sats")))] + #[cfg_attr(feature = "serde", serde(rename = "n_sats"))] pub n_sats: u8, /// Status flags - #[cfg_attr(feature = "serde", serde(rename(serialize = "flags")))] + #[cfg_attr(feature = "serde", serde(rename = "flags"))] pub flags: u8, } @@ -4214,47 +4214,47 @@ pub mod msg_pos_llh_cov { /// are reported against the "downward" measurement and care should be taken /// with the sign convention. /// - #[cfg_attr(feature = "serde", derive(serde::Serialize))] + #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] #[derive(Debug, PartialEq, Clone)] pub struct MsgPosLlhCov { /// The message sender_id - #[cfg_attr(feature = "serde", serde(skip_serializing))] + #[cfg_attr(feature = "serde", serde(skip_serializing, alias = "sender"))] pub sender_id: Option, /// GPS Time of Week - #[cfg_attr(feature = "serde", serde(rename(serialize = "tow")))] + #[cfg_attr(feature = "serde", serde(rename = "tow"))] pub tow: u32, /// Latitude - #[cfg_attr(feature = "serde", serde(rename(serialize = "lat")))] + #[cfg_attr(feature = "serde", serde(rename = "lat"))] pub lat: f64, /// Longitude - #[cfg_attr(feature = "serde", serde(rename(serialize = "lon")))] + #[cfg_attr(feature = "serde", serde(rename = "lon"))] pub lon: f64, /// Height above WGS84 ellipsoid - #[cfg_attr(feature = "serde", serde(rename(serialize = "height")))] + #[cfg_attr(feature = "serde", serde(rename = "height"))] pub height: f64, /// Estimated variance of northing - #[cfg_attr(feature = "serde", serde(rename(serialize = "cov_n_n")))] + #[cfg_attr(feature = "serde", serde(rename = "cov_n_n"))] pub cov_n_n: f32, /// Covariance of northing and easting - #[cfg_attr(feature = "serde", serde(rename(serialize = "cov_n_e")))] + #[cfg_attr(feature = "serde", serde(rename = "cov_n_e"))] pub cov_n_e: f32, /// Covariance of northing and downward measurement - #[cfg_attr(feature = "serde", serde(rename(serialize = "cov_n_d")))] + #[cfg_attr(feature = "serde", serde(rename = "cov_n_d"))] pub cov_n_d: f32, /// Estimated variance of easting - #[cfg_attr(feature = "serde", serde(rename(serialize = "cov_e_e")))] + #[cfg_attr(feature = "serde", serde(rename = "cov_e_e"))] pub cov_e_e: f32, /// Covariance of easting and downward measurement - #[cfg_attr(feature = "serde", serde(rename(serialize = "cov_e_d")))] + #[cfg_attr(feature = "serde", serde(rename = "cov_e_d"))] pub cov_e_d: f32, /// Estimated variance of downward measurement - #[cfg_attr(feature = "serde", serde(rename(serialize = "cov_d_d")))] + #[cfg_attr(feature = "serde", serde(rename = "cov_d_d"))] pub cov_d_d: f32, /// Number of satellites used in solution. - #[cfg_attr(feature = "serde", serde(rename(serialize = "n_sats")))] + #[cfg_attr(feature = "serde", serde(rename = "n_sats"))] pub n_sats: u8, /// Status flags - #[cfg_attr(feature = "serde", serde(rename(serialize = "flags")))] + #[cfg_attr(feature = "serde", serde(rename = "flags"))] pub flags: u8, } @@ -4540,47 +4540,47 @@ pub mod msg_pos_llh_cov_gnss { /// Thus, covariances are reported against the "downward" measurement and care /// should be taken with the sign convention. /// - #[cfg_attr(feature = "serde", derive(serde::Serialize))] + #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] #[derive(Debug, PartialEq, Clone)] pub struct MsgPosLlhCovGnss { /// The message sender_id - #[cfg_attr(feature = "serde", serde(skip_serializing))] + #[cfg_attr(feature = "serde", serde(skip_serializing, alias = "sender"))] pub sender_id: Option, /// GPS Time of Week - #[cfg_attr(feature = "serde", serde(rename(serialize = "tow")))] + #[cfg_attr(feature = "serde", serde(rename = "tow"))] pub tow: u32, /// Latitude - #[cfg_attr(feature = "serde", serde(rename(serialize = "lat")))] + #[cfg_attr(feature = "serde", serde(rename = "lat"))] pub lat: f64, /// Longitude - #[cfg_attr(feature = "serde", serde(rename(serialize = "lon")))] + #[cfg_attr(feature = "serde", serde(rename = "lon"))] pub lon: f64, /// Height above WGS84 ellipsoid - #[cfg_attr(feature = "serde", serde(rename(serialize = "height")))] + #[cfg_attr(feature = "serde", serde(rename = "height"))] pub height: f64, /// Estimated variance of northing - #[cfg_attr(feature = "serde", serde(rename(serialize = "cov_n_n")))] + #[cfg_attr(feature = "serde", serde(rename = "cov_n_n"))] pub cov_n_n: f32, /// Covariance of northing and easting - #[cfg_attr(feature = "serde", serde(rename(serialize = "cov_n_e")))] + #[cfg_attr(feature = "serde", serde(rename = "cov_n_e"))] pub cov_n_e: f32, /// Covariance of northing and downward measurement - #[cfg_attr(feature = "serde", serde(rename(serialize = "cov_n_d")))] + #[cfg_attr(feature = "serde", serde(rename = "cov_n_d"))] pub cov_n_d: f32, /// Estimated variance of easting - #[cfg_attr(feature = "serde", serde(rename(serialize = "cov_e_e")))] + #[cfg_attr(feature = "serde", serde(rename = "cov_e_e"))] pub cov_e_e: f32, /// Covariance of easting and downward measurement - #[cfg_attr(feature = "serde", serde(rename(serialize = "cov_e_d")))] + #[cfg_attr(feature = "serde", serde(rename = "cov_e_d"))] pub cov_e_d: f32, /// Estimated variance of downward measurement - #[cfg_attr(feature = "serde", serde(rename(serialize = "cov_d_d")))] + #[cfg_attr(feature = "serde", serde(rename = "cov_d_d"))] pub cov_d_d: f32, /// Number of satellites used in solution. - #[cfg_attr(feature = "serde", serde(rename(serialize = "n_sats")))] + #[cfg_attr(feature = "serde", serde(rename = "n_sats"))] pub n_sats: u8, /// Status flags - #[cfg_attr(feature = "serde", serde(rename(serialize = "flags")))] + #[cfg_attr(feature = "serde", serde(rename = "flags"))] pub flags: u8, } @@ -4774,35 +4774,35 @@ pub mod msg_pos_llh_dep_a { /// vector. The full GPS time is given by the preceding MSG_GPS_TIME with the /// matching time-of-week (tow). /// - #[cfg_attr(feature = "serde", derive(serde::Serialize))] + #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] #[derive(Debug, PartialEq, Clone)] pub struct MsgPosLlhDepA { /// The message sender_id - #[cfg_attr(feature = "serde", serde(skip_serializing))] + #[cfg_attr(feature = "serde", serde(skip_serializing, alias = "sender"))] pub sender_id: Option, /// GPS Time of Week - #[cfg_attr(feature = "serde", serde(rename(serialize = "tow")))] + #[cfg_attr(feature = "serde", serde(rename = "tow"))] pub tow: u32, /// Latitude - #[cfg_attr(feature = "serde", serde(rename(serialize = "lat")))] + #[cfg_attr(feature = "serde", serde(rename = "lat"))] pub lat: f64, /// Longitude - #[cfg_attr(feature = "serde", serde(rename(serialize = "lon")))] + #[cfg_attr(feature = "serde", serde(rename = "lon"))] pub lon: f64, /// Height - #[cfg_attr(feature = "serde", serde(rename(serialize = "height")))] + #[cfg_attr(feature = "serde", serde(rename = "height"))] pub height: f64, /// Horizontal position accuracy estimate (not implemented). Defaults to 0. - #[cfg_attr(feature = "serde", serde(rename(serialize = "h_accuracy")))] + #[cfg_attr(feature = "serde", serde(rename = "h_accuracy"))] pub h_accuracy: u16, /// Vertical position accuracy estimate (not implemented). Defaults to 0. - #[cfg_attr(feature = "serde", serde(rename(serialize = "v_accuracy")))] + #[cfg_attr(feature = "serde", serde(rename = "v_accuracy"))] pub v_accuracy: u16, /// Number of satellites used in solution. - #[cfg_attr(feature = "serde", serde(rename(serialize = "n_sats")))] + #[cfg_attr(feature = "serde", serde(rename = "n_sats"))] pub n_sats: u8, /// Status flags - #[cfg_attr(feature = "serde", serde(rename(serialize = "flags")))] + #[cfg_attr(feature = "serde", serde(rename = "flags"))] pub flags: u8, } @@ -5100,35 +5100,35 @@ pub mod msg_pos_llh_gnss { /// vector. The full GPS time is given by the preceding MSG_GPS_TIME with the /// matching time-of-week (tow). /// - #[cfg_attr(feature = "serde", derive(serde::Serialize))] + #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] #[derive(Debug, PartialEq, Clone)] pub struct MsgPosLlhGnss { /// The message sender_id - #[cfg_attr(feature = "serde", serde(skip_serializing))] + #[cfg_attr(feature = "serde", serde(skip_serializing, alias = "sender"))] pub sender_id: Option, /// GPS Time of Week - #[cfg_attr(feature = "serde", serde(rename(serialize = "tow")))] + #[cfg_attr(feature = "serde", serde(rename = "tow"))] pub tow: u32, /// Latitude - #[cfg_attr(feature = "serde", serde(rename(serialize = "lat")))] + #[cfg_attr(feature = "serde", serde(rename = "lat"))] pub lat: f64, /// Longitude - #[cfg_attr(feature = "serde", serde(rename(serialize = "lon")))] + #[cfg_attr(feature = "serde", serde(rename = "lon"))] pub lon: f64, /// Height above WGS84 ellipsoid - #[cfg_attr(feature = "serde", serde(rename(serialize = "height")))] + #[cfg_attr(feature = "serde", serde(rename = "height"))] pub height: f64, /// Horizontal position estimated standard deviation - #[cfg_attr(feature = "serde", serde(rename(serialize = "h_accuracy")))] + #[cfg_attr(feature = "serde", serde(rename = "h_accuracy"))] pub h_accuracy: u16, /// Vertical position estimated standard deviation - #[cfg_attr(feature = "serde", serde(rename(serialize = "v_accuracy")))] + #[cfg_attr(feature = "serde", serde(rename = "v_accuracy"))] pub v_accuracy: u16, /// Number of satellites used in solution. - #[cfg_attr(feature = "serde", serde(rename(serialize = "n_sats")))] + #[cfg_attr(feature = "serde", serde(rename = "n_sats"))] pub n_sats: u8, /// Status flags - #[cfg_attr(feature = "serde", serde(rename(serialize = "flags")))] + #[cfg_attr(feature = "serde", serde(rename = "flags"))] pub flags: u8, } @@ -5297,76 +5297,76 @@ pub mod msg_protection_level { /// estimate. The full GPS time is given by the preceding MSG_GPS_TIME with /// the matching time-of-week (tow). /// - #[cfg_attr(feature = "serde", derive(serde::Serialize))] + #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] #[derive(Debug, PartialEq, Clone)] pub struct MsgProtectionLevel { /// The message sender_id - #[cfg_attr(feature = "serde", serde(skip_serializing))] + #[cfg_attr(feature = "serde", serde(skip_serializing, alias = "sender"))] pub sender_id: Option, /// GPS Time of Week - #[cfg_attr(feature = "serde", serde(rename(serialize = "tow")))] + #[cfg_attr(feature = "serde", serde(rename = "tow"))] pub tow: u32, /// GPS week number - #[cfg_attr(feature = "serde", serde(rename(serialize = "wn")))] + #[cfg_attr(feature = "serde", serde(rename = "wn"))] pub wn: i16, /// Horizontal protection level - #[cfg_attr(feature = "serde", serde(rename(serialize = "hpl")))] + #[cfg_attr(feature = "serde", serde(rename = "hpl"))] pub hpl: u16, /// Vertical protection level - #[cfg_attr(feature = "serde", serde(rename(serialize = "vpl")))] + #[cfg_attr(feature = "serde", serde(rename = "vpl"))] pub vpl: u16, /// Along-track position error protection level - #[cfg_attr(feature = "serde", serde(rename(serialize = "atpl")))] + #[cfg_attr(feature = "serde", serde(rename = "atpl"))] pub atpl: u16, /// Cross-track position error protection level - #[cfg_attr(feature = "serde", serde(rename(serialize = "ctpl")))] + #[cfg_attr(feature = "serde", serde(rename = "ctpl"))] pub ctpl: u16, /// Protection level for the error vector between estimated and true /// along/cross track velocity vector - #[cfg_attr(feature = "serde", serde(rename(serialize = "hvpl")))] + #[cfg_attr(feature = "serde", serde(rename = "hvpl"))] pub hvpl: u16, /// Protection level for the velocity in vehicle upright direction /// (different from vertical direction if on a slope) - #[cfg_attr(feature = "serde", serde(rename(serialize = "vvpl")))] + #[cfg_attr(feature = "serde", serde(rename = "vvpl"))] pub vvpl: u16, /// Heading orientation protection level - #[cfg_attr(feature = "serde", serde(rename(serialize = "hopl")))] + #[cfg_attr(feature = "serde", serde(rename = "hopl"))] pub hopl: u16, /// Pitch orientation protection level - #[cfg_attr(feature = "serde", serde(rename(serialize = "popl")))] + #[cfg_attr(feature = "serde", serde(rename = "popl"))] pub popl: u16, /// Roll orientation protection level - #[cfg_attr(feature = "serde", serde(rename(serialize = "ropl")))] + #[cfg_attr(feature = "serde", serde(rename = "ropl"))] pub ropl: u16, /// Latitude - #[cfg_attr(feature = "serde", serde(rename(serialize = "lat")))] + #[cfg_attr(feature = "serde", serde(rename = "lat"))] pub lat: f64, /// Longitude - #[cfg_attr(feature = "serde", serde(rename(serialize = "lon")))] + #[cfg_attr(feature = "serde", serde(rename = "lon"))] pub lon: f64, /// Height - #[cfg_attr(feature = "serde", serde(rename(serialize = "height")))] + #[cfg_attr(feature = "serde", serde(rename = "height"))] pub height: f64, /// Velocity in vehicle x direction - #[cfg_attr(feature = "serde", serde(rename(serialize = "v_x")))] + #[cfg_attr(feature = "serde", serde(rename = "v_x"))] pub v_x: i32, /// Velocity in vehicle y direction - #[cfg_attr(feature = "serde", serde(rename(serialize = "v_y")))] + #[cfg_attr(feature = "serde", serde(rename = "v_y"))] pub v_y: i32, /// Velocity in vehicle z direction - #[cfg_attr(feature = "serde", serde(rename(serialize = "v_z")))] + #[cfg_attr(feature = "serde", serde(rename = "v_z"))] pub v_z: i32, /// Roll angle - #[cfg_attr(feature = "serde", serde(rename(serialize = "roll")))] + #[cfg_attr(feature = "serde", serde(rename = "roll"))] pub roll: i32, /// Pitch angle - #[cfg_attr(feature = "serde", serde(rename(serialize = "pitch")))] + #[cfg_attr(feature = "serde", serde(rename = "pitch"))] pub pitch: i32, /// Heading angle - #[cfg_attr(feature = "serde", serde(rename(serialize = "heading")))] + #[cfg_attr(feature = "serde", serde(rename = "heading"))] pub heading: i32, /// Status flags - #[cfg_attr(feature = "serde", serde(rename(serialize = "flags")))] + #[cfg_attr(feature = "serde", serde(rename = "flags"))] pub flags: u32, } @@ -5815,32 +5815,32 @@ pub mod msg_protection_level_dep_a { /// associated with a given LLH position solution. The full GPS time is given /// by the preceding MSG_GPS_TIME with the matching time-of-week (tow). /// - #[cfg_attr(feature = "serde", derive(serde::Serialize))] + #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] #[derive(Debug, PartialEq, Clone)] pub struct MsgProtectionLevelDepA { /// The message sender_id - #[cfg_attr(feature = "serde", serde(skip_serializing))] + #[cfg_attr(feature = "serde", serde(skip_serializing, alias = "sender"))] pub sender_id: Option, /// GPS Time of Week - #[cfg_attr(feature = "serde", serde(rename(serialize = "tow")))] + #[cfg_attr(feature = "serde", serde(rename = "tow"))] pub tow: u32, /// Vertical protection level - #[cfg_attr(feature = "serde", serde(rename(serialize = "vpl")))] + #[cfg_attr(feature = "serde", serde(rename = "vpl"))] pub vpl: u16, /// Horizontal protection level - #[cfg_attr(feature = "serde", serde(rename(serialize = "hpl")))] + #[cfg_attr(feature = "serde", serde(rename = "hpl"))] pub hpl: u16, /// Latitude - #[cfg_attr(feature = "serde", serde(rename(serialize = "lat")))] + #[cfg_attr(feature = "serde", serde(rename = "lat"))] pub lat: f64, /// Longitude - #[cfg_attr(feature = "serde", serde(rename(serialize = "lon")))] + #[cfg_attr(feature = "serde", serde(rename = "lon"))] pub lon: f64, /// Height - #[cfg_attr(feature = "serde", serde(rename(serialize = "height")))] + #[cfg_attr(feature = "serde", serde(rename = "height"))] pub height: f64, /// Status flags - #[cfg_attr(feature = "serde", serde(rename(serialize = "flags")))] + #[cfg_attr(feature = "serde", serde(rename = "flags"))] pub flags: u8, } @@ -6000,72 +6000,72 @@ pub mod msg_reference_frame_param { use super::*; use crate::messages::lib::*; /// Reference Frame Transformation Parameters - #[cfg_attr(feature = "serde", derive(serde::Serialize))] + #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] #[derive(Debug, PartialEq, Clone)] pub struct MsgReferenceFrameParam { /// The message sender_id - #[cfg_attr(feature = "serde", serde(skip_serializing))] + #[cfg_attr(feature = "serde", serde(skip_serializing, alias = "sender"))] pub sender_id: Option, /// SSR IOD parameter. - #[cfg_attr(feature = "serde", serde(rename(serialize = "ssr_iod")))] + #[cfg_attr(feature = "serde", serde(rename = "ssr_iod"))] pub ssr_iod: u8, /// Name of source coordinate-system using the EPSG identification code. - #[cfg_attr(feature = "serde", serde(rename(serialize = "sn")))] + #[cfg_attr(feature = "serde", serde(rename = "sn"))] pub sn: SbpString<[u8; 32], NullTerminated>, /// Name of target coordinate-system using the EPSG identification code. - #[cfg_attr(feature = "serde", serde(rename(serialize = "tn")))] + #[cfg_attr(feature = "serde", serde(rename = "tn"))] pub tn: SbpString<[u8; 32], NullTerminated>, /// System Identification Number. - #[cfg_attr(feature = "serde", serde(rename(serialize = "sin")))] + #[cfg_attr(feature = "serde", serde(rename = "sin"))] pub sin: u8, /// Utilized Transformation Message. - #[cfg_attr(feature = "serde", serde(rename(serialize = "utn")))] + #[cfg_attr(feature = "serde", serde(rename = "utn"))] pub utn: u16, /// Reference Epoch t0 for transformation parameter set given as Modified /// Julian Day (MJD) Number minus 44244 days. - #[cfg_attr(feature = "serde", serde(rename(serialize = "re_t0")))] + #[cfg_attr(feature = "serde", serde(rename = "re_t0"))] pub re_t0: u16, /// Translation in X for Reference Epoch t0. - #[cfg_attr(feature = "serde", serde(rename(serialize = "delta_X0")))] + #[cfg_attr(feature = "serde", serde(rename = "delta_X0"))] pub delta_x0: i32, /// Translation in Y for Reference Epoch t0. - #[cfg_attr(feature = "serde", serde(rename(serialize = "delta_Y0")))] + #[cfg_attr(feature = "serde", serde(rename = "delta_Y0"))] pub delta_y0: i32, /// Translation in Z for Reference Epoch t0. - #[cfg_attr(feature = "serde", serde(rename(serialize = "delta_Z0")))] + #[cfg_attr(feature = "serde", serde(rename = "delta_Z0"))] pub delta_z0: i32, /// Rotation around the X-axis for Reference Epoch t0. - #[cfg_attr(feature = "serde", serde(rename(serialize = "theta_01")))] + #[cfg_attr(feature = "serde", serde(rename = "theta_01"))] pub theta_01: i32, /// Rotation around the Y-axis for Reference Epoch t0. - #[cfg_attr(feature = "serde", serde(rename(serialize = "theta_02")))] + #[cfg_attr(feature = "serde", serde(rename = "theta_02"))] pub theta_02: i32, /// Rotation around the Z-axis for Reference Epoch t0. - #[cfg_attr(feature = "serde", serde(rename(serialize = "theta_03")))] + #[cfg_attr(feature = "serde", serde(rename = "theta_03"))] pub theta_03: i32, /// Scale correction for Reference Epoch t0. - #[cfg_attr(feature = "serde", serde(rename(serialize = "scale")))] + #[cfg_attr(feature = "serde", serde(rename = "scale"))] pub scale: i32, /// Rate of change of translation in X. - #[cfg_attr(feature = "serde", serde(rename(serialize = "dot_delta_X0")))] + #[cfg_attr(feature = "serde", serde(rename = "dot_delta_X0"))] pub dot_delta_x0: i32, /// Rate of change of translation in Y. - #[cfg_attr(feature = "serde", serde(rename(serialize = "dot_delta_Y0")))] + #[cfg_attr(feature = "serde", serde(rename = "dot_delta_Y0"))] pub dot_delta_y0: i32, /// Rate of change of translation in Z. - #[cfg_attr(feature = "serde", serde(rename(serialize = "dot_delta_Z0")))] + #[cfg_attr(feature = "serde", serde(rename = "dot_delta_Z0"))] pub dot_delta_z0: i32, /// Rate of change of rotation around the X-axis. - #[cfg_attr(feature = "serde", serde(rename(serialize = "dot_theta_01")))] + #[cfg_attr(feature = "serde", serde(rename = "dot_theta_01"))] pub dot_theta_01: i32, /// Rate of change of rotation around the Y-axis. - #[cfg_attr(feature = "serde", serde(rename(serialize = "dot_theta_02")))] + #[cfg_attr(feature = "serde", serde(rename = "dot_theta_02"))] pub dot_theta_02: i32, /// Rate of change of rotation around the Z-axis. - #[cfg_attr(feature = "serde", serde(rename(serialize = "dot_theta_03")))] + #[cfg_attr(feature = "serde", serde(rename = "dot_theta_03"))] pub dot_theta_03: i32, /// Rate of change of scale correction. - #[cfg_attr(feature = "serde", serde(rename(serialize = "dot_scale")))] + #[cfg_attr(feature = "serde", serde(rename = "dot_scale"))] pub dot_scale: i16, } @@ -6207,41 +6207,41 @@ pub mod msg_utc_leap_second { /// Emulates the GPS CNAV message, reserving bytes for future broadcast of the /// drift model parameters. /// - #[cfg_attr(feature = "serde", derive(serde::Serialize))] + #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] #[derive(Debug, PartialEq, Clone)] pub struct MsgUtcLeapSecond { /// The message sender_id - #[cfg_attr(feature = "serde", serde(skip_serializing))] + #[cfg_attr(feature = "serde", serde(skip_serializing, alias = "sender"))] pub sender_id: Option, /// Reserved. Bias coefficient of GPS time scale with respect to UTC drift /// model. - #[cfg_attr(feature = "serde", serde(rename(serialize = "bias_coeff")))] + #[cfg_attr(feature = "serde", serde(rename = "bias_coeff"))] pub bias_coeff: i16, /// Reserved. Drift coefficient of GPS time scale with respect to UTC drift /// model. - #[cfg_attr(feature = "serde", serde(rename(serialize = "drift_coeff")))] + #[cfg_attr(feature = "serde", serde(rename = "drift_coeff"))] pub drift_coeff: i16, /// Reserved. Drift rate correction coefficient of GPS time scale with /// respect to UTC drift model. - #[cfg_attr(feature = "serde", serde(rename(serialize = "drift_rate_coeff")))] + #[cfg_attr(feature = "serde", serde(rename = "drift_rate_coeff"))] pub drift_rate_coeff: i8, /// Leap second count before insertion. - #[cfg_attr(feature = "serde", serde(rename(serialize = "count_before")))] + #[cfg_attr(feature = "serde", serde(rename = "count_before"))] pub count_before: i8, /// Reserved. Drift model reference week second. - #[cfg_attr(feature = "serde", serde(rename(serialize = "tow_s")))] + #[cfg_attr(feature = "serde", serde(rename = "tow_s"))] pub tow_s: u16, /// Reserved. Drift model reference week number. - #[cfg_attr(feature = "serde", serde(rename(serialize = "wn")))] + #[cfg_attr(feature = "serde", serde(rename = "wn"))] pub wn: u16, /// Leap second reference week number. - #[cfg_attr(feature = "serde", serde(rename(serialize = "ref_wn")))] + #[cfg_attr(feature = "serde", serde(rename = "ref_wn"))] pub ref_wn: u16, /// Leap second reference day number. - #[cfg_attr(feature = "serde", serde(rename(serialize = "ref_dn")))] + #[cfg_attr(feature = "serde", serde(rename = "ref_dn"))] pub ref_dn: u8, /// Leap second count after insertion. - #[cfg_attr(feature = "serde", serde(rename(serialize = "count_after")))] + #[cfg_attr(feature = "serde", serde(rename = "count_after"))] pub count_after: i8, } @@ -6339,38 +6339,38 @@ pub mod msg_utc_time { /// which indicate the source of the UTC offset value and source of the time /// fix. /// - #[cfg_attr(feature = "serde", derive(serde::Serialize))] + #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] #[derive(Debug, PartialEq, Clone)] pub struct MsgUtcTime { /// The message sender_id - #[cfg_attr(feature = "serde", serde(skip_serializing))] + #[cfg_attr(feature = "serde", serde(skip_serializing, alias = "sender"))] pub sender_id: Option, /// Indicates source and time validity - #[cfg_attr(feature = "serde", serde(rename(serialize = "flags")))] + #[cfg_attr(feature = "serde", serde(rename = "flags"))] pub flags: u8, /// GPS time of week rounded to the nearest millisecond - #[cfg_attr(feature = "serde", serde(rename(serialize = "tow")))] + #[cfg_attr(feature = "serde", serde(rename = "tow"))] pub tow: u32, /// Year - #[cfg_attr(feature = "serde", serde(rename(serialize = "year")))] + #[cfg_attr(feature = "serde", serde(rename = "year"))] pub year: u16, /// Month (range 1 .. 12) - #[cfg_attr(feature = "serde", serde(rename(serialize = "month")))] + #[cfg_attr(feature = "serde", serde(rename = "month"))] pub month: u8, /// days in the month (range 1-31) - #[cfg_attr(feature = "serde", serde(rename(serialize = "day")))] + #[cfg_attr(feature = "serde", serde(rename = "day"))] pub day: u8, /// hours of day (range 0-23) - #[cfg_attr(feature = "serde", serde(rename(serialize = "hours")))] + #[cfg_attr(feature = "serde", serde(rename = "hours"))] pub hours: u8, /// minutes of hour (range 0-59) - #[cfg_attr(feature = "serde", serde(rename(serialize = "minutes")))] + #[cfg_attr(feature = "serde", serde(rename = "minutes"))] pub minutes: u8, /// seconds of minute (range 0-60) rounded down - #[cfg_attr(feature = "serde", serde(rename(serialize = "seconds")))] + #[cfg_attr(feature = "serde", serde(rename = "seconds"))] pub seconds: u8, /// nanoseconds of second (range 0-999999999) - #[cfg_attr(feature = "serde", serde(rename(serialize = "ns")))] + #[cfg_attr(feature = "serde", serde(rename = "ns"))] pub ns: u32, } @@ -6577,38 +6577,38 @@ pub mod msg_utc_time_gnss { /// which indicate the source of the UTC offset value and source of the time /// fix. /// - #[cfg_attr(feature = "serde", derive(serde::Serialize))] + #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] #[derive(Debug, PartialEq, Clone)] pub struct MsgUtcTimeGnss { /// The message sender_id - #[cfg_attr(feature = "serde", serde(skip_serializing))] + #[cfg_attr(feature = "serde", serde(skip_serializing, alias = "sender"))] pub sender_id: Option, /// Indicates source and time validity - #[cfg_attr(feature = "serde", serde(rename(serialize = "flags")))] + #[cfg_attr(feature = "serde", serde(rename = "flags"))] pub flags: u8, /// GPS time of week rounded to the nearest millisecond - #[cfg_attr(feature = "serde", serde(rename(serialize = "tow")))] + #[cfg_attr(feature = "serde", serde(rename = "tow"))] pub tow: u32, /// Year - #[cfg_attr(feature = "serde", serde(rename(serialize = "year")))] + #[cfg_attr(feature = "serde", serde(rename = "year"))] pub year: u16, /// Month (range 1 .. 12) - #[cfg_attr(feature = "serde", serde(rename(serialize = "month")))] + #[cfg_attr(feature = "serde", serde(rename = "month"))] pub month: u8, /// days in the month (range 1-31) - #[cfg_attr(feature = "serde", serde(rename(serialize = "day")))] + #[cfg_attr(feature = "serde", serde(rename = "day"))] pub day: u8, /// hours of day (range 0-23) - #[cfg_attr(feature = "serde", serde(rename(serialize = "hours")))] + #[cfg_attr(feature = "serde", serde(rename = "hours"))] pub hours: u8, /// minutes of hour (range 0-59) - #[cfg_attr(feature = "serde", serde(rename(serialize = "minutes")))] + #[cfg_attr(feature = "serde", serde(rename = "minutes"))] pub minutes: u8, /// seconds of minute (range 0-60) rounded down - #[cfg_attr(feature = "serde", serde(rename(serialize = "seconds")))] + #[cfg_attr(feature = "serde", serde(rename = "seconds"))] pub seconds: u8, /// nanoseconds of second (range 0-999999999) - #[cfg_attr(feature = "serde", serde(rename(serialize = "ns")))] + #[cfg_attr(feature = "serde", serde(rename = "ns"))] pub ns: u32, } @@ -6821,47 +6821,47 @@ pub mod msg_vel_body { /// (tow). This message is only produced by inertial versions of Swift /// products and is not available from Piksi Multi or Duro. /// - #[cfg_attr(feature = "serde", derive(serde::Serialize))] + #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] #[derive(Debug, PartialEq, Clone)] pub struct MsgVelBody { /// The message sender_id - #[cfg_attr(feature = "serde", serde(skip_serializing))] + #[cfg_attr(feature = "serde", serde(skip_serializing, alias = "sender"))] pub sender_id: Option, /// GPS Time of Week - #[cfg_attr(feature = "serde", serde(rename(serialize = "tow")))] + #[cfg_attr(feature = "serde", serde(rename = "tow"))] pub tow: u32, /// Velocity in x direction - #[cfg_attr(feature = "serde", serde(rename(serialize = "x")))] + #[cfg_attr(feature = "serde", serde(rename = "x"))] pub x: i32, /// Velocity in y direction - #[cfg_attr(feature = "serde", serde(rename(serialize = "y")))] + #[cfg_attr(feature = "serde", serde(rename = "y"))] pub y: i32, /// Velocity in z direction - #[cfg_attr(feature = "serde", serde(rename(serialize = "z")))] + #[cfg_attr(feature = "serde", serde(rename = "z"))] pub z: i32, /// Estimated variance of x - #[cfg_attr(feature = "serde", serde(rename(serialize = "cov_x_x")))] + #[cfg_attr(feature = "serde", serde(rename = "cov_x_x"))] pub cov_x_x: f32, /// Covariance of x and y - #[cfg_attr(feature = "serde", serde(rename(serialize = "cov_x_y")))] + #[cfg_attr(feature = "serde", serde(rename = "cov_x_y"))] pub cov_x_y: f32, /// Covariance of x and z - #[cfg_attr(feature = "serde", serde(rename(serialize = "cov_x_z")))] + #[cfg_attr(feature = "serde", serde(rename = "cov_x_z"))] pub cov_x_z: f32, /// Estimated variance of y - #[cfg_attr(feature = "serde", serde(rename(serialize = "cov_y_y")))] + #[cfg_attr(feature = "serde", serde(rename = "cov_y_y"))] pub cov_y_y: f32, /// Covariance of y and z - #[cfg_attr(feature = "serde", serde(rename(serialize = "cov_y_z")))] + #[cfg_attr(feature = "serde", serde(rename = "cov_y_z"))] pub cov_y_z: f32, /// Estimated variance of z - #[cfg_attr(feature = "serde", serde(rename(serialize = "cov_z_z")))] + #[cfg_attr(feature = "serde", serde(rename = "cov_z_z"))] pub cov_z_z: f32, /// Number of satellites used in solution - #[cfg_attr(feature = "serde", serde(rename(serialize = "n_sats")))] + #[cfg_attr(feature = "serde", serde(rename = "n_sats"))] pub n_sats: u8, /// Status flags - #[cfg_attr(feature = "serde", serde(rename(serialize = "flags")))] + #[cfg_attr(feature = "serde", serde(rename = "flags"))] pub flags: u8, } @@ -7088,35 +7088,35 @@ pub mod msg_vel_cog { /// Note: course over ground represents the receiver's direction of travel, /// but not necessarily the device heading. /// - #[cfg_attr(feature = "serde", derive(serde::Serialize))] + #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] #[derive(Debug, PartialEq, Clone)] pub struct MsgVelCog { /// The message sender_id - #[cfg_attr(feature = "serde", serde(skip_serializing))] + #[cfg_attr(feature = "serde", serde(skip_serializing, alias = "sender"))] pub sender_id: Option, /// GPS Time of Week - #[cfg_attr(feature = "serde", serde(rename(serialize = "tow")))] + #[cfg_attr(feature = "serde", serde(rename = "tow"))] pub tow: u32, /// Course over ground relative to north direction - #[cfg_attr(feature = "serde", serde(rename(serialize = "cog")))] + #[cfg_attr(feature = "serde", serde(rename = "cog"))] pub cog: u32, /// Speed over ground (based on horizontal velocity) - #[cfg_attr(feature = "serde", serde(rename(serialize = "sog")))] + #[cfg_attr(feature = "serde", serde(rename = "sog"))] pub sog: u32, /// Vertical velocity component (positive up) - #[cfg_attr(feature = "serde", serde(rename(serialize = "v_up")))] + #[cfg_attr(feature = "serde", serde(rename = "v_up"))] pub v_up: i32, /// Course over ground estimated standard deviation - #[cfg_attr(feature = "serde", serde(rename(serialize = "cog_accuracy")))] + #[cfg_attr(feature = "serde", serde(rename = "cog_accuracy"))] pub cog_accuracy: u32, /// Speed over ground estimated standard deviation - #[cfg_attr(feature = "serde", serde(rename(serialize = "sog_accuracy")))] + #[cfg_attr(feature = "serde", serde(rename = "sog_accuracy"))] pub sog_accuracy: u32, /// Vertical velocity estimated standard deviation - #[cfg_attr(feature = "serde", serde(rename(serialize = "v_up_accuracy")))] + #[cfg_attr(feature = "serde", serde(rename = "v_up_accuracy"))] pub v_up_accuracy: u32, /// Status flags - #[cfg_attr(feature = "serde", serde(rename(serialize = "flags")))] + #[cfg_attr(feature = "serde", serde(rename = "flags"))] pub flags: u16, } @@ -7544,32 +7544,32 @@ pub mod msg_vel_ecef { /// coordinates. The full GPS time is given by the preceding MSG_GPS_TIME with /// the matching time-of-week (tow). /// - #[cfg_attr(feature = "serde", derive(serde::Serialize))] + #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] #[derive(Debug, PartialEq, Clone)] pub struct MsgVelEcef { /// The message sender_id - #[cfg_attr(feature = "serde", serde(skip_serializing))] + #[cfg_attr(feature = "serde", serde(skip_serializing, alias = "sender"))] pub sender_id: Option, /// GPS Time of Week - #[cfg_attr(feature = "serde", serde(rename(serialize = "tow")))] + #[cfg_attr(feature = "serde", serde(rename = "tow"))] pub tow: u32, /// Velocity ECEF X coordinate - #[cfg_attr(feature = "serde", serde(rename(serialize = "x")))] + #[cfg_attr(feature = "serde", serde(rename = "x"))] pub x: i32, /// Velocity ECEF Y coordinate - #[cfg_attr(feature = "serde", serde(rename(serialize = "y")))] + #[cfg_attr(feature = "serde", serde(rename = "y"))] pub y: i32, /// Velocity ECEF Z coordinate - #[cfg_attr(feature = "serde", serde(rename(serialize = "z")))] + #[cfg_attr(feature = "serde", serde(rename = "z"))] pub z: i32, /// Velocity estimated standard deviation - #[cfg_attr(feature = "serde", serde(rename(serialize = "accuracy")))] + #[cfg_attr(feature = "serde", serde(rename = "accuracy"))] pub accuracy: u16, /// Number of satellites used in solution - #[cfg_attr(feature = "serde", serde(rename(serialize = "n_sats")))] + #[cfg_attr(feature = "serde", serde(rename = "n_sats"))] pub n_sats: u8, /// Status flags - #[cfg_attr(feature = "serde", serde(rename(serialize = "flags")))] + #[cfg_attr(feature = "serde", serde(rename = "flags"))] pub flags: u8, } @@ -7812,47 +7812,47 @@ pub mod msg_vel_ecef_cov { /// coordinates. The full GPS time is given by the preceding MSG_GPS_TIME with /// the matching time-of-week (tow). /// - #[cfg_attr(feature = "serde", derive(serde::Serialize))] + #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] #[derive(Debug, PartialEq, Clone)] pub struct MsgVelEcefCov { /// The message sender_id - #[cfg_attr(feature = "serde", serde(skip_serializing))] + #[cfg_attr(feature = "serde", serde(skip_serializing, alias = "sender"))] pub sender_id: Option, /// GPS Time of Week - #[cfg_attr(feature = "serde", serde(rename(serialize = "tow")))] + #[cfg_attr(feature = "serde", serde(rename = "tow"))] pub tow: u32, /// Velocity ECEF X coordinate - #[cfg_attr(feature = "serde", serde(rename(serialize = "x")))] + #[cfg_attr(feature = "serde", serde(rename = "x"))] pub x: i32, /// Velocity ECEF Y coordinate - #[cfg_attr(feature = "serde", serde(rename(serialize = "y")))] + #[cfg_attr(feature = "serde", serde(rename = "y"))] pub y: i32, /// Velocity ECEF Z coordinate - #[cfg_attr(feature = "serde", serde(rename(serialize = "z")))] + #[cfg_attr(feature = "serde", serde(rename = "z"))] pub z: i32, /// Estimated variance of x - #[cfg_attr(feature = "serde", serde(rename(serialize = "cov_x_x")))] + #[cfg_attr(feature = "serde", serde(rename = "cov_x_x"))] pub cov_x_x: f32, /// Estimated covariance of x and y - #[cfg_attr(feature = "serde", serde(rename(serialize = "cov_x_y")))] + #[cfg_attr(feature = "serde", serde(rename = "cov_x_y"))] pub cov_x_y: f32, /// Estimated covariance of x and z - #[cfg_attr(feature = "serde", serde(rename(serialize = "cov_x_z")))] + #[cfg_attr(feature = "serde", serde(rename = "cov_x_z"))] pub cov_x_z: f32, /// Estimated variance of y - #[cfg_attr(feature = "serde", serde(rename(serialize = "cov_y_y")))] + #[cfg_attr(feature = "serde", serde(rename = "cov_y_y"))] pub cov_y_y: f32, /// Estimated covariance of y and z - #[cfg_attr(feature = "serde", serde(rename(serialize = "cov_y_z")))] + #[cfg_attr(feature = "serde", serde(rename = "cov_y_z"))] pub cov_y_z: f32, /// Estimated variance of z - #[cfg_attr(feature = "serde", serde(rename(serialize = "cov_z_z")))] + #[cfg_attr(feature = "serde", serde(rename = "cov_z_z"))] pub cov_z_z: f32, /// Number of satellites used in solution - #[cfg_attr(feature = "serde", serde(rename(serialize = "n_sats")))] + #[cfg_attr(feature = "serde", serde(rename = "n_sats"))] pub n_sats: u8, /// Status flags - #[cfg_attr(feature = "serde", serde(rename(serialize = "flags")))] + #[cfg_attr(feature = "serde", serde(rename = "flags"))] pub flags: u8, } @@ -8115,47 +8115,47 @@ pub mod msg_vel_ecef_cov_gnss { /// coordinates. The full GPS time is given by the preceding MSG_GPS_TIME with /// the matching time-of-week (tow). /// - #[cfg_attr(feature = "serde", derive(serde::Serialize))] + #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] #[derive(Debug, PartialEq, Clone)] pub struct MsgVelEcefCovGnss { /// The message sender_id - #[cfg_attr(feature = "serde", serde(skip_serializing))] + #[cfg_attr(feature = "serde", serde(skip_serializing, alias = "sender"))] pub sender_id: Option, /// GPS Time of Week - #[cfg_attr(feature = "serde", serde(rename(serialize = "tow")))] + #[cfg_attr(feature = "serde", serde(rename = "tow"))] pub tow: u32, /// Velocity ECEF X coordinate - #[cfg_attr(feature = "serde", serde(rename(serialize = "x")))] + #[cfg_attr(feature = "serde", serde(rename = "x"))] pub x: i32, /// Velocity ECEF Y coordinate - #[cfg_attr(feature = "serde", serde(rename(serialize = "y")))] + #[cfg_attr(feature = "serde", serde(rename = "y"))] pub y: i32, /// Velocity ECEF Z coordinate - #[cfg_attr(feature = "serde", serde(rename(serialize = "z")))] + #[cfg_attr(feature = "serde", serde(rename = "z"))] pub z: i32, /// Estimated variance of x - #[cfg_attr(feature = "serde", serde(rename(serialize = "cov_x_x")))] + #[cfg_attr(feature = "serde", serde(rename = "cov_x_x"))] pub cov_x_x: f32, /// Estimated covariance of x and y - #[cfg_attr(feature = "serde", serde(rename(serialize = "cov_x_y")))] + #[cfg_attr(feature = "serde", serde(rename = "cov_x_y"))] pub cov_x_y: f32, /// Estimated covariance of x and z - #[cfg_attr(feature = "serde", serde(rename(serialize = "cov_x_z")))] + #[cfg_attr(feature = "serde", serde(rename = "cov_x_z"))] pub cov_x_z: f32, /// Estimated variance of y - #[cfg_attr(feature = "serde", serde(rename(serialize = "cov_y_y")))] + #[cfg_attr(feature = "serde", serde(rename = "cov_y_y"))] pub cov_y_y: f32, /// Estimated covariance of y and z - #[cfg_attr(feature = "serde", serde(rename(serialize = "cov_y_z")))] + #[cfg_attr(feature = "serde", serde(rename = "cov_y_z"))] pub cov_y_z: f32, /// Estimated variance of z - #[cfg_attr(feature = "serde", serde(rename(serialize = "cov_z_z")))] + #[cfg_attr(feature = "serde", serde(rename = "cov_z_z"))] pub cov_z_z: f32, /// Number of satellites used in solution - #[cfg_attr(feature = "serde", serde(rename(serialize = "n_sats")))] + #[cfg_attr(feature = "serde", serde(rename = "n_sats"))] pub n_sats: u8, /// Status flags - #[cfg_attr(feature = "serde", serde(rename(serialize = "flags")))] + #[cfg_attr(feature = "serde", serde(rename = "flags"))] pub flags: u8, } @@ -8325,32 +8325,32 @@ pub mod msg_vel_ecef_dep_a { /// coordinates. The full GPS time is given by the preceding MSG_GPS_TIME with /// the matching time-of-week (tow). /// - #[cfg_attr(feature = "serde", derive(serde::Serialize))] + #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] #[derive(Debug, PartialEq, Clone)] pub struct MsgVelEcefDepA { /// The message sender_id - #[cfg_attr(feature = "serde", serde(skip_serializing))] + #[cfg_attr(feature = "serde", serde(skip_serializing, alias = "sender"))] pub sender_id: Option, /// GPS Time of Week - #[cfg_attr(feature = "serde", serde(rename(serialize = "tow")))] + #[cfg_attr(feature = "serde", serde(rename = "tow"))] pub tow: u32, /// Velocity ECEF X coordinate - #[cfg_attr(feature = "serde", serde(rename(serialize = "x")))] + #[cfg_attr(feature = "serde", serde(rename = "x"))] pub x: i32, /// Velocity ECEF Y coordinate - #[cfg_attr(feature = "serde", serde(rename(serialize = "y")))] + #[cfg_attr(feature = "serde", serde(rename = "y"))] pub y: i32, /// Velocity ECEF Z coordinate - #[cfg_attr(feature = "serde", serde(rename(serialize = "z")))] + #[cfg_attr(feature = "serde", serde(rename = "z"))] pub z: i32, /// Velocity accuracy estimate (not implemented). Defaults to 0. - #[cfg_attr(feature = "serde", serde(rename(serialize = "accuracy")))] + #[cfg_attr(feature = "serde", serde(rename = "accuracy"))] pub accuracy: u16, /// Number of satellites used in solution - #[cfg_attr(feature = "serde", serde(rename(serialize = "n_sats")))] + #[cfg_attr(feature = "serde", serde(rename = "n_sats"))] pub n_sats: u8, /// Status flags (reserved) - #[cfg_attr(feature = "serde", serde(rename(serialize = "flags")))] + #[cfg_attr(feature = "serde", serde(rename = "flags"))] pub flags: u8, } @@ -8449,32 +8449,32 @@ pub mod msg_vel_ecef_gnss { /// coordinates. The full GPS time is given by the preceding MSG_GPS_TIME with /// the matching time-of-week (tow). /// - #[cfg_attr(feature = "serde", derive(serde::Serialize))] + #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] #[derive(Debug, PartialEq, Clone)] pub struct MsgVelEcefGnss { /// The message sender_id - #[cfg_attr(feature = "serde", serde(skip_serializing))] + #[cfg_attr(feature = "serde", serde(skip_serializing, alias = "sender"))] pub sender_id: Option, /// GPS Time of Week - #[cfg_attr(feature = "serde", serde(rename(serialize = "tow")))] + #[cfg_attr(feature = "serde", serde(rename = "tow"))] pub tow: u32, /// Velocity ECEF X coordinate - #[cfg_attr(feature = "serde", serde(rename(serialize = "x")))] + #[cfg_attr(feature = "serde", serde(rename = "x"))] pub x: i32, /// Velocity ECEF Y coordinate - #[cfg_attr(feature = "serde", serde(rename(serialize = "y")))] + #[cfg_attr(feature = "serde", serde(rename = "y"))] pub y: i32, /// Velocity ECEF Z coordinate - #[cfg_attr(feature = "serde", serde(rename(serialize = "z")))] + #[cfg_attr(feature = "serde", serde(rename = "z"))] pub z: i32, /// Velocity estimated standard deviation - #[cfg_attr(feature = "serde", serde(rename(serialize = "accuracy")))] + #[cfg_attr(feature = "serde", serde(rename = "accuracy"))] pub accuracy: u16, /// Number of satellites used in solution - #[cfg_attr(feature = "serde", serde(rename(serialize = "n_sats")))] + #[cfg_attr(feature = "serde", serde(rename = "n_sats"))] pub n_sats: u8, /// Status flags - #[cfg_attr(feature = "serde", serde(rename(serialize = "flags")))] + #[cfg_attr(feature = "serde", serde(rename = "flags"))] pub flags: u8, } @@ -8625,35 +8625,35 @@ pub mod msg_vel_ned { /// tangent plane centered at the current position. The full GPS time is given /// by the preceding MSG_GPS_TIME with the matching time-of-week (tow). /// - #[cfg_attr(feature = "serde", derive(serde::Serialize))] + #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] #[derive(Debug, PartialEq, Clone)] pub struct MsgVelNed { /// The message sender_id - #[cfg_attr(feature = "serde", serde(skip_serializing))] + #[cfg_attr(feature = "serde", serde(skip_serializing, alias = "sender"))] pub sender_id: Option, /// GPS Time of Week - #[cfg_attr(feature = "serde", serde(rename(serialize = "tow")))] + #[cfg_attr(feature = "serde", serde(rename = "tow"))] pub tow: u32, /// Velocity North coordinate - #[cfg_attr(feature = "serde", serde(rename(serialize = "n")))] + #[cfg_attr(feature = "serde", serde(rename = "n"))] pub n: i32, /// Velocity East coordinate - #[cfg_attr(feature = "serde", serde(rename(serialize = "e")))] + #[cfg_attr(feature = "serde", serde(rename = "e"))] pub e: i32, /// Velocity Down coordinate - #[cfg_attr(feature = "serde", serde(rename(serialize = "d")))] + #[cfg_attr(feature = "serde", serde(rename = "d"))] pub d: i32, /// Horizontal velocity estimated standard deviation - #[cfg_attr(feature = "serde", serde(rename(serialize = "h_accuracy")))] + #[cfg_attr(feature = "serde", serde(rename = "h_accuracy"))] pub h_accuracy: u16, /// Vertical velocity estimated standard deviation - #[cfg_attr(feature = "serde", serde(rename(serialize = "v_accuracy")))] + #[cfg_attr(feature = "serde", serde(rename = "v_accuracy"))] pub v_accuracy: u16, /// Number of satellites used in solution - #[cfg_attr(feature = "serde", serde(rename(serialize = "n_sats")))] + #[cfg_attr(feature = "serde", serde(rename = "n_sats"))] pub n_sats: u8, /// Status flags - #[cfg_attr(feature = "serde", serde(rename(serialize = "flags")))] + #[cfg_attr(feature = "serde", serde(rename = "flags"))] pub flags: u8, } @@ -8903,47 +8903,47 @@ pub mod msg_vel_ned_cov { /// message is similar to the MSG_VEL_NED, but it includes the upper /// triangular portion of the 3x3 covariance matrix. /// - #[cfg_attr(feature = "serde", derive(serde::Serialize))] + #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] #[derive(Debug, PartialEq, Clone)] pub struct MsgVelNedCov { /// The message sender_id - #[cfg_attr(feature = "serde", serde(skip_serializing))] + #[cfg_attr(feature = "serde", serde(skip_serializing, alias = "sender"))] pub sender_id: Option, /// GPS Time of Week - #[cfg_attr(feature = "serde", serde(rename(serialize = "tow")))] + #[cfg_attr(feature = "serde", serde(rename = "tow"))] pub tow: u32, /// Velocity North coordinate - #[cfg_attr(feature = "serde", serde(rename(serialize = "n")))] + #[cfg_attr(feature = "serde", serde(rename = "n"))] pub n: i32, /// Velocity East coordinate - #[cfg_attr(feature = "serde", serde(rename(serialize = "e")))] + #[cfg_attr(feature = "serde", serde(rename = "e"))] pub e: i32, /// Velocity Down coordinate - #[cfg_attr(feature = "serde", serde(rename(serialize = "d")))] + #[cfg_attr(feature = "serde", serde(rename = "d"))] pub d: i32, /// Estimated variance of northward measurement - #[cfg_attr(feature = "serde", serde(rename(serialize = "cov_n_n")))] + #[cfg_attr(feature = "serde", serde(rename = "cov_n_n"))] pub cov_n_n: f32, /// Covariance of northward and eastward measurement - #[cfg_attr(feature = "serde", serde(rename(serialize = "cov_n_e")))] + #[cfg_attr(feature = "serde", serde(rename = "cov_n_e"))] pub cov_n_e: f32, /// Covariance of northward and downward measurement - #[cfg_attr(feature = "serde", serde(rename(serialize = "cov_n_d")))] + #[cfg_attr(feature = "serde", serde(rename = "cov_n_d"))] pub cov_n_d: f32, /// Estimated variance of eastward measurement - #[cfg_attr(feature = "serde", serde(rename(serialize = "cov_e_e")))] + #[cfg_attr(feature = "serde", serde(rename = "cov_e_e"))] pub cov_e_e: f32, /// Covariance of eastward and downward measurement - #[cfg_attr(feature = "serde", serde(rename(serialize = "cov_e_d")))] + #[cfg_attr(feature = "serde", serde(rename = "cov_e_d"))] pub cov_e_d: f32, /// Estimated variance of downward measurement - #[cfg_attr(feature = "serde", serde(rename(serialize = "cov_d_d")))] + #[cfg_attr(feature = "serde", serde(rename = "cov_d_d"))] pub cov_d_d: f32, /// Number of satellites used in solution - #[cfg_attr(feature = "serde", serde(rename(serialize = "n_sats")))] + #[cfg_attr(feature = "serde", serde(rename = "n_sats"))] pub n_sats: u8, /// Status flags - #[cfg_attr(feature = "serde", serde(rename(serialize = "flags")))] + #[cfg_attr(feature = "serde", serde(rename = "flags"))] pub flags: u8, } @@ -9209,47 +9209,47 @@ pub mod msg_vel_ned_cov_gnss { /// message is similar to the MSG_VEL_NED, but it includes the upper /// triangular portion of the 3x3 covariance matrix. /// - #[cfg_attr(feature = "serde", derive(serde::Serialize))] + #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] #[derive(Debug, PartialEq, Clone)] pub struct MsgVelNedCovGnss { /// The message sender_id - #[cfg_attr(feature = "serde", serde(skip_serializing))] + #[cfg_attr(feature = "serde", serde(skip_serializing, alias = "sender"))] pub sender_id: Option, /// GPS Time of Week - #[cfg_attr(feature = "serde", serde(rename(serialize = "tow")))] + #[cfg_attr(feature = "serde", serde(rename = "tow"))] pub tow: u32, /// Velocity North coordinate - #[cfg_attr(feature = "serde", serde(rename(serialize = "n")))] + #[cfg_attr(feature = "serde", serde(rename = "n"))] pub n: i32, /// Velocity East coordinate - #[cfg_attr(feature = "serde", serde(rename(serialize = "e")))] + #[cfg_attr(feature = "serde", serde(rename = "e"))] pub e: i32, /// Velocity Down coordinate - #[cfg_attr(feature = "serde", serde(rename(serialize = "d")))] + #[cfg_attr(feature = "serde", serde(rename = "d"))] pub d: i32, /// Estimated variance of northward measurement - #[cfg_attr(feature = "serde", serde(rename(serialize = "cov_n_n")))] + #[cfg_attr(feature = "serde", serde(rename = "cov_n_n"))] pub cov_n_n: f32, /// Covariance of northward and eastward measurement - #[cfg_attr(feature = "serde", serde(rename(serialize = "cov_n_e")))] + #[cfg_attr(feature = "serde", serde(rename = "cov_n_e"))] pub cov_n_e: f32, /// Covariance of northward and downward measurement - #[cfg_attr(feature = "serde", serde(rename(serialize = "cov_n_d")))] + #[cfg_attr(feature = "serde", serde(rename = "cov_n_d"))] pub cov_n_d: f32, /// Estimated variance of eastward measurement - #[cfg_attr(feature = "serde", serde(rename(serialize = "cov_e_e")))] + #[cfg_attr(feature = "serde", serde(rename = "cov_e_e"))] pub cov_e_e: f32, /// Covariance of eastward and downward measurement - #[cfg_attr(feature = "serde", serde(rename(serialize = "cov_e_d")))] + #[cfg_attr(feature = "serde", serde(rename = "cov_e_d"))] pub cov_e_d: f32, /// Estimated variance of downward measurement - #[cfg_attr(feature = "serde", serde(rename(serialize = "cov_d_d")))] + #[cfg_attr(feature = "serde", serde(rename = "cov_d_d"))] pub cov_d_d: f32, /// Number of satellites used in solution - #[cfg_attr(feature = "serde", serde(rename(serialize = "n_sats")))] + #[cfg_attr(feature = "serde", serde(rename = "n_sats"))] pub n_sats: u8, /// Status flags - #[cfg_attr(feature = "serde", serde(rename(serialize = "flags")))] + #[cfg_attr(feature = "serde", serde(rename = "flags"))] pub flags: u8, } @@ -9420,35 +9420,35 @@ pub mod msg_vel_ned_dep_a { /// tangent plane centered at the current position. The full GPS time is given /// by the preceding MSG_GPS_TIME with the matching time-of-week (tow). /// - #[cfg_attr(feature = "serde", derive(serde::Serialize))] + #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] #[derive(Debug, PartialEq, Clone)] pub struct MsgVelNedDepA { /// The message sender_id - #[cfg_attr(feature = "serde", serde(skip_serializing))] + #[cfg_attr(feature = "serde", serde(skip_serializing, alias = "sender"))] pub sender_id: Option, /// GPS Time of Week - #[cfg_attr(feature = "serde", serde(rename(serialize = "tow")))] + #[cfg_attr(feature = "serde", serde(rename = "tow"))] pub tow: u32, /// Velocity North coordinate - #[cfg_attr(feature = "serde", serde(rename(serialize = "n")))] + #[cfg_attr(feature = "serde", serde(rename = "n"))] pub n: i32, /// Velocity East coordinate - #[cfg_attr(feature = "serde", serde(rename(serialize = "e")))] + #[cfg_attr(feature = "serde", serde(rename = "e"))] pub e: i32, /// Velocity Down coordinate - #[cfg_attr(feature = "serde", serde(rename(serialize = "d")))] + #[cfg_attr(feature = "serde", serde(rename = "d"))] pub d: i32, /// Horizontal velocity accuracy estimate (not implemented). Defaults to 0. - #[cfg_attr(feature = "serde", serde(rename(serialize = "h_accuracy")))] + #[cfg_attr(feature = "serde", serde(rename = "h_accuracy"))] pub h_accuracy: u16, /// Vertical velocity accuracy estimate (not implemented). Defaults to 0. - #[cfg_attr(feature = "serde", serde(rename(serialize = "v_accuracy")))] + #[cfg_attr(feature = "serde", serde(rename = "v_accuracy"))] pub v_accuracy: u16, /// Number of satellites used in solution - #[cfg_attr(feature = "serde", serde(rename(serialize = "n_sats")))] + #[cfg_attr(feature = "serde", serde(rename = "n_sats"))] pub n_sats: u8, /// Status flags (reserved) - #[cfg_attr(feature = "serde", serde(rename(serialize = "flags")))] + #[cfg_attr(feature = "serde", serde(rename = "flags"))] pub flags: u8, } @@ -9552,35 +9552,35 @@ pub mod msg_vel_ned_gnss { /// tangent plane centered at the current position. The full GPS time is given /// by the preceding MSG_GPS_TIME with the matching time-of-week (tow). /// - #[cfg_attr(feature = "serde", derive(serde::Serialize))] + #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] #[derive(Debug, PartialEq, Clone)] pub struct MsgVelNedGnss { /// The message sender_id - #[cfg_attr(feature = "serde", serde(skip_serializing))] + #[cfg_attr(feature = "serde", serde(skip_serializing, alias = "sender"))] pub sender_id: Option, /// GPS Time of Week - #[cfg_attr(feature = "serde", serde(rename(serialize = "tow")))] + #[cfg_attr(feature = "serde", serde(rename = "tow"))] pub tow: u32, /// Velocity North coordinate - #[cfg_attr(feature = "serde", serde(rename(serialize = "n")))] + #[cfg_attr(feature = "serde", serde(rename = "n"))] pub n: i32, /// Velocity East coordinate - #[cfg_attr(feature = "serde", serde(rename(serialize = "e")))] + #[cfg_attr(feature = "serde", serde(rename = "e"))] pub e: i32, /// Velocity Down coordinate - #[cfg_attr(feature = "serde", serde(rename(serialize = "d")))] + #[cfg_attr(feature = "serde", serde(rename = "d"))] pub d: i32, /// Horizontal velocity estimated standard deviation - #[cfg_attr(feature = "serde", serde(rename(serialize = "h_accuracy")))] + #[cfg_attr(feature = "serde", serde(rename = "h_accuracy"))] pub h_accuracy: u16, /// Vertical velocity estimated standard deviation - #[cfg_attr(feature = "serde", serde(rename(serialize = "v_accuracy")))] + #[cfg_attr(feature = "serde", serde(rename = "v_accuracy"))] pub v_accuracy: u16, /// Number of satellites used in solution - #[cfg_attr(feature = "serde", serde(rename(serialize = "n_sats")))] + #[cfg_attr(feature = "serde", serde(rename = "n_sats"))] pub n_sats: u8, /// Status flags - #[cfg_attr(feature = "serde", serde(rename(serialize = "flags")))] + #[cfg_attr(feature = "serde", serde(rename = "flags"))] pub flags: u8, } diff --git a/rust/sbp/src/messages/ndb.rs b/rust/sbp/src/messages/ndb.rs index d223d6bd93..9511170f9c 100644 --- a/rust/sbp/src/messages/ndb.rs +++ b/rust/sbp/src/messages/ndb.rs @@ -27,41 +27,41 @@ pub mod msg_ndb_event { /// This message is sent out when an object is stored into NDB. If needed /// message could also be sent out when fetching an object from NDB. /// - #[cfg_attr(feature = "serde", derive(serde::Serialize))] + #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] #[derive(Debug, PartialEq, Clone)] pub struct MsgNdbEvent { /// The message sender_id - #[cfg_attr(feature = "serde", serde(skip_serializing))] + #[cfg_attr(feature = "serde", serde(skip_serializing, alias = "sender"))] pub sender_id: Option, /// HW time in milliseconds. - #[cfg_attr(feature = "serde", serde(rename(serialize = "recv_time")))] + #[cfg_attr(feature = "serde", serde(rename = "recv_time"))] pub recv_time: u64, /// Event type. - #[cfg_attr(feature = "serde", serde(rename(serialize = "event")))] + #[cfg_attr(feature = "serde", serde(rename = "event"))] pub event: u8, /// Event object type. - #[cfg_attr(feature = "serde", serde(rename(serialize = "object_type")))] + #[cfg_attr(feature = "serde", serde(rename = "object_type"))] pub object_type: u8, /// Event result. - #[cfg_attr(feature = "serde", serde(rename(serialize = "result")))] + #[cfg_attr(feature = "serde", serde(rename = "result"))] pub result: u8, /// Data source for STORE event, reserved for other events. - #[cfg_attr(feature = "serde", serde(rename(serialize = "data_source")))] + #[cfg_attr(feature = "serde", serde(rename = "data_source"))] pub data_source: u8, /// GNSS signal identifier, If object_type is Ephemeris OR Almanac, sid /// indicates for which signal the object belongs to. Reserved in other /// cases. - #[cfg_attr(feature = "serde", serde(rename(serialize = "object_sid")))] + #[cfg_attr(feature = "serde", serde(rename = "object_sid"))] pub object_sid: GnssSignal, /// GNSS signal identifier, If object_type is Almanac, Almanac WN, Iono OR /// L2C capabilities AND data_source is NDB_DS_RECEIVER sid indicates from /// which SV data was decoded. Reserved in other cases. - #[cfg_attr(feature = "serde", serde(rename(serialize = "src_sid")))] + #[cfg_attr(feature = "serde", serde(rename = "src_sid"))] pub src_sid: GnssSignal, /// A unique identifier of the sending hardware. For v1.0, set to the 2 /// least significant bytes of the device serial number, valid only if /// data_source is NDB_DS_SBP. Reserved in case of other data_source. - #[cfg_attr(feature = "serde", serde(rename(serialize = "original_sender")))] + #[cfg_attr(feature = "serde", serde(rename = "original_sender"))] pub original_sender: u16, } diff --git a/rust/sbp/src/messages/observation.rs b/rust/sbp/src/messages/observation.rs index 7ad72f6fda..42d54fbb70 100644 --- a/rust/sbp/src/messages/observation.rs +++ b/rust/sbp/src/messages/observation.rs @@ -77,23 +77,23 @@ pub mod almanac_common_content { use crate::messages::gnss::*; use crate::messages::lib::*; /// Common fields for every almanac message - #[cfg_attr(feature = "serde", derive(serde::Serialize))] + #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] #[derive(Debug, PartialEq, Clone)] pub struct AlmanacCommonContent { /// GNSS signal identifier - #[cfg_attr(feature = "serde", serde(rename(serialize = "sid")))] + #[cfg_attr(feature = "serde", serde(rename = "sid"))] pub sid: GnssSignal, /// Reference time of almanac - #[cfg_attr(feature = "serde", serde(rename(serialize = "toa")))] + #[cfg_attr(feature = "serde", serde(rename = "toa"))] pub toa: GpsTimeSec, /// User Range Accuracy - #[cfg_attr(feature = "serde", serde(rename(serialize = "ura")))] + #[cfg_attr(feature = "serde", serde(rename = "ura"))] pub ura: f64, /// Curve fit interval - #[cfg_attr(feature = "serde", serde(rename(serialize = "fit_interval")))] + #[cfg_attr(feature = "serde", serde(rename = "fit_interval"))] pub fit_interval: u32, /// Status of almanac, 1 = valid, 0 = invalid - #[cfg_attr(feature = "serde", serde(rename(serialize = "valid")))] + #[cfg_attr(feature = "serde", serde(rename = "valid"))] pub valid: u8, /// Satellite health status for GPS: /// - bits 5-7: NAV data health status. See IS-GPS-200H @@ -109,7 +109,7 @@ pub mod almanac_common_content { /// '1' indicates that n-satellite is operational. /// - bit 1: Bn(ln), '0' indicates the satellite is operational /// and suitable for navigation. - #[cfg_attr(feature = "serde", serde(rename(serialize = "health_bits")))] + #[cfg_attr(feature = "serde", serde(rename = "health_bits"))] pub health_bits: u8, } @@ -156,23 +156,23 @@ pub mod almanac_common_content_dep { use crate::messages::gnss::*; use crate::messages::lib::*; /// Common fields for every almanac message - #[cfg_attr(feature = "serde", derive(serde::Serialize))] + #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] #[derive(Debug, PartialEq, Clone)] pub struct AlmanacCommonContentDep { /// GNSS signal identifier - #[cfg_attr(feature = "serde", serde(rename(serialize = "sid")))] + #[cfg_attr(feature = "serde", serde(rename = "sid"))] pub sid: GnssSignalDep, /// Reference time of almanac - #[cfg_attr(feature = "serde", serde(rename(serialize = "toa")))] + #[cfg_attr(feature = "serde", serde(rename = "toa"))] pub toa: GpsTimeSec, /// User Range Accuracy - #[cfg_attr(feature = "serde", serde(rename(serialize = "ura")))] + #[cfg_attr(feature = "serde", serde(rename = "ura"))] pub ura: f64, /// Curve fit interval - #[cfg_attr(feature = "serde", serde(rename(serialize = "fit_interval")))] + #[cfg_attr(feature = "serde", serde(rename = "fit_interval"))] pub fit_interval: u32, /// Status of almanac, 1 = valid, 0 = invalid - #[cfg_attr(feature = "serde", serde(rename(serialize = "valid")))] + #[cfg_attr(feature = "serde", serde(rename = "valid"))] pub valid: u8, /// Satellite health status for GPS: /// - bits 5-7: NAV data health status. See IS-GPS-200H @@ -188,7 +188,7 @@ pub mod almanac_common_content_dep { /// '1' indicates that n-satellite is operational. /// - bit 1: Bn(ln), '0' indicates the satellite is operational /// and suitable for navigation. - #[cfg_attr(feature = "serde", serde(rename(serialize = "health_bits")))] + #[cfg_attr(feature = "serde", serde(rename = "health_bits"))] pub health_bits: u8, } @@ -242,14 +242,14 @@ pub mod carrier_phase_dep_a { /// fractional cycles. This has the opposite sign convention than a typical /// GPS receiver and the phase has the opposite sign as the pseudorange. /// - #[cfg_attr(feature = "serde", derive(serde::Serialize))] + #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] #[derive(Debug, PartialEq, Clone)] pub struct CarrierPhaseDepA { /// Carrier phase whole cycles - #[cfg_attr(feature = "serde", serde(rename(serialize = "i")))] + #[cfg_attr(feature = "serde", serde(rename = "i"))] pub i: i32, /// Carrier phase fractional part - #[cfg_attr(feature = "serde", serde(rename(serialize = "f")))] + #[cfg_attr(feature = "serde", serde(rename = "f"))] pub f: u8, } @@ -284,14 +284,14 @@ pub mod doppler { /// Q16.8 layout, i.e. 16-bits of whole doppler and 8-bits of fractional /// doppler. This doppler is defined as positive for approaching satellites. /// - #[cfg_attr(feature = "serde", derive(serde::Serialize))] + #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] #[derive(Debug, PartialEq, Clone)] pub struct Doppler { /// Doppler whole Hz - #[cfg_attr(feature = "serde", serde(rename(serialize = "i")))] + #[cfg_attr(feature = "serde", serde(rename = "i"))] pub i: i16, /// Doppler fractional part - #[cfg_attr(feature = "serde", serde(rename(serialize = "f")))] + #[cfg_attr(feature = "serde", serde(rename = "f"))] pub f: u8, } @@ -320,29 +320,29 @@ pub mod ephemeris_common_content { use crate::messages::gnss::*; use crate::messages::lib::*; /// Common fields for every ephemeris message - #[cfg_attr(feature = "serde", derive(serde::Serialize))] + #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] #[derive(Debug, PartialEq, Clone)] pub struct EphemerisCommonContent { /// GNSS signal identifier (16 bit) - #[cfg_attr(feature = "serde", serde(rename(serialize = "sid")))] + #[cfg_attr(feature = "serde", serde(rename = "sid"))] pub sid: GnssSignal, /// Time of Ephemerides - #[cfg_attr(feature = "serde", serde(rename(serialize = "toe")))] + #[cfg_attr(feature = "serde", serde(rename = "toe"))] pub toe: GpsTimeSec, /// User Range Accuracy - #[cfg_attr(feature = "serde", serde(rename(serialize = "ura")))] + #[cfg_attr(feature = "serde", serde(rename = "ura"))] pub ura: f32, /// Curve fit interval - #[cfg_attr(feature = "serde", serde(rename(serialize = "fit_interval")))] + #[cfg_attr(feature = "serde", serde(rename = "fit_interval"))] pub fit_interval: u32, /// Status of ephemeris, 1 = valid, 0 = invalid - #[cfg_attr(feature = "serde", serde(rename(serialize = "valid")))] + #[cfg_attr(feature = "serde", serde(rename = "valid"))] pub valid: u8, /// Satellite health status. /// GPS: ICD-GPS-200, chapter 20.3.3.3.1.4 /// SBAS: 0 = valid, non-zero = invalid /// GLO: 0 = valid, non-zero = invalid - #[cfg_attr(feature = "serde", serde(rename(serialize = "health_bits")))] + #[cfg_attr(feature = "serde", serde(rename = "health_bits"))] pub health_bits: u8, } @@ -389,29 +389,29 @@ pub mod ephemeris_common_content_dep_a { use crate::messages::gnss::*; use crate::messages::lib::*; /// Common fields for every ephemeris message - #[cfg_attr(feature = "serde", derive(serde::Serialize))] + #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] #[derive(Debug, PartialEq, Clone)] pub struct EphemerisCommonContentDepA { /// GNSS signal identifier - #[cfg_attr(feature = "serde", serde(rename(serialize = "sid")))] + #[cfg_attr(feature = "serde", serde(rename = "sid"))] pub sid: GnssSignalDep, /// Time of Ephemerides - #[cfg_attr(feature = "serde", serde(rename(serialize = "toe")))] + #[cfg_attr(feature = "serde", serde(rename = "toe"))] pub toe: GpsTimeDep, /// User Range Accuracy - #[cfg_attr(feature = "serde", serde(rename(serialize = "ura")))] + #[cfg_attr(feature = "serde", serde(rename = "ura"))] pub ura: f64, /// Curve fit interval - #[cfg_attr(feature = "serde", serde(rename(serialize = "fit_interval")))] + #[cfg_attr(feature = "serde", serde(rename = "fit_interval"))] pub fit_interval: u32, /// Status of ephemeris, 1 = valid, 0 = invalid - #[cfg_attr(feature = "serde", serde(rename(serialize = "valid")))] + #[cfg_attr(feature = "serde", serde(rename = "valid"))] pub valid: u8, /// Satellite health status. /// GPS: ICD-GPS-200, chapter 20.3.3.3.1.4 /// SBAS: 0 = valid, non-zero = invalid /// GLO: 0 = valid, non-zero = invalid - #[cfg_attr(feature = "serde", serde(rename(serialize = "health_bits")))] + #[cfg_attr(feature = "serde", serde(rename = "health_bits"))] pub health_bits: u8, } @@ -458,28 +458,28 @@ pub mod ephemeris_common_content_dep_b { use crate::messages::gnss::*; use crate::messages::lib::*; /// Common fields for every ephemeris message - #[cfg_attr(feature = "serde", derive(serde::Serialize))] + #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] #[derive(Debug, PartialEq, Clone)] pub struct EphemerisCommonContentDepB { /// GNSS signal identifier (16 bit) - #[cfg_attr(feature = "serde", serde(rename(serialize = "sid")))] + #[cfg_attr(feature = "serde", serde(rename = "sid"))] pub sid: GnssSignal, /// Time of Ephemerides - #[cfg_attr(feature = "serde", serde(rename(serialize = "toe")))] + #[cfg_attr(feature = "serde", serde(rename = "toe"))] pub toe: GpsTimeSec, /// User Range Accuracy - #[cfg_attr(feature = "serde", serde(rename(serialize = "ura")))] + #[cfg_attr(feature = "serde", serde(rename = "ura"))] pub ura: f64, /// Curve fit interval - #[cfg_attr(feature = "serde", serde(rename(serialize = "fit_interval")))] + #[cfg_attr(feature = "serde", serde(rename = "fit_interval"))] pub fit_interval: u32, /// Status of ephemeris, 1 = valid, 0 = invalid - #[cfg_attr(feature = "serde", serde(rename(serialize = "valid")))] + #[cfg_attr(feature = "serde", serde(rename = "valid"))] pub valid: u8, /// Satellite health status. /// GPS: ICD-GPS-200, chapter 20.3.3.3.1.4 /// Others: 0 = valid, non-zero = invalid - #[cfg_attr(feature = "serde", serde(rename(serialize = "health_bits")))] + #[cfg_attr(feature = "serde", serde(rename = "health_bits"))] pub health_bits: u8, } @@ -526,55 +526,55 @@ pub mod gnss_capb { use crate::messages::gnss::*; use crate::messages::lib::*; /// GNSS capabilities masks - #[cfg_attr(feature = "serde", derive(serde::Serialize))] + #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] #[derive(Debug, PartialEq, Clone)] pub struct GnssCapb { /// GPS SV active mask - #[cfg_attr(feature = "serde", serde(rename(serialize = "gps_active")))] + #[cfg_attr(feature = "serde", serde(rename = "gps_active"))] pub gps_active: u64, /// GPS L2C active mask - #[cfg_attr(feature = "serde", serde(rename(serialize = "gps_l2c")))] + #[cfg_attr(feature = "serde", serde(rename = "gps_l2c"))] pub gps_l2c: u64, /// GPS L5 active mask - #[cfg_attr(feature = "serde", serde(rename(serialize = "gps_l5")))] + #[cfg_attr(feature = "serde", serde(rename = "gps_l5"))] pub gps_l5: u64, /// GLO active mask - #[cfg_attr(feature = "serde", serde(rename(serialize = "glo_active")))] + #[cfg_attr(feature = "serde", serde(rename = "glo_active"))] pub glo_active: u32, /// GLO L2OF active mask - #[cfg_attr(feature = "serde", serde(rename(serialize = "glo_l2of")))] + #[cfg_attr(feature = "serde", serde(rename = "glo_l2of"))] pub glo_l2of: u32, /// GLO L3 active mask - #[cfg_attr(feature = "serde", serde(rename(serialize = "glo_l3")))] + #[cfg_attr(feature = "serde", serde(rename = "glo_l3"))] pub glo_l3: u32, /// SBAS active mask (PRNs 120..158, AN 7/62.2.2-18/18 Table B-23, /// ) - #[cfg_attr(feature = "serde", serde(rename(serialize = "sbas_active")))] + #[cfg_attr(feature = "serde", serde(rename = "sbas_active"))] pub sbas_active: u64, /// SBAS L5 active mask (PRNs 120..158, AN 7/62.2.2-18/18 Table B-23, /// ) - #[cfg_attr(feature = "serde", serde(rename(serialize = "sbas_l5")))] + #[cfg_attr(feature = "serde", serde(rename = "sbas_l5"))] pub sbas_l5: u64, /// BDS active mask - #[cfg_attr(feature = "serde", serde(rename(serialize = "bds_active")))] + #[cfg_attr(feature = "serde", serde(rename = "bds_active"))] pub bds_active: u64, /// BDS D2NAV active mask - #[cfg_attr(feature = "serde", serde(rename(serialize = "bds_d2nav")))] + #[cfg_attr(feature = "serde", serde(rename = "bds_d2nav"))] pub bds_d2nav: u64, /// BDS B2 active mask - #[cfg_attr(feature = "serde", serde(rename(serialize = "bds_b2")))] + #[cfg_attr(feature = "serde", serde(rename = "bds_b2"))] pub bds_b2: u64, /// BDS B2A active mask - #[cfg_attr(feature = "serde", serde(rename(serialize = "bds_b2a")))] + #[cfg_attr(feature = "serde", serde(rename = "bds_b2a"))] pub bds_b2a: u64, /// QZSS active mask - #[cfg_attr(feature = "serde", serde(rename(serialize = "qzss_active")))] + #[cfg_attr(feature = "serde", serde(rename = "qzss_active"))] pub qzss_active: u32, /// GAL active mask - #[cfg_attr(feature = "serde", serde(rename(serialize = "gal_active")))] + #[cfg_attr(feature = "serde", serde(rename = "gal_active"))] pub gal_active: u64, /// GAL E5 active mask - #[cfg_attr(feature = "serde", serde(rename(serialize = "gal_e5")))] + #[cfg_attr(feature = "serde", serde(rename = "gal_e5"))] pub gal_e5: u64, } @@ -664,36 +664,36 @@ pub mod msg_almanac_glo { /// Please see the GLO ICD 5.1 "Chapter 4.5 Non-immediate information and /// almanac" for details. /// - #[cfg_attr(feature = "serde", derive(serde::Serialize))] + #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] #[derive(Debug, PartialEq, Clone)] pub struct MsgAlmanacGlo { /// The message sender_id - #[cfg_attr(feature = "serde", serde(skip_serializing))] + #[cfg_attr(feature = "serde", serde(skip_serializing, alias = "sender"))] pub sender_id: Option, /// Values common for all almanac types - #[cfg_attr(feature = "serde", serde(rename(serialize = "common")))] + #[cfg_attr(feature = "serde", serde(rename = "common"))] pub common: AlmanacCommonContent, /// Longitude of the first ascending node of the orbit in PZ-90.02 /// coordinate system - #[cfg_attr(feature = "serde", serde(rename(serialize = "lambda_na")))] + #[cfg_attr(feature = "serde", serde(rename = "lambda_na"))] pub lambda_na: f64, /// Time of the first ascending node passage - #[cfg_attr(feature = "serde", serde(rename(serialize = "t_lambda_na")))] + #[cfg_attr(feature = "serde", serde(rename = "t_lambda_na"))] pub t_lambda_na: f64, /// Value of inclination at instant of t_lambda - #[cfg_attr(feature = "serde", serde(rename(serialize = "i")))] + #[cfg_attr(feature = "serde", serde(rename = "i"))] pub i: f64, /// Value of Draconian period at instant of t_lambda - #[cfg_attr(feature = "serde", serde(rename(serialize = "t")))] + #[cfg_attr(feature = "serde", serde(rename = "t"))] pub t: f64, /// Rate of change of the Draconian period - #[cfg_attr(feature = "serde", serde(rename(serialize = "t_dot")))] + #[cfg_attr(feature = "serde", serde(rename = "t_dot"))] pub t_dot: f64, /// Eccentricity at instant of t_lambda - #[cfg_attr(feature = "serde", serde(rename(serialize = "epsilon")))] + #[cfg_attr(feature = "serde", serde(rename = "epsilon"))] pub epsilon: f64, /// Argument of perigee at instant of t_lambda - #[cfg_attr(feature = "serde", serde(rename(serialize = "omega")))] + #[cfg_attr(feature = "serde", serde(rename = "omega"))] pub omega: f64, } @@ -789,36 +789,36 @@ pub mod msg_almanac_glo_dep { /// Please see the GLO ICD 5.1 "Chapter 4.5 Non-immediate information and /// almanac" for details. /// - #[cfg_attr(feature = "serde", derive(serde::Serialize))] + #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] #[derive(Debug, PartialEq, Clone)] pub struct MsgAlmanacGloDep { /// The message sender_id - #[cfg_attr(feature = "serde", serde(skip_serializing))] + #[cfg_attr(feature = "serde", serde(skip_serializing, alias = "sender"))] pub sender_id: Option, /// Values common for all almanac types - #[cfg_attr(feature = "serde", serde(rename(serialize = "common")))] + #[cfg_attr(feature = "serde", serde(rename = "common"))] pub common: AlmanacCommonContentDep, /// Longitude of the first ascending node of the orbit in PZ-90.02 /// coordinate system - #[cfg_attr(feature = "serde", serde(rename(serialize = "lambda_na")))] + #[cfg_attr(feature = "serde", serde(rename = "lambda_na"))] pub lambda_na: f64, /// Time of the first ascending node passage - #[cfg_attr(feature = "serde", serde(rename(serialize = "t_lambda_na")))] + #[cfg_attr(feature = "serde", serde(rename = "t_lambda_na"))] pub t_lambda_na: f64, /// Value of inclination at instant of t_lambda - #[cfg_attr(feature = "serde", serde(rename(serialize = "i")))] + #[cfg_attr(feature = "serde", serde(rename = "i"))] pub i: f64, /// Value of Draconian period at instant of t_lambda - #[cfg_attr(feature = "serde", serde(rename(serialize = "t")))] + #[cfg_attr(feature = "serde", serde(rename = "t"))] pub t: f64, /// Rate of change of the Draconian period - #[cfg_attr(feature = "serde", serde(rename(serialize = "t_dot")))] + #[cfg_attr(feature = "serde", serde(rename = "t_dot"))] pub t_dot: f64, /// Eccentricity at instant of t_lambda - #[cfg_attr(feature = "serde", serde(rename(serialize = "epsilon")))] + #[cfg_attr(feature = "serde", serde(rename = "epsilon"))] pub epsilon: f64, /// Argument of perigee at instant of t_lambda - #[cfg_attr(feature = "serde", serde(rename(serialize = "omega")))] + #[cfg_attr(feature = "serde", serde(rename = "omega"))] pub omega: f64, } @@ -914,41 +914,41 @@ pub mod msg_almanac_gps { /// Please see the Navstar GPS Space Segment/Navigation user interfaces (ICD- /// GPS-200, Chapter 20.3.3.5.1.2 Almanac Data) for more details. /// - #[cfg_attr(feature = "serde", derive(serde::Serialize))] + #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] #[derive(Debug, PartialEq, Clone)] pub struct MsgAlmanacGps { /// The message sender_id - #[cfg_attr(feature = "serde", serde(skip_serializing))] + #[cfg_attr(feature = "serde", serde(skip_serializing, alias = "sender"))] pub sender_id: Option, /// Values common for all almanac types - #[cfg_attr(feature = "serde", serde(rename(serialize = "common")))] + #[cfg_attr(feature = "serde", serde(rename = "common"))] pub common: AlmanacCommonContent, /// Mean anomaly at reference time - #[cfg_attr(feature = "serde", serde(rename(serialize = "m0")))] + #[cfg_attr(feature = "serde", serde(rename = "m0"))] pub m0: f64, /// Eccentricity of satellite orbit - #[cfg_attr(feature = "serde", serde(rename(serialize = "ecc")))] + #[cfg_attr(feature = "serde", serde(rename = "ecc"))] pub ecc: f64, /// Square root of the semi-major axis of orbit - #[cfg_attr(feature = "serde", serde(rename(serialize = "sqrta")))] + #[cfg_attr(feature = "serde", serde(rename = "sqrta"))] pub sqrta: f64, /// Longitude of ascending node of orbit plane at weekly epoch - #[cfg_attr(feature = "serde", serde(rename(serialize = "omega0")))] + #[cfg_attr(feature = "serde", serde(rename = "omega0"))] pub omega0: f64, /// Rate of right ascension - #[cfg_attr(feature = "serde", serde(rename(serialize = "omegadot")))] + #[cfg_attr(feature = "serde", serde(rename = "omegadot"))] pub omegadot: f64, /// Argument of perigee - #[cfg_attr(feature = "serde", serde(rename(serialize = "w")))] + #[cfg_attr(feature = "serde", serde(rename = "w"))] pub w: f64, /// Inclination - #[cfg_attr(feature = "serde", serde(rename(serialize = "inc")))] + #[cfg_attr(feature = "serde", serde(rename = "inc"))] pub inc: f64, /// Polynomial clock correction coefficient (clock bias) - #[cfg_attr(feature = "serde", serde(rename(serialize = "af0")))] + #[cfg_attr(feature = "serde", serde(rename = "af0"))] pub af0: f64, /// Polynomial clock correction coefficient (clock drift) - #[cfg_attr(feature = "serde", serde(rename(serialize = "af1")))] + #[cfg_attr(feature = "serde", serde(rename = "af1"))] pub af1: f64, } @@ -1052,41 +1052,41 @@ pub mod msg_almanac_gps_dep { /// Please see the Navstar GPS Space Segment/Navigation user interfaces (ICD- /// GPS-200, Chapter 20.3.3.5.1.2 Almanac Data) for more details. /// - #[cfg_attr(feature = "serde", derive(serde::Serialize))] + #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] #[derive(Debug, PartialEq, Clone)] pub struct MsgAlmanacGpsDep { /// The message sender_id - #[cfg_attr(feature = "serde", serde(skip_serializing))] + #[cfg_attr(feature = "serde", serde(skip_serializing, alias = "sender"))] pub sender_id: Option, /// Values common for all almanac types - #[cfg_attr(feature = "serde", serde(rename(serialize = "common")))] + #[cfg_attr(feature = "serde", serde(rename = "common"))] pub common: AlmanacCommonContentDep, /// Mean anomaly at reference time - #[cfg_attr(feature = "serde", serde(rename(serialize = "m0")))] + #[cfg_attr(feature = "serde", serde(rename = "m0"))] pub m0: f64, /// Eccentricity of satellite orbit - #[cfg_attr(feature = "serde", serde(rename(serialize = "ecc")))] + #[cfg_attr(feature = "serde", serde(rename = "ecc"))] pub ecc: f64, /// Square root of the semi-major axis of orbit - #[cfg_attr(feature = "serde", serde(rename(serialize = "sqrta")))] + #[cfg_attr(feature = "serde", serde(rename = "sqrta"))] pub sqrta: f64, /// Longitude of ascending node of orbit plane at weekly epoch - #[cfg_attr(feature = "serde", serde(rename(serialize = "omega0")))] + #[cfg_attr(feature = "serde", serde(rename = "omega0"))] pub omega0: f64, /// Rate of right ascension - #[cfg_attr(feature = "serde", serde(rename(serialize = "omegadot")))] + #[cfg_attr(feature = "serde", serde(rename = "omegadot"))] pub omegadot: f64, /// Argument of perigee - #[cfg_attr(feature = "serde", serde(rename(serialize = "w")))] + #[cfg_attr(feature = "serde", serde(rename = "w"))] pub w: f64, /// Inclination - #[cfg_attr(feature = "serde", serde(rename(serialize = "inc")))] + #[cfg_attr(feature = "serde", serde(rename = "inc"))] pub inc: f64, /// Polynomial clock correction coefficient (clock bias) - #[cfg_attr(feature = "serde", serde(rename(serialize = "af0")))] + #[cfg_attr(feature = "serde", serde(rename = "af0"))] pub af0: f64, /// Polynomial clock correction coefficient (clock drift) - #[cfg_attr(feature = "serde", serde(rename(serialize = "af1")))] + #[cfg_attr(feature = "serde", serde(rename = "af1"))] pub af1: f64, } @@ -1191,20 +1191,20 @@ pub mod msg_base_pos_ecef { /// accuracy surveyed location of the base station. Any error here will result /// in an error in the pseudo-absolute position output. /// - #[cfg_attr(feature = "serde", derive(serde::Serialize))] + #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] #[derive(Debug, PartialEq, Clone)] pub struct MsgBasePosEcef { /// The message sender_id - #[cfg_attr(feature = "serde", serde(skip_serializing))] + #[cfg_attr(feature = "serde", serde(skip_serializing, alias = "sender"))] pub sender_id: Option, /// ECEF X coordinate - #[cfg_attr(feature = "serde", serde(rename(serialize = "x")))] + #[cfg_attr(feature = "serde", serde(rename = "x"))] pub x: f64, /// ECEF Y coordinate - #[cfg_attr(feature = "serde", serde(rename(serialize = "y")))] + #[cfg_attr(feature = "serde", serde(rename = "y"))] pub y: f64, /// ECEF Z coordinate - #[cfg_attr(feature = "serde", serde(rename(serialize = "z")))] + #[cfg_attr(feature = "serde", serde(rename = "z"))] pub z: f64, } @@ -1278,20 +1278,20 @@ pub mod msg_base_pos_llh { /// required to be a high-accuracy surveyed location of the base station. Any /// error here will result in an error in the pseudo-absolute position output. /// - #[cfg_attr(feature = "serde", derive(serde::Serialize))] + #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] #[derive(Debug, PartialEq, Clone)] pub struct MsgBasePosLlh { /// The message sender_id - #[cfg_attr(feature = "serde", serde(skip_serializing))] + #[cfg_attr(feature = "serde", serde(skip_serializing, alias = "sender"))] pub sender_id: Option, /// Latitude - #[cfg_attr(feature = "serde", serde(rename(serialize = "lat")))] + #[cfg_attr(feature = "serde", serde(rename = "lat"))] pub lat: f64, /// Longitude - #[cfg_attr(feature = "serde", serde(rename(serialize = "lon")))] + #[cfg_attr(feature = "serde", serde(rename = "lon"))] pub lon: f64, /// Height - #[cfg_attr(feature = "serde", serde(rename(serialize = "height")))] + #[cfg_attr(feature = "serde", serde(rename = "height"))] pub height: f64, } @@ -1365,91 +1365,91 @@ pub mod msg_ephemeris_bds { /// Please see the BeiDou Navigation Satellite System SIS-ICD Version 2.1, /// Table 5-9 for more details. /// - #[cfg_attr(feature = "serde", derive(serde::Serialize))] + #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] #[derive(Debug, PartialEq, Clone)] pub struct MsgEphemerisBds { /// The message sender_id - #[cfg_attr(feature = "serde", serde(skip_serializing))] + #[cfg_attr(feature = "serde", serde(skip_serializing, alias = "sender"))] pub sender_id: Option, /// Values common for all ephemeris types - #[cfg_attr(feature = "serde", serde(rename(serialize = "common")))] + #[cfg_attr(feature = "serde", serde(rename = "common"))] pub common: EphemerisCommonContent, /// Group delay differential for B1 - #[cfg_attr(feature = "serde", serde(rename(serialize = "tgd1")))] + #[cfg_attr(feature = "serde", serde(rename = "tgd1"))] pub tgd1: f32, /// Group delay differential for B2 - #[cfg_attr(feature = "serde", serde(rename(serialize = "tgd2")))] + #[cfg_attr(feature = "serde", serde(rename = "tgd2"))] pub tgd2: f32, /// Amplitude of the sine harmonic correction term to the orbit radius - #[cfg_attr(feature = "serde", serde(rename(serialize = "c_rs")))] + #[cfg_attr(feature = "serde", serde(rename = "c_rs"))] pub c_rs: f32, /// Amplitude of the cosine harmonic correction term to the orbit radius - #[cfg_attr(feature = "serde", serde(rename(serialize = "c_rc")))] + #[cfg_attr(feature = "serde", serde(rename = "c_rc"))] pub c_rc: f32, /// Amplitude of the cosine harmonic correction term to the argument of /// latitude - #[cfg_attr(feature = "serde", serde(rename(serialize = "c_uc")))] + #[cfg_attr(feature = "serde", serde(rename = "c_uc"))] pub c_uc: f32, /// Amplitude of the sine harmonic correction term to the argument of /// latitude - #[cfg_attr(feature = "serde", serde(rename(serialize = "c_us")))] + #[cfg_attr(feature = "serde", serde(rename = "c_us"))] pub c_us: f32, /// Amplitude of the cosine harmonic correction term to the angle of /// inclination - #[cfg_attr(feature = "serde", serde(rename(serialize = "c_ic")))] + #[cfg_attr(feature = "serde", serde(rename = "c_ic"))] pub c_ic: f32, /// Amplitude of the sine harmonic correction term to the angle of /// inclination - #[cfg_attr(feature = "serde", serde(rename(serialize = "c_is")))] + #[cfg_attr(feature = "serde", serde(rename = "c_is"))] pub c_is: f32, /// Mean motion difference - #[cfg_attr(feature = "serde", serde(rename(serialize = "dn")))] + #[cfg_attr(feature = "serde", serde(rename = "dn"))] pub dn: f64, /// Mean anomaly at reference time - #[cfg_attr(feature = "serde", serde(rename(serialize = "m0")))] + #[cfg_attr(feature = "serde", serde(rename = "m0"))] pub m0: f64, /// Eccentricity of satellite orbit - #[cfg_attr(feature = "serde", serde(rename(serialize = "ecc")))] + #[cfg_attr(feature = "serde", serde(rename = "ecc"))] pub ecc: f64, /// Square root of the semi-major axis of orbit - #[cfg_attr(feature = "serde", serde(rename(serialize = "sqrta")))] + #[cfg_attr(feature = "serde", serde(rename = "sqrta"))] pub sqrta: f64, /// Longitude of ascending node of orbit plane at weekly epoch - #[cfg_attr(feature = "serde", serde(rename(serialize = "omega0")))] + #[cfg_attr(feature = "serde", serde(rename = "omega0"))] pub omega0: f64, /// Rate of right ascension - #[cfg_attr(feature = "serde", serde(rename(serialize = "omegadot")))] + #[cfg_attr(feature = "serde", serde(rename = "omegadot"))] pub omegadot: f64, /// Argument of perigee - #[cfg_attr(feature = "serde", serde(rename(serialize = "w")))] + #[cfg_attr(feature = "serde", serde(rename = "w"))] pub w: f64, /// Inclination - #[cfg_attr(feature = "serde", serde(rename(serialize = "inc")))] + #[cfg_attr(feature = "serde", serde(rename = "inc"))] pub inc: f64, /// Inclination first derivative - #[cfg_attr(feature = "serde", serde(rename(serialize = "inc_dot")))] + #[cfg_attr(feature = "serde", serde(rename = "inc_dot"))] pub inc_dot: f64, /// Polynomial clock correction coefficient (clock bias) - #[cfg_attr(feature = "serde", serde(rename(serialize = "af0")))] + #[cfg_attr(feature = "serde", serde(rename = "af0"))] pub af0: f64, /// Polynomial clock correction coefficient (clock drift) - #[cfg_attr(feature = "serde", serde(rename(serialize = "af1")))] + #[cfg_attr(feature = "serde", serde(rename = "af1"))] pub af1: f32, /// Polynomial clock correction coefficient (rate of clock drift) - #[cfg_attr(feature = "serde", serde(rename(serialize = "af2")))] + #[cfg_attr(feature = "serde", serde(rename = "af2"))] pub af2: f32, /// Clock reference - #[cfg_attr(feature = "serde", serde(rename(serialize = "toc")))] + #[cfg_attr(feature = "serde", serde(rename = "toc"))] pub toc: GpsTimeSec, /// Issue of ephemeris data /// Calculated from the navigation data parameter t_oe per RTCM/CSNO /// recommendation: IODE = mod (t_oe / 720, 240) - #[cfg_attr(feature = "serde", serde(rename(serialize = "iode")))] + #[cfg_attr(feature = "serde", serde(rename = "iode"))] pub iode: u8, /// Issue of clock data /// Calculated from the navigation data parameter t_oe per RTCM/CSNO /// recommendation: IODE = mod (t_oc / 720, 240) - #[cfg_attr(feature = "serde", serde(rename(serialize = "iodc")))] + #[cfg_attr(feature = "serde", serde(rename = "iodc"))] pub iodc: u16, } @@ -1606,93 +1606,93 @@ pub mod msg_ephemeris_dep_a { /// /// Deprecated. /// - #[cfg_attr(feature = "serde", derive(serde::Serialize))] + #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] #[derive(Debug, PartialEq, Clone)] pub struct MsgEphemerisDepA { /// The message sender_id - #[cfg_attr(feature = "serde", serde(skip_serializing))] + #[cfg_attr(feature = "serde", serde(skip_serializing, alias = "sender"))] pub sender_id: Option, /// Group delay differential between L1 and L2 - #[cfg_attr(feature = "serde", serde(rename(serialize = "tgd")))] + #[cfg_attr(feature = "serde", serde(rename = "tgd"))] pub tgd: f64, /// Amplitude of the sine harmonic correction term to the orbit radius - #[cfg_attr(feature = "serde", serde(rename(serialize = "c_rs")))] + #[cfg_attr(feature = "serde", serde(rename = "c_rs"))] pub c_rs: f64, /// Amplitude of the cosine harmonic correction term to the orbit radius - #[cfg_attr(feature = "serde", serde(rename(serialize = "c_rc")))] + #[cfg_attr(feature = "serde", serde(rename = "c_rc"))] pub c_rc: f64, /// Amplitude of the cosine harmonic correction term to the argument of /// latitude - #[cfg_attr(feature = "serde", serde(rename(serialize = "c_uc")))] + #[cfg_attr(feature = "serde", serde(rename = "c_uc"))] pub c_uc: f64, /// Amplitude of the sine harmonic correction term to the argument of /// latitude - #[cfg_attr(feature = "serde", serde(rename(serialize = "c_us")))] + #[cfg_attr(feature = "serde", serde(rename = "c_us"))] pub c_us: f64, /// Amplitude of the cosine harmonic correction term to the angle of /// inclination - #[cfg_attr(feature = "serde", serde(rename(serialize = "c_ic")))] + #[cfg_attr(feature = "serde", serde(rename = "c_ic"))] pub c_ic: f64, /// Amplitude of the sine harmonic correction term to the angle of /// inclination - #[cfg_attr(feature = "serde", serde(rename(serialize = "c_is")))] + #[cfg_attr(feature = "serde", serde(rename = "c_is"))] pub c_is: f64, /// Mean motion difference - #[cfg_attr(feature = "serde", serde(rename(serialize = "dn")))] + #[cfg_attr(feature = "serde", serde(rename = "dn"))] pub dn: f64, /// Mean anomaly at reference time - #[cfg_attr(feature = "serde", serde(rename(serialize = "m0")))] + #[cfg_attr(feature = "serde", serde(rename = "m0"))] pub m0: f64, /// Eccentricity of satellite orbit - #[cfg_attr(feature = "serde", serde(rename(serialize = "ecc")))] + #[cfg_attr(feature = "serde", serde(rename = "ecc"))] pub ecc: f64, /// Square root of the semi-major axis of orbit - #[cfg_attr(feature = "serde", serde(rename(serialize = "sqrta")))] + #[cfg_attr(feature = "serde", serde(rename = "sqrta"))] pub sqrta: f64, /// Longitude of ascending node of orbit plane at weekly epoch - #[cfg_attr(feature = "serde", serde(rename(serialize = "omega0")))] + #[cfg_attr(feature = "serde", serde(rename = "omega0"))] pub omega0: f64, /// Rate of right ascension - #[cfg_attr(feature = "serde", serde(rename(serialize = "omegadot")))] + #[cfg_attr(feature = "serde", serde(rename = "omegadot"))] pub omegadot: f64, /// Argument of perigee - #[cfg_attr(feature = "serde", serde(rename(serialize = "w")))] + #[cfg_attr(feature = "serde", serde(rename = "w"))] pub w: f64, /// Inclination - #[cfg_attr(feature = "serde", serde(rename(serialize = "inc")))] + #[cfg_attr(feature = "serde", serde(rename = "inc"))] pub inc: f64, /// Inclination first derivative - #[cfg_attr(feature = "serde", serde(rename(serialize = "inc_dot")))] + #[cfg_attr(feature = "serde", serde(rename = "inc_dot"))] pub inc_dot: f64, /// Polynomial clock correction coefficient (clock bias) - #[cfg_attr(feature = "serde", serde(rename(serialize = "af0")))] + #[cfg_attr(feature = "serde", serde(rename = "af0"))] pub af0: f64, /// Polynomial clock correction coefficient (clock drift) - #[cfg_attr(feature = "serde", serde(rename(serialize = "af1")))] + #[cfg_attr(feature = "serde", serde(rename = "af1"))] pub af1: f64, /// Polynomial clock correction coefficient (rate of clock drift) - #[cfg_attr(feature = "serde", serde(rename(serialize = "af2")))] + #[cfg_attr(feature = "serde", serde(rename = "af2"))] pub af2: f64, /// Time of week - #[cfg_attr(feature = "serde", serde(rename(serialize = "toe_tow")))] + #[cfg_attr(feature = "serde", serde(rename = "toe_tow"))] pub toe_tow: f64, /// Week number - #[cfg_attr(feature = "serde", serde(rename(serialize = "toe_wn")))] + #[cfg_attr(feature = "serde", serde(rename = "toe_wn"))] pub toe_wn: u16, /// Clock reference time of week - #[cfg_attr(feature = "serde", serde(rename(serialize = "toc_tow")))] + #[cfg_attr(feature = "serde", serde(rename = "toc_tow"))] pub toc_tow: f64, /// Clock reference week number - #[cfg_attr(feature = "serde", serde(rename(serialize = "toc_wn")))] + #[cfg_attr(feature = "serde", serde(rename = "toc_wn"))] pub toc_wn: u16, /// Is valid? - #[cfg_attr(feature = "serde", serde(rename(serialize = "valid")))] + #[cfg_attr(feature = "serde", serde(rename = "valid"))] pub valid: u8, /// Satellite is healthy? - #[cfg_attr(feature = "serde", serde(rename(serialize = "healthy")))] + #[cfg_attr(feature = "serde", serde(rename = "healthy"))] pub healthy: u8, /// PRN being tracked - #[cfg_attr(feature = "serde", serde(rename(serialize = "prn")))] + #[cfg_attr(feature = "serde", serde(rename = "prn"))] pub prn: u8, } @@ -1857,96 +1857,96 @@ pub mod msg_ephemeris_dep_b { /// /// Deprecated. /// - #[cfg_attr(feature = "serde", derive(serde::Serialize))] + #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] #[derive(Debug, PartialEq, Clone)] pub struct MsgEphemerisDepB { /// The message sender_id - #[cfg_attr(feature = "serde", serde(skip_serializing))] + #[cfg_attr(feature = "serde", serde(skip_serializing, alias = "sender"))] pub sender_id: Option, /// Group delay differential between L1 and L2 - #[cfg_attr(feature = "serde", serde(rename(serialize = "tgd")))] + #[cfg_attr(feature = "serde", serde(rename = "tgd"))] pub tgd: f64, /// Amplitude of the sine harmonic correction term to the orbit radius - #[cfg_attr(feature = "serde", serde(rename(serialize = "c_rs")))] + #[cfg_attr(feature = "serde", serde(rename = "c_rs"))] pub c_rs: f64, /// Amplitude of the cosine harmonic correction term to the orbit radius - #[cfg_attr(feature = "serde", serde(rename(serialize = "c_rc")))] + #[cfg_attr(feature = "serde", serde(rename = "c_rc"))] pub c_rc: f64, /// Amplitude of the cosine harmonic correction term to the argument of /// latitude - #[cfg_attr(feature = "serde", serde(rename(serialize = "c_uc")))] + #[cfg_attr(feature = "serde", serde(rename = "c_uc"))] pub c_uc: f64, /// Amplitude of the sine harmonic correction term to the argument of /// latitude - #[cfg_attr(feature = "serde", serde(rename(serialize = "c_us")))] + #[cfg_attr(feature = "serde", serde(rename = "c_us"))] pub c_us: f64, /// Amplitude of the cosine harmonic correction term to the angle of /// inclination - #[cfg_attr(feature = "serde", serde(rename(serialize = "c_ic")))] + #[cfg_attr(feature = "serde", serde(rename = "c_ic"))] pub c_ic: f64, /// Amplitude of the sine harmonic correction term to the angle of /// inclination - #[cfg_attr(feature = "serde", serde(rename(serialize = "c_is")))] + #[cfg_attr(feature = "serde", serde(rename = "c_is"))] pub c_is: f64, /// Mean motion difference - #[cfg_attr(feature = "serde", serde(rename(serialize = "dn")))] + #[cfg_attr(feature = "serde", serde(rename = "dn"))] pub dn: f64, /// Mean anomaly at reference time - #[cfg_attr(feature = "serde", serde(rename(serialize = "m0")))] + #[cfg_attr(feature = "serde", serde(rename = "m0"))] pub m0: f64, /// Eccentricity of satellite orbit - #[cfg_attr(feature = "serde", serde(rename(serialize = "ecc")))] + #[cfg_attr(feature = "serde", serde(rename = "ecc"))] pub ecc: f64, /// Square root of the semi-major axis of orbit - #[cfg_attr(feature = "serde", serde(rename(serialize = "sqrta")))] + #[cfg_attr(feature = "serde", serde(rename = "sqrta"))] pub sqrta: f64, /// Longitude of ascending node of orbit plane at weekly epoch - #[cfg_attr(feature = "serde", serde(rename(serialize = "omega0")))] + #[cfg_attr(feature = "serde", serde(rename = "omega0"))] pub omega0: f64, /// Rate of right ascension - #[cfg_attr(feature = "serde", serde(rename(serialize = "omegadot")))] + #[cfg_attr(feature = "serde", serde(rename = "omegadot"))] pub omegadot: f64, /// Argument of perigee - #[cfg_attr(feature = "serde", serde(rename(serialize = "w")))] + #[cfg_attr(feature = "serde", serde(rename = "w"))] pub w: f64, /// Inclination - #[cfg_attr(feature = "serde", serde(rename(serialize = "inc")))] + #[cfg_attr(feature = "serde", serde(rename = "inc"))] pub inc: f64, /// Inclination first derivative - #[cfg_attr(feature = "serde", serde(rename(serialize = "inc_dot")))] + #[cfg_attr(feature = "serde", serde(rename = "inc_dot"))] pub inc_dot: f64, /// Polynomial clock correction coefficient (clock bias) - #[cfg_attr(feature = "serde", serde(rename(serialize = "af0")))] + #[cfg_attr(feature = "serde", serde(rename = "af0"))] pub af0: f64, /// Polynomial clock correction coefficient (clock drift) - #[cfg_attr(feature = "serde", serde(rename(serialize = "af1")))] + #[cfg_attr(feature = "serde", serde(rename = "af1"))] pub af1: f64, /// Polynomial clock correction coefficient (rate of clock drift) - #[cfg_attr(feature = "serde", serde(rename(serialize = "af2")))] + #[cfg_attr(feature = "serde", serde(rename = "af2"))] pub af2: f64, /// Time of week - #[cfg_attr(feature = "serde", serde(rename(serialize = "toe_tow")))] + #[cfg_attr(feature = "serde", serde(rename = "toe_tow"))] pub toe_tow: f64, /// Week number - #[cfg_attr(feature = "serde", serde(rename(serialize = "toe_wn")))] + #[cfg_attr(feature = "serde", serde(rename = "toe_wn"))] pub toe_wn: u16, /// Clock reference time of week - #[cfg_attr(feature = "serde", serde(rename(serialize = "toc_tow")))] + #[cfg_attr(feature = "serde", serde(rename = "toc_tow"))] pub toc_tow: f64, /// Clock reference week number - #[cfg_attr(feature = "serde", serde(rename(serialize = "toc_wn")))] + #[cfg_attr(feature = "serde", serde(rename = "toc_wn"))] pub toc_wn: u16, /// Is valid? - #[cfg_attr(feature = "serde", serde(rename(serialize = "valid")))] + #[cfg_attr(feature = "serde", serde(rename = "valid"))] pub valid: u8, /// Satellite is healthy? - #[cfg_attr(feature = "serde", serde(rename(serialize = "healthy")))] + #[cfg_attr(feature = "serde", serde(rename = "healthy"))] pub healthy: u8, /// PRN being tracked - #[cfg_attr(feature = "serde", serde(rename(serialize = "prn")))] + #[cfg_attr(feature = "serde", serde(rename = "prn"))] pub prn: u8, /// Issue of ephemeris data - #[cfg_attr(feature = "serde", serde(rename(serialize = "iode")))] + #[cfg_attr(feature = "serde", serde(rename = "iode"))] pub iode: u8, } @@ -2118,102 +2118,102 @@ pub mod msg_ephemeris_dep_c { /// Please see the Navstar GPS Space Segment/Navigation user interfaces (ICD- /// GPS-200, Table 20-III) for more details. /// - #[cfg_attr(feature = "serde", derive(serde::Serialize))] + #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] #[derive(Debug, PartialEq, Clone)] pub struct MsgEphemerisDepC { /// The message sender_id - #[cfg_attr(feature = "serde", serde(skip_serializing))] + #[cfg_attr(feature = "serde", serde(skip_serializing, alias = "sender"))] pub sender_id: Option, /// Group delay differential between L1 and L2 - #[cfg_attr(feature = "serde", serde(rename(serialize = "tgd")))] + #[cfg_attr(feature = "serde", serde(rename = "tgd"))] pub tgd: f64, /// Amplitude of the sine harmonic correction term to the orbit radius - #[cfg_attr(feature = "serde", serde(rename(serialize = "c_rs")))] + #[cfg_attr(feature = "serde", serde(rename = "c_rs"))] pub c_rs: f64, /// Amplitude of the cosine harmonic correction term to the orbit radius - #[cfg_attr(feature = "serde", serde(rename(serialize = "c_rc")))] + #[cfg_attr(feature = "serde", serde(rename = "c_rc"))] pub c_rc: f64, /// Amplitude of the cosine harmonic correction term to the argument of /// latitude - #[cfg_attr(feature = "serde", serde(rename(serialize = "c_uc")))] + #[cfg_attr(feature = "serde", serde(rename = "c_uc"))] pub c_uc: f64, /// Amplitude of the sine harmonic correction term to the argument of /// latitude - #[cfg_attr(feature = "serde", serde(rename(serialize = "c_us")))] + #[cfg_attr(feature = "serde", serde(rename = "c_us"))] pub c_us: f64, /// Amplitude of the cosine harmonic correction term to the angle of /// inclination - #[cfg_attr(feature = "serde", serde(rename(serialize = "c_ic")))] + #[cfg_attr(feature = "serde", serde(rename = "c_ic"))] pub c_ic: f64, /// Amplitude of the sine harmonic correction term to the angle of /// inclination - #[cfg_attr(feature = "serde", serde(rename(serialize = "c_is")))] + #[cfg_attr(feature = "serde", serde(rename = "c_is"))] pub c_is: f64, /// Mean motion difference - #[cfg_attr(feature = "serde", serde(rename(serialize = "dn")))] + #[cfg_attr(feature = "serde", serde(rename = "dn"))] pub dn: f64, /// Mean anomaly at reference time - #[cfg_attr(feature = "serde", serde(rename(serialize = "m0")))] + #[cfg_attr(feature = "serde", serde(rename = "m0"))] pub m0: f64, /// Eccentricity of satellite orbit - #[cfg_attr(feature = "serde", serde(rename(serialize = "ecc")))] + #[cfg_attr(feature = "serde", serde(rename = "ecc"))] pub ecc: f64, /// Square root of the semi-major axis of orbit - #[cfg_attr(feature = "serde", serde(rename(serialize = "sqrta")))] + #[cfg_attr(feature = "serde", serde(rename = "sqrta"))] pub sqrta: f64, /// Longitude of ascending node of orbit plane at weekly epoch - #[cfg_attr(feature = "serde", serde(rename(serialize = "omega0")))] + #[cfg_attr(feature = "serde", serde(rename = "omega0"))] pub omega0: f64, /// Rate of right ascension - #[cfg_attr(feature = "serde", serde(rename(serialize = "omegadot")))] + #[cfg_attr(feature = "serde", serde(rename = "omegadot"))] pub omegadot: f64, /// Argument of perigee - #[cfg_attr(feature = "serde", serde(rename(serialize = "w")))] + #[cfg_attr(feature = "serde", serde(rename = "w"))] pub w: f64, /// Inclination - #[cfg_attr(feature = "serde", serde(rename(serialize = "inc")))] + #[cfg_attr(feature = "serde", serde(rename = "inc"))] pub inc: f64, /// Inclination first derivative - #[cfg_attr(feature = "serde", serde(rename(serialize = "inc_dot")))] + #[cfg_attr(feature = "serde", serde(rename = "inc_dot"))] pub inc_dot: f64, /// Polynomial clock correction coefficient (clock bias) - #[cfg_attr(feature = "serde", serde(rename(serialize = "af0")))] + #[cfg_attr(feature = "serde", serde(rename = "af0"))] pub af0: f64, /// Polynomial clock correction coefficient (clock drift) - #[cfg_attr(feature = "serde", serde(rename(serialize = "af1")))] + #[cfg_attr(feature = "serde", serde(rename = "af1"))] pub af1: f64, /// Polynomial clock correction coefficient (rate of clock drift) - #[cfg_attr(feature = "serde", serde(rename(serialize = "af2")))] + #[cfg_attr(feature = "serde", serde(rename = "af2"))] pub af2: f64, /// Time of week - #[cfg_attr(feature = "serde", serde(rename(serialize = "toe_tow")))] + #[cfg_attr(feature = "serde", serde(rename = "toe_tow"))] pub toe_tow: f64, /// Week number - #[cfg_attr(feature = "serde", serde(rename(serialize = "toe_wn")))] + #[cfg_attr(feature = "serde", serde(rename = "toe_wn"))] pub toe_wn: u16, /// Clock reference time of week - #[cfg_attr(feature = "serde", serde(rename(serialize = "toc_tow")))] + #[cfg_attr(feature = "serde", serde(rename = "toc_tow"))] pub toc_tow: f64, /// Clock reference week number - #[cfg_attr(feature = "serde", serde(rename(serialize = "toc_wn")))] + #[cfg_attr(feature = "serde", serde(rename = "toc_wn"))] pub toc_wn: u16, /// Is valid? - #[cfg_attr(feature = "serde", serde(rename(serialize = "valid")))] + #[cfg_attr(feature = "serde", serde(rename = "valid"))] pub valid: u8, /// Satellite is healthy? - #[cfg_attr(feature = "serde", serde(rename(serialize = "healthy")))] + #[cfg_attr(feature = "serde", serde(rename = "healthy"))] pub healthy: u8, /// GNSS signal identifier - #[cfg_attr(feature = "serde", serde(rename(serialize = "sid")))] + #[cfg_attr(feature = "serde", serde(rename = "sid"))] pub sid: GnssSignalDep, /// Issue of ephemeris data - #[cfg_attr(feature = "serde", serde(rename(serialize = "iode")))] + #[cfg_attr(feature = "serde", serde(rename = "iode"))] pub iode: u8, /// Issue of clock data - #[cfg_attr(feature = "serde", serde(rename(serialize = "iodc")))] + #[cfg_attr(feature = "serde", serde(rename = "iodc"))] pub iodc: u16, /// Reserved field - #[cfg_attr(feature = "serde", serde(rename(serialize = "reserved")))] + #[cfg_attr(feature = "serde", serde(rename = "reserved"))] pub reserved: u32, } @@ -2393,102 +2393,102 @@ pub mod msg_ephemeris_dep_d { /// Please see the Navstar GPS Space Segment/Navigation user interfaces (ICD- /// GPS-200, Table 20-III) for more details. /// - #[cfg_attr(feature = "serde", derive(serde::Serialize))] + #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] #[derive(Debug, PartialEq, Clone)] pub struct MsgEphemerisDepD { /// The message sender_id - #[cfg_attr(feature = "serde", serde(skip_serializing))] + #[cfg_attr(feature = "serde", serde(skip_serializing, alias = "sender"))] pub sender_id: Option, /// Group delay differential between L1 and L2 - #[cfg_attr(feature = "serde", serde(rename(serialize = "tgd")))] + #[cfg_attr(feature = "serde", serde(rename = "tgd"))] pub tgd: f64, /// Amplitude of the sine harmonic correction term to the orbit radius - #[cfg_attr(feature = "serde", serde(rename(serialize = "c_rs")))] + #[cfg_attr(feature = "serde", serde(rename = "c_rs"))] pub c_rs: f64, /// Amplitude of the cosine harmonic correction term to the orbit radius - #[cfg_attr(feature = "serde", serde(rename(serialize = "c_rc")))] + #[cfg_attr(feature = "serde", serde(rename = "c_rc"))] pub c_rc: f64, /// Amplitude of the cosine harmonic correction term to the argument of /// latitude - #[cfg_attr(feature = "serde", serde(rename(serialize = "c_uc")))] + #[cfg_attr(feature = "serde", serde(rename = "c_uc"))] pub c_uc: f64, /// Amplitude of the sine harmonic correction term to the argument of /// latitude - #[cfg_attr(feature = "serde", serde(rename(serialize = "c_us")))] + #[cfg_attr(feature = "serde", serde(rename = "c_us"))] pub c_us: f64, /// Amplitude of the cosine harmonic correction term to the angle of /// inclination - #[cfg_attr(feature = "serde", serde(rename(serialize = "c_ic")))] + #[cfg_attr(feature = "serde", serde(rename = "c_ic"))] pub c_ic: f64, /// Amplitude of the sine harmonic correction term to the angle of /// inclination - #[cfg_attr(feature = "serde", serde(rename(serialize = "c_is")))] + #[cfg_attr(feature = "serde", serde(rename = "c_is"))] pub c_is: f64, /// Mean motion difference - #[cfg_attr(feature = "serde", serde(rename(serialize = "dn")))] + #[cfg_attr(feature = "serde", serde(rename = "dn"))] pub dn: f64, /// Mean anomaly at reference time - #[cfg_attr(feature = "serde", serde(rename(serialize = "m0")))] + #[cfg_attr(feature = "serde", serde(rename = "m0"))] pub m0: f64, /// Eccentricity of satellite orbit - #[cfg_attr(feature = "serde", serde(rename(serialize = "ecc")))] + #[cfg_attr(feature = "serde", serde(rename = "ecc"))] pub ecc: f64, /// Square root of the semi-major axis of orbit - #[cfg_attr(feature = "serde", serde(rename(serialize = "sqrta")))] + #[cfg_attr(feature = "serde", serde(rename = "sqrta"))] pub sqrta: f64, /// Longitude of ascending node of orbit plane at weekly epoch - #[cfg_attr(feature = "serde", serde(rename(serialize = "omega0")))] + #[cfg_attr(feature = "serde", serde(rename = "omega0"))] pub omega0: f64, /// Rate of right ascension - #[cfg_attr(feature = "serde", serde(rename(serialize = "omegadot")))] + #[cfg_attr(feature = "serde", serde(rename = "omegadot"))] pub omegadot: f64, /// Argument of perigee - #[cfg_attr(feature = "serde", serde(rename(serialize = "w")))] + #[cfg_attr(feature = "serde", serde(rename = "w"))] pub w: f64, /// Inclination - #[cfg_attr(feature = "serde", serde(rename(serialize = "inc")))] + #[cfg_attr(feature = "serde", serde(rename = "inc"))] pub inc: f64, /// Inclination first derivative - #[cfg_attr(feature = "serde", serde(rename(serialize = "inc_dot")))] + #[cfg_attr(feature = "serde", serde(rename = "inc_dot"))] pub inc_dot: f64, /// Polynomial clock correction coefficient (clock bias) - #[cfg_attr(feature = "serde", serde(rename(serialize = "af0")))] + #[cfg_attr(feature = "serde", serde(rename = "af0"))] pub af0: f64, /// Polynomial clock correction coefficient (clock drift) - #[cfg_attr(feature = "serde", serde(rename(serialize = "af1")))] + #[cfg_attr(feature = "serde", serde(rename = "af1"))] pub af1: f64, /// Polynomial clock correction coefficient (rate of clock drift) - #[cfg_attr(feature = "serde", serde(rename(serialize = "af2")))] + #[cfg_attr(feature = "serde", serde(rename = "af2"))] pub af2: f64, /// Time of week - #[cfg_attr(feature = "serde", serde(rename(serialize = "toe_tow")))] + #[cfg_attr(feature = "serde", serde(rename = "toe_tow"))] pub toe_tow: f64, /// Week number - #[cfg_attr(feature = "serde", serde(rename(serialize = "toe_wn")))] + #[cfg_attr(feature = "serde", serde(rename = "toe_wn"))] pub toe_wn: u16, /// Clock reference time of week - #[cfg_attr(feature = "serde", serde(rename(serialize = "toc_tow")))] + #[cfg_attr(feature = "serde", serde(rename = "toc_tow"))] pub toc_tow: f64, /// Clock reference week number - #[cfg_attr(feature = "serde", serde(rename(serialize = "toc_wn")))] + #[cfg_attr(feature = "serde", serde(rename = "toc_wn"))] pub toc_wn: u16, /// Is valid? - #[cfg_attr(feature = "serde", serde(rename(serialize = "valid")))] + #[cfg_attr(feature = "serde", serde(rename = "valid"))] pub valid: u8, /// Satellite is healthy? - #[cfg_attr(feature = "serde", serde(rename(serialize = "healthy")))] + #[cfg_attr(feature = "serde", serde(rename = "healthy"))] pub healthy: u8, /// GNSS signal identifier - #[cfg_attr(feature = "serde", serde(rename(serialize = "sid")))] + #[cfg_attr(feature = "serde", serde(rename = "sid"))] pub sid: GnssSignalDep, /// Issue of ephemeris data - #[cfg_attr(feature = "serde", serde(rename(serialize = "iode")))] + #[cfg_attr(feature = "serde", serde(rename = "iode"))] pub iode: u8, /// Issue of clock data - #[cfg_attr(feature = "serde", serde(rename(serialize = "iodc")))] + #[cfg_attr(feature = "serde", serde(rename = "iodc"))] pub iodc: u16, /// Reserved field - #[cfg_attr(feature = "serde", serde(rename(serialize = "reserved")))] + #[cfg_attr(feature = "serde", serde(rename = "reserved"))] pub reserved: u32, } @@ -2668,90 +2668,90 @@ pub mod msg_ephemeris_gal { /// Please see the Signal In Space ICD OS SIS ICD, Issue 1.3, December 2016 /// for more details. /// - #[cfg_attr(feature = "serde", derive(serde::Serialize))] + #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] #[derive(Debug, PartialEq, Clone)] pub struct MsgEphemerisGal { /// The message sender_id - #[cfg_attr(feature = "serde", serde(skip_serializing))] + #[cfg_attr(feature = "serde", serde(skip_serializing, alias = "sender"))] pub sender_id: Option, /// Values common for all ephemeris types - #[cfg_attr(feature = "serde", serde(rename(serialize = "common")))] + #[cfg_attr(feature = "serde", serde(rename = "common"))] pub common: EphemerisCommonContent, /// E1-E5a Broadcast Group Delay - #[cfg_attr(feature = "serde", serde(rename(serialize = "bgd_e1e5a")))] + #[cfg_attr(feature = "serde", serde(rename = "bgd_e1e5a"))] pub bgd_e1e5a: f32, /// E1-E5b Broadcast Group Delay - #[cfg_attr(feature = "serde", serde(rename(serialize = "bgd_e1e5b")))] + #[cfg_attr(feature = "serde", serde(rename = "bgd_e1e5b"))] pub bgd_e1e5b: f32, /// Amplitude of the sine harmonic correction term to the orbit radius - #[cfg_attr(feature = "serde", serde(rename(serialize = "c_rs")))] + #[cfg_attr(feature = "serde", serde(rename = "c_rs"))] pub c_rs: f32, /// Amplitude of the cosine harmonic correction term to the orbit radius - #[cfg_attr(feature = "serde", serde(rename(serialize = "c_rc")))] + #[cfg_attr(feature = "serde", serde(rename = "c_rc"))] pub c_rc: f32, /// Amplitude of the cosine harmonic correction term to the argument of /// latitude - #[cfg_attr(feature = "serde", serde(rename(serialize = "c_uc")))] + #[cfg_attr(feature = "serde", serde(rename = "c_uc"))] pub c_uc: f32, /// Amplitude of the sine harmonic correction term to the argument of /// latitude - #[cfg_attr(feature = "serde", serde(rename(serialize = "c_us")))] + #[cfg_attr(feature = "serde", serde(rename = "c_us"))] pub c_us: f32, /// Amplitude of the cosine harmonic correction term to the angle of /// inclination - #[cfg_attr(feature = "serde", serde(rename(serialize = "c_ic")))] + #[cfg_attr(feature = "serde", serde(rename = "c_ic"))] pub c_ic: f32, /// Amplitude of the sine harmonic correction term to the angle of /// inclination - #[cfg_attr(feature = "serde", serde(rename(serialize = "c_is")))] + #[cfg_attr(feature = "serde", serde(rename = "c_is"))] pub c_is: f32, /// Mean motion difference - #[cfg_attr(feature = "serde", serde(rename(serialize = "dn")))] + #[cfg_attr(feature = "serde", serde(rename = "dn"))] pub dn: f64, /// Mean anomaly at reference time - #[cfg_attr(feature = "serde", serde(rename(serialize = "m0")))] + #[cfg_attr(feature = "serde", serde(rename = "m0"))] pub m0: f64, /// Eccentricity of satellite orbit - #[cfg_attr(feature = "serde", serde(rename(serialize = "ecc")))] + #[cfg_attr(feature = "serde", serde(rename = "ecc"))] pub ecc: f64, /// Square root of the semi-major axis of orbit - #[cfg_attr(feature = "serde", serde(rename(serialize = "sqrta")))] + #[cfg_attr(feature = "serde", serde(rename = "sqrta"))] pub sqrta: f64, /// Longitude of ascending node of orbit plane at weekly epoch - #[cfg_attr(feature = "serde", serde(rename(serialize = "omega0")))] + #[cfg_attr(feature = "serde", serde(rename = "omega0"))] pub omega0: f64, /// Rate of right ascension - #[cfg_attr(feature = "serde", serde(rename(serialize = "omegadot")))] + #[cfg_attr(feature = "serde", serde(rename = "omegadot"))] pub omegadot: f64, /// Argument of perigee - #[cfg_attr(feature = "serde", serde(rename(serialize = "w")))] + #[cfg_attr(feature = "serde", serde(rename = "w"))] pub w: f64, /// Inclination - #[cfg_attr(feature = "serde", serde(rename(serialize = "inc")))] + #[cfg_attr(feature = "serde", serde(rename = "inc"))] pub inc: f64, /// Inclination first derivative - #[cfg_attr(feature = "serde", serde(rename(serialize = "inc_dot")))] + #[cfg_attr(feature = "serde", serde(rename = "inc_dot"))] pub inc_dot: f64, /// Polynomial clock correction coefficient (clock bias) - #[cfg_attr(feature = "serde", serde(rename(serialize = "af0")))] + #[cfg_attr(feature = "serde", serde(rename = "af0"))] pub af0: f64, /// Polynomial clock correction coefficient (clock drift) - #[cfg_attr(feature = "serde", serde(rename(serialize = "af1")))] + #[cfg_attr(feature = "serde", serde(rename = "af1"))] pub af1: f64, /// Polynomial clock correction coefficient (rate of clock drift) - #[cfg_attr(feature = "serde", serde(rename(serialize = "af2")))] + #[cfg_attr(feature = "serde", serde(rename = "af2"))] pub af2: f32, /// Clock reference - #[cfg_attr(feature = "serde", serde(rename(serialize = "toc")))] + #[cfg_attr(feature = "serde", serde(rename = "toc"))] pub toc: GpsTimeSec, /// Issue of data (IODnav) - #[cfg_attr(feature = "serde", serde(rename(serialize = "iode")))] + #[cfg_attr(feature = "serde", serde(rename = "iode"))] pub iode: u16, /// Issue of data (IODnav). Always equal to iode - #[cfg_attr(feature = "serde", serde(rename(serialize = "iodc")))] + #[cfg_attr(feature = "serde", serde(rename = "iodc"))] pub iodc: u16, /// 0=I/NAV, 1=F/NAV - #[cfg_attr(feature = "serde", serde(rename(serialize = "source")))] + #[cfg_attr(feature = "serde", serde(rename = "source"))] pub source: u8, } @@ -2913,87 +2913,87 @@ pub mod msg_ephemeris_gal_dep_a { /// This observation message has been deprecated in favor of an ephemeris /// message with explicit source of NAV data. /// - #[cfg_attr(feature = "serde", derive(serde::Serialize))] + #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] #[derive(Debug, PartialEq, Clone)] pub struct MsgEphemerisGalDepA { /// The message sender_id - #[cfg_attr(feature = "serde", serde(skip_serializing))] + #[cfg_attr(feature = "serde", serde(skip_serializing, alias = "sender"))] pub sender_id: Option, /// Values common for all ephemeris types - #[cfg_attr(feature = "serde", serde(rename(serialize = "common")))] + #[cfg_attr(feature = "serde", serde(rename = "common"))] pub common: EphemerisCommonContent, /// E1-E5a Broadcast Group Delay - #[cfg_attr(feature = "serde", serde(rename(serialize = "bgd_e1e5a")))] + #[cfg_attr(feature = "serde", serde(rename = "bgd_e1e5a"))] pub bgd_e1e5a: f32, /// E1-E5b Broadcast Group Delay - #[cfg_attr(feature = "serde", serde(rename(serialize = "bgd_e1e5b")))] + #[cfg_attr(feature = "serde", serde(rename = "bgd_e1e5b"))] pub bgd_e1e5b: f32, /// Amplitude of the sine harmonic correction term to the orbit radius - #[cfg_attr(feature = "serde", serde(rename(serialize = "c_rs")))] + #[cfg_attr(feature = "serde", serde(rename = "c_rs"))] pub c_rs: f32, /// Amplitude of the cosine harmonic correction term to the orbit radius - #[cfg_attr(feature = "serde", serde(rename(serialize = "c_rc")))] + #[cfg_attr(feature = "serde", serde(rename = "c_rc"))] pub c_rc: f32, /// Amplitude of the cosine harmonic correction term to the argument of /// latitude - #[cfg_attr(feature = "serde", serde(rename(serialize = "c_uc")))] + #[cfg_attr(feature = "serde", serde(rename = "c_uc"))] pub c_uc: f32, /// Amplitude of the sine harmonic correction term to the argument of /// latitude - #[cfg_attr(feature = "serde", serde(rename(serialize = "c_us")))] + #[cfg_attr(feature = "serde", serde(rename = "c_us"))] pub c_us: f32, /// Amplitude of the cosine harmonic correction term to the angle of /// inclination - #[cfg_attr(feature = "serde", serde(rename(serialize = "c_ic")))] + #[cfg_attr(feature = "serde", serde(rename = "c_ic"))] pub c_ic: f32, /// Amplitude of the sine harmonic correction term to the angle of /// inclination - #[cfg_attr(feature = "serde", serde(rename(serialize = "c_is")))] + #[cfg_attr(feature = "serde", serde(rename = "c_is"))] pub c_is: f32, /// Mean motion difference - #[cfg_attr(feature = "serde", serde(rename(serialize = "dn")))] + #[cfg_attr(feature = "serde", serde(rename = "dn"))] pub dn: f64, /// Mean anomaly at reference time - #[cfg_attr(feature = "serde", serde(rename(serialize = "m0")))] + #[cfg_attr(feature = "serde", serde(rename = "m0"))] pub m0: f64, /// Eccentricity of satellite orbit - #[cfg_attr(feature = "serde", serde(rename(serialize = "ecc")))] + #[cfg_attr(feature = "serde", serde(rename = "ecc"))] pub ecc: f64, /// Square root of the semi-major axis of orbit - #[cfg_attr(feature = "serde", serde(rename(serialize = "sqrta")))] + #[cfg_attr(feature = "serde", serde(rename = "sqrta"))] pub sqrta: f64, /// Longitude of ascending node of orbit plane at weekly epoch - #[cfg_attr(feature = "serde", serde(rename(serialize = "omega0")))] + #[cfg_attr(feature = "serde", serde(rename = "omega0"))] pub omega0: f64, /// Rate of right ascension - #[cfg_attr(feature = "serde", serde(rename(serialize = "omegadot")))] + #[cfg_attr(feature = "serde", serde(rename = "omegadot"))] pub omegadot: f64, /// Argument of perigee - #[cfg_attr(feature = "serde", serde(rename(serialize = "w")))] + #[cfg_attr(feature = "serde", serde(rename = "w"))] pub w: f64, /// Inclination - #[cfg_attr(feature = "serde", serde(rename(serialize = "inc")))] + #[cfg_attr(feature = "serde", serde(rename = "inc"))] pub inc: f64, /// Inclination first derivative - #[cfg_attr(feature = "serde", serde(rename(serialize = "inc_dot")))] + #[cfg_attr(feature = "serde", serde(rename = "inc_dot"))] pub inc_dot: f64, /// Polynomial clock correction coefficient (clock bias) - #[cfg_attr(feature = "serde", serde(rename(serialize = "af0")))] + #[cfg_attr(feature = "serde", serde(rename = "af0"))] pub af0: f64, /// Polynomial clock correction coefficient (clock drift) - #[cfg_attr(feature = "serde", serde(rename(serialize = "af1")))] + #[cfg_attr(feature = "serde", serde(rename = "af1"))] pub af1: f64, /// Polynomial clock correction coefficient (rate of clock drift) - #[cfg_attr(feature = "serde", serde(rename(serialize = "af2")))] + #[cfg_attr(feature = "serde", serde(rename = "af2"))] pub af2: f32, /// Clock reference - #[cfg_attr(feature = "serde", serde(rename(serialize = "toc")))] + #[cfg_attr(feature = "serde", serde(rename = "toc"))] pub toc: GpsTimeSec, /// Issue of data (IODnav) - #[cfg_attr(feature = "serde", serde(rename(serialize = "iode")))] + #[cfg_attr(feature = "serde", serde(rename = "iode"))] pub iode: u16, /// Issue of data (IODnav). Always equal to iode - #[cfg_attr(feature = "serde", serde(rename(serialize = "iodc")))] + #[cfg_attr(feature = "serde", serde(rename = "iodc"))] pub iodc: u16, } @@ -3153,38 +3153,38 @@ pub mod msg_ephemeris_glo { /// Please see the GLO ICD 5.1 "Table 4.5 Characteristics of words of /// immediate information (ephemeris parameters)" for more details. /// - #[cfg_attr(feature = "serde", derive(serde::Serialize))] + #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] #[derive(Debug, PartialEq, Clone)] pub struct MsgEphemerisGlo { /// The message sender_id - #[cfg_attr(feature = "serde", serde(skip_serializing))] + #[cfg_attr(feature = "serde", serde(skip_serializing, alias = "sender"))] pub sender_id: Option, /// Values common for all ephemeris types - #[cfg_attr(feature = "serde", serde(rename(serialize = "common")))] + #[cfg_attr(feature = "serde", serde(rename = "common"))] pub common: EphemerisCommonContent, /// Relative deviation of predicted carrier frequency from nominal - #[cfg_attr(feature = "serde", serde(rename(serialize = "gamma")))] + #[cfg_attr(feature = "serde", serde(rename = "gamma"))] pub gamma: f32, /// Correction to the SV time - #[cfg_attr(feature = "serde", serde(rename(serialize = "tau")))] + #[cfg_attr(feature = "serde", serde(rename = "tau"))] pub tau: f32, /// Equipment delay between L1 and L2 - #[cfg_attr(feature = "serde", serde(rename(serialize = "d_tau")))] + #[cfg_attr(feature = "serde", serde(rename = "d_tau"))] pub d_tau: f32, /// Position of the SV at tb in PZ-90.02 coordinates system - #[cfg_attr(feature = "serde", serde(rename(serialize = "pos")))] + #[cfg_attr(feature = "serde", serde(rename = "pos"))] pub pos: [f64; 3], /// Velocity vector of the SV at tb in PZ-90.02 coordinates system - #[cfg_attr(feature = "serde", serde(rename(serialize = "vel")))] + #[cfg_attr(feature = "serde", serde(rename = "vel"))] pub vel: [f64; 3], /// Acceleration vector of the SV at tb in PZ-90.02 coordinates sys - #[cfg_attr(feature = "serde", serde(rename(serialize = "acc")))] + #[cfg_attr(feature = "serde", serde(rename = "acc"))] pub acc: [f32; 3], /// Frequency slot. FCN+8 (that is \[1..14\]). 0 or 0xFF for invalid - #[cfg_attr(feature = "serde", serde(rename(serialize = "fcn")))] + #[cfg_attr(feature = "serde", serde(rename = "fcn"))] pub fcn: u8, /// Issue of data. Equal to the 7 bits of the immediate data word t_b - #[cfg_attr(feature = "serde", serde(rename(serialize = "iod")))] + #[cfg_attr(feature = "serde", serde(rename = "iod"))] pub iod: u8, } @@ -3284,29 +3284,29 @@ pub mod msg_ephemeris_glo_dep_a { /// Please see the GLO ICD 5.1 "Table 4.5 Characteristics of words of /// immediate information (ephemeris parameters)" for more details. /// - #[cfg_attr(feature = "serde", derive(serde::Serialize))] + #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] #[derive(Debug, PartialEq, Clone)] pub struct MsgEphemerisGloDepA { /// The message sender_id - #[cfg_attr(feature = "serde", serde(skip_serializing))] + #[cfg_attr(feature = "serde", serde(skip_serializing, alias = "sender"))] pub sender_id: Option, /// Values common for all ephemeris types - #[cfg_attr(feature = "serde", serde(rename(serialize = "common")))] + #[cfg_attr(feature = "serde", serde(rename = "common"))] pub common: EphemerisCommonContentDepA, /// Relative deviation of predicted carrier frequency from nominal - #[cfg_attr(feature = "serde", serde(rename(serialize = "gamma")))] + #[cfg_attr(feature = "serde", serde(rename = "gamma"))] pub gamma: f64, /// Correction to the SV time - #[cfg_attr(feature = "serde", serde(rename(serialize = "tau")))] + #[cfg_attr(feature = "serde", serde(rename = "tau"))] pub tau: f64, /// Position of the SV at tb in PZ-90.02 coordinates system - #[cfg_attr(feature = "serde", serde(rename(serialize = "pos")))] + #[cfg_attr(feature = "serde", serde(rename = "pos"))] pub pos: [f64; 3], /// Velocity vector of the SV at tb in PZ-90.02 coordinates system - #[cfg_attr(feature = "serde", serde(rename(serialize = "vel")))] + #[cfg_attr(feature = "serde", serde(rename = "vel"))] pub vel: [f64; 3], /// Acceleration vector of the SV at tb in PZ-90.02 coordinates sys - #[cfg_attr(feature = "serde", serde(rename(serialize = "acc")))] + #[cfg_attr(feature = "serde", serde(rename = "acc"))] pub acc: [f64; 3], } @@ -3394,29 +3394,29 @@ pub mod msg_ephemeris_glo_dep_b { /// Please see the GLO ICD 5.1 "Table 4.5 Characteristics of words of /// immediate information (ephemeris parameters)" for more details. /// - #[cfg_attr(feature = "serde", derive(serde::Serialize))] + #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] #[derive(Debug, PartialEq, Clone)] pub struct MsgEphemerisGloDepB { /// The message sender_id - #[cfg_attr(feature = "serde", serde(skip_serializing))] + #[cfg_attr(feature = "serde", serde(skip_serializing, alias = "sender"))] pub sender_id: Option, /// Values common for all ephemeris types - #[cfg_attr(feature = "serde", serde(rename(serialize = "common")))] + #[cfg_attr(feature = "serde", serde(rename = "common"))] pub common: EphemerisCommonContentDepB, /// Relative deviation of predicted carrier frequency from nominal - #[cfg_attr(feature = "serde", serde(rename(serialize = "gamma")))] + #[cfg_attr(feature = "serde", serde(rename = "gamma"))] pub gamma: f64, /// Correction to the SV time - #[cfg_attr(feature = "serde", serde(rename(serialize = "tau")))] + #[cfg_attr(feature = "serde", serde(rename = "tau"))] pub tau: f64, /// Position of the SV at tb in PZ-90.02 coordinates system - #[cfg_attr(feature = "serde", serde(rename(serialize = "pos")))] + #[cfg_attr(feature = "serde", serde(rename = "pos"))] pub pos: [f64; 3], /// Velocity vector of the SV at tb in PZ-90.02 coordinates system - #[cfg_attr(feature = "serde", serde(rename(serialize = "vel")))] + #[cfg_attr(feature = "serde", serde(rename = "vel"))] pub vel: [f64; 3], /// Acceleration vector of the SV at tb in PZ-90.02 coordinates sys - #[cfg_attr(feature = "serde", serde(rename(serialize = "acc")))] + #[cfg_attr(feature = "serde", serde(rename = "acc"))] pub acc: [f64; 3], } @@ -3504,35 +3504,35 @@ pub mod msg_ephemeris_glo_dep_c { /// Please see the GLO ICD 5.1 "Table 4.5 Characteristics of words of /// immediate information (ephemeris parameters)" for more details. /// - #[cfg_attr(feature = "serde", derive(serde::Serialize))] + #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] #[derive(Debug, PartialEq, Clone)] pub struct MsgEphemerisGloDepC { /// The message sender_id - #[cfg_attr(feature = "serde", serde(skip_serializing))] + #[cfg_attr(feature = "serde", serde(skip_serializing, alias = "sender"))] pub sender_id: Option, /// Values common for all ephemeris types - #[cfg_attr(feature = "serde", serde(rename(serialize = "common")))] + #[cfg_attr(feature = "serde", serde(rename = "common"))] pub common: EphemerisCommonContentDepB, /// Relative deviation of predicted carrier frequency from nominal - #[cfg_attr(feature = "serde", serde(rename(serialize = "gamma")))] + #[cfg_attr(feature = "serde", serde(rename = "gamma"))] pub gamma: f64, /// Correction to the SV time - #[cfg_attr(feature = "serde", serde(rename(serialize = "tau")))] + #[cfg_attr(feature = "serde", serde(rename = "tau"))] pub tau: f64, /// Equipment delay between L1 and L2 - #[cfg_attr(feature = "serde", serde(rename(serialize = "d_tau")))] + #[cfg_attr(feature = "serde", serde(rename = "d_tau"))] pub d_tau: f64, /// Position of the SV at tb in PZ-90.02 coordinates system - #[cfg_attr(feature = "serde", serde(rename(serialize = "pos")))] + #[cfg_attr(feature = "serde", serde(rename = "pos"))] pub pos: [f64; 3], /// Velocity vector of the SV at tb in PZ-90.02 coordinates system - #[cfg_attr(feature = "serde", serde(rename(serialize = "vel")))] + #[cfg_attr(feature = "serde", serde(rename = "vel"))] pub vel: [f64; 3], /// Acceleration vector of the SV at tb in PZ-90.02 coordinates sys - #[cfg_attr(feature = "serde", serde(rename(serialize = "acc")))] + #[cfg_attr(feature = "serde", serde(rename = "acc"))] pub acc: [f64; 3], /// Frequency slot. FCN+8 (that is \[1..14\]). 0 or 0xFF for invalid - #[cfg_attr(feature = "serde", serde(rename(serialize = "fcn")))] + #[cfg_attr(feature = "serde", serde(rename = "fcn"))] pub fcn: u8, } @@ -3626,38 +3626,38 @@ pub mod msg_ephemeris_glo_dep_d { /// This observation message has been deprecated in favor of ephemeris message /// using floats for size reduction. /// - #[cfg_attr(feature = "serde", derive(serde::Serialize))] + #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] #[derive(Debug, PartialEq, Clone)] pub struct MsgEphemerisGloDepD { /// The message sender_id - #[cfg_attr(feature = "serde", serde(skip_serializing))] + #[cfg_attr(feature = "serde", serde(skip_serializing, alias = "sender"))] pub sender_id: Option, /// Values common for all ephemeris types - #[cfg_attr(feature = "serde", serde(rename(serialize = "common")))] + #[cfg_attr(feature = "serde", serde(rename = "common"))] pub common: EphemerisCommonContentDepB, /// Relative deviation of predicted carrier frequency from nominal - #[cfg_attr(feature = "serde", serde(rename(serialize = "gamma")))] + #[cfg_attr(feature = "serde", serde(rename = "gamma"))] pub gamma: f64, /// Correction to the SV time - #[cfg_attr(feature = "serde", serde(rename(serialize = "tau")))] + #[cfg_attr(feature = "serde", serde(rename = "tau"))] pub tau: f64, /// Equipment delay between L1 and L2 - #[cfg_attr(feature = "serde", serde(rename(serialize = "d_tau")))] + #[cfg_attr(feature = "serde", serde(rename = "d_tau"))] pub d_tau: f64, /// Position of the SV at tb in PZ-90.02 coordinates system - #[cfg_attr(feature = "serde", serde(rename(serialize = "pos")))] + #[cfg_attr(feature = "serde", serde(rename = "pos"))] pub pos: [f64; 3], /// Velocity vector of the SV at tb in PZ-90.02 coordinates system - #[cfg_attr(feature = "serde", serde(rename(serialize = "vel")))] + #[cfg_attr(feature = "serde", serde(rename = "vel"))] pub vel: [f64; 3], /// Acceleration vector of the SV at tb in PZ-90.02 coordinates sys - #[cfg_attr(feature = "serde", serde(rename(serialize = "acc")))] + #[cfg_attr(feature = "serde", serde(rename = "acc"))] pub acc: [f64; 3], /// Frequency slot. FCN+8 (that is \[1..14\]). 0 or 0xFF for invalid - #[cfg_attr(feature = "serde", serde(rename(serialize = "fcn")))] + #[cfg_attr(feature = "serde", serde(rename = "fcn"))] pub fcn: u8, /// Issue of data. Equal to the 7 bits of the immediate data word t_b - #[cfg_attr(feature = "serde", serde(rename(serialize = "iod")))] + #[cfg_attr(feature = "serde", serde(rename = "iod"))] pub iod: u8, } @@ -3757,84 +3757,84 @@ pub mod msg_ephemeris_gps { /// Please see the Navstar GPS Space Segment/Navigation user interfaces (ICD- /// GPS-200, Table 20-III) for more details. /// - #[cfg_attr(feature = "serde", derive(serde::Serialize))] + #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] #[derive(Debug, PartialEq, Clone)] pub struct MsgEphemerisGps { /// The message sender_id - #[cfg_attr(feature = "serde", serde(skip_serializing))] + #[cfg_attr(feature = "serde", serde(skip_serializing, alias = "sender"))] pub sender_id: Option, /// Values common for all ephemeris types - #[cfg_attr(feature = "serde", serde(rename(serialize = "common")))] + #[cfg_attr(feature = "serde", serde(rename = "common"))] pub common: EphemerisCommonContent, /// Group delay differential between L1 and L2 - #[cfg_attr(feature = "serde", serde(rename(serialize = "tgd")))] + #[cfg_attr(feature = "serde", serde(rename = "tgd"))] pub tgd: f32, /// Amplitude of the sine harmonic correction term to the orbit radius - #[cfg_attr(feature = "serde", serde(rename(serialize = "c_rs")))] + #[cfg_attr(feature = "serde", serde(rename = "c_rs"))] pub c_rs: f32, /// Amplitude of the cosine harmonic correction term to the orbit radius - #[cfg_attr(feature = "serde", serde(rename(serialize = "c_rc")))] + #[cfg_attr(feature = "serde", serde(rename = "c_rc"))] pub c_rc: f32, /// Amplitude of the cosine harmonic correction term to the argument of /// latitude - #[cfg_attr(feature = "serde", serde(rename(serialize = "c_uc")))] + #[cfg_attr(feature = "serde", serde(rename = "c_uc"))] pub c_uc: f32, /// Amplitude of the sine harmonic correction term to the argument of /// latitude - #[cfg_attr(feature = "serde", serde(rename(serialize = "c_us")))] + #[cfg_attr(feature = "serde", serde(rename = "c_us"))] pub c_us: f32, /// Amplitude of the cosine harmonic correction term to the angle of /// inclination - #[cfg_attr(feature = "serde", serde(rename(serialize = "c_ic")))] + #[cfg_attr(feature = "serde", serde(rename = "c_ic"))] pub c_ic: f32, /// Amplitude of the sine harmonic correction term to the angle of /// inclination - #[cfg_attr(feature = "serde", serde(rename(serialize = "c_is")))] + #[cfg_attr(feature = "serde", serde(rename = "c_is"))] pub c_is: f32, /// Mean motion difference - #[cfg_attr(feature = "serde", serde(rename(serialize = "dn")))] + #[cfg_attr(feature = "serde", serde(rename = "dn"))] pub dn: f64, /// Mean anomaly at reference time - #[cfg_attr(feature = "serde", serde(rename(serialize = "m0")))] + #[cfg_attr(feature = "serde", serde(rename = "m0"))] pub m0: f64, /// Eccentricity of satellite orbit - #[cfg_attr(feature = "serde", serde(rename(serialize = "ecc")))] + #[cfg_attr(feature = "serde", serde(rename = "ecc"))] pub ecc: f64, /// Square root of the semi-major axis of orbit - #[cfg_attr(feature = "serde", serde(rename(serialize = "sqrta")))] + #[cfg_attr(feature = "serde", serde(rename = "sqrta"))] pub sqrta: f64, /// Longitude of ascending node of orbit plane at weekly epoch - #[cfg_attr(feature = "serde", serde(rename(serialize = "omega0")))] + #[cfg_attr(feature = "serde", serde(rename = "omega0"))] pub omega0: f64, /// Rate of right ascension - #[cfg_attr(feature = "serde", serde(rename(serialize = "omegadot")))] + #[cfg_attr(feature = "serde", serde(rename = "omegadot"))] pub omegadot: f64, /// Argument of perigee - #[cfg_attr(feature = "serde", serde(rename(serialize = "w")))] + #[cfg_attr(feature = "serde", serde(rename = "w"))] pub w: f64, /// Inclination - #[cfg_attr(feature = "serde", serde(rename(serialize = "inc")))] + #[cfg_attr(feature = "serde", serde(rename = "inc"))] pub inc: f64, /// Inclination first derivative - #[cfg_attr(feature = "serde", serde(rename(serialize = "inc_dot")))] + #[cfg_attr(feature = "serde", serde(rename = "inc_dot"))] pub inc_dot: f64, /// Polynomial clock correction coefficient (clock bias) - #[cfg_attr(feature = "serde", serde(rename(serialize = "af0")))] + #[cfg_attr(feature = "serde", serde(rename = "af0"))] pub af0: f32, /// Polynomial clock correction coefficient (clock drift) - #[cfg_attr(feature = "serde", serde(rename(serialize = "af1")))] + #[cfg_attr(feature = "serde", serde(rename = "af1"))] pub af1: f32, /// Polynomial clock correction coefficient (rate of clock drift) - #[cfg_attr(feature = "serde", serde(rename(serialize = "af2")))] + #[cfg_attr(feature = "serde", serde(rename = "af2"))] pub af2: f32, /// Clock reference - #[cfg_attr(feature = "serde", serde(rename(serialize = "toc")))] + #[cfg_attr(feature = "serde", serde(rename = "toc"))] pub toc: GpsTimeSec, /// Issue of ephemeris data - #[cfg_attr(feature = "serde", serde(rename(serialize = "iode")))] + #[cfg_attr(feature = "serde", serde(rename = "iode"))] pub iode: u8, /// Issue of clock data - #[cfg_attr(feature = "serde", serde(rename(serialize = "iodc")))] + #[cfg_attr(feature = "serde", serde(rename = "iodc"))] pub iodc: u16, } @@ -3990,84 +3990,84 @@ pub mod msg_ephemeris_gps_dep_e { /// Please see the Navstar GPS Space Segment/Navigation user interfaces (ICD- /// GPS-200, Table 20-III) for more details. /// - #[cfg_attr(feature = "serde", derive(serde::Serialize))] + #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] #[derive(Debug, PartialEq, Clone)] pub struct MsgEphemerisGpsDepE { /// The message sender_id - #[cfg_attr(feature = "serde", serde(skip_serializing))] + #[cfg_attr(feature = "serde", serde(skip_serializing, alias = "sender"))] pub sender_id: Option, /// Values common for all ephemeris types - #[cfg_attr(feature = "serde", serde(rename(serialize = "common")))] + #[cfg_attr(feature = "serde", serde(rename = "common"))] pub common: EphemerisCommonContentDepA, /// Group delay differential between L1 and L2 - #[cfg_attr(feature = "serde", serde(rename(serialize = "tgd")))] + #[cfg_attr(feature = "serde", serde(rename = "tgd"))] pub tgd: f64, /// Amplitude of the sine harmonic correction term to the orbit radius - #[cfg_attr(feature = "serde", serde(rename(serialize = "c_rs")))] + #[cfg_attr(feature = "serde", serde(rename = "c_rs"))] pub c_rs: f64, /// Amplitude of the cosine harmonic correction term to the orbit radius - #[cfg_attr(feature = "serde", serde(rename(serialize = "c_rc")))] + #[cfg_attr(feature = "serde", serde(rename = "c_rc"))] pub c_rc: f64, /// Amplitude of the cosine harmonic correction term to the argument of /// latitude - #[cfg_attr(feature = "serde", serde(rename(serialize = "c_uc")))] + #[cfg_attr(feature = "serde", serde(rename = "c_uc"))] pub c_uc: f64, /// Amplitude of the sine harmonic correction term to the argument of /// latitude - #[cfg_attr(feature = "serde", serde(rename(serialize = "c_us")))] + #[cfg_attr(feature = "serde", serde(rename = "c_us"))] pub c_us: f64, /// Amplitude of the cosine harmonic correction term to the angle of /// inclination - #[cfg_attr(feature = "serde", serde(rename(serialize = "c_ic")))] + #[cfg_attr(feature = "serde", serde(rename = "c_ic"))] pub c_ic: f64, /// Amplitude of the sine harmonic correction term to the angle of /// inclination - #[cfg_attr(feature = "serde", serde(rename(serialize = "c_is")))] + #[cfg_attr(feature = "serde", serde(rename = "c_is"))] pub c_is: f64, /// Mean motion difference - #[cfg_attr(feature = "serde", serde(rename(serialize = "dn")))] + #[cfg_attr(feature = "serde", serde(rename = "dn"))] pub dn: f64, /// Mean anomaly at reference time - #[cfg_attr(feature = "serde", serde(rename(serialize = "m0")))] + #[cfg_attr(feature = "serde", serde(rename = "m0"))] pub m0: f64, /// Eccentricity of satellite orbit - #[cfg_attr(feature = "serde", serde(rename(serialize = "ecc")))] + #[cfg_attr(feature = "serde", serde(rename = "ecc"))] pub ecc: f64, /// Square root of the semi-major axis of orbit - #[cfg_attr(feature = "serde", serde(rename(serialize = "sqrta")))] + #[cfg_attr(feature = "serde", serde(rename = "sqrta"))] pub sqrta: f64, /// Longitude of ascending node of orbit plane at weekly epoch - #[cfg_attr(feature = "serde", serde(rename(serialize = "omega0")))] + #[cfg_attr(feature = "serde", serde(rename = "omega0"))] pub omega0: f64, /// Rate of right ascension - #[cfg_attr(feature = "serde", serde(rename(serialize = "omegadot")))] + #[cfg_attr(feature = "serde", serde(rename = "omegadot"))] pub omegadot: f64, /// Argument of perigee - #[cfg_attr(feature = "serde", serde(rename(serialize = "w")))] + #[cfg_attr(feature = "serde", serde(rename = "w"))] pub w: f64, /// Inclination - #[cfg_attr(feature = "serde", serde(rename(serialize = "inc")))] + #[cfg_attr(feature = "serde", serde(rename = "inc"))] pub inc: f64, /// Inclination first derivative - #[cfg_attr(feature = "serde", serde(rename(serialize = "inc_dot")))] + #[cfg_attr(feature = "serde", serde(rename = "inc_dot"))] pub inc_dot: f64, /// Polynomial clock correction coefficient (clock bias) - #[cfg_attr(feature = "serde", serde(rename(serialize = "af0")))] + #[cfg_attr(feature = "serde", serde(rename = "af0"))] pub af0: f64, /// Polynomial clock correction coefficient (clock drift) - #[cfg_attr(feature = "serde", serde(rename(serialize = "af1")))] + #[cfg_attr(feature = "serde", serde(rename = "af1"))] pub af1: f64, /// Polynomial clock correction coefficient (rate of clock drift) - #[cfg_attr(feature = "serde", serde(rename(serialize = "af2")))] + #[cfg_attr(feature = "serde", serde(rename = "af2"))] pub af2: f64, /// Clock reference - #[cfg_attr(feature = "serde", serde(rename(serialize = "toc")))] + #[cfg_attr(feature = "serde", serde(rename = "toc"))] pub toc: GpsTimeDep, /// Issue of ephemeris data - #[cfg_attr(feature = "serde", serde(rename(serialize = "iode")))] + #[cfg_attr(feature = "serde", serde(rename = "iode"))] pub iode: u8, /// Issue of clock data - #[cfg_attr(feature = "serde", serde(rename(serialize = "iodc")))] + #[cfg_attr(feature = "serde", serde(rename = "iodc"))] pub iodc: u16, } @@ -4221,84 +4221,84 @@ pub mod msg_ephemeris_gps_dep_f { /// This observation message has been deprecated in favor of ephemeris message /// using floats for size reduction. /// - #[cfg_attr(feature = "serde", derive(serde::Serialize))] + #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] #[derive(Debug, PartialEq, Clone)] pub struct MsgEphemerisGpsDepF { /// The message sender_id - #[cfg_attr(feature = "serde", serde(skip_serializing))] + #[cfg_attr(feature = "serde", serde(skip_serializing, alias = "sender"))] pub sender_id: Option, /// Values common for all ephemeris types - #[cfg_attr(feature = "serde", serde(rename(serialize = "common")))] + #[cfg_attr(feature = "serde", serde(rename = "common"))] pub common: EphemerisCommonContentDepB, /// Group delay differential between L1 and L2 - #[cfg_attr(feature = "serde", serde(rename(serialize = "tgd")))] + #[cfg_attr(feature = "serde", serde(rename = "tgd"))] pub tgd: f64, /// Amplitude of the sine harmonic correction term to the orbit radius - #[cfg_attr(feature = "serde", serde(rename(serialize = "c_rs")))] + #[cfg_attr(feature = "serde", serde(rename = "c_rs"))] pub c_rs: f64, /// Amplitude of the cosine harmonic correction term to the orbit radius - #[cfg_attr(feature = "serde", serde(rename(serialize = "c_rc")))] + #[cfg_attr(feature = "serde", serde(rename = "c_rc"))] pub c_rc: f64, /// Amplitude of the cosine harmonic correction term to the argument of /// latitude - #[cfg_attr(feature = "serde", serde(rename(serialize = "c_uc")))] + #[cfg_attr(feature = "serde", serde(rename = "c_uc"))] pub c_uc: f64, /// Amplitude of the sine harmonic correction term to the argument of /// latitude - #[cfg_attr(feature = "serde", serde(rename(serialize = "c_us")))] + #[cfg_attr(feature = "serde", serde(rename = "c_us"))] pub c_us: f64, /// Amplitude of the cosine harmonic correction term to the angle of /// inclination - #[cfg_attr(feature = "serde", serde(rename(serialize = "c_ic")))] + #[cfg_attr(feature = "serde", serde(rename = "c_ic"))] pub c_ic: f64, /// Amplitude of the sine harmonic correction term to the angle of /// inclination - #[cfg_attr(feature = "serde", serde(rename(serialize = "c_is")))] + #[cfg_attr(feature = "serde", serde(rename = "c_is"))] pub c_is: f64, /// Mean motion difference - #[cfg_attr(feature = "serde", serde(rename(serialize = "dn")))] + #[cfg_attr(feature = "serde", serde(rename = "dn"))] pub dn: f64, /// Mean anomaly at reference time - #[cfg_attr(feature = "serde", serde(rename(serialize = "m0")))] + #[cfg_attr(feature = "serde", serde(rename = "m0"))] pub m0: f64, /// Eccentricity of satellite orbit - #[cfg_attr(feature = "serde", serde(rename(serialize = "ecc")))] + #[cfg_attr(feature = "serde", serde(rename = "ecc"))] pub ecc: f64, /// Square root of the semi-major axis of orbit - #[cfg_attr(feature = "serde", serde(rename(serialize = "sqrta")))] + #[cfg_attr(feature = "serde", serde(rename = "sqrta"))] pub sqrta: f64, /// Longitude of ascending node of orbit plane at weekly epoch - #[cfg_attr(feature = "serde", serde(rename(serialize = "omega0")))] + #[cfg_attr(feature = "serde", serde(rename = "omega0"))] pub omega0: f64, /// Rate of right ascension - #[cfg_attr(feature = "serde", serde(rename(serialize = "omegadot")))] + #[cfg_attr(feature = "serde", serde(rename = "omegadot"))] pub omegadot: f64, /// Argument of perigee - #[cfg_attr(feature = "serde", serde(rename(serialize = "w")))] + #[cfg_attr(feature = "serde", serde(rename = "w"))] pub w: f64, /// Inclination - #[cfg_attr(feature = "serde", serde(rename(serialize = "inc")))] + #[cfg_attr(feature = "serde", serde(rename = "inc"))] pub inc: f64, /// Inclination first derivative - #[cfg_attr(feature = "serde", serde(rename(serialize = "inc_dot")))] + #[cfg_attr(feature = "serde", serde(rename = "inc_dot"))] pub inc_dot: f64, /// Polynomial clock correction coefficient (clock bias) - #[cfg_attr(feature = "serde", serde(rename(serialize = "af0")))] + #[cfg_attr(feature = "serde", serde(rename = "af0"))] pub af0: f64, /// Polynomial clock correction coefficient (clock drift) - #[cfg_attr(feature = "serde", serde(rename(serialize = "af1")))] + #[cfg_attr(feature = "serde", serde(rename = "af1"))] pub af1: f64, /// Polynomial clock correction coefficient (rate of clock drift) - #[cfg_attr(feature = "serde", serde(rename(serialize = "af2")))] + #[cfg_attr(feature = "serde", serde(rename = "af2"))] pub af2: f64, /// Clock reference - #[cfg_attr(feature = "serde", serde(rename(serialize = "toc")))] + #[cfg_attr(feature = "serde", serde(rename = "toc"))] pub toc: GpsTimeSec, /// Issue of ephemeris data - #[cfg_attr(feature = "serde", serde(rename(serialize = "iode")))] + #[cfg_attr(feature = "serde", serde(rename = "iode"))] pub iode: u8, /// Issue of clock data - #[cfg_attr(feature = "serde", serde(rename(serialize = "iodc")))] + #[cfg_attr(feature = "serde", serde(rename = "iodc"))] pub iodc: u16, } @@ -4452,84 +4452,84 @@ pub mod msg_ephemeris_qzss { /// The ephemeris message returns a set of satellite orbit parameters that is /// used to calculate QZSS satellite position, velocity, and clock offset. /// - #[cfg_attr(feature = "serde", derive(serde::Serialize))] + #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] #[derive(Debug, PartialEq, Clone)] pub struct MsgEphemerisQzss { /// The message sender_id - #[cfg_attr(feature = "serde", serde(skip_serializing))] + #[cfg_attr(feature = "serde", serde(skip_serializing, alias = "sender"))] pub sender_id: Option, /// Values common for all ephemeris types - #[cfg_attr(feature = "serde", serde(rename(serialize = "common")))] + #[cfg_attr(feature = "serde", serde(rename = "common"))] pub common: EphemerisCommonContent, /// Group delay differential between L1 and L2 - #[cfg_attr(feature = "serde", serde(rename(serialize = "tgd")))] + #[cfg_attr(feature = "serde", serde(rename = "tgd"))] pub tgd: f32, /// Amplitude of the sine harmonic correction term to the orbit radius - #[cfg_attr(feature = "serde", serde(rename(serialize = "c_rs")))] + #[cfg_attr(feature = "serde", serde(rename = "c_rs"))] pub c_rs: f32, /// Amplitude of the cosine harmonic correction term to the orbit radius - #[cfg_attr(feature = "serde", serde(rename(serialize = "c_rc")))] + #[cfg_attr(feature = "serde", serde(rename = "c_rc"))] pub c_rc: f32, /// Amplitude of the cosine harmonic correction term to the argument of /// latitude - #[cfg_attr(feature = "serde", serde(rename(serialize = "c_uc")))] + #[cfg_attr(feature = "serde", serde(rename = "c_uc"))] pub c_uc: f32, /// Amplitude of the sine harmonic correction term to the argument of /// latitude - #[cfg_attr(feature = "serde", serde(rename(serialize = "c_us")))] + #[cfg_attr(feature = "serde", serde(rename = "c_us"))] pub c_us: f32, /// Amplitude of the cosine harmonic correction term to the angle of /// inclination - #[cfg_attr(feature = "serde", serde(rename(serialize = "c_ic")))] + #[cfg_attr(feature = "serde", serde(rename = "c_ic"))] pub c_ic: f32, /// Amplitude of the sine harmonic correction term to the angle of /// inclination - #[cfg_attr(feature = "serde", serde(rename(serialize = "c_is")))] + #[cfg_attr(feature = "serde", serde(rename = "c_is"))] pub c_is: f32, /// Mean motion difference - #[cfg_attr(feature = "serde", serde(rename(serialize = "dn")))] + #[cfg_attr(feature = "serde", serde(rename = "dn"))] pub dn: f64, /// Mean anomaly at reference time - #[cfg_attr(feature = "serde", serde(rename(serialize = "m0")))] + #[cfg_attr(feature = "serde", serde(rename = "m0"))] pub m0: f64, /// Eccentricity of satellite orbit - #[cfg_attr(feature = "serde", serde(rename(serialize = "ecc")))] + #[cfg_attr(feature = "serde", serde(rename = "ecc"))] pub ecc: f64, /// Square root of the semi-major axis of orbit - #[cfg_attr(feature = "serde", serde(rename(serialize = "sqrta")))] + #[cfg_attr(feature = "serde", serde(rename = "sqrta"))] pub sqrta: f64, /// Longitude of ascending node of orbit plane at weekly epoch - #[cfg_attr(feature = "serde", serde(rename(serialize = "omega0")))] + #[cfg_attr(feature = "serde", serde(rename = "omega0"))] pub omega0: f64, /// Rate of right ascension - #[cfg_attr(feature = "serde", serde(rename(serialize = "omegadot")))] + #[cfg_attr(feature = "serde", serde(rename = "omegadot"))] pub omegadot: f64, /// Argument of perigee - #[cfg_attr(feature = "serde", serde(rename(serialize = "w")))] + #[cfg_attr(feature = "serde", serde(rename = "w"))] pub w: f64, /// Inclination - #[cfg_attr(feature = "serde", serde(rename(serialize = "inc")))] + #[cfg_attr(feature = "serde", serde(rename = "inc"))] pub inc: f64, /// Inclination first derivative - #[cfg_attr(feature = "serde", serde(rename(serialize = "inc_dot")))] + #[cfg_attr(feature = "serde", serde(rename = "inc_dot"))] pub inc_dot: f64, /// Polynomial clock correction coefficient (clock bias) - #[cfg_attr(feature = "serde", serde(rename(serialize = "af0")))] + #[cfg_attr(feature = "serde", serde(rename = "af0"))] pub af0: f32, /// Polynomial clock correction coefficient (clock drift) - #[cfg_attr(feature = "serde", serde(rename(serialize = "af1")))] + #[cfg_attr(feature = "serde", serde(rename = "af1"))] pub af1: f32, /// Polynomial clock correction coefficient (rate of clock drift) - #[cfg_attr(feature = "serde", serde(rename(serialize = "af2")))] + #[cfg_attr(feature = "serde", serde(rename = "af2"))] pub af2: f32, /// Clock reference - #[cfg_attr(feature = "serde", serde(rename(serialize = "toc")))] + #[cfg_attr(feature = "serde", serde(rename = "toc"))] pub toc: GpsTimeSec, /// Issue of ephemeris data - #[cfg_attr(feature = "serde", serde(rename(serialize = "iode")))] + #[cfg_attr(feature = "serde", serde(rename = "iode"))] pub iode: u8, /// Issue of clock data - #[cfg_attr(feature = "serde", serde(rename(serialize = "iodc")))] + #[cfg_attr(feature = "serde", serde(rename = "iodc"))] pub iodc: u16, } @@ -4678,29 +4678,29 @@ pub mod msg_ephemeris_sbas { use crate::messages::gnss::*; use crate::messages::lib::*; /// Satellite broadcast ephemeris for SBAS - #[cfg_attr(feature = "serde", derive(serde::Serialize))] + #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] #[derive(Debug, PartialEq, Clone)] pub struct MsgEphemerisSbas { /// The message sender_id - #[cfg_attr(feature = "serde", serde(skip_serializing))] + #[cfg_attr(feature = "serde", serde(skip_serializing, alias = "sender"))] pub sender_id: Option, /// Values common for all ephemeris types - #[cfg_attr(feature = "serde", serde(rename(serialize = "common")))] + #[cfg_attr(feature = "serde", serde(rename = "common"))] pub common: EphemerisCommonContent, /// Position of the GEO at time toe - #[cfg_attr(feature = "serde", serde(rename(serialize = "pos")))] + #[cfg_attr(feature = "serde", serde(rename = "pos"))] pub pos: [f64; 3], /// Velocity of the GEO at time toe - #[cfg_attr(feature = "serde", serde(rename(serialize = "vel")))] + #[cfg_attr(feature = "serde", serde(rename = "vel"))] pub vel: [f32; 3], /// Acceleration of the GEO at time toe - #[cfg_attr(feature = "serde", serde(rename(serialize = "acc")))] + #[cfg_attr(feature = "serde", serde(rename = "acc"))] pub acc: [f32; 3], /// Time offset of the GEO clock w.r.t. SBAS Network Time - #[cfg_attr(feature = "serde", serde(rename(serialize = "a_gf0")))] + #[cfg_attr(feature = "serde", serde(rename = "a_gf0"))] pub a_gf0: f32, /// Drift of the GEO clock w.r.t. SBAS Network Time - #[cfg_attr(feature = "serde", serde(rename(serialize = "a_gf1")))] + #[cfg_attr(feature = "serde", serde(rename = "a_gf1"))] pub a_gf1: f32, } @@ -4781,29 +4781,29 @@ pub mod msg_ephemeris_sbas_dep_a { use crate::messages::gnss::*; use crate::messages::lib::*; /// Satellite broadcast ephemeris for SBAS - #[cfg_attr(feature = "serde", derive(serde::Serialize))] + #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] #[derive(Debug, PartialEq, Clone)] pub struct MsgEphemerisSbasDepA { /// The message sender_id - #[cfg_attr(feature = "serde", serde(skip_serializing))] + #[cfg_attr(feature = "serde", serde(skip_serializing, alias = "sender"))] pub sender_id: Option, /// Values common for all ephemeris types - #[cfg_attr(feature = "serde", serde(rename(serialize = "common")))] + #[cfg_attr(feature = "serde", serde(rename = "common"))] pub common: EphemerisCommonContentDepA, /// Position of the GEO at time toe - #[cfg_attr(feature = "serde", serde(rename(serialize = "pos")))] + #[cfg_attr(feature = "serde", serde(rename = "pos"))] pub pos: [f64; 3], /// Velocity of the GEO at time toe - #[cfg_attr(feature = "serde", serde(rename(serialize = "vel")))] + #[cfg_attr(feature = "serde", serde(rename = "vel"))] pub vel: [f64; 3], /// Acceleration of the GEO at time toe - #[cfg_attr(feature = "serde", serde(rename(serialize = "acc")))] + #[cfg_attr(feature = "serde", serde(rename = "acc"))] pub acc: [f64; 3], /// Time offset of the GEO clock w.r.t. SBAS Network Time - #[cfg_attr(feature = "serde", serde(rename(serialize = "a_gf0")))] + #[cfg_attr(feature = "serde", serde(rename = "a_gf0"))] pub a_gf0: f64, /// Drift of the GEO clock w.r.t. SBAS Network Time - #[cfg_attr(feature = "serde", serde(rename(serialize = "a_gf1")))] + #[cfg_attr(feature = "serde", serde(rename = "a_gf1"))] pub a_gf1: f64, } @@ -4889,29 +4889,29 @@ pub mod msg_ephemeris_sbas_dep_b { /// This observation message has been deprecated in favor of ephemeris message /// using floats for size reduction. /// - #[cfg_attr(feature = "serde", derive(serde::Serialize))] + #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] #[derive(Debug, PartialEq, Clone)] pub struct MsgEphemerisSbasDepB { /// The message sender_id - #[cfg_attr(feature = "serde", serde(skip_serializing))] + #[cfg_attr(feature = "serde", serde(skip_serializing, alias = "sender"))] pub sender_id: Option, /// Values common for all ephemeris types - #[cfg_attr(feature = "serde", serde(rename(serialize = "common")))] + #[cfg_attr(feature = "serde", serde(rename = "common"))] pub common: EphemerisCommonContentDepB, /// Position of the GEO at time toe - #[cfg_attr(feature = "serde", serde(rename(serialize = "pos")))] + #[cfg_attr(feature = "serde", serde(rename = "pos"))] pub pos: [f64; 3], /// Velocity of the GEO at time toe - #[cfg_attr(feature = "serde", serde(rename(serialize = "vel")))] + #[cfg_attr(feature = "serde", serde(rename = "vel"))] pub vel: [f64; 3], /// Acceleration of the GEO at time toe - #[cfg_attr(feature = "serde", serde(rename(serialize = "acc")))] + #[cfg_attr(feature = "serde", serde(rename = "acc"))] pub acc: [f64; 3], /// Time offset of the GEO clock w.r.t. SBAS Network Time - #[cfg_attr(feature = "serde", serde(rename(serialize = "a_gf0")))] + #[cfg_attr(feature = "serde", serde(rename = "a_gf0"))] pub a_gf0: f64, /// Drift of the GEO clock w.r.t. SBAS Network Time - #[cfg_attr(feature = "serde", serde(rename(serialize = "a_gf1")))] + #[cfg_attr(feature = "serde", serde(rename = "a_gf1"))] pub a_gf1: f64, } @@ -4998,26 +4998,26 @@ pub mod msg_glo_biases { /// ambiguity resolution for baselines with mixed receiver types (e.g. /// receiver of different manufacturers). /// - #[cfg_attr(feature = "serde", derive(serde::Serialize))] + #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] #[derive(Debug, PartialEq, Clone)] pub struct MsgGloBiases { /// The message sender_id - #[cfg_attr(feature = "serde", serde(skip_serializing))] + #[cfg_attr(feature = "serde", serde(skip_serializing, alias = "sender"))] pub sender_id: Option, /// GLONASS FDMA signals mask - #[cfg_attr(feature = "serde", serde(rename(serialize = "mask")))] + #[cfg_attr(feature = "serde", serde(rename = "mask"))] pub mask: u8, /// GLONASS L1 C/A Code-Phase Bias - #[cfg_attr(feature = "serde", serde(rename(serialize = "l1ca_bias")))] + #[cfg_attr(feature = "serde", serde(rename = "l1ca_bias"))] pub l1ca_bias: i16, /// GLONASS L1 P Code-Phase Bias - #[cfg_attr(feature = "serde", serde(rename(serialize = "l1p_bias")))] + #[cfg_attr(feature = "serde", serde(rename = "l1p_bias"))] pub l1p_bias: i16, /// GLONASS L2 C/A Code-Phase Bias - #[cfg_attr(feature = "serde", serde(rename(serialize = "l2ca_bias")))] + #[cfg_attr(feature = "serde", serde(rename = "l2ca_bias"))] pub l2ca_bias: i16, /// GLONASS L2 P Code-Phase Bias - #[cfg_attr(feature = "serde", serde(rename(serialize = "l2p_bias")))] + #[cfg_attr(feature = "serde", serde(rename = "l2p_bias"))] pub l2p_bias: i16, } @@ -5094,17 +5094,17 @@ pub mod msg_gnss_capb { use crate::messages::gnss::*; use crate::messages::lib::*; /// GNSS capabilities - #[cfg_attr(feature = "serde", derive(serde::Serialize))] + #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] #[derive(Debug, PartialEq, Clone)] pub struct MsgGnssCapb { /// The message sender_id - #[cfg_attr(feature = "serde", serde(skip_serializing))] + #[cfg_attr(feature = "serde", serde(skip_serializing, alias = "sender"))] pub sender_id: Option, /// Navigation Message Correction Table Validity Time - #[cfg_attr(feature = "serde", serde(rename(serialize = "t_nmct")))] + #[cfg_attr(feature = "serde", serde(rename = "t_nmct"))] pub t_nmct: GpsTimeSec, /// GNSS capabilities masks - #[cfg_attr(feature = "serde", serde(rename(serialize = "gc")))] + #[cfg_attr(feature = "serde", serde(rename = "gc"))] pub gc: GnssCapb, } @@ -5172,27 +5172,27 @@ pub mod msg_group_delay { /// /// Please see ICD-GPS-200 (30.3.3.3.1.1) for more details. /// - #[cfg_attr(feature = "serde", derive(serde::Serialize))] + #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] #[derive(Debug, PartialEq, Clone)] pub struct MsgGroupDelay { /// The message sender_id - #[cfg_attr(feature = "serde", serde(skip_serializing))] + #[cfg_attr(feature = "serde", serde(skip_serializing, alias = "sender"))] pub sender_id: Option, /// Data Predict Time of Week - #[cfg_attr(feature = "serde", serde(rename(serialize = "t_op")))] + #[cfg_attr(feature = "serde", serde(rename = "t_op"))] pub t_op: GpsTimeSec, /// GNSS signal identifier - #[cfg_attr(feature = "serde", serde(rename(serialize = "sid")))] + #[cfg_attr(feature = "serde", serde(rename = "sid"))] pub sid: GnssSignal, /// bit-field indicating validity of the values, LSB indicating tgd validity /// etc. 1 = value is valid, 0 = value is not valid. - #[cfg_attr(feature = "serde", serde(rename(serialize = "valid")))] + #[cfg_attr(feature = "serde", serde(rename = "valid"))] pub valid: u8, - #[cfg_attr(feature = "serde", serde(rename(serialize = "tgd")))] + #[cfg_attr(feature = "serde", serde(rename = "tgd"))] pub tgd: i16, - #[cfg_attr(feature = "serde", serde(rename(serialize = "isc_l1ca")))] + #[cfg_attr(feature = "serde", serde(rename = "isc_l1ca"))] pub isc_l1ca: i16, - #[cfg_attr(feature = "serde", serde(rename(serialize = "isc_l2c")))] + #[cfg_attr(feature = "serde", serde(rename = "isc_l2c"))] pub isc_l2c: i16, } @@ -5277,27 +5277,27 @@ pub mod msg_group_delay_dep_a { /// /// Please see ICD-GPS-200 (30.3.3.3.1.1) for more details. /// - #[cfg_attr(feature = "serde", derive(serde::Serialize))] + #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] #[derive(Debug, PartialEq, Clone)] pub struct MsgGroupDelayDepA { /// The message sender_id - #[cfg_attr(feature = "serde", serde(skip_serializing))] + #[cfg_attr(feature = "serde", serde(skip_serializing, alias = "sender"))] pub sender_id: Option, /// Data Predict Time of Week - #[cfg_attr(feature = "serde", serde(rename(serialize = "t_op")))] + #[cfg_attr(feature = "serde", serde(rename = "t_op"))] pub t_op: GpsTimeDep, /// Satellite number - #[cfg_attr(feature = "serde", serde(rename(serialize = "prn")))] + #[cfg_attr(feature = "serde", serde(rename = "prn"))] pub prn: u8, /// bit-field indicating validity of the values, LSB indicating tgd validity /// etc. 1 = value is valid, 0 = value is not valid. - #[cfg_attr(feature = "serde", serde(rename(serialize = "valid")))] + #[cfg_attr(feature = "serde", serde(rename = "valid"))] pub valid: u8, - #[cfg_attr(feature = "serde", serde(rename(serialize = "tgd")))] + #[cfg_attr(feature = "serde", serde(rename = "tgd"))] pub tgd: i16, - #[cfg_attr(feature = "serde", serde(rename(serialize = "isc_l1ca")))] + #[cfg_attr(feature = "serde", serde(rename = "isc_l1ca"))] pub isc_l1ca: i16, - #[cfg_attr(feature = "serde", serde(rename(serialize = "isc_l2c")))] + #[cfg_attr(feature = "serde", serde(rename = "isc_l2c"))] pub isc_l2c: i16, } @@ -5382,27 +5382,27 @@ pub mod msg_group_delay_dep_b { /// /// Please see ICD-GPS-200 (30.3.3.3.1.1) for more details. /// - #[cfg_attr(feature = "serde", derive(serde::Serialize))] + #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] #[derive(Debug, PartialEq, Clone)] pub struct MsgGroupDelayDepB { /// The message sender_id - #[cfg_attr(feature = "serde", serde(skip_serializing))] + #[cfg_attr(feature = "serde", serde(skip_serializing, alias = "sender"))] pub sender_id: Option, /// Data Predict Time of Week - #[cfg_attr(feature = "serde", serde(rename(serialize = "t_op")))] + #[cfg_attr(feature = "serde", serde(rename = "t_op"))] pub t_op: GpsTimeSec, /// GNSS signal identifier - #[cfg_attr(feature = "serde", serde(rename(serialize = "sid")))] + #[cfg_attr(feature = "serde", serde(rename = "sid"))] pub sid: GnssSignalDep, /// bit-field indicating validity of the values, LSB indicating tgd validity /// etc. 1 = value is valid, 0 = value is not valid. - #[cfg_attr(feature = "serde", serde(rename(serialize = "valid")))] + #[cfg_attr(feature = "serde", serde(rename = "valid"))] pub valid: u8, - #[cfg_attr(feature = "serde", serde(rename(serialize = "tgd")))] + #[cfg_attr(feature = "serde", serde(rename = "tgd"))] pub tgd: i16, - #[cfg_attr(feature = "serde", serde(rename(serialize = "isc_l1ca")))] + #[cfg_attr(feature = "serde", serde(rename = "isc_l1ca"))] pub isc_l1ca: i16, - #[cfg_attr(feature = "serde", serde(rename(serialize = "isc_l2c")))] + #[cfg_attr(feature = "serde", serde(rename = "isc_l2c"))] pub isc_l2c: i16, } @@ -5489,30 +5489,30 @@ pub mod msg_iono { /// utilize the ionospheric model for computation of the ionospheric delay. /// Please see ICD-GPS-200 (Chapter 20.3.3.5.1.7) for more details. /// - #[cfg_attr(feature = "serde", derive(serde::Serialize))] + #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] #[derive(Debug, PartialEq, Clone)] pub struct MsgIono { /// The message sender_id - #[cfg_attr(feature = "serde", serde(skip_serializing))] + #[cfg_attr(feature = "serde", serde(skip_serializing, alias = "sender"))] pub sender_id: Option, /// Navigation Message Correction Table Validity Time - #[cfg_attr(feature = "serde", serde(rename(serialize = "t_nmct")))] + #[cfg_attr(feature = "serde", serde(rename = "t_nmct"))] pub t_nmct: GpsTimeSec, - #[cfg_attr(feature = "serde", serde(rename(serialize = "a0")))] + #[cfg_attr(feature = "serde", serde(rename = "a0"))] pub a0: f64, - #[cfg_attr(feature = "serde", serde(rename(serialize = "a1")))] + #[cfg_attr(feature = "serde", serde(rename = "a1"))] pub a1: f64, - #[cfg_attr(feature = "serde", serde(rename(serialize = "a2")))] + #[cfg_attr(feature = "serde", serde(rename = "a2"))] pub a2: f64, - #[cfg_attr(feature = "serde", serde(rename(serialize = "a3")))] + #[cfg_attr(feature = "serde", serde(rename = "a3"))] pub a3: f64, - #[cfg_attr(feature = "serde", serde(rename(serialize = "b0")))] + #[cfg_attr(feature = "serde", serde(rename = "b0"))] pub b0: f64, - #[cfg_attr(feature = "serde", serde(rename(serialize = "b1")))] + #[cfg_attr(feature = "serde", serde(rename = "b1"))] pub b1: f64, - #[cfg_attr(feature = "serde", serde(rename(serialize = "b2")))] + #[cfg_attr(feature = "serde", serde(rename = "b2"))] pub b2: f64, - #[cfg_attr(feature = "serde", serde(rename(serialize = "b3")))] + #[cfg_attr(feature = "serde", serde(rename = "b3"))] pub b3: f64, } @@ -5614,17 +5614,17 @@ pub mod msg_obs { /// cycles). The observations are be interoperable with 3rd party receivers /// and conform with typical RTCMv3 GNSS observations. /// - #[cfg_attr(feature = "serde", derive(serde::Serialize))] + #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] #[derive(Debug, PartialEq, Clone)] pub struct MsgObs { /// The message sender_id - #[cfg_attr(feature = "serde", serde(skip_serializing))] + #[cfg_attr(feature = "serde", serde(skip_serializing, alias = "sender"))] pub sender_id: Option, /// Header of a GPS observation message - #[cfg_attr(feature = "serde", serde(rename(serialize = "header")))] + #[cfg_attr(feature = "serde", serde(rename = "header"))] pub header: ObservationHeader, /// Pseudorange and carrier phase observation for a satellite being tracked. - #[cfg_attr(feature = "serde", serde(rename(serialize = "obs")))] + #[cfg_attr(feature = "serde", serde(rename = "obs"))] pub obs: Vec, } @@ -5705,17 +5705,17 @@ pub mod msg_obs_dep_a { /// /// Deprecated. /// - #[cfg_attr(feature = "serde", derive(serde::Serialize))] + #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] #[derive(Debug, PartialEq, Clone)] pub struct MsgObsDepA { /// The message sender_id - #[cfg_attr(feature = "serde", serde(skip_serializing))] + #[cfg_attr(feature = "serde", serde(skip_serializing, alias = "sender"))] pub sender_id: Option, /// Header of a GPS observation message - #[cfg_attr(feature = "serde", serde(rename(serialize = "header")))] + #[cfg_attr(feature = "serde", serde(rename = "header"))] pub header: ObservationHeaderDep, /// Pseudorange and carrier phase observation for a satellite being tracked. - #[cfg_attr(feature = "serde", serde(rename(serialize = "obs")))] + #[cfg_attr(feature = "serde", serde(rename = "obs"))] pub obs: Vec, } @@ -5799,17 +5799,17 @@ pub mod msg_obs_dep_b { /// referenced to a nominal pseudorange which are not interoperable with most /// 3rd party GNSS receivers or typical RTCMv3 observations. /// - #[cfg_attr(feature = "serde", derive(serde::Serialize))] + #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] #[derive(Debug, PartialEq, Clone)] pub struct MsgObsDepB { /// The message sender_id - #[cfg_attr(feature = "serde", serde(skip_serializing))] + #[cfg_attr(feature = "serde", serde(skip_serializing, alias = "sender"))] pub sender_id: Option, /// Header of a GPS observation message - #[cfg_attr(feature = "serde", serde(rename(serialize = "header")))] + #[cfg_attr(feature = "serde", serde(rename = "header"))] pub header: ObservationHeaderDep, /// Pseudorange and carrier phase observation for a satellite being tracked. - #[cfg_attr(feature = "serde", serde(rename(serialize = "obs")))] + #[cfg_attr(feature = "serde", serde(rename = "obs"))] pub obs: Vec, } @@ -5895,17 +5895,17 @@ pub mod msg_obs_dep_c { /// cycles). The observations are interoperable with 3rd party receivers and /// conform with typical RTCMv3 GNSS observations. /// - #[cfg_attr(feature = "serde", derive(serde::Serialize))] + #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] #[derive(Debug, PartialEq, Clone)] pub struct MsgObsDepC { /// The message sender_id - #[cfg_attr(feature = "serde", serde(skip_serializing))] + #[cfg_attr(feature = "serde", serde(skip_serializing, alias = "sender"))] pub sender_id: Option, /// Header of a GPS observation message - #[cfg_attr(feature = "serde", serde(rename(serialize = "header")))] + #[cfg_attr(feature = "serde", serde(rename = "header"))] pub header: ObservationHeaderDep, /// Pseudorange and carrier phase observation for a satellite being tracked. - #[cfg_attr(feature = "serde", serde(rename(serialize = "obs")))] + #[cfg_attr(feature = "serde", serde(rename = "obs"))] pub obs: Vec, } @@ -5987,17 +5987,17 @@ pub mod msg_osr { /// The OSR message contains network corrections in an observation-like /// format. /// - #[cfg_attr(feature = "serde", derive(serde::Serialize))] + #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] #[derive(Debug, PartialEq, Clone)] pub struct MsgOsr { /// The message sender_id - #[cfg_attr(feature = "serde", serde(skip_serializing))] + #[cfg_attr(feature = "serde", serde(skip_serializing, alias = "sender"))] pub sender_id: Option, /// Header of a GPS observation message - #[cfg_attr(feature = "serde", serde(rename(serialize = "header")))] + #[cfg_attr(feature = "serde", serde(rename = "header"))] pub header: ObservationHeader, /// Network correction for a satellite signal. - #[cfg_attr(feature = "serde", serde(rename(serialize = "obs")))] + #[cfg_attr(feature = "serde", serde(rename = "obs"))] pub obs: Vec, } @@ -6079,14 +6079,14 @@ pub mod msg_sv_az_el { /// Azimuth and elevation angles of all the visible satellites that the device /// does have ephemeris or almanac for. /// - #[cfg_attr(feature = "serde", derive(serde::Serialize))] + #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] #[derive(Debug, PartialEq, Clone)] pub struct MsgSvAzEl { /// The message sender_id - #[cfg_attr(feature = "serde", serde(skip_serializing))] + #[cfg_attr(feature = "serde", serde(skip_serializing, alias = "sender"))] pub sender_id: Option, /// Azimuth and elevation per satellite - #[cfg_attr(feature = "serde", serde(rename(serialize = "azel")))] + #[cfg_attr(feature = "serde", serde(rename = "azel"))] pub azel: Vec, } @@ -6151,17 +6151,17 @@ pub mod msg_sv_configuration_gps_dep { /// /// Please see ICD-GPS-200 (Chapter 20.3.3.5.1.4) for more details. /// - #[cfg_attr(feature = "serde", derive(serde::Serialize))] + #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] #[derive(Debug, PartialEq, Clone)] pub struct MsgSvConfigurationGpsDep { /// The message sender_id - #[cfg_attr(feature = "serde", serde(skip_serializing))] + #[cfg_attr(feature = "serde", serde(skip_serializing, alias = "sender"))] pub sender_id: Option, /// Navigation Message Correction Table Validity Time - #[cfg_attr(feature = "serde", serde(rename(serialize = "t_nmct")))] + #[cfg_attr(feature = "serde", serde(rename = "t_nmct"))] pub t_nmct: GpsTimeSec, /// L2C capability mask, SV32 bit being MSB, SV1 bit being LSB - #[cfg_attr(feature = "serde", serde(rename(serialize = "l2c_mask")))] + #[cfg_attr(feature = "serde", serde(rename = "l2c_mask"))] pub l2c_mask: u32, } @@ -6228,15 +6228,15 @@ pub mod observation_header { /// /// Header of a GNSS observation message. /// - #[cfg_attr(feature = "serde", derive(serde::Serialize))] + #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] #[derive(Debug, PartialEq, Clone)] pub struct ObservationHeader { /// GNSS time of this observation - #[cfg_attr(feature = "serde", serde(rename(serialize = "t")))] + #[cfg_attr(feature = "serde", serde(rename = "t"))] pub t: GpsTime, /// Total number of observations. First nibble is the size of the sequence /// (n), second nibble is the zero-indexed counter (ith packet of n) - #[cfg_attr(feature = "serde", serde(rename(serialize = "n_obs")))] + #[cfg_attr(feature = "serde", serde(rename = "n_obs"))] pub n_obs: u8, } @@ -6269,15 +6269,15 @@ pub mod observation_header_dep { /// /// Header of a GPS observation message. /// - #[cfg_attr(feature = "serde", derive(serde::Serialize))] + #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] #[derive(Debug, PartialEq, Clone)] pub struct ObservationHeaderDep { /// GPS time of this observation - #[cfg_attr(feature = "serde", serde(rename(serialize = "t")))] + #[cfg_attr(feature = "serde", serde(rename = "t"))] pub t: GpsTimeDep, /// Total number of observations. First nibble is the size of the sequence /// (n), second nibble is the zero-indexed counter (ith packet of n) - #[cfg_attr(feature = "serde", serde(rename(serialize = "n_obs")))] + #[cfg_attr(feature = "serde", serde(rename = "n_obs"))] pub n_obs: u8, } @@ -6316,20 +6316,20 @@ pub mod packed_obs_content { /// or RTCM 3.3 MSM reference signal and no 1/4 cycle adjustments are /// currently performed. /// - #[cfg_attr(feature = "serde", derive(serde::Serialize))] + #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] #[derive(Debug, PartialEq, Clone)] pub struct PackedObsContent { /// Pseudorange observation - #[cfg_attr(feature = "serde", serde(rename(serialize = "P")))] + #[cfg_attr(feature = "serde", serde(rename = "P"))] pub p: u32, /// Carrier phase observation with typical sign convention. - #[cfg_attr(feature = "serde", serde(rename(serialize = "L")))] + #[cfg_attr(feature = "serde", serde(rename = "L"))] pub l: CarrierPhase, /// Doppler observation with typical sign convention. - #[cfg_attr(feature = "serde", serde(rename(serialize = "D")))] + #[cfg_attr(feature = "serde", serde(rename = "D"))] pub d: Doppler, /// Carrier-to-Noise density. Zero implies invalid cn0. - #[cfg_attr(feature = "serde", serde(rename(serialize = "cn0")))] + #[cfg_attr(feature = "serde", serde(rename = "cn0"))] pub cn0: u8, /// Lock timer. This value gives an indication of the time for which a /// signal has maintained continuous phase lock. Whenever a signal has lost @@ -6337,15 +6337,15 @@ pub mod packed_obs_content { /// to DF402 from the RTCM 10403.2 Amendment 2 specification. Valid values /// range from 0 to 15 and the most significant nibble is reserved for /// future use. - #[cfg_attr(feature = "serde", serde(rename(serialize = "lock")))] + #[cfg_attr(feature = "serde", serde(rename = "lock"))] pub lock: u8, /// Measurement status flags. A bit field of flags providing the status of /// this observation. If this field is 0 it means only the Cn0 estimate for /// the signal is valid. - #[cfg_attr(feature = "serde", serde(rename(serialize = "flags")))] + #[cfg_attr(feature = "serde", serde(rename = "flags"))] pub flags: u8, /// GNSS signal identifier (16 bit) - #[cfg_attr(feature = "serde", serde(rename(serialize = "sid")))] + #[cfg_attr(feature = "serde", serde(rename = "sid"))] pub sid: GnssSignal, } @@ -6638,25 +6638,25 @@ pub mod packed_obs_content_dep_a { /// /// Deprecated. /// - #[cfg_attr(feature = "serde", derive(serde::Serialize))] + #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] #[derive(Debug, PartialEq, Clone)] pub struct PackedObsContentDepA { /// Pseudorange observation - #[cfg_attr(feature = "serde", serde(rename(serialize = "P")))] + #[cfg_attr(feature = "serde", serde(rename = "P"))] pub p: u32, /// Carrier phase observation with opposite sign from typical convention - #[cfg_attr(feature = "serde", serde(rename(serialize = "L")))] + #[cfg_attr(feature = "serde", serde(rename = "L"))] pub l: CarrierPhaseDepA, /// Carrier-to-Noise density - #[cfg_attr(feature = "serde", serde(rename(serialize = "cn0")))] + #[cfg_attr(feature = "serde", serde(rename = "cn0"))] pub cn0: u8, /// Lock indicator. This value changes whenever a satellite signal has lost /// and regained lock, indicating that the carrier phase ambiguity may have /// changed. - #[cfg_attr(feature = "serde", serde(rename(serialize = "lock")))] + #[cfg_attr(feature = "serde", serde(rename = "lock"))] pub lock: u16, /// PRN-1 identifier of the satellite signal - #[cfg_attr(feature = "serde", serde(rename(serialize = "prn")))] + #[cfg_attr(feature = "serde", serde(rename = "prn"))] pub prn: u8, } @@ -6704,25 +6704,25 @@ pub mod packed_obs_content_dep_b { /// Pseudorange and carrier phase observation for a satellite being tracked. /// Pseudoranges are referenced to a nominal pseudorange. /// - #[cfg_attr(feature = "serde", derive(serde::Serialize))] + #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] #[derive(Debug, PartialEq, Clone)] pub struct PackedObsContentDepB { /// Pseudorange observation - #[cfg_attr(feature = "serde", serde(rename(serialize = "P")))] + #[cfg_attr(feature = "serde", serde(rename = "P"))] pub p: u32, /// Carrier phase observation with opposite sign from typical convention. - #[cfg_attr(feature = "serde", serde(rename(serialize = "L")))] + #[cfg_attr(feature = "serde", serde(rename = "L"))] pub l: CarrierPhaseDepA, /// Carrier-to-Noise density - #[cfg_attr(feature = "serde", serde(rename(serialize = "cn0")))] + #[cfg_attr(feature = "serde", serde(rename = "cn0"))] pub cn0: u8, /// Lock indicator. This value changes whenever a satellite signal has lost /// and regained lock, indicating that the carrier phase ambiguity may have /// changed. - #[cfg_attr(feature = "serde", serde(rename(serialize = "lock")))] + #[cfg_attr(feature = "serde", serde(rename = "lock"))] pub lock: u16, /// GNSS signal identifier - #[cfg_attr(feature = "serde", serde(rename(serialize = "sid")))] + #[cfg_attr(feature = "serde", serde(rename = "sid"))] pub sid: GnssSignalDep, } @@ -6771,25 +6771,25 @@ pub mod packed_obs_content_dep_c { /// The observations are be interoperable with 3rd party receivers and conform /// with typical RTCMv3 GNSS observations. /// - #[cfg_attr(feature = "serde", derive(serde::Serialize))] + #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] #[derive(Debug, PartialEq, Clone)] pub struct PackedObsContentDepC { /// Pseudorange observation - #[cfg_attr(feature = "serde", serde(rename(serialize = "P")))] + #[cfg_attr(feature = "serde", serde(rename = "P"))] pub p: u32, /// Carrier phase observation with typical sign convention. - #[cfg_attr(feature = "serde", serde(rename(serialize = "L")))] + #[cfg_attr(feature = "serde", serde(rename = "L"))] pub l: CarrierPhase, /// Carrier-to-Noise density - #[cfg_attr(feature = "serde", serde(rename(serialize = "cn0")))] + #[cfg_attr(feature = "serde", serde(rename = "cn0"))] pub cn0: u8, /// Lock indicator. This value changes whenever a satellite signal has lost /// and regained lock, indicating that the carrier phase ambiguity may have /// changed. - #[cfg_attr(feature = "serde", serde(rename(serialize = "lock")))] + #[cfg_attr(feature = "serde", serde(rename = "lock"))] pub lock: u16, /// GNSS signal identifier - #[cfg_attr(feature = "serde", serde(rename(serialize = "sid")))] + #[cfg_attr(feature = "serde", serde(rename = "sid"))] pub sid: GnssSignalDep, } @@ -6836,14 +6836,14 @@ pub mod packed_osr_content { /// /// Pseudorange and carrier phase network corrections for a satellite signal. /// - #[cfg_attr(feature = "serde", derive(serde::Serialize))] + #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] #[derive(Debug, PartialEq, Clone)] pub struct PackedOsrContent { /// Pseudorange observation - #[cfg_attr(feature = "serde", serde(rename(serialize = "P")))] + #[cfg_attr(feature = "serde", serde(rename = "P"))] pub p: u32, /// Carrier phase observation with typical sign convention. - #[cfg_attr(feature = "serde", serde(rename(serialize = "L")))] + #[cfg_attr(feature = "serde", serde(rename = "L"))] pub l: CarrierPhase, /// Lock timer. This value gives an indication of the time for which a /// signal has maintained continuous phase lock. Whenever a signal has lost @@ -6851,22 +6851,22 @@ pub mod packed_osr_content { /// to DF402 from the RTCM 10403.2 Amendment 2 specification. Valid values /// range from 0 to 15 and the most significant nibble is reserved for /// future use. - #[cfg_attr(feature = "serde", serde(rename(serialize = "lock")))] + #[cfg_attr(feature = "serde", serde(rename = "lock"))] pub lock: u8, /// Correction flags. - #[cfg_attr(feature = "serde", serde(rename(serialize = "flags")))] + #[cfg_attr(feature = "serde", serde(rename = "flags"))] pub flags: u8, /// GNSS signal identifier (16 bit) - #[cfg_attr(feature = "serde", serde(rename(serialize = "sid")))] + #[cfg_attr(feature = "serde", serde(rename = "sid"))] pub sid: GnssSignal, /// Slant ionospheric correction standard deviation - #[cfg_attr(feature = "serde", serde(rename(serialize = "iono_std")))] + #[cfg_attr(feature = "serde", serde(rename = "iono_std"))] pub iono_std: u16, /// Slant tropospheric correction standard deviation - #[cfg_attr(feature = "serde", serde(rename(serialize = "tropo_std")))] + #[cfg_attr(feature = "serde", serde(rename = "tropo_std"))] pub tropo_std: u16, /// Orbit/clock/bias correction projected on range standard deviation - #[cfg_attr(feature = "serde", serde(rename(serialize = "range_std")))] + #[cfg_attr(feature = "serde", serde(rename = "range_std"))] pub range_std: u16, } @@ -7165,17 +7165,17 @@ pub mod sv_az_el { /// /// Satellite azimuth and elevation. /// - #[cfg_attr(feature = "serde", derive(serde::Serialize))] + #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] #[derive(Debug, PartialEq, Clone)] pub struct SvAzEl { /// GNSS signal identifier - #[cfg_attr(feature = "serde", serde(rename(serialize = "sid")))] + #[cfg_attr(feature = "serde", serde(rename = "sid"))] pub sid: GnssSignal, /// Azimuth angle (range 0..179) - #[cfg_attr(feature = "serde", serde(rename(serialize = "az")))] + #[cfg_attr(feature = "serde", serde(rename = "az"))] pub az: u8, /// Elevation angle (range -90..90) - #[cfg_attr(feature = "serde", serde(rename(serialize = "el")))] + #[cfg_attr(feature = "serde", serde(rename = "el"))] pub el: i8, } diff --git a/rust/sbp/src/messages/orientation.rs b/rust/sbp/src/messages/orientation.rs index 4b1b48249a..43b7a9401c 100644 --- a/rust/sbp/src/messages/orientation.rs +++ b/rust/sbp/src/messages/orientation.rs @@ -36,26 +36,26 @@ pub mod msg_angular_rate { /// down direction. This message will only be available in future INS versions /// of Swift Products and is not produced by Piksi Multi or Duro. /// - #[cfg_attr(feature = "serde", derive(serde::Serialize))] + #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] #[derive(Debug, PartialEq, Clone)] pub struct MsgAngularRate { /// The message sender_id - #[cfg_attr(feature = "serde", serde(skip_serializing))] + #[cfg_attr(feature = "serde", serde(skip_serializing, alias = "sender"))] pub sender_id: Option, /// GPS Time of Week - #[cfg_attr(feature = "serde", serde(rename(serialize = "tow")))] + #[cfg_attr(feature = "serde", serde(rename = "tow"))] pub tow: u32, /// angular rate about x axis - #[cfg_attr(feature = "serde", serde(rename(serialize = "x")))] + #[cfg_attr(feature = "serde", serde(rename = "x"))] pub x: i32, /// angular rate about y axis - #[cfg_attr(feature = "serde", serde(rename(serialize = "y")))] + #[cfg_attr(feature = "serde", serde(rename = "y"))] pub y: i32, /// angular rate about z axis - #[cfg_attr(feature = "serde", serde(rename(serialize = "z")))] + #[cfg_attr(feature = "serde", serde(rename = "z"))] pub z: i32, /// Status flags - #[cfg_attr(feature = "serde", serde(rename(serialize = "flags")))] + #[cfg_attr(feature = "serde", serde(rename = "flags"))] pub flags: u8, } @@ -194,23 +194,23 @@ pub mod msg_baseline_heading { /// intended that time-matched RTK mode is used when the base station is /// moving. /// - #[cfg_attr(feature = "serde", derive(serde::Serialize))] + #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] #[derive(Debug, PartialEq, Clone)] pub struct MsgBaselineHeading { /// The message sender_id - #[cfg_attr(feature = "serde", serde(skip_serializing))] + #[cfg_attr(feature = "serde", serde(skip_serializing, alias = "sender"))] pub sender_id: Option, /// GPS Time of Week - #[cfg_attr(feature = "serde", serde(rename(serialize = "tow")))] + #[cfg_attr(feature = "serde", serde(rename = "tow"))] pub tow: u32, /// Heading - #[cfg_attr(feature = "serde", serde(rename(serialize = "heading")))] + #[cfg_attr(feature = "serde", serde(rename = "heading"))] pub heading: u32, /// Number of satellites used in solution - #[cfg_attr(feature = "serde", serde(rename(serialize = "n_sats")))] + #[cfg_attr(feature = "serde", serde(rename = "n_sats"))] pub n_sats: u8, /// Status flags - #[cfg_attr(feature = "serde", serde(rename(serialize = "flags")))] + #[cfg_attr(feature = "serde", serde(rename = "flags"))] pub flags: u8, } @@ -356,35 +356,35 @@ pub mod msg_orient_euler { /// in future INS versions of Swift Products and is not produced by Piksi /// Multi or Duro. /// - #[cfg_attr(feature = "serde", derive(serde::Serialize))] + #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] #[derive(Debug, PartialEq, Clone)] pub struct MsgOrientEuler { /// The message sender_id - #[cfg_attr(feature = "serde", serde(skip_serializing))] + #[cfg_attr(feature = "serde", serde(skip_serializing, alias = "sender"))] pub sender_id: Option, /// GPS Time of Week - #[cfg_attr(feature = "serde", serde(rename(serialize = "tow")))] + #[cfg_attr(feature = "serde", serde(rename = "tow"))] pub tow: u32, /// rotation about the forward axis of the vehicle - #[cfg_attr(feature = "serde", serde(rename(serialize = "roll")))] + #[cfg_attr(feature = "serde", serde(rename = "roll"))] pub roll: i32, /// rotation about the rightward axis of the vehicle - #[cfg_attr(feature = "serde", serde(rename(serialize = "pitch")))] + #[cfg_attr(feature = "serde", serde(rename = "pitch"))] pub pitch: i32, /// rotation about the downward axis of the vehicle - #[cfg_attr(feature = "serde", serde(rename(serialize = "yaw")))] + #[cfg_attr(feature = "serde", serde(rename = "yaw"))] pub yaw: i32, /// Estimated standard deviation of roll - #[cfg_attr(feature = "serde", serde(rename(serialize = "roll_accuracy")))] + #[cfg_attr(feature = "serde", serde(rename = "roll_accuracy"))] pub roll_accuracy: f32, /// Estimated standard deviation of pitch - #[cfg_attr(feature = "serde", serde(rename(serialize = "pitch_accuracy")))] + #[cfg_attr(feature = "serde", serde(rename = "pitch_accuracy"))] pub pitch_accuracy: f32, /// Estimated standard deviation of yaw - #[cfg_attr(feature = "serde", serde(rename(serialize = "yaw_accuracy")))] + #[cfg_attr(feature = "serde", serde(rename = "yaw_accuracy"))] pub yaw_accuracy: f32, /// Status flags - #[cfg_attr(feature = "serde", serde(rename(serialize = "flags")))] + #[cfg_attr(feature = "serde", serde(rename = "flags"))] pub flags: u8, } @@ -536,41 +536,41 @@ pub mod msg_orient_quat { /// in future INS versions of Swift Products and is not produced by Piksi /// Multi or Duro. /// - #[cfg_attr(feature = "serde", derive(serde::Serialize))] + #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] #[derive(Debug, PartialEq, Clone)] pub struct MsgOrientQuat { /// The message sender_id - #[cfg_attr(feature = "serde", serde(skip_serializing))] + #[cfg_attr(feature = "serde", serde(skip_serializing, alias = "sender"))] pub sender_id: Option, /// GPS Time of Week - #[cfg_attr(feature = "serde", serde(rename(serialize = "tow")))] + #[cfg_attr(feature = "serde", serde(rename = "tow"))] pub tow: u32, /// Real component - #[cfg_attr(feature = "serde", serde(rename(serialize = "w")))] + #[cfg_attr(feature = "serde", serde(rename = "w"))] pub w: i32, /// 1st imaginary component - #[cfg_attr(feature = "serde", serde(rename(serialize = "x")))] + #[cfg_attr(feature = "serde", serde(rename = "x"))] pub x: i32, /// 2nd imaginary component - #[cfg_attr(feature = "serde", serde(rename(serialize = "y")))] + #[cfg_attr(feature = "serde", serde(rename = "y"))] pub y: i32, /// 3rd imaginary component - #[cfg_attr(feature = "serde", serde(rename(serialize = "z")))] + #[cfg_attr(feature = "serde", serde(rename = "z"))] pub z: i32, /// Estimated standard deviation of w - #[cfg_attr(feature = "serde", serde(rename(serialize = "w_accuracy")))] + #[cfg_attr(feature = "serde", serde(rename = "w_accuracy"))] pub w_accuracy: f32, /// Estimated standard deviation of x - #[cfg_attr(feature = "serde", serde(rename(serialize = "x_accuracy")))] + #[cfg_attr(feature = "serde", serde(rename = "x_accuracy"))] pub x_accuracy: f32, /// Estimated standard deviation of y - #[cfg_attr(feature = "serde", serde(rename(serialize = "y_accuracy")))] + #[cfg_attr(feature = "serde", serde(rename = "y_accuracy"))] pub y_accuracy: f32, /// Estimated standard deviation of z - #[cfg_attr(feature = "serde", serde(rename(serialize = "z_accuracy")))] + #[cfg_attr(feature = "serde", serde(rename = "z_accuracy"))] pub z_accuracy: f32, /// Status flags - #[cfg_attr(feature = "serde", serde(rename(serialize = "flags")))] + #[cfg_attr(feature = "serde", serde(rename = "flags"))] pub flags: u8, } diff --git a/rust/sbp/src/messages/piksi.rs b/rust/sbp/src/messages/piksi.rs index 39af0024e6..c71db04851 100644 --- a/rust/sbp/src/messages/piksi.rs +++ b/rust/sbp/src/messages/piksi.rs @@ -59,20 +59,20 @@ pub mod latency { /// current GPS time calculated locally by the receiver to give a precise /// measurement of the end-to-end communication latency in the system. /// - #[cfg_attr(feature = "serde", derive(serde::Serialize))] + #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] #[derive(Debug, PartialEq, Clone)] pub struct Latency { /// Average latency - #[cfg_attr(feature = "serde", serde(rename(serialize = "avg")))] + #[cfg_attr(feature = "serde", serde(rename = "avg"))] pub avg: i32, /// Minimum latency - #[cfg_attr(feature = "serde", serde(rename(serialize = "lmin")))] + #[cfg_attr(feature = "serde", serde(rename = "lmin"))] pub lmin: i32, /// Maximum latency - #[cfg_attr(feature = "serde", serde(rename(serialize = "lmax")))] + #[cfg_attr(feature = "serde", serde(rename = "lmax"))] pub lmax: i32, /// Smoothed estimate of the current latency - #[cfg_attr(feature = "serde", serde(rename(serialize = "current")))] + #[cfg_attr(feature = "serde", serde(rename = "current"))] pub current: i32, } @@ -116,11 +116,11 @@ pub mod msg_almanac { /// This is a legacy message for sending and loading a satellite alamanac onto /// the Piksi's flash memory from the host. /// - #[cfg_attr(feature = "serde", derive(serde::Serialize))] + #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] #[derive(Debug, PartialEq, Clone)] pub struct MsgAlmanac { /// The message sender_id - #[cfg_attr(feature = "serde", serde(skip_serializing))] + #[cfg_attr(feature = "serde", serde(skip_serializing, alias = "sender"))] pub sender_id: Option, } @@ -182,20 +182,20 @@ pub mod msg_cell_modem_status { /// periodically to update the host on the status of the modem and its various /// parameters. /// - #[cfg_attr(feature = "serde", derive(serde::Serialize))] + #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] #[derive(Debug, PartialEq, Clone)] pub struct MsgCellModemStatus { /// The message sender_id - #[cfg_attr(feature = "serde", serde(skip_serializing))] + #[cfg_attr(feature = "serde", serde(skip_serializing, alias = "sender"))] pub sender_id: Option, /// Received cell signal strength in dBm, zero translates to unknown - #[cfg_attr(feature = "serde", serde(rename(serialize = "signal_strength")))] + #[cfg_attr(feature = "serde", serde(rename = "signal_strength"))] pub signal_strength: i8, /// BER as reported by the modem, zero translates to unknown - #[cfg_attr(feature = "serde", serde(rename(serialize = "signal_error_rate")))] + #[cfg_attr(feature = "serde", serde(rename = "signal_error_rate"))] pub signal_error_rate: f32, /// Unspecified data TBD for this schema - #[cfg_attr(feature = "serde", serde(rename(serialize = "reserved")))] + #[cfg_attr(feature = "serde", serde(rename = "reserved"))] pub reserved: Vec, } @@ -270,17 +270,17 @@ pub mod msg_command_output { /// MSG_COMMAND_REQ. The sequence number can be used to filter for filtering /// the correct command. /// - #[cfg_attr(feature = "serde", derive(serde::Serialize))] + #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] #[derive(Debug, PartialEq, Clone)] pub struct MsgCommandOutput { /// The message sender_id - #[cfg_attr(feature = "serde", serde(skip_serializing))] + #[cfg_attr(feature = "serde", serde(skip_serializing, alias = "sender"))] pub sender_id: Option, /// Sequence number - #[cfg_attr(feature = "serde", serde(rename(serialize = "sequence")))] + #[cfg_attr(feature = "serde", serde(rename = "sequence"))] pub sequence: u32, /// Line of standard output or standard error - #[cfg_attr(feature = "serde", serde(rename(serialize = "line")))] + #[cfg_attr(feature = "serde", serde(rename = "line"))] pub line: SbpString, Unterminated>, } @@ -350,17 +350,17 @@ pub mod msg_command_req { /// MSG_LOG messages, and the exit code will be returned with /// MSG_COMMAND_RESP. /// - #[cfg_attr(feature = "serde", derive(serde::Serialize))] + #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] #[derive(Debug, PartialEq, Clone)] pub struct MsgCommandReq { /// The message sender_id - #[cfg_attr(feature = "serde", serde(skip_serializing))] + #[cfg_attr(feature = "serde", serde(skip_serializing, alias = "sender"))] pub sender_id: Option, /// Sequence number - #[cfg_attr(feature = "serde", serde(rename(serialize = "sequence")))] + #[cfg_attr(feature = "serde", serde(rename = "sequence"))] pub sequence: u32, /// Command line to execute - #[cfg_attr(feature = "serde", serde(rename(serialize = "command")))] + #[cfg_attr(feature = "serde", serde(rename = "command"))] pub command: SbpString, NullTerminated>, } @@ -429,17 +429,17 @@ pub mod msg_command_resp { /// The response to MSG_COMMAND_REQ with the return code of the command. A /// return code of zero indicates success. /// - #[cfg_attr(feature = "serde", derive(serde::Serialize))] + #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] #[derive(Debug, PartialEq, Clone)] pub struct MsgCommandResp { /// The message sender_id - #[cfg_attr(feature = "serde", serde(skip_serializing))] + #[cfg_attr(feature = "serde", serde(skip_serializing, alias = "sender"))] pub sender_id: Option, /// Sequence number - #[cfg_attr(feature = "serde", serde(rename(serialize = "sequence")))] + #[cfg_attr(feature = "serde", serde(rename = "sequence"))] pub sequence: u32, /// Exit code - #[cfg_attr(feature = "serde", serde(rename(serialize = "code")))] + #[cfg_attr(feature = "serde", serde(rename = "code"))] pub code: i32, } @@ -508,11 +508,11 @@ pub mod msg_cw_results { /// interference channel on the SwiftNAP. This message will be removed in a /// future release. /// - #[cfg_attr(feature = "serde", derive(serde::Serialize))] + #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] #[derive(Debug, PartialEq, Clone)] pub struct MsgCwResults { /// The message sender_id - #[cfg_attr(feature = "serde", serde(skip_serializing))] + #[cfg_attr(feature = "serde", serde(skip_serializing, alias = "sender"))] pub sender_id: Option, } @@ -574,11 +574,11 @@ pub mod msg_cw_start { /// interference channel on the SwiftNAP. This message will be removed in a /// future release. /// - #[cfg_attr(feature = "serde", derive(serde::Serialize))] + #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] #[derive(Debug, PartialEq, Clone)] pub struct MsgCwStart { /// The message sender_id - #[cfg_attr(feature = "serde", serde(skip_serializing))] + #[cfg_attr(feature = "serde", serde(skip_serializing, alias = "sender"))] pub sender_id: Option, } @@ -640,26 +640,26 @@ pub mod msg_device_monitor { /// processor's monitoring system and the RF frontend die temperature if /// available. /// - #[cfg_attr(feature = "serde", derive(serde::Serialize))] + #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] #[derive(Debug, PartialEq, Clone)] pub struct MsgDeviceMonitor { /// The message sender_id - #[cfg_attr(feature = "serde", serde(skip_serializing))] + #[cfg_attr(feature = "serde", serde(skip_serializing, alias = "sender"))] pub sender_id: Option, /// Device V_in - #[cfg_attr(feature = "serde", serde(rename(serialize = "dev_vin")))] + #[cfg_attr(feature = "serde", serde(rename = "dev_vin"))] pub dev_vin: i16, /// Processor V_int - #[cfg_attr(feature = "serde", serde(rename(serialize = "cpu_vint")))] + #[cfg_attr(feature = "serde", serde(rename = "cpu_vint"))] pub cpu_vint: i16, /// Processor V_aux - #[cfg_attr(feature = "serde", serde(rename(serialize = "cpu_vaux")))] + #[cfg_attr(feature = "serde", serde(rename = "cpu_vaux"))] pub cpu_vaux: i16, /// Processor temperature - #[cfg_attr(feature = "serde", serde(rename(serialize = "cpu_temperature")))] + #[cfg_attr(feature = "serde", serde(rename = "cpu_temperature"))] pub cpu_temperature: i16, /// Frontend temperature (if available) - #[cfg_attr(feature = "serde", serde(rename(serialize = "fe_temperature")))] + #[cfg_attr(feature = "serde", serde(rename = "fe_temperature"))] pub fe_temperature: i16, } @@ -746,17 +746,17 @@ pub mod msg_front_end_gain { /// that rf channel is not present in the hardware. A negative value implies /// an error for the particular gain stage as reported by the frontend. /// - #[cfg_attr(feature = "serde", derive(serde::Serialize))] + #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] #[derive(Debug, PartialEq, Clone)] pub struct MsgFrontEndGain { /// The message sender_id - #[cfg_attr(feature = "serde", serde(skip_serializing))] + #[cfg_attr(feature = "serde", serde(skip_serializing, alias = "sender"))] pub sender_id: Option, /// RF gain for each frontend channel - #[cfg_attr(feature = "serde", serde(rename(serialize = "rf_gain")))] + #[cfg_attr(feature = "serde", serde(rename = "rf_gain"))] pub rf_gain: [i8; 8], /// Intermediate frequency gain for each frontend channel - #[cfg_attr(feature = "serde", serde(rename(serialize = "if_gain")))] + #[cfg_attr(feature = "serde", serde(rename = "if_gain"))] pub if_gain: [i8; 8], } @@ -825,14 +825,14 @@ pub mod msg_iar_state { /// process, which resolves unknown integer ambiguities from double- /// differenced carrier-phase measurements from satellite observations. /// - #[cfg_attr(feature = "serde", derive(serde::Serialize))] + #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] #[derive(Debug, PartialEq, Clone)] pub struct MsgIarState { /// The message sender_id - #[cfg_attr(feature = "serde", serde(skip_serializing))] + #[cfg_attr(feature = "serde", serde(skip_serializing, alias = "sender"))] pub sender_id: Option, /// Number of integer ambiguity hypotheses remaining - #[cfg_attr(feature = "serde", serde(rename(serialize = "num_hyps")))] + #[cfg_attr(feature = "serde", serde(rename = "num_hyps"))] pub num_hyps: u32, } @@ -897,11 +897,11 @@ pub mod msg_init_base_dep { /// /// Deprecated /// - #[cfg_attr(feature = "serde", derive(serde::Serialize))] + #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] #[derive(Debug, PartialEq, Clone)] pub struct MsgInitBaseDep { /// The message sender_id - #[cfg_attr(feature = "serde", serde(skip_serializing))] + #[cfg_attr(feature = "serde", serde(skip_serializing, alias = "sender"))] pub sender_id: Option, } @@ -962,17 +962,17 @@ pub mod msg_mask_satellite { /// This message allows setting a mask to prevent a particular satellite from /// being used in various Piksi subsystems. /// - #[cfg_attr(feature = "serde", derive(serde::Serialize))] + #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] #[derive(Debug, PartialEq, Clone)] pub struct MsgMaskSatellite { /// The message sender_id - #[cfg_attr(feature = "serde", serde(skip_serializing))] + #[cfg_attr(feature = "serde", serde(skip_serializing, alias = "sender"))] pub sender_id: Option, /// Mask of systems that should ignore this satellite. - #[cfg_attr(feature = "serde", serde(rename(serialize = "mask")))] + #[cfg_attr(feature = "serde", serde(rename = "mask"))] pub mask: u8, /// GNSS signal for which the mask is applied - #[cfg_attr(feature = "serde", serde(rename(serialize = "sid")))] + #[cfg_attr(feature = "serde", serde(rename = "sid"))] pub sid: GnssSignal, } @@ -1133,17 +1133,17 @@ pub mod msg_mask_satellite_dep { /// /// Deprecated. /// - #[cfg_attr(feature = "serde", derive(serde::Serialize))] + #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] #[derive(Debug, PartialEq, Clone)] pub struct MsgMaskSatelliteDep { /// The message sender_id - #[cfg_attr(feature = "serde", serde(skip_serializing))] + #[cfg_attr(feature = "serde", serde(skip_serializing, alias = "sender"))] pub sender_id: Option, /// Mask of systems that should ignore this satellite. - #[cfg_attr(feature = "serde", serde(rename(serialize = "mask")))] + #[cfg_attr(feature = "serde", serde(rename = "mask"))] pub mask: u8, /// GNSS signal for which the mask is applied - #[cfg_attr(feature = "serde", serde(rename(serialize = "sid")))] + #[cfg_attr(feature = "serde", serde(rename = "sid"))] pub sid: GnssSignalDep, } @@ -1304,14 +1304,14 @@ pub mod msg_network_bandwidth_usage { /// /// The bandwidth usage, a list of usage by interface. /// - #[cfg_attr(feature = "serde", derive(serde::Serialize))] + #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] #[derive(Debug, PartialEq, Clone)] pub struct MsgNetworkBandwidthUsage { /// The message sender_id - #[cfg_attr(feature = "serde", serde(skip_serializing))] + #[cfg_attr(feature = "serde", serde(skip_serializing, alias = "sender"))] pub sender_id: Option, /// Usage measurement array - #[cfg_attr(feature = "serde", serde(rename(serialize = "interfaces")))] + #[cfg_attr(feature = "serde", serde(rename = "interfaces"))] pub interfaces: Vec, } @@ -1377,11 +1377,11 @@ pub mod msg_network_state_req { /// Request state of Piksi network interfaces. Output will be sent in /// MSG_NETWORK_STATE_RESP messages. /// - #[cfg_attr(feature = "serde", derive(serde::Serialize))] + #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] #[derive(Debug, PartialEq, Clone)] pub struct MsgNetworkStateReq { /// The message sender_id - #[cfg_attr(feature = "serde", serde(skip_serializing))] + #[cfg_attr(feature = "serde", serde(skip_serializing, alias = "sender"))] pub sender_id: Option, } @@ -1442,35 +1442,35 @@ pub mod msg_network_state_resp { /// The state of a network interface on the Piksi. Data is made to reflect /// output of ifaddrs struct returned by getifaddrs in c. /// - #[cfg_attr(feature = "serde", derive(serde::Serialize))] + #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] #[derive(Debug, PartialEq, Clone)] pub struct MsgNetworkStateResp { /// The message sender_id - #[cfg_attr(feature = "serde", serde(skip_serializing))] + #[cfg_attr(feature = "serde", serde(skip_serializing, alias = "sender"))] pub sender_id: Option, /// IPv4 address (all zero when unavailable) - #[cfg_attr(feature = "serde", serde(rename(serialize = "ipv4_address")))] + #[cfg_attr(feature = "serde", serde(rename = "ipv4_address"))] pub ipv4_address: [u8; 4], /// IPv4 netmask CIDR notation - #[cfg_attr(feature = "serde", serde(rename(serialize = "ipv4_mask_size")))] + #[cfg_attr(feature = "serde", serde(rename = "ipv4_mask_size"))] pub ipv4_mask_size: u8, /// IPv6 address (all zero when unavailable) - #[cfg_attr(feature = "serde", serde(rename(serialize = "ipv6_address")))] + #[cfg_attr(feature = "serde", serde(rename = "ipv6_address"))] pub ipv6_address: [u8; 16], /// IPv6 netmask CIDR notation - #[cfg_attr(feature = "serde", serde(rename(serialize = "ipv6_mask_size")))] + #[cfg_attr(feature = "serde", serde(rename = "ipv6_mask_size"))] pub ipv6_mask_size: u8, /// Number of Rx bytes - #[cfg_attr(feature = "serde", serde(rename(serialize = "rx_bytes")))] + #[cfg_attr(feature = "serde", serde(rename = "rx_bytes"))] pub rx_bytes: u32, /// Number of Tx bytes - #[cfg_attr(feature = "serde", serde(rename(serialize = "tx_bytes")))] + #[cfg_attr(feature = "serde", serde(rename = "tx_bytes"))] pub tx_bytes: u32, /// Interface Name - #[cfg_attr(feature = "serde", serde(rename(serialize = "interface_name")))] + #[cfg_attr(feature = "serde", serde(rename = "interface_name"))] pub interface_name: SbpString<[u8; 16], Unterminated>, /// Interface flags from SIOCGIFFLAGS - #[cfg_attr(feature = "serde", serde(rename(serialize = "flags")))] + #[cfg_attr(feature = "serde", serde(rename = "flags"))] pub flags: u32, } @@ -1767,14 +1767,14 @@ pub mod msg_reset { /// /// This message from the host resets the Piksi back into the bootloader. /// - #[cfg_attr(feature = "serde", derive(serde::Serialize))] + #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] #[derive(Debug, PartialEq, Clone)] pub struct MsgReset { /// The message sender_id - #[cfg_attr(feature = "serde", serde(skip_serializing))] + #[cfg_attr(feature = "serde", serde(skip_serializing, alias = "sender"))] pub sender_id: Option, /// Reset flags - #[cfg_attr(feature = "serde", serde(rename(serialize = "flags")))] + #[cfg_attr(feature = "serde", serde(rename = "flags"))] pub flags: u32, } @@ -1887,11 +1887,11 @@ pub mod msg_reset_dep { /// /// This message from the host resets the Piksi back into the bootloader. /// - #[cfg_attr(feature = "serde", derive(serde::Serialize))] + #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] #[derive(Debug, PartialEq, Clone)] pub struct MsgResetDep { /// The message sender_id - #[cfg_attr(feature = "serde", serde(skip_serializing))] + #[cfg_attr(feature = "serde", serde(skip_serializing, alias = "sender"))] pub sender_id: Option, } @@ -1952,14 +1952,14 @@ pub mod msg_reset_filters { /// This message resets either the DGNSS Kalman filters or Integer Ambiguity /// Resolution (IAR) process. /// - #[cfg_attr(feature = "serde", derive(serde::Serialize))] + #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] #[derive(Debug, PartialEq, Clone)] pub struct MsgResetFilters { /// The message sender_id - #[cfg_attr(feature = "serde", serde(skip_serializing))] + #[cfg_attr(feature = "serde", serde(skip_serializing, alias = "sender"))] pub sender_id: Option, /// Filter flags - #[cfg_attr(feature = "serde", serde(rename(serialize = "filter")))] + #[cfg_attr(feature = "serde", serde(rename = "filter"))] pub filter: u8, } @@ -2079,11 +2079,11 @@ pub mod msg_set_time { /// This message sets up timing functionality using a coarse GPS time estimate /// sent by the host. /// - #[cfg_attr(feature = "serde", derive(serde::Serialize))] + #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] #[derive(Debug, PartialEq, Clone)] pub struct MsgSetTime { /// The message sender_id - #[cfg_attr(feature = "serde", serde(skip_serializing))] + #[cfg_attr(feature = "serde", serde(skip_serializing, alias = "sender"))] pub sender_id: Option, } @@ -2143,32 +2143,32 @@ pub mod msg_specan { /// /// Spectrum analyzer packet. /// - #[cfg_attr(feature = "serde", derive(serde::Serialize))] + #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] #[derive(Debug, PartialEq, Clone)] pub struct MsgSpecan { /// The message sender_id - #[cfg_attr(feature = "serde", serde(skip_serializing))] + #[cfg_attr(feature = "serde", serde(skip_serializing, alias = "sender"))] pub sender_id: Option, /// Channel ID - #[cfg_attr(feature = "serde", serde(rename(serialize = "channel_tag")))] + #[cfg_attr(feature = "serde", serde(rename = "channel_tag"))] pub channel_tag: u16, /// Receiver time of this observation - #[cfg_attr(feature = "serde", serde(rename(serialize = "t")))] + #[cfg_attr(feature = "serde", serde(rename = "t"))] pub t: GpsTime, /// Reference frequency of this packet - #[cfg_attr(feature = "serde", serde(rename(serialize = "freq_ref")))] + #[cfg_attr(feature = "serde", serde(rename = "freq_ref"))] pub freq_ref: f32, /// Frequency step of points in this packet - #[cfg_attr(feature = "serde", serde(rename(serialize = "freq_step")))] + #[cfg_attr(feature = "serde", serde(rename = "freq_step"))] pub freq_step: f32, /// Reference amplitude of this packet - #[cfg_attr(feature = "serde", serde(rename(serialize = "amplitude_ref")))] + #[cfg_attr(feature = "serde", serde(rename = "amplitude_ref"))] pub amplitude_ref: f32, /// Amplitude unit value of points in this packet - #[cfg_attr(feature = "serde", serde(rename(serialize = "amplitude_unit")))] + #[cfg_attr(feature = "serde", serde(rename = "amplitude_unit"))] pub amplitude_unit: f32, /// Amplitude values (in the above units) of points in this packet - #[cfg_attr(feature = "serde", serde(rename(serialize = "amplitude_value")))] + #[cfg_attr(feature = "serde", serde(rename = "amplitude_value"))] pub amplitude_value: Vec, } @@ -2257,32 +2257,32 @@ pub mod msg_specan_dep { /// /// Deprecated. /// - #[cfg_attr(feature = "serde", derive(serde::Serialize))] + #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] #[derive(Debug, PartialEq, Clone)] pub struct MsgSpecanDep { /// The message sender_id - #[cfg_attr(feature = "serde", serde(skip_serializing))] + #[cfg_attr(feature = "serde", serde(skip_serializing, alias = "sender"))] pub sender_id: Option, /// Channel ID - #[cfg_attr(feature = "serde", serde(rename(serialize = "channel_tag")))] + #[cfg_attr(feature = "serde", serde(rename = "channel_tag"))] pub channel_tag: u16, /// Receiver time of this observation - #[cfg_attr(feature = "serde", serde(rename(serialize = "t")))] + #[cfg_attr(feature = "serde", serde(rename = "t"))] pub t: GpsTimeDep, /// Reference frequency of this packet - #[cfg_attr(feature = "serde", serde(rename(serialize = "freq_ref")))] + #[cfg_attr(feature = "serde", serde(rename = "freq_ref"))] pub freq_ref: f32, /// Frequency step of points in this packet - #[cfg_attr(feature = "serde", serde(rename(serialize = "freq_step")))] + #[cfg_attr(feature = "serde", serde(rename = "freq_step"))] pub freq_step: f32, /// Reference amplitude of this packet - #[cfg_attr(feature = "serde", serde(rename(serialize = "amplitude_ref")))] + #[cfg_attr(feature = "serde", serde(rename = "amplitude_ref"))] pub amplitude_ref: f32, /// Amplitude unit value of points in this packet - #[cfg_attr(feature = "serde", serde(rename(serialize = "amplitude_unit")))] + #[cfg_attr(feature = "serde", serde(rename = "amplitude_unit"))] pub amplitude_unit: f32, /// Amplitude values (in the above units) of points in this packet - #[cfg_attr(feature = "serde", serde(rename(serialize = "amplitude_value")))] + #[cfg_attr(feature = "serde", serde(rename = "amplitude_value"))] pub amplitude_value: Vec, } @@ -2373,21 +2373,21 @@ pub mod msg_thread_state { /// system (RTOS) thread usage statistics for the named thread. The reported /// percentage values must be normalized. /// - #[cfg_attr(feature = "serde", derive(serde::Serialize))] + #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] #[derive(Debug, PartialEq, Clone)] pub struct MsgThreadState { /// The message sender_id - #[cfg_attr(feature = "serde", serde(skip_serializing))] + #[cfg_attr(feature = "serde", serde(skip_serializing, alias = "sender"))] pub sender_id: Option, /// Thread name (NULL terminated) - #[cfg_attr(feature = "serde", serde(rename(serialize = "name")))] + #[cfg_attr(feature = "serde", serde(rename = "name"))] pub name: SbpString<[u8; 20], NullTerminated>, /// Percentage cpu use for this thread. Values range from 0 - 1000 and needs /// to be renormalized to 100 - #[cfg_attr(feature = "serde", serde(rename(serialize = "cpu")))] + #[cfg_attr(feature = "serde", serde(rename = "cpu"))] pub cpu: u16, /// Free stack space for this thread - #[cfg_attr(feature = "serde", serde(rename(serialize = "stack_free")))] + #[cfg_attr(feature = "serde", serde(rename = "stack_free"))] pub stack_free: u32, } @@ -2467,26 +2467,26 @@ pub mod msg_uart_state { /// timeliness of received base observations while the period indicates their /// likelihood of transmission. /// - #[cfg_attr(feature = "serde", derive(serde::Serialize))] + #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] #[derive(Debug, PartialEq, Clone)] pub struct MsgUartState { /// The message sender_id - #[cfg_attr(feature = "serde", serde(skip_serializing))] + #[cfg_attr(feature = "serde", serde(skip_serializing, alias = "sender"))] pub sender_id: Option, /// State of UART A - #[cfg_attr(feature = "serde", serde(rename(serialize = "uart_a")))] + #[cfg_attr(feature = "serde", serde(rename = "uart_a"))] pub uart_a: UARTChannel, /// State of UART B - #[cfg_attr(feature = "serde", serde(rename(serialize = "uart_b")))] + #[cfg_attr(feature = "serde", serde(rename = "uart_b"))] pub uart_b: UARTChannel, /// State of UART FTDI (USB logger) - #[cfg_attr(feature = "serde", serde(rename(serialize = "uart_ftdi")))] + #[cfg_attr(feature = "serde", serde(rename = "uart_ftdi"))] pub uart_ftdi: UARTChannel, /// UART communication latency - #[cfg_attr(feature = "serde", serde(rename(serialize = "latency")))] + #[cfg_attr(feature = "serde", serde(rename = "latency"))] pub latency: Latency, /// Observation receipt period - #[cfg_attr(feature = "serde", serde(rename(serialize = "obs_period")))] + #[cfg_attr(feature = "serde", serde(rename = "obs_period"))] pub obs_period: Period, } @@ -2567,23 +2567,23 @@ pub mod msg_uart_state_depa { /// /// Deprecated /// - #[cfg_attr(feature = "serde", derive(serde::Serialize))] + #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] #[derive(Debug, PartialEq, Clone)] pub struct MsgUartStateDepa { /// The message sender_id - #[cfg_attr(feature = "serde", serde(skip_serializing))] + #[cfg_attr(feature = "serde", serde(skip_serializing, alias = "sender"))] pub sender_id: Option, /// State of UART A - #[cfg_attr(feature = "serde", serde(rename(serialize = "uart_a")))] + #[cfg_attr(feature = "serde", serde(rename = "uart_a"))] pub uart_a: UARTChannel, /// State of UART B - #[cfg_attr(feature = "serde", serde(rename(serialize = "uart_b")))] + #[cfg_attr(feature = "serde", serde(rename = "uart_b"))] pub uart_b: UARTChannel, /// State of UART FTDI (USB logger) - #[cfg_attr(feature = "serde", serde(rename(serialize = "uart_ftdi")))] + #[cfg_attr(feature = "serde", serde(rename = "uart_ftdi"))] pub uart_ftdi: UARTChannel, /// UART communication latency - #[cfg_attr(feature = "serde", serde(rename(serialize = "latency")))] + #[cfg_attr(feature = "serde", serde(rename = "latency"))] pub latency: Latency, } @@ -2664,23 +2664,23 @@ pub mod network_usage { /// may vary, both a timestamp and period field is provided, though may not /// necessarily be populated with a value. /// - #[cfg_attr(feature = "serde", derive(serde::Serialize))] + #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] #[derive(Debug, PartialEq, Clone)] pub struct NetworkUsage { /// Duration over which the measurement was collected - #[cfg_attr(feature = "serde", serde(rename(serialize = "duration")))] + #[cfg_attr(feature = "serde", serde(rename = "duration"))] pub duration: u64, /// Number of bytes handled in total within period - #[cfg_attr(feature = "serde", serde(rename(serialize = "total_bytes")))] + #[cfg_attr(feature = "serde", serde(rename = "total_bytes"))] pub total_bytes: u64, /// Number of bytes transmitted within period - #[cfg_attr(feature = "serde", serde(rename(serialize = "rx_bytes")))] + #[cfg_attr(feature = "serde", serde(rename = "rx_bytes"))] pub rx_bytes: u32, /// Number of bytes received within period - #[cfg_attr(feature = "serde", serde(rename(serialize = "tx_bytes")))] + #[cfg_attr(feature = "serde", serde(rename = "tx_bytes"))] pub tx_bytes: u32, /// Interface Name - #[cfg_attr(feature = "serde", serde(rename(serialize = "interface_name")))] + #[cfg_attr(feature = "serde", serde(rename = "interface_name"))] pub interface_name: SbpString<[u8; 16], Unterminated>, } @@ -2732,20 +2732,20 @@ pub mod period { /// increase the period. Long periods can cause momentary RTK solution /// outages. /// - #[cfg_attr(feature = "serde", derive(serde::Serialize))] + #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] #[derive(Debug, PartialEq, Clone)] pub struct Period { /// Average period - #[cfg_attr(feature = "serde", serde(rename(serialize = "avg")))] + #[cfg_attr(feature = "serde", serde(rename = "avg"))] pub avg: i32, /// Minimum period - #[cfg_attr(feature = "serde", serde(rename(serialize = "pmin")))] + #[cfg_attr(feature = "serde", serde(rename = "pmin"))] pub pmin: i32, /// Maximum period - #[cfg_attr(feature = "serde", serde(rename(serialize = "pmax")))] + #[cfg_attr(feature = "serde", serde(rename = "pmax"))] pub pmax: i32, /// Smoothed estimate of the current period - #[cfg_attr(feature = "serde", serde(rename(serialize = "current")))] + #[cfg_attr(feature = "serde", serde(rename = "current"))] pub current: i32, } @@ -2789,26 +2789,26 @@ pub mod uart_channel { /// Throughput, utilization, and error counts on the RX/TX buffers of this /// UART channel. The reported percentage values must be normalized. /// - #[cfg_attr(feature = "serde", derive(serde::Serialize))] + #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] #[derive(Debug, PartialEq, Clone)] pub struct UARTChannel { /// UART transmit throughput - #[cfg_attr(feature = "serde", serde(rename(serialize = "tx_throughput")))] + #[cfg_attr(feature = "serde", serde(rename = "tx_throughput"))] pub tx_throughput: f32, /// UART receive throughput - #[cfg_attr(feature = "serde", serde(rename(serialize = "rx_throughput")))] + #[cfg_attr(feature = "serde", serde(rename = "rx_throughput"))] pub rx_throughput: f32, /// UART CRC error count - #[cfg_attr(feature = "serde", serde(rename(serialize = "crc_error_count")))] + #[cfg_attr(feature = "serde", serde(rename = "crc_error_count"))] pub crc_error_count: u16, /// UART IO error count - #[cfg_attr(feature = "serde", serde(rename(serialize = "io_error_count")))] + #[cfg_attr(feature = "serde", serde(rename = "io_error_count"))] pub io_error_count: u16, /// UART transmit buffer percentage utilization (ranges from 0 to 255) - #[cfg_attr(feature = "serde", serde(rename(serialize = "tx_buffer_level")))] + #[cfg_attr(feature = "serde", serde(rename = "tx_buffer_level"))] pub tx_buffer_level: u8, /// UART receive buffer percentage utilization (ranges from 0 to 255) - #[cfg_attr(feature = "serde", serde(rename(serialize = "rx_buffer_level")))] + #[cfg_attr(feature = "serde", serde(rename = "rx_buffer_level"))] pub rx_buffer_level: u8, } diff --git a/rust/sbp/src/messages/sbas.rs b/rust/sbp/src/messages/sbas.rs index a01de475e2..5d19501cf0 100644 --- a/rust/sbp/src/messages/sbas.rs +++ b/rust/sbp/src/messages/sbas.rs @@ -27,23 +27,23 @@ pub mod msg_sbas_raw { /// This message is sent once per second per SBAS satellite. ME checks the /// parity of the data block and sends only blocks that pass the check. /// - #[cfg_attr(feature = "serde", derive(serde::Serialize))] + #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] #[derive(Debug, PartialEq, Clone)] pub struct MsgSbasRaw { /// The message sender_id - #[cfg_attr(feature = "serde", serde(skip_serializing))] + #[cfg_attr(feature = "serde", serde(skip_serializing, alias = "sender"))] pub sender_id: Option, /// GNSS signal identifier. - #[cfg_attr(feature = "serde", serde(rename(serialize = "sid")))] + #[cfg_attr(feature = "serde", serde(rename = "sid"))] pub sid: GnssSignal, /// GPS time-of-week at the start of the data block. - #[cfg_attr(feature = "serde", serde(rename(serialize = "tow")))] + #[cfg_attr(feature = "serde", serde(rename = "tow"))] pub tow: u32, /// SBAS message type (0-63) - #[cfg_attr(feature = "serde", serde(rename(serialize = "message_type")))] + #[cfg_attr(feature = "serde", serde(rename = "message_type"))] pub message_type: u8, /// Raw SBAS data field of 212 bits (last byte padded with zeros). - #[cfg_attr(feature = "serde", serde(rename(serialize = "data")))] + #[cfg_attr(feature = "serde", serde(rename = "data"))] pub data: [u8; 27], } diff --git a/rust/sbp/src/messages/settings.rs b/rust/sbp/src/messages/settings.rs index 56c878259f..7861df2536 100644 --- a/rust/sbp/src/messages/settings.rs +++ b/rust/sbp/src/messages/settings.rs @@ -59,11 +59,11 @@ pub mod msg_settings_read_by_index_done { /// /// The settings message for indicating end of the settings values. /// - #[cfg_attr(feature = "serde", derive(serde::Serialize))] + #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] #[derive(Debug, PartialEq, Clone)] pub struct MsgSettingsReadByIndexDone { /// The message sender_id - #[cfg_attr(feature = "serde", serde(skip_serializing))] + #[cfg_attr(feature = "serde", serde(skip_serializing, alias = "sender"))] pub sender_id: Option, } @@ -123,15 +123,15 @@ pub mod msg_settings_read_by_index_req { /// The settings message for iterating through the settings values. A device /// will respond to this message with a "MSG_SETTINGS_READ_BY_INDEX_RESP". /// - #[cfg_attr(feature = "serde", derive(serde::Serialize))] + #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] #[derive(Debug, PartialEq, Clone)] pub struct MsgSettingsReadByIndexReq { /// The message sender_id - #[cfg_attr(feature = "serde", serde(skip_serializing))] + #[cfg_attr(feature = "serde", serde(skip_serializing, alias = "sender"))] pub sender_id: Option, /// An index into the device settings, with values ranging from 0 to /// length(settings). - #[cfg_attr(feature = "serde", serde(rename(serialize = "index")))] + #[cfg_attr(feature = "serde", serde(rename = "index"))] pub index: u16, } @@ -204,19 +204,19 @@ pub mod msg_settings_read_by_index_resp { /// example string that could be sent from the device is /// "simulator\0enabled\0True\0enum:True,False\0". /// - #[cfg_attr(feature = "serde", derive(serde::Serialize))] + #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] #[derive(Debug, PartialEq, Clone)] pub struct MsgSettingsReadByIndexResp { /// The message sender_id - #[cfg_attr(feature = "serde", serde(skip_serializing))] + #[cfg_attr(feature = "serde", serde(skip_serializing, alias = "sender"))] pub sender_id: Option, /// An index into the device settings, with values ranging from 0 to /// length(settings) - #[cfg_attr(feature = "serde", serde(rename(serialize = "index")))] + #[cfg_attr(feature = "serde", serde(rename = "index"))] pub index: u16, /// A NULL-terminated and delimited string with contents /// "SECTION_SETTING\0SETTING\0VALUE\0FORMAT_TYPE\0" - #[cfg_attr(feature = "serde", serde(rename(serialize = "setting")))] + #[cfg_attr(feature = "serde", serde(rename = "setting"))] pub setting: SbpString, Multipart>, } @@ -290,15 +290,15 @@ pub mod msg_settings_read_req { /// device should respond with a MSG_SETTINGS_READ_RESP message (msg_id /// 0x00A5). /// - #[cfg_attr(feature = "serde", derive(serde::Serialize))] + #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] #[derive(Debug, PartialEq, Clone)] pub struct MsgSettingsReadReq { /// The message sender_id - #[cfg_attr(feature = "serde", serde(skip_serializing))] + #[cfg_attr(feature = "serde", serde(skip_serializing, alias = "sender"))] pub sender_id: Option, /// A NULL-terminated and NULL-delimited string with contents /// "SECTION_SETTING\0SETTING\0" - #[cfg_attr(feature = "serde", serde(rename(serialize = "setting")))] + #[cfg_attr(feature = "serde", serde(rename = "setting"))] pub setting: SbpString, Multipart>, } @@ -367,15 +367,15 @@ pub mod msg_settings_read_resp { /// the NULL character and where quotation marks are omitted. An example /// string that could be sent from device is "solution\0soln_freq\010\0". /// - #[cfg_attr(feature = "serde", derive(serde::Serialize))] + #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] #[derive(Debug, PartialEq, Clone)] pub struct MsgSettingsReadResp { /// The message sender_id - #[cfg_attr(feature = "serde", serde(skip_serializing))] + #[cfg_attr(feature = "serde", serde(skip_serializing, alias = "sender"))] pub sender_id: Option, /// A NULL-terminated and NULL-delimited string with contents /// "SECTION_SETTING\0SETTING\0VALUE\0" - #[cfg_attr(feature = "serde", serde(rename(serialize = "setting")))] + #[cfg_attr(feature = "serde", serde(rename = "setting"))] pub setting: SbpString, Multipart>, } @@ -441,15 +441,15 @@ pub mod msg_settings_register { /// settings daemon. The host should reply with MSG_SETTINGS_WRITE for this /// setting to set the initial value. /// - #[cfg_attr(feature = "serde", derive(serde::Serialize))] + #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] #[derive(Debug, PartialEq, Clone)] pub struct MsgSettingsRegister { /// The message sender_id - #[cfg_attr(feature = "serde", serde(skip_serializing))] + #[cfg_attr(feature = "serde", serde(skip_serializing, alias = "sender"))] pub sender_id: Option, /// A NULL-terminated and delimited string with contents /// "SECTION_SETTING\0SETTING\0VALUE". - #[cfg_attr(feature = "serde", serde(rename(serialize = "setting")))] + #[cfg_attr(feature = "serde", serde(rename = "setting"))] pub setting: SbpString, Multipart>, } @@ -516,19 +516,19 @@ pub mod msg_settings_register_resp { /// was already registered or is available in the permanent setting storage /// and had a different value. /// - #[cfg_attr(feature = "serde", derive(serde::Serialize))] + #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] #[derive(Debug, PartialEq, Clone)] pub struct MsgSettingsRegisterResp { /// The message sender_id - #[cfg_attr(feature = "serde", serde(skip_serializing))] + #[cfg_attr(feature = "serde", serde(skip_serializing, alias = "sender"))] pub sender_id: Option, /// Register status - #[cfg_attr(feature = "serde", serde(rename(serialize = "status")))] + #[cfg_attr(feature = "serde", serde(rename = "status"))] pub status: u8, /// A NULL-terminated and delimited string with contents /// "SECTION_SETTING\0SETTING\0VALUE". The meaning of value is defined /// according to the status field. - #[cfg_attr(feature = "serde", serde(rename(serialize = "setting")))] + #[cfg_attr(feature = "serde", serde(rename = "setting"))] pub setting: SbpString, Multipart>, } @@ -664,11 +664,11 @@ pub mod msg_settings_save { /// The save settings message persists the device's current settings /// configuration to its onboard flash memory file system. /// - #[cfg_attr(feature = "serde", derive(serde::Serialize))] + #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] #[derive(Debug, PartialEq, Clone)] pub struct MsgSettingsSave { /// The message sender_id - #[cfg_attr(feature = "serde", serde(skip_serializing))] + #[cfg_attr(feature = "serde", serde(skip_serializing, alias = "sender"))] pub sender_id: Option, } @@ -733,15 +733,15 @@ pub mod msg_settings_write { /// example string that could be sent to a device is /// "solution\0soln_freq\010\0". /// - #[cfg_attr(feature = "serde", derive(serde::Serialize))] + #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] #[derive(Debug, PartialEq, Clone)] pub struct MsgSettingsWrite { /// The message sender_id - #[cfg_attr(feature = "serde", serde(skip_serializing))] + #[cfg_attr(feature = "serde", serde(skip_serializing, alias = "sender"))] pub sender_id: Option, /// A NULL-terminated and NULL-delimited string with contents /// "SECTION_SETTING\0SETTING\0VALUE\0" - #[cfg_attr(feature = "serde", serde(rename(serialize = "setting")))] + #[cfg_attr(feature = "serde", serde(rename = "setting"))] pub setting: SbpString, Multipart>, } @@ -811,18 +811,18 @@ pub mod msg_settings_write_resp { /// An example string that could be sent from device is /// "solution\0soln_freq\010\0". /// - #[cfg_attr(feature = "serde", derive(serde::Serialize))] + #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] #[derive(Debug, PartialEq, Clone)] pub struct MsgSettingsWriteResp { /// The message sender_id - #[cfg_attr(feature = "serde", serde(skip_serializing))] + #[cfg_attr(feature = "serde", serde(skip_serializing, alias = "sender"))] pub sender_id: Option, /// Write status - #[cfg_attr(feature = "serde", serde(rename(serialize = "status")))] + #[cfg_attr(feature = "serde", serde(rename = "status"))] pub status: u8, /// A NULL-terminated and delimited string with contents /// "SECTION_SETTING\0SETTING\0VALUE\0" - #[cfg_attr(feature = "serde", serde(rename(serialize = "setting")))] + #[cfg_attr(feature = "serde", serde(rename = "setting"))] pub setting: SbpString, Multipart>, } diff --git a/rust/sbp/src/messages/signing.rs b/rust/sbp/src/messages/signing.rs index bb529dfb7f..8dcbf769fc 100644 --- a/rust/sbp/src/messages/signing.rs +++ b/rust/sbp/src/messages/signing.rs @@ -23,13 +23,13 @@ pub mod msg_ed25519_certificate { use crate::messages::gnss::*; use crate::messages::lib::*; /// ED25519 certificate, split over multiple messages - #[cfg_attr(feature = "serde", derive(serde::Serialize))] + #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] #[derive(Debug, PartialEq, Clone)] pub struct MsgEd25519Certificate { /// The message sender_id - #[cfg_attr(feature = "serde", serde(skip_serializing))] + #[cfg_attr(feature = "serde", serde(skip_serializing, alias = "sender"))] pub sender_id: Option, - #[cfg_attr(feature = "serde", serde(rename(serialize = "stub")))] + #[cfg_attr(feature = "serde", serde(rename = "stub"))] pub stub: Vec, } @@ -90,13 +90,13 @@ pub mod msg_ed25519_signature { use crate::messages::gnss::*; use crate::messages::lib::*; /// ED25519 signature for groups of RTCM messages - #[cfg_attr(feature = "serde", derive(serde::Serialize))] + #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] #[derive(Debug, PartialEq, Clone)] pub struct MsgEd25519Signature { /// The message sender_id - #[cfg_attr(feature = "serde", serde(skip_serializing))] + #[cfg_attr(feature = "serde", serde(skip_serializing, alias = "sender"))] pub sender_id: Option, - #[cfg_attr(feature = "serde", serde(rename(serialize = "stub")))] + #[cfg_attr(feature = "serde", serde(rename = "stub"))] pub stub: Vec, } diff --git a/rust/sbp/src/messages/solution_meta.rs b/rust/sbp/src/messages/solution_meta.rs index 56412cb525..d65f172b23 100644 --- a/rust/sbp/src/messages/solution_meta.rs +++ b/rust/sbp/src/messages/solution_meta.rs @@ -32,11 +32,11 @@ pub mod gnss_input_type { /// Metadata around the GNSS sensors involved in the fuzed solution. /// Accessible through sol_in\[N\].flags in a MSG_SOLN_META. /// - #[cfg_attr(feature = "serde", derive(serde::Serialize))] + #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] #[derive(Debug, PartialEq, Clone)] pub struct GnssInputType { /// flags that store all relevant info specific to this sensor type. - #[cfg_attr(feature = "serde", serde(rename(serialize = "flags")))] + #[cfg_attr(feature = "serde", serde(rename = "flags"))] pub flags: u8, } @@ -124,11 +124,11 @@ pub mod imu_input_type { /// Metadata around the IMU sensors involved in the fuzed solution. Accessible /// through sol_in\[N\].flags in a MSG_SOLN_META. /// - #[cfg_attr(feature = "serde", derive(serde::Serialize))] + #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] #[derive(Debug, PartialEq, Clone)] pub struct ImuInputType { /// Instrument time, grade, and architecture for a sensor. - #[cfg_attr(feature = "serde", serde(rename(serialize = "flags")))] + #[cfg_attr(feature = "serde", serde(rename = "flags"))] pub flags: u8, } @@ -324,40 +324,40 @@ pub mod msg_soln_meta { /// complete in the Fusion Engine, when output solution is the last received /// valid GNSS solution and its tow is not a TOM. /// - #[cfg_attr(feature = "serde", derive(serde::Serialize))] + #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] #[derive(Debug, PartialEq, Clone)] pub struct MsgSolnMeta { /// The message sender_id - #[cfg_attr(feature = "serde", serde(skip_serializing))] + #[cfg_attr(feature = "serde", serde(skip_serializing, alias = "sender"))] pub sender_id: Option, /// GPS time of week rounded to the nearest millisecond - #[cfg_attr(feature = "serde", serde(rename(serialize = "tow")))] + #[cfg_attr(feature = "serde", serde(rename = "tow"))] pub tow: u32, /// Position Dilution of Precision as per last available DOPS from PVT /// engine (0xFFFF indicates invalid) - #[cfg_attr(feature = "serde", serde(rename(serialize = "pdop")))] + #[cfg_attr(feature = "serde", serde(rename = "pdop"))] pub pdop: u16, /// Horizontal Dilution of Precision as per last available DOPS from PVT /// engine (0xFFFF indicates invalid) - #[cfg_attr(feature = "serde", serde(rename(serialize = "hdop")))] + #[cfg_attr(feature = "serde", serde(rename = "hdop"))] pub hdop: u16, /// Vertical Dilution of Precision as per last available DOPS from PVT /// engine (0xFFFF indicates invalid) - #[cfg_attr(feature = "serde", serde(rename(serialize = "vdop")))] + #[cfg_attr(feature = "serde", serde(rename = "vdop"))] pub vdop: u16, /// Age of corrections as per last available AGE_CORRECTIONS from PVT engine /// (0xFFFF indicates invalid) - #[cfg_attr(feature = "serde", serde(rename(serialize = "age_corrections")))] + #[cfg_attr(feature = "serde", serde(rename = "age_corrections"))] pub age_corrections: u16, /// Age and Time Status of the last received valid GNSS solution. - #[cfg_attr(feature = "serde", serde(rename(serialize = "age_gnss")))] + #[cfg_attr(feature = "serde", serde(rename = "age_gnss"))] pub age_gnss: u32, /// Array of Metadata describing the sensors potentially involved in the /// solution. Each element in the array represents a single sensor type and /// consists of flags containing (meta)data pertaining to that specific /// single sensor. Refer to each (XX)InputType descriptor in the present /// doc. - #[cfg_attr(feature = "serde", serde(rename(serialize = "sol_in")))] + #[cfg_attr(feature = "serde", serde(rename = "sol_in"))] pub sol_in: Vec, } @@ -528,46 +528,46 @@ pub mod msg_soln_meta_dep_a { /// in computing the Fuzed Solution. It focuses primarily, but not only, on /// GNSS metadata. /// - #[cfg_attr(feature = "serde", derive(serde::Serialize))] + #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] #[derive(Debug, PartialEq, Clone)] pub struct MsgSolnMetaDepA { /// The message sender_id - #[cfg_attr(feature = "serde", serde(skip_serializing))] + #[cfg_attr(feature = "serde", serde(skip_serializing, alias = "sender"))] pub sender_id: Option, /// Position Dilution of Precision as per last available DOPS from PVT /// engine (0xFFFF indicates invalid) - #[cfg_attr(feature = "serde", serde(rename(serialize = "pdop")))] + #[cfg_attr(feature = "serde", serde(rename = "pdop"))] pub pdop: u16, /// Horizontal Dilution of Precision as per last available DOPS from PVT /// engine (0xFFFF indicates invalid) - #[cfg_attr(feature = "serde", serde(rename(serialize = "hdop")))] + #[cfg_attr(feature = "serde", serde(rename = "hdop"))] pub hdop: u16, /// Vertical Dilution of Precision as per last available DOPS from PVT /// engine (0xFFFF indicates invalid) - #[cfg_attr(feature = "serde", serde(rename(serialize = "vdop")))] + #[cfg_attr(feature = "serde", serde(rename = "vdop"))] pub vdop: u16, /// Number of satellites as per last available solution from PVT engine - #[cfg_attr(feature = "serde", serde(rename(serialize = "n_sats")))] + #[cfg_attr(feature = "serde", serde(rename = "n_sats"))] pub n_sats: u8, /// Age of corrections as per last available AGE_CORRECTIONS from PVT engine /// (0xFFFF indicates invalid) - #[cfg_attr(feature = "serde", serde(rename(serialize = "age_corrections")))] + #[cfg_attr(feature = "serde", serde(rename = "age_corrections"))] pub age_corrections: u16, /// State of alignment and the status and receipt of the alignment inputs - #[cfg_attr(feature = "serde", serde(rename(serialize = "alignment_status")))] + #[cfg_attr(feature = "serde", serde(rename = "alignment_status"))] pub alignment_status: u8, /// Tow of last-used GNSS position measurement - #[cfg_attr(feature = "serde", serde(rename(serialize = "last_used_gnss_pos_tow")))] + #[cfg_attr(feature = "serde", serde(rename = "last_used_gnss_pos_tow"))] pub last_used_gnss_pos_tow: u32, /// Tow of last-used GNSS velocity measurement - #[cfg_attr(feature = "serde", serde(rename(serialize = "last_used_gnss_vel_tow")))] + #[cfg_attr(feature = "serde", serde(rename = "last_used_gnss_vel_tow"))] pub last_used_gnss_vel_tow: u32, /// Array of Metadata describing the sensors potentially involved in the /// solution. Each element in the array represents a single sensor type and /// consists of flags containing (meta)data pertaining to that specific /// single sensor. Refer to each (XX)InputType descriptor in the present /// doc. - #[cfg_attr(feature = "serde", serde(rename(serialize = "sol_in")))] + #[cfg_attr(feature = "serde", serde(rename = "sol_in"))] pub sol_in: Vec, } @@ -736,11 +736,11 @@ pub mod odo_input_type { /// Metadata around the Odometry sensors involved in the fuzed solution. /// Accessible through sol_in\[N\].flags in a MSG_SOLN_META. /// - #[cfg_attr(feature = "serde", derive(serde::Serialize))] + #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] #[derive(Debug, PartialEq, Clone)] pub struct OdoInputType { /// Instrument ODO rate, grade, and quality. - #[cfg_attr(feature = "serde", serde(rename(serialize = "flags")))] + #[cfg_attr(feature = "serde", serde(rename = "flags"))] pub flags: u8, } @@ -927,14 +927,14 @@ pub mod solution_input_type { /// flags, for each sensor type, is described in the relevant structures in /// this section. /// - #[cfg_attr(feature = "serde", derive(serde::Serialize))] + #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] #[derive(Debug, PartialEq, Clone)] pub struct SolutionInputType { /// The type of sensor - #[cfg_attr(feature = "serde", serde(rename(serialize = "sensor_type")))] + #[cfg_attr(feature = "serde", serde(rename = "sensor_type"))] pub sensor_type: u8, /// Refer to each InputType description - #[cfg_attr(feature = "serde", serde(rename(serialize = "flags")))] + #[cfg_attr(feature = "serde", serde(rename = "flags"))] pub flags: u8, } diff --git a/rust/sbp/src/messages/ssr.rs b/rust/sbp/src/messages/ssr.rs index 48147c93de..1190586afb 100644 --- a/rust/sbp/src/messages/ssr.rs +++ b/rust/sbp/src/messages/ssr.rs @@ -57,23 +57,23 @@ pub mod bounds_header { use crate::messages::gnss::*; use crate::messages::lib::*; /// Header for the Bounds messages - #[cfg_attr(feature = "serde", derive(serde::Serialize))] + #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] #[derive(Debug, PartialEq, Clone)] pub struct BoundsHeader { /// GNSS reference time of the bound - #[cfg_attr(feature = "serde", serde(rename(serialize = "time")))] + #[cfg_attr(feature = "serde", serde(rename = "time"))] pub time: GpsTimeSec, /// Number of messages in the dataset - #[cfg_attr(feature = "serde", serde(rename(serialize = "num_msgs")))] + #[cfg_attr(feature = "serde", serde(rename = "num_msgs"))] pub num_msgs: u8, /// Position of this message in the dataset - #[cfg_attr(feature = "serde", serde(rename(serialize = "seq_num")))] + #[cfg_attr(feature = "serde", serde(rename = "seq_num"))] pub seq_num: u8, /// Update interval between consecutive bounds. Similar to RTCM DF391. - #[cfg_attr(feature = "serde", serde(rename(serialize = "update_interval")))] + #[cfg_attr(feature = "serde", serde(rename = "update_interval"))] pub update_interval: u8, /// SSR Solution ID. - #[cfg_attr(feature = "serde", serde(rename(serialize = "sol_id")))] + #[cfg_attr(feature = "serde", serde(rename = "sol_id"))] pub sol_id: u8, } @@ -121,15 +121,15 @@ pub mod code_biases_content { /// Code biases are to be added to pseudorange. The corrections conform with /// RTCMv3 MT 1059 / 1065. /// - #[cfg_attr(feature = "serde", derive(serde::Serialize))] + #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] #[derive(Debug, PartialEq, Clone)] pub struct CodeBiasesContent { /// Signal encoded following RTCM specifications (DF380, DF381, DF382 and /// DF467). - #[cfg_attr(feature = "serde", serde(rename(serialize = "code")))] + #[cfg_attr(feature = "serde", serde(rename = "code"))] pub code: u8, /// Code bias value - #[cfg_attr(feature = "serde", serde(rename(serialize = "value")))] + #[cfg_attr(feature = "serde", serde(rename = "value"))] pub value: i16, } @@ -158,28 +158,28 @@ pub mod code_phase_biases_sat_sig { use crate::messages::gnss::*; use crate::messages::lib::*; /// Code and Phase Biases Bounds per Satellite-Signal couple - #[cfg_attr(feature = "serde", derive(serde::Serialize))] + #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] #[derive(Debug, PartialEq, Clone)] pub struct CodePhaseBiasesSatSig { /// Satellite ID. Similar to either RTCM DF068 (GPS), DF252 (Galileo), or /// DF488 (BDS) depending on the constellation. - #[cfg_attr(feature = "serde", serde(rename(serialize = "sat_id")))] + #[cfg_attr(feature = "serde", serde(rename = "sat_id"))] pub sat_id: u8, /// Signal and Tracking Mode Identifier. Similar to either RTCM DF380 (GPS), /// DF382 (Galileo) or DF467 (BDS) depending on the constellation. - #[cfg_attr(feature = "serde", serde(rename(serialize = "signal_id")))] + #[cfg_attr(feature = "serde", serde(rename = "signal_id"))] pub signal_id: u8, /// Code Bias Mean. Range: 0-1.275 m - #[cfg_attr(feature = "serde", serde(rename(serialize = "code_bias_bound_mu")))] + #[cfg_attr(feature = "serde", serde(rename = "code_bias_bound_mu"))] pub code_bias_bound_mu: u8, /// Code Bias Standard Deviation. Range: 0-1.275 m - #[cfg_attr(feature = "serde", serde(rename(serialize = "code_bias_bound_sig")))] + #[cfg_attr(feature = "serde", serde(rename = "code_bias_bound_sig"))] pub code_bias_bound_sig: u8, /// Phase Bias Mean. Range: 0-1.275 m - #[cfg_attr(feature = "serde", serde(rename(serialize = "phase_bias_bound_mu")))] + #[cfg_attr(feature = "serde", serde(rename = "phase_bias_bound_mu"))] pub phase_bias_bound_mu: u8, /// Phase Bias Standard Deviation. Range: 0-1.275 m - #[cfg_attr(feature = "serde", serde(rename(serialize = "phase_bias_bound_sig")))] + #[cfg_attr(feature = "serde", serde(rename = "phase_bias_bound_sig"))] pub phase_bias_bound_sig: u8, } @@ -231,28 +231,28 @@ pub mod grid_definition_header_dep_a { /// Defines the grid for MSG_SSR_GRIDDED_CORRECTION messages. Also includes an /// RLE encoded validity list. /// - #[cfg_attr(feature = "serde", derive(serde::Serialize))] + #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] #[derive(Debug, PartialEq, Clone)] pub struct GridDefinitionHeaderDepA { /// region_size (deg) = 10 / region_size_inverse 0 is an invalid value. - #[cfg_attr(feature = "serde", serde(rename(serialize = "region_size_inverse")))] + #[cfg_attr(feature = "serde", serde(rename = "region_size_inverse"))] pub region_size_inverse: u8, /// grid height (deg) = grid width (deg) = area_width / region_size 0 is an /// invalid value. - #[cfg_attr(feature = "serde", serde(rename(serialize = "area_width")))] + #[cfg_attr(feature = "serde", serde(rename = "area_width"))] pub area_width: u16, /// North-West corner latitude (deg) = region_size * lat_nw_corner_enc - 90 - #[cfg_attr(feature = "serde", serde(rename(serialize = "lat_nw_corner_enc")))] + #[cfg_attr(feature = "serde", serde(rename = "lat_nw_corner_enc"))] pub lat_nw_corner_enc: u16, /// North-West corner longitude (deg) = region_size * lon_nw_corner_enc - /// 180 - #[cfg_attr(feature = "serde", serde(rename(serialize = "lon_nw_corner_enc")))] + #[cfg_attr(feature = "serde", serde(rename = "lon_nw_corner_enc"))] pub lon_nw_corner_enc: u16, /// Number of messages in the dataset - #[cfg_attr(feature = "serde", serde(rename(serialize = "num_msgs")))] + #[cfg_attr(feature = "serde", serde(rename = "num_msgs"))] pub num_msgs: u8, /// Position of this message in the dataset - #[cfg_attr(feature = "serde", serde(rename(serialize = "seq_num")))] + #[cfg_attr(feature = "serde", serde(rename = "seq_num"))] pub seq_num: u8, } @@ -304,37 +304,34 @@ pub mod gridded_correction_header { /// The LPP message contains nested variable length arrays which are not /// supported in SBP, so each grid point will be identified by the index. /// - #[cfg_attr(feature = "serde", derive(serde::Serialize))] + #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] #[derive(Debug, PartialEq, Clone)] pub struct GriddedCorrectionHeader { /// Unique identifier of the tile set this tile belongs to. - #[cfg_attr(feature = "serde", serde(rename(serialize = "tile_set_id")))] + #[cfg_attr(feature = "serde", serde(rename = "tile_set_id"))] pub tile_set_id: u16, /// Unique identifier of this tile in the tile set. - #[cfg_attr(feature = "serde", serde(rename(serialize = "tile_id")))] + #[cfg_attr(feature = "serde", serde(rename = "tile_id"))] pub tile_id: u16, /// GNSS reference time of the correction - #[cfg_attr(feature = "serde", serde(rename(serialize = "time")))] + #[cfg_attr(feature = "serde", serde(rename = "time"))] pub time: GpsTimeSec, /// Number of messages in the dataset - #[cfg_attr(feature = "serde", serde(rename(serialize = "num_msgs")))] + #[cfg_attr(feature = "serde", serde(rename = "num_msgs"))] pub num_msgs: u16, /// Position of this message in the dataset - #[cfg_attr(feature = "serde", serde(rename(serialize = "seq_num")))] + #[cfg_attr(feature = "serde", serde(rename = "seq_num"))] pub seq_num: u16, /// Update interval between consecutive corrections. Encoded following RTCM /// DF391 specification. - #[cfg_attr(feature = "serde", serde(rename(serialize = "update_interval")))] + #[cfg_attr(feature = "serde", serde(rename = "update_interval"))] pub update_interval: u8, /// IOD of the SSR atmospheric correction - #[cfg_attr(feature = "serde", serde(rename(serialize = "iod_atmo")))] + #[cfg_attr(feature = "serde", serde(rename = "iod_atmo"))] pub iod_atmo: u8, /// Quality of the troposphere data. Encoded following RTCM DF389 /// specification in units of m. - #[cfg_attr( - feature = "serde", - serde(rename(serialize = "tropo_quality_indicator")) - )] + #[cfg_attr(feature = "serde", serde(rename = "tropo_quality_indicator"))] pub tropo_quality_indicator: u8, } @@ -394,31 +391,28 @@ pub mod gridded_correction_header_dep_a { /// The 3GPP message contains nested variable length arrays which are not /// supported in SBP, so each grid point will be identified by the index. /// - #[cfg_attr(feature = "serde", derive(serde::Serialize))] + #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] #[derive(Debug, PartialEq, Clone)] pub struct GriddedCorrectionHeaderDepA { /// GNSS reference time of the correction - #[cfg_attr(feature = "serde", serde(rename(serialize = "time")))] + #[cfg_attr(feature = "serde", serde(rename = "time"))] pub time: GpsTimeSec, /// Number of messages in the dataset - #[cfg_attr(feature = "serde", serde(rename(serialize = "num_msgs")))] + #[cfg_attr(feature = "serde", serde(rename = "num_msgs"))] pub num_msgs: u16, /// Position of this message in the dataset - #[cfg_attr(feature = "serde", serde(rename(serialize = "seq_num")))] + #[cfg_attr(feature = "serde", serde(rename = "seq_num"))] pub seq_num: u16, /// Update interval between consecutive corrections. Encoded following RTCM /// DF391 specification. - #[cfg_attr(feature = "serde", serde(rename(serialize = "update_interval")))] + #[cfg_attr(feature = "serde", serde(rename = "update_interval"))] pub update_interval: u8, /// IOD of the SSR atmospheric correction - #[cfg_attr(feature = "serde", serde(rename(serialize = "iod_atmo")))] + #[cfg_attr(feature = "serde", serde(rename = "iod_atmo"))] pub iod_atmo: u8, /// Quality of the troposphere data. Encoded following RTCM DF389 /// specification in units of m. - #[cfg_attr( - feature = "serde", - serde(rename(serialize = "tropo_quality_indicator")) - )] + #[cfg_attr(feature = "serde", serde(rename = "tropo_quality_indicator"))] pub tropo_quality_indicator: u8, } @@ -471,28 +465,28 @@ pub mod msg_ssr_code_biases { /// corresponding signal to get corrected pseudorange. It is an equivalent to /// the 1059 / 1065 RTCM message types. /// - #[cfg_attr(feature = "serde", derive(serde::Serialize))] + #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] #[derive(Debug, PartialEq, Clone)] pub struct MsgSsrCodeBiases { /// The message sender_id - #[cfg_attr(feature = "serde", serde(skip_serializing))] + #[cfg_attr(feature = "serde", serde(skip_serializing, alias = "sender"))] pub sender_id: Option, /// GNSS reference time of the correction - #[cfg_attr(feature = "serde", serde(rename(serialize = "time")))] + #[cfg_attr(feature = "serde", serde(rename = "time"))] pub time: GpsTimeSec, /// GNSS signal identifier (16 bit) - #[cfg_attr(feature = "serde", serde(rename(serialize = "sid")))] + #[cfg_attr(feature = "serde", serde(rename = "sid"))] pub sid: GnssSignal, /// Update interval between consecutive corrections. Encoded following RTCM /// DF391 specification. - #[cfg_attr(feature = "serde", serde(rename(serialize = "update_interval")))] + #[cfg_attr(feature = "serde", serde(rename = "update_interval"))] pub update_interval: u8, /// IOD of the SSR correction. A change of Issue Of Data SSR is used to /// indicate a change in the SSR generating configuration - #[cfg_attr(feature = "serde", serde(rename(serialize = "iod_ssr")))] + #[cfg_attr(feature = "serde", serde(rename = "iod_ssr"))] pub iod_ssr: u8, /// Code biases for the different satellite signals - #[cfg_attr(feature = "serde", serde(rename(serialize = "biases")))] + #[cfg_attr(feature = "serde", serde(rename = "biases"))] pub biases: Vec, } @@ -569,26 +563,26 @@ pub mod msg_ssr_code_phase_biases_bounds { use crate::messages::gnss::*; use crate::messages::lib::*; /// Combined Code and Phase Biases Bounds - #[cfg_attr(feature = "serde", derive(serde::Serialize))] + #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] #[derive(Debug, PartialEq, Clone)] pub struct MsgSsrCodePhaseBiasesBounds { /// The message sender_id - #[cfg_attr(feature = "serde", serde(skip_serializing))] + #[cfg_attr(feature = "serde", serde(skip_serializing, alias = "sender"))] pub sender_id: Option, /// Header of a bounds message. - #[cfg_attr(feature = "serde", serde(rename(serialize = "header")))] + #[cfg_attr(feature = "serde", serde(rename = "header"))] pub header: BoundsHeader, /// IOD of the SSR bound. - #[cfg_attr(feature = "serde", serde(rename(serialize = "ssr_iod")))] + #[cfg_attr(feature = "serde", serde(rename = "ssr_iod"))] pub ssr_iod: u8, /// Constellation ID to which the SVs belong. - #[cfg_attr(feature = "serde", serde(rename(serialize = "const_id")))] + #[cfg_attr(feature = "serde", serde(rename = "const_id"))] pub const_id: u8, /// Number of satellite-signal couples. - #[cfg_attr(feature = "serde", serde(rename(serialize = "n_sats_signals")))] + #[cfg_attr(feature = "serde", serde(rename = "n_sats_signals"))] pub n_sats_signals: u8, /// Code and Phase Biases Bounds per Satellite-Signal couple. - #[cfg_attr(feature = "serde", serde(rename(serialize = "satellites_signals")))] + #[cfg_attr(feature = "serde", serde(rename = "satellites_signals"))] pub satellites_signals: Vec, } @@ -671,23 +665,23 @@ pub mod msg_ssr_gridded_correction { /// /// It is typically equivalent to the QZSS CLAS Sub Type 9 messages. /// - #[cfg_attr(feature = "serde", derive(serde::Serialize))] + #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] #[derive(Debug, PartialEq, Clone)] pub struct MsgSsrGriddedCorrection { /// The message sender_id - #[cfg_attr(feature = "serde", serde(skip_serializing))] + #[cfg_attr(feature = "serde", serde(skip_serializing, alias = "sender"))] pub sender_id: Option, /// Header of a gridded correction message - #[cfg_attr(feature = "serde", serde(rename(serialize = "header")))] + #[cfg_attr(feature = "serde", serde(rename = "header"))] pub header: GriddedCorrectionHeader, /// Index of the grid point. - #[cfg_attr(feature = "serde", serde(rename(serialize = "index")))] + #[cfg_attr(feature = "serde", serde(rename = "index"))] pub index: u16, /// Wet and hydrostatic vertical delays (mean, stddev). - #[cfg_attr(feature = "serde", serde(rename(serialize = "tropo_delay_correction")))] + #[cfg_attr(feature = "serde", serde(rename = "tropo_delay_correction"))] pub tropo_delay_correction: TroposphericDelayCorrection, /// STEC residuals for each satellite (mean, stddev). - #[cfg_attr(feature = "serde", serde(rename(serialize = "stec_residuals")))] + #[cfg_attr(feature = "serde", serde(rename = "stec_residuals"))] pub stec_residuals: Vec, } @@ -765,54 +759,51 @@ pub mod msg_ssr_gridded_correction_bounds { /// Note 1: Range: 0-17.5 m. i<= 200, mean = 0.01i; 200230, mean=5+0.5(i-230). /// - #[cfg_attr(feature = "serde", derive(serde::Serialize))] + #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] #[derive(Debug, PartialEq, Clone)] pub struct MsgSsrGriddedCorrectionBounds { /// The message sender_id - #[cfg_attr(feature = "serde", serde(skip_serializing))] + #[cfg_attr(feature = "serde", serde(skip_serializing, alias = "sender"))] pub sender_id: Option, /// Header of a bounds message. - #[cfg_attr(feature = "serde", serde(rename(serialize = "header")))] + #[cfg_attr(feature = "serde", serde(rename = "header"))] pub header: BoundsHeader, /// IOD of the correction. - #[cfg_attr(feature = "serde", serde(rename(serialize = "ssr_iod_atmo")))] + #[cfg_attr(feature = "serde", serde(rename = "ssr_iod_atmo"))] pub ssr_iod_atmo: u8, /// Set this tile belongs to. - #[cfg_attr(feature = "serde", serde(rename(serialize = "tile_set_id")))] + #[cfg_attr(feature = "serde", serde(rename = "tile_set_id"))] pub tile_set_id: u16, /// Unique identifier of this tile in the tile set. - #[cfg_attr(feature = "serde", serde(rename(serialize = "tile_id")))] + #[cfg_attr(feature = "serde", serde(rename = "tile_id"))] pub tile_id: u16, /// Tropo Quality Indicator. Similar to RTCM DF389. - #[cfg_attr(feature = "serde", serde(rename(serialize = "tropo_qi")))] + #[cfg_attr(feature = "serde", serde(rename = "tropo_qi"))] pub tropo_qi: u8, /// Index of the Grid Point. - #[cfg_attr(feature = "serde", serde(rename(serialize = "grid_point_id")))] + #[cfg_attr(feature = "serde", serde(rename = "grid_point_id"))] pub grid_point_id: u16, /// Tropospheric delay at grid point. - #[cfg_attr(feature = "serde", serde(rename(serialize = "tropo_delay_correction")))] + #[cfg_attr(feature = "serde", serde(rename = "tropo_delay_correction"))] pub tropo_delay_correction: TroposphericDelayCorrection, /// Vertical Hydrostatic Error Bound Mean. - #[cfg_attr(feature = "serde", serde(rename(serialize = "tropo_v_hydro_bound_mu")))] + #[cfg_attr(feature = "serde", serde(rename = "tropo_v_hydro_bound_mu"))] pub tropo_v_hydro_bound_mu: u8, /// Vertical Hydrostatic Error Bound StDev. - #[cfg_attr( - feature = "serde", - serde(rename(serialize = "tropo_v_hydro_bound_sig")) - )] + #[cfg_attr(feature = "serde", serde(rename = "tropo_v_hydro_bound_sig"))] pub tropo_v_hydro_bound_sig: u8, /// Vertical Wet Error Bound Mean. - #[cfg_attr(feature = "serde", serde(rename(serialize = "tropo_v_wet_bound_mu")))] + #[cfg_attr(feature = "serde", serde(rename = "tropo_v_wet_bound_mu"))] pub tropo_v_wet_bound_mu: u8, /// Vertical Wet Error Bound StDev. - #[cfg_attr(feature = "serde", serde(rename(serialize = "tropo_v_wet_bound_sig")))] + #[cfg_attr(feature = "serde", serde(rename = "tropo_v_wet_bound_sig"))] pub tropo_v_wet_bound_sig: u8, /// Number of satellites. - #[cfg_attr(feature = "serde", serde(rename(serialize = "n_sats")))] + #[cfg_attr(feature = "serde", serde(rename = "n_sats"))] pub n_sats: u8, /// Array of STEC polynomial coefficients and its bounds for each space /// vehicle. - #[cfg_attr(feature = "serde", serde(rename(serialize = "stec_sat_list")))] + #[cfg_attr(feature = "serde", serde(rename = "stec_sat_list"))] pub stec_sat_list: Vec, } @@ -921,23 +912,23 @@ pub mod msg_ssr_gridded_correction_dep_a { use crate::messages::gnss::*; use crate::messages::lib::*; /// Deprecated - #[cfg_attr(feature = "serde", derive(serde::Serialize))] + #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] #[derive(Debug, PartialEq, Clone)] pub struct MsgSsrGriddedCorrectionDepA { /// The message sender_id - #[cfg_attr(feature = "serde", serde(skip_serializing))] + #[cfg_attr(feature = "serde", serde(skip_serializing, alias = "sender"))] pub sender_id: Option, /// Header of a Gridded Correction message - #[cfg_attr(feature = "serde", serde(rename(serialize = "header")))] + #[cfg_attr(feature = "serde", serde(rename = "header"))] pub header: GriddedCorrectionHeaderDepA, /// Index of the grid point - #[cfg_attr(feature = "serde", serde(rename(serialize = "index")))] + #[cfg_attr(feature = "serde", serde(rename = "index"))] pub index: u16, /// Wet and hydrostatic vertical delays (mean, stddev) - #[cfg_attr(feature = "serde", serde(rename(serialize = "tropo_delay_correction")))] + #[cfg_attr(feature = "serde", serde(rename = "tropo_delay_correction"))] pub tropo_delay_correction: TroposphericDelayCorrection, /// STEC residuals for each satellite (mean, stddev) - #[cfg_attr(feature = "serde", serde(rename(serialize = "stec_residuals")))] + #[cfg_attr(feature = "serde", serde(rename = "stec_residuals"))] pub stec_residuals: Vec, } @@ -1010,23 +1001,23 @@ pub mod msg_ssr_gridded_correction_no_std_dep_a { use crate::messages::gnss::*; use crate::messages::lib::*; /// Deprecated - #[cfg_attr(feature = "serde", derive(serde::Serialize))] + #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] #[derive(Debug, PartialEq, Clone)] pub struct MsgSsrGriddedCorrectionNoStdDepA { /// The message sender_id - #[cfg_attr(feature = "serde", serde(skip_serializing))] + #[cfg_attr(feature = "serde", serde(skip_serializing, alias = "sender"))] pub sender_id: Option, /// Header of a Gridded Correction message - #[cfg_attr(feature = "serde", serde(rename(serialize = "header")))] + #[cfg_attr(feature = "serde", serde(rename = "header"))] pub header: GriddedCorrectionHeaderDepA, /// Index of the grid point - #[cfg_attr(feature = "serde", serde(rename(serialize = "index")))] + #[cfg_attr(feature = "serde", serde(rename = "index"))] pub index: u16, /// Wet and hydrostatic vertical delays - #[cfg_attr(feature = "serde", serde(rename(serialize = "tropo_delay_correction")))] + #[cfg_attr(feature = "serde", serde(rename = "tropo_delay_correction"))] pub tropo_delay_correction: TroposphericDelayCorrectionNoStd, /// STEC residuals for each satellite - #[cfg_attr(feature = "serde", serde(rename(serialize = "stec_residuals")))] + #[cfg_attr(feature = "serde", serde(rename = "stec_residuals"))] pub stec_residuals: Vec, } @@ -1099,20 +1090,20 @@ pub mod msg_ssr_grid_definition_dep_a { use crate::messages::gnss::*; use crate::messages::lib::*; /// Deprecated - #[cfg_attr(feature = "serde", derive(serde::Serialize))] + #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] #[derive(Debug, PartialEq, Clone)] pub struct MsgSsrGridDefinitionDepA { /// The message sender_id - #[cfg_attr(feature = "serde", serde(skip_serializing))] + #[cfg_attr(feature = "serde", serde(skip_serializing, alias = "sender"))] pub sender_id: Option, /// Header of a Gridded Correction message - #[cfg_attr(feature = "serde", serde(rename(serialize = "header")))] + #[cfg_attr(feature = "serde", serde(rename = "header"))] pub header: GridDefinitionHeaderDepA, /// Run Length Encode list of quadrants that contain valid data. The spec /// describes the encoding scheme in detail, but essentially the index of /// the quadrants that contain transitions between valid and invalid (and /// vice versa) are encoded as u8 integers. - #[cfg_attr(feature = "serde", serde(rename(serialize = "rle_list")))] + #[cfg_attr(feature = "serde", serde(rename = "rle_list"))] pub rle_list: Vec, } @@ -1182,55 +1173,55 @@ pub mod msg_ssr_orbit_clock { /// correction to broadcast ephemeris and is an equivalent to the 1060 /1066 /// RTCM message types. /// - #[cfg_attr(feature = "serde", derive(serde::Serialize))] + #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] #[derive(Debug, PartialEq, Clone)] pub struct MsgSsrOrbitClock { /// The message sender_id - #[cfg_attr(feature = "serde", serde(skip_serializing))] + #[cfg_attr(feature = "serde", serde(skip_serializing, alias = "sender"))] pub sender_id: Option, /// GNSS reference time of the correction - #[cfg_attr(feature = "serde", serde(rename(serialize = "time")))] + #[cfg_attr(feature = "serde", serde(rename = "time"))] pub time: GpsTimeSec, /// GNSS signal identifier (16 bit) - #[cfg_attr(feature = "serde", serde(rename(serialize = "sid")))] + #[cfg_attr(feature = "serde", serde(rename = "sid"))] pub sid: GnssSignal, /// Update interval between consecutive corrections. Encoded following RTCM /// DF391 specification. - #[cfg_attr(feature = "serde", serde(rename(serialize = "update_interval")))] + #[cfg_attr(feature = "serde", serde(rename = "update_interval"))] pub update_interval: u8, /// IOD of the SSR correction. A change of Issue Of Data SSR is used to /// indicate a change in the SSR generating configuration - #[cfg_attr(feature = "serde", serde(rename(serialize = "iod_ssr")))] + #[cfg_attr(feature = "serde", serde(rename = "iod_ssr"))] pub iod_ssr: u8, /// Issue of broadcast ephemeris data or IODCRC (Beidou) - #[cfg_attr(feature = "serde", serde(rename(serialize = "iod")))] + #[cfg_attr(feature = "serde", serde(rename = "iod"))] pub iod: u32, /// Orbit radial delta correction - #[cfg_attr(feature = "serde", serde(rename(serialize = "radial")))] + #[cfg_attr(feature = "serde", serde(rename = "radial"))] pub radial: i32, /// Orbit along delta correction - #[cfg_attr(feature = "serde", serde(rename(serialize = "along")))] + #[cfg_attr(feature = "serde", serde(rename = "along"))] pub along: i32, /// Orbit along delta correction - #[cfg_attr(feature = "serde", serde(rename(serialize = "cross")))] + #[cfg_attr(feature = "serde", serde(rename = "cross"))] pub cross: i32, /// Velocity of orbit radial delta correction - #[cfg_attr(feature = "serde", serde(rename(serialize = "dot_radial")))] + #[cfg_attr(feature = "serde", serde(rename = "dot_radial"))] pub dot_radial: i32, /// Velocity of orbit along delta correction - #[cfg_attr(feature = "serde", serde(rename(serialize = "dot_along")))] + #[cfg_attr(feature = "serde", serde(rename = "dot_along"))] pub dot_along: i32, /// Velocity of orbit cross delta correction - #[cfg_attr(feature = "serde", serde(rename(serialize = "dot_cross")))] + #[cfg_attr(feature = "serde", serde(rename = "dot_cross"))] pub dot_cross: i32, /// C0 polynomial coefficient for correction of broadcast satellite clock - #[cfg_attr(feature = "serde", serde(rename(serialize = "c0")))] + #[cfg_attr(feature = "serde", serde(rename = "c0"))] pub c0: i32, /// C1 polynomial coefficient for correction of broadcast satellite clock - #[cfg_attr(feature = "serde", serde(rename(serialize = "c1")))] + #[cfg_attr(feature = "serde", serde(rename = "c1"))] pub c1: i32, /// C2 polynomial coefficient for correction of broadcast satellite clock - #[cfg_attr(feature = "serde", serde(rename(serialize = "c2")))] + #[cfg_attr(feature = "serde", serde(rename = "c2"))] pub c2: i32, } @@ -1351,26 +1342,26 @@ pub mod msg_ssr_orbit_clock_bounds { /// Note 2: Range: 0-17.5 m. i<=200, std=0.01i; 200230, std=5+0.5(i-230). /// - #[cfg_attr(feature = "serde", derive(serde::Serialize))] + #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] #[derive(Debug, PartialEq, Clone)] pub struct MsgSsrOrbitClockBounds { /// The message sender_id - #[cfg_attr(feature = "serde", serde(skip_serializing))] + #[cfg_attr(feature = "serde", serde(skip_serializing, alias = "sender"))] pub sender_id: Option, /// Header of a bounds message. - #[cfg_attr(feature = "serde", serde(rename(serialize = "header")))] + #[cfg_attr(feature = "serde", serde(rename = "header"))] pub header: BoundsHeader, /// IOD of the SSR bound. - #[cfg_attr(feature = "serde", serde(rename(serialize = "ssr_iod")))] + #[cfg_attr(feature = "serde", serde(rename = "ssr_iod"))] pub ssr_iod: u8, /// Constellation ID to which the SVs belong. - #[cfg_attr(feature = "serde", serde(rename(serialize = "const_id")))] + #[cfg_attr(feature = "serde", serde(rename = "const_id"))] pub const_id: u8, /// Number of satellites. - #[cfg_attr(feature = "serde", serde(rename(serialize = "n_sats")))] + #[cfg_attr(feature = "serde", serde(rename = "n_sats"))] pub n_sats: u8, /// Orbit and Clock Bounds per Satellite - #[cfg_attr(feature = "serde", serde(rename(serialize = "orbit_clock_bounds")))] + #[cfg_attr(feature = "serde", serde(rename = "orbit_clock_bounds"))] pub orbit_clock_bounds: Vec, } @@ -1447,31 +1438,28 @@ pub mod msg_ssr_orbit_clock_bounds_degradation { use crate::messages::gnss::*; use crate::messages::lib::*; /// Combined Orbit and Clock Bound Degradation Parameter - #[cfg_attr(feature = "serde", derive(serde::Serialize))] + #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] #[derive(Debug, PartialEq, Clone)] pub struct MsgSsrOrbitClockBoundsDegradation { /// The message sender_id - #[cfg_attr(feature = "serde", serde(skip_serializing))] + #[cfg_attr(feature = "serde", serde(skip_serializing, alias = "sender"))] pub sender_id: Option, /// Header of a bounds message. - #[cfg_attr(feature = "serde", serde(rename(serialize = "header")))] + #[cfg_attr(feature = "serde", serde(rename = "header"))] pub header: BoundsHeader, /// IOD of the SSR bound degradation parameter. - #[cfg_attr(feature = "serde", serde(rename(serialize = "ssr_iod")))] + #[cfg_attr(feature = "serde", serde(rename = "ssr_iod"))] pub ssr_iod: u8, /// Constellation ID to which the SVs belong. - #[cfg_attr(feature = "serde", serde(rename(serialize = "const_id")))] + #[cfg_attr(feature = "serde", serde(rename = "const_id"))] pub const_id: u8, /// Satellite Bit Mask. Put 1 for each satellite where the following /// degradation parameters are applicable, 0 otherwise. Encoded following /// RTCM DF394 specification. - #[cfg_attr(feature = "serde", serde(rename(serialize = "sat_bitmask")))] + #[cfg_attr(feature = "serde", serde(rename = "sat_bitmask"))] pub sat_bitmask: u64, /// Orbit and Clock Bounds Degradation Parameters - #[cfg_attr( - feature = "serde", - serde(rename(serialize = "orbit_clock_bounds_degradation")) - )] + #[cfg_attr(feature = "serde", serde(rename = "orbit_clock_bounds_degradation"))] pub orbit_clock_bounds_degradation: OrbitClockBoundDegradation, } @@ -1548,55 +1536,55 @@ pub mod msg_ssr_orbit_clock_dep_a { use crate::messages::gnss::*; use crate::messages::lib::*; /// Deprecated - #[cfg_attr(feature = "serde", derive(serde::Serialize))] + #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] #[derive(Debug, PartialEq, Clone)] pub struct MsgSsrOrbitClockDepA { /// The message sender_id - #[cfg_attr(feature = "serde", serde(skip_serializing))] + #[cfg_attr(feature = "serde", serde(skip_serializing, alias = "sender"))] pub sender_id: Option, /// GNSS reference time of the correction - #[cfg_attr(feature = "serde", serde(rename(serialize = "time")))] + #[cfg_attr(feature = "serde", serde(rename = "time"))] pub time: GpsTimeSec, /// GNSS signal identifier (16 bit) - #[cfg_attr(feature = "serde", serde(rename(serialize = "sid")))] + #[cfg_attr(feature = "serde", serde(rename = "sid"))] pub sid: GnssSignal, /// Update interval between consecutive corrections. Encoded following RTCM /// DF391 specification. - #[cfg_attr(feature = "serde", serde(rename(serialize = "update_interval")))] + #[cfg_attr(feature = "serde", serde(rename = "update_interval"))] pub update_interval: u8, /// IOD of the SSR correction. A change of Issue Of Data SSR is used to /// indicate a change in the SSR generating configuration - #[cfg_attr(feature = "serde", serde(rename(serialize = "iod_ssr")))] + #[cfg_attr(feature = "serde", serde(rename = "iod_ssr"))] pub iod_ssr: u8, /// Issue of broadcast ephemeris data - #[cfg_attr(feature = "serde", serde(rename(serialize = "iod")))] + #[cfg_attr(feature = "serde", serde(rename = "iod"))] pub iod: u8, /// Orbit radial delta correction - #[cfg_attr(feature = "serde", serde(rename(serialize = "radial")))] + #[cfg_attr(feature = "serde", serde(rename = "radial"))] pub radial: i32, /// Orbit along delta correction - #[cfg_attr(feature = "serde", serde(rename(serialize = "along")))] + #[cfg_attr(feature = "serde", serde(rename = "along"))] pub along: i32, /// Orbit along delta correction - #[cfg_attr(feature = "serde", serde(rename(serialize = "cross")))] + #[cfg_attr(feature = "serde", serde(rename = "cross"))] pub cross: i32, /// Velocity of orbit radial delta correction - #[cfg_attr(feature = "serde", serde(rename(serialize = "dot_radial")))] + #[cfg_attr(feature = "serde", serde(rename = "dot_radial"))] pub dot_radial: i32, /// Velocity of orbit along delta correction - #[cfg_attr(feature = "serde", serde(rename(serialize = "dot_along")))] + #[cfg_attr(feature = "serde", serde(rename = "dot_along"))] pub dot_along: i32, /// Velocity of orbit cross delta correction - #[cfg_attr(feature = "serde", serde(rename(serialize = "dot_cross")))] + #[cfg_attr(feature = "serde", serde(rename = "dot_cross"))] pub dot_cross: i32, /// C0 polynomial coefficient for correction of broadcast satellite clock - #[cfg_attr(feature = "serde", serde(rename(serialize = "c0")))] + #[cfg_attr(feature = "serde", serde(rename = "c0"))] pub c0: i32, /// C1 polynomial coefficient for correction of broadcast satellite clock - #[cfg_attr(feature = "serde", serde(rename(serialize = "c1")))] + #[cfg_attr(feature = "serde", serde(rename = "c1"))] pub c1: i32, /// C2 polynomial coefficient for correction of broadcast satellite clock - #[cfg_attr(feature = "serde", serde(rename(serialize = "c2")))] + #[cfg_attr(feature = "serde", serde(rename = "c2"))] pub c2: i32, } @@ -1717,40 +1705,40 @@ pub mod msg_ssr_phase_biases { /// the phase wind-up correction. It is typically an equivalent to the 1265 /// RTCM message types. /// - #[cfg_attr(feature = "serde", derive(serde::Serialize))] + #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] #[derive(Debug, PartialEq, Clone)] pub struct MsgSsrPhaseBiases { /// The message sender_id - #[cfg_attr(feature = "serde", serde(skip_serializing))] + #[cfg_attr(feature = "serde", serde(skip_serializing, alias = "sender"))] pub sender_id: Option, /// GNSS reference time of the correction - #[cfg_attr(feature = "serde", serde(rename(serialize = "time")))] + #[cfg_attr(feature = "serde", serde(rename = "time"))] pub time: GpsTimeSec, /// GNSS signal identifier (16 bit) - #[cfg_attr(feature = "serde", serde(rename(serialize = "sid")))] + #[cfg_attr(feature = "serde", serde(rename = "sid"))] pub sid: GnssSignal, /// Update interval between consecutive corrections. Encoded following RTCM /// DF391 specification. - #[cfg_attr(feature = "serde", serde(rename(serialize = "update_interval")))] + #[cfg_attr(feature = "serde", serde(rename = "update_interval"))] pub update_interval: u8, /// IOD of the SSR correction. A change of Issue Of Data SSR is used to /// indicate a change in the SSR generating configuration - #[cfg_attr(feature = "serde", serde(rename(serialize = "iod_ssr")))] + #[cfg_attr(feature = "serde", serde(rename = "iod_ssr"))] pub iod_ssr: u8, /// Indicator for the dispersive phase biases property. - #[cfg_attr(feature = "serde", serde(rename(serialize = "dispersive_bias")))] + #[cfg_attr(feature = "serde", serde(rename = "dispersive_bias"))] pub dispersive_bias: u8, /// Consistency indicator for Melbourne-Wubbena linear combinations - #[cfg_attr(feature = "serde", serde(rename(serialize = "mw_consistency")))] + #[cfg_attr(feature = "serde", serde(rename = "mw_consistency"))] pub mw_consistency: u8, /// Satellite yaw angle - #[cfg_attr(feature = "serde", serde(rename(serialize = "yaw")))] + #[cfg_attr(feature = "serde", serde(rename = "yaw"))] pub yaw: u16, /// Satellite yaw angle rate - #[cfg_attr(feature = "serde", serde(rename(serialize = "yaw_rate")))] + #[cfg_attr(feature = "serde", serde(rename = "yaw_rate"))] pub yaw_rate: i8, /// Phase biases corrections for a satellite being tracked. - #[cfg_attr(feature = "serde", serde(rename(serialize = "biases")))] + #[cfg_attr(feature = "serde", serde(rename = "biases"))] pub biases: Vec, } @@ -1843,14 +1831,14 @@ pub mod msg_ssr_satellite_apc { use crate::messages::gnss::*; use crate::messages::lib::*; /// Satellite antenna phase center corrections - #[cfg_attr(feature = "serde", derive(serde::Serialize))] + #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] #[derive(Debug, PartialEq, Clone)] pub struct MsgSsrSatelliteApc { /// The message sender_id - #[cfg_attr(feature = "serde", serde(skip_serializing))] + #[cfg_attr(feature = "serde", serde(skip_serializing, alias = "sender"))] pub sender_id: Option, /// Satellite antenna phase center corrections - #[cfg_attr(feature = "serde", serde(rename(serialize = "apc")))] + #[cfg_attr(feature = "serde", serde(rename = "apc"))] pub apc: Vec, } @@ -1911,29 +1899,29 @@ pub mod msg_ssr_stec_correction { use crate::messages::gnss::*; use crate::messages::lib::*; /// STEC correction polynomial coefficients - #[cfg_attr(feature = "serde", derive(serde::Serialize))] + #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] #[derive(Debug, PartialEq, Clone)] pub struct MsgSsrStecCorrection { /// The message sender_id - #[cfg_attr(feature = "serde", serde(skip_serializing))] + #[cfg_attr(feature = "serde", serde(skip_serializing, alias = "sender"))] pub sender_id: Option, /// Header of a STEC correction with bounds message. - #[cfg_attr(feature = "serde", serde(rename(serialize = "header")))] + #[cfg_attr(feature = "serde", serde(rename = "header"))] pub header: BoundsHeader, /// IOD of the SSR atmospheric correction - #[cfg_attr(feature = "serde", serde(rename(serialize = "ssr_iod_atmo")))] + #[cfg_attr(feature = "serde", serde(rename = "ssr_iod_atmo"))] pub ssr_iod_atmo: u8, /// Tile set ID - #[cfg_attr(feature = "serde", serde(rename(serialize = "tile_set_id")))] + #[cfg_attr(feature = "serde", serde(rename = "tile_set_id"))] pub tile_set_id: u16, /// Tile ID - #[cfg_attr(feature = "serde", serde(rename(serialize = "tile_id")))] + #[cfg_attr(feature = "serde", serde(rename = "tile_id"))] pub tile_id: u16, /// Number of satellites. - #[cfg_attr(feature = "serde", serde(rename(serialize = "n_sats")))] + #[cfg_attr(feature = "serde", serde(rename = "n_sats"))] pub n_sats: u8, /// Array of STEC polynomial coefficients for each space vehicle. - #[cfg_attr(feature = "serde", serde(rename(serialize = "stec_sat_list")))] + #[cfg_attr(feature = "serde", serde(rename = "stec_sat_list"))] pub stec_sat_list: Vec, } @@ -2023,17 +2011,17 @@ pub mod msg_ssr_stec_correction_dep { /// /// It is typically equivalent to the QZSS CLAS Sub Type 8 messages. /// - #[cfg_attr(feature = "serde", derive(serde::Serialize))] + #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] #[derive(Debug, PartialEq, Clone)] pub struct MsgSsrStecCorrectionDep { /// The message sender_id - #[cfg_attr(feature = "serde", serde(skip_serializing))] + #[cfg_attr(feature = "serde", serde(skip_serializing, alias = "sender"))] pub sender_id: Option, /// Header of a STEC polynomial coefficient message. - #[cfg_attr(feature = "serde", serde(rename(serialize = "header")))] + #[cfg_attr(feature = "serde", serde(rename = "header"))] pub header: STECHeader, /// Array of STEC polynomial coefficients for each space vehicle. - #[cfg_attr(feature = "serde", serde(rename(serialize = "stec_sat_list")))] + #[cfg_attr(feature = "serde", serde(rename = "stec_sat_list"))] pub stec_sat_list: Vec, } @@ -2097,17 +2085,17 @@ pub mod msg_ssr_stec_correction_dep_a { use crate::messages::gnss::*; use crate::messages::lib::*; /// Deprecated - #[cfg_attr(feature = "serde", derive(serde::Serialize))] + #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] #[derive(Debug, PartialEq, Clone)] pub struct MsgSsrStecCorrectionDepA { /// The message sender_id - #[cfg_attr(feature = "serde", serde(skip_serializing))] + #[cfg_attr(feature = "serde", serde(skip_serializing, alias = "sender"))] pub sender_id: Option, /// Header of a STEC message - #[cfg_attr(feature = "serde", serde(rename(serialize = "header")))] + #[cfg_attr(feature = "serde", serde(rename = "header"))] pub header: STECHeaderDepA, /// Array of STEC information for each space vehicle - #[cfg_attr(feature = "serde", serde(rename(serialize = "stec_sat_list")))] + #[cfg_attr(feature = "serde", serde(rename = "stec_sat_list"))] pub stec_sat_list: Vec, } @@ -2182,21 +2170,21 @@ pub mod msg_ssr_tile_definition { /// element GNSS-SSR-CorrectionPoints. SBP only supports gridded arrays of /// correction points, not lists of points. /// - #[cfg_attr(feature = "serde", derive(serde::Serialize))] + #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] #[derive(Debug, PartialEq, Clone)] pub struct MsgSsrTileDefinition { /// The message sender_id - #[cfg_attr(feature = "serde", serde(skip_serializing))] + #[cfg_attr(feature = "serde", serde(skip_serializing, alias = "sender"))] pub sender_id: Option, /// SSR Solution ID. - #[cfg_attr(feature = "serde", serde(rename(serialize = "ssr_sol_id")))] + #[cfg_attr(feature = "serde", serde(rename = "ssr_sol_id"))] pub ssr_sol_id: u8, /// Unique identifier of the tile set this tile belongs to. - #[cfg_attr(feature = "serde", serde(rename(serialize = "tile_set_id")))] + #[cfg_attr(feature = "serde", serde(rename = "tile_set_id"))] pub tile_set_id: u16, /// Unique identifier of this tile in the tile set. /// See GNSS-SSR-ArrayOfCorrectionPoints field correctionPointSetID. - #[cfg_attr(feature = "serde", serde(rename(serialize = "tile_id")))] + #[cfg_attr(feature = "serde", serde(rename = "tile_id"))] pub tile_id: u16, /// North-West corner correction point latitude. /// @@ -2206,7 +2194,7 @@ pub mod msg_ssr_tile_definition { /// N = floor((X / 90) * 2^14) /// /// See GNSS-SSR-ArrayOfCorrectionPoints field referencePointLatitude. - #[cfg_attr(feature = "serde", serde(rename(serialize = "corner_nw_lat")))] + #[cfg_attr(feature = "serde", serde(rename = "corner_nw_lat"))] pub corner_nw_lat: i16, /// North-West corner correction point longitude. /// @@ -2216,27 +2204,27 @@ pub mod msg_ssr_tile_definition { /// N = floor((X / 180) * 2^15) /// /// See GNSS-SSR-ArrayOfCorrectionPoints field referencePointLongitude. - #[cfg_attr(feature = "serde", serde(rename(serialize = "corner_nw_lon")))] + #[cfg_attr(feature = "serde", serde(rename = "corner_nw_lon"))] pub corner_nw_lon: i16, /// Spacing of the correction points in the latitude direction. /// /// See GNSS-SSR-ArrayOfCorrectionPoints field stepOfLatitude. - #[cfg_attr(feature = "serde", serde(rename(serialize = "spacing_lat")))] + #[cfg_attr(feature = "serde", serde(rename = "spacing_lat"))] pub spacing_lat: u16, /// Spacing of the correction points in the longitude direction. /// /// See GNSS-SSR-ArrayOfCorrectionPoints field stepOfLongitude. - #[cfg_attr(feature = "serde", serde(rename(serialize = "spacing_lon")))] + #[cfg_attr(feature = "serde", serde(rename = "spacing_lon"))] pub spacing_lon: u16, /// Number of steps in the latitude direction. /// /// See GNSS-SSR-ArrayOfCorrectionPoints field numberOfStepsLatitude. - #[cfg_attr(feature = "serde", serde(rename(serialize = "rows")))] + #[cfg_attr(feature = "serde", serde(rename = "rows"))] pub rows: u16, /// Number of steps in the longitude direction. /// /// See GNSS-SSR-ArrayOfCorrectionPoints field numberOfStepsLongitude. - #[cfg_attr(feature = "serde", serde(rename(serialize = "cols")))] + #[cfg_attr(feature = "serde", serde(rename = "cols"))] pub cols: u16, /// Specifies the availability of correction data at the correction points /// in the array. @@ -2253,7 +2241,7 @@ pub mod msg_ssr_tile_definition { /// /// See GNSS-SSR-ArrayOfCorrectionPoints field bitmaskOfGrids but note the /// definition of the bits is inverted. - #[cfg_attr(feature = "serde", serde(rename(serialize = "bitmask")))] + #[cfg_attr(feature = "serde", serde(rename = "bitmask"))] pub bitmask: u64, } @@ -2361,18 +2349,18 @@ pub mod msg_ssr_tile_definition_dep { /// element GNSS-SSR-CorrectionPoints. SBP only supports gridded arrays of /// correction points, not lists of points. /// - #[cfg_attr(feature = "serde", derive(serde::Serialize))] + #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] #[derive(Debug, PartialEq, Clone)] pub struct MsgSsrTileDefinitionDep { /// The message sender_id - #[cfg_attr(feature = "serde", serde(skip_serializing))] + #[cfg_attr(feature = "serde", serde(skip_serializing, alias = "sender"))] pub sender_id: Option, /// Unique identifier of the tile set this tile belongs to. - #[cfg_attr(feature = "serde", serde(rename(serialize = "tile_set_id")))] + #[cfg_attr(feature = "serde", serde(rename = "tile_set_id"))] pub tile_set_id: u16, /// Unique identifier of this tile in the tile set. /// See GNSS-SSR-ArrayOfCorrectionPoints field correctionPointSetID. - #[cfg_attr(feature = "serde", serde(rename(serialize = "tile_id")))] + #[cfg_attr(feature = "serde", serde(rename = "tile_id"))] pub tile_id: u16, /// North-West corner correction point latitude. /// @@ -2382,7 +2370,7 @@ pub mod msg_ssr_tile_definition_dep { /// N = floor((X / 90) * 2^14) /// /// See GNSS-SSR-ArrayOfCorrectionPoints field referencePointLatitude. - #[cfg_attr(feature = "serde", serde(rename(serialize = "corner_nw_lat")))] + #[cfg_attr(feature = "serde", serde(rename = "corner_nw_lat"))] pub corner_nw_lat: i16, /// North-West corner correction point longitude. /// @@ -2392,27 +2380,27 @@ pub mod msg_ssr_tile_definition_dep { /// N = floor((X / 180) * 2^15) /// /// See GNSS-SSR-ArrayOfCorrectionPoints field referencePointLongitude. - #[cfg_attr(feature = "serde", serde(rename(serialize = "corner_nw_lon")))] + #[cfg_attr(feature = "serde", serde(rename = "corner_nw_lon"))] pub corner_nw_lon: i16, /// Spacing of the correction points in the latitude direction. /// /// See GNSS-SSR-ArrayOfCorrectionPoints field stepOfLatitude. - #[cfg_attr(feature = "serde", serde(rename(serialize = "spacing_lat")))] + #[cfg_attr(feature = "serde", serde(rename = "spacing_lat"))] pub spacing_lat: u16, /// Spacing of the correction points in the longitude direction. /// /// See GNSS-SSR-ArrayOfCorrectionPoints field stepOfLongitude. - #[cfg_attr(feature = "serde", serde(rename(serialize = "spacing_lon")))] + #[cfg_attr(feature = "serde", serde(rename = "spacing_lon"))] pub spacing_lon: u16, /// Number of steps in the latitude direction. /// /// See GNSS-SSR-ArrayOfCorrectionPoints field numberOfStepsLatitude. - #[cfg_attr(feature = "serde", serde(rename(serialize = "rows")))] + #[cfg_attr(feature = "serde", serde(rename = "rows"))] pub rows: u16, /// Number of steps in the longitude direction. /// /// See GNSS-SSR-ArrayOfCorrectionPoints field numberOfStepsLongitude. - #[cfg_attr(feature = "serde", serde(rename(serialize = "cols")))] + #[cfg_attr(feature = "serde", serde(rename = "cols"))] pub cols: u16, /// Specifies the availability of correction data at the correction points /// in the array. @@ -2429,7 +2417,7 @@ pub mod msg_ssr_tile_definition_dep { /// /// See GNSS-SSR-ArrayOfCorrectionPoints field bitmaskOfGrids but note the /// definition of the bits is inverted. - #[cfg_attr(feature = "serde", serde(rename(serialize = "bitmask")))] + #[cfg_attr(feature = "serde", serde(rename = "bitmask"))] pub bitmask: u64, } @@ -2526,36 +2514,36 @@ pub mod orbit_clock_bound { /// /// Orbit and clock bound. /// - #[cfg_attr(feature = "serde", derive(serde::Serialize))] + #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] #[derive(Debug, PartialEq, Clone)] pub struct OrbitClockBound { /// Satellite ID. Similar to either RTCM DF068 (GPS), DF252 (Galileo), or /// DF488 (BDS) depending on the constellation. - #[cfg_attr(feature = "serde", serde(rename(serialize = "sat_id")))] + #[cfg_attr(feature = "serde", serde(rename = "sat_id"))] pub sat_id: u8, /// Mean Radial. See Note 1. - #[cfg_attr(feature = "serde", serde(rename(serialize = "orb_radial_bound_mu")))] + #[cfg_attr(feature = "serde", serde(rename = "orb_radial_bound_mu"))] pub orb_radial_bound_mu: u8, /// Mean Along-Track. See Note 1. - #[cfg_attr(feature = "serde", serde(rename(serialize = "orb_along_bound_mu")))] + #[cfg_attr(feature = "serde", serde(rename = "orb_along_bound_mu"))] pub orb_along_bound_mu: u8, /// Mean Cross-Track. See Note 1. - #[cfg_attr(feature = "serde", serde(rename(serialize = "orb_cross_bound_mu")))] + #[cfg_attr(feature = "serde", serde(rename = "orb_cross_bound_mu"))] pub orb_cross_bound_mu: u8, /// Standard Deviation Radial. See Note 2. - #[cfg_attr(feature = "serde", serde(rename(serialize = "orb_radial_bound_sig")))] + #[cfg_attr(feature = "serde", serde(rename = "orb_radial_bound_sig"))] pub orb_radial_bound_sig: u8, /// Standard Deviation Along-Track. See Note 2. - #[cfg_attr(feature = "serde", serde(rename(serialize = "orb_along_bound_sig")))] + #[cfg_attr(feature = "serde", serde(rename = "orb_along_bound_sig"))] pub orb_along_bound_sig: u8, /// Standard Deviation Cross-Track. See Note 2. - #[cfg_attr(feature = "serde", serde(rename(serialize = "orb_cross_bound_sig")))] + #[cfg_attr(feature = "serde", serde(rename = "orb_cross_bound_sig"))] pub orb_cross_bound_sig: u8, /// Clock Bound Mean. See Note 1. - #[cfg_attr(feature = "serde", serde(rename(serialize = "clock_bound_mu")))] + #[cfg_attr(feature = "serde", serde(rename = "clock_bound_mu"))] pub clock_bound_mu: u8, /// Clock Bound Standard Deviation. See Note 2. - #[cfg_attr(feature = "serde", serde(rename(serialize = "clock_bound_sig")))] + #[cfg_attr(feature = "serde", serde(rename = "clock_bound_sig"))] pub clock_bound_sig: u8, } @@ -2618,47 +2606,35 @@ pub mod orbit_clock_bound_degradation { /// /// Orbit and clock bound degradation. /// - #[cfg_attr(feature = "serde", derive(serde::Serialize))] + #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] #[derive(Debug, PartialEq, Clone)] pub struct OrbitClockBoundDegradation { /// Orbit Bound Mean Radial First derivative. Range: 0-0.255 m/s - #[cfg_attr( - feature = "serde", - serde(rename(serialize = "orb_radial_bound_mu_dot")) - )] + #[cfg_attr(feature = "serde", serde(rename = "orb_radial_bound_mu_dot"))] pub orb_radial_bound_mu_dot: u8, /// Orbit Bound Mean Along-Track First derivative. Range: 0-0.255 m/s - #[cfg_attr(feature = "serde", serde(rename(serialize = "orb_along_bound_mu_dot")))] + #[cfg_attr(feature = "serde", serde(rename = "orb_along_bound_mu_dot"))] pub orb_along_bound_mu_dot: u8, /// Orbit Bound Mean Cross-Track First derivative. Range: 0-0.255 m/s - #[cfg_attr(feature = "serde", serde(rename(serialize = "orb_cross_bound_mu_dot")))] + #[cfg_attr(feature = "serde", serde(rename = "orb_cross_bound_mu_dot"))] pub orb_cross_bound_mu_dot: u8, /// Orbit Bound Standard Deviation Radial First derivative. Range: 0-0.255 /// m/s - #[cfg_attr( - feature = "serde", - serde(rename(serialize = "orb_radial_bound_sig_dot")) - )] + #[cfg_attr(feature = "serde", serde(rename = "orb_radial_bound_sig_dot"))] pub orb_radial_bound_sig_dot: u8, /// Orbit Bound Standard Deviation Along-Track First derivative. Range: /// 0-0.255 m/s - #[cfg_attr( - feature = "serde", - serde(rename(serialize = "orb_along_bound_sig_dot")) - )] + #[cfg_attr(feature = "serde", serde(rename = "orb_along_bound_sig_dot"))] pub orb_along_bound_sig_dot: u8, /// Orbit Bound Standard Deviation Cross-Track First derivative. Range: /// 0-0.255 m/s - #[cfg_attr( - feature = "serde", - serde(rename(serialize = "orb_cross_bound_sig_dot")) - )] + #[cfg_attr(feature = "serde", serde(rename = "orb_cross_bound_sig_dot"))] pub orb_cross_bound_sig_dot: u8, /// Clock Bound Mean First derivative. Range: 0-0.255 m/s - #[cfg_attr(feature = "serde", serde(rename(serialize = "clock_bound_mu_dot")))] + #[cfg_attr(feature = "serde", serde(rename = "clock_bound_mu_dot"))] pub clock_bound_mu_dot: u8, /// Clock Bound Standard Deviation First derivative. Range: 0-0.255 m/s - #[cfg_attr(feature = "serde", serde(rename(serialize = "clock_bound_sig_dot")))] + #[cfg_attr(feature = "serde", serde(rename = "clock_bound_sig_dot"))] pub clock_bound_sig_dot: u8, } @@ -2717,28 +2693,25 @@ pub mod phase_biases_content { /// /// Phase biases are to be added to carrier phase measurements. /// - #[cfg_attr(feature = "serde", derive(serde::Serialize))] + #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] #[derive(Debug, PartialEq, Clone)] pub struct PhaseBiasesContent { /// Signal encoded following RTCM specifications (DF380, DF381, DF382 and /// DF467) - #[cfg_attr(feature = "serde", serde(rename(serialize = "code")))] + #[cfg_attr(feature = "serde", serde(rename = "code"))] pub code: u8, /// Indicator for integer property - #[cfg_attr(feature = "serde", serde(rename(serialize = "integer_indicator")))] + #[cfg_attr(feature = "serde", serde(rename = "integer_indicator"))] pub integer_indicator: u8, /// Indicator for two groups of Wide-Lane(s) integer property - #[cfg_attr( - feature = "serde", - serde(rename(serialize = "widelane_integer_indicator")) - )] + #[cfg_attr(feature = "serde", serde(rename = "widelane_integer_indicator"))] pub widelane_integer_indicator: u8, /// Signal phase discontinuity counter. Increased for every discontinuity in /// phase. - #[cfg_attr(feature = "serde", serde(rename(serialize = "discontinuity_counter")))] + #[cfg_attr(feature = "serde", serde(rename = "discontinuity_counter"))] pub discontinuity_counter: u8, /// Phase bias for specified signal - #[cfg_attr(feature = "serde", serde(rename(serialize = "bias")))] + #[cfg_attr(feature = "serde", serde(rename = "bias"))] pub bias: i32, } @@ -2787,30 +2760,30 @@ pub mod stec_header { /// since SBP message a limited to 255 bytes. The header is used to tie /// multiple SBP messages into a sequence. /// - #[cfg_attr(feature = "serde", derive(serde::Serialize))] + #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] #[derive(Debug, PartialEq, Clone)] pub struct STECHeader { /// Unique identifier of the tile set this tile belongs to. - #[cfg_attr(feature = "serde", serde(rename(serialize = "tile_set_id")))] + #[cfg_attr(feature = "serde", serde(rename = "tile_set_id"))] pub tile_set_id: u16, /// Unique identifier of this tile in the tile set. - #[cfg_attr(feature = "serde", serde(rename(serialize = "tile_id")))] + #[cfg_attr(feature = "serde", serde(rename = "tile_id"))] pub tile_id: u16, /// GNSS reference time of the correction - #[cfg_attr(feature = "serde", serde(rename(serialize = "time")))] + #[cfg_attr(feature = "serde", serde(rename = "time"))] pub time: GpsTimeSec, /// Number of messages in the dataset - #[cfg_attr(feature = "serde", serde(rename(serialize = "num_msgs")))] + #[cfg_attr(feature = "serde", serde(rename = "num_msgs"))] pub num_msgs: u8, /// Position of this message in the dataset - #[cfg_attr(feature = "serde", serde(rename(serialize = "seq_num")))] + #[cfg_attr(feature = "serde", serde(rename = "seq_num"))] pub seq_num: u8, /// Update interval between consecutive corrections. Encoded following RTCM /// DF391 specification. - #[cfg_attr(feature = "serde", serde(rename(serialize = "update_interval")))] + #[cfg_attr(feature = "serde", serde(rename = "update_interval"))] pub update_interval: u8, /// IOD of the SSR atmospheric correction - #[cfg_attr(feature = "serde", serde(rename(serialize = "iod_atmo")))] + #[cfg_attr(feature = "serde", serde(rename = "iod_atmo"))] pub iod_atmo: u8, } @@ -2867,24 +2840,24 @@ pub mod stec_header_dep_a { /// since SBP message a limited to 255 bytes. The header is used to tie /// multiple SBP messages into a sequence. /// - #[cfg_attr(feature = "serde", derive(serde::Serialize))] + #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] #[derive(Debug, PartialEq, Clone)] pub struct STECHeaderDepA { /// GNSS reference time of the correction - #[cfg_attr(feature = "serde", serde(rename(serialize = "time")))] + #[cfg_attr(feature = "serde", serde(rename = "time"))] pub time: GpsTimeSec, /// Number of messages in the dataset - #[cfg_attr(feature = "serde", serde(rename(serialize = "num_msgs")))] + #[cfg_attr(feature = "serde", serde(rename = "num_msgs"))] pub num_msgs: u8, /// Position of this message in the dataset - #[cfg_attr(feature = "serde", serde(rename(serialize = "seq_num")))] + #[cfg_attr(feature = "serde", serde(rename = "seq_num"))] pub seq_num: u8, /// Update interval between consecutive corrections. Encoded following RTCM /// DF391 specification. - #[cfg_attr(feature = "serde", serde(rename(serialize = "update_interval")))] + #[cfg_attr(feature = "serde", serde(rename = "update_interval"))] pub update_interval: u8, /// IOD of the SSR atmospheric correction - #[cfg_attr(feature = "serde", serde(rename(serialize = "iod_atmo")))] + #[cfg_attr(feature = "serde", serde(rename = "iod_atmo"))] pub iod_atmo: u8, } @@ -2932,18 +2905,18 @@ pub mod stec_residual { /// STEC residual (mean and standard deviation) for the given satellite at the /// grid point. /// - #[cfg_attr(feature = "serde", derive(serde::Serialize))] + #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] #[derive(Debug, PartialEq, Clone)] pub struct STECResidual { /// space vehicle identifier - #[cfg_attr(feature = "serde", serde(rename(serialize = "sv_id")))] + #[cfg_attr(feature = "serde", serde(rename = "sv_id"))] pub sv_id: SvId, /// STEC residual - #[cfg_attr(feature = "serde", serde(rename(serialize = "residual")))] + #[cfg_attr(feature = "serde", serde(rename = "residual"))] pub residual: i16, /// Modified DF389 scale. Class is upper 3 bits, value is lower 5. stddev <= /// (3^class * (1 + value/16) - 1) * 10 TECU - #[cfg_attr(feature = "serde", serde(rename(serialize = "stddev")))] + #[cfg_attr(feature = "serde", serde(rename = "stddev"))] pub stddev: u8, } @@ -2982,14 +2955,14 @@ pub mod stec_residual_no_std { /// /// STEC residual for the given satellite at the grid point. /// - #[cfg_attr(feature = "serde", derive(serde::Serialize))] + #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] #[derive(Debug, PartialEq, Clone)] pub struct STECResidualNoStd { /// space vehicle identifier - #[cfg_attr(feature = "serde", serde(rename(serialize = "sv_id")))] + #[cfg_attr(feature = "serde", serde(rename = "sv_id"))] pub sv_id: SvId, /// STEC residual - #[cfg_attr(feature = "serde", serde(rename(serialize = "residual")))] + #[cfg_attr(feature = "serde", serde(rename = "residual"))] pub residual: i16, } @@ -3022,19 +2995,19 @@ pub mod stec_sat_element { /// /// STEC polynomial for the given satellite. /// - #[cfg_attr(feature = "serde", derive(serde::Serialize))] + #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] #[derive(Debug, PartialEq, Clone)] pub struct STECSatElement { /// Unique space vehicle identifier - #[cfg_attr(feature = "serde", serde(rename(serialize = "sv_id")))] + #[cfg_attr(feature = "serde", serde(rename = "sv_id"))] pub sv_id: SvId, /// Quality of the STEC data. Encoded following RTCM DF389 specification but /// in units of TECU instead of m. - #[cfg_attr(feature = "serde", serde(rename(serialize = "stec_quality_indicator")))] + #[cfg_attr(feature = "serde", serde(rename = "stec_quality_indicator"))] pub stec_quality_indicator: u8, /// Coefficients of the STEC polynomial in the order of C00, C01, C10, C11. /// C00 = 0.05 TECU, C01/C10 = 0.02 TECU/deg, C11 0.02 TECU/deg^2 - #[cfg_attr(feature = "serde", serde(rename(serialize = "stec_coeff")))] + #[cfg_attr(feature = "serde", serde(rename = "stec_coeff"))] pub stec_coeff: [i16; 4], } @@ -3073,23 +3046,23 @@ pub mod stec_sat_element_integrity { /// /// STEC polynomial and bounds for the given satellite. /// - #[cfg_attr(feature = "serde", derive(serde::Serialize))] + #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] #[derive(Debug, PartialEq, Clone)] pub struct STECSatElementIntegrity { /// STEC residuals (mean, stddev) - #[cfg_attr(feature = "serde", serde(rename(serialize = "stec_residual")))] + #[cfg_attr(feature = "serde", serde(rename = "stec_residual"))] pub stec_residual: STECResidual, /// Error Bound Mean. See Note 1. - #[cfg_attr(feature = "serde", serde(rename(serialize = "stec_bound_mu")))] + #[cfg_attr(feature = "serde", serde(rename = "stec_bound_mu"))] pub stec_bound_mu: u8, /// Error Bound StDev. See Note 1. - #[cfg_attr(feature = "serde", serde(rename(serialize = "stec_bound_sig")))] + #[cfg_attr(feature = "serde", serde(rename = "stec_bound_sig"))] pub stec_bound_sig: u8, /// Error Bound Mean First derivative. - #[cfg_attr(feature = "serde", serde(rename(serialize = "stec_bound_mu_dot")))] + #[cfg_attr(feature = "serde", serde(rename = "stec_bound_mu_dot"))] pub stec_bound_mu_dot: u8, /// Error Bound StDev First derivative. - #[cfg_attr(feature = "serde", serde(rename(serialize = "stec_bound_sig_dot")))] + #[cfg_attr(feature = "serde", serde(rename = "stec_bound_sig_dot"))] pub stec_bound_sig_dot: u8, } @@ -3137,26 +3110,26 @@ pub mod satellite_apc { /// Contains phase center offset and elevation variation corrections for one /// signal on a satellite. /// - #[cfg_attr(feature = "serde", derive(serde::Serialize))] + #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] #[derive(Debug, PartialEq, Clone)] pub struct SatelliteAPC { /// GNSS signal identifier (16 bit) - #[cfg_attr(feature = "serde", serde(rename(serialize = "sid")))] + #[cfg_attr(feature = "serde", serde(rename = "sid"))] pub sid: GnssSignal, /// Additional satellite information - #[cfg_attr(feature = "serde", serde(rename(serialize = "sat_info")))] + #[cfg_attr(feature = "serde", serde(rename = "sat_info"))] pub sat_info: u8, /// Satellite Code, as defined by IGS. Typically the space vehicle number. - #[cfg_attr(feature = "serde", serde(rename(serialize = "svn")))] + #[cfg_attr(feature = "serde", serde(rename = "svn"))] pub svn: u16, /// Mean phase center offset, X Y and Z axes. See IGS ANTEX file format /// description for coordinate system definition. - #[cfg_attr(feature = "serde", serde(rename(serialize = "pco")))] + #[cfg_attr(feature = "serde", serde(rename = "pco"))] pub pco: [i16; 3], /// Elevation dependent phase center variations. First element is 0 degrees /// separation from the Z axis, subsequent elements represent elevation /// variations in 1 degree increments. - #[cfg_attr(feature = "serde", serde(rename(serialize = "pcv")))] + #[cfg_attr(feature = "serde", serde(rename = "pcv"))] pub pcv: [i8; 21], } @@ -3340,18 +3313,18 @@ pub mod tropospheric_delay_correction { /// Troposphere vertical delays (mean and standard deviation) at the grid /// point. /// - #[cfg_attr(feature = "serde", derive(serde::Serialize))] + #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] #[derive(Debug, PartialEq, Clone)] pub struct TroposphericDelayCorrection { /// Hydrostatic vertical delay. Add 2.3 m to get actual value. - #[cfg_attr(feature = "serde", serde(rename(serialize = "hydro")))] + #[cfg_attr(feature = "serde", serde(rename = "hydro"))] pub hydro: i16, /// Wet vertical delay. Add 0.252 m to get actual value. - #[cfg_attr(feature = "serde", serde(rename(serialize = "wet")))] + #[cfg_attr(feature = "serde", serde(rename = "wet"))] pub wet: i8, /// Modified DF389 scale. Class is upper 3 bits, value is lower 5. stddev <= /// (3^class * (1 + value/16) - 1) mm - #[cfg_attr(feature = "serde", serde(rename(serialize = "stddev")))] + #[cfg_attr(feature = "serde", serde(rename = "stddev"))] pub stddev: u8, } @@ -3390,14 +3363,14 @@ pub mod tropospheric_delay_correction_no_std { /// /// Troposphere vertical delays at the grid point. /// - #[cfg_attr(feature = "serde", derive(serde::Serialize))] + #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] #[derive(Debug, PartialEq, Clone)] pub struct TroposphericDelayCorrectionNoStd { /// Hydrostatic vertical delay - #[cfg_attr(feature = "serde", serde(rename(serialize = "hydro")))] + #[cfg_attr(feature = "serde", serde(rename = "hydro"))] pub hydro: i16, /// Wet vertical delay - #[cfg_attr(feature = "serde", serde(rename(serialize = "wet")))] + #[cfg_attr(feature = "serde", serde(rename = "wet"))] pub wet: i8, } diff --git a/rust/sbp/src/messages/system.rs b/rust/sbp/src/messages/system.rs index 7b7642fed9..5c51fea524 100644 --- a/rust/sbp/src/messages/system.rs +++ b/rust/sbp/src/messages/system.rs @@ -41,18 +41,18 @@ pub mod msg_csac_telemetry { /// from a device. It is not produced or available on general Swift Products. /// It is intended to be a low rate message for status purposes. /// - #[cfg_attr(feature = "serde", derive(serde::Serialize))] + #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] #[derive(Debug, PartialEq, Clone)] pub struct MsgCsacTelemetry { /// The message sender_id - #[cfg_attr(feature = "serde", serde(skip_serializing))] + #[cfg_attr(feature = "serde", serde(skip_serializing, alias = "sender"))] pub sender_id: Option, /// Index representing the type of telemetry in use. It is implementation /// defined. - #[cfg_attr(feature = "serde", serde(rename(serialize = "id")))] + #[cfg_attr(feature = "serde", serde(rename = "id"))] pub id: u8, /// Comma separated list of values as defined by the index - #[cfg_attr(feature = "serde", serde(rename(serialize = "telemetry")))] + #[cfg_attr(feature = "serde", serde(rename = "telemetry"))] pub telemetry: SbpString, Unterminated>, } @@ -121,18 +121,18 @@ pub mod msg_csac_telemetry_labels { /// produced by MSG_CSAC_TELEMETRY. It should be provided by a device at a /// lower rate than the MSG_CSAC_TELEMETRY. /// - #[cfg_attr(feature = "serde", derive(serde::Serialize))] + #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] #[derive(Debug, PartialEq, Clone)] pub struct MsgCsacTelemetryLabels { /// The message sender_id - #[cfg_attr(feature = "serde", serde(skip_serializing))] + #[cfg_attr(feature = "serde", serde(skip_serializing, alias = "sender"))] pub sender_id: Option, /// Index representing the type of telemetry in use. It is implementation /// defined. - #[cfg_attr(feature = "serde", serde(rename(serialize = "id")))] + #[cfg_attr(feature = "serde", serde(rename = "id"))] pub id: u8, /// Comma separated list of telemetry field values - #[cfg_attr(feature = "serde", serde(rename(serialize = "telemetry_labels")))] + #[cfg_attr(feature = "serde", serde(rename = "telemetry_labels"))] pub telemetry_labels: SbpString, Unterminated>, } @@ -201,23 +201,23 @@ pub mod msg_dgnss_status { /// corrections. It is expected to be sent with each receipt of a complete /// corrections packet. /// - #[cfg_attr(feature = "serde", derive(serde::Serialize))] + #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] #[derive(Debug, PartialEq, Clone)] pub struct MsgDgnssStatus { /// The message sender_id - #[cfg_attr(feature = "serde", serde(skip_serializing))] + #[cfg_attr(feature = "serde", serde(skip_serializing, alias = "sender"))] pub sender_id: Option, /// Status flags - #[cfg_attr(feature = "serde", serde(rename(serialize = "flags")))] + #[cfg_attr(feature = "serde", serde(rename = "flags"))] pub flags: u8, /// Latency of observation receipt - #[cfg_attr(feature = "serde", serde(rename(serialize = "latency")))] + #[cfg_attr(feature = "serde", serde(rename = "latency"))] pub latency: u16, /// Number of signals from base station - #[cfg_attr(feature = "serde", serde(rename(serialize = "num_signals")))] + #[cfg_attr(feature = "serde", serde(rename = "num_signals"))] pub num_signals: u8, /// Corrections source string - #[cfg_attr(feature = "serde", serde(rename(serialize = "source")))] + #[cfg_attr(feature = "serde", serde(rename = "source"))] pub source: SbpString, Unterminated>, } @@ -346,23 +346,23 @@ pub mod msg_gnss_time_offset { /// translate messages tagged with a local timestamp (e.g. IMU or wheeltick /// messages) to GNSS time for the sender producing this message. /// - #[cfg_attr(feature = "serde", derive(serde::Serialize))] + #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] #[derive(Debug, PartialEq, Clone)] pub struct MsgGnssTimeOffset { /// The message sender_id - #[cfg_attr(feature = "serde", serde(skip_serializing))] + #[cfg_attr(feature = "serde", serde(skip_serializing, alias = "sender"))] pub sender_id: Option, /// Weeks portion of the time offset - #[cfg_attr(feature = "serde", serde(rename(serialize = "weeks")))] + #[cfg_attr(feature = "serde", serde(rename = "weeks"))] pub weeks: i16, /// Milliseconds portion of the time offset - #[cfg_attr(feature = "serde", serde(rename(serialize = "milliseconds")))] + #[cfg_attr(feature = "serde", serde(rename = "milliseconds"))] pub milliseconds: i32, /// Microseconds portion of the time offset - #[cfg_attr(feature = "serde", serde(rename(serialize = "microseconds")))] + #[cfg_attr(feature = "serde", serde(rename = "microseconds"))] pub microseconds: i16, /// Status flags (reserved) - #[cfg_attr(feature = "serde", serde(rename(serialize = "flags")))] + #[cfg_attr(feature = "serde", serde(rename = "flags"))] pub flags: u8, } @@ -440,24 +440,24 @@ pub mod msg_group_meta { /// also lists the atomic contents (i.e. types of messages included) of the /// Solution Group. /// - #[cfg_attr(feature = "serde", derive(serde::Serialize))] + #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] #[derive(Debug, PartialEq, Clone)] pub struct MsgGroupMeta { /// The message sender_id - #[cfg_attr(feature = "serde", serde(skip_serializing))] + #[cfg_attr(feature = "serde", serde(skip_serializing, alias = "sender"))] pub sender_id: Option, /// Id of the Msgs Group, 0 is Unknown, 1 is Bestpos, 2 is Gnss - #[cfg_attr(feature = "serde", serde(rename(serialize = "group_id")))] + #[cfg_attr(feature = "serde", serde(rename = "group_id"))] pub group_id: u8, /// Status flags (reserved) - #[cfg_attr(feature = "serde", serde(rename(serialize = "flags")))] + #[cfg_attr(feature = "serde", serde(rename = "flags"))] pub flags: u8, /// Size of list group_msgs - #[cfg_attr(feature = "serde", serde(rename(serialize = "n_group_msgs")))] + #[cfg_attr(feature = "serde", serde(rename = "n_group_msgs"))] pub n_group_msgs: u8, /// An in-order list of message types included in the Solution Group, /// including GROUP_META itself - #[cfg_attr(feature = "serde", serde(rename(serialize = "group_msgs")))] + #[cfg_attr(feature = "serde", serde(rename = "group_msgs"))] pub group_msgs: Vec, } @@ -592,14 +592,14 @@ pub mod msg_heartbeat { /// the system. To determine the source of the error, the remaining error /// flags should be inspected. /// - #[cfg_attr(feature = "serde", derive(serde::Serialize))] + #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] #[derive(Debug, PartialEq, Clone)] pub struct MsgHeartbeat { /// The message sender_id - #[cfg_attr(feature = "serde", serde(skip_serializing))] + #[cfg_attr(feature = "serde", serde(skip_serializing, alias = "sender"))] pub sender_id: Option, /// Status flags - #[cfg_attr(feature = "serde", serde(rename(serialize = "flags")))] + #[cfg_attr(feature = "serde", serde(rename = "flags"))] pub flags: u32, } @@ -935,14 +935,14 @@ pub mod msg_ins_status { /// The INS status message describes the state of the operation and /// initialization of the inertial navigation system. /// - #[cfg_attr(feature = "serde", derive(serde::Serialize))] + #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] #[derive(Debug, PartialEq, Clone)] pub struct MsgInsStatus { /// The message sender_id - #[cfg_attr(feature = "serde", serde(skip_serializing))] + #[cfg_attr(feature = "serde", serde(skip_serializing, alias = "sender"))] pub sender_id: Option, /// Status flags - #[cfg_attr(feature = "serde", serde(rename(serialize = "flags")))] + #[cfg_attr(feature = "serde", serde(rename = "flags"))] pub flags: u32, } @@ -1375,32 +1375,32 @@ pub mod msg_ins_updates { /// rejected INS updates. This message is expected to be extended in the /// future as new types of measurements are being added. /// - #[cfg_attr(feature = "serde", derive(serde::Serialize))] + #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] #[derive(Debug, PartialEq, Clone)] pub struct MsgInsUpdates { /// The message sender_id - #[cfg_attr(feature = "serde", serde(skip_serializing))] + #[cfg_attr(feature = "serde", serde(skip_serializing, alias = "sender"))] pub sender_id: Option, /// GPS Time of Week - #[cfg_attr(feature = "serde", serde(rename(serialize = "tow")))] + #[cfg_attr(feature = "serde", serde(rename = "tow"))] pub tow: u32, /// GNSS position update status flags - #[cfg_attr(feature = "serde", serde(rename(serialize = "gnsspos")))] + #[cfg_attr(feature = "serde", serde(rename = "gnsspos"))] pub gnsspos: u8, /// GNSS velocity update status flags - #[cfg_attr(feature = "serde", serde(rename(serialize = "gnssvel")))] + #[cfg_attr(feature = "serde", serde(rename = "gnssvel"))] pub gnssvel: u8, /// Wheelticks update status flags - #[cfg_attr(feature = "serde", serde(rename(serialize = "wheelticks")))] + #[cfg_attr(feature = "serde", serde(rename = "wheelticks"))] pub wheelticks: u8, /// Wheelticks update status flags - #[cfg_attr(feature = "serde", serde(rename(serialize = "speed")))] + #[cfg_attr(feature = "serde", serde(rename = "speed"))] pub speed: u8, /// NHC update status flags - #[cfg_attr(feature = "serde", serde(rename(serialize = "nhc")))] + #[cfg_attr(feature = "serde", serde(rename = "nhc"))] pub nhc: u8, /// Zero velocity update status flags - #[cfg_attr(feature = "serde", serde(rename(serialize = "zerovel")))] + #[cfg_attr(feature = "serde", serde(rename = "zerovel"))] pub zerovel: u8, } @@ -1750,17 +1750,17 @@ pub mod msg_pps_time { /// timestamping. The sender ID for each of these MSG_PPS_TIME messages /// should match the sender ID of the respective sensor data. /// - #[cfg_attr(feature = "serde", derive(serde::Serialize))] + #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] #[derive(Debug, PartialEq, Clone)] pub struct MsgPpsTime { /// The message sender_id - #[cfg_attr(feature = "serde", serde(skip_serializing))] + #[cfg_attr(feature = "serde", serde(skip_serializing, alias = "sender"))] pub sender_id: Option, /// Local time in microseconds - #[cfg_attr(feature = "serde", serde(rename(serialize = "time")))] + #[cfg_attr(feature = "serde", serde(rename = "time"))] pub time: u64, /// Status flags - #[cfg_attr(feature = "serde", serde(rename(serialize = "flags")))] + #[cfg_attr(feature = "serde", serde(rename = "flags"))] pub flags: u8, } @@ -1895,35 +1895,35 @@ pub mod msg_sensor_aid_event { /// generated asynchronously to the solution messages and will be emitted /// anytime a sensor update is being processed. /// - #[cfg_attr(feature = "serde", derive(serde::Serialize))] + #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] #[derive(Debug, PartialEq, Clone)] pub struct MsgSensorAidEvent { /// The message sender_id - #[cfg_attr(feature = "serde", serde(skip_serializing))] + #[cfg_attr(feature = "serde", serde(skip_serializing, alias = "sender"))] pub sender_id: Option, /// Update timestamp in milliseconds. - #[cfg_attr(feature = "serde", serde(rename(serialize = "time")))] + #[cfg_attr(feature = "serde", serde(rename = "time"))] pub time: u32, /// Sensor type - #[cfg_attr(feature = "serde", serde(rename(serialize = "sensor_type")))] + #[cfg_attr(feature = "serde", serde(rename = "sensor_type"))] pub sensor_type: u8, /// Sensor identifier - #[cfg_attr(feature = "serde", serde(rename(serialize = "sensor_id")))] + #[cfg_attr(feature = "serde", serde(rename = "sensor_id"))] pub sensor_id: u16, /// Reserved for future use - #[cfg_attr(feature = "serde", serde(rename(serialize = "sensor_state")))] + #[cfg_attr(feature = "serde", serde(rename = "sensor_state"))] pub sensor_state: u8, /// Number of available measurements in this epoch - #[cfg_attr(feature = "serde", serde(rename(serialize = "n_available_meas")))] + #[cfg_attr(feature = "serde", serde(rename = "n_available_meas"))] pub n_available_meas: u8, /// Number of attempted measurements in this epoch - #[cfg_attr(feature = "serde", serde(rename(serialize = "n_attempted_meas")))] + #[cfg_attr(feature = "serde", serde(rename = "n_attempted_meas"))] pub n_attempted_meas: u8, /// Number of accepted measurements in this epoch - #[cfg_attr(feature = "serde", serde(rename(serialize = "n_accepted_meas")))] + #[cfg_attr(feature = "serde", serde(rename = "n_accepted_meas"))] pub n_accepted_meas: u8, /// Reserved for future use - #[cfg_attr(feature = "serde", serde(rename(serialize = "flags")))] + #[cfg_attr(feature = "serde", serde(rename = "flags"))] pub flags: u32, } @@ -2092,20 +2092,20 @@ pub mod msg_startup { /// the host or other attached devices that the system has started and is now /// ready to respond to commands or configuration requests. /// - #[cfg_attr(feature = "serde", derive(serde::Serialize))] + #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] #[derive(Debug, PartialEq, Clone)] pub struct MsgStartup { /// The message sender_id - #[cfg_attr(feature = "serde", serde(skip_serializing))] + #[cfg_attr(feature = "serde", serde(skip_serializing, alias = "sender"))] pub sender_id: Option, /// Cause of startup - #[cfg_attr(feature = "serde", serde(rename(serialize = "cause")))] + #[cfg_attr(feature = "serde", serde(rename = "cause"))] pub cause: u8, /// Startup type - #[cfg_attr(feature = "serde", serde(rename(serialize = "startup_type")))] + #[cfg_attr(feature = "serde", serde(rename = "startup_type"))] pub startup_type: u8, /// Reserved - #[cfg_attr(feature = "serde", serde(rename(serialize = "reserved")))] + #[cfg_attr(feature = "serde", serde(rename = "reserved"))] pub reserved: u16, } @@ -2278,28 +2278,28 @@ pub mod msg_status_journal { /// MSG_STATUS_REPORT) and functions as a error/event storage for telemetry /// purposes. /// - #[cfg_attr(feature = "serde", derive(serde::Serialize))] + #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] #[derive(Debug, PartialEq, Clone)] pub struct MsgStatusJournal { /// The message sender_id - #[cfg_attr(feature = "serde", serde(skip_serializing))] + #[cfg_attr(feature = "serde", serde(skip_serializing, alias = "sender"))] pub sender_id: Option, /// Identity of reporting system - #[cfg_attr(feature = "serde", serde(rename(serialize = "reporting_system")))] + #[cfg_attr(feature = "serde", serde(rename = "reporting_system"))] pub reporting_system: u16, /// SBP protocol version - #[cfg_attr(feature = "serde", serde(rename(serialize = "sbp_version")))] + #[cfg_attr(feature = "serde", serde(rename = "sbp_version"))] pub sbp_version: u16, /// Total number of status reports sent since system startup - #[cfg_attr(feature = "serde", serde(rename(serialize = "total_status_reports")))] + #[cfg_attr(feature = "serde", serde(rename = "total_status_reports"))] pub total_status_reports: u32, /// Index and number of messages in this sequence. First nibble is the size /// of the sequence (n), second nibble is the zero-indexed counter (ith /// packet of n) - #[cfg_attr(feature = "serde", serde(rename(serialize = "sequence_descriptor")))] + #[cfg_attr(feature = "serde", serde(rename = "sequence_descriptor"))] pub sequence_descriptor: u8, /// Status journal - #[cfg_attr(feature = "serde", serde(rename(serialize = "journal")))] + #[cfg_attr(feature = "serde", serde(rename = "journal"))] pub journal: Vec, } @@ -2472,26 +2472,26 @@ pub mod msg_status_report { /// but if the generic status code is initializing, it should be ignored. /// Refer to product documentation for details. /// - #[cfg_attr(feature = "serde", derive(serde::Serialize))] + #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] #[derive(Debug, PartialEq, Clone)] pub struct MsgStatusReport { /// The message sender_id - #[cfg_attr(feature = "serde", serde(skip_serializing))] + #[cfg_attr(feature = "serde", serde(skip_serializing, alias = "sender"))] pub sender_id: Option, /// Identity of reporting system - #[cfg_attr(feature = "serde", serde(rename(serialize = "reporting_system")))] + #[cfg_attr(feature = "serde", serde(rename = "reporting_system"))] pub reporting_system: u16, /// SBP protocol version - #[cfg_attr(feature = "serde", serde(rename(serialize = "sbp_version")))] + #[cfg_attr(feature = "serde", serde(rename = "sbp_version"))] pub sbp_version: u16, /// Increments on each status report sent - #[cfg_attr(feature = "serde", serde(rename(serialize = "sequence")))] + #[cfg_attr(feature = "serde", serde(rename = "sequence"))] pub sequence: u32, /// Number of seconds since system start-up - #[cfg_attr(feature = "serde", serde(rename(serialize = "uptime")))] + #[cfg_attr(feature = "serde", serde(rename = "uptime"))] pub uptime: u32, /// Reported status of individual subsystems - #[cfg_attr(feature = "serde", serde(rename(serialize = "status")))] + #[cfg_attr(feature = "serde", serde(rename = "status"))] pub status: Vec, } @@ -2659,13 +2659,13 @@ pub mod status_journal_item { /// status codes. If the generic state is reported as initializing, the /// specific state should be ignored. /// - #[cfg_attr(feature = "serde", derive(serde::Serialize))] + #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] #[derive(Debug, PartialEq, Clone)] pub struct StatusJournalItem { /// Milliseconds since system startup - #[cfg_attr(feature = "serde", serde(rename(serialize = "uptime")))] + #[cfg_attr(feature = "serde", serde(rename = "uptime"))] pub uptime: u32, - #[cfg_attr(feature = "serde", serde(rename(serialize = "report")))] + #[cfg_attr(feature = "serde", serde(rename = "report"))] pub report: SubSystemReport, } @@ -2699,17 +2699,17 @@ pub mod sub_system_report { /// Report the general and specific state of a subsystem. If the generic /// state is reported as initializing, the specific state should be ignored. /// - #[cfg_attr(feature = "serde", derive(serde::Serialize))] + #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] #[derive(Debug, PartialEq, Clone)] pub struct SubSystemReport { /// Identity of reporting subsystem - #[cfg_attr(feature = "serde", serde(rename(serialize = "component")))] + #[cfg_attr(feature = "serde", serde(rename = "component"))] pub component: u16, /// Generic form status report - #[cfg_attr(feature = "serde", serde(rename(serialize = "generic")))] + #[cfg_attr(feature = "serde", serde(rename = "generic"))] pub generic: u8, /// Subsystem specific status code - #[cfg_attr(feature = "serde", serde(rename(serialize = "specific")))] + #[cfg_attr(feature = "serde", serde(rename = "specific"))] pub specific: u8, } diff --git a/rust/sbp/src/messages/tracking.rs b/rust/sbp/src/messages/tracking.rs index dfed0d67ee..1ed454a006 100644 --- a/rust/sbp/src/messages/tracking.rs +++ b/rust/sbp/src/messages/tracking.rs @@ -42,14 +42,14 @@ pub mod msg_measurement_state { /// states. It reports status and carrier-to-noise density measurements for /// all tracked satellites. /// - #[cfg_attr(feature = "serde", derive(serde::Serialize))] + #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] #[derive(Debug, PartialEq, Clone)] pub struct MsgMeasurementState { /// The message sender_id - #[cfg_attr(feature = "serde", serde(skip_serializing))] + #[cfg_attr(feature = "serde", serde(skip_serializing, alias = "sender"))] pub sender_id: Option, /// ME signal tracking channel state - #[cfg_attr(feature = "serde", serde(rename(serialize = "states")))] + #[cfg_attr(feature = "serde", serde(rename = "states"))] pub states: Vec, } @@ -115,20 +115,20 @@ pub mod msg_tracking_iq { /// When enabled, a tracking channel can output the correlations at each /// update interval. /// - #[cfg_attr(feature = "serde", derive(serde::Serialize))] + #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] #[derive(Debug, PartialEq, Clone)] pub struct MsgTrackingIq { /// The message sender_id - #[cfg_attr(feature = "serde", serde(skip_serializing))] + #[cfg_attr(feature = "serde", serde(skip_serializing, alias = "sender"))] pub sender_id: Option, /// Tracking channel of origin - #[cfg_attr(feature = "serde", serde(rename(serialize = "channel")))] + #[cfg_attr(feature = "serde", serde(rename = "channel"))] pub channel: u8, /// GNSS signal identifier - #[cfg_attr(feature = "serde", serde(rename(serialize = "sid")))] + #[cfg_attr(feature = "serde", serde(rename = "sid"))] pub sid: GnssSignal, /// Early, Prompt and Late correlations - #[cfg_attr(feature = "serde", serde(rename(serialize = "corrs")))] + #[cfg_attr(feature = "serde", serde(rename = "corrs"))] pub corrs: [TrackingChannelCorrelation; 3], } @@ -201,20 +201,20 @@ pub mod msg_tracking_iq_dep_a { /// /// Deprecated. /// - #[cfg_attr(feature = "serde", derive(serde::Serialize))] + #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] #[derive(Debug, PartialEq, Clone)] pub struct MsgTrackingIqDepA { /// The message sender_id - #[cfg_attr(feature = "serde", serde(skip_serializing))] + #[cfg_attr(feature = "serde", serde(skip_serializing, alias = "sender"))] pub sender_id: Option, /// Tracking channel of origin - #[cfg_attr(feature = "serde", serde(rename(serialize = "channel")))] + #[cfg_attr(feature = "serde", serde(rename = "channel"))] pub channel: u8, /// GNSS signal identifier - #[cfg_attr(feature = "serde", serde(rename(serialize = "sid")))] + #[cfg_attr(feature = "serde", serde(rename = "sid"))] pub sid: GnssSignalDep, /// Early, Prompt and Late correlations - #[cfg_attr(feature = "serde", serde(rename(serialize = "corrs")))] + #[cfg_attr(feature = "serde", serde(rename = "corrs"))] pub corrs: [TrackingChannelCorrelationDep; 3], } @@ -288,20 +288,20 @@ pub mod msg_tracking_iq_dep_b { /// When enabled, a tracking channel can output the correlations at each /// update interval. /// - #[cfg_attr(feature = "serde", derive(serde::Serialize))] + #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] #[derive(Debug, PartialEq, Clone)] pub struct MsgTrackingIqDepB { /// The message sender_id - #[cfg_attr(feature = "serde", serde(skip_serializing))] + #[cfg_attr(feature = "serde", serde(skip_serializing, alias = "sender"))] pub sender_id: Option, /// Tracking channel of origin - #[cfg_attr(feature = "serde", serde(rename(serialize = "channel")))] + #[cfg_attr(feature = "serde", serde(rename = "channel"))] pub channel: u8, /// GNSS signal identifier - #[cfg_attr(feature = "serde", serde(rename(serialize = "sid")))] + #[cfg_attr(feature = "serde", serde(rename = "sid"))] pub sid: GnssSignal, /// Early, Prompt and Late correlations - #[cfg_attr(feature = "serde", serde(rename(serialize = "corrs")))] + #[cfg_attr(feature = "serde", serde(rename = "corrs"))] pub corrs: [TrackingChannelCorrelationDep; 3], } @@ -376,14 +376,14 @@ pub mod msg_tracking_state { /// states. It reports status and carrier-to-noise density measurements for /// all tracked satellites. /// - #[cfg_attr(feature = "serde", derive(serde::Serialize))] + #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] #[derive(Debug, PartialEq, Clone)] pub struct MsgTrackingState { /// The message sender_id - #[cfg_attr(feature = "serde", serde(skip_serializing))] + #[cfg_attr(feature = "serde", serde(skip_serializing, alias = "sender"))] pub sender_id: Option, /// Signal tracking channel state - #[cfg_attr(feature = "serde", serde(rename(serialize = "states")))] + #[cfg_attr(feature = "serde", serde(rename = "states"))] pub states: Vec, } @@ -448,14 +448,14 @@ pub mod msg_tracking_state_dep_a { /// /// Deprecated. /// - #[cfg_attr(feature = "serde", derive(serde::Serialize))] + #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] #[derive(Debug, PartialEq, Clone)] pub struct MsgTrackingStateDepA { /// The message sender_id - #[cfg_attr(feature = "serde", serde(skip_serializing))] + #[cfg_attr(feature = "serde", serde(skip_serializing, alias = "sender"))] pub sender_id: Option, /// Satellite tracking channel state - #[cfg_attr(feature = "serde", serde(rename(serialize = "states")))] + #[cfg_attr(feature = "serde", serde(rename = "states"))] pub states: Vec, } @@ -520,14 +520,14 @@ pub mod msg_tracking_state_dep_b { /// /// Deprecated. /// - #[cfg_attr(feature = "serde", derive(serde::Serialize))] + #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] #[derive(Debug, PartialEq, Clone)] pub struct MsgTrackingStateDepB { /// The message sender_id - #[cfg_attr(feature = "serde", serde(skip_serializing))] + #[cfg_attr(feature = "serde", serde(skip_serializing, alias = "sender"))] pub sender_id: Option, /// Signal tracking channel state - #[cfg_attr(feature = "serde", serde(rename(serialize = "states")))] + #[cfg_attr(feature = "serde", serde(rename = "states"))] pub states: Vec, } @@ -592,80 +592,80 @@ pub mod msg_tracking_state_detailed_dep { /// /// Deprecated. /// - #[cfg_attr(feature = "serde", derive(serde::Serialize))] + #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] #[derive(Debug, PartialEq, Clone)] pub struct MsgTrackingStateDetailedDep { /// The message sender_id - #[cfg_attr(feature = "serde", serde(skip_serializing))] + #[cfg_attr(feature = "serde", serde(skip_serializing, alias = "sender"))] pub sender_id: Option, /// Receiver clock time. - #[cfg_attr(feature = "serde", serde(rename(serialize = "recv_time")))] + #[cfg_attr(feature = "serde", serde(rename = "recv_time"))] pub recv_time: u64, /// Time of transmission of signal from satellite. TOW only valid when TOW /// status is decoded or propagated. WN only valid when week number valid /// flag is set. - #[cfg_attr(feature = "serde", serde(rename(serialize = "tot")))] + #[cfg_attr(feature = "serde", serde(rename = "tot"))] pub tot: GpsTimeDep, /// Pseudorange observation. Valid only when pseudorange valid flag is set. - #[cfg_attr(feature = "serde", serde(rename(serialize = "P")))] + #[cfg_attr(feature = "serde", serde(rename = "P"))] pub p: u32, /// Pseudorange observation standard deviation. Valid only when pseudorange /// valid flag is set. - #[cfg_attr(feature = "serde", serde(rename(serialize = "P_std")))] + #[cfg_attr(feature = "serde", serde(rename = "P_std"))] pub p_std: u16, /// Carrier phase observation with typical sign convention. Valid only when /// PLL pessimistic lock is achieved. - #[cfg_attr(feature = "serde", serde(rename(serialize = "L")))] + #[cfg_attr(feature = "serde", serde(rename = "L"))] pub l: CarrierPhase, /// Carrier-to-Noise density - #[cfg_attr(feature = "serde", serde(rename(serialize = "cn0")))] + #[cfg_attr(feature = "serde", serde(rename = "cn0"))] pub cn0: u8, /// Lock time. It is encoded according to DF402 from the RTCM 10403.2 /// Amendment 2 specification. Valid values range from 0 to 15. - #[cfg_attr(feature = "serde", serde(rename(serialize = "lock")))] + #[cfg_attr(feature = "serde", serde(rename = "lock"))] pub lock: u16, /// GNSS signal identifier. - #[cfg_attr(feature = "serde", serde(rename(serialize = "sid")))] + #[cfg_attr(feature = "serde", serde(rename = "sid"))] pub sid: GnssSignalDep, /// Carrier Doppler frequency. - #[cfg_attr(feature = "serde", serde(rename(serialize = "doppler")))] + #[cfg_attr(feature = "serde", serde(rename = "doppler"))] pub doppler: i32, /// Carrier Doppler frequency standard deviation. - #[cfg_attr(feature = "serde", serde(rename(serialize = "doppler_std")))] + #[cfg_attr(feature = "serde", serde(rename = "doppler_std"))] pub doppler_std: u16, /// Number of seconds of continuous tracking. Specifies how much time signal /// is in continuous track. - #[cfg_attr(feature = "serde", serde(rename(serialize = "uptime")))] + #[cfg_attr(feature = "serde", serde(rename = "uptime"))] pub uptime: u32, /// TCXO clock offset. Valid only when valid clock valid flag is set. - #[cfg_attr(feature = "serde", serde(rename(serialize = "clock_offset")))] + #[cfg_attr(feature = "serde", serde(rename = "clock_offset"))] pub clock_offset: i16, /// TCXO clock drift. Valid only when valid clock valid flag is set. - #[cfg_attr(feature = "serde", serde(rename(serialize = "clock_drift")))] + #[cfg_attr(feature = "serde", serde(rename = "clock_drift"))] pub clock_drift: i16, /// Early-Prompt (EP) and Prompt-Late (PL) correlators spacing. - #[cfg_attr(feature = "serde", serde(rename(serialize = "corr_spacing")))] + #[cfg_attr(feature = "serde", serde(rename = "corr_spacing"))] pub corr_spacing: u16, /// Acceleration. Valid only when acceleration valid flag is set. - #[cfg_attr(feature = "serde", serde(rename(serialize = "acceleration")))] + #[cfg_attr(feature = "serde", serde(rename = "acceleration"))] pub acceleration: i8, /// Synchronization status flags. - #[cfg_attr(feature = "serde", serde(rename(serialize = "sync_flags")))] + #[cfg_attr(feature = "serde", serde(rename = "sync_flags"))] pub sync_flags: u8, /// TOW status flags. - #[cfg_attr(feature = "serde", serde(rename(serialize = "tow_flags")))] + #[cfg_attr(feature = "serde", serde(rename = "tow_flags"))] pub tow_flags: u8, /// Tracking loop status flags. - #[cfg_attr(feature = "serde", serde(rename(serialize = "track_flags")))] + #[cfg_attr(feature = "serde", serde(rename = "track_flags"))] pub track_flags: u8, /// Navigation data status flags. - #[cfg_attr(feature = "serde", serde(rename(serialize = "nav_flags")))] + #[cfg_attr(feature = "serde", serde(rename = "nav_flags"))] pub nav_flags: u8, /// Parameters sets flags. - #[cfg_attr(feature = "serde", serde(rename(serialize = "pset_flags")))] + #[cfg_attr(feature = "serde", serde(rename = "pset_flags"))] pub pset_flags: u8, /// Miscellaneous flags. - #[cfg_attr(feature = "serde", serde(rename(serialize = "misc_flags")))] + #[cfg_attr(feature = "serde", serde(rename = "misc_flags"))] pub misc_flags: u8, } @@ -1609,80 +1609,80 @@ pub mod msg_tracking_state_detailed_dep_a { /// The tracking message returns a set tracking channel parameters for a /// single tracking channel useful for debugging issues. /// - #[cfg_attr(feature = "serde", derive(serde::Serialize))] + #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] #[derive(Debug, PartialEq, Clone)] pub struct MsgTrackingStateDetailedDepA { /// The message sender_id - #[cfg_attr(feature = "serde", serde(skip_serializing))] + #[cfg_attr(feature = "serde", serde(skip_serializing, alias = "sender"))] pub sender_id: Option, /// Receiver clock time. - #[cfg_attr(feature = "serde", serde(rename(serialize = "recv_time")))] + #[cfg_attr(feature = "serde", serde(rename = "recv_time"))] pub recv_time: u64, /// Time of transmission of signal from satellite. TOW only valid when TOW /// status is decoded or propagated. WN only valid when week number valid /// flag is set. - #[cfg_attr(feature = "serde", serde(rename(serialize = "tot")))] + #[cfg_attr(feature = "serde", serde(rename = "tot"))] pub tot: GpsTime, /// Pseudorange observation. Valid only when pseudorange valid flag is set. - #[cfg_attr(feature = "serde", serde(rename(serialize = "P")))] + #[cfg_attr(feature = "serde", serde(rename = "P"))] pub p: u32, /// Pseudorange observation standard deviation. Valid only when pseudorange /// valid flag is set. - #[cfg_attr(feature = "serde", serde(rename(serialize = "P_std")))] + #[cfg_attr(feature = "serde", serde(rename = "P_std"))] pub p_std: u16, /// Carrier phase observation with typical sign convention. Valid only when /// PLL pessimistic lock is achieved. - #[cfg_attr(feature = "serde", serde(rename(serialize = "L")))] + #[cfg_attr(feature = "serde", serde(rename = "L"))] pub l: CarrierPhase, /// Carrier-to-Noise density - #[cfg_attr(feature = "serde", serde(rename(serialize = "cn0")))] + #[cfg_attr(feature = "serde", serde(rename = "cn0"))] pub cn0: u8, /// Lock time. It is encoded according to DF402 from the RTCM 10403.2 /// Amendment 2 specification. Valid values range from 0 to 15. - #[cfg_attr(feature = "serde", serde(rename(serialize = "lock")))] + #[cfg_attr(feature = "serde", serde(rename = "lock"))] pub lock: u16, /// GNSS signal identifier. - #[cfg_attr(feature = "serde", serde(rename(serialize = "sid")))] + #[cfg_attr(feature = "serde", serde(rename = "sid"))] pub sid: GnssSignal, /// Carrier Doppler frequency. - #[cfg_attr(feature = "serde", serde(rename(serialize = "doppler")))] + #[cfg_attr(feature = "serde", serde(rename = "doppler"))] pub doppler: i32, /// Carrier Doppler frequency standard deviation. - #[cfg_attr(feature = "serde", serde(rename(serialize = "doppler_std")))] + #[cfg_attr(feature = "serde", serde(rename = "doppler_std"))] pub doppler_std: u16, /// Number of seconds of continuous tracking. Specifies how much time signal /// is in continuous track. - #[cfg_attr(feature = "serde", serde(rename(serialize = "uptime")))] + #[cfg_attr(feature = "serde", serde(rename = "uptime"))] pub uptime: u32, /// TCXO clock offset. Valid only when valid clock valid flag is set. - #[cfg_attr(feature = "serde", serde(rename(serialize = "clock_offset")))] + #[cfg_attr(feature = "serde", serde(rename = "clock_offset"))] pub clock_offset: i16, /// TCXO clock drift. Valid only when valid clock valid flag is set. - #[cfg_attr(feature = "serde", serde(rename(serialize = "clock_drift")))] + #[cfg_attr(feature = "serde", serde(rename = "clock_drift"))] pub clock_drift: i16, /// Early-Prompt (EP) and Prompt-Late (PL) correlators spacing. - #[cfg_attr(feature = "serde", serde(rename(serialize = "corr_spacing")))] + #[cfg_attr(feature = "serde", serde(rename = "corr_spacing"))] pub corr_spacing: u16, /// Acceleration. Valid only when acceleration valid flag is set. - #[cfg_attr(feature = "serde", serde(rename(serialize = "acceleration")))] + #[cfg_attr(feature = "serde", serde(rename = "acceleration"))] pub acceleration: i8, /// Synchronization status flags. - #[cfg_attr(feature = "serde", serde(rename(serialize = "sync_flags")))] + #[cfg_attr(feature = "serde", serde(rename = "sync_flags"))] pub sync_flags: u8, /// TOW status flags. - #[cfg_attr(feature = "serde", serde(rename(serialize = "tow_flags")))] + #[cfg_attr(feature = "serde", serde(rename = "tow_flags"))] pub tow_flags: u8, /// Tracking loop status flags. - #[cfg_attr(feature = "serde", serde(rename(serialize = "track_flags")))] + #[cfg_attr(feature = "serde", serde(rename = "track_flags"))] pub track_flags: u8, /// Navigation data status flags. - #[cfg_attr(feature = "serde", serde(rename(serialize = "nav_flags")))] + #[cfg_attr(feature = "serde", serde(rename = "nav_flags"))] pub nav_flags: u8, /// Parameters sets flags. - #[cfg_attr(feature = "serde", serde(rename(serialize = "pset_flags")))] + #[cfg_attr(feature = "serde", serde(rename = "pset_flags"))] pub pset_flags: u8, /// Miscellaneous flags. - #[cfg_attr(feature = "serde", serde(rename(serialize = "misc_flags")))] + #[cfg_attr(feature = "serde", serde(rename = "misc_flags"))] pub misc_flags: u8, } @@ -2628,15 +2628,15 @@ pub mod measurement_state { /// the FCN as 100 + FCN where FCN is in \[-7, +6\] or the Slot ID (from 1 to /// 28). /// - #[cfg_attr(feature = "serde", derive(serde::Serialize))] + #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] #[derive(Debug, PartialEq, Clone)] pub struct MeasurementState { /// Measurement Engine GNSS signal being tracked (carries either Glonass FCN /// or SLOT) - #[cfg_attr(feature = "serde", serde(rename(serialize = "mesid")))] + #[cfg_attr(feature = "serde", serde(rename = "mesid"))] pub mesid: GnssSignal, /// Carrier-to-Noise density. Zero implies invalid cn0. - #[cfg_attr(feature = "serde", serde(rename(serialize = "cn0")))] + #[cfg_attr(feature = "serde", serde(rename = "cn0"))] pub cn0: u8, } @@ -2669,14 +2669,14 @@ pub mod tracking_channel_correlation { /// /// Structure containing in-phase and quadrature correlation components. /// - #[cfg_attr(feature = "serde", derive(serde::Serialize))] + #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] #[derive(Debug, PartialEq, Clone)] pub struct TrackingChannelCorrelation { /// In-phase correlation - #[cfg_attr(feature = "serde", serde(rename(serialize = "I")))] + #[cfg_attr(feature = "serde", serde(rename = "I"))] pub i: i16, /// Quadrature correlation - #[cfg_attr(feature = "serde", serde(rename(serialize = "Q")))] + #[cfg_attr(feature = "serde", serde(rename = "Q"))] pub q: i16, } @@ -2709,14 +2709,14 @@ pub mod tracking_channel_correlation_dep { /// /// Structure containing in-phase and quadrature correlation components. /// - #[cfg_attr(feature = "serde", derive(serde::Serialize))] + #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] #[derive(Debug, PartialEq, Clone)] pub struct TrackingChannelCorrelationDep { /// In-phase correlation - #[cfg_attr(feature = "serde", serde(rename(serialize = "I")))] + #[cfg_attr(feature = "serde", serde(rename = "I"))] pub i: i32, /// Quadrature correlation - #[cfg_attr(feature = "serde", serde(rename(serialize = "Q")))] + #[cfg_attr(feature = "serde", serde(rename = "Q"))] pub q: i32, } @@ -2750,17 +2750,17 @@ pub mod tracking_channel_state { /// Tracking channel state for a specific satellite signal and measured signal /// power. /// - #[cfg_attr(feature = "serde", derive(serde::Serialize))] + #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] #[derive(Debug, PartialEq, Clone)] pub struct TrackingChannelState { /// GNSS signal being tracked - #[cfg_attr(feature = "serde", serde(rename(serialize = "sid")))] + #[cfg_attr(feature = "serde", serde(rename = "sid"))] pub sid: GnssSignal, /// Frequency channel number (GLONASS only) - #[cfg_attr(feature = "serde", serde(rename(serialize = "fcn")))] + #[cfg_attr(feature = "serde", serde(rename = "fcn"))] pub fcn: u8, /// Carrier-to-Noise density. Zero implies invalid cn0. - #[cfg_attr(feature = "serde", serde(rename(serialize = "cn0")))] + #[cfg_attr(feature = "serde", serde(rename = "cn0"))] pub cn0: u8, } @@ -2797,17 +2797,17 @@ pub mod tracking_channel_state_dep_a { /// /// Deprecated. /// - #[cfg_attr(feature = "serde", derive(serde::Serialize))] + #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] #[derive(Debug, PartialEq, Clone)] pub struct TrackingChannelStateDepA { /// Status of tracking channel - #[cfg_attr(feature = "serde", serde(rename(serialize = "state")))] + #[cfg_attr(feature = "serde", serde(rename = "state"))] pub state: u8, /// PRN-1 being tracked - #[cfg_attr(feature = "serde", serde(rename(serialize = "prn")))] + #[cfg_attr(feature = "serde", serde(rename = "prn"))] pub prn: u8, /// Carrier-to-noise density - #[cfg_attr(feature = "serde", serde(rename(serialize = "cn0")))] + #[cfg_attr(feature = "serde", serde(rename = "cn0"))] pub cn0: f32, } @@ -2890,17 +2890,17 @@ pub mod tracking_channel_state_dep_b { /// /// Deprecated. /// - #[cfg_attr(feature = "serde", derive(serde::Serialize))] + #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] #[derive(Debug, PartialEq, Clone)] pub struct TrackingChannelStateDepB { /// Status of tracking channel - #[cfg_attr(feature = "serde", serde(rename(serialize = "state")))] + #[cfg_attr(feature = "serde", serde(rename = "state"))] pub state: u8, /// GNSS signal being tracked - #[cfg_attr(feature = "serde", serde(rename(serialize = "sid")))] + #[cfg_attr(feature = "serde", serde(rename = "sid"))] pub sid: GnssSignalDep, /// Carrier-to-noise density - #[cfg_attr(feature = "serde", serde(rename(serialize = "cn0")))] + #[cfg_attr(feature = "serde", serde(rename = "cn0"))] pub cn0: f32, } diff --git a/rust/sbp/src/messages/user.rs b/rust/sbp/src/messages/user.rs index acd37f5a86..3fff513957 100644 --- a/rust/sbp/src/messages/user.rs +++ b/rust/sbp/src/messages/user.rs @@ -26,14 +26,14 @@ pub mod msg_user_data { /// This message can contain any application specific user data up to a /// maximum length of 255 bytes per message. /// - #[cfg_attr(feature = "serde", derive(serde::Serialize))] + #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] #[derive(Debug, PartialEq, Clone)] pub struct MsgUserData { /// The message sender_id - #[cfg_attr(feature = "serde", serde(skip_serializing))] + #[cfg_attr(feature = "serde", serde(skip_serializing, alias = "sender"))] pub sender_id: Option, /// User data payload - #[cfg_attr(feature = "serde", serde(rename(serialize = "contents")))] + #[cfg_attr(feature = "serde", serde(rename = "contents"))] pub contents: Vec, } diff --git a/rust/sbp/src/messages/vehicle.rs b/rust/sbp/src/messages/vehicle.rs index f41dbbae1c..9c414db42c 100644 --- a/rust/sbp/src/messages/vehicle.rs +++ b/rust/sbp/src/messages/vehicle.rs @@ -34,22 +34,22 @@ pub mod msg_odometry { /// available to synchronise odometry measurements with GNSS. Processor time /// shall roll over to zero after one week. /// - #[cfg_attr(feature = "serde", derive(serde::Serialize))] + #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] #[derive(Debug, PartialEq, Clone)] pub struct MsgOdometry { /// The message sender_id - #[cfg_attr(feature = "serde", serde(skip_serializing))] + #[cfg_attr(feature = "serde", serde(skip_serializing, alias = "sender"))] pub sender_id: Option, /// Time field representing either milliseconds in the GPS Week or local CPU /// time from the producing system in milliseconds. See the tow_source flag /// for the exact source of this timestamp. - #[cfg_attr(feature = "serde", serde(rename(serialize = "tow")))] + #[cfg_attr(feature = "serde", serde(rename = "tow"))] pub tow: u32, /// The signed forward component of vehicle velocity. - #[cfg_attr(feature = "serde", serde(rename(serialize = "velocity")))] + #[cfg_attr(feature = "serde", serde(rename = "velocity"))] pub velocity: i32, /// Status flags - #[cfg_attr(feature = "serde", serde(rename(serialize = "flags")))] + #[cfg_attr(feature = "serde", serde(rename = "flags"))] pub flags: u8, } @@ -299,28 +299,28 @@ pub mod msg_wheeltick { /// when a PVT fix becomes available to synchronise wheeltick measurements /// with GNSS. Local CPU time shall roll over to zero after one week. /// - #[cfg_attr(feature = "serde", derive(serde::Serialize))] + #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] #[derive(Debug, PartialEq, Clone)] pub struct MsgWheeltick { /// The message sender_id - #[cfg_attr(feature = "serde", serde(skip_serializing))] + #[cfg_attr(feature = "serde", serde(skip_serializing, alias = "sender"))] pub sender_id: Option, /// Time field representing either microseconds since the last PPS, /// microseconds in the GPS Week or local CPU time from the producing system /// in microseconds. See the synch_type field for the exact meaning of this /// timestamp. - #[cfg_attr(feature = "serde", serde(rename(serialize = "time")))] + #[cfg_attr(feature = "serde", serde(rename = "time"))] pub time: u64, /// Field indicating the type of timestamp contained in the time field. - #[cfg_attr(feature = "serde", serde(rename(serialize = "flags")))] + #[cfg_attr(feature = "serde", serde(rename = "flags"))] pub flags: u8, /// ID of the sensor producing this message - #[cfg_attr(feature = "serde", serde(rename(serialize = "source")))] + #[cfg_attr(feature = "serde", serde(rename = "source"))] pub source: u8, /// Free-running counter of the accumulated distance for this sensor. The /// counter should be incrementing if travelling into one direction and /// decrementing when travelling in the opposite direction. - #[cfg_attr(feature = "serde", serde(rename(serialize = "ticks")))] + #[cfg_attr(feature = "serde", serde(rename = "ticks"))] pub ticks: i32, } diff --git a/rust/sbp/src/sbp_string.rs b/rust/sbp/src/sbp_string.rs index ce5c6183fc..ea56de5ada 100644 --- a/rust/sbp/src/sbp_string.rs +++ b/rust/sbp/src/sbp_string.rs @@ -1,7 +1,10 @@ +use std::convert::TryInto; use std::fmt; +use std::fmt::Formatter; use std::marker::PhantomData; use bytes::{Buf, BufMut}; +use serde::de::{Error, Visitor}; use crate::wire_format::WireFormat; @@ -70,6 +73,112 @@ where } } +#[cfg(feature = "serde")] +impl<'de, E> serde::Deserialize<'de> for SbpString, E> { + fn deserialize(deserializer: D) -> Result + where + D: serde::Deserializer<'de>, + { + struct SbpStringVisitor(PhantomData, E>>); + + impl<'de, E> Visitor<'de> for SbpStringVisitor { + type Value = SbpString, E>; + + fn expecting(&self, formatter: &mut Formatter) -> fmt::Result { + formatter.write_str("string") + } + + fn visit_str(self, v: &str) -> Result + where + Er: Error, + { + Ok(SbpString::new(v.as_bytes().to_vec())) + } + + fn visit_string(self, v: String) -> Result + where + Er: Error, + { + Ok(SbpString::new(v.into_bytes())) + } + + fn visit_bytes(self, v: &[u8]) -> Result + where + Er: Error, + { + Ok(SbpString::new(v.to_vec())) + } + + fn visit_byte_buf(self, v: Vec) -> Result + where + Er: Error, + { + Ok(SbpString::new(v)) + } + } + deserializer.deserialize_any(SbpStringVisitor(PhantomData)) + } +} + +#[cfg(feature = "serde")] +impl<'de, E, const LEN: usize> serde::Deserialize<'de> for SbpString<[u8; LEN], E> { + fn deserialize(deserializer: D) -> Result + where + D: serde::Deserializer<'de>, + { + struct SbpStringVisitor(PhantomData>); + + impl<'de, E, const LEN: usize> Visitor<'de> for SbpStringVisitor { + type Value = SbpString<[u8; LEN], E>; + + fn expecting(&self, formatter: &mut Formatter) -> fmt::Result { + formatter.write_str("string") + } + + fn visit_str(self, v: &str) -> Result + where + Er: Error, + { + let data = v.as_bytes().try_into().map_err(|_| { + Error::custom(format!("was expecting a string of length {}", LEN)) + })?; + Ok(SbpString::new(data)) + } + + fn visit_string(self, v: String) -> Result + where + Er: Error, + { + let data = v.into_bytes().try_into().map_err(|_| { + Error::custom(format!("was expecting a string of length {}", LEN)) + })?; + Ok(SbpString::new(data)) + } + + fn visit_bytes(self, v: &[u8]) -> Result + where + Er: Error, + { + let data = v.try_into().map_err(|_| { + Error::custom(format!("was expecting a string of length {}", LEN)) + })?; + Ok(SbpString::new(data)) + } + + fn visit_byte_buf(self, v: Vec) -> Result + where + Er: Error, + { + let data = v.try_into().map_err(|_| { + Error::custom(format!("was expecting a string of length {}", LEN)) + })?; + Ok(SbpString::new(data)) + } + } + deserializer.deserialize_any(SbpStringVisitor(PhantomData)) + } +} + impl WireFormat for SbpString<[u8; LEN], E> { const MIN_LEN: usize = LEN; diff --git a/rust/sbp2json/Cargo.toml b/rust/sbp2json/Cargo.toml index 9f5a797805..c3fb04e961 100644 --- a/rust/sbp2json/Cargo.toml +++ b/rust/sbp2json/Cargo.toml @@ -18,11 +18,11 @@ keywords = ["encoding", "parsing"] [dependencies.sbp] path = "../sbp" # TODO: replace with published `sbp` crate version -features = ["json"] +features = ["json", "float_roundtrip"] [dependencies] env_logger = "0.8" -serde_json = "1.0" +serde_json = "1.0.82" clap = { version = "3.1.15", features = ["derive"] } mimalloc = { version = "0.1", default-features = false } @@ -34,7 +34,7 @@ default-features = false sha2 = "0.8" hex = "0.4" assert_cmd = "1.0.1" -serde_json = "1.0" +serde_json = "1.0.82" assert-json-diff = "2.0" [profile.release] diff --git a/rust/sbp2json/src/bin/json2sbp.rs b/rust/sbp2json/src/bin/json2sbp.rs index cd416920ee..84c4e22193 100644 --- a/rust/sbp2json/src/bin/json2sbp.rs +++ b/rust/sbp2json/src/bin/json2sbp.rs @@ -5,7 +5,7 @@ use std::path::PathBuf; use clap::Parser; -use converters::{json2sbp, Result}; +use converters::{json2sbp, jsonfields2sbp, Result}; #[global_allocator] static GLOBAL: mimalloc::MiMalloc = mimalloc::MiMalloc; @@ -35,10 +35,14 @@ struct Options { /// Stop on first error encountered #[clap(long)] fatal_errors: bool, + + /// Generate SBP from the json fields instead of the base64 encoded payload + #[clap(long)] + from_fields: bool, } fn main() -> Result<()> { - let options = Options::parse(); + let options: Options = Options::parse(); if options.debug { std::env::set_var("RUST_LOG", "debug"); @@ -56,5 +60,9 @@ fn main() -> Result<()> { _ => Box::new(io::stdout().lock()), }; - json2sbp(stdin, stdout, options.buffered, options.fatal_errors) + if options.from_fields { + jsonfields2sbp(stdin, stdout, options.buffered, options.fatal_errors) + } else { + json2sbp(stdin, stdout, options.buffered, options.fatal_errors) + } } diff --git a/rust/sbp2json/src/lib.rs b/rust/sbp2json/src/lib.rs index de4969e381..9a1c0c725a 100644 --- a/rust/sbp2json/src/lib.rs +++ b/rust/sbp2json/src/lib.rs @@ -25,6 +25,23 @@ where Ok(()) } +pub fn jsonfields2sbp(input: R, output: W, buffered: bool, fatal_errors: bool) -> Result<()> +where + R: Read, + W: Write, +{ + let source = maybe_fatal_errors(sbp::json::iter_messages_from_fields(input), fatal_errors); + let mut sink = SbpEncoder::new(output); + if buffered { + sink.send_all(source)?; + } else { + for msg in source { + sink.send(&msg)?; + } + } + Ok(()) +} + pub fn json2json( input: R, output: W, diff --git a/rust/sbp2json/tests/common/mod.rs b/rust/sbp2json/tests/common/mod.rs index 6ab7b0ab18..9018f8969a 100644 --- a/rust/sbp2json/tests/common/mod.rs +++ b/rust/sbp2json/tests/common/mod.rs @@ -12,17 +12,25 @@ use assert_json_diff::{assert_json_matches_no_panic, CompareMode, Config, Numeri use serde_json::{Deserializer, Value}; use sha2::{Digest, Sha256}; -pub fn run_sbp2json(reader: File, writer: File) { - run_bin("sbp2json", reader, writer) - .arg("--float-compat") - .assert() - .success(); +pub fn run_sbp2json(reader: File, writer: File, float_compat: bool) { + let mut cmd = run_bin("sbp2json", reader, writer); + if float_compat { + cmd.arg("--float-compat"); + } + cmd.assert().success(); } pub fn run_json2sbp(reader: File, writer: File) { run_bin("json2sbp", reader, writer).assert().success(); } +pub fn run_jsonfields2sbp(reader: File, writer: File) { + run_bin("json2sbp", reader, writer) + .arg("--from-fields") + .assert() + .success(); +} + pub fn run_json2json(reader: File, writer: File) { run_bin("json2json", reader, writer) .arg("--float-compat") diff --git a/rust/sbp2json/tests/test_round_trips.rs b/rust/sbp2json/tests/test_round_trips.rs index b954454791..baba22503e 100644 --- a/rust/sbp2json/tests/test_round_trips.rs +++ b/rust/sbp2json/tests/test_round_trips.rs @@ -11,6 +11,7 @@ use common::{ DeleteTestOutput, ThirdTransform, }; +use crate::common::run_jsonfields2sbp; use serde_json::ser::CompactFormatter; #[test] @@ -45,7 +46,7 @@ fn test_continue_on_error() { #[test] fn test_sbp2json() { - let tranform1 = |reader, writer| run_sbp2json(reader, writer); + let tranform1 = |reader, writer| run_sbp2json(reader, writer, true); let tranform2 = |reader, writer| run_json2sbp(reader, writer); test_round_trip( @@ -61,12 +62,27 @@ fn test_sbp2json() { #[test] fn test_json2sbp() { let tranform1 = |reader, writer| run_json2sbp(reader, writer); - let tranform2 = |reader, writer| run_sbp2json(reader, writer); + let tranform2 = |reader, writer| run_sbp2json(reader, writer, true); test_round_trip( tranform1, tranform2, "json2sbp", + "roundtrip_float_compat.json", + make_none_transform!(), + true, + ) +} + +#[test] +fn test_jsonfields2sbp() { + let tranform1 = |reader, writer| run_jsonfields2sbp(reader, writer); + let tranform2 = |reader, writer| run_sbp2json(reader, writer, false); + + test_round_trip( + tranform1, + tranform2, + "jsonfields2sbp", "roundtrip.json", make_none_transform!(), true, @@ -79,7 +95,7 @@ fn test_json2json() { let tranform2 = |reader, writer| run_json2sbp(reader, writer); let third_transform = ThirdTransform { - transform: |reader, writer| run_sbp2json(reader, writer), + transform: |reader, writer| run_sbp2json(reader, writer, true), expected_output: "roundtrip.json2json.output".into(), }; diff --git a/test_data/roundtrip.json b/test_data/roundtrip.json index 1c2db5e2df..36a1660b86 100644 --- a/test_data/roundtrip.json +++ b/test_data/roundtrip.json @@ -1,5000 +1,5000 @@ -{"length":92,"gamma":0,"vel":[2992.52986907959,-1104.3386459350586,-178.58600616455078],"iod":100,"preamble":85,"sender":22963,"d_tau":4.656613e-9,"msg_type":139,"payload":"FANGIgQAMggAAIBAYAkAAAEAAAAAAECe1TkAAKAxAAAAuA7SQcEAAEBAz29jwQAA4GdQM3ZBAAAASw9hp0AAAADGWkGRwAAAAJDAUmbAAAB6NQAAAIAAAPq1CmQ=","pos":[-2335773.4375,-1.01904580078125e7,2.32788544921875e7],"crc":33330,"common":{"health_bits":0,"fit_interval":2400,"valid":1,"sid":{"sat":20,"code":3},"toe":{"wn":2098,"tow":270918},"ura":4},"tau":4.074443e-4,"fcn":10,"acc":[9.313226e-7,0,-1.8626451e-6]} -{"length":92,"gamma":9.094947e-13,"vel":[-301.24950408935547,848.7043380737305,3434.189796447754],"iod":100,"preamble":85,"sender":22963,"d_tau":2.7939677e-9,"msg_type":139,"payload":"BQNGIgQAMggAAIBAYAkAAAEAAACAKwC7RrgAAEAxAACAPjXzWEEAADCIaLR2wQAAAJfDqlhBAAAA+P3TcsAAAAB8ooWKQAAAAC1h1KpAAAB6NgAA+rUAAHq1CWQ=","pos":[6540500.9765625,-2.380762451171875e7,6466318.359375],"crc":53984,"common":{"health_bits":0,"fit_interval":2400,"valid":1,"sid":{"sat":5,"code":3},"toe":{"wn":2098,"tow":270918},"ura":4},"tau":-4.7381036e-5,"fcn":9,"acc":[3.7252903e-6,-1.8626451e-6,-9.313226e-7]} -{"length":92,"gamma":0,"vel":[-696.5875625610352,-328.67431640625,-3462.845802307129],"iod":100,"preamble":85,"sender":22963,"d_tau":0,"msg_type":139,"payload":"CgNGIgQAMggAAOBAYAkAAAEAAAAAAADEbTgAAAAAAAAAFwhFdMEAACB48+dowQAAwO6k8VRBAAAAVLPEhcAAAAAAyop0wAAAAA2xDavAAAAAAACAOzYAAACAAWQ=","pos":[-2.12542734375e7,-1.305794775390625e7,5490323.73046875],"crc":45853,"common":{"health_bits":0,"fit_interval":2400,"valid":1,"sid":{"sat":10,"code":3},"toe":{"wn":2098,"tow":270918},"ura":7},"tau":5.6687742e-5,"fcn":1,"acc":[0,2.7939677e-6,0]} -{"length":92,"gamma":-2.728484e-12,"vel":[2159.489631652832,-671.0147857666016,2543.1900024414063],"iod":100,"preamble":85,"sender":22963,"d_tau":9.313226e-10,"msg_type":139,"payload":"FQNGIgQAMggAAIBAYAkAAAEAAABArIAU7jgAAIAwAAAwUcqXcsEAAAA0nRoUwQAAgBD6ZG9BAAAAsfreoEAAAABIHviEwAAAAEhh3qNAAAB6tQCAOzYAAPq1DGQ=","pos":[-1.949610107421875e7,-329383.30078125,1.6459728515625e7],"crc":11629,"common":{"health_bits":0,"fit_interval":2400,"valid":1,"sid":{"sat":21,"code":3},"toe":{"wn":2098,"tow":270918},"ura":4},"tau":1.1352543e-4,"fcn":12,"acc":[-9.313226e-7,2.7939677e-6,-1.8626451e-6]} -{"length":92,"gamma":1.8189894e-12,"vel":[809.9918365478516,769.8259353637695,-3324.6536254882813],"iod":100,"preamble":85,"sender":22963,"d_tau":-3.7252903e-9,"msg_type":139,"payload":"CQNGIgQAMggAAABAYAkAAAEAAAAALICvAbkAAICxAACga9onb8EAAIA6nfZwwQAAgLft6F7BAAAASO9PiUAAAACEmw6IQAAAAKhO+anAAAD6NQAA+jUAAHo1BmQ=","pos":[-1.633454736328125e7,-1.778734765625e7,-8102838.8671875],"crc":34365,"common":{"health_bits":0,"fit_interval":2400,"valid":1,"sid":{"sat":9,"code":3},"toe":{"wn":2098,"tow":270918},"ura":2},"tau":-1.2367778e-4,"fcn":6,"acc":[1.8626451e-6,1.8626451e-6,9.313226e-7]} -{"length":92,"gamma":3.637979e-12,"vel":[-2375.812530517578,-1914.5755767822266,901.9088745117188],"iod":100,"preamble":85,"sender":22963,"d_tau":6.519258e-9,"msg_type":139,"payload":"DANGIgQAMggAAABAaBAAAAEAAACALAAJ9bgAAOAxAAAAuMtWNsEAAAD5A3NnQQAA8ELTSHVBAAAABKCPosAAAABkTeqdwAAAAGBFL4xAAAD6tQAAejUAAPq1B2Q=","pos":[-1464011.71875,1.229417578125e7,2.231838818359375e7],"crc":24240,"common":{"health_bits":0,"fit_interval":4200,"valid":1,"sid":{"sat":12,"code":3},"toe":{"wn":2098,"tow":270918},"ura":2},"tau":-1.1684187e-4,"fcn":7,"acc":[-1.8626451e-6,9.313226e-7,-1.8626451e-6]} -{"length":92,"gamma":1.8189894e-12,"vel":[-479.2194366455078,2705.232620239258,1765.4428482055664],"iod":100,"preamble":85,"sender":22963,"d_tau":-2.7939677e-9,"msg_type":139,"payload":"BANGIgQAMggAAKBAYAkAAAEAAAAALAAiNbgAAECxAAAgdUE8ZUEAAGA4CTplwQAAUEpjK3NBAAAA0ILzfcAAAAAadyKlQAAAAHrFlZtAAAD6NQAA+rUAAPq1DmQ=","pos":[1.113345166015625e7,-1.112890576171875e7,2.010066064453125e7],"crc":64387,"common":{"health_bits":0,"fit_interval":2400,"valid":1,"sid":{"sat":4,"code":3},"toe":{"wn":2098,"tow":270918},"ura":5},"tau":-4.3185428e-5,"fcn":14,"acc":[1.8626451e-6,-1.8626451e-6,-1.8626451e-6]} -{"length":92,"gamma":3.637979e-12,"vel":[-2375.812530517578,-1914.5755767822266,901.9088745117188],"iod":100,"preamble":85,"sender":22963,"d_tau":6.519258e-9,"msg_type":139,"payload":"DANGIgQAMggAAABAaBAAAAEAAACALAAJ9bgAAOAxAAAAuMtWNsEAAAD5A3NnQQAA8ELTSHVBAAAABKCPosAAAABkTeqdwAAAAGBFL4xAAAD6tQAAejUAAPq1B2Q=","pos":[-1464011.71875,1.229417578125e7,2.231838818359375e7],"crc":24240,"common":{"health_bits":0,"fit_interval":4200,"valid":1,"sid":{"sat":12,"code":3},"toe":{"wn":2098,"tow":270918},"ura":2},"tau":-1.1684187e-4,"fcn":7,"acc":[-1.8626451e-6,9.313226e-7,-1.8626451e-6]} -{"length":37,"preamble":85,"sender":22963,"msg_type":167,"setting":"ntrip\u0000enable\u0000False\u0000enum:False,True\u0000","payload":"AABudHJpcABlbmFibGUARmFsc2UAZW51bTpGYWxzZSxUcnVlAA==","crc":28665,"index":0} -{"length":136,"preamble":85,"sender":22963,"msg_type":151,"payload":"AgAaHgUALDUMAFEtFQB9GRkAbUYaAKEBHQChNx8AlQ4EAxYWBQMyIQYDTggJA18OCgNxKQsDmCUMA6oDEwMiBxQDCzEVA5UlDAyUKRMMIyAUDA8CFgxDIxgMgiMZDJ0OGgxnFR0MLAAiDI4RIwwiLQsOizIMDg88GA5sNhkOlykfDlURIQ4fDw==","crc":41336,"azel":[{"el":30,"az":26,"sid":{"sat":2,"code":0}},{"el":53,"az":44,"sid":{"sat":5,"code":0}},{"el":45,"az":81,"sid":{"sat":12,"code":0}},{"el":25,"az":125,"sid":{"sat":21,"code":0}},{"el":70,"az":109,"sid":{"sat":25,"code":0}},{"el":1,"az":161,"sid":{"sat":26,"code":0}},{"el":55,"az":161,"sid":{"sat":29,"code":0}},{"el":14,"az":149,"sid":{"sat":31,"code":0}},{"el":22,"az":22,"sid":{"sat":4,"code":3}},{"el":33,"az":50,"sid":{"sat":5,"code":3}},{"el":8,"az":78,"sid":{"sat":6,"code":3}},{"el":14,"az":95,"sid":{"sat":9,"code":3}},{"el":41,"az":113,"sid":{"sat":10,"code":3}},{"el":37,"az":152,"sid":{"sat":11,"code":3}},{"el":3,"az":170,"sid":{"sat":12,"code":3}},{"el":7,"az":34,"sid":{"sat":19,"code":3}},{"el":49,"az":11,"sid":{"sat":20,"code":3}},{"el":37,"az":149,"sid":{"sat":21,"code":3}},{"el":41,"az":148,"sid":{"sat":12,"code":12}},{"el":32,"az":35,"sid":{"sat":19,"code":12}},{"el":2,"az":15,"sid":{"sat":20,"code":12}},{"el":35,"az":67,"sid":{"sat":22,"code":12}},{"el":35,"az":130,"sid":{"sat":24,"code":12}},{"el":14,"az":157,"sid":{"sat":25,"code":12}},{"el":21,"az":103,"sid":{"sat":26,"code":12}},{"el":0,"az":44,"sid":{"sat":29,"code":12}},{"el":17,"az":142,"sid":{"sat":34,"code":12}},{"el":45,"az":34,"sid":{"sat":35,"code":12}},{"el":50,"az":139,"sid":{"sat":11,"code":14}},{"el":60,"az":15,"sid":{"sat":12,"code":14}},{"el":54,"az":108,"sid":{"sat":24,"code":14}},{"el":41,"az":151,"sid":{"sat":25,"code":14}},{"el":17,"az":85,"sid":{"sat":31,"code":14}},{"el":15,"az":31,"sid":{"sat":33,"code":14}}]} -{"length":53,"text":"GLO L1OF ME 7 [+15846ms] channel is masked, dropping","preamble":85,"sender":22963,"msg_type":1025,"payload":"BkdMTyBMMU9GIE1FIDcgWysxNTg0Nm1zXSBjaGFubmVsIGlzIG1hc2tlZCwgZHJvcHBpbmc=","crc":63555,"level":6} -{"length":53,"text":"GLO L2OF ME 7 [+14477ms] channel is masked, dropping","preamble":85,"sender":22963,"msg_type":1025,"payload":"BkdMTyBMMk9GIE1FIDcgWysxNDQ3N21zXSBjaGFubmVsIGlzIG1hc2tlZCwgZHJvcHBpbmc=","crc":63240,"level":6} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MghIui4QAAAAAAE=","wn":2098,"tow":271497800,"crc":27769} -{"length":16,"flags":17,"ns":799999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EUi6LhDkBwMZAxgn/gevLw==","day":25,"tow":271497800,"year":2020,"crc":22322,"minutes":24,"month":3,"seconds":39} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.215181577283488,"preamble":85,"sender":22963,"msg_type":522,"payload":"SLouEKx+tOpl6kJAouh9IFaSXsBgIs0jFjcxwAECWwQPBg==","lat":37.831235254413826,"tow":271497800,"h_accuracy":513,"crc":59641,"lon":-122.28650677009367} -{"v_accuracy":713,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"SLouEAYAAAACAAAA8/////AAyQIPAg==","n":6,"d":-13,"tow":271497800,"h_accuracy":240,"crc":62018,"e":2} -{"length":15,"gdop":155,"flags":6,"tdop":77,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"SLouEJsAhwBNAEgAcgAG","tow":271497800,"crc":347,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"SLouEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271497800,"h_accuracy":0,"crc":38562,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"SLouEP//","tow":271497800,"crc":6833} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":36,"preamble":85,"sender":22963,"msg_type":167,"setting":"ntrip\u0000debug\u0000False\u0000enum:False,True\u0000","payload":"AQBudHJpcABkZWJ1ZwBGYWxzZQBlbnVtOkZhbHNlLFRydWUA","crc":7201,"index":1} -{"length":19,"preamble":85,"sender":22963,"msg_type":167,"setting":"ntrip\u0000username\u0000\u0000\u0000","payload":"AgBudHJpcAB1c2VybmFtZQAAAA==","crc":31693,"index":2} -{"length":19,"preamble":85,"sender":22963,"msg_type":167,"setting":"ntrip\u0000password\u0000\u0000\u0000","payload":"AwBudHJpcABwYXNzd29yZAAAAA==","crc":41830,"index":3} -{"length":14,"preamble":85,"sender":22963,"msg_type":167,"setting":"ntrip\u0000url\u0000\u0000\u0000","payload":"BABudHJpcAB1cmwAAAA=","crc":47724,"index":4} -{"length":28,"preamble":85,"sender":22963,"msg_type":167,"setting":"ntrip\u0000gga_out_interval\u00000\u0000\u0000","payload":"BQBudHJpcABnZ2Ffb3V0X2ludGVydmFsADAAAA==","crc":17702,"index":5} -{"length":43,"preamble":85,"sender":22963,"msg_type":167,"setting":"ntrip\u0000gga_out_rev1\u0000False\u0000enum:False,True\u0000","payload":"BgBudHJpcABnZ2Ffb3V0X3JldjEARmFsc2UAZW51bTpGYWxzZSxUcnVlAA==","crc":22575,"index":6} -{"length":52,"preamble":85,"sender":22963,"msg_type":167,"setting":"ethernet\u0000interface_mode\u0000Active\u0000enum:Active,Config\u0000","payload":"BwBldGhlcm5ldABpbnRlcmZhY2VfbW9kZQBBY3RpdmUAZW51bTpBY3RpdmUsQ29uZmlnAA==","crc":63127,"index":7} -{"length":48,"preamble":85,"sender":22963,"msg_type":167,"setting":"ethernet\u0000ip_config_mode\u0000DHCP\u0000enum:Static,DHCP\u0000","payload":"CABldGhlcm5ldABpcF9jb25maWdfbW9kZQBESENQAGVudW06U3RhdGljLERIQ1AA","crc":19193,"index":8} -{"length":37,"preamble":85,"sender":22963,"msg_type":167,"setting":"ethernet\u0000ip_address\u0000192.168.0.222\u0000\u0000","payload":"CQBldGhlcm5ldABpcF9hZGRyZXNzADE5Mi4xNjguMC4yMjIAAA==","crc":30179,"index":9} -{"length":237,"states":[{"cn0":215,"mesid":{"sat":5,"code":0}},{"cn0":181,"mesid":{"sat":21,"code":0}},{"cn0":192,"mesid":{"sat":2,"code":0}},{"cn0":167,"mesid":{"sat":31,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":220,"mesid":{"sat":25,"code":0}},{"cn0":209,"mesid":{"sat":12,"code":0}},{"cn0":214,"mesid":{"sat":29,"code":0}},{"cn0":209,"mesid":{"sat":18,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":208,"mesid":{"sat":131,"code":2}},{"cn0":204,"mesid":{"sat":25,"code":1}},{"cn0":187,"mesid":{"sat":12,"code":1}},{"cn0":151,"mesid":{"sat":31,"code":1}},{"cn0":194,"mesid":{"sat":18,"code":1}},{"cn0":194,"mesid":{"sat":29,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":194,"mesid":{"sat":5,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":213,"mesid":{"sat":11,"code":3}},{"cn0":176,"mesid":{"sat":9,"code":3}},{"cn0":173,"mesid":{"sat":20,"code":3}},{"cn0":208,"mesid":{"sat":5,"code":3}},{"cn0":206,"mesid":{"sat":10,"code":3}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":183,"mesid":{"sat":4,"code":3}},{"cn0":204,"mesid":{"sat":21,"code":3}},{"cn0":172,"mesid":{"sat":9,"code":4}},{"cn0":204,"mesid":{"sat":20,"code":4}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":200,"mesid":{"sat":11,"code":4}},{"cn0":193,"mesid":{"sat":5,"code":4}},{"cn0":186,"mesid":{"sat":0,"code":4}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":176,"mesid":{"sat":4,"code":4}},{"cn0":199,"mesid":{"sat":35,"code":12}},{"cn0":168,"mesid":{"sat":26,"code":12}},{"cn0":161,"mesid":{"sat":34,"code":12}},{"cn0":189,"mesid":{"sat":24,"code":12}},{"cn0":157,"mesid":{"sat":25,"code":12}},{"cn0":185,"mesid":{"sat":12,"code":12}},{"cn0":185,"mesid":{"sat":19,"code":12}},{"cn0":191,"mesid":{"sat":22,"code":12}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":209,"mesid":{"sat":12,"code":13}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":196,"mesid":{"sat":12,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":193,"mesid":{"sat":25,"code":14}},{"cn0":189,"mesid":{"sat":11,"code":14}},{"cn0":205,"mesid":{"sat":24,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":161,"mesid":{"sat":31,"code":14}},{"cn0":155,"mesid":{"sat":33,"code":14}},{"cn0":201,"mesid":{"sat":25,"code":20}},{"cn0":215,"mesid":{"sat":24,"code":20}},{"cn0":194,"mesid":{"sat":11,"code":20}},{"cn0":172,"mesid":{"sat":31,"code":20}},{"cn0":207,"mesid":{"sat":12,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":169,"mesid":{"sat":33,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}}],"preamble":85,"sender":22963,"msg_type":97,"payload":"BQDXFQC1AgDAHwCnAAAAAAAAGQDcDADRHQDWEgDRAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwLQGQHMDAG7HwGXEgHCHQHCAAAABQHCAAAAAAAAAAAAAAAACwPVCQOwFAOtBQPQCgPOAAAABAO3FQPMCQSsFATMAAAACwTIBQTBAAS6AAAABASwIwzHGgyoIgyhGAy9GQydDAy5Ewy5Fgy/AAAADA3RAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADA7EAAAAGQ7BCw69GA7NAAAAHw6hIQ6bGRTJGBTXCxTCHxSsDBTPAAAAIRSpAAAA","crc":54884} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"Mgisui4QAAAAAAE=","wn":2098,"tow":271497900,"crc":46849} -{"length":16,"flags":17,"ns":899999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"Eay6LhDkBwMZAxgn/uikNQ==","day":25,"tow":271497900,"year":2020,"crc":52238,"minutes":24,"month":3,"seconds":39} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.218318053116388,"preamble":85,"sender":22963,"msg_type":522,"payload":"rLouENXxWupl6kJAzb+GIFaSXsDjQiKx4zcxwAECWwQPBg==","lat":37.831235212713786,"tow":271497900,"h_accuracy":513,"crc":50102,"lon":-122.28650677832702} -{"v_accuracy":713,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"rLouEP3////+////+f////AAyQIPAg==","n":-3,"d":-7,"tow":271497900,"h_accuracy":240,"crc":48022,"e":-2} -{"length":15,"gdop":155,"flags":6,"tdop":77,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"rLouEJsAhwBNAEgAcgAG","tow":271497900,"crc":31206,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"rLouEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271497900,"h_accuracy":0,"crc":13441,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"rLouEP//","tow":271497900,"crc":38696} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":34,"preamble":85,"sender":22963,"msg_type":167,"setting":"ethernet\u0000netmask\u0000255.255.255.0\u0000\u0000","payload":"CgBldGhlcm5ldABuZXRtYXNrADI1NS4yNTUuMjU1LjAAAA==","crc":55669,"index":10} -{"length":32,"preamble":85,"sender":22963,"msg_type":167,"setting":"ethernet\u0000gateway\u0000192.168.0.1\u0000\u0000","payload":"CwBldGhlcm5ldABnYXRld2F5ADE5Mi4xNjguMC4xAAA=","crc":65129,"index":11} -{"length":46,"preamble":85,"sender":22963,"msg_type":167,"setting":"uart0\u0000enabled_sbp_messages\u000072,74,117,65535\u0000\u0000","payload":"DAB1YXJ0MABlbmFibGVkX3NicF9tZXNzYWdlcwA3Miw3NCwxMTcsNjU1MzUAAA==","crc":33701,"index":12} -{"length":72,"preamble":85,"sender":22963,"msg_type":167,"setting":"uart0\u0000mode\u0000RTCMv3 OUT\u0000enum:Disabled,SBP,RTCMv3 OUT,NMEA OUT,RTCMv3 IN\u0000","payload":"DQB1YXJ0MABtb2RlAFJUQ012MyBPVVQAZW51bTpEaXNhYmxlZCxTQlAsUlRDTXYzIE9VVCxOTUVBIE9VVCxSVENNdjMgSU4A","crc":51770,"index":13} -{"length":95,"preamble":85,"sender":22963,"msg_type":167,"setting":"uart0\u0000baudrate\u0000115200\u0000enum:1200,2400,4800,9600,19200,38400,57600,115200,230400,460800,921600\u0000","payload":"DgB1YXJ0MABiYXVkcmF0ZQAxMTUyMDAAZW51bToxMjAwLDI0MDAsNDgwMCw5NjAwLDE5MjAwLDM4NDAwLDU3NjAwLDExNTIwMCwyMzA0MDAsNDYwODAwLDkyMTYwMAA=","crc":48756,"index":14} -{"length":44,"preamble":85,"sender":22963,"msg_type":167,"setting":"uart0\u0000flow_control\u0000None\u0000enum:None,RTS/CTS\u0000","payload":"DwB1YXJ0MABmbG93X2NvbnRyb2wATm9uZQBlbnVtOk5vbmUsUlRTL0NUUwA=","crc":64292,"index":15} -{"length":214,"preamble":85,"sender":22963,"msg_type":167,"setting":"uart1\u0000enabled_sbp_messages\u000023,65,72,74,81,97,117,134,136,137,138,139,144,149,163,165,166,167,171,175,181,185,187,188,189,190,257,258,259,520,522,524,526,527,528,1025,2304/50,2305,2306/50,30583,65280,65282,65535\u0000\u0000","payload":"EAB1YXJ0MQBlbmFibGVkX3NicF9tZXNzYWdlcwAyMyw2NSw3Miw3NCw4MSw5NywxMTcsMTM0LDEzNiwxMzcsMTM4LDEzOSwxNDQsMTQ5LDE2MywxNjUsMTY2LDE2NywxNzEsMTc1LDE4MSwxODUsMTg3LDE4OCwxODksMTkwLDI1NywyNTgsMjU5LDUyMCw1MjIsNTI0LDUyNiw1MjcsNTI4LDEwMjUsMjMwNC81MCwyMzA1LDIzMDYvNTAsMzA1ODMsNjUyODAsNjUyODIsNjU1MzUAAA==","crc":40537,"index":16} -{"length":65,"preamble":85,"sender":22963,"msg_type":167,"setting":"uart1\u0000mode\u0000SBP\u0000enum:Disabled,SBP,RTCMv3 OUT,NMEA OUT,RTCMv3 IN\u0000","payload":"EQB1YXJ0MQBtb2RlAFNCUABlbnVtOkRpc2FibGVkLFNCUCxSVENNdjMgT1VULE5NRUEgT1VULFJUQ012MyBJTgA=","crc":25156,"index":17} -{"length":95,"preamble":85,"sender":22963,"msg_type":167,"setting":"uart1\u0000baudrate\u0000115200\u0000enum:1200,2400,4800,9600,19200,38400,57600,115200,230400,460800,921600\u0000","payload":"EgB1YXJ0MQBiYXVkcmF0ZQAxMTUyMDAAZW51bToxMjAwLDI0MDAsNDgwMCw5NjAwLDE5MjAwLDM4NDAwLDU3NjAwLDExNTIwMCwyMzA0MDAsNDYwODAwLDkyMTYwMAA=","crc":32726,"index":18} -{"length":44,"preamble":85,"sender":22963,"msg_type":167,"setting":"uart1\u0000flow_control\u0000None\u0000enum:None,RTS/CTS\u0000","payload":"EwB1YXJ0MQBmbG93X2NvbnRyb2wATm9uZQBlbnVtOk5vbmUsUlRTL0NUUwA=","crc":12616,"index":19} -{"length":249,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":47,"i":110561215},"flags":15,"cn0":215,"P":1051954854,"D":{"f":31,"i":-171},"lock":15,"sid":{"sat":5,"code":0}},{"L":{"f":102,"i":121861742},"flags":15,"cn0":181,"P":1159475925,"D":{"f":248,"i":2178},"lock":15,"sid":{"sat":21,"code":0}},{"L":{"f":19,"i":123296198},"flags":15,"cn0":192,"P":1173123946,"D":{"f":196,"i":-2480},"lock":15,"sid":{"sat":2,"code":0}},{"L":{"f":201,"i":128731748},"flags":15,"cn0":167,"P":1224841850,"D":{"f":51,"i":-385},"lock":15,"sid":{"sat":31,"code":0}},{"L":{"f":77,"i":107804252},"flags":15,"cn0":220,"P":1025723288,"D":{"f":59,"i":-1116},"lock":15,"sid":{"sat":25,"code":0}},{"L":{"f":125,"i":114048374},"flags":15,"cn0":209,"P":1085134092,"D":{"f":190,"i":-2961},"lock":15,"sid":{"sat":12,"code":0}},{"L":{"f":131,"i":110786183},"flags":15,"cn0":214,"P":1054095395,"D":{"f":122,"i":1488},"lock":15,"sid":{"sat":29,"code":0}},{"L":{"f":250,"i":84003333},"flags":15,"cn0":204,"P":1025723320,"D":{"f":11,"i":-870},"lock":15,"sid":{"sat":25,"code":1}},{"L":{"f":225,"i":88868894},"flags":15,"cn0":187,"P":1085134021,"D":{"f":13,"i":-2307},"lock":15,"sid":{"sat":12,"code":1}},{"L":{"f":6,"i":100310456},"flags":15,"cn0":151,"P":1224841828,"D":{"f":159,"i":-303},"lock":15,"sid":{"sat":31,"code":1}},{"L":{"f":15,"i":86326898},"flags":15,"cn0":194,"P":1054095324,"D":{"f":42,"i":1159},"lock":15,"sid":{"sat":29,"code":1}},{"L":{"f":130,"i":86151625},"flags":15,"cn0":194,"P":1051954788,"D":{"f":223,"i":-134},"lock":15,"sid":{"sat":5,"code":1}},{"L":{"f":128,"i":112956403},"flags":15,"cn0":213,"P":1056912242,"D":{"f":155,"i":1180},"lock":15,"sid":{"sat":11,"code":3}},{"L":{"f":241,"i":123262616},"flags":15,"cn0":175,"P":1154156121,"D":{"f":112,"i":-4407},"lock":15,"sid":{"sat":9,"code":3}}],"payload":"ELsuEAAAAAAyCECmjrM+vweXBi9V/x/XDw8FANUyHEVudkMHZoII+LUPDxUAanPsRcZZWQcTUPbEwA8PAgB6mgFJZEqsB8l//jOnDw8fAJhLIz1c9mwGTaT7O9wPDxkADNWtQHY9zAZ9b/S+0Q8PDAAjONQ+h3aaBoPQBXrWDw8dALhLIz0FygEF+pr8C8wPDxkBxdStQB4ITAXh/fYNuw8PDAFkmgFJuJ36BQbR/p+XDw8fAdw31D5yPiUFD4cEKsIPDx0BZI6zPsmRIgWCev/fwg8PBQFyM/8+85O7BoCcBJvVDw8LA1kGy0SY1lgH8cnucK8PDwkD","header":{"n_obs":64,"t":{"ns_residual":0,"wn":2098,"tow":271498000}},"crc":62667} -{"length":249,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":148,"i":109750989},"flags":15,"cn0":173,"P":1026199089,"D":{"f":14,"i":-1208},"lock":15,"sid":{"sat":20,"code":3}},{"L":{"f":100,"i":114896073},"flags":15,"cn0":208,"P":1074684015,"D":{"f":146,"i":2209},"lock":15,"sid":{"sat":5,"code":3}},{"L":{"f":106,"i":111554282},"flags":15,"cn0":206,"P":1046364598,"D":{"f":18,"i":-3034},"lock":15,"sid":{"sat":10,"code":3}},{"L":{"f":56,"i":120417304},"flags":15,"cn0":183,"P":1124353839,"D":{"f":255,"i":-1303},"lock":15,"sid":{"sat":4,"code":3}},{"L":{"f":33,"i":113446249},"flags":15,"cn0":204,"P":1060006731,"D":{"f":97,"i":1626},"lock":15,"sid":{"sat":21,"code":3}},{"L":{"f":238,"i":95870933},"flags":15,"cn0":172,"P":1154156245,"D":{"f":122,"i":-3427},"lock":15,"sid":{"sat":9,"code":4}},{"L":{"f":129,"i":85361916},"flags":15,"cn0":204,"P":1026199418,"D":{"f":240,"i":-940},"lock":15,"sid":{"sat":20,"code":4}},{"L":{"f":214,"i":87854990},"flags":15,"cn0":200,"P":1056912543,"D":{"f":247,"i":918},"lock":15,"sid":{"sat":11,"code":4}},{"L":{"f":108,"i":89363616},"flags":15,"cn0":193,"P":1074684207,"D":{"f":130,"i":1717},"lock":15,"sid":{"sat":5,"code":4}},{"L":{"f":128,"i":93657893},"flags":15,"cn0":176,"P":1124353980,"D":{"f":112,"i":-1014},"lock":15,"sid":{"sat":4,"code":4}},{"L":{"f":98,"i":121555585},"flags":15,"cn0":199,"P":1167173307,"D":{"f":53,"i":-1497},"lock":15,"sid":{"sat":35,"code":12}},{"L":{"f":217,"i":129163009},"flags":15,"cn0":168,"P":1240219934,"D":{"f":236,"i":-3006},"lock":15,"sid":{"sat":26,"code":12}},{"L":{"f":194,"i":132982594},"flags":15,"cn0":162,"P":1276895254,"D":{"f":129,"i":2250},"lock":15,"sid":{"sat":34,"code":12}},{"L":{"f":75,"i":125130215},"flags":15,"cn0":189,"P":1201497134,"D":{"f":211,"i":-1294},"lock":15,"sid":{"sat":24,"code":12}}],"payload":"ELsuEAAAAAAyCEExjio9zaqKBpRI+w6tDw8UA29gDkDJLNkGZKEIktAPDwUDtkFePuoupgZqJvQSzg8PCgMvRwRDGGwtBzjp+v+3Dw8EA0trLj9pDcMGIVoGYcwPDxUD1QbLRNXftgXunfJ6rA8PCQR6jyo9/IQWBYFU/PDMDw8UBJ80/z6OjzwF1pYD98gPDwsEL2EOQKCUUwVstQaCwQ8PBQS8RwRDJRuVBYAK/HCwDw8EBLumkUWByj4HYif6NccPDyMMHkHsSQHfsgfZQvTsqA8PGgwW4BtMQiftB8LKCIGiDw8iDC5knUfnVXUHS/L6070PDxgM","header":{"n_obs":65,"t":{"ns_residual":0,"wn":2098,"tow":271498000}},"crc":42095} -{"length":249,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":235,"i":134693792},"flags":15,"cn0":157,"P":1293326340,"D":{"f":232,"i":1332},"lock":15,"sid":{"sat":25,"code":12}},{"L":{"f":233,"i":121126194},"flags":15,"cn0":185,"P":1163050577,"D":{"f":210,"i":1613},"lock":15,"sid":{"sat":12,"code":12}},{"L":{"f":159,"i":124510336},"flags":15,"cn0":185,"P":1195545026,"D":{"f":20,"i":-281},"lock":15,"sid":{"sat":19,"code":12}},{"L":{"f":111,"i":124743275},"flags":15,"cn0":191,"P":1197781703,"D":{"f":201,"i":2393},"lock":15,"sid":{"sat":22,"code":12}},{"L":{"f":209,"i":93662465},"flags":15,"cn0":209,"P":1163050511,"D":{"f":88,"i":1247},"lock":15,"sid":{"sat":12,"code":13}},{"L":{"f":160,"i":116409487},"flags":15,"cn0":196,"P":1107599432,"D":{"f":97,"i":-1026},"lock":15,"sid":{"sat":12,"code":14}},{"L":{"f":35,"i":132492514},"flags":15,"cn0":192,"P":1260624276,"D":{"f":187,"i":1094},"lock":15,"sid":{"sat":25,"code":14}},{"L":{"f":237,"i":125439529},"flags":15,"cn0":189,"P":1193517375,"D":{"f":174,"i":1050},"lock":15,"sid":{"sat":11,"code":14}},{"L":{"f":52,"i":118385830},"flags":15,"cn0":205,"P":1126403598,"D":{"f":162,"i":-1738},"lock":15,"sid":{"sat":24,"code":14}},{"L":{"f":102,"i":143270247},"flags":15,"cn0":162,"P":1363171094,"D":{"f":5,"i":-3172},"lock":15,"sid":{"sat":31,"code":14}},{"L":{"f":159,"i":144489652},"flags":15,"cn0":155,"P":1374773342,"D":{"f":192,"i":-2142},"lock":15,"sid":{"sat":33,"code":14}},{"L":{"f":129,"i":101520236},"flags":15,"cn0":200,"P":1260624248,"D":{"f":64,"i":839},"lock":15,"sid":{"sat":25,"code":20}},{"L":{"f":26,"i":90711284},"flags":15,"cn0":215,"P":1126404135,"D":{"f":91,"i":-1332},"lock":15,"sid":{"sat":24,"code":20}},{"L":{"f":68,"i":96115981},"flags":15,"cn0":194,"P":1193517204,"D":{"f":8,"i":804},"lock":15,"sid":{"sat":11,"code":20}}],"payload":"ELsuEAAAAAAyCEIEmBZNoEMHCOs0BeidDw8ZDFG+UkUyPTgH6U0G0rkPDwwMwpFCR4Dgawef5/4UuQ8PEwzHsmRHa25vB29ZCcm/Dw8WDA++UkUBLZUF0d8EWNEPDwwNSKAEQo9E8Aag/vthxA8PDA6UmSNL4qzlByNGBLvADw8ZDj+hI0cpDnoH7RoErr0PDwsODo4jQ6ZsDgc0NvmizQ8PGA4WV0BRZyGKCGac8wWiDw8fDl5g8VG0vJwIn6L3wJsPDyEOeJkjS2wTDQaBRwNAyA8PGRQnkCND9CRoBRrM+lvXDw8YFJSgI0cNnboFRCQDCMIPDwsU","header":{"n_obs":66,"t":{"ns_residual":0,"wn":2098,"tow":271498000}},"crc":14569} -{"length":62,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":194,"i":109778542},"flags":15,"cn0":172,"P":1363171118,"D":{"f":105,"i":-2432},"lock":15,"sid":{"sat":31,"code":20}},{"L":{"f":184,"i":89196910},"flags":15,"cn0":207,"P":1107599267,"D":{"f":168,"i":-787},"lock":15,"sid":{"sat":12,"code":20}},{"L":{"f":57,"i":110712921},"flags":15,"cn0":170,"P":1374773291,"D":{"f":129,"i":-1641},"lock":15,"sid":{"sat":33,"code":20}}],"payload":"ELsuEAAAAAAyCEMuV0BRbhaLBsKA9mmsDw8fFKOfBEJuCVEFuO38qM8PDwwUK2DxUVlYmQY5l/mBqg8PIRQ=","header":{"n_obs":67,"t":{"ns_residual":0,"wn":2098,"tow":271498000}},"crc":13253} -{"length":9,"l2ca_bias":0,"preamble":85,"l2p_bias":0,"sender":22963,"msg_type":117,"payload":"/wAAAAAAAAAA","l1ca_bias":0,"mask":255,"crc":49809,"l1p_bias":0} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MggQuy4QAAAAAAE=","wn":2098,"tow":271498000,"crc":3698} -{"length":16,"flags":17,"ns":999999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"ERC7LhDkBwMZAxgn/smaOw==","day":25,"tow":271498000,"year":2020,"crc":64182,"minutes":24,"month":3,"seconds":39} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.22420971125668,"preamble":85,"sender":22963,"msg_type":522,"payload":"ELsuENu7Fepl6kJA9reCIFaSXsAFS8HOZTkxwAECWwQPBg==","lat":37.831235180484974,"tow":271498000,"h_accuracy":513,"crc":29379,"lon":-122.28650677457321} -{"v_accuracy":713,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"ELsuEPT///8SAAAAHwAAAPAAyQIPAg==","n":-12,"d":31,"tow":271498000,"h_accuracy":240,"crc":64762,"e":18} -{"length":15,"gdop":155,"flags":6,"tdop":77,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"ELsuEJsAhwBNAEgAcgAG","tow":271498000,"crc":14844,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"ELsuEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271498000,"h_accuracy":0,"crc":30187,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"ELsuEP//","tow":271498000,"crc":52534} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":4,"flags":2147616000,"preamble":85,"sender":22963,"msg_type":65535,"payload":"AAUCgA==","crc":40942} -{"length":24,"z":3890655.0240602265,"preamble":85,"sender":22963,"msg_type":72,"payload":"UO0a3iqORMHK1UJhIkRQwc9nFIPvrk1B","crc":2168,"x":-2694229.735196747,"y":-4264073.519704292} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"bWFpbgAAAAAAAAAAAAAAAAAAAAAAAAx1AAA=","name":"main\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":47991,"stack_free":29964,"cpu":0} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"aWRsZQAAAAAAAAAAAAAAAAAAAACiAHwAAAA=","name":"idle\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":11832,"stack_free":124,"cpu":162} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"cnBtc2cAAAAAAAAAAAAAAAAAAAABANwNAAA=","name":"rpmsg\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":58151,"stack_free":3548,"cpu":1} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"U0JQAAAAAAAAAAAAAAAAAAAAAAAAAPz/AAA=","name":"SBP\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":51784,"stack_free":65532,"cpu":0} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"TkFQAAAAAAAAAAAAAAAAAAAAAAAAAASAAAA=","name":"NAP\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":33651,"stack_free":32772,"cpu":0} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"bWFuYWdlIFBWAAAAAAAAAAAAAAAAACwEAAA=","name":"manage PV\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":61814,"stack_free":1068,"cpu":0} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"SU1VAAAAAAAAAAAAAAAAAAAAAAAAAPQHAAA=","name":"IMU\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":14252,"stack_free":2036,"cpu":0} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"SU1VIGF1eAAAAAAAAAAAAAAAAAAAAEwIAAA=","name":"IMU aux\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":18976,"stack_free":2124,"cpu":0} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"bmRiAAAAAAAAAAAAAAAAAAAAAAAAAFAMAAA=","name":"ndb\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":26120,"stack_free":3152,"cpu":0} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"TkFQIFRyYWNraW5nAAAAAAAAAAApAdR3AAA=","name":"NAP Tracking\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":25570,"stack_free":30676,"cpu":297} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"ZGVjb2RlAAAAAAAAAAAAAAAAAAAJANQGAAA=","name":"decode\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":55602,"stack_free":1748,"cpu":9} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"bWFuYWdlIGFjcQAAAAAAAAAAAABwAaR3AAA=","name":"manage acq\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":1203,"stack_free":30628,"cpu":368} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"c3lzdGVtIG1vbml0b3IAAAAAAAAAACwGAAA=","name":"system monitor\u0000\u0000\u0000\u0000\u0000\u0000","crc":58531,"stack_free":1580,"cpu":0} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"V2F0Y2hkb2cAAAAAAAAAAAAAAAAAAOQDAAA=","name":"Watchdog\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":44438,"stack_free":996,"cpu":0} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"c3RhcmxpbmcAAAAAAAAAAAAAAACVAPz/AAA=","name":"starling\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":15999,"stack_free":65532,"cpu":149} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"bWVfY2FsY19wdnQAAAAAAAAAAAAJAIwjAAA=","name":"me_calc_pvt\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":57561,"stack_free":9100,"cpu":9} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"UFBTAAAAAAAAAAAAAAAAAAAAAAAAAEgHAAA=","name":"PPS\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":38576,"stack_free":1864,"cpu":0} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"c3BlY3RydW0gYW5hbHl6ZXIAAAAAANQPAAA=","name":"spectrum analyzer\u0000\u0000\u0000","crc":50933,"stack_free":4052,"cpu":0} -{"length":30,"preamble":85,"sender":22963,"msg_type":167,"setting":"usb0\u0000enabled_sbp_messages\u0000\u0000\u0000","payload":"FAB1c2IwAGVuYWJsZWRfc2JwX21lc3NhZ2VzAAAA","crc":18888,"index":20} -{"length":64,"preamble":85,"sender":22963,"msg_type":167,"setting":"usb0\u0000mode\u0000SBP\u0000enum:Disabled,SBP,RTCMv3 OUT,NMEA OUT,RTCMv3 IN\u0000","payload":"FQB1c2IwAG1vZGUAU0JQAGVudW06RGlzYWJsZWQsU0JQLFJUQ012MyBPVVQsTk1FQSBPVVQsUlRDTXYzIElOAA==","crc":17492,"index":21} -{"length":229,"preamble":85,"sender":22963,"msg_type":167,"setting":"tcp_server0\u0000enabled_sbp_messages\u000023,65,72,74,81,97,117,134,136,137,138,139,144,149,151,163,165,166,167,171,175,181,185,187,188,189,190,257,258,259,520,522,524,526,527,528,1025,2304/50,2305,2306/50,4098,30583,65280,65282,65535\u0000\u0000","payload":"FgB0Y3Bfc2VydmVyMABlbmFibGVkX3NicF9tZXNzYWdlcwAyMyw2NSw3Miw3NCw4MSw5NywxMTcsMTM0LDEzNiwxMzcsMTM4LDEzOSwxNDQsMTQ5LDE1MSwxNjMsMTY1LDE2NiwxNjcsMTcxLDE3NSwxODEsMTg1LDE4NywxODgsMTg5LDE5MCwyNTcsMjU4LDI1OSw1MjAsNTIyLDUyNCw1MjYsNTI3LDUyOCwxMDI1LDIzMDQvNTAsMjMwNSwyMzA2LzUwLDQwOTgsMzA1ODMsNjUyODAsNjUyODIsNjU1MzUAAA==","crc":41475,"index":22} -{"length":26,"preamble":85,"sender":22963,"msg_type":167,"setting":"tcp_server0\u0000port\u000055555\u0000\u0000","payload":"FwB0Y3Bfc2VydmVyMABwb3J0ADU1NTU1AAA=","crc":64683,"index":23} -{"length":71,"preamble":85,"sender":22963,"msg_type":167,"setting":"tcp_server0\u0000mode\u0000SBP\u0000enum:Disabled,SBP,RTCMv3 OUT,NMEA OUT,RTCMv3 IN\u0000","payload":"GAB0Y3Bfc2VydmVyMABtb2RlAFNCUABlbnVtOkRpc2FibGVkLFNCUCxSVENNdjMgT1VULE5NRUEgT1VULFJUQ012MyBJTgA=","crc":37489,"index":24} -{"length":225,"preamble":85,"sender":22963,"msg_type":167,"setting":"tcp_server1\u0000enabled_sbp_messages\u000023,65,72,74,81,97,117,134,136,137,138,139,144,149,163,165,166,167,171,175,181,185,187,188,189,190,257,258,259,520,522,524,526,527,528,1025,2304/50,2305,2306/50,4098,30583,65280,65282,65535\u0000\u0000","payload":"GQB0Y3Bfc2VydmVyMQBlbmFibGVkX3NicF9tZXNzYWdlcwAyMyw2NSw3Miw3NCw4MSw5NywxMTcsMTM0LDEzNiwxMzcsMTM4LDEzOSwxNDQsMTQ5LDE2MywxNjUsMTY2LDE2NywxNzEsMTc1LDE4MSwxODUsMTg3LDE4OCwxODksMTkwLDI1NywyNTgsMjU5LDUyMCw1MjIsNTI0LDUyNiw1MjcsNTI4LDEwMjUsMjMwNC81MCwyMzA1LDIzMDYvNTAsNDA5OCwzMDU4Myw2NTI4MCw2NTI4Miw2NTUzNQAA","crc":12981,"index":25} -{"length":26,"preamble":85,"sender":22963,"msg_type":167,"setting":"tcp_server1\u0000port\u000055556\u0000\u0000","payload":"GgB0Y3Bfc2VydmVyMQBwb3J0ADU1NTU2AAA=","crc":53392,"index":26} -{"length":71,"preamble":85,"sender":22963,"msg_type":167,"setting":"tcp_server1\u0000mode\u0000SBP\u0000enum:Disabled,SBP,RTCMv3 OUT,NMEA OUT,RTCMv3 IN\u0000","payload":"GwB0Y3Bfc2VydmVyMQBtb2RlAFNCUABlbnVtOkRpc2FibGVkLFNCUCxSVENNdjMgT1VULE5NRUEgT1VULFJUQ012MyBJTgA=","crc":48984,"index":27} -{"length":221,"preamble":85,"sender":22963,"msg_type":167,"setting":"tcp_client0\u0000enabled_sbp_messages\u000023,65,72,74,81,97,117,134,136,137,138,139,144,149,163,165,166,167,171,181,185,187,188,189,190,257,258,259,520,522,524,526,527,528,1025,2304/50,2305,2306/50,4098,30583,65280,65282,65535\u0000\u0000","payload":"HAB0Y3BfY2xpZW50MABlbmFibGVkX3NicF9tZXNzYWdlcwAyMyw2NSw3Miw3NCw4MSw5NywxMTcsMTM0LDEzNiwxMzcsMTM4LDEzOSwxNDQsMTQ5LDE2MywxNjUsMTY2LDE2NywxNzEsMTgxLDE4NSwxODcsMTg4LDE4OSwxOTAsMjU3LDI1OCwyNTksNTIwLDUyMiw1MjQsNTI2LDUyNyw1MjgsMTAyNSwyMzA0LzUwLDIzMDUsMjMwNi81MCw0MDk4LDMwNTgzLDY1MjgwLDY1MjgyLDY1NTM1AAA=","crc":28658,"index":28} -{"length":24,"preamble":85,"sender":22963,"msg_type":167,"setting":"tcp_client0\u0000address\u0000\u0000\u0000","payload":"HQB0Y3BfY2xpZW50MABhZGRyZXNzAAAA","crc":37917,"index":29} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"Mgh0uy4QAAAAAAE=","wn":2098,"tow":271498100,"crc":27320} -{"length":16,"flags":17,"ns":99999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EXS7LhDkBwMZAxgo/uD1BQ==","day":25,"tow":271498100,"year":2020,"crc":26430,"minutes":24,"month":3,"seconds":40} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.23013488617199,"preamble":85,"sender":22963,"msg_type":522,"payload":"dLsuEBEy9ull6kJAYACSIFaSXsACx7Ee6joxwAECWwQPBg==","lat":37.83123516579884,"tow":271498100,"h_accuracy":513,"crc":2189,"lon":-122.28650678880649} -{"v_accuracy":713,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"dLsuEP3///8BAAAAEwAAAPAAyQIPAg==","n":-3,"d":19,"tow":271498100,"h_accuracy":240,"crc":18744,"e":1} -{"length":15,"gdop":155,"flags":6,"tdop":77,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"dLsuEJsAhwBNAEgAcgAG","tow":271498100,"crc":5459,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"dLsuEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271498100,"h_accuracy":0,"crc":27997,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"dLsuEP//","tow":271498100,"crc":38031} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":76,"preamble":85,"sender":22963,"msg_type":167,"setting":"tcp_client0\u0000mode\u0000Disabled\u0000enum:Disabled,SBP,RTCMv3 OUT,NMEA OUT,RTCMv3 IN\u0000","payload":"HgB0Y3BfY2xpZW50MABtb2RlAERpc2FibGVkAGVudW06RGlzYWJsZWQsU0JQLFJUQ012MyBPVVQsTk1FQSBPVVQsUlRDTXYzIElOAA==","crc":60753,"index":30} -{"length":221,"preamble":85,"sender":22963,"msg_type":167,"setting":"tcp_client1\u0000enabled_sbp_messages\u000023,65,72,74,81,97,117,134,136,137,138,139,144,149,163,165,166,167,171,181,185,187,188,189,190,257,258,259,520,522,524,526,527,528,1025,2304/50,2305,2306/50,4098,30583,65280,65282,65535\u0000\u0000","payload":"HwB0Y3BfY2xpZW50MQBlbmFibGVkX3NicF9tZXNzYWdlcwAyMyw2NSw3Miw3NCw4MSw5NywxMTcsMTM0LDEzNiwxMzcsMTM4LDEzOSwxNDQsMTQ5LDE2MywxNjUsMTY2LDE2NywxNzEsMTgxLDE4NSwxODcsMTg4LDE4OSwxOTAsMjU3LDI1OCwyNTksNTIwLDUyMiw1MjQsNTI2LDUyNyw1MjgsMTAyNSwyMzA0LzUwLDIzMDUsMjMwNi81MCw0MDk4LDMwNTgzLDY1MjgwLDY1MjgyLDY1NTM1AAA=","crc":8030,"index":31} -{"length":24,"preamble":85,"sender":22963,"msg_type":167,"setting":"tcp_client1\u0000address\u0000\u0000\u0000","payload":"IAB0Y3BfY2xpZW50MQBhZGRyZXNzAAAA","crc":5291,"index":32} -{"length":76,"preamble":85,"sender":22963,"msg_type":167,"setting":"tcp_client1\u0000mode\u0000Disabled\u0000enum:Disabled,SBP,RTCMv3 OUT,NMEA OUT,RTCMv3 IN\u0000","payload":"IQB0Y3BfY2xpZW50MQBtb2RlAERpc2FibGVkAGVudW06RGlzYWJsZWQsU0JQLFJUQ012MyBPVVQsTk1FQSBPVVQsUlRDTXYzIElOAA==","crc":50177,"index":33} -{"length":37,"preamble":85,"sender":22963,"msg_type":167,"setting":"udp_server0\u0000enabled_sbp_messages\u0000\u0000\u0000","payload":"IgB1ZHBfc2VydmVyMABlbmFibGVkX3NicF9tZXNzYWdlcwAAAA==","crc":48728,"index":34} -{"length":26,"preamble":85,"sender":22963,"msg_type":167,"setting":"udp_server0\u0000port\u000055557\u0000\u0000","payload":"IwB1ZHBfc2VydmVyMABwb3J0ADU1NTU3AAA=","crc":46832,"index":35} -{"length":71,"preamble":85,"sender":22963,"msg_type":167,"setting":"udp_server0\u0000mode\u0000SBP\u0000enum:Disabled,SBP,RTCMv3 OUT,NMEA OUT,RTCMv3 IN\u0000","payload":"JAB1ZHBfc2VydmVyMABtb2RlAFNCUABlbnVtOkRpc2FibGVkLFNCUCxSVENNdjMgT1VULE5NRUEgT1VULFJUQ012MyBJTgA=","crc":20811,"index":36} -{"length":37,"preamble":85,"sender":22963,"msg_type":167,"setting":"udp_server1\u0000enabled_sbp_messages\u0000\u0000\u0000","payload":"JQB1ZHBfc2VydmVyMQBlbmFibGVkX3NicF9tZXNzYWdlcwAAAA==","crc":5727,"index":37} -{"length":26,"preamble":85,"sender":22963,"msg_type":167,"setting":"udp_server1\u0000port\u000055558\u0000\u0000","payload":"JgB1ZHBfc2VydmVyMQBwb3J0ADU1NTU4AAA=","crc":56327,"index":38} -{"length":71,"preamble":85,"sender":22963,"msg_type":167,"setting":"udp_server1\u0000mode\u0000SBP\u0000enum:Disabled,SBP,RTCMv3 OUT,NMEA OUT,RTCMv3 IN\u0000","payload":"JwB1ZHBfc2VydmVyMQBtb2RlAFNCUABlbnVtOkRpc2FibGVkLFNCUCxSVENNdjMgT1VULE5NRUEgT1VULFJUQ012MyBJTgA=","crc":31842,"index":39} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgjYuy4QAAAAAAE=","wn":2098,"tow":271498200,"crc":51174} -{"length":16,"flags":17,"ns":199999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"Edi7LhDkBwMZAxgo/sHrCw==","day":25,"tow":271498200,"year":2020,"crc":25227,"minutes":24,"month":3,"seconds":40} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.23051501322515,"preamble":85,"sender":22963,"msg_type":522,"payload":"2LsuEPs++Oll6kJAiUi5IFaSXsD+CSsIAzsxwAECWwQPBg==","lat":37.83123516675365,"tow":271498200,"h_accuracy":513,"crc":1546,"lon":-122.28650682539059} -{"v_accuracy":713,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"2LsuEAUAAADv////2/////AAyQIPAg==","n":5,"d":-37,"tow":271498200,"h_accuracy":240,"crc":20213,"e":-17} -{"length":15,"gdop":155,"flags":6,"tdop":77,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"2LsuEJsAhwBNAEgAcgAG","tow":271498200,"crc":24738,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"2LsuEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271498200,"h_accuracy":0,"crc":17543,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"2LsuEP//","tow":271498200,"crc":32324} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":221,"preamble":85,"sender":22963,"msg_type":167,"setting":"udp_client0\u0000enabled_sbp_messages\u000023,65,72,74,81,97,117,134,136,137,138,139,144,149,163,165,166,167,171,181,185,187,188,189,190,257,258,259,520,522,524,526,527,528,1025,2304/50,2305,2306/50,4098,30583,65280,65282,65535\u0000\u0000","payload":"KAB1ZHBfY2xpZW50MABlbmFibGVkX3NicF9tZXNzYWdlcwAyMyw2NSw3Miw3NCw4MSw5NywxMTcsMTM0LDEzNiwxMzcsMTM4LDEzOSwxNDQsMTQ5LDE2MywxNjUsMTY2LDE2NywxNzEsMTgxLDE4NSwxODcsMTg4LDE4OSwxOTAsMjU3LDI1OCwyNTksNTIwLDUyMiw1MjQsNTI2LDUyNyw1MjgsMTAyNSwyMzA0LzUwLDIzMDUsMjMwNi81MCw0MDk4LDMwNTgzLDY1MjgwLDY1MjgyLDY1NTM1AAA=","crc":1932,"index":40} -{"length":24,"preamble":85,"sender":22963,"msg_type":167,"setting":"udp_client0\u0000address\u0000\u0000\u0000","payload":"KQB1ZHBfY2xpZW50MABhZGRyZXNzAAAA","crc":60604,"index":41} -{"length":76,"preamble":85,"sender":22963,"msg_type":167,"setting":"udp_client0\u0000mode\u0000Disabled\u0000enum:Disabled,SBP,RTCMv3 OUT,NMEA OUT,RTCMv3 IN\u0000","payload":"KgB1ZHBfY2xpZW50MABtb2RlAERpc2FibGVkAGVudW06RGlzYWJsZWQsU0JQLFJUQ012MyBPVVQsTk1FQSBPVVQsUlRDTXYzIElOAA==","crc":3966,"index":42} -{"length":221,"preamble":85,"sender":22963,"msg_type":167,"setting":"udp_client1\u0000enabled_sbp_messages\u000023,65,72,74,81,97,117,134,136,137,138,139,144,149,163,165,166,167,171,181,185,187,188,189,190,257,258,259,520,522,524,526,527,528,1025,2304/50,2305,2306/50,4098,30583,65280,65282,65535\u0000\u0000","payload":"KwB1ZHBfY2xpZW50MQBlbmFibGVkX3NicF9tZXNzYWdlcwAyMyw2NSw3Miw3NCw4MSw5NywxMTcsMTM0LDEzNiwxMzcsMTM4LDEzOSwxNDQsMTQ5LDE2MywxNjUsMTY2LDE2NywxNzEsMTgxLDE4NSwxODcsMTg4LDE4OSwxOTAsMjU3LDI1OCwyNTksNTIwLDUyMiw1MjQsNTI2LDUyNyw1MjgsMTAyNSwyMzA0LzUwLDIzMDUsMjMwNi81MCw0MDk4LDMwNTgzLDY1MjgwLDY1MjgyLDY1NTM1AAA=","crc":30496,"index":43} -{"length":24,"preamble":85,"sender":22963,"msg_type":167,"setting":"udp_client1\u0000address\u0000\u0000\u0000","payload":"LAB1ZHBfY2xpZW50MQBhZGRyZXNzAAAA","crc":1222,"index":44} -{"length":76,"preamble":85,"sender":22963,"msg_type":167,"setting":"udp_client1\u0000mode\u0000Disabled\u0000enum:Disabled,SBP,RTCMv3 OUT,NMEA OUT,RTCMv3 IN\u0000","payload":"LQB1ZHBfY2xpZW50MQBtb2RlAERpc2FibGVkAGVudW06RGlzYWJsZWQsU0JQLFJUQ012MyBPVVQsTk1FQSBPVVQsUlRDTXYzIElOAA==","crc":22298,"index":45} -{"length":25,"preamble":85,"sender":22963,"msg_type":167,"setting":"nmea\u0000gpgga_msg_rate\u00001\u0000\u0000","payload":"LgBubWVhAGdwZ2dhX21zZ19yYXRlADEAAA==","crc":25942,"index":46} -{"length":26,"preamble":85,"sender":22963,"msg_type":167,"setting":"nmea\u0000gprmc_msg_rate\u000010\u0000\u0000","payload":"LwBubWVhAGdwcm1jX21zZ19yYXRlADEwAAA=","crc":27955,"index":47} -{"length":25,"preamble":85,"sender":22963,"msg_type":167,"setting":"nmea\u0000gpvtg_msg_rate\u00001\u0000\u0000","payload":"MABubWVhAGdwdnRnX21zZ19yYXRlADEAAA==","crc":54031,"index":48} -{"length":25,"preamble":85,"sender":22963,"msg_type":167,"setting":"nmea\u0000gphdt_msg_rate\u00001\u0000\u0000","payload":"MQBubWVhAGdwaGR0X21zZ19yYXRlADEAAA==","crc":24913,"index":49} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"Mgg8vC4QAAAAAAE=","wn":2098,"tow":271498300,"crc":56198} -{"length":16,"flags":17,"ns":299999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"ETy8LhDkBwMZAxgo/qLhEQ==","day":25,"tow":271498300,"year":2020,"crc":62651,"minutes":24,"month":3,"seconds":40} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.23370142364709,"preamble":85,"sender":22963,"msg_type":522,"payload":"PLwuEJWj7ull6kJAki7EIFaSXsDIl0Pb0zsxwAECWwQPBg==","lat":37.83123516228003,"tow":271498300,"h_accuracy":513,"crc":25621,"lon":-122.28650683554068} -{"v_accuracy":713,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"PLwuEAIAAAD/////BwAAAPAAyQIPAg==","n":2,"d":7,"tow":271498300,"h_accuracy":240,"crc":35761,"e":-1} -{"length":15,"gdop":155,"flags":6,"tdop":77,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"PLwuEJsAhwBNAEgAcgAG","tow":271498300,"crc":26649,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"PLwuEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271498300,"h_accuracy":0,"crc":61220,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"PLwuEP//","tow":271498300,"crc":37897} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":26,"preamble":85,"sender":22963,"msg_type":167,"setting":"nmea\u0000gpgll_msg_rate\u000010\u0000\u0000","payload":"MgBubWVhAGdwZ2xsX21zZ19yYXRlADEwAAA=","crc":48894,"index":50} -{"length":26,"preamble":85,"sender":22963,"msg_type":167,"setting":"nmea\u0000gpzda_msg_rate\u000010\u0000\u0000","payload":"MwBubWVhAGdwemRhX21zZ19yYXRlADEwAAA=","crc":56170,"index":51} -{"length":24,"preamble":85,"sender":22963,"msg_type":167,"setting":"nmea\u0000gsa_msg_rate\u000010\u0000\u0000","payload":"NABubWVhAGdzYV9tc2dfcmF0ZQAxMAAA","crc":64495,"index":52} -{"length":25,"preamble":85,"sender":22963,"msg_type":167,"setting":"nmea\u0000gpgst_msg_rate\u00001\u0000\u0000","payload":"NQBubWVhAGdwZ3N0X21zZ19yYXRlADEAAA==","crc":10407,"index":53} -{"length":26,"preamble":85,"sender":22963,"msg_type":167,"setting":"nmea\u0000gpgsv_msg_rate\u000010\u0000\u0000","payload":"NgBubWVhAGdwZ3N2X21zZ19yYXRlADEwAAA=","crc":20798,"index":54} -{"length":50,"preamble":85,"sender":22963,"msg_type":167,"setting":"system\u0000system_time\u0000GPS+NTP\u0000enum:GPS+NTP,GPS,NTP\u0000","payload":"NwBzeXN0ZW0Ac3lzdGVtX3RpbWUAR1BTK05UUABlbnVtOkdQUytOVFAsR1BTLE5UUAA=","crc":36707,"index":55} -{"length":43,"preamble":85,"sender":22963,"msg_type":167,"setting":"system\u0000connectivity_check_frequency\u00000.1\u0000\u0000","payload":"OABzeXN0ZW0AY29ubmVjdGl2aXR5X2NoZWNrX2ZyZXF1ZW5jeQAwLjEAAA==","crc":39857,"index":56} -{"length":237,"states":[{"cn0":214,"mesid":{"sat":5,"code":0}},{"cn0":181,"mesid":{"sat":21,"code":0}},{"cn0":192,"mesid":{"sat":2,"code":0}},{"cn0":166,"mesid":{"sat":31,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":220,"mesid":{"sat":25,"code":0}},{"cn0":208,"mesid":{"sat":12,"code":0}},{"cn0":214,"mesid":{"sat":29,"code":0}},{"cn0":209,"mesid":{"sat":18,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":206,"mesid":{"sat":131,"code":2}},{"cn0":204,"mesid":{"sat":25,"code":1}},{"cn0":187,"mesid":{"sat":12,"code":1}},{"cn0":151,"mesid":{"sat":31,"code":1}},{"cn0":194,"mesid":{"sat":18,"code":1}},{"cn0":194,"mesid":{"sat":29,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":193,"mesid":{"sat":5,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":213,"mesid":{"sat":100,"code":3}},{"cn0":175,"mesid":{"sat":98,"code":3}},{"cn0":173,"mesid":{"sat":102,"code":3}},{"cn0":208,"mesid":{"sat":101,"code":3}},{"cn0":206,"mesid":{"sat":93,"code":3}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":182,"mesid":{"sat":106,"code":3}},{"cn0":203,"mesid":{"sat":104,"code":3}},{"cn0":171,"mesid":{"sat":98,"code":4}},{"cn0":204,"mesid":{"sat":102,"code":4}},{"cn0":84,"mesid":{"sat":93,"code":4}},{"cn0":200,"mesid":{"sat":100,"code":4}},{"cn0":193,"mesid":{"sat":101,"code":4}},{"cn0":186,"mesid":{"sat":104,"code":4}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":176,"mesid":{"sat":106,"code":4}},{"cn0":198,"mesid":{"sat":35,"code":12}},{"cn0":168,"mesid":{"sat":26,"code":12}},{"cn0":161,"mesid":{"sat":34,"code":12}},{"cn0":189,"mesid":{"sat":24,"code":12}},{"cn0":156,"mesid":{"sat":25,"code":12}},{"cn0":184,"mesid":{"sat":12,"code":12}},{"cn0":185,"mesid":{"sat":19,"code":12}},{"cn0":190,"mesid":{"sat":22,"code":12}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":209,"mesid":{"sat":12,"code":13}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":196,"mesid":{"sat":12,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":192,"mesid":{"sat":25,"code":14}},{"cn0":189,"mesid":{"sat":11,"code":14}},{"cn0":205,"mesid":{"sat":24,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":162,"mesid":{"sat":31,"code":14}},{"cn0":155,"mesid":{"sat":33,"code":14}},{"cn0":201,"mesid":{"sat":25,"code":20}},{"cn0":215,"mesid":{"sat":24,"code":20}},{"cn0":194,"mesid":{"sat":11,"code":20}},{"cn0":172,"mesid":{"sat":31,"code":20}},{"cn0":206,"mesid":{"sat":12,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":170,"mesid":{"sat":33,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}}],"preamble":85,"sender":22963,"msg_type":97,"payload":"BQDWFQC1AgDAHwCmAAAAAAAAGQDcDADQHQDWEgDRAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwLOGQHMDAG7HwGXEgHCHQHCAAAABQHBAAAAAAAAAAAAAAAAZAPVYgOvZgOtZQPQXQPOAAAAagO2aAPLYgSrZgTMXQRUZATIZQTBaAS6AAAAagSwIwzGGgyoIgyhGAy9GQycDAy4Ewy5Fgy+AAAADA3RAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADA7EAAAAGQ7ACw69GA7NAAAAHw6iIQ6bGRTJGBTXCxTCHxSsDBTOAAAAIRSqAAAA","crc":26559} -{"length":47,"preamble":85,"sender":22963,"msg_type":167,"setting":"system\u0000connectivity_check_addresses\u00008.8.8.8\u0000\u0000","payload":"OQBzeXN0ZW0AY29ubmVjdGl2aXR5X2NoZWNrX2FkZHJlc3NlcwA4LjguOC44AAA=","crc":57491,"index":57} -{"length":41,"preamble":85,"sender":22963,"msg_type":167,"setting":"system\u0000connectivity_retry_frequency\u00001\u0000\u0000","payload":"OgBzeXN0ZW0AY29ubmVjdGl2aXR5X3JldHJ5X2ZyZXF1ZW5jeQAxAAA=","crc":58359,"index":58} -{"length":49,"preamble":85,"sender":22963,"msg_type":167,"setting":"system\u0000log_ping_activity\u0000False\u0000enum:False,True\u0000","payload":"OwBzeXN0ZW0AbG9nX3BpbmdfYWN0aXZpdHkARmFsc2UAZW51bTpGYWxzZSxUcnVlAA==","crc":17956,"index":59} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgigvC4QAAAAAAE=","wn":2098,"tow":271498400,"crc":33498} -{"length":16,"flags":17,"ns":399999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EaC8LhDkBwMZAxgo/oPXFw==","day":25,"tow":271498400,"year":2020,"crc":11479,"minutes":24,"month":3,"seconds":40} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.236536265618664,"preamble":85,"sender":22963,"msg_type":522,"payload":"oLwuEIEV5ull6kJA34zIIFaSXsBvJgWkjTwxwAECWwQPBg==","lat":37.8312351582963,"tow":271498400,"h_accuracy":513,"crc":12675,"lon":-122.28650683960903} -{"v_accuracy":713,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"oLwuEAQAAAAFAAAACwAAAPAAyQIPAg==","n":4,"d":11,"tow":271498400,"h_accuracy":240,"crc":14669,"e":5} -{"length":15,"gdop":155,"flags":6,"tdop":77,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"oLwuEJsAhwBNAEgAcgAG","tow":271498400,"crc":52854,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"oLwuEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271498400,"h_accuracy":0,"crc":4373,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"oLwuEP//","tow":271498400,"crc":20814} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":43,"preamble":85,"sender":22963,"msg_type":167,"setting":"system\u0000ota_enabled\u0000False\u0000enum:False,True\u0000","payload":"PABzeXN0ZW0Ab3RhX2VuYWJsZWQARmFsc2UAZW51bTpGYWxzZSxUcnVlAA==","crc":1395,"index":60} -{"length":41,"preamble":85,"sender":22963,"msg_type":167,"setting":"system\u0000ota_debug\u0000False\u0000enum:False,True\u0000","payload":"PQBzeXN0ZW0Ab3RhX2RlYnVnAEZhbHNlAGVudW06RmFsc2UsVHJ1ZQA=","crc":54273,"index":61} -{"length":19,"preamble":85,"sender":22963,"msg_type":167,"setting":"system\u0000ota_url\u0000\u0000\u0000","payload":"PgBzeXN0ZW0Ab3RhX3VybAAAAA==","crc":38465,"index":62} -{"length":45,"preamble":85,"sender":22963,"msg_type":167,"setting":"system\u0000resource_monitor_update_interval\u00000\u0000\u0000","payload":"PwBzeXN0ZW0AcmVzb3VyY2VfbW9uaXRvcl91cGRhdGVfaW50ZXJ2YWwAMAAA","crc":17110,"index":63} -{"length":41,"preamble":85,"sender":22963,"msg_type":167,"setting":"system_info\u0000imageset_build_id\u0000v2.3.19\u0000\u0000","payload":"QABzeXN0ZW1faW5mbwBpbWFnZXNldF9idWlsZF9pZAB2Mi4zLjE5AAA=","crc":10565,"index":64} -{"length":41,"preamble":85,"sender":22963,"msg_type":167,"setting":"system_info\u0000firmware_build_id\u0000v2.3.19\u0000\u0000","payload":"QQBzeXN0ZW1faW5mbwBmaXJtd2FyZV9idWlsZF9pZAB2Mi4zLjE5AAA=","crc":38781,"index":65} -{"length":40,"preamble":85,"sender":22963,"msg_type":167,"setting":"system_info\u0000firmware_version\u0000v2.3.19\u0000\u0000","payload":"QgBzeXN0ZW1faW5mbwBmaXJtd2FyZV92ZXJzaW9uAHYyLjMuMTkAAA==","crc":64133,"index":66} -{"length":59,"preamble":85,"sender":22963,"msg_type":167,"setting":"system_info\u0000firmware_build_date\u00002019-08-23 00:47:27 UTC\u0000\u0000","payload":"QwBzeXN0ZW1faW5mbwBmaXJtd2FyZV9idWlsZF9kYXRlADIwMTktMDgtMjMgMDA6NDc6MjcgVVRDAAA=","crc":63354,"index":67} -{"length":61,"preamble":85,"sender":22963,"msg_type":167,"setting":"system_info\u0000loader_build_id\u0000U-Boot d47e99b for zynq board\u0000\u0000","payload":"RABzeXN0ZW1faW5mbwBsb2FkZXJfYnVpbGRfaWQAVS1Cb290IGQ0N2U5OWIgZm9yIHp5bnEgYm9hcmQAAA==","crc":28916,"index":68} -{"length":57,"preamble":85,"sender":22963,"msg_type":167,"setting":"system_info\u0000loader_build_date\u00002017-02-07 00:48:15 UTC\u0000\u0000","payload":"RQBzeXN0ZW1faW5mbwBsb2FkZXJfYnVpbGRfZGF0ZQAyMDE3LTAyLTA3IDAwOjQ4OjE1IFVUQwAA","crc":6888,"index":69} -{"length":9,"l2ca_bias":0,"preamble":85,"l2p_bias":0,"sender":22963,"msg_type":117,"payload":"/wAAAAAAAAAA","l1ca_bias":0,"mask":255,"crc":49809,"l1p_bias":0} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MggEvS4QAAAAAAE=","wn":2098,"tow":271498500,"crc":16808} -{"length":16,"flags":17,"ns":499999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EQS9LhDkBwMZAxgo/mTNHQ==","day":25,"tow":271498500,"year":2020,"crc":27985,"minutes":24,"month":3,"seconds":40} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.237950086429287,"preamble":85,"sender":22963,"msg_type":522,"payload":"BL0uEHE41+ll6kJAYVHdIFaSXsBOS/9L6jwxwAECWwQPBg==","lat":37.83123515137493,"tow":271498500,"h_accuracy":513,"crc":13383,"lon":-122.28650685895037} -{"v_accuracy":713,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"BL0uEPv///8AAAAADwAAAPAAyQIPAg==","n":-5,"d":15,"tow":271498500,"h_accuracy":240,"crc":40850,"e":0} -{"length":15,"gdop":155,"flags":6,"tdop":77,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"BL0uEJsAhwBNAEgAcgAG","tow":271498500,"crc":59299,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"BL0uEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271498500,"h_accuracy":0,"crc":45978,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"BL0uEP//","tow":271498500,"crc":7318} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":30,"preamble":85,"sender":22963,"msg_type":167,"setting":"system_info\u0000hw_version\u00000.0\u0000\u0000","payload":"RgBzeXN0ZW1faW5mbwBod192ZXJzaW9uADAuMAAA","crc":29540,"index":70} -{"length":39,"preamble":85,"sender":22963,"msg_type":167,"setting":"system_info\u0000hw_revision\u0000Piksi Multi\u0000\u0000","payload":"RwBzeXN0ZW1faW5mbwBod19yZXZpc2lvbgBQaWtzaSBNdWx0aQAA","crc":44630,"index":71} -{"length":32,"preamble":85,"sender":22963,"msg_type":167,"setting":"system_info\u0000hw_variant\u0000Multi\u0000\u0000","payload":"SABzeXN0ZW1faW5mbwBod192YXJpYW50AE11bHRpAAA=","crc":58200,"index":72} -{"length":47,"preamble":85,"sender":22963,"msg_type":167,"setting":"system_info\u0000product_id\u0000Piksi Multi Inertial\u0000\u0000","payload":"SQBzeXN0ZW1faW5mbwBwcm9kdWN0X2lkAFBpa3NpIE11bHRpIEluZXJ0aWFsAAA=","crc":62896,"index":73} -{"length":34,"preamble":85,"sender":22963,"msg_type":167,"setting":"system_info\u0000sbp_sender_id\u000059B3\u0000\u0000","payload":"SgBzeXN0ZW1faW5mbwBzYnBfc2VuZGVyX2lkADU5QjMAAA==","crc":46628,"index":74} -{"length":47,"preamble":85,"sender":22963,"msg_type":167,"setting":"system_info\u0000serial_number\u000000108051217000098\u0000\u0000","payload":"SwBzeXN0ZW1faW5mbwBzZXJpYWxfbnVtYmVyADAwMTA4MDUxMjE3MDAwMDk4AAA=","crc":64562,"index":75} -{"length":37,"preamble":85,"sender":22963,"msg_type":167,"setting":"system_info\u0000pfwp_build_id\u0000v2.3.19\u0000\u0000","payload":"TABzeXN0ZW1faW5mbwBwZndwX2J1aWxkX2lkAHYyLjMuMTkAAA==","crc":64713,"index":76} -{"length":52,"preamble":85,"sender":22963,"msg_type":167,"setting":"system_info\u0000pfwp_build_date\u0000Aug 22 2019 19:01:21\u0000\u0000","payload":"TQBzeXN0ZW1faW5mbwBwZndwX2J1aWxkX2RhdGUAQXVnIDIyIDIwMTkgMTk6MDE6MjEAAA==","crc":1671,"index":77} -{"length":47,"preamble":85,"sender":22963,"msg_type":167,"setting":"system_info\u0000nap_build_id\u0000v2.3.19-0-g9d1c408\u0000\u0000","payload":"TgBzeXN0ZW1faW5mbwBuYXBfYnVpbGRfaWQAdjIuMy4xOS0wLWc5ZDFjNDA4AAA=","crc":63806,"index":78} -{"length":54,"preamble":85,"sender":22963,"msg_type":167,"setting":"system_info\u0000nap_build_date\u00002019-08-22 23:47:51 UTC\u0000\u0000","payload":"TwBzeXN0ZW1faW5mbwBuYXBfYnVpbGRfZGF0ZQAyMDE5LTA4LTIyIDIzOjQ3OjUxIFVUQwAA","crc":50345,"index":79} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MghovS4QAAAAAAE=","wn":2098,"tow":271498600,"crc":3229} -{"length":16,"flags":17,"ns":599999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EWi9LhDkBwMZAxgo/kXDIw==","day":25,"tow":271498600,"year":2020,"crc":9183,"minutes":24,"month":3,"seconds":40} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.2427086899109,"preamble":85,"sender":22963,"msg_type":522,"payload":"aL0uEDs7r+ll6kJARxzjIFaSXsBQnx0oIj4xwAECWwQPBg==","lat":37.831235132753555,"tow":271498600,"h_accuracy":513,"crc":48498,"lon":-122.28650686434513} -{"v_accuracy":713,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"aL0uEPv///8IAAAAIQAAAPAAyQIPAg==","n":-5,"d":33,"tow":271498600,"h_accuracy":240,"crc":12821,"e":8} -{"length":15,"gdop":155,"flags":6,"tdop":77,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"aL0uEJsAhwBNAEgAcgAG","tow":271498600,"crc":60489,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"aL0uEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271498600,"h_accuracy":0,"crc":62863,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"aL0uEP//","tow":271498600,"crc":18541} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"message_type":2,"length":34,"data":[151,255,0,23,255,0,47,255,255,247,255,127,255,255,127,247,255,255,224,1,229,231,85,238,110,229,112],"preamble":85,"sender":22963,"msg_type":30583,"payload":"gwLrvC4QApf/ABf/AC////f/f///f/f//+AB5edV7m7lcA==","tow":271498475,"crc":8923,"sid":{"sat":131,"code":2}} -{"length":31,"preamble":85,"sender":22963,"msg_type":167,"setting":"system_info\u0000nap_channels\u000079\u0000\u0000","payload":"UABzeXN0ZW1faW5mbwBuYXBfY2hhbm5lbHMANzkAAA==","crc":45892,"index":80} -{"length":45,"preamble":85,"sender":22963,"msg_type":167,"setting":"system_info\u0000mac_address\u00008C-C8-F4-90-05-79\u0000\u0000","payload":"UQBzeXN0ZW1faW5mbwBtYWNfYWRkcmVzcwA4Qy1DOC1GNC05MC0wNS03OQAA","crc":16877,"index":81} -{"length":57,"preamble":85,"sender":22963,"msg_type":167,"setting":"system_info\u0000uuid\u0000A516AB02-32DE-441C-9BE7-2AFEB80659B3\u0000\u0000","payload":"UgBzeXN0ZW1faW5mbwB1dWlkAEE1MTZBQjAyLTMyREUtNDQxQy05QkU3LTJBRkVCODA2NTlCMwAA","crc":4186,"index":82} -{"length":50,"preamble":85,"sender":22963,"msg_type":167,"setting":"standalone_logging\u0000enable\u0000False\u0000enum:False,True\u0000","payload":"UwBzdGFuZGFsb25lX2xvZ2dpbmcAZW5hYmxlAEZhbHNlAGVudW06RmFsc2UsVHJ1ZQA=","crc":20678,"index":83} -{"length":52,"preamble":85,"sender":22963,"msg_type":167,"setting":"standalone_logging\u0000output_directory\u0000/media/sda1/\u0000\u0000","payload":"VABzdGFuZGFsb25lX2xvZ2dpbmcAb3V0cHV0X2RpcmVjdG9yeQAvbWVkaWEvc2RhMS8AAA==","crc":60613,"index":84} -{"length":34,"preamble":85,"sender":22963,"msg_type":167,"setting":"standalone_logging\u0000max_fill\u000095\u0000\u0000","payload":"VQBzdGFuZGFsb25lX2xvZ2dpbmcAbWF4X2ZpbGwAOTUAAA==","crc":26638,"index":85} -{"length":39,"preamble":85,"sender":22963,"msg_type":167,"setting":"standalone_logging\u0000file_duration\u000010\u0000\u0000","payload":"VgBzdGFuZGFsb25lX2xvZ2dpbmcAZmlsZV9kdXJhdGlvbgAxMAAA","crc":62818,"index":86} -{"length":64,"preamble":85,"sender":22963,"msg_type":167,"setting":"standalone_logging\u0000logging_file_system\u0000FAT\u0000enum:FAT,F2FS,NTFS\u0000","payload":"VwBzdGFuZGFsb25lX2xvZ2dpbmcAbG9nZ2luZ19maWxlX3N5c3RlbQBGQVQAZW51bTpGQVQsRjJGUyxOVEZTAA==","crc":32416,"index":87} -{"length":60,"preamble":85,"sender":22963,"msg_type":167,"setting":"standalone_logging\u0000copy_system_logs\u0000False\u0000enum:False,True\u0000","payload":"WABzdGFuZGFsb25lX2xvZ2dpbmcAY29weV9zeXN0ZW1fbG9ncwBGYWxzZQBlbnVtOkZhbHNlLFRydWUA","crc":40460,"index":88} -{"length":27,"preamble":85,"sender":22963,"msg_type":167,"setting":"cell_modem\u0000APN\u0000hologram\u0000\u0000","payload":"WQBjZWxsX21vZGVtAEFQTgBob2xvZ3JhbQAA","crc":3343,"index":89} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgjMvS4QAAAAAAE=","wn":2098,"tow":271498700,"crc":34876} -{"length":16,"flags":17,"ns":699999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"Ecy9LhDkBwMZAxgo/ia5KQ==","day":25,"tow":271498700,"year":2020,"crc":62856,"minutes":24,"month":3,"seconds":40} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.24244267612277,"preamble":85,"sender":22963,"msg_type":522,"payload":"zL0uEB24dull6kJAeXYTIVaSXsAeGiW5ED4xwAECWwQPBg==","lat":37.83123510643802,"tow":271498700,"h_accuracy":513,"crc":58751,"lon":-122.28650690937674} -{"v_accuracy":713,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"zL0uEP3/////////3f////AAyQIPAg==","n":-3,"d":-35,"tow":271498700,"h_accuracy":240,"crc":58040,"e":-1} -{"length":15,"gdop":155,"flags":6,"tdop":77,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"zL0uEJsAhwBNAEgAcgAG","tow":271498700,"crc":48893,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"zL0uEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271498700,"h_accuracy":0,"crc":33526,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"zL0uEP//","tow":271498700,"crc":45028} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":42,"preamble":85,"sender":22963,"msg_type":167,"setting":"cell_modem\u0000enable\u0000False\u0000enum:False,True\u0000","payload":"WgBjZWxsX21vZGVtAGVuYWJsZQBGYWxzZQBlbnVtOkZhbHNlLFRydWUA","crc":3796,"index":90} -{"length":41,"preamble":85,"sender":22963,"msg_type":167,"setting":"cell_modem\u0000debug\u0000False\u0000enum:False,True\u0000","payload":"WwBjZWxsX21vZGVtAGRlYnVnAEZhbHNlAGVudW06RmFsc2UsVHJ1ZQA=","crc":42815,"index":91} -{"length":38,"preamble":85,"sender":22963,"msg_type":167,"setting":"cell_modem\u0000device_override\u0000ttyACM0\u0000\u0000","payload":"XABjZWxsX21vZGVtAGRldmljZV9vdmVycmlkZQB0dHlBQ00wAAA=","crc":33669,"index":92} -{"length":50,"preamble":85,"sender":22963,"msg_type":167,"setting":"rtcm_out\u0000output_mode\u0000MSM4\u0000enum:Legacy,MSM4,MSM5\u0000","payload":"XQBydGNtX291dABvdXRwdXRfbW9kZQBNU000AGVudW06TGVnYWN5LE1TTTQsTVNNNQA=","crc":3099,"index":93} -{"length":29,"preamble":85,"sender":22963,"msg_type":167,"setting":"rtcm_out\u0000antenna_height\u00000\u0000\u0000","payload":"XgBydGNtX291dABhbnRlbm5hX2hlaWdodAAwAAA=","crc":26109,"index":94} -{"length":48,"preamble":85,"sender":22963,"msg_type":167,"setting":"rtcm_out\u0000ant_descriptor\u0000HXCGPS500 NONE\u0000\u0000","payload":"XwBydGNtX291dABhbnRfZGVzY3JpcHRvcgBIWENHUFM1MDAgICAgICAgTk9ORQAA","crc":52909,"index":95} -{"length":33,"preamble":85,"sender":22963,"msg_type":167,"setting":"rtcm_out\u0000rcv_descriptor\u0000PIKSI\u0000\u0000","payload":"YABydGNtX291dAByY3ZfZGVzY3JpcHRvcgBQSUtTSQAA","crc":52578,"index":96} -{"length":60,"preamble":85,"sender":22963,"msg_type":167,"setting":"frontend\u0000antenna_selection\u0000Primary\u0000enum:Primary,Secondary\u0000","payload":"YQBmcm9udGVuZABhbnRlbm5hX3NlbGVjdGlvbgBQcmltYXJ5AGVudW06UHJpbWFyeSxTZWNvbmRhcnkA","crc":8235,"index":97} -{"length":45,"preamble":85,"sender":22963,"msg_type":167,"setting":"frontend\u0000antenna_bias\u0000True\u0000enum:False,True\u0000","payload":"YgBmcm9udGVuZABhbnRlbm5hX2JpYXMAVHJ1ZQBlbnVtOkZhbHNlLFRydWUA","crc":11570,"index":98} -{"length":58,"preamble":85,"sender":22963,"msg_type":167,"setting":"metrics_daemon\u0000enable_log_to_file\u0000False\u0000enum:False,True\u0000","payload":"YwBtZXRyaWNzX2RhZW1vbgBlbmFibGVfbG9nX3RvX2ZpbGUARmFsc2UAZW51bTpGYWxzZSxUcnVlAA==","crc":8283,"index":99} -{"length":136,"preamble":85,"sender":22963,"msg_type":151,"payload":"AgAaHgUALDUMAFEtFQB9GRkAbUYaAKEBHQChNx8AlQ4EAxYWBQMyIQYDTggJA18OCgNxKQsDmCUMA6oDEwMiBxQDCzEVA5UlDAyUKRMMIyAUDA8CFgxDIxgMgiMZDJ0OGgxnFR0MLAAiDI4RIwwiLQsOizIMDg88GA5sNhkOlykfDlURIQ4fDw==","crc":41336,"azel":[{"el":30,"az":26,"sid":{"sat":2,"code":0}},{"el":53,"az":44,"sid":{"sat":5,"code":0}},{"el":45,"az":81,"sid":{"sat":12,"code":0}},{"el":25,"az":125,"sid":{"sat":21,"code":0}},{"el":70,"az":109,"sid":{"sat":25,"code":0}},{"el":1,"az":161,"sid":{"sat":26,"code":0}},{"el":55,"az":161,"sid":{"sat":29,"code":0}},{"el":14,"az":149,"sid":{"sat":31,"code":0}},{"el":22,"az":22,"sid":{"sat":4,"code":3}},{"el":33,"az":50,"sid":{"sat":5,"code":3}},{"el":8,"az":78,"sid":{"sat":6,"code":3}},{"el":14,"az":95,"sid":{"sat":9,"code":3}},{"el":41,"az":113,"sid":{"sat":10,"code":3}},{"el":37,"az":152,"sid":{"sat":11,"code":3}},{"el":3,"az":170,"sid":{"sat":12,"code":3}},{"el":7,"az":34,"sid":{"sat":19,"code":3}},{"el":49,"az":11,"sid":{"sat":20,"code":3}},{"el":37,"az":149,"sid":{"sat":21,"code":3}},{"el":41,"az":148,"sid":{"sat":12,"code":12}},{"el":32,"az":35,"sid":{"sat":19,"code":12}},{"el":2,"az":15,"sid":{"sat":20,"code":12}},{"el":35,"az":67,"sid":{"sat":22,"code":12}},{"el":35,"az":130,"sid":{"sat":24,"code":12}},{"el":14,"az":157,"sid":{"sat":25,"code":12}},{"el":21,"az":103,"sid":{"sat":26,"code":12}},{"el":0,"az":44,"sid":{"sat":29,"code":12}},{"el":17,"az":142,"sid":{"sat":34,"code":12}},{"el":45,"az":34,"sid":{"sat":35,"code":12}},{"el":50,"az":139,"sid":{"sat":11,"code":14}},{"el":60,"az":15,"sid":{"sat":12,"code":14}},{"el":54,"az":108,"sid":{"sat":24,"code":14}},{"el":41,"az":151,"sid":{"sat":25,"code":14}},{"el":17,"az":85,"sid":{"sat":31,"code":14}},{"el":15,"az":31,"sid":{"sat":33,"code":14}}]} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"Mggwvi4QAAAAAAE=","wn":2098,"tow":271498800,"crc":57648} -{"length":16,"flags":17,"ns":799999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"ETC+LhDkBwMZAxgo/gevLw==","day":25,"tow":271498800,"year":2020,"crc":4540,"minutes":24,"month":3,"seconds":40} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.24746388199696,"preamble":85,"sender":22963,"msg_type":522,"payload":"ML4uEDX6Null6kJAck0vIVaSXsA/HgDLWT8xwAECWwQPBg==","lat":37.831235076755924,"tow":271498800,"h_accuracy":513,"crc":18754,"lon":-122.28650693530452} -{"v_accuracy":713,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"ML4uEAYAAAD9////BQAAAPAAyQIPAg==","n":6,"d":5,"tow":271498800,"h_accuracy":240,"crc":4465,"e":-3} -{"length":15,"gdop":155,"flags":6,"tdop":77,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"ML4uEJsAhwBNAEgAcgAG","tow":271498800,"crc":8748,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"ML4uEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271498800,"h_accuracy":0,"crc":44299,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"ML4uEP//","tow":271498800,"crc":56169} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":237,"states":[{"cn0":214,"mesid":{"sat":5,"code":0}},{"cn0":180,"mesid":{"sat":21,"code":0}},{"cn0":192,"mesid":{"sat":2,"code":0}},{"cn0":167,"mesid":{"sat":31,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":219,"mesid":{"sat":25,"code":0}},{"cn0":208,"mesid":{"sat":12,"code":0}},{"cn0":214,"mesid":{"sat":29,"code":0}},{"cn0":208,"mesid":{"sat":18,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":206,"mesid":{"sat":131,"code":2}},{"cn0":204,"mesid":{"sat":25,"code":1}},{"cn0":187,"mesid":{"sat":12,"code":1}},{"cn0":150,"mesid":{"sat":31,"code":1}},{"cn0":193,"mesid":{"sat":18,"code":1}},{"cn0":194,"mesid":{"sat":29,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":193,"mesid":{"sat":5,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":212,"mesid":{"sat":11,"code":3}},{"cn0":174,"mesid":{"sat":9,"code":3}},{"cn0":172,"mesid":{"sat":20,"code":3}},{"cn0":207,"mesid":{"sat":5,"code":3}},{"cn0":205,"mesid":{"sat":10,"code":3}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":182,"mesid":{"sat":4,"code":3}},{"cn0":203,"mesid":{"sat":21,"code":3}},{"cn0":171,"mesid":{"sat":9,"code":4}},{"cn0":204,"mesid":{"sat":20,"code":4}},{"cn0":66,"mesid":{"sat":10,"code":4}},{"cn0":200,"mesid":{"sat":11,"code":4}},{"cn0":194,"mesid":{"sat":5,"code":4}},{"cn0":185,"mesid":{"sat":0,"code":4}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":176,"mesid":{"sat":4,"code":4}},{"cn0":198,"mesid":{"sat":35,"code":12}},{"cn0":168,"mesid":{"sat":26,"code":12}},{"cn0":160,"mesid":{"sat":34,"code":12}},{"cn0":188,"mesid":{"sat":24,"code":12}},{"cn0":155,"mesid":{"sat":25,"code":12}},{"cn0":184,"mesid":{"sat":12,"code":12}},{"cn0":184,"mesid":{"sat":19,"code":12}},{"cn0":190,"mesid":{"sat":22,"code":12}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":208,"mesid":{"sat":12,"code":13}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":195,"mesid":{"sat":12,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":192,"mesid":{"sat":25,"code":14}},{"cn0":188,"mesid":{"sat":11,"code":14}},{"cn0":204,"mesid":{"sat":24,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":160,"mesid":{"sat":31,"code":14}},{"cn0":154,"mesid":{"sat":33,"code":14}},{"cn0":200,"mesid":{"sat":25,"code":20}},{"cn0":215,"mesid":{"sat":24,"code":20}},{"cn0":193,"mesid":{"sat":11,"code":20}},{"cn0":172,"mesid":{"sat":31,"code":20}},{"cn0":206,"mesid":{"sat":12,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":170,"mesid":{"sat":33,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}}],"preamble":85,"sender":22963,"msg_type":97,"payload":"BQDWFQC0AgDAHwCnAAAAAAAAGQDbDADQHQDWEgDQAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwLOGQHMDAG7HwGWEgHBHQHCAAAABQHBAAAAAAAAAAAAAAAACwPUCQOuFAOsBQPPCgPNAAAABAO2FQPLCQSrFATMCgRCCwTIBQTCAAS5AAAABASwIwzGGgyoIgygGAy8GQybDAy4Ewy4Fgy+AAAADA3QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADA7DAAAAGQ7ACw68GA7MAAAAHw6gIQ6aGRTIGBTXCxTBHxSsDBTOAAAAIRSqAAAA","crc":31017} -{"length":44,"preamble":85,"sender":22963,"msg_type":167,"setting":"metrics_daemon\u0000metrics_update_interval\u00001\u0000\u0000","payload":"ZABtZXRyaWNzX2RhZW1vbgBtZXRyaWNzX3VwZGF0ZV9pbnRlcnZhbAAxAAA=","crc":42880,"index":100} -{"length":43,"preamble":85,"sender":22963,"msg_type":167,"setting":"imu\u0000imu_raw_output\u0000False\u0000enum:False,True\u0000","payload":"ZQBpbXUAaW11X3Jhd19vdXRwdXQARmFsc2UAZW51bTpGYWxzZSxUcnVlAA==","crc":28433,"index":101} -{"length":38,"preamble":85,"sender":22963,"msg_type":167,"setting":"imu\u0000imu_rate\u0000100\u0000enum:25,50,100,200\u0000","payload":"ZgBpbXUAaW11X3JhdGUAMTAwAGVudW06MjUsNTAsMTAwLDIwMAA=","crc":56634,"index":102} -{"length":37,"preamble":85,"sender":22963,"msg_type":167,"setting":"imu\u0000acc_range\u00008g\u0000enum:2g,4g,8g,16g\u0000","payload":"ZwBpbXUAYWNjX3JhbmdlADhnAGVudW06MmcsNGcsOGcsMTZnAA==","crc":58243,"index":103} -{"length":48,"preamble":85,"sender":22963,"msg_type":167,"setting":"imu\u0000gyro_range\u0000125\u0000enum:2000,1000,500,250,125\u0000","payload":"aABpbXUAZ3lyb19yYW5nZQAxMjUAZW51bToyMDAwLDEwMDAsNTAwLDI1MCwxMjUA","crc":18629,"index":104} -{"length":43,"preamble":85,"sender":22963,"msg_type":167,"setting":"imu\u0000mag_raw_output\u0000False\u0000enum:False,True\u0000","payload":"aQBpbXUAbWFnX3Jhd19vdXRwdXQARmFsc2UAZW51bTpGYWxzZSxUcnVlAA==","crc":29365,"index":105} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgiUvi4QAAAAAAE=","wn":2098,"tow":271498900,"crc":26001} -{"length":16,"flags":17,"ns":899999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EZS+LhDkBwMZAxgo/uikNQ==","day":25,"tow":271498900,"year":2020,"crc":41097,"minutes":24,"month":3,"seconds":40} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.251420082510975,"preamble":85,"sender":22963,"msg_type":522,"payload":"lL4uEFMY+Ohl6kJA5LRHIVaSXsA48QcRXUAxwAECWwQPBg==","lat":37.831235047474046,"tow":271498900,"h_accuracy":513,"crc":27332,"lon":-122.28650695803259} -{"v_accuracy":713,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"lL4uEAIAAAD+////EwAAAPAAyQIPAg==","n":2,"d":19,"tow":271498900,"h_accuracy":240,"crc":64549,"e":-2} -{"length":15,"gdop":155,"flags":6,"tdop":77,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"lL4uEJsAhwBNAEgAcgAG","tow":271498900,"crc":28824,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"lL4uEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271498900,"h_accuracy":0,"crc":55922,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"lL4uEP//","tow":271498900,"crc":15584} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":38,"preamble":85,"sender":22963,"msg_type":167,"setting":"imu\u0000mag_rate\u000012.5\u0000enum:6.25,12.5,25\u0000","payload":"agBpbXUAbWFnX3JhdGUAMTIuNQBlbnVtOjYuMjUsMTIuNSwyNQA=","crc":6972,"index":106} -{"length":26,"preamble":85,"sender":22963,"msg_type":167,"setting":"ndb\u0000valid_alm_acc\u00005000\u0000\u0000","payload":"awBuZGIAdmFsaWRfYWxtX2FjYwA1MDAwAAA=","crc":25153,"index":107} -{"length":25,"preamble":85,"sender":22963,"msg_type":167,"setting":"ndb\u0000valid_eph_acc\u0000100\u0000\u0000","payload":"bABuZGIAdmFsaWRfZXBoX2FjYwAxMDAAAA==","crc":27341,"index":108} -{"length":24,"preamble":85,"sender":22963,"msg_type":167,"setting":"ndb\u0000valid_alm_days\u00006\u0000\u0000","payload":"bQBuZGIAdmFsaWRfYWxtX2RheXMANgAA","crc":55991,"index":109} -{"length":42,"preamble":85,"sender":22963,"msg_type":167,"setting":"ndb\u0000erase_almanac\u0000False\u0000enum:False,True\u0000","payload":"bgBuZGIAZXJhc2VfYWxtYW5hYwBGYWxzZQBlbnVtOkZhbHNlLFRydWUA","crc":15035,"index":110} -{"length":45,"preamble":85,"sender":22963,"msg_type":167,"setting":"ndb\u0000erase_almanac_wn\u0000False\u0000enum:False,True\u0000","payload":"bwBuZGIAZXJhc2VfYWxtYW5hY193bgBGYWxzZQBlbnVtOkZhbHNlLFRydWUA","crc":51897,"index":111} -{"length":44,"preamble":85,"sender":22963,"msg_type":167,"setting":"ndb\u0000erase_gnss_capb\u0000False\u0000enum:False,True\u0000","payload":"cABuZGIAZXJhc2VfZ25zc19jYXBiAEZhbHNlAGVudW06RmFsc2UsVHJ1ZQA=","crc":63569,"index":112} -{"length":39,"preamble":85,"sender":22963,"msg_type":167,"setting":"ndb\u0000erase_iono\u0000False\u0000enum:False,True\u0000","payload":"cQBuZGIAZXJhc2VfaW9ubwBGYWxzZQBlbnVtOkZhbHNlLFRydWUA","crc":28384,"index":113} -{"length":25,"preamble":85,"sender":22963,"msg_type":167,"setting":"ndb\u0000lgf_update_s\u00001800\u0000\u0000","payload":"cgBuZGIAbGdmX3VwZGF0ZV9zADE4MDAAAA==","crc":58798,"index":114} -{"length":26,"preamble":85,"sender":22963,"msg_type":167,"setting":"ndb\u0000lgf_update_m\u000010000\u0000\u0000","payload":"cwBuZGIAbGdmX3VwZGF0ZV9tADEwMDAwAAA=","crc":30766,"index":115} -{"length":51,"text":"GLO L2OF ME 1 [+1356ms] low CN0 too long, dropping","preamble":85,"sender":22963,"msg_type":1025,"payload":"BkdMTyBMMk9GIE1FIDEgWysxMzU2bXNdIGxvdyBDTjAgdG9vIGxvbmcsIGRyb3BwaW5n","crc":49484,"level":6} -{"length":45,"preamble":85,"sender":22963,"msg_type":167,"setting":"ndb\u0000erase_utc_params\u0000False\u0000enum:False,True\u0000","payload":"dABuZGIAZXJhc2VfdXRjX3BhcmFtcwBGYWxzZQBlbnVtOkZhbHNlLFRydWUA","crc":60421,"index":116} -{"length":26,"preamble":85,"sender":22963,"msg_type":167,"setting":"track\u0000elevation_mask\u00009\u0000\u0000","payload":"dQB0cmFjawBlbGV2YXRpb25fbWFzawA5AAA=","crc":48133,"index":117} -{"length":26,"preamble":85,"sender":22963,"msg_type":167,"setting":"track\u0000iq_output_mask\u00000\u0000\u0000","payload":"dgB0cmFjawBpcV9vdXRwdXRfbWFzawAwAAA=","crc":48620,"index":118} -{"length":43,"preamble":85,"sender":22963,"msg_type":167,"setting":"track\u0000mode\u0000rover\u0000enum:rover,base station\u0000","payload":"dwB0cmFjawBtb2RlAHJvdmVyAGVudW06cm92ZXIsYmFzZSBzdGF0aW9uAA==","crc":26603,"index":119} -{"length":249,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":64,"i":110561387},"flags":15,"cn0":214,"P":1051956488,"D":{"f":27,"i":-172},"lock":15,"sid":{"sat":5,"code":0}},{"L":{"f":236,"i":121859564},"flags":15,"cn0":180,"P":1159455208,"D":{"f":95,"i":2177},"lock":15,"sid":{"sat":21,"code":0}},{"L":{"f":73,"i":123298677},"flags":15,"cn0":192,"P":1173147539,"D":{"f":107,"i":-2477},"lock":15,"sid":{"sat":2,"code":0}},{"L":{"f":201,"i":128732135},"flags":15,"cn0":166,"P":1224845537,"D":{"f":143,"i":-387},"lock":15,"sid":{"sat":31,"code":0}},{"L":{"f":37,"i":107805369},"flags":15,"cn0":219,"P":1025733915,"D":{"f":1,"i":-1117},"lock":15,"sid":{"sat":25,"code":0}},{"L":{"f":159,"i":114051335},"flags":15,"cn0":207,"P":1085162265,"D":{"f":51,"i":-2961},"lock":15,"sid":{"sat":12,"code":0}},{"L":{"f":89,"i":110784696},"flags":15,"cn0":213,"P":1054081247,"D":{"f":37,"i":1487},"lock":15,"sid":{"sat":29,"code":0}},{"L":{"f":62,"i":84004204},"flags":15,"cn0":204,"P":1025733953,"D":{"f":57,"i":-870},"lock":15,"sid":{"sat":25,"code":1}},{"L":{"f":67,"i":88871202},"flags":15,"cn0":187,"P":1085162191,"D":{"f":223,"i":-2309},"lock":15,"sid":{"sat":12,"code":1}},{"L":{"f":151,"i":100310757},"flags":15,"cn0":150,"P":1224845488,"D":{"f":50,"i":-301},"lock":15,"sid":{"sat":31,"code":1}},{"L":{"f":59,"i":86325739},"flags":15,"cn0":194,"P":1054081177,"D":{"f":0,"i":1160},"lock":15,"sid":{"sat":29,"code":1}},{"L":{"f":150,"i":86151759},"flags":15,"cn0":194,"P":1051956427,"D":{"f":249,"i":-135},"lock":15,"sid":{"sat":5,"code":1}},{"L":{"f":103,"i":112955223},"flags":15,"cn0":212,"P":1056901194,"D":{"f":85,"i":1180},"lock":15,"sid":{"sat":11,"code":3}},{"L":{"f":21,"i":123267024},"flags":15,"cn0":175,"P":1154197406,"D":{"f":69,"i":-4408},"lock":15,"sid":{"sat":9,"code":3}}],"payload":"+L4uEAAAAAAyCEAIlbM+awiXBkBU/xvWDw8FAOjhG0XsbUMH7IEIX7QPDxUAk8/sRXVjWQdJU/ZrwA8PAgDhqAFJ50usB8l9/o+mDw8fABt1Iz25+mwGJaP7AdsPDxkAGUOuQAdJzAafb/Qzzw8PDADfANQ+uHCaBlnPBSXVDw8dAEF1Iz1szQEFPpr8OcwPDxkBz0KuQCIRTAVD+/bfuw8PDAGwqAFJ5Z76BZfT/jKWDw8fAZkA1D7rOSUFO4gEAMIPDx0By5SzPk+SIgWWef/5wg8PBQFKCP8+V4+7BmecBFXUDw8LA56ny0TQ51gHFcjuRa8PDwkD","header":{"n_obs":64,"t":{"ns_residual":0,"wn":2098,"tow":271499000}},"crc":30823} -{"length":249,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":72,"i":109752197},"flags":15,"cn0":172,"P":1026210380,"D":{"f":0,"i":-1208},"lock":15,"sid":{"sat":20,"code":3}},{"L":{"f":66,"i":114893864},"flags":15,"cn0":208,"P":1074663371,"D":{"f":97,"i":2209},"lock":15,"sid":{"sat":5,"code":3}},{"L":{"f":242,"i":111557316},"flags":15,"cn0":205,"P":1046393064,"D":{"f":230,"i":-3035},"lock":15,"sid":{"sat":10,"code":3}},{"L":{"f":250,"i":120418606},"flags":15,"cn0":182,"P":1124366016,"D":{"f":159,"i":-1303},"lock":15,"sid":{"sat":4,"code":3}},{"L":{"f":186,"i":113444623},"flags":15,"cn0":203,"P":1059991555,"D":{"f":99,"i":1625},"lock":15,"sid":{"sat":21,"code":3}},{"L":{"f":186,"i":95874361},"flags":15,"cn0":171,"P":1154197492,"D":{"f":23,"i":-3427},"lock":15,"sid":{"sat":9,"code":4}},{"L":{"f":214,"i":85362855},"flags":15,"cn0":204,"P":1026210732,"D":{"f":131,"i":-940},"lock":15,"sid":{"sat":20,"code":4}},{"L":{"f":250,"i":87854072},"flags":15,"cn0":200,"P":1056901473,"D":{"f":217,"i":917},"lock":15,"sid":{"sat":11,"code":4}},{"L":{"f":54,"i":89361898},"flags":15,"cn0":194,"P":1074663549,"D":{"f":61,"i":1717},"lock":15,"sid":{"sat":5,"code":4}},{"L":{"f":195,"i":93658906},"flags":15,"cn0":176,"P":1124366166,"D":{"f":202,"i":-1016},"lock":15,"sid":{"sat":4,"code":4}},{"L":{"f":12,"i":121557083},"flags":15,"cn0":199,"P":1167187683,"D":{"f":5,"i":-1498},"lock":15,"sid":{"sat":35,"code":12}},{"L":{"f":62,"i":129166017},"flags":15,"cn0":168,"P":1240248812,"D":{"f":148,"i":-3008},"lock":15,"sid":{"sat":26,"code":12}},{"L":{"f":101,"i":132980346},"flags":15,"cn0":160,"P":1276873672,"D":{"f":108,"i":2248},"lock":15,"sid":{"sat":34,"code":12}},{"L":{"f":142,"i":125131510},"flags":15,"cn0":188,"P":1201509573,"D":{"f":111,"i":-1296},"lock":15,"sid":{"sat":24,"code":12}}],"payload":"+L4uEAAAAAAyCEFMuio9ha+KBkhI+wCsDw8UA8sPDkAoJNkGQqEIYdAPDwUD6LBePsQ6pgbyJfTmzQ8PCgPAdgRDLnEtB/rp+p+2Dw8EAwMwLj8PB8MGulkGY8sPDxUD9KfLRDnttgW6nfIXqw8PCQSsuyo9p4gWBdZU/IPMDw8UBGEJ/z74izwF+pUD2cgPDwsEfRAOQOqNUwU2tQY9wg8PBQRWdwRDGh+VBcMI/MqwDw8EBOPekUVb0D4HDCb6BccPDyMM7LHsScHqsgc+QPSUqA8PGgzIixtMeh7tB2XICGygDw8iDMWUnUf2WnUHjvD6b7wPDxgM","header":{"n_obs":65,"t":{"ns_residual":0,"wn":2098,"tow":271499000}},"crc":21159} -{"length":249,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":129,"i":134692460},"flags":15,"cn0":155,"P":1293313536,"D":{"f":225,"i":1332},"lock":15,"sid":{"sat":25,"code":12}},{"L":{"f":22,"i":121124582},"flags":15,"cn0":184,"P":1163035087,"D":{"f":206,"i":1611},"lock":15,"sid":{"sat":12,"code":12}},{"L":{"f":110,"i":124510617},"flags":15,"cn0":184,"P":1195547717,"D":{"f":242,"i":-283},"lock":15,"sid":{"sat":19,"code":12}},{"L":{"f":22,"i":124740883},"flags":15,"cn0":190,"P":1197758737,"D":{"f":235,"i":2391},"lock":15,"sid":{"sat":22,"code":12}},{"L":{"f":179,"i":93661218},"flags":15,"cn0":208,"P":1163035020,"D":{"f":232,"i":1247},"lock":15,"sid":{"sat":12,"code":13}},{"L":{"f":82,"i":116410513},"flags":15,"cn0":195,"P":1107609186,"D":{"f":36,"i":-1026},"lock":15,"sid":{"sat":12,"code":14}},{"L":{"f":45,"i":132491419},"flags":15,"cn0":192,"P":1260613864,"D":{"f":103,"i":1094},"lock":15,"sid":{"sat":25,"code":14}},{"L":{"f":130,"i":125438480},"flags":15,"cn0":188,"P":1193507386,"D":{"f":23,"i":1049},"lock":15,"sid":{"sat":11,"code":14}},{"L":{"f":107,"i":118387568},"flags":15,"cn0":204,"P":1126420146,"D":{"f":241,"i":-1740},"lock":15,"sid":{"sat":24,"code":14}},{"L":{"f":164,"i":143273419},"flags":15,"cn0":161,"P":1363201284,"D":{"f":74,"i":-3172},"lock":15,"sid":{"sat":31,"code":14}},{"L":{"f":236,"i":144491794},"flags":15,"cn0":154,"P":1374793743,"D":{"f":57,"i":-2141},"lock":15,"sid":{"sat":33,"code":14}},{"L":{"f":129,"i":101519397},"flags":15,"cn0":200,"P":1260613828,"D":{"f":102,"i":838},"lock":15,"sid":{"sat":25,"code":20}},{"L":{"f":252,"i":90712615},"flags":15,"cn0":215,"P":1126420675,"D":{"f":245,"i":-1334},"lock":15,"sid":{"sat":24,"code":20}},{"L":{"f":41,"i":96115177},"flags":15,"cn0":194,"P":1193507219,"D":{"f":188,"i":804},"lock":15,"sid":{"sat":11,"code":20}}],"payload":"+L4uEAAAAAAyCEIAZhZNbD4HCIE0BeGbDw8ZDM+BUkXmNjgHFksGzrgPDwwMRZxCR5nhawdu5f7yuA8PEwwRWWRHE2VvBxZXCeu+Dw8WDIyBUkUiKJUFs98E6NAPDwwNYsYEQpFI8AZS/vskww8PDA7ocCNLm6jlBy1GBGfADw8ZDjp6I0cQCnoHghkEF7wPDwsOss4jQ3BzDgdrNPnxzA8PGA4EzUBRyy2KCKSc80qhDw8fDg+w8VESxZwI7KP3OZoPDyEOxHAjSyUQDQaBRgNmyA8PGRTD0CNDJypoBfzK+vXXDw8YFJN5I0fpmboFKSQDvMIPDwsU","header":{"n_obs":66,"t":{"ns_residual":0,"wn":2098,"tow":271499000}},"crc":7285} -{"length":62,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":118,"i":109780973},"flags":15,"cn0":172,"P":1363201303,"D":{"f":169,"i":-2430},"lock":15,"sid":{"sat":31,"code":20}},{"L":{"f":167,"i":89197696},"flags":15,"cn0":206,"P":1107609027,"D":{"f":1,"i":-786},"lock":15,"sid":{"sat":12,"code":20}},{"L":{"f":181,"i":110714562},"flags":15,"cn0":170,"P":1374793677,"D":{"f":192,"i":-1643},"lock":15,"sid":{"sat":33,"code":20}}],"payload":"+L4uEAAAAAAyCEMXzUBR7R+LBnaC9qmsDw8fFMPFBEKADFEFp+78Ac4PDwwUza/xUcJemQa1lfnAqg8PIRQ=","header":{"n_obs":67,"t":{"ns_residual":0,"wn":2098,"tow":271499000}},"crc":52233} -{"length":9,"l2ca_bias":0,"preamble":85,"l2p_bias":0,"sender":22963,"msg_type":117,"payload":"/wAAAAAAAAAA","l1ca_bias":0,"mask":255,"crc":49809,"l1p_bias":0} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"Mgj4vi4QAAAAAAE=","wn":2098,"tow":271499000,"crc":10404} -{"length":16,"flags":17,"ns":999999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"Efi+LhDkBwMZAxgo/smaOw==","day":25,"tow":271499000,"year":2020,"crc":56769,"minutes":24,"month":3,"seconds":40} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.253070817630952,"preamble":85,"sender":22963,"msg_type":522,"payload":"+L4uEI3ot+hl6kJAnoptIVaSXsADTMU/yUAxwAECWwQPBg==","lat":37.831235017584824,"tow":271499000,"h_accuracy":513,"crc":45144,"lon":-122.28650699326906} -{"v_accuracy":713,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"+L4uEP////8AAAAA9f////AAyQIPAg==","n":-1,"d":-11,"tow":271499000,"h_accuracy":240,"crc":21183,"e":0} -{"length":15,"gdop":155,"flags":6,"tdop":77,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"+L4uEJsAhwBNAEgAcgAG","tow":271499000,"crc":31602,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"+L4uEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271499000,"h_accuracy":0,"crc":40039,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"+L4uEP//","tow":271499000,"crc":26651} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":4,"flags":2147616000,"preamble":85,"sender":22963,"msg_type":65535,"payload":"AAUCgA==","crc":40942} -{"length":24,"z":3890655.0240602265,"preamble":85,"sender":22963,"msg_type":72,"payload":"UO0a3iqORMHK1UJhIkRQwc9nFIPvrk1B","crc":2168,"x":-2694229.735196747,"y":-4264073.519704292} -{"length":30,"preamble":85,"sender":22963,"msg_type":167,"setting":"solution\u0000elevation_mask\u000010\u0000\u0000","payload":"eABzb2x1dGlvbgBlbGV2YXRpb25fbWFzawAxMAAA","crc":29294,"index":120} -{"length":47,"preamble":85,"sender":22963,"msg_type":167,"setting":"solution\u0000dgnss_filter\u0000Fixed\u0000enum:Float,Fixed\u0000","payload":"eQBzb2x1dGlvbgBkZ25zc19maWx0ZXIARml4ZWQAZW51bTpGbG9hdCxGaXhlZAA=","crc":53496,"index":121} -{"length":103,"preamble":85,"sender":22963,"msg_type":167,"setting":"solution\u0000dynamic_motion_model\u0000High Dynamics\u0000enum:High Dynamics,High Horizontal Dynamics,Low Dynamics\u0000","payload":"egBzb2x1dGlvbgBkeW5hbWljX21vdGlvbl9tb2RlbABIaWdoIER5bmFtaWNzAGVudW06SGlnaCBEeW5hbWljcyxIaWdoIEhvcml6b250YWwgRHluYW1pY3MsTG93IER5bmFtaWNzAA==","crc":44919,"index":122} -{"length":34,"preamble":85,"sender":22963,"msg_type":167,"setting":"solution\u0000correction_age_max\u000030\u0000\u0000","payload":"ewBzb2x1dGlvbgBjb3JyZWN0aW9uX2FnZV9tYXgAMzAAAA==","crc":59283,"index":123} -{"length":47,"preamble":85,"sender":22963,"msg_type":167,"setting":"solution\u0000enable_glonass\u0000True\u0000enum:False,True\u0000","payload":"fABzb2x1dGlvbgBlbmFibGVfZ2xvbmFzcwBUcnVlAGVudW06RmFsc2UsVHJ1ZQA=","crc":31326,"index":124} -{"length":47,"preamble":85,"sender":22963,"msg_type":167,"setting":"solution\u0000enable_galileo\u0000True\u0000enum:False,True\u0000","payload":"fQBzb2x1dGlvbgBlbmFibGVfZ2FsaWxlbwBUcnVlAGVudW06RmFsc2UsVHJ1ZQA=","crc":28585,"index":125} -{"length":46,"preamble":85,"sender":22963,"msg_type":167,"setting":"solution\u0000enable_beidou\u0000True\u0000enum:False,True\u0000","payload":"fgBzb2x1dGlvbgBlbmFibGVfYmVpZG91AFRydWUAZW51bTpGYWxzZSxUcnVlAA==","crc":17677,"index":126} -{"length":56,"preamble":85,"sender":22963,"msg_type":167,"setting":"solution\u0000glonass_measurement_std_downweight_factor\u00004\u0000\u0000","payload":"fwBzb2x1dGlvbgBnbG9uYXNzX21lYXN1cmVtZW50X3N0ZF9kb3dud2VpZ2h0X2ZhY3RvcgA0AAA=","crc":33653,"index":127} -{"length":82,"preamble":85,"sender":22963,"msg_type":167,"setting":"solution\u0000dgnss_solution_mode\u0000Low Latency\u0000enum:Low Latency,Time Matched,No DGNSS\u0000","payload":"gABzb2x1dGlvbgBkZ25zc19zb2x1dGlvbl9tb2RlAExvdyBMYXRlbmN5AGVudW06TG93IExhdGVuY3ksVGltZSBNYXRjaGVkLE5vIERHTlNTAA==","crc":11531,"index":128} -{"length":29,"preamble":85,"sender":22963,"msg_type":167,"setting":"solution\u0000heading_offset\u00000\u0000\u0000","payload":"gQBzb2x1dGlvbgBoZWFkaW5nX29mZnNldAAwAAA=","crc":32816,"index":129} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"Mghcvy4QAAAAAAE=","wn":2098,"tow":271499100,"crc":60374} -{"length":16,"flags":17,"ns":99999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EVy/LhDkBwMZAxgp/uD1BQ==","day":25,"tow":271499100,"year":2020,"crc":35483,"minutes":24,"month":3,"seconds":41} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.255288703823705,"preamble":85,"sender":22963,"msg_type":522,"payload":"XL8uEJU4Xuhl6kJAE7+KIVaSXsAH9rmZWkExwAECWwQPBg==","lat":37.831234975820884,"tow":271499100,"h_accuracy":513,"crc":5240,"lon":-122.28650702046825} -{"v_accuracy":713,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"XL8uEPr///8HAAAACgAAAPAAyQIPAg==","n":-6,"d":10,"tow":271499100,"h_accuracy":240,"crc":20647,"e":7} -{"length":15,"gdop":155,"flags":6,"tdop":77,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"XL8uEJsAhwBNAEgAcgAG","tow":271499100,"crc":21159,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"XL8uEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271499100,"h_accuracy":0,"crc":16104,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"XL8uEP//","tow":271499100,"crc":9667} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":46,"preamble":85,"sender":22963,"msg_type":167,"setting":"solution\u0000send_heading\u0000False\u0000enum:False,True\u0000","payload":"ggBzb2x1dGlvbgBzZW5kX2hlYWRpbmcARmFsc2UAZW51bTpGYWxzZSxUcnVlAA==","crc":10082,"index":130} -{"length":62,"preamble":85,"sender":22963,"msg_type":167,"setting":"ext_event_a\u0000edge_trigger\u0000None\u0000enum:None,Rising,Falling,Both\u0000","payload":"hgBleHRfZXZlbnRfYQBlZGdlX3RyaWdnZXIATm9uZQBlbnVtOk5vbmUsUmlzaW5nLEZhbGxpbmcsQm90aAA=","crc":42760,"index":134} -{"length":25,"preamble":85,"sender":22963,"msg_type":167,"setting":"solution\u0000soln_freq\u000010\u0000\u0000","payload":"hABzb2x1dGlvbgBzb2xuX2ZyZXEAMTAAAA==","crc":30733,"index":132} -{"length":34,"preamble":85,"sender":22963,"msg_type":167,"setting":"solution\u0000output_every_n_obs\u000010\u0000\u0000","payload":"hQBzb2x1dGlvbgBvdXRwdXRfZXZlcnlfbl9vYnMAMTAAAA==","crc":9085,"index":133} -{"length":46,"preamble":85,"sender":22963,"msg_type":167,"setting":"solution\u0000disable_raim\u0000False\u0000enum:False,True\u0000","payload":"gwBzb2x1dGlvbgBkaXNhYmxlX3JhaW0ARmFsc2UAZW51bTpGYWxzZSxUcnVlAA==","crc":64354,"index":131} -{"length":29,"preamble":85,"sender":22963,"msg_type":167,"setting":"ext_event_a\u0000sensitivity\u00000\u0000\u0000","payload":"hwBleHRfZXZlbnRfYQBzZW5zaXRpdml0eQAwAAA=","crc":16652,"index":135} -{"length":62,"preamble":85,"sender":22963,"msg_type":167,"setting":"ext_event_b\u0000edge_trigger\u0000None\u0000enum:None,Rising,Falling,Both\u0000","payload":"iABleHRfZXZlbnRfYgBlZGdlX3RyaWdnZXIATm9uZQBlbnVtOk5vbmUsUmlzaW5nLEZhbGxpbmcsQm90aAA=","crc":30712,"index":136} -{"length":29,"preamble":85,"sender":22963,"msg_type":167,"setting":"ext_event_b\u0000sensitivity\u00000\u0000\u0000","payload":"iQBleHRfZXZlbnRfYgBzZW5zaXRpdml0eQAwAAA=","crc":34283,"index":137} -{"length":62,"preamble":85,"sender":22963,"msg_type":167,"setting":"ext_event_c\u0000edge_trigger\u0000None\u0000enum:None,Rising,Falling,Both\u0000","payload":"igBleHRfZXZlbnRfYwBlZGdlX3RyaWdnZXIATm9uZQBlbnVtOk5vbmUsUmlzaW5nLEZhbGxpbmcsQm90aAA=","crc":37430,"index":138} -{"length":29,"preamble":85,"sender":22963,"msg_type":167,"setting":"ext_event_c\u0000sensitivity\u00000\u0000\u0000","payload":"iwBleHRfZXZlbnRfYwBzZW5zaXRpdml0eQAwAAA=","crc":25828,"index":139} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgjAvy4QAAAAAAE=","wn":2098,"tow":271499200,"crc":45706} -{"length":16,"flags":17,"ns":199999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EcC/LhDkBwMZAxgp/sHrCw==","day":25,"tow":271499200,"year":2020,"crc":23728,"minutes":24,"month":3,"seconds":41} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.259742330488546,"preamble":85,"sender":22963,"msg_type":522,"payload":"wL8uEJG9++dl6kJAzpCcIVaSXsDL1S55fkIxwAECWwQPBg==","lat":37.831234929962314,"tow":271499200,"h_accuracy":513,"crc":58296,"lon":-122.28650703706373} -{"v_accuracy":713,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"wL8uEPf///8DAAAAIQAAAPAAyQIPAg==","n":-9,"d":33,"tow":271499200,"h_accuracy":240,"crc":24643,"e":3} -{"length":15,"gdop":155,"flags":6,"tdop":77,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"wL8uEJsAhwBNAEgAcgAG","tow":271499200,"crc":62664,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"wL8uEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271499200,"h_accuracy":0,"crc":49369,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"wL8uEP//","tow":271499200,"crc":57476} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":53,"preamble":85,"sender":22963,"msg_type":167,"setting":"acquisition\u0000almanacs_enabled\u0000False\u0000enum:False,True\u0000","payload":"jABhY3F1aXNpdGlvbgBhbG1hbmFjc19lbmFibGVkAEZhbHNlAGVudW06RmFsc2UsVHJ1ZQA=","crc":58539,"index":140} -{"length":63,"preamble":85,"sender":22963,"msg_type":167,"setting":"acquisition\u0000glonass_acquisition_enabled\u0000True\u0000enum:False,True\u0000","payload":"jQBhY3F1aXNpdGlvbgBnbG9uYXNzX2FjcXVpc2l0aW9uX2VuYWJsZWQAVHJ1ZQBlbnVtOkZhbHNlLFRydWUA","crc":42631,"index":141} -{"length":60,"preamble":85,"sender":22963,"msg_type":167,"setting":"acquisition\u0000sbas_acquisition_enabled\u0000True\u0000enum:False,True\u0000","payload":"jgBhY3F1aXNpdGlvbgBzYmFzX2FjcXVpc2l0aW9uX2VuYWJsZWQAVHJ1ZQBlbnVtOkZhbHNlLFRydWUA","crc":52652,"index":142} -{"length":60,"preamble":85,"sender":22963,"msg_type":167,"setting":"acquisition\u0000bds2_acquisition_enabled\u0000True\u0000enum:False,True\u0000","payload":"jwBhY3F1aXNpdGlvbgBiZHMyX2FjcXVpc2l0aW9uX2VuYWJsZWQAVHJ1ZQBlbnVtOkZhbHNlLFRydWUA","crc":58021,"index":143} -{"length":61,"preamble":85,"sender":22963,"msg_type":167,"setting":"acquisition\u0000qzss_acquisition_enabled\u0000False\u0000enum:False,True\u0000","payload":"kABhY3F1aXNpdGlvbgBxenNzX2FjcXVpc2l0aW9uX2VuYWJsZWQARmFsc2UAZW51bTpGYWxzZSxUcnVlAA==","crc":42916,"index":144} -{"length":63,"preamble":85,"sender":22963,"msg_type":167,"setting":"acquisition\u0000galileo_acquisition_enabled\u0000True\u0000enum:False,True\u0000","payload":"kQBhY3F1aXNpdGlvbgBnYWxpbGVvX2FjcXVpc2l0aW9uX2VuYWJsZWQAVHJ1ZQBlbnVtOkZhbHNlLFRydWUA","crc":65111,"index":145} -{"length":53,"preamble":85,"sender":22963,"msg_type":167,"setting":"system_monitor\u0000heartbeat_period_milliseconds\u00001000\u0000\u0000","payload":"kgBzeXN0ZW1fbW9uaXRvcgBoZWFydGJlYXRfcGVyaW9kX21pbGxpc2Vjb25kcwAxMDAwAAA=","crc":46231,"index":146} -{"length":47,"preamble":85,"sender":22963,"msg_type":167,"setting":"system_monitor\u0000watchdog\u0000True\u0000enum:False,True\u0000","payload":"kwBzeXN0ZW1fbW9uaXRvcgB3YXRjaGRvZwBUcnVlAGVudW06RmFsc2UsVHJ1ZQA=","crc":53002,"index":147} -{"length":57,"preamble":85,"sender":22963,"msg_type":167,"setting":"system_monitor\u0000spectrum_analyzer\u0000False\u0000enum:False,True\u0000","payload":"lABzeXN0ZW1fbW9uaXRvcgBzcGVjdHJ1bV9hbmFseXplcgBGYWxzZQBlbnVtOkZhbHNlLFRydWUA","crc":18500,"index":148} -{"length":51,"preamble":85,"sender":22963,"msg_type":167,"setting":"surveyed_position\u0000broadcast\u0000True\u0000enum:False,True\u0000","payload":"lQBzdXJ2ZXllZF9wb3NpdGlvbgBicm9hZGNhc3QAVHJ1ZQBlbnVtOkZhbHNlLFRydWUA","crc":54284,"index":149} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MggkwC4QAAAAAAE=","wn":2098,"tow":271499300,"crc":60} -{"length":16,"flags":17,"ns":299999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"ESTALhDkBwMZAxgp/qLhEQ==","day":25,"tow":271499300,"year":2020,"crc":20844,"minutes":24,"month":3,"seconds":41} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.257297122529994,"preamble":85,"sender":22963,"msg_type":522,"payload":"JMAuEF6/uudl6kJApXG6IVaSXsAJn2Y53kExwAECWwQPBg==","lat":37.831234899697606,"tow":271499300,"h_accuracy":513,"crc":40450,"lon":-122.28650706489005} -{"v_accuracy":713,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"JMAuEAYAAAD4////6v////AAyQIPAg==","n":6,"d":-22,"tow":271499300,"h_accuracy":240,"crc":16931,"e":-8} -{"length":15,"gdop":155,"flags":6,"tdop":77,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"JMAuEJsAhwBNAEgAcgAG","tow":271499300,"crc":26527,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"JMAuEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271499300,"h_accuracy":0,"crc":15372,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"JMAuEP//","tow":271499300,"crc":5474} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":48,"preamble":85,"sender":22963,"msg_type":167,"setting":"surveyed_position\u0000surveyed_lat\u000037.8312315306\u0000\u0000","payload":"lgBzdXJ2ZXllZF9wb3NpdGlvbgBzdXJ2ZXllZF9sYXQAMzcuODMxMjMxNTMwNgAA","crc":20665,"index":150} -{"length":49,"preamble":85,"sender":22963,"msg_type":167,"setting":"surveyed_position\u0000surveyed_lon\u0000-122.286503511\u0000\u0000","payload":"lwBzdXJ2ZXllZF9wb3NpdGlvbgBzdXJ2ZXllZF9sb24ALTEyMi4yODY1MDM1MTEAAA==","crc":61819,"index":151} -{"length":237,"states":[{"cn0":214,"mesid":{"sat":5,"code":0}},{"cn0":180,"mesid":{"sat":21,"code":0}},{"cn0":191,"mesid":{"sat":2,"code":0}},{"cn0":166,"mesid":{"sat":31,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":219,"mesid":{"sat":25,"code":0}},{"cn0":207,"mesid":{"sat":12,"code":0}},{"cn0":213,"mesid":{"sat":29,"code":0}},{"cn0":208,"mesid":{"sat":18,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":206,"mesid":{"sat":131,"code":2}},{"cn0":204,"mesid":{"sat":25,"code":1}},{"cn0":187,"mesid":{"sat":12,"code":1}},{"cn0":149,"mesid":{"sat":31,"code":1}},{"cn0":194,"mesid":{"sat":18,"code":1}},{"cn0":194,"mesid":{"sat":29,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":193,"mesid":{"sat":5,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":213,"mesid":{"sat":100,"code":3}},{"cn0":174,"mesid":{"sat":98,"code":3}},{"cn0":173,"mesid":{"sat":102,"code":3}},{"cn0":208,"mesid":{"sat":101,"code":3}},{"cn0":206,"mesid":{"sat":93,"code":3}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":183,"mesid":{"sat":106,"code":3}},{"cn0":203,"mesid":{"sat":104,"code":3}},{"cn0":171,"mesid":{"sat":98,"code":4}},{"cn0":204,"mesid":{"sat":102,"code":4}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":200,"mesid":{"sat":100,"code":4}},{"cn0":194,"mesid":{"sat":101,"code":4}},{"cn0":186,"mesid":{"sat":104,"code":4}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":176,"mesid":{"sat":106,"code":4}},{"cn0":199,"mesid":{"sat":35,"code":12}},{"cn0":168,"mesid":{"sat":26,"code":12}},{"cn0":161,"mesid":{"sat":34,"code":12}},{"cn0":188,"mesid":{"sat":24,"code":12}},{"cn0":155,"mesid":{"sat":25,"code":12}},{"cn0":184,"mesid":{"sat":12,"code":12}},{"cn0":184,"mesid":{"sat":19,"code":12}},{"cn0":190,"mesid":{"sat":22,"code":12}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":208,"mesid":{"sat":12,"code":13}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":196,"mesid":{"sat":12,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":192,"mesid":{"sat":25,"code":14}},{"cn0":189,"mesid":{"sat":11,"code":14}},{"cn0":205,"mesid":{"sat":24,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":161,"mesid":{"sat":31,"code":14}},{"cn0":154,"mesid":{"sat":33,"code":14}},{"cn0":200,"mesid":{"sat":25,"code":20}},{"cn0":215,"mesid":{"sat":24,"code":20}},{"cn0":194,"mesid":{"sat":11,"code":20}},{"cn0":172,"mesid":{"sat":31,"code":20}},{"cn0":206,"mesid":{"sat":12,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":170,"mesid":{"sat":33,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}}],"preamble":85,"sender":22963,"msg_type":97,"payload":"BQDWFQC0AgC/HwCmAAAAAAAAGQDbDADPHQDVEgDQAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwLOGQHMDAG7HwGVEgHCHQHCAAAABQHBAAAAAAAAAAAAAAAAZAPVYgOuZgOtZQPQXQPOAAAAagO3aAPLYgSrZgTMAAAAZATIZQTCaAS6AAAAagSwIwzHGgyoIgyhGAy8GQybDAy4Ewy4Fgy+AAAADA3QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADA7EAAAAGQ7ACw69GA7NAAAAHw6hIQ6aGRTIGBTXCxTCHxSsDBTOAAAAIRSqAAAA","crc":28041} -{"length":42,"preamble":85,"sender":22963,"msg_type":167,"setting":"surveyed_position\u0000surveyed_alt\u0000-17.314\u0000\u0000","payload":"mABzdXJ2ZXllZF9wb3NpdGlvbgBzdXJ2ZXllZF9hbHQALTE3LjMxNAAA","crc":37488,"index":152} -{"length":28,"preamble":85,"sender":22963,"msg_type":167,"setting":"sbp\u0000obs_msg_max_size\u0000255\u0000\u0000","payload":"mQBzYnAAb2JzX21zZ19tYXhfc2l6ZQAyNTUAAA==","crc":39888,"index":153} -{"length":42,"preamble":85,"sender":22963,"msg_type":167,"setting":"simulator\u0000enabled\u0000False\u0000enum:False,True\u0000","payload":"mgBzaW11bGF0b3IAZW5hYmxlZABGYWxzZQBlbnVtOkZhbHNlLFRydWUA","crc":64630,"index":154} -{"length":38,"preamble":85,"sender":22963,"msg_type":167,"setting":"simulator\u0000base_ecef_x\u0000-2706098.845\u0000\u0000","payload":"mwBzaW11bGF0b3IAYmFzZV9lY2VmX3gALTI3MDYwOTguODQ1AAA=","crc":26800,"index":155} -{"length":38,"preamble":85,"sender":22963,"msg_type":167,"setting":"simulator\u0000base_ecef_y\u0000-4261216.475\u0000\u0000","payload":"nABzaW11bGF0b3IAYmFzZV9lY2VmX3kALTQyNjEyMTYuNDc1AAA=","crc":51473,"index":156} -{"length":37,"preamble":85,"sender":22963,"msg_type":167,"setting":"simulator\u0000base_ecef_z\u00003885597.912\u0000\u0000","payload":"nQBzaW11bGF0b3IAYmFzZV9lY2VmX3oAMzg4NTU5Ny45MTIAAA==","crc":7630,"index":157} -{"length":21,"preamble":85,"sender":22963,"msg_type":167,"setting":"simulator\u0000speed\u00004\u0000\u0000","payload":"ngBzaW11bGF0b3IAc3BlZWQANAAA","crc":38856,"index":158} -{"length":24,"preamble":85,"sender":22963,"msg_type":167,"setting":"simulator\u0000radius\u0000100\u0000\u0000","payload":"nwBzaW11bGF0b3IAcmFkaXVzADEwMAAA","crc":4094,"index":159} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgiIwC4QAAAAAAE=","wn":2098,"tow":271499400,"crc":44386} -{"length":16,"flags":17,"ns":399999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EYjALhDkBwMZAxgp/oPXFw==","day":25,"tow":271499400,"year":2020,"crc":23198,"minutes":24,"month":3,"seconds":41} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.258869400416703,"preamble":85,"sender":22963,"msg_type":522,"payload":"iMAuEDs6dOdl6kJAULvEIVaSXsCRudhDRUIxwAECWwQPBg==","lat":37.83123486685914,"tow":271499400,"h_accuracy":513,"crc":43261,"lon":-122.28650707447127} -{"v_accuracy":713,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"iMAuEAQAAAALAAAACAAAAPAAyQIPAg==","n":4,"d":8,"tow":271499400,"h_accuracy":240,"crc":27725,"e":11} -{"length":15,"gdop":155,"flags":6,"tdop":77,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"iMAuEJsAhwBNAEgAcgAG","tow":271499400,"crc":4718,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"iMAuEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271499400,"h_accuracy":0,"crc":5590,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"iMAuEP//","tow":271499400,"crc":65449} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":27,"preamble":85,"sender":22963,"msg_type":167,"setting":"simulator\u0000pos_sigma\u00001.5\u0000\u0000","payload":"oABzaW11bGF0b3IAcG9zX3NpZ21hADEuNQAA","crc":23391,"index":160} -{"length":39,"preamble":85,"sender":22963,"msg_type":167,"setting":"simulator\u0000speed_sigma\u00000.15000000596\u0000\u0000","payload":"oQBzaW11bGF0b3IAc3BlZWRfc2lnbWEAMC4xNTAwMDAwMDU5NgAA","crc":16492,"index":161} -{"length":38,"preamble":85,"sender":22963,"msg_type":167,"setting":"simulator\u0000cn0_sigma\u00000.300000011921\u0000\u0000","payload":"ogBzaW11bGF0b3IAY24wX3NpZ21hADAuMzAwMDAwMDExOTIxAAA=","crc":22476,"index":162} -{"length":33,"preamble":85,"sender":22963,"msg_type":167,"setting":"simulator\u0000pseudorange_sigma\u00004\u0000\u0000","payload":"owBzaW11bGF0b3IAcHNldWRvcmFuZ2Vfc2lnbWEANAAA","crc":37629,"index":163} -{"length":41,"preamble":85,"sender":22963,"msg_type":167,"setting":"simulator\u0000phase_sigma\u00000.0299999993294\u0000\u0000","payload":"pABzaW11bGF0b3IAcGhhc2Vfc2lnbWEAMC4wMjk5OTk5OTkzMjk0AAA=","crc":7807,"index":164} -{"length":24,"preamble":85,"sender":22963,"msg_type":167,"setting":"simulator\u0000num_sats\u00009\u0000\u0000","payload":"pQBzaW11bGF0b3IAbnVtX3NhdHMAOQAA","crc":54299,"index":165} -{"length":26,"preamble":85,"sender":22963,"msg_type":167,"setting":"simulator\u0000mode_mask\u000015\u0000\u0000","payload":"pgBzaW11bGF0b3IAbW9kZV9tYXNrADE1AAA=","crc":6546,"index":166} -{"length":69,"preamble":85,"sender":22963,"msg_type":167,"setting":"pps\u0000propagation_mode\u0000Time Limited\u0000enum:None,Time Limited,Unlimited\u0000","payload":"pwBwcHMAcHJvcGFnYXRpb25fbW9kZQBUaW1lIExpbWl0ZWQAZW51bTpOb25lLFRpbWUgTGltaXRlZCxVbmxpbWl0ZWQA","crc":41191,"index":167} -{"length":18,"preamble":85,"sender":22963,"msg_type":167,"setting":"pps\u0000width\u00002000\u0000\u0000","payload":"qABwcHMAd2lkdGgAMjAwMAAA","crc":54297,"index":168} -{"length":18,"preamble":85,"sender":22963,"msg_type":167,"setting":"pps\u0000polarity\u00001\u0000\u0000","payload":"qQBwcHMAcG9sYXJpdHkAMQAA","crc":49868,"index":169} -{"length":9,"l2ca_bias":0,"preamble":85,"l2p_bias":0,"sender":22963,"msg_type":117,"payload":"/wAAAAAAAAAA","l1ca_bias":0,"mask":255,"crc":49809,"l1p_bias":0} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgjswC4QAAAAAAE=","wn":2098,"tow":271499500,"crc":51624} -{"length":16,"flags":17,"ns":499999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EezALhDkBwMZAxgp/mTNHQ==","day":25,"tow":271499500,"year":2020,"crc":7778,"minutes":24,"month":3,"seconds":41} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.26222971261453,"preamble":85,"sender":22963,"msg_type":522,"payload":"7MAuEBIVMedl6kJAbfjhIVaSXsAJuId8IUMxwAECWwQPBg==","lat":37.83123483559224,"tow":271499500,"h_accuracy":513,"crc":9613,"lon":-122.28650710170196} -{"v_accuracy":713,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"7MAuEPr////9////9/////AAyQIPAg==","n":-6,"d":-9,"tow":271499500,"h_accuracy":240,"crc":50933,"e":-3} -{"length":15,"gdop":155,"flags":6,"tdop":77,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"7MAuEJsAhwBNAEgAcgAG","tow":271499500,"crc":16065,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"7MAuEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271499500,"h_accuracy":0,"crc":3424,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"7MAuEP//","tow":271499500,"crc":42512} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":16,"preamble":85,"sender":22963,"msg_type":167,"setting":"pps\u0000offset\u00000\u0000\u0000","payload":"qgBwcHMAb2Zmc2V0ADAAAA==","crc":47180,"index":170} -{"length":19,"preamble":85,"sender":22963,"msg_type":167,"setting":"pps\u0000frequency\u00001\u0000\u0000","payload":"qwBwcHMAZnJlcXVlbmN5ADEAAA==","crc":7400,"index":171} -{"length":29,"preamble":85,"sender":22963,"msg_type":167,"setting":"pps\u0000propagation_timeout\u00005\u0000\u0000","payload":"rABwcHMAcHJvcGFnYXRpb25fdGltZW91dAA1AAA=","crc":60848,"index":172} -{"length":63,"preamble":85,"sender":22963,"msg_type":167,"setting":"ins\u0000output_mode\u0000Disabled\u0000enum:Disabled,Loosely Coupled,Debug\u0000","payload":"rQBpbnMAb3V0cHV0X21vZGUARGlzYWJsZWQAZW51bTpEaXNhYmxlZCxMb29zZWx5IENvdXBsZWQsRGVidWcA","crc":60589,"index":173} -{"length":0,"preamble":85,"sender":22963,"msg_type":166,"payload":"","crc":62569} -{"length":0,"preamble":85,"sender":22963,"msg_type":166,"payload":"","crc":62569} -{"length":0,"preamble":85,"sender":22963,"msg_type":166,"payload":"","crc":62569} -{"length":0,"preamble":85,"sender":22963,"msg_type":166,"payload":"","crc":62569} -{"length":0,"preamble":85,"sender":22963,"msg_type":166,"payload":"","crc":62569} -{"length":0,"preamble":85,"sender":22963,"msg_type":166,"payload":"","crc":62569} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MghQwS4QAAAAAAE=","wn":2098,"tow":271499600,"crc":28891} -{"length":16,"flags":17,"ns":599999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EVDBLhDkBwMZAxgp/kXDIw==","day":25,"tow":271499600,"year":2020,"crc":6940,"minutes":24,"month":3,"seconds":41} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.266803312213042,"preamble":85,"sender":22963,"msg_type":522,"payload":"UMEuEBZz++Zl6kJAoYkOIlaSXsBka8w4TUQxwAECWwQPBg==","lat":37.831234810617545,"tow":271499600,"h_accuracy":513,"crc":3943,"lon":-122.2865071432084} -{"v_accuracy":713,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"UMEuEAIAAAD1////CAAAAPAAyQIPAg==","n":2,"d":8,"tow":271499600,"h_accuracy":240,"crc":25479,"e":-11} -{"length":15,"gdop":155,"flags":6,"tdop":77,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"UMEuEJsAhwBNAEgAcgAG","tow":271499600,"crc":32475,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"UMEuEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271499600,"h_accuracy":0,"crc":19466,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"UMEuEP//","tow":271499600,"crc":64526} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"message_type":25,"length":34,"data":[140,148,0,128,79,245,0,32,0,31,224,3,2,106,144,255,207,207,254,63,255,255,248,15,248,192,144],"preamble":85,"sender":22963,"msg_type":30583,"payload":"gwLRwC4QGYyUAIBP9QAgAB/gAwJqkP/Pz/4////4D/jAkA==","tow":271499473,"crc":35483,"sid":{"sat":131,"code":2}} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"Mgi0wS4QAAAAAAE=","wn":2098,"tow":271499700,"crc":43939} -{"length":16,"flags":17,"ns":699999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EbTBLhDkBwMZAxgp/ia5KQ==","day":25,"tow":271499700,"year":2020,"crc":59202,"minutes":24,"month":3,"seconds":41} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.272936929789065,"preamble":85,"sender":22963,"msg_type":522,"payload":"tMEuEBLlr+Zl6kJAfDMmIlaSXsCPUNMx30UxwAECWwQPBg==","lat":37.83123477543462,"tow":271499700,"h_accuracy":513,"crc":35354,"lon":-122.28650716524675} -{"v_accuracy":713,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"tMEuEP////8DAAAA//////AAyQIPAg==","n":-1,"d":-1,"tow":271499700,"h_accuracy":240,"crc":14739,"e":3} -{"length":15,"gdop":155,"flags":6,"tdop":77,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"tMEuEJsAhwBNAEgAcgAG","tow":271499700,"crc":1638,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"tMEuEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271499700,"h_accuracy":0,"crc":60969,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"tMEuEP//","tow":271499700,"crc":29079} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":136,"preamble":85,"sender":22963,"msg_type":151,"payload":"AgAaHgUALDUMAFEtFQB9GRkAbUYaAKEBHQChNx8AlQ4EAxYWBQMyIQYDTggJA18OCgNxKQsDmCUMA6oDEwMiBxQDCzEVA5UlDAyUKRMMIyAUDA8CFgxDIxgMgiMZDJ0OGgxnFR0MLAAiDI4RIwwiLQsOizIMDg88GA5sNhkOlykfDlURIQ4fDw==","crc":41336,"azel":[{"el":30,"az":26,"sid":{"sat":2,"code":0}},{"el":53,"az":44,"sid":{"sat":5,"code":0}},{"el":45,"az":81,"sid":{"sat":12,"code":0}},{"el":25,"az":125,"sid":{"sat":21,"code":0}},{"el":70,"az":109,"sid":{"sat":25,"code":0}},{"el":1,"az":161,"sid":{"sat":26,"code":0}},{"el":55,"az":161,"sid":{"sat":29,"code":0}},{"el":14,"az":149,"sid":{"sat":31,"code":0}},{"el":22,"az":22,"sid":{"sat":4,"code":3}},{"el":33,"az":50,"sid":{"sat":5,"code":3}},{"el":8,"az":78,"sid":{"sat":6,"code":3}},{"el":14,"az":95,"sid":{"sat":9,"code":3}},{"el":41,"az":113,"sid":{"sat":10,"code":3}},{"el":37,"az":152,"sid":{"sat":11,"code":3}},{"el":3,"az":170,"sid":{"sat":12,"code":3}},{"el":7,"az":34,"sid":{"sat":19,"code":3}},{"el":49,"az":11,"sid":{"sat":20,"code":3}},{"el":37,"az":149,"sid":{"sat":21,"code":3}},{"el":41,"az":148,"sid":{"sat":12,"code":12}},{"el":32,"az":35,"sid":{"sat":19,"code":12}},{"el":2,"az":15,"sid":{"sat":20,"code":12}},{"el":35,"az":67,"sid":{"sat":22,"code":12}},{"el":35,"az":130,"sid":{"sat":24,"code":12}},{"el":14,"az":157,"sid":{"sat":25,"code":12}},{"el":21,"az":103,"sid":{"sat":26,"code":12}},{"el":0,"az":44,"sid":{"sat":29,"code":12}},{"el":17,"az":142,"sid":{"sat":34,"code":12}},{"el":45,"az":34,"sid":{"sat":35,"code":12}},{"el":50,"az":139,"sid":{"sat":11,"code":14}},{"el":60,"az":15,"sid":{"sat":12,"code":14}},{"el":54,"az":108,"sid":{"sat":24,"code":14}},{"el":41,"az":151,"sid":{"sat":25,"code":14}},{"el":17,"az":85,"sid":{"sat":31,"code":14}},{"el":15,"az":31,"sid":{"sat":33,"code":14}}]} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MggYwi4QAAAAAAE=","wn":2098,"tow":271499800,"crc":52872} -{"length":16,"flags":17,"ns":799999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"ERjCLhDkBwMZAxgp/gevLw==","day":25,"tow":271499800,"year":2020,"crc":26613,"minutes":24,"month":3,"seconds":41} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.281675176224887,"preamble":85,"sender":22963,"msg_type":522,"payload":"GMIuENBLU+Zl6kJAfEdAIlaSXsAe+0XdG0gxwAECWwQPBg==","lat":37.83123473231501,"tow":271499800,"h_accuracy":513,"crc":58663,"lon":-122.28650718953389} -{"v_accuracy":713,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"GMIuEPX///8AAAAAFQAAAPAAyQIPAg==","n":-11,"d":21,"tow":271499800,"h_accuracy":240,"crc":29724,"e":0} -{"length":15,"gdop":155,"flags":6,"tdop":77,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"GMIuEJsAhwBNAEgAcgAG","tow":271499800,"crc":65076,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"GMIuEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271499800,"h_accuracy":0,"crc":43464,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"GMIuEP//","tow":271499800,"crc":30094} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":237,"states":[{"cn0":213,"mesid":{"sat":5,"code":0}},{"cn0":180,"mesid":{"sat":21,"code":0}},{"cn0":191,"mesid":{"sat":2,"code":0}},{"cn0":166,"mesid":{"sat":31,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":218,"mesid":{"sat":25,"code":0}},{"cn0":207,"mesid":{"sat":12,"code":0}},{"cn0":213,"mesid":{"sat":29,"code":0}},{"cn0":207,"mesid":{"sat":18,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":205,"mesid":{"sat":131,"code":2}},{"cn0":204,"mesid":{"sat":25,"code":1}},{"cn0":187,"mesid":{"sat":12,"code":1}},{"cn0":150,"mesid":{"sat":31,"code":1}},{"cn0":194,"mesid":{"sat":18,"code":1}},{"cn0":194,"mesid":{"sat":29,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":194,"mesid":{"sat":5,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":213,"mesid":{"sat":11,"code":3}},{"cn0":174,"mesid":{"sat":9,"code":3}},{"cn0":173,"mesid":{"sat":20,"code":3}},{"cn0":208,"mesid":{"sat":5,"code":3}},{"cn0":206,"mesid":{"sat":10,"code":3}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":183,"mesid":{"sat":4,"code":3}},{"cn0":204,"mesid":{"sat":21,"code":3}},{"cn0":171,"mesid":{"sat":9,"code":4}},{"cn0":204,"mesid":{"sat":20,"code":4}},{"cn0":76,"mesid":{"sat":10,"code":4}},{"cn0":200,"mesid":{"sat":11,"code":4}},{"cn0":193,"mesid":{"sat":5,"code":4}},{"cn0":185,"mesid":{"sat":0,"code":4}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":176,"mesid":{"sat":4,"code":4}},{"cn0":199,"mesid":{"sat":35,"code":12}},{"cn0":168,"mesid":{"sat":26,"code":12}},{"cn0":161,"mesid":{"sat":34,"code":12}},{"cn0":189,"mesid":{"sat":24,"code":12}},{"cn0":156,"mesid":{"sat":25,"code":12}},{"cn0":184,"mesid":{"sat":12,"code":12}},{"cn0":184,"mesid":{"sat":19,"code":12}},{"cn0":191,"mesid":{"sat":22,"code":12}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":208,"mesid":{"sat":12,"code":13}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":196,"mesid":{"sat":12,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":192,"mesid":{"sat":25,"code":14}},{"cn0":189,"mesid":{"sat":11,"code":14}},{"cn0":205,"mesid":{"sat":24,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":161,"mesid":{"sat":31,"code":14}},{"cn0":155,"mesid":{"sat":33,"code":14}},{"cn0":200,"mesid":{"sat":25,"code":20}},{"cn0":215,"mesid":{"sat":24,"code":20}},{"cn0":194,"mesid":{"sat":11,"code":20}},{"cn0":172,"mesid":{"sat":31,"code":20}},{"cn0":206,"mesid":{"sat":12,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":170,"mesid":{"sat":33,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}}],"preamble":85,"sender":22963,"msg_type":97,"payload":"BQDVFQC0AgC/HwCmAAAAAAAAGQDaDADPHQDVEgDPAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwLNGQHMDAG7HwGWEgHCHQHCAAAABQHCAAAAAAAAAAAAAAAACwPVCQOuFAOtBQPQCgPOAAAABAO3FQPMCQSrFATMCgRMCwTIBQTBAAS5AAAABASwIwzHGgyoIgyhGAy9GQycDAy4Ewy4Fgy/AAAADA3QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADA7EAAAAGQ7ACw69GA7NAAAAHw6hIQ6bGRTIGBTXCxTCHxSsDBTOAAAAIRSqAAAA","crc":56113} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"Mgh8wi4QAAAAAAE=","wn":2098,"tow":271499900,"crc":43586} -{"length":16,"flags":17,"ns":899999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EXzCLhDkBwMZAxgp/uikNQ==","day":25,"tow":271499900,"year":2020,"crc":43227,"minutes":24,"month":3,"seconds":41} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.286776050857288,"preamble":85,"sender":22963,"msg_type":522,"payload":"fMIuEJDRFuZl6kJAXBhIIlaSXsBFtb8nakkxwAECWwQPBg==","lat":37.83123470415296,"tow":271499900,"h_accuracy":513,"crc":55050,"lon":-122.28650719681303} -{"v_accuracy":713,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"fMIuEAcAAAAJAAAA9f////AAyQIPAg==","n":7,"d":-11,"tow":271499900,"h_accuracy":240,"crc":12504,"e":9} -{"length":15,"gdop":155,"flags":6,"tdop":77,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"fMIuEJsAhwBNAEgAcgAG","tow":271499900,"crc":53915,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"fMIuEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271499900,"h_accuracy":0,"crc":45438,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"fMIuEP//","tow":271499900,"crc":11319} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":249,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":230,"i":110561558},"flags":15,"cn0":213,"P":1051958124,"D":{"f":47,"i":-172},"lock":15,"sid":{"sat":5,"code":0}},{"L":{"f":157,"i":121857386},"flags":15,"cn0":180,"P":1159434488,"D":{"f":200,"i":2177},"lock":15,"sid":{"sat":21,"code":0}},{"L":{"f":105,"i":123301155},"flags":15,"cn0":191,"P":1173171120,"D":{"f":73,"i":-2479},"lock":15,"sid":{"sat":2,"code":0}},{"L":{"f":53,"i":128732522},"flags":15,"cn0":166,"P":1224849201,"D":{"f":27,"i":-386},"lock":15,"sid":{"sat":31,"code":0}},{"L":{"f":132,"i":107806485},"flags":15,"cn0":219,"P":1025744539,"D":{"f":123,"i":-1117},"lock":15,"sid":{"sat":25,"code":0}},{"L":{"f":15,"i":114054296},"flags":15,"cn0":206,"P":1085190431,"D":{"f":231,"i":-2962},"lock":15,"sid":{"sat":12,"code":0}},{"L":{"f":76,"i":110783208},"flags":15,"cn0":213,"P":1054067094,"D":{"f":13,"i":1487},"lock":15,"sid":{"sat":29,"code":0}},{"L":{"f":33,"i":84005074},"flags":15,"cn0":204,"P":1025744576,"D":{"f":248,"i":-871},"lock":15,"sid":{"sat":25,"code":1}},{"L":{"f":25,"i":88873509},"flags":15,"cn0":187,"P":1085190360,"D":{"f":167,"i":-2309},"lock":15,"sid":{"sat":12,"code":1}},{"L":{"f":173,"i":100311058},"flags":15,"cn0":149,"P":1224849150,"D":{"f":63,"i":-303},"lock":15,"sid":{"sat":31,"code":1}},{"L":{"f":180,"i":86324579},"flags":15,"cn0":194,"P":1054067020,"D":{"f":162,"i":1158},"lock":15,"sid":{"sat":29,"code":1}},{"L":{"f":85,"i":86151893},"flags":15,"cn0":194,"P":1051958067,"D":{"f":194,"i":-135},"lock":15,"sid":{"sat":5,"code":1}},{"L":{"f":17,"i":112954043},"flags":15,"cn0":213,"P":1056890160,"D":{"f":32,"i":1179},"lock":15,"sid":{"sat":11,"code":3}},{"L":{"f":41,"i":123271430},"flags":15,"cn0":174,"P":1154238651,"D":{"f":39,"i":-4406},"lock":15,"sid":{"sat":9,"code":3}}],"payload":"4MIuEAAAAAAyCEBsm7M+FgmXBuZU/y/VDw8FAPiQG0VqZUMHnYEIyLQPDxUAsCvtRSNtWQdpUfZJvw8PAgAxtwFJak2sBzV+/humDw8fAJueIz0V/2wGhKP7e9sPDxkAH7GuQJhUzAYPbvTnzg8PDACWydM+6GqaBkzPBQ3VDw8dAMCeIz3S0AEFIZn8+MwPDxkB2LCuQCUaTAUZ+/anuw8PDAH+tgFJEqD6Ba3R/j+VDw8fAUzJ0z5jNSUFtIYEosIPDx0BM5uzPtWSIgVVef/Cwg8PBQEw3f4+u4q7BhGbBCDVDw8LA7tIzEQG+VgHKcruJ64PDwkD","header":{"n_obs":64,"t":{"ns_residual":0,"wn":2098,"tow":271500000}},"crc":52229} -{"length":249,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":13,"i":109753404},"flags":15,"cn0":173,"P":1026221672,"D":{"f":159,"i":-1208},"lock":15,"sid":{"sat":20,"code":3}},{"L":{"f":168,"i":114891654},"flags":15,"cn0":208,"P":1074642710,"D":{"f":1,"i":2208},"lock":15,"sid":{"sat":5,"code":3}},{"L":{"f":243,"i":111560350},"flags":15,"cn0":206,"P":1046421534,"D":{"f":172,"i":-3035},"lock":15,"sid":{"sat":10,"code":3}},{"L":{"f":109,"i":120419909},"flags":15,"cn0":183,"P":1124378171,"D":{"f":225,"i":-1305},"lock":15,"sid":{"sat":4,"code":3}},{"L":{"f":95,"i":113442997},"flags":15,"cn0":204,"P":1059976377,"D":{"f":247,"i":1625},"lock":15,"sid":{"sat":21,"code":3}},{"L":{"f":171,"i":95877788},"flags":15,"cn0":171,"P":1154238780,"D":{"f":231,"i":-3427},"lock":15,"sid":{"sat":9,"code":4}},{"L":{"f":111,"i":85363794},"flags":15,"cn0":204,"P":1026222007,"D":{"f":41,"i":-938},"lock":15,"sid":{"sat":20,"code":4}},{"L":{"f":238,"i":87853154},"flags":15,"cn0":200,"P":1056890438,"D":{"f":230,"i":916},"lock":15,"sid":{"sat":11,"code":4}},{"L":{"f":161,"i":89360179},"flags":15,"cn0":194,"P":1074642878,"D":{"f":76,"i":1718},"lock":15,"sid":{"sat":5,"code":4}},{"L":{"f":197,"i":93659919},"flags":15,"cn0":176,"P":1124378345,"D":{"f":246,"i":-1013},"lock":15,"sid":{"sat":4,"code":4}},{"L":{"f":195,"i":121558579},"flags":15,"cn0":199,"P":1167202052,"D":{"f":24,"i":-1497},"lock":15,"sid":{"sat":35,"code":12}},{"L":{"f":166,"i":129169023},"flags":15,"cn0":168,"P":1240277686,"D":{"f":241,"i":-3008},"lock":15,"sid":{"sat":26,"code":12}},{"L":{"f":252,"i":132978096},"flags":15,"cn0":161,"P":1276852073,"D":{"f":83,"i":2249},"lock":15,"sid":{"sat":34,"code":12}},{"L":{"f":43,"i":125132805},"flags":15,"cn0":189,"P":1201521998,"D":{"f":182,"i":-1294},"lock":15,"sid":{"sat":24,"code":12}}],"payload":"4MIuEAAAAAAyCEFo5io9PLSKBg1I+5+tDw8UAxa/DUCGG9kGqKAIAdAPDwUDHiBfPp5GpgbzJfSszg8PCgM7pgRDRXYtB23n+uG3Dw8EA7n0LT+1AMMGX1kG98wPDxUDPEnMRJz6tgWrnfLnqw8PCQS35yo9UowWBW9W/CnMDw8UBEbe/j5iiDwF7pQD5sgPDwsEvr8NQDOHUwWhtgZMwg8PBQTppgRDDyOVBcUL/PawDw8EBAQXkkUz1j4Hwyf6GMcPDyMMtiLtSX/2sgemQPTxqA8PGgxpNxtMsBXtB/zJCFOhDw8iDE7FnUcFYHUHK/L6tr0PDxgM","header":{"n_obs":65,"t":{"ns_residual":0,"wn":2098,"tow":271500000}},"crc":44285} -{"length":249,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":129,"i":134691127},"flags":15,"cn0":156,"P":1293300755,"D":{"f":203,"i":1332},"lock":15,"sid":{"sat":25,"code":12}},{"L":{"f":79,"i":121122968},"flags":15,"cn0":184,"P":1163019596,"D":{"f":104,"i":1613},"lock":15,"sid":{"sat":12,"code":12}},{"L":{"f":178,"i":124510897},"flags":15,"cn0":184,"P":1195550408,"D":{"f":16,"i":-280},"lock":15,"sid":{"sat":19,"code":12}},{"L":{"f":248,"i":124738489},"flags":15,"cn0":191,"P":1197735762,"D":{"f":163,"i":2392},"lock":15,"sid":{"sat":22,"code":12}},{"L":{"f":210,"i":93659970},"flags":15,"cn0":208,"P":1163019523,"D":{"f":75,"i":1248},"lock":15,"sid":{"sat":12,"code":13}},{"L":{"f":10,"i":116411538},"flags":15,"cn0":196,"P":1107618944,"D":{"f":120,"i":-1027},"lock":15,"sid":{"sat":12,"code":14}},{"L":{"f":143,"i":132490323},"flags":15,"cn0":192,"P":1260603438,"D":{"f":112,"i":1095},"lock":15,"sid":{"sat":25,"code":14}},{"L":{"f":45,"i":125437430},"flags":15,"cn0":189,"P":1193497400,"D":{"f":165,"i":1050},"lock":15,"sid":{"sat":11,"code":14}},{"L":{"f":237,"i":118389305},"flags":15,"cn0":205,"P":1126436671,"D":{"f":99,"i":-1739},"lock":15,"sid":{"sat":24,"code":14}},{"L":{"f":226,"i":143276590},"flags":15,"cn0":161,"P":1363231446,"D":{"f":100,"i":-3172},"lock":15,"sid":{"sat":31,"code":14}},{"L":{"f":19,"i":144493936},"flags":15,"cn0":155,"P":1374814084,"D":{"f":165,"i":-2138},"lock":15,"sid":{"sat":33,"code":14}},{"L":{"f":4,"i":101518558},"flags":15,"cn0":200,"P":1260603405,"D":{"f":210,"i":839},"lock":15,"sid":{"sat":25,"code":20}},{"L":{"f":82,"i":90713947},"flags":15,"cn0":215,"P":1126437205,"D":{"f":184,"i":-1333},"lock":15,"sid":{"sat":24,"code":20}},{"L":{"f":94,"i":96114372},"flags":15,"cn0":194,"P":1193497226,"D":{"f":122,"i":805},"lock":15,"sid":{"sat":11,"code":20}}],"payload":"4MIuEAAAAAAyCEITNBZNNzkHCIE0BcucDw8ZDExFUkWYMDgHT00GaLgPDwwMyKZCR7Hiawey6P4QuA8PEwxS/2NHuVtvB/hYCaO/Dw8WDANFUkVCI5UF0uAES9APDwwNgOwEQpJM8AYK/ft4xA8PDA4uSCNLU6TlB49HBHDADw8ZDjhTI0f2BXoHLRoEpb0PDwsOPw8kQzl6DgftNfljzQ8PGA7WQkFRLjqKCOKc82ShDw8fDoT/8VFwzZwIE6b3pZsPDyEODUgjS94MDQYERwPSyA8PGRRVESRDWy9oBVLL+rjXDw8YFIpSI0fElroFXiUDesIPDwsU","header":{"n_obs":66,"t":{"ns_residual":0,"wn":2098,"tow":271500000}},"crc":45866} -{"length":62,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":88,"i":109783403},"flags":15,"cn0":172,"P":1363231479,"D":{"f":7,"i":-2431},"lock":15,"sid":{"sat":31,"code":20}},{"L":{"f":211,"i":89198481},"flags":15,"cn0":206,"P":1107618778,"D":{"f":237,"i":-787},"lock":15,"sid":{"sat":12,"code":20}},{"L":{"f":87,"i":110716203},"flags":15,"cn0":169,"P":1374814047,"D":{"f":8,"i":-1641},"lock":15,"sid":{"sat":33,"code":20}}],"payload":"4MIuEAAAAAAyCEP3QkFRaymLBliB9gesDw8fFNrrBEKRD1EF0+387c4PDwwUX//xUStlmQZXl/kIqQ8PIRQ=","header":{"n_obs":67,"t":{"ns_residual":0,"wn":2098,"tow":271500000}},"crc":47449} -{"length":9,"l2ca_bias":0,"preamble":85,"l2p_bias":0,"sender":22963,"msg_type":117,"payload":"/wAAAAAAAAAA","l1ca_bias":0,"mask":255,"crc":49809,"l1p_bias":0} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"Mgjgwi4QAAAAAAE=","wn":2098,"tow":271500000,"crc":62238} -{"length":16,"flags":17,"ns":999999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EeDCLhDkBwMZAxgp/smaOw==","day":25,"tow":271500000,"year":2020,"crc":30742,"minutes":24,"month":3,"seconds":41} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.29643931667525,"preamble":85,"sender":22963,"msg_type":522,"payload":"4MIuEJRx1+Vl6kJASh1lIlaSXsBpXnJy40sxwAECWwQPBg==","lat":37.831234674641706,"tow":271500000,"h_accuracy":513,"crc":54548,"lon":-122.28650722383932} -{"v_accuracy":713,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"4MIuEP3///8BAAAA+/////AAyQIPAg==","n":-3,"d":-5,"tow":271500000,"h_accuracy":240,"crc":13121,"e":1} -{"length":15,"gdop":155,"flags":6,"tdop":77,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"4MIuEJsAhwBNAEgAcgAG","tow":271500000,"crc":29940,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"4MIuEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271500000,"h_accuracy":0,"crc":20303,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"4MIuEP//","tow":271500000,"crc":59760} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":4,"flags":2147616000,"preamble":85,"sender":22963,"msg_type":65535,"payload":"AAUCgA==","crc":40942} -{"length":24,"z":3890655.0240602265,"preamble":85,"sender":22963,"msg_type":72,"payload":"UO0a3iqORMHK1UJhIkRQwc9nFIPvrk1B","crc":2168,"x":-2694229.735196747,"y":-4264073.519704292} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"bWFpbgAAAAAAAAAAAAAAAAAAAAAAAAx1AAA=","name":"main\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":47991,"stack_free":29964,"cpu":0} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"aWRsZQAAAAAAAAAAAAAAAAAAAABTAXwAAAA=","name":"idle\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":20597,"stack_free":124,"cpu":339} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"cnBtc2cAAAAAAAAAAAAAAAAAAAABAPQNAAA=","name":"rpmsg\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":20906,"stack_free":3572,"cpu":1} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"U0JQAAAAAAAAAAAAAAAAAAAAAAAAAPz/AAA=","name":"SBP\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":51784,"stack_free":65532,"cpu":0} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"TkFQAAAAAAAAAAAAAAAAAAAAAAAAAASAAAA=","name":"NAP\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":33651,"stack_free":32772,"cpu":0} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"bWFuYWdlIFBWAAAAAAAAAAAAAAAAACQEAAA=","name":"manage PV\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":29877,"stack_free":1060,"cpu":0} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"SU1VAAAAAAAAAAAAAAAAAAAAAAAAAPQHAAA=","name":"IMU\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":14252,"stack_free":2036,"cpu":0} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"SU1VIGF1eAAAAAAAAAAAAAAAAAAAAEwIAAA=","name":"IMU aux\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":18976,"stack_free":2124,"cpu":0} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"bmRiAAAAAAAAAAAAAAAAAAAAAAAAAFAMAAA=","name":"ndb\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":26120,"stack_free":3152,"cpu":0} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"TkFQIFRyYWNraW5nAAAAAAAAAAAtAdR3AAA=","name":"NAP Tracking\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":25923,"stack_free":30676,"cpu":301} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"ZGVjb2RlAAAAAAAAAAAAAAAAAAAHANQGAAA=","name":"decode\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":22929,"stack_free":1748,"cpu":7} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"bWFuYWdlIGFjcQAAAAAAAAAAAAC1AKR3AAA=","name":"manage acq\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":21459,"stack_free":30628,"cpu":181} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"c3lzdGVtIG1vbml0b3IAAAAAAAAAACwGAAA=","name":"system monitor\u0000\u0000\u0000\u0000\u0000\u0000","crc":58531,"stack_free":1580,"cpu":0} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"V2F0Y2hkb2cAAAAAAAAAAAAAAAAAAOQDAAA=","name":"Watchdog\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":44438,"stack_free":996,"cpu":0} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"c3RhcmxpbmcAAAAAAAAAAAAAAACcAPz/AAA=","name":"starling\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":30365,"stack_free":65532,"cpu":156} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"bWVfY2FsY19wdnQAAAAAAAAAAAAJAIwjAAA=","name":"me_calc_pvt\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":57561,"stack_free":9100,"cpu":9} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"UFBTAAAAAAAAAAAAAAAAAAAAAAAAAEgHAAA=","name":"PPS\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":38576,"stack_free":1864,"cpu":0} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"c3BlY3RydW0gYW5hbHl6ZXIAAAAAANQPAAA=","name":"spectrum analyzer\u0000\u0000\u0000","crc":50933,"stack_free":4052,"cpu":0} -{"cpu_vint":989,"length":10,"fe_temperature":5641,"preamble":85,"sender":22963,"cpu_vaux":1780,"msg_type":181,"payload":"4xbdA/QGXRUJFg==","dev_vin":5859,"crc":55979,"cpu_temperature":5469} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MghEwy4QAAAAAAE=","wn":2098,"tow":271500100,"crc":12396} -{"length":16,"flags":17,"ns":99999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EUTDLhDkBwMZAxgq/uD1BQ==","day":25,"tow":271500100,"year":2020,"crc":27599,"minutes":24,"month":3,"seconds":42} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.303330802555877,"preamble":85,"sender":22963,"msg_type":522,"payload":"RMMuEAHTmuVl6kJAsSSBIlaSXsDQ2GQWp00xwAECWwQPBg==","lat":37.831234646413584,"tow":271500100,"h_accuracy":513,"crc":31891,"lon":-122.28650724994328} -{"v_accuracy":713,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"RMMuEPv///8AAAAABgAAAPAAyQIPAg==","n":-5,"d":6,"tow":271500100,"h_accuracy":240,"crc":58566,"e":0} -{"length":15,"gdop":155,"flags":6,"tdop":77,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"RMMuEJsAhwBNAEgAcgAG","tow":271500100,"crc":23841,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"RMMuEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271500100,"h_accuracy":0,"crc":60864,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"RMMuEP//","tow":271500100,"crc":42152} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"Mgiowy4QAAAAAAE=","wn":2098,"tow":271500200,"crc":49899} -{"length":16,"flags":17,"ns":199999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EajDLhDkBwMZAxgq/sHrCw==","day":25,"tow":271500200,"year":2020,"crc":17523,"minutes":24,"month":3,"seconds":42} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.307614578419596,"preamble":85,"sender":22963,"msg_type":522,"payload":"qMMuEGxYbeVl6kJA4eqTIlaSXsDCFTrUv04xwAECWwQPBg==","lat":37.83123462523585,"tow":271500200,"h_accuracy":513,"crc":43214,"lon":-122.28650726742809} -{"v_accuracy":713,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"qMMuEAkAAAADAAAA+P////AAyQIPAg==","n":9,"d":-8,"tow":271500200,"h_accuracy":240,"crc":62719,"e":3} -{"length":15,"gdop":155,"flags":6,"tdop":77,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"qMMuEJsAhwBNAEgAcgAG","tow":271500200,"crc":729,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"qMMuEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271500200,"h_accuracy":0,"crc":4416,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"qMMuEP//","tow":271500200,"crc":9331} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MggMxC4QAAAAAAE=","wn":2098,"tow":271500300,"crc":33106} -{"length":16,"flags":17,"ns":299999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EQzELhDkBwMZAxgq/qLhEQ==","day":25,"tow":271500300,"year":2020,"crc":63562,"minutes":24,"month":3,"seconds":42} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.317478471167046,"preamble":85,"sender":22963,"msg_type":522,"payload":"DMQuEHjtLuVl6kJAzEWvIlaSXsC32OJERlExwAECWwQPBg==","lat":37.831234596170304,"tow":271500300,"h_accuracy":513,"crc":21170,"lon":-122.28650729290456} -{"v_accuracy":713,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"DMQuEP7///8AAAAAJAAAAPAAyQIPAg==","n":-2,"d":36,"tow":271500300,"h_accuracy":240,"crc":33198,"e":0} -{"length":15,"gdop":155,"flags":6,"tdop":77,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"DMQuEJsAhwBNAEgAcgAG","tow":271500300,"crc":8299,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"DMQuEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271500300,"h_accuracy":0,"crc":28601,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"DMQuEP//","tow":271500300,"crc":42030} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":51,"text":"GLO L2OF ME 1 [+1348ms] low CN0 too long, dropping","preamble":85,"sender":22963,"msg_type":1025,"payload":"BkdMTyBMMk9GIE1FIDEgWysxMzQ4bXNdIGxvdyBDTjAgdG9vIGxvbmcsIGRyb3BwaW5n","crc":48467,"level":6} -{"length":237,"states":[{"cn0":213,"mesid":{"sat":5,"code":0}},{"cn0":179,"mesid":{"sat":21,"code":0}},{"cn0":191,"mesid":{"sat":2,"code":0}},{"cn0":166,"mesid":{"sat":31,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":219,"mesid":{"sat":25,"code":0}},{"cn0":207,"mesid":{"sat":12,"code":0}},{"cn0":213,"mesid":{"sat":29,"code":0}},{"cn0":208,"mesid":{"sat":18,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":206,"mesid":{"sat":131,"code":2}},{"cn0":204,"mesid":{"sat":25,"code":1}},{"cn0":187,"mesid":{"sat":12,"code":1}},{"cn0":149,"mesid":{"sat":31,"code":1}},{"cn0":194,"mesid":{"sat":18,"code":1}},{"cn0":194,"mesid":{"sat":29,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":193,"mesid":{"sat":5,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":213,"mesid":{"sat":100,"code":3}},{"cn0":174,"mesid":{"sat":98,"code":3}},{"cn0":173,"mesid":{"sat":102,"code":3}},{"cn0":208,"mesid":{"sat":101,"code":3}},{"cn0":206,"mesid":{"sat":93,"code":3}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":183,"mesid":{"sat":106,"code":3}},{"cn0":204,"mesid":{"sat":104,"code":3}},{"cn0":172,"mesid":{"sat":98,"code":4}},{"cn0":204,"mesid":{"sat":102,"code":4}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":200,"mesid":{"sat":100,"code":4}},{"cn0":194,"mesid":{"sat":101,"code":4}},{"cn0":186,"mesid":{"sat":104,"code":4}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":176,"mesid":{"sat":106,"code":4}},{"cn0":199,"mesid":{"sat":35,"code":12}},{"cn0":168,"mesid":{"sat":26,"code":12}},{"cn0":161,"mesid":{"sat":34,"code":12}},{"cn0":189,"mesid":{"sat":24,"code":12}},{"cn0":156,"mesid":{"sat":25,"code":12}},{"cn0":185,"mesid":{"sat":12,"code":12}},{"cn0":184,"mesid":{"sat":19,"code":12}},{"cn0":191,"mesid":{"sat":22,"code":12}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":208,"mesid":{"sat":12,"code":13}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":195,"mesid":{"sat":12,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":192,"mesid":{"sat":25,"code":14}},{"cn0":188,"mesid":{"sat":11,"code":14}},{"cn0":204,"mesid":{"sat":24,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":160,"mesid":{"sat":31,"code":14}},{"cn0":155,"mesid":{"sat":33,"code":14}},{"cn0":200,"mesid":{"sat":25,"code":20}},{"cn0":215,"mesid":{"sat":24,"code":20}},{"cn0":194,"mesid":{"sat":11,"code":20}},{"cn0":172,"mesid":{"sat":31,"code":20}},{"cn0":206,"mesid":{"sat":12,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":170,"mesid":{"sat":33,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}}],"preamble":85,"sender":22963,"msg_type":97,"payload":"BQDVFQCzAgC/HwCmAAAAAAAAGQDbDADPHQDVEgDQAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwLOGQHMDAG7HwGVEgHCHQHCAAAABQHBAAAAAAAAAAAAAAAAZAPVYgOuZgOtZQPQXQPOAAAAagO3aAPMYgSsZgTMAAAAZATIZQTCaAS6AAAAagSwIwzHGgyoIgyhGAy9GQycDAy5Ewy4Fgy/AAAADA3QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADA7DAAAAGQ7ACw68GA7MAAAAHw6gIQ6bGRTIGBTXCxTCHxSsDBTOAAAAIRSqAAAA","crc":54924} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MghwxC4QAAAAAAE=","wn":2098,"tow":271500400,"crc":40857} -{"length":16,"flags":17,"ns":399999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EXDELhDkBwMZAxgq/oPXFw==","day":25,"tow":271500400,"year":2020,"crc":49961,"minutes":24,"month":3,"seconds":42} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.32564540466397,"preamble":85,"sender":22963,"msg_type":522,"payload":"cMQuEIFI5eRl6kJAnvnLIlaSXsDbH0t/XVMxwAECWwQPBg==","lat":37.83123456187696,"tow":271500400,"h_accuracy":513,"crc":26314,"lon":-122.28650731963577} -{"v_accuracy":713,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"cMQuEP7////3////CgAAAPAAyQIPAg==","n":-2,"d":10,"tow":271500400,"h_accuracy":240,"crc":48380,"e":-9} -{"length":15,"gdop":155,"flags":6,"tdop":77,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"cMQuEJsAhwBNAEgAcgAG","tow":271500400,"crc":25867,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"cMQuEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271500400,"h_accuracy":0,"crc":38122,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"cMQuEP//","tow":271500400,"crc":59985} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":9,"l2ca_bias":0,"preamble":85,"l2p_bias":0,"sender":22963,"msg_type":117,"payload":"/wAAAAAAAAAA","l1ca_bias":0,"mask":255,"crc":49809,"l1p_bias":0} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgjUxC4QAAAAAAE=","wn":2098,"tow":271500500,"crc":6968} -{"length":16,"flags":17,"ns":499999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EdTELhDkBwMZAxgq/mTNHQ==","day":25,"tow":271500500,"year":2020,"crc":63950,"minutes":24,"month":3,"seconds":42} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.33194968492098,"preamble":85,"sender":22963,"msg_type":522,"payload":"1MQuEJo5ouRl6kJASKX8IlaSXsAyp5Cn+lQxwAECWwQPBg==","lat":37.83123453065055,"tow":271500500,"h_accuracy":513,"crc":51811,"lon":-122.28650736496377} -{"v_accuracy":713,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"1MQuEPr////w/////P////AAyQIPAg==","n":-6,"d":-4,"tow":271500500,"h_accuracy":240,"crc":48685,"e":-16} -{"length":15,"gdop":155,"flags":6,"tdop":77,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"1MQuEJsAhwBNAEgAcgAG","tow":271500500,"crc":14271,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"1MQuEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271500500,"h_accuracy":0,"crc":58259,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"1MQuEP//","tow":271500500,"crc":3544} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"Mgg4xS4QAAAAAAE=","wn":2098,"tow":271500600,"crc":44652} -{"length":16,"flags":17,"ns":599999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"ETjFLhDkBwMZAxgq/kXDIw==","day":25,"tow":271500600,"year":2020,"crc":38963,"minutes":24,"month":3,"seconds":42} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.339282294821203,"preamble":85,"sender":22963,"msg_type":522,"payload":"OMUuEO7+aORl6kJAcGgHI1aSXsBwXlg021YxwAECWwQPBg==","lat":37.83123450400113,"tow":271500600,"h_accuracy":513,"crc":34670,"lon":-122.28650737498697} -{"v_accuracy":713,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"OMUuEAUAAAANAAAACQAAAPAAyQIPAg==","n":5,"d":9,"tow":271500600,"h_accuracy":240,"crc":10093,"e":13} -{"length":15,"gdop":155,"flags":6,"tdop":77,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"OMUuEJsAhwBNAEgAcgAG","tow":271500600,"crc":4902,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"OMUuEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271500600,"h_accuracy":0,"crc":51941,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"OMUuEP//","tow":271500600,"crc":10066} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgicxS4QAAAAAAE=","wn":2098,"tow":271500700,"crc":10957} -{"length":16,"flags":17,"ns":699999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EZzFLhDkBwMZAxgq/ia5KQ==","day":25,"tow":271500700,"year":2020,"crc":20068,"minutes":24,"month":3,"seconds":42} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.34504286944973,"preamble":85,"sender":22963,"msg_type":522,"payload":"nMUuEAybLeRl6kJA2r8jI1aSXsAtAcC6VFgxwAECWwQPBg==","lat":37.83123447634543,"tow":271500700,"h_accuracy":513,"crc":3093,"lon":-122.28650740138201} -{"v_accuracy":713,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"nMUuEP3///8JAAAA7/////AAyQIPAg==","n":-3,"d":-17,"tow":271500700,"h_accuracy":240,"crc":4954,"e":9} -{"length":15,"gdop":155,"flags":6,"tdop":77,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"nMUuEJsAhwBNAEgAcgAG","tow":271500700,"crc":16786,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"nMUuEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271500700,"h_accuracy":0,"crc":48540,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"nMUuEP//","tow":271500700,"crc":49371} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"message_type":25,"length":34,"data":[178,11,253,0,88,13,0,160,0,31,255,226,246,109,14,255,239,220,6,192,40,16,23,240,16,189,208],"preamble":85,"sender":22963,"msg_type":30583,"payload":"gwLTxC4QGbIL/QBYDQCgAB//4vZtDv/v3AbAKBAX8BC90A==","tow":271500499,"crc":35171,"sid":{"sat":131,"code":2}} -{"length":136,"preamble":85,"sender":22963,"msg_type":151,"payload":"AgAaHgUALDUMAFEtFQB9GRkAbUYaAKEBHQChNx8AlQ4EAxYWBQMyIQYDTggJA18OCgNxKQsDmCUMA6oDEwMiBxQDCzEVA5UlDAyUKRMMIyAUDA8CFgxDIxgMgiMZDJ0OGgxnFR0MLAAiDI4RIwwiLQsOizIMDg88GA5sNhkOlykfDlURIQ4fDw==","crc":41336,"azel":[{"el":30,"az":26,"sid":{"sat":2,"code":0}},{"el":53,"az":44,"sid":{"sat":5,"code":0}},{"el":45,"az":81,"sid":{"sat":12,"code":0}},{"el":25,"az":125,"sid":{"sat":21,"code":0}},{"el":70,"az":109,"sid":{"sat":25,"code":0}},{"el":1,"az":161,"sid":{"sat":26,"code":0}},{"el":55,"az":161,"sid":{"sat":29,"code":0}},{"el":14,"az":149,"sid":{"sat":31,"code":0}},{"el":22,"az":22,"sid":{"sat":4,"code":3}},{"el":33,"az":50,"sid":{"sat":5,"code":3}},{"el":8,"az":78,"sid":{"sat":6,"code":3}},{"el":14,"az":95,"sid":{"sat":9,"code":3}},{"el":41,"az":113,"sid":{"sat":10,"code":3}},{"el":37,"az":152,"sid":{"sat":11,"code":3}},{"el":3,"az":170,"sid":{"sat":12,"code":3}},{"el":7,"az":34,"sid":{"sat":19,"code":3}},{"el":49,"az":11,"sid":{"sat":20,"code":3}},{"el":37,"az":149,"sid":{"sat":21,"code":3}},{"el":41,"az":148,"sid":{"sat":12,"code":12}},{"el":32,"az":35,"sid":{"sat":19,"code":12}},{"el":2,"az":15,"sid":{"sat":20,"code":12}},{"el":35,"az":67,"sid":{"sat":22,"code":12}},{"el":35,"az":130,"sid":{"sat":24,"code":12}},{"el":14,"az":157,"sid":{"sat":25,"code":12}},{"el":21,"az":103,"sid":{"sat":26,"code":12}},{"el":0,"az":44,"sid":{"sat":29,"code":12}},{"el":17,"az":142,"sid":{"sat":34,"code":12}},{"el":45,"az":34,"sid":{"sat":35,"code":12}},{"el":50,"az":139,"sid":{"sat":11,"code":14}},{"el":60,"az":15,"sid":{"sat":12,"code":14}},{"el":54,"az":108,"sid":{"sat":24,"code":14}},{"el":41,"az":151,"sid":{"sat":25,"code":14}},{"el":17,"az":85,"sid":{"sat":31,"code":14}},{"el":15,"az":31,"sid":{"sat":33,"code":14}}]} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MggAxi4QAAAAAAE=","wn":2098,"tow":271500800,"crc":48100} -{"length":16,"flags":17,"ns":799999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EQDGLhDkBwMZAxgq/gevLw==","day":25,"tow":271500800,"year":2020,"crc":7501,"minutes":24,"month":3,"seconds":42} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.35820586607074,"preamble":85,"sender":22963,"msg_type":522,"payload":"AMYuEPDC1uNl6kJAzDRHI1aSXsBaAjBhs1sxwAECWwQPBg==","lat":37.83123443590546,"tow":271500800,"h_accuracy":513,"crc":20951,"lon":-122.28650743440375} -{"v_accuracy":713,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"AMYuEPf///8DAAAAEwAAAPAAyQIPAg==","n":-9,"d":19,"tow":271500800,"h_accuracy":240,"crc":65053,"e":3} -{"length":15,"gdop":155,"flags":6,"tdop":77,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"AMYuEJsAhwBNAEgAcgAG","tow":271500800,"crc":27230,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"AMYuEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271500800,"h_accuracy":0,"crc":11670,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"AMYuEP//","tow":271500800,"crc":60238} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":237,"states":[{"cn0":213,"mesid":{"sat":5,"code":0}},{"cn0":179,"mesid":{"sat":21,"code":0}},{"cn0":191,"mesid":{"sat":2,"code":0}},{"cn0":165,"mesid":{"sat":31,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":218,"mesid":{"sat":25,"code":0}},{"cn0":206,"mesid":{"sat":12,"code":0}},{"cn0":212,"mesid":{"sat":29,"code":0}},{"cn0":207,"mesid":{"sat":18,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":205,"mesid":{"sat":131,"code":2}},{"cn0":204,"mesid":{"sat":25,"code":1}},{"cn0":187,"mesid":{"sat":12,"code":1}},{"cn0":150,"mesid":{"sat":31,"code":1}},{"cn0":194,"mesid":{"sat":18,"code":1}},{"cn0":194,"mesid":{"sat":29,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":193,"mesid":{"sat":5,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":213,"mesid":{"sat":11,"code":3}},{"cn0":175,"mesid":{"sat":9,"code":3}},{"cn0":173,"mesid":{"sat":20,"code":3}},{"cn0":208,"mesid":{"sat":5,"code":3}},{"cn0":206,"mesid":{"sat":10,"code":3}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":183,"mesid":{"sat":4,"code":3}},{"cn0":204,"mesid":{"sat":21,"code":3}},{"cn0":172,"mesid":{"sat":9,"code":4}},{"cn0":205,"mesid":{"sat":20,"code":4}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":200,"mesid":{"sat":11,"code":4}},{"cn0":194,"mesid":{"sat":5,"code":4}},{"cn0":185,"mesid":{"sat":0,"code":4}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":176,"mesid":{"sat":4,"code":4}},{"cn0":199,"mesid":{"sat":35,"code":12}},{"cn0":169,"mesid":{"sat":26,"code":12}},{"cn0":160,"mesid":{"sat":34,"code":12}},{"cn0":189,"mesid":{"sat":24,"code":12}},{"cn0":157,"mesid":{"sat":25,"code":12}},{"cn0":185,"mesid":{"sat":12,"code":12}},{"cn0":185,"mesid":{"sat":19,"code":12}},{"cn0":191,"mesid":{"sat":22,"code":12}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":208,"mesid":{"sat":12,"code":13}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":195,"mesid":{"sat":12,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":192,"mesid":{"sat":25,"code":14}},{"cn0":189,"mesid":{"sat":11,"code":14}},{"cn0":205,"mesid":{"sat":24,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":160,"mesid":{"sat":31,"code":14}},{"cn0":155,"mesid":{"sat":33,"code":14}},{"cn0":200,"mesid":{"sat":25,"code":20}},{"cn0":215,"mesid":{"sat":24,"code":20}},{"cn0":194,"mesid":{"sat":11,"code":20}},{"cn0":173,"mesid":{"sat":31,"code":20}},{"cn0":207,"mesid":{"sat":12,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":170,"mesid":{"sat":33,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}}],"preamble":85,"sender":22963,"msg_type":97,"payload":"BQDVFQCzAgC/HwClAAAAAAAAGQDaDADOHQDUEgDPAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwLNGQHMDAG7HwGWEgHCHQHCAAAABQHBAAAAAAAAAAAAAAAACwPVCQOvFAOtBQPQCgPOAAAABAO3FQPMCQSsFATNAAAACwTIBQTCAAS5AAAABASwIwzHGgypIgygGAy9GQydDAy5Ewy5Fgy/AAAADA3QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADA7DAAAAGQ7ACw69GA7NAAAAHw6gIQ6bGRTIGBTXCxTCHxStDBTPAAAAIRSqAAAA","crc":20927} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"Mghkxi4QAAAAAAE=","wn":2098,"tow":271500900,"crc":57134} -{"length":16,"flags":17,"ns":899999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EWTGLhDkBwMZAxgq/uikNQ==","day":25,"tow":271500900,"year":2020,"crc":53859,"minutes":24,"month":3,"seconds":42} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.369410916983266,"preamble":85,"sender":22963,"msg_type":522,"payload":"ZMYuEFq6luNl6kJARWp3I1aSXsB/Or+2kV4xwAECWwQPBg==","lat":37.83123440608752,"tow":271500900,"h_accuracy":513,"crc":49407,"lon":-122.28650747930176} -{"v_accuracy":713,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"ZMYuEAIAAAD9////AwAAAPAAyQIPAg==","n":2,"d":3,"tow":271500900,"h_accuracy":240,"crc":2626,"e":-3} -{"length":15,"gdop":155,"flags":6,"tdop":77,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"ZMYuEJsAhwBNAEgAcgAG","tow":271500900,"crc":18161,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"ZMYuEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271500900,"h_accuracy":0,"crc":13600,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"ZMYuEP//","tow":271500900,"crc":45815} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":249,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":172,"i":110561730},"flags":15,"cn0":213,"P":1051959758,"D":{"f":128,"i":-174},"lock":15,"sid":{"sat":5,"code":0}},{"L":{"f":0,"i":121855208},"flags":15,"cn0":179,"P":1159413749,"D":{"f":41,"i":2176},"lock":15,"sid":{"sat":21,"code":0}},{"L":{"f":3,"i":123303633},"flags":15,"cn0":191,"P":1173194704,"D":{"f":226,"i":-2479},"lock":15,"sid":{"sat":2,"code":0}},{"L":{"f":150,"i":128732908},"flags":15,"cn0":165,"P":1224852880,"D":{"f":213,"i":-389},"lock":15,"sid":{"sat":31,"code":0}},{"L":{"f":241,"i":107807601},"flags":15,"cn0":218,"P":1025755165,"D":{"f":110,"i":-1118},"lock":15,"sid":{"sat":25,"code":0}},{"L":{"f":89,"i":114057256},"flags":15,"cn0":206,"P":1085218599,"D":{"f":14,"i":-2962},"lock":15,"sid":{"sat":12,"code":0}},{"L":{"f":225,"i":110781719},"flags":15,"cn0":212,"P":1054052934,"D":{"f":87,"i":1486},"lock":15,"sid":{"sat":29,"code":0}},{"L":{"f":22,"i":84005944},"flags":15,"cn0":204,"P":1025755204,"D":{"f":206,"i":-872},"lock":15,"sid":{"sat":25,"code":1}},{"L":{"f":206,"i":88875815},"flags":15,"cn0":187,"P":1085218527,"D":{"f":201,"i":-2310},"lock":15,"sid":{"sat":12,"code":1}},{"L":{"f":191,"i":100311359},"flags":15,"cn0":150,"P":1224852826,"D":{"f":9,"i":-304},"lock":15,"sid":{"sat":31,"code":1}},{"L":{"f":228,"i":86323419},"flags":15,"cn0":194,"P":1054052858,"D":{"f":30,"i":1159},"lock":15,"sid":{"sat":29,"code":1}},{"L":{"f":46,"i":86152027},"flags":15,"cn0":193,"P":1051959701,"D":{"f":85,"i":-135},"lock":15,"sid":{"sat":5,"code":1}},{"L":{"f":2,"i":112952863},"flags":15,"cn0":213,"P":1056879117,"D":{"f":73,"i":1178},"lock":15,"sid":{"sat":11,"code":3}},{"L":{"f":184,"i":123275835},"flags":15,"cn0":175,"P":1154279861,"D":{"f":154,"i":-4408},"lock":15,"sid":{"sat":9,"code":3}}],"payload":"yMYuEAAAAAAyCEDOobM+wgmXBqxS/4DVDw8FAPU/G0XoXEMHAIAIKbMPDxUA0IftRdF2WQcDUfbivw8PAgCQxQFJ7E6sB5Z7/tWlDw8fAB3IIz1xA20G8aL7btoPDxkAJx+vQChgzAZZbvQOzg8PDABGktM+F2WaBuHOBVfUDw8dAETIIz041AEFFpj8zswPDxkB3x6vQCcjTAXO+vbJuw8PDAFaxQFJP6H6Bb/Q/gmWDw8fAfqR0z7bMCUF5IcEHsIPDx0BlaGzPluTIgUuef9VwQ8PBQENsv4+H4a7BgKaBEnVDw8LA7XpzEQ7ClkHuMjumq8PDwkD","header":{"n_obs":64,"t":{"ns_residual":0,"wn":2098,"tow":271501000}},"crc":64239} -{"length":249,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":108,"i":109754610},"flags":15,"cn0":173,"P":1026232951,"D":{"f":64,"i":-1208},"lock":15,"sid":{"sat":20,"code":3}},{"L":{"f":41,"i":114889445},"flags":15,"cn0":207,"P":1074622026,"D":{"f":34,"i":2207},"lock":15,"sid":{"sat":5,"code":3}},{"L":{"f":251,"i":111563384},"flags":15,"cn0":206,"P":1046449979,"D":{"f":176,"i":-3037},"lock":15,"sid":{"sat":10,"code":3}},{"L":{"f":21,"i":120421212},"flags":15,"cn0":183,"P":1124390331,"D":{"f":139,"i":-1304},"lock":15,"sid":{"sat":4,"code":3}},{"L":{"f":161,"i":113441370},"flags":15,"cn0":204,"P":1059961187,"D":{"f":80,"i":1624},"lock":15,"sid":{"sat":21,"code":3}},{"L":{"f":52,"i":95881215},"flags":15,"cn0":172,"P":1154280035,"D":{"f":137,"i":-3427},"lock":15,"sid":{"sat":9,"code":4}},{"L":{"f":186,"i":85364732},"flags":15,"cn0":204,"P":1026233298,"D":{"f":11,"i":-940},"lock":15,"sid":{"sat":20,"code":4}},{"L":{"f":30,"i":87852237},"flags":15,"cn0":199,"P":1056879394,"D":{"f":132,"i":916},"lock":15,"sid":{"sat":11,"code":4}},{"L":{"f":33,"i":89358461},"flags":15,"cn0":194,"P":1074622222,"D":{"f":89,"i":1717},"lock":15,"sid":{"sat":5,"code":4}},{"L":{"f":245,"i":93660932},"flags":15,"cn0":176,"P":1124390490,"D":{"f":246,"i":-1017},"lock":15,"sid":{"sat":4,"code":4}},{"L":{"f":9,"i":121560076},"flags":15,"cn0":199,"P":1167216429,"D":{"f":64,"i":-1499},"lock":15,"sid":{"sat":35,"code":12}},{"L":{"f":144,"i":129172029},"flags":15,"cn0":169,"P":1240306552,"D":{"f":239,"i":-3009},"lock":15,"sid":{"sat":26,"code":12}},{"L":{"f":12,"i":132975847},"flags":15,"cn0":161,"P":1276830443,"D":{"f":219,"i":2247},"lock":15,"sid":{"sat":34,"code":12}},{"L":{"f":178,"i":125134099},"flags":15,"cn0":189,"P":1201534422,"D":{"f":91,"i":-1298},"lock":15,"sid":{"sat":24,"code":12}}],"payload":"yMYuEAAAAAAyCEF3Eis98riKBmxI+0CtDw8UA0puDUDlEtkGKZ8IIs8PDwUDO49fPnhSpgb7I/Swzg8PCgO71QRDXHstBxXo+ou3Dw8EA2O5LT9a+sIGoVgGUMwPDxUDY+rMRP8HtwU0nfKJrA8PCQTSEys9/I8WBbpU/AvMDw8UBCKz/j7NhDwFHpQDhMcPDwsEDm8NQH2AUwUhtQZZwg8PBQRa1gRDBCeVBfUH/PawDw8EBC1PkkUM3D4HCSX6QMcPDyMMeJPtST0CsweQP/TvqQ8PGgzr4hpM5wztBwzHCNuhDw8iDNb1nUcTZXUHsu76W70PDxgM","header":{"n_obs":65,"t":{"ns_residual":0,"wn":2098,"tow":271501000}},"crc":59582} -{"length":249,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":102,"i":134689794},"flags":15,"cn0":157,"P":1293287952,"D":{"f":191,"i":1330},"lock":15,"sid":{"sat":25,"code":12}},{"L":{"f":10,"i":121121354},"flags":15,"cn0":185,"P":1163004104,"D":{"f":235,"i":1612},"lock":15,"sid":{"sat":12,"code":12}},{"L":{"f":241,"i":124511177},"flags":15,"cn0":185,"P":1195553098,"D":{"f":140,"i":-283},"lock":15,"sid":{"sat":19,"code":12}},{"L":{"f":158,"i":124736096},"flags":15,"cn0":191,"P":1197712786,"D":{"f":157,"i":2391},"lock":15,"sid":{"sat":22,"code":12}},{"L":{"f":146,"i":93658722},"flags":15,"cn0":208,"P":1163004025,"D":{"f":54,"i":1247},"lock":15,"sid":{"sat":12,"code":13}},{"L":{"f":75,"i":116412562},"flags":15,"cn0":196,"P":1107628692,"D":{"f":191,"i":-1026},"lock":15,"sid":{"sat":12,"code":14}},{"L":{"f":210,"i":132489227},"flags":15,"cn0":193,"P":1260593009,"D":{"f":152,"i":1092},"lock":15,"sid":{"sat":25,"code":14}},{"L":{"f":106,"i":125436379},"flags":15,"cn0":189,"P":1193487404,"D":{"f":209,"i":1047},"lock":15,"sid":{"sat":11,"code":14}},{"L":{"f":66,"i":118391043},"flags":15,"cn0":205,"P":1126453205,"D":{"f":41,"i":-1740},"lock":15,"sid":{"sat":24,"code":14}},{"L":{"f":144,"i":143279761},"flags":15,"cn0":160,"P":1363261626,"D":{"f":73,"i":-3172},"lock":15,"sid":{"sat":31,"code":14}},{"L":{"f":161,"i":144496076},"flags":15,"cn0":155,"P":1374834470,"D":{"f":172,"i":-2142},"lock":15,"sid":{"sat":33,"code":14}},{"L":{"f":106,"i":101517718},"flags":15,"cn0":200,"P":1260592980,"D":{"f":154,"i":837},"lock":15,"sid":{"sat":25,"code":20}},{"L":{"f":134,"i":90715278},"flags":15,"cn0":215,"P":1126453735,"D":{"f":5,"i":-1333},"lock":15,"sid":{"sat":24,"code":20}},{"L":{"f":61,"i":96113567},"flags":15,"cn0":194,"P":1193487226,"D":{"f":119,"i":803},"lock":15,"sid":{"sat":11,"code":20}}],"payload":"yMYuEAAAAAAyCEIQAhZNAjQHCGYyBb+dDw8ZDMgIUkVKKjgHCkwG67kPDwwMSrFCR8njawfx5f6MuQ8PEwySpWNHYFJvB55XCZ2/Dw8WDHkIUkViHpUFkt8ENtAPDwwNlBIFQpJQ8AZL/vu/xA8PDA5xHyNLC6DlB9JEBJjBDw8ZDiwsI0fbAXoHahcE0b0PDwsO1U8kQwOBDgdCNPkpzQ8PGA66uEFRkUaKCJCc80mgDw8fDiZP8lHM1ZwIoaL3rJsPDyEOVB8jS5YJDQZqRQOayA8PGRTnUSRDjjRoBYbL+gXXDw8YFHorI0efk7oFPSMDd8IPDwsU","header":{"n_obs":66,"t":{"ns_residual":0,"wn":2098,"tow":271501000}},"crc":3129} -{"length":62,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":215,"i":109785832},"flags":15,"cn0":173,"P":1363261639,"D":{"f":137,"i":-2430},"lock":15,"sid":{"sat":31,"code":20}},{"L":{"f":165,"i":89199266},"flags":15,"cn0":207,"P":1107628522,"D":{"f":72,"i":-787},"lock":15,"sid":{"sat":12,"code":20}},{"L":{"f":127,"i":110717843},"flags":15,"cn0":170,"P":1374834414,"D":{"f":85,"i":-1641},"lock":15,"sid":{"sat":33,"code":20}}],"payload":"yMYuEAAAAAAyCEPHuEFR6DKLBteC9omtDw8fFOoRBUKiElEFpe38SM8PDwwU7k7yUZNrmQZ/l/lVqg8PIRQ=","header":{"n_obs":67,"t":{"ns_residual":0,"wn":2098,"tow":271501000}},"crc":42607} -{"length":9,"l2ca_bias":0,"preamble":85,"l2p_bias":0,"sender":22963,"msg_type":117,"payload":"/wAAAAAAAAAA","l1ca_bias":0,"mask":255,"crc":49809,"l1p_bias":0} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgjIxi4QAAAAAAE=","wn":2098,"tow":271501000,"crc":29296} -{"length":16,"flags":17,"ns":999999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EcjGLhDkBwMZAxgq/smaOw==","day":25,"tow":271501000,"year":2020,"crc":53552,"minutes":24,"month":3,"seconds":42} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.37650146007629,"preamble":85,"sender":22963,"msg_type":522,"payload":"yMYuEJMzdeNl6kJAujazI1aSXsCG7FFmYmAxwAECWwQPBg==","lat":37.83123439047554,"tow":271501000,"h_accuracy":513,"crc":43924,"lon":-122.2865075349936} -{"v_accuracy":713,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"yMYuEAwAAAD0////8/////AAyQIPAg==","n":12,"d":-13,"tow":271501000,"h_accuracy":240,"crc":50351,"e":-12} -{"length":15,"gdop":155,"flags":6,"tdop":77,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"yMYuEJsAhwBNAEgAcgAG","tow":271501000,"crc":13056,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"yMYuEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271501000,"h_accuracy":0,"crc":7418,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"yMYuEP//","tow":271501000,"crc":22588} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":4,"flags":2147616000,"preamble":85,"sender":22963,"msg_type":65535,"payload":"AAUCgA==","crc":40942} -{"length":24,"z":3890655.0240602265,"preamble":85,"sender":22963,"msg_type":72,"payload":"UO0a3iqORMHK1UJhIkRQwc9nFIPvrk1B","crc":2168,"x":-2694229.735196747,"y":-4264073.519704292} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"Mggsxy4QAAAAAAE=","wn":2098,"tow":271501100,"crc":61147} -{"length":16,"flags":17,"ns":99999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"ESzHLhDkBwMZAxgr/uD1BQ==","day":25,"tow":271501100,"year":2020,"crc":44131,"minutes":24,"month":3,"seconds":43} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.389207952487148,"preamble":85,"sender":22963,"msg_type":522,"payload":"LMcuECa9GuNl6kJAjAfXI1aSXsCCRuMho2MxwAECWwQPBg==","lat":37.831234348350606,"tow":271501100,"h_accuracy":513,"crc":19195,"lon":-122.28650756834958} -{"v_accuracy":713,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"LMcuEPP///8FAAAAEAAAAPAAyQIPAg==","n":-13,"d":16,"tow":271501100,"h_accuracy":240,"crc":62123,"e":5} -{"length":15,"gdop":155,"flags":6,"tdop":77,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"LMcuEJsAhwBNAEgAcgAG","tow":271501100,"crc":12508,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"LMcuEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271501100,"h_accuracy":0,"crc":27439,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"LMcuEP//","tow":271501100,"crc":32756} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgiQxy4QAAAAAAE=","wn":2098,"tow":271501200,"crc":4219} -{"length":16,"flags":17,"ns":199999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EZDHLhDkBwMZAxgr/sHrCw==","day":25,"tow":271501200,"year":2020,"crc":59228,"minutes":24,"month":3,"seconds":43} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.39797631384704,"preamble":85,"sender":22963,"msg_type":522,"payload":"kMcuEMfX0eJl6kJAj3T0I1aSXsBAjpTG4WUxwAECWwQPBg==","lat":37.83123431440577,"tow":271501200,"h_accuracy":513,"crc":21201,"lon":-122.28650759575451} -{"v_accuracy":713,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"kMcuEP////8EAAAAGwAAAPAAyQIPAg==","n":-1,"d":27,"tow":271501200,"h_accuracy":240,"crc":59162,"e":4} -{"length":15,"gdop":155,"flags":6,"tdop":77,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"kMcuEJsAhwBNAEgAcgAG","tow":271501200,"crc":2983,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"kMcuEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271501200,"h_accuracy":0,"crc":65459,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"kMcuEP//","tow":271501200,"crc":36795} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"Mgj0xy4QAAAAAAE=","wn":2098,"tow":271501300,"crc":29873} -{"length":16,"flags":17,"ns":299999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EfTHLhDkBwMZAxgr/qLhEQ==","day":25,"tow":271501300,"year":2020,"crc":21880,"minutes":24,"month":3,"seconds":43} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.40702277097078,"preamble":85,"sender":22963,"msg_type":522,"payload":"9McuEAJUfeJl6kJACXMFJFaSXsD7C/KkMmgxwAECWwQPBg==","lat":37.831234275050534,"tow":271501300,"h_accuracy":513,"crc":54186,"lon":-122.28650761158146} -{"v_accuracy":713,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"9McuEPf///8FAAAACQAAAPAAyQIPAg==","n":-9,"d":9,"tow":271501300,"h_accuracy":240,"crc":16318,"e":5} -{"length":15,"gdop":155,"flags":6,"tdop":77,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"9McuEJsAhwBNAEgAcgAG","tow":271501300,"crc":9992,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"9McuEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271501300,"h_accuracy":0,"crc":59141,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"9McuEP//","tow":271501300,"crc":54786} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":237,"states":[{"cn0":212,"mesid":{"sat":5,"code":0}},{"cn0":179,"mesid":{"sat":21,"code":0}},{"cn0":190,"mesid":{"sat":2,"code":0}},{"cn0":165,"mesid":{"sat":31,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":218,"mesid":{"sat":25,"code":0}},{"cn0":206,"mesid":{"sat":12,"code":0}},{"cn0":212,"mesid":{"sat":29,"code":0}},{"cn0":206,"mesid":{"sat":18,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":204,"mesid":{"sat":131,"code":2}},{"cn0":204,"mesid":{"sat":25,"code":1}},{"cn0":187,"mesid":{"sat":12,"code":1}},{"cn0":150,"mesid":{"sat":31,"code":1}},{"cn0":195,"mesid":{"sat":18,"code":1}},{"cn0":194,"mesid":{"sat":29,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":194,"mesid":{"sat":5,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":213,"mesid":{"sat":100,"code":3}},{"cn0":176,"mesid":{"sat":98,"code":3}},{"cn0":173,"mesid":{"sat":102,"code":3}},{"cn0":207,"mesid":{"sat":101,"code":3}},{"cn0":206,"mesid":{"sat":93,"code":3}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":183,"mesid":{"sat":106,"code":3}},{"cn0":204,"mesid":{"sat":104,"code":3}},{"cn0":172,"mesid":{"sat":98,"code":4}},{"cn0":204,"mesid":{"sat":102,"code":4}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":199,"mesid":{"sat":100,"code":4}},{"cn0":194,"mesid":{"sat":101,"code":4}},{"cn0":185,"mesid":{"sat":104,"code":4}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":176,"mesid":{"sat":106,"code":4}},{"cn0":199,"mesid":{"sat":35,"code":12}},{"cn0":169,"mesid":{"sat":26,"code":12}},{"cn0":160,"mesid":{"sat":34,"code":12}},{"cn0":189,"mesid":{"sat":24,"code":12}},{"cn0":157,"mesid":{"sat":25,"code":12}},{"cn0":185,"mesid":{"sat":12,"code":12}},{"cn0":185,"mesid":{"sat":19,"code":12}},{"cn0":191,"mesid":{"sat":22,"code":12}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":208,"mesid":{"sat":12,"code":13}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":196,"mesid":{"sat":12,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":193,"mesid":{"sat":25,"code":14}},{"cn0":189,"mesid":{"sat":11,"code":14}},{"cn0":205,"mesid":{"sat":24,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":160,"mesid":{"sat":31,"code":14}},{"cn0":155,"mesid":{"sat":33,"code":14}},{"cn0":200,"mesid":{"sat":25,"code":20}},{"cn0":215,"mesid":{"sat":24,"code":20}},{"cn0":194,"mesid":{"sat":11,"code":20}},{"cn0":172,"mesid":{"sat":31,"code":20}},{"cn0":207,"mesid":{"sat":12,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":170,"mesid":{"sat":33,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}}],"preamble":85,"sender":22963,"msg_type":97,"payload":"BQDUFQCzAgC+HwClAAAAAAAAGQDaDADOHQDUEgDOAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwLMGQHMDAG7HwGWEgHDHQHCAAAABQHCAAAAAAAAAAAAAAAAZAPVYgOwZgOtZQPPXQPOAAAAagO3aAPMYgSsZgTMAAAAZATHZQTCaAS5AAAAagSwIwzHGgypIgygGAy9GQydDAy5Ewy5Fgy/AAAADA3QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADA7EAAAAGQ7BCw69GA7NAAAAHw6gIQ6bGRTIGBTXCxTCHxSsDBTPAAAAIRSqAAAA","crc":42939} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MghYyC4QAAAAAAE=","wn":2098,"tow":271501400,"crc":45} -{"length":16,"flags":17,"ns":399999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EVjILhDkBwMZAxgr/oPXFw==","day":25,"tow":271501400,"year":2020,"crc":50663,"minutes":24,"month":3,"seconds":43} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.41047878049493,"preamble":85,"sender":22963,"msg_type":522,"payload":"WMguEDVuIOJl6kJAsxceJFaSXsB97SkjFWkxwAECWwQPBg==","lat":37.83123423179169,"tow":271501400,"h_accuracy":513,"crc":25656,"lon":-122.28650763453224} -{"v_accuracy":713,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"WMguEPj///8CAAAA5/////AAyQIPAg==","n":-8,"d":-25,"tow":271501400,"h_accuracy":240,"crc":35578,"e":2} -{"length":15,"gdop":155,"flags":6,"tdop":77,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"WMguEJsAhwBNAEgAcgAG","tow":271501400,"crc":51604,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"WMguEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271501400,"h_accuracy":0,"crc":2089,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"WMguEP//","tow":271501400,"crc":22832} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":9,"l2ca_bias":0,"preamble":85,"l2p_bias":0,"sender":22963,"msg_type":117,"payload":"/wAAAAAAAAAA","l1ca_bias":0,"mask":255,"crc":49809,"l1p_bias":0} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"Mgi8yC4QAAAAAAE=","wn":2098,"tow":271501500,"crc":56149} -{"length":16,"flags":17,"ns":499999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EbzILhDkBwMZAxgr/mTNHQ==","day":25,"tow":271501500,"year":2020,"crc":54537,"minutes":24,"month":3,"seconds":43} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.413949126638062,"preamble":85,"sender":22963,"msg_type":522,"payload":"vMguEKJR7OFl6kJAFHE7JFaSXsBFHumR+GkxwAECWwQPBg==","lat":37.83123420752533,"tow":271501500,"h_accuracy":513,"crc":18114,"lon":-122.28650766186576} -{"v_accuracy":713,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"vMguEAoAAAD7////CgAAAPAAyQIPAg==","n":10,"d":10,"tow":271501500,"h_accuracy":240,"crc":19054,"e":-5} -{"length":15,"gdop":155,"flags":6,"tdop":77,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"vMguEJsAhwBNAEgAcgAG","tow":271501500,"crc":45353,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"vMguEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271501500,"h_accuracy":0,"crc":43530,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"vMguEP//","tow":271501500,"crc":54441} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgggyS4QAAAAAAE=","wn":2098,"tow":271501600,"crc":50650} -{"length":16,"flags":17,"ns":599999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"ESDJLhDkBwMZAxgr/kXDIw==","day":25,"tow":271501600,"year":2020,"crc":19811,"minutes":24,"month":3,"seconds":43} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.419185197699207,"preamble":85,"sender":22963,"msg_type":522,"payload":"IMkuEIDVsOFl6kJA5sNkJFaSXsDcFZu4T2sxwAECWwQPBg==","lat":37.831234179825515,"tow":271501600,"h_accuracy":513,"crc":32002,"lon":-122.28650770035128} -{"v_accuracy":713,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"IMkuEP/////9////CwAAAPAAyQIPAg==","n":-1,"d":11,"tow":271501600,"h_accuracy":240,"crc":11014,"e":-3} -{"length":15,"gdop":155,"flags":6,"tdop":77,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"IMkuEJsAhwBNAEgAcgAG","tow":271501600,"crc":27687,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"IMkuEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271501600,"h_accuracy":0,"crc":33229,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"IMkuEP//","tow":271501600,"crc":48063} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgiEyS4QAAAAAAE=","wn":2098,"tow":271501700,"crc":16763} -{"length":16,"flags":17,"ns":699999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EYTJLhDkBwMZAxgr/ia5KQ==","day":25,"tow":271501700,"year":2020,"crc":39732,"minutes":24,"month":3,"seconds":43} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.42287449711002,"preamble":85,"sender":22963,"msg_type":522,"payload":"hMkuEFN7huFl6kJA526JJFaSXsBlZseAQWwxwAECWwQPBg==","lat":37.83123416010371,"tow":271501700,"h_accuracy":513,"crc":35769,"lon":-122.286507734501} -{"v_accuracy":713,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"hMkuEAQAAAD9////9P////AAyQIPAg==","n":4,"d":-12,"tow":271501700,"h_accuracy":240,"crc":21374,"e":-3} -{"length":15,"gdop":155,"flags":6,"tdop":77,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"hMkuEJsAhwBNAEgAcgAG","tow":271501700,"crc":16019,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"hMkuEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271501700,"h_accuracy":0,"crc":63156,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"hMkuEP//","tow":271501700,"crc":23606} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"message_type":28,"length":34,"data":[80,7,132,49,132,64,39,243,30,222,179,222,123,204,153,139,166,40,16,36,128,228,175,158,45,58,96],"preamble":85,"sender":22963,"msg_type":30583,"payload":"gwKfyC4QHFAHhDGEQCfzHt6z3nvMmYumKBAkgOSvni06YA==","tow":271501471,"crc":59324,"sid":{"sat":131,"code":2}} -{"length":136,"preamble":85,"sender":22963,"msg_type":151,"payload":"AgAaHgUALDUMAFEtFQB9GRkAbUYaAKEBHQChNx8AlQ4EAxYWBQMyIQYDTggJA18OCgNxKQsDmCUMA6oDEwMiBxQDCzEVA5UlDAyUKRMMIyAUDA8CFgxDIxgMgiMZDJ0OGgxnFR0MLAAiDI4RIwwiLQsOizIMDg88GA5sNhkOlykfDlURIQ4fDw==","crc":41336,"azel":[{"el":30,"az":26,"sid":{"sat":2,"code":0}},{"el":53,"az":44,"sid":{"sat":5,"code":0}},{"el":45,"az":81,"sid":{"sat":12,"code":0}},{"el":25,"az":125,"sid":{"sat":21,"code":0}},{"el":70,"az":109,"sid":{"sat":25,"code":0}},{"el":1,"az":161,"sid":{"sat":26,"code":0}},{"el":55,"az":161,"sid":{"sat":29,"code":0}},{"el":14,"az":149,"sid":{"sat":31,"code":0}},{"el":22,"az":22,"sid":{"sat":4,"code":3}},{"el":33,"az":50,"sid":{"sat":5,"code":3}},{"el":8,"az":78,"sid":{"sat":6,"code":3}},{"el":14,"az":95,"sid":{"sat":9,"code":3}},{"el":41,"az":113,"sid":{"sat":10,"code":3}},{"el":37,"az":152,"sid":{"sat":11,"code":3}},{"el":3,"az":170,"sid":{"sat":12,"code":3}},{"el":7,"az":34,"sid":{"sat":19,"code":3}},{"el":49,"az":11,"sid":{"sat":20,"code":3}},{"el":37,"az":149,"sid":{"sat":21,"code":3}},{"el":41,"az":148,"sid":{"sat":12,"code":12}},{"el":32,"az":35,"sid":{"sat":19,"code":12}},{"el":2,"az":15,"sid":{"sat":20,"code":12}},{"el":35,"az":67,"sid":{"sat":22,"code":12}},{"el":35,"az":130,"sid":{"sat":24,"code":12}},{"el":14,"az":157,"sid":{"sat":25,"code":12}},{"el":21,"az":103,"sid":{"sat":26,"code":12}},{"el":0,"az":44,"sid":{"sat":29,"code":12}},{"el":17,"az":142,"sid":{"sat":34,"code":12}},{"el":45,"az":34,"sid":{"sat":35,"code":12}},{"el":50,"az":139,"sid":{"sat":11,"code":14}},{"el":60,"az":15,"sid":{"sat":12,"code":14}},{"el":54,"az":108,"sid":{"sat":24,"code":14}},{"el":41,"az":151,"sid":{"sat":25,"code":14}},{"el":17,"az":85,"sid":{"sat":31,"code":14}},{"el":15,"az":31,"sid":{"sat":33,"code":14}}]} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgjoyS4QAAAAAAE=","wn":2098,"tow":271501800,"crc":3150} -{"length":16,"flags":17,"ns":799999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EejJLhDkBwMZAxgr/gevLw==","day":25,"tow":271501800,"year":2020,"crc":59451,"minutes":24,"month":3,"seconds":43} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.427177214075545,"preamble":85,"sender":22963,"msg_type":522,"payload":"6MkuEHHTM+Fl6kJAvrCdJFaSXsAFDWR8W20xwAECWwQPBg==","lat":37.83123412161411,"tow":271501800,"h_accuracy":513,"crc":63822,"lon":-122.28650775336698} -{"v_accuracy":713,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"6MkuEPf///8AAAAA/f////AAyQIPAg==","n":-9,"d":-3,"tow":271501800,"h_accuracy":240,"crc":50525,"e":0} -{"length":15,"gdop":155,"flags":6,"tdop":77,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"6MkuEJsAhwBNAEgAcgAG","tow":271501800,"crc":13689,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"6MkuEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271501800,"h_accuracy":0,"crc":45217,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"6MkuEP//","tow":271501800,"crc":2253} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":237,"states":[{"cn0":213,"mesid":{"sat":5,"code":0}},{"cn0":179,"mesid":{"sat":21,"code":0}},{"cn0":190,"mesid":{"sat":2,"code":0}},{"cn0":166,"mesid":{"sat":31,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":218,"mesid":{"sat":25,"code":0}},{"cn0":206,"mesid":{"sat":12,"code":0}},{"cn0":212,"mesid":{"sat":29,"code":0}},{"cn0":206,"mesid":{"sat":18,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":204,"mesid":{"sat":131,"code":2}},{"cn0":204,"mesid":{"sat":25,"code":1}},{"cn0":188,"mesid":{"sat":12,"code":1}},{"cn0":149,"mesid":{"sat":31,"code":1}},{"cn0":195,"mesid":{"sat":18,"code":1}},{"cn0":195,"mesid":{"sat":29,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":194,"mesid":{"sat":5,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":214,"mesid":{"sat":11,"code":3}},{"cn0":177,"mesid":{"sat":9,"code":3}},{"cn0":173,"mesid":{"sat":20,"code":3}},{"cn0":207,"mesid":{"sat":5,"code":3}},{"cn0":206,"mesid":{"sat":10,"code":3}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":183,"mesid":{"sat":4,"code":3}},{"cn0":204,"mesid":{"sat":21,"code":3}},{"cn0":172,"mesid":{"sat":9,"code":4}},{"cn0":204,"mesid":{"sat":20,"code":4}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":200,"mesid":{"sat":11,"code":4}},{"cn0":194,"mesid":{"sat":5,"code":4}},{"cn0":185,"mesid":{"sat":0,"code":4}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":176,"mesid":{"sat":4,"code":4}},{"cn0":200,"mesid":{"sat":35,"code":12}},{"cn0":169,"mesid":{"sat":26,"code":12}},{"cn0":161,"mesid":{"sat":34,"code":12}},{"cn0":189,"mesid":{"sat":24,"code":12}},{"cn0":156,"mesid":{"sat":25,"code":12}},{"cn0":185,"mesid":{"sat":12,"code":12}},{"cn0":185,"mesid":{"sat":19,"code":12}},{"cn0":191,"mesid":{"sat":22,"code":12}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":209,"mesid":{"sat":12,"code":13}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":196,"mesid":{"sat":12,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":193,"mesid":{"sat":25,"code":14}},{"cn0":189,"mesid":{"sat":11,"code":14}},{"cn0":205,"mesid":{"sat":24,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":160,"mesid":{"sat":31,"code":14}},{"cn0":154,"mesid":{"sat":33,"code":14}},{"cn0":200,"mesid":{"sat":25,"code":20}},{"cn0":215,"mesid":{"sat":24,"code":20}},{"cn0":194,"mesid":{"sat":11,"code":20}},{"cn0":172,"mesid":{"sat":31,"code":20}},{"cn0":207,"mesid":{"sat":12,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":170,"mesid":{"sat":33,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}}],"preamble":85,"sender":22963,"msg_type":97,"payload":"BQDVFQCzAgC+HwCmAAAAAAAAGQDaDADOHQDUEgDOAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwLMGQHMDAG8HwGVEgHDHQHDAAAABQHCAAAAAAAAAAAAAAAACwPWCQOxFAOtBQPPCgPOAAAABAO3FQPMCQSsFATMAAAACwTIBQTCAAS5AAAABASwIwzIGgypIgyhGAy9GQycDAy5Ewy5Fgy/AAAADA3RAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADA7EAAAAGQ7BCw69GA7NAAAAHw6gIQ6aGRTIGBTXCxTCHxSsDBTPAAAAIRSqAAAA","crc":39138} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MghMyi4QAAAAAAE=","wn":2098,"tow":271501900,"crc":16538} -{"length":16,"flags":17,"ns":899999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EUzKLhDkBwMZAxgr/uikNQ==","day":25,"tow":271501900,"year":2020,"crc":54445,"minutes":24,"month":3,"seconds":43} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.43765762543652,"preamble":85,"sender":22963,"msg_type":522,"payload":"TMouEPJB/+Bl6kJAq0GtJFaSXsBJGIRUCnAxwAECWwQPBg==","lat":37.83123409713507,"tow":271501900,"h_accuracy":513,"crc":21530,"lon":-122.28650776786405} -{"v_accuracy":713,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"TMouEAQAAAAFAAAAGgAAAPAAyQIPAg==","n":4,"d":26,"tow":271501900,"h_accuracy":240,"crc":31336,"e":5} -{"length":15,"gdop":155,"flags":6,"tdop":77,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"TMouEJsAhwBNAEgAcgAG","tow":271501900,"crc":60014,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"TMouEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271501900,"h_accuracy":0,"crc":43491,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"TMouEP//","tow":271501900,"crc":406} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":249,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":212,"i":110561903},"flags":15,"cn0":213,"P":1051961411,"D":{"f":157,"i":-172},"lock":15,"sid":{"sat":5,"code":0}},{"L":{"f":94,"i":121853030},"flags":15,"cn0":179,"P":1159393037,"D":{"f":111,"i":2180},"lock":15,"sid":{"sat":21,"code":0}},{"L":{"f":89,"i":123306111},"flags":15,"cn0":190,"P":1173218280,"D":{"f":91,"i":-2476},"lock":15,"sid":{"sat":2,"code":0}},{"L":{"f":63,"i":128733296},"flags":15,"cn0":166,"P":1224856569,"D":{"f":55,"i":-387},"lock":15,"sid":{"sat":31,"code":0}},{"L":{"f":181,"i":107808719},"flags":15,"cn0":218,"P":1025765806,"D":{"f":33,"i":-1117},"lock":15,"sid":{"sat":25,"code":0}},{"L":{"f":186,"i":114060217},"flags":15,"cn0":206,"P":1085246766,"D":{"f":71,"i":-2959},"lock":15,"sid":{"sat":12,"code":0}},{"L":{"f":97,"i":110780232},"flags":15,"cn0":212,"P":1054038784,"D":{"f":169,"i":1488},"lock":15,"sid":{"sat":29,"code":0}},{"L":{"f":17,"i":84006815},"flags":15,"cn0":204,"P":1025765831,"D":{"f":100,"i":-870},"lock":15,"sid":{"sat":25,"code":1}},{"L":{"f":97,"i":88878123},"flags":15,"cn0":187,"P":1085246712,"D":{"f":70,"i":-2305},"lock":15,"sid":{"sat":12,"code":1}},{"L":{"f":208,"i":100311661},"flags":15,"cn0":149,"P":1224856483,"D":{"f":205,"i":-301},"lock":15,"sid":{"sat":31,"code":1}},{"L":{"f":209,"i":86322260},"flags":15,"cn0":195,"P":1054038708,"D":{"f":43,"i":1160},"lock":15,"sid":{"sat":29,"code":1}},{"L":{"f":30,"i":86152162},"flags":15,"cn0":194,"P":1051961345,"D":{"f":195,"i":-134},"lock":15,"sid":{"sat":5,"code":1}},{"L":{"f":134,"i":112951684},"flags":15,"cn0":213,"P":1056868082,"D":{"f":197,"i":1179},"lock":15,"sid":{"sat":11,"code":3}},{"L":{"f":12,"i":123280242},"flags":15,"cn0":177,"P":1154321169,"D":{"f":140,"i":-4405},"lock":15,"sid":{"sat":9,"code":3}}],"payload":"sMouEAAAAAAyCEBDqLM+bwqXBtRU/53VDw8FAA3vGkVmVEMHXoQIb7MPDxUA6OPtRX+AWQdZVPZbvg8PAgD50wFJcFCsBz99/jemDw8fAK7xIz3PB20GtaP7IdoPDxkALo2vQLlrzAa6cfRHzg8PDAAAW9M+SF+aBmHQBanUDw8dAMfxIz2f1wEFEZr8ZMwPDxkB+IyvQCssTAVh//ZGuw8PDAGj0wFJbaL6BdDT/s2VDw8fAbRa0z5ULCUF0YgEK8MPDx0BAaizPuKTIgUeev/Dwg8PBQHyhv4+hIG7BoabBMXVDw8LAxGLzURyG1kHDMvujLEPDwkD","header":{"n_obs":64,"t":{"ns_residual":0,"wn":2098,"tow":271502000}},"crc":9387} -{"length":249,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":185,"i":109755817},"flags":15,"cn0":173,"P":1026244243,"D":{"f":126,"i":-1206},"lock":15,"sid":{"sat":20,"code":3}},{"L":{"f":23,"i":114887237},"flags":15,"cn0":207,"P":1074601352,"D":{"f":179,"i":2209},"lock":15,"sid":{"sat":5,"code":3}},{"L":{"f":79,"i":111566420},"flags":15,"cn0":206,"P":1046478454,"D":{"f":198,"i":-3035},"lock":15,"sid":{"sat":10,"code":3}},{"L":{"f":83,"i":120422516},"flags":15,"cn0":183,"P":1124402492,"D":{"f":131,"i":-1304},"lock":15,"sid":{"sat":4,"code":3}},{"L":{"f":210,"i":113439744},"flags":15,"cn0":204,"P":1059945987,"D":{"f":217,"i":1626},"lock":15,"sid":{"sat":21,"code":3}},{"L":{"f":87,"i":95884642},"flags":15,"cn0":172,"P":1154321319,"D":{"f":182,"i":-3428},"lock":15,"sid":{"sat":9,"code":4}},{"L":{"f":186,"i":85365671},"flags":15,"cn0":204,"P":1026244574,"D":{"f":176,"i":-939},"lock":15,"sid":{"sat":20,"code":4}},{"L":{"f":133,"i":87851320},"flags":15,"cn0":200,"P":1056868364,"D":{"f":60,"i":917},"lock":15,"sid":{"sat":11,"code":4}},{"L":{"f":191,"i":89356743},"flags":15,"cn0":194,"P":1074601593,"D":{"f":228,"i":1718},"lock":15,"sid":{"sat":5,"code":4}},{"L":{"f":91,"i":93661947},"flags":15,"cn0":176,"P":1124402693,"D":{"f":5,"i":-1014},"lock":15,"sid":{"sat":4,"code":4}},{"L":{"f":37,"i":121561573},"flags":15,"cn0":200,"P":1167230802,"D":{"f":162,"i":-1497},"lock":15,"sid":{"sat":35,"code":12}},{"L":{"f":62,"i":129175036},"flags":15,"cn0":169,"P":1240335409,"D":{"f":240,"i":-3005},"lock":15,"sid":{"sat":26,"code":12}},{"L":{"f":217,"i":132973597},"flags":15,"cn0":160,"P":1276808863,"D":{"f":129,"i":2251},"lock":15,"sid":{"sat":34,"code":12}},{"L":{"f":102,"i":125135395},"flags":15,"cn0":189,"P":1201546864,"D":{"f":239,"i":-1296},"lock":15,"sid":{"sat":24,"code":12}}],"payload":"sMouEAAAAAAyCEGTPis9qb2KBrlK+36tDw8UA4gdDUBFCtkGF6EIs88PDwUDdv5fPlRepgZPJfTGzg8PCgM8BQVDdIAtB1Po+oO3Dw8EAwN+LT8A9MIG0loG2cwPDxUDp4vNRGIVtwVXnPK2rA8PCQTePys9p5MWBbpV/LDMDw8UBAyI/j44gTwFhZUDPMgPDwsEeR4NQMd5UwW/tgbkwg8PBQQFBgVD+yqVBVsK/AWwDw8EBFKHkkXl4T4HJSf6osgPDyMMMQTuSfwNswc+Q/TwqQ8PGgyfjhpMHQTtB9nLCIGgDw8iDHAmnkcjanUHZvD6770PDxgM","header":{"n_obs":65,"t":{"ns_residual":0,"wn":2098,"tow":271502000}},"crc":18554} -{"length":249,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":125,"i":134688462},"flags":15,"cn0":156,"P":1293275161,"D":{"f":50,"i":1333},"lock":15,"sid":{"sat":25,"code":12}},{"L":{"f":151,"i":121119740},"flags":15,"cn0":185,"P":1162988621,"D":{"f":59,"i":1614},"lock":15,"sid":{"sat":12,"code":12}},{"L":{"f":115,"i":124511459},"flags":15,"cn0":185,"P":1195555797,"D":{"f":217,"i":-282},"lock":15,"sid":{"sat":19,"code":12}},{"L":{"f":76,"i":124733704},"flags":15,"cn0":191,"P":1197689826,"D":{"f":85,"i":2393},"lock":15,"sid":{"sat":22,"code":12}},{"L":{"f":241,"i":93657474},"flags":15,"cn0":209,"P":1162988531,"D":{"f":185,"i":1248},"lock":15,"sid":{"sat":12,"code":13}},{"L":{"f":96,"i":116413587},"flags":15,"cn0":196,"P":1107638427,"D":{"f":137,"i":-1024},"lock":15,"sid":{"sat":12,"code":14}},{"L":{"f":59,"i":132488133},"flags":15,"cn0":193,"P":1260582601,"D":{"f":148,"i":1095},"lock":15,"sid":{"sat":25,"code":14}},{"L":{"f":139,"i":125435329},"flags":15,"cn0":189,"P":1193477417,"D":{"f":90,"i":1052},"lock":15,"sid":{"sat":11,"code":14}},{"L":{"f":177,"i":118392781},"flags":15,"cn0":205,"P":1126469739,"D":{"f":113,"i":-1738},"lock":15,"sid":{"sat":24,"code":14}},{"L":{"f":1,"i":143282933},"flags":15,"cn0":161,"P":1363291797,"D":{"f":82,"i":-3169},"lock":15,"sid":{"sat":31,"code":14}},{"L":{"f":205,"i":144498217},"flags":15,"cn0":155,"P":1374854831,"D":{"f":153,"i":-2139},"lock":15,"sid":{"sat":33,"code":14}},{"L":{"f":183,"i":101516879},"flags":15,"cn0":200,"P":1260582564,"D":{"f":188,"i":840},"lock":15,"sid":{"sat":25,"code":20}},{"L":{"f":148,"i":90716610},"flags":15,"cn0":215,"P":1126470274,"D":{"f":24,"i":-1331},"lock":15,"sid":{"sat":24,"code":20}},{"L":{"f":207,"i":96112762},"flags":15,"cn0":194,"P":1193477233,"D":{"f":3,"i":806},"lock":15,"sid":{"sat":11,"code":20}}],"payload":"sMouEAAAAAAyCEIZ0BVNzi4HCH01BTKcDw8ZDE3MUUX8IzgHl04GO7kPDwwM1btCR+Pkawdz5v7ZuQ8PEwziS2NHCElvB0xZCVW/Dw8WDPPLUUWCGZUF8eAEudEPDwwNmzgFQpNU8AZgAPyJxA8PDA7J9iJLxZvlBztHBJTBDw8ZDikFI0fB/XkHixwEWr0PDwsOa5AkQ82HDgexNvlxzQ8PGA6VLkJR9VKKCAGf81KhDw8fDq+e8lEp3pwIzaX3mZsPDyEOpPYiS08GDQa3SAO8yA8PGRSCkiRDwjloBZTN+hjXDw8YFHEEI0d6kLoFzyYDA8IPDwsU","header":{"n_obs":66,"t":{"ns_residual":0,"wn":2098,"tow":271502000}},"crc":29286} -{"length":62,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":236,"i":109788262},"flags":15,"cn0":172,"P":1363291822,"D":{"f":65,"i":-2428},"lock":15,"sid":{"sat":31,"code":20}},{"L":{"f":25,"i":89200052},"flags":15,"cn0":207,"P":1107638275,"D":{"f":37,"i":-783},"lock":15,"sid":{"sat":12,"code":20}},{"L":{"f":42,"i":110719484},"flags":15,"cn0":170,"P":1374854791,"D":{"f":74,"i":-1639},"lock":15,"sid":{"sat":33,"code":20}}],"payload":"sMouEAAAAAAyCEOuLkJRZjyLBuyE9kGsDw8fFAM4BUK0FVEFGfH8Jc8PDwwUh57yUfxxmQYqmflKqg8PIRQ=","header":{"n_obs":67,"t":{"ns_residual":0,"wn":2098,"tow":271502000}},"crc":38695} -{"length":9,"l2ca_bias":0,"preamble":85,"l2p_bias":0,"sender":22963,"msg_type":117,"payload":"/wAAAAAAAAAA","l1ca_bias":0,"mask":255,"crc":49809,"l1p_bias":0} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"Mgiwyi4QAAAAAAE=","wn":2098,"tow":271502000,"crc":57827} -{"length":16,"flags":17,"ns":999999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EbDKLhDkBwMZAxgr/smaOw==","day":25,"tow":271502000,"year":2020,"crc":45949,"minutes":24,"month":3,"seconds":43} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.445178619649333,"preamble":85,"sender":22963,"msg_type":522,"payload":"sMouEDMQv+Bl6kJAtK7CJFaSXsC2Rdw593ExwAECWwQPBg==","lat":37.83123406724226,"tow":271502000,"h_accuracy":513,"crc":65292,"lon":-122.2865077878185} -{"v_accuracy":713,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"sMouEPH///8CAAAA+/////AAyQIPAg==","n":-15,"d":-5,"tow":271502000,"h_accuracy":240,"crc":6208,"e":2} -{"length":15,"gdop":155,"flags":6,"tdop":77,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"sMouEJsAhwBNAEgAcgAG","tow":271502000,"crc":64284,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"sMouEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271502000,"h_accuracy":0,"crc":59429,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"sMouEP//","tow":271502000,"crc":39881} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":4,"flags":2147616000,"preamble":85,"sender":22963,"msg_type":65535,"payload":"AAUCgA==","crc":40942} -{"length":24,"z":3890655.0240602265,"preamble":85,"sender":22963,"msg_type":72,"payload":"UO0a3iqORMHK1UJhIkRQwc9nFIPvrk1B","crc":2168,"x":-2694229.735196747,"y":-4264073.519704292} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"bWFpbgAAAAAAAAAAAAAAAAAAAAAAAAx1AAA=","name":"main\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":47991,"stack_free":29964,"cpu":0} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"aWRsZQAAAAAAAAAAAAAAAAAAAABjAXwAAAA=","name":"idle\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":32761,"stack_free":124,"cpu":355} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"cnBtc2cAAAAAAAAAAAAAAAAAAAABAOwNAAA=","name":"rpmsg\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":53198,"stack_free":3564,"cpu":1} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"U0JQAAAAAAAAAAAAAAAAAAAAAAAAAPz/AAA=","name":"SBP\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":51784,"stack_free":65532,"cpu":0} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"TkFQAAAAAAAAAAAAAAAAAAAAAAAAAASAAAA=","name":"NAP\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":33651,"stack_free":32772,"cpu":0} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"bWFuYWdlIFBWAAAAAAAAAAAAAAAAACQEAAA=","name":"manage PV\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":29877,"stack_free":1060,"cpu":0} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"SU1VAAAAAAAAAAAAAAAAAAAAAAAAAPQHAAA=","name":"IMU\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":14252,"stack_free":2036,"cpu":0} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"SU1VIGF1eAAAAAAAAAAAAAAAAAAAAEwIAAA=","name":"IMU aux\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":18976,"stack_free":2124,"cpu":0} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"bmRiAAAAAAAAAAAAAAAAAAAAAAAAAFAMAAA=","name":"ndb\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":26120,"stack_free":3152,"cpu":0} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"TkFQIFRyYWNraW5nAAAAAAAAAAAeAdR3AAA=","name":"NAP Tracking\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":33839,"stack_free":30676,"cpu":286} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"ZGVjb2RlAAAAAAAAAAAAAAAAAAAJANQGAAA=","name":"decode\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":55602,"stack_free":1748,"cpu":9} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"bWFuYWdlIGFjcQAAAAAAAAAAAAC7AKR3AAA=","name":"manage acq\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":54128,"stack_free":30628,"cpu":187} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"c3lzdGVtIG1vbml0b3IAAAAAAAAAACwGAAA=","name":"system monitor\u0000\u0000\u0000\u0000\u0000\u0000","crc":58531,"stack_free":1580,"cpu":0} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"V2F0Y2hkb2cAAAAAAAAAAAAAAAAAAOQDAAA=","name":"Watchdog\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":44438,"stack_free":996,"cpu":0} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"c3RhcmxpbmcAAAAAAAAAAAAAAACVAPz/AAA=","name":"starling\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":15999,"stack_free":65532,"cpu":149} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"bWVfY2FsY19wdnQAAAAAAAAAAAAJAIwjAAA=","name":"me_calc_pvt\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":57561,"stack_free":9100,"cpu":9} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"UFBTAAAAAAAAAAAAAAAAAAAAAAAAAEgHAAA=","name":"PPS\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":38576,"stack_free":1864,"cpu":0} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"c3BlY3RydW0gYW5hbHl6ZXIAAAAAANQPAAA=","name":"spectrum analyzer\u0000\u0000\u0000","crc":50933,"stack_free":4052,"cpu":0} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MggUyy4QAAAAAAE=","wn":2098,"tow":271502100,"crc":8849} -{"length":16,"flags":17,"ns":99999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"ERTLLhDkBwMZAxgs/uD1BQ==","day":25,"tow":271502100,"year":2020,"crc":10658,"minutes":24,"month":3,"seconds":44} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.45459124806901,"preamble":85,"sender":22963,"msg_type":522,"payload":"FMsuEOogtuBl6kJAkNrHJFaSXsAVgY8XYHQxwAECWwQPBg==","lat":37.83123406308171,"tow":271502100,"h_accuracy":513,"crc":14006,"lon":-122.28650779263467} -{"v_accuracy":713,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"FMsuEAcAAAANAAAAEwAAAPAAyQIPAg==","n":7,"d":19,"tow":271502100,"h_accuracy":240,"crc":22326,"e":13} -{"length":15,"gdop":155,"flags":6,"tdop":77,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"FMsuEJsAhwBNAEgAcgAG","tow":271502100,"crc":53961,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"FMsuEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271502100,"h_accuracy":0,"crc":19114,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"FMsuEP//","tow":271502100,"crc":54801} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"Mgh4yy4QAAAAAAE=","wn":2098,"tow":271502200,"crc":28580} -{"length":16,"flags":17,"ns":199999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EXjLLhDkBwMZAxgs/sHrCw==","day":25,"tow":271502200,"year":2020,"crc":21004,"minutes":24,"month":3,"seconds":44} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.460096277645867,"preamble":85,"sender":22963,"msg_type":522,"payload":"eMsuENt0i+Bl6kJA4hvoJFaSXsAWgKHeyHUxwAECWwQPBg==","lat":37.83123404321096,"tow":271502200,"h_accuracy":513,"crc":54217,"lon":-122.28650782267462} -{"v_accuracy":713,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"eMsuEPv////7////5P////AAyQIPAg==","n":-5,"d":-28,"tow":271502200,"h_accuracy":240,"crc":6437,"e":-5} -{"length":15,"gdop":155,"flags":6,"tdop":77,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"eMsuEJsAhwBNAEgAcgAG","tow":271502200,"crc":55587,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"eMsuEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271502200,"h_accuracy":0,"crc":3263,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"eMsuEP//","tow":271502200,"crc":33514} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"Mgjcyy4QAAAAAAE=","wn":2098,"tow":271502300,"crc":60165} -{"length":16,"flags":17,"ns":299999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EdzLLhDkBwMZAxgs/qLhEQ==","day":25,"tow":271502300,"year":2020,"crc":40499,"minutes":24,"month":3,"seconds":44} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.470754467056494,"preamble":85,"sender":22963,"msg_type":522,"payload":"3MsuENHvdOBl6kJAeAz6JFaSXsAcdGBdg3gxwAECWwQPBg==","lat":37.83123403272442,"tow":271502300,"h_accuracy":513,"crc":26149,"lon":-122.28650783938235} -{"v_accuracy":713,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"3MsuEAcAAAD6////CwAAAPAAyQIPAg==","n":7,"d":11,"tow":271502300,"h_accuracy":240,"crc":32383,"e":-6} -{"length":15,"gdop":155,"flags":6,"tdop":77,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"3MsuEJsAhwBNAEgAcgAG","tow":271502300,"crc":35735,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"3MsuEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271502300,"h_accuracy":0,"crc":31686,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"3MsuEP//","tow":271502300,"crc":25955} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":237,"states":[{"cn0":213,"mesid":{"sat":5,"code":0}},{"cn0":179,"mesid":{"sat":21,"code":0}},{"cn0":190,"mesid":{"sat":2,"code":0}},{"cn0":166,"mesid":{"sat":31,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":218,"mesid":{"sat":25,"code":0}},{"cn0":205,"mesid":{"sat":12,"code":0}},{"cn0":212,"mesid":{"sat":29,"code":0}},{"cn0":206,"mesid":{"sat":18,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":205,"mesid":{"sat":131,"code":2}},{"cn0":204,"mesid":{"sat":25,"code":1}},{"cn0":187,"mesid":{"sat":12,"code":1}},{"cn0":150,"mesid":{"sat":31,"code":1}},{"cn0":195,"mesid":{"sat":18,"code":1}},{"cn0":194,"mesid":{"sat":29,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":194,"mesid":{"sat":5,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":213,"mesid":{"sat":100,"code":3}},{"cn0":177,"mesid":{"sat":98,"code":3}},{"cn0":173,"mesid":{"sat":102,"code":3}},{"cn0":207,"mesid":{"sat":101,"code":3}},{"cn0":206,"mesid":{"sat":93,"code":3}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":183,"mesid":{"sat":106,"code":3}},{"cn0":204,"mesid":{"sat":104,"code":3}},{"cn0":172,"mesid":{"sat":98,"code":4}},{"cn0":205,"mesid":{"sat":102,"code":4}},{"cn0":77,"mesid":{"sat":93,"code":4}},{"cn0":199,"mesid":{"sat":100,"code":4}},{"cn0":194,"mesid":{"sat":101,"code":4}},{"cn0":185,"mesid":{"sat":104,"code":4}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":175,"mesid":{"sat":106,"code":4}},{"cn0":200,"mesid":{"sat":35,"code":12}},{"cn0":169,"mesid":{"sat":26,"code":12}},{"cn0":161,"mesid":{"sat":34,"code":12}},{"cn0":189,"mesid":{"sat":24,"code":12}},{"cn0":156,"mesid":{"sat":25,"code":12}},{"cn0":185,"mesid":{"sat":12,"code":12}},{"cn0":185,"mesid":{"sat":19,"code":12}},{"cn0":191,"mesid":{"sat":22,"code":12}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":209,"mesid":{"sat":12,"code":13}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":196,"mesid":{"sat":12,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":193,"mesid":{"sat":25,"code":14}},{"cn0":189,"mesid":{"sat":11,"code":14}},{"cn0":205,"mesid":{"sat":24,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":161,"mesid":{"sat":31,"code":14}},{"cn0":154,"mesid":{"sat":33,"code":14}},{"cn0":200,"mesid":{"sat":25,"code":20}},{"cn0":215,"mesid":{"sat":24,"code":20}},{"cn0":194,"mesid":{"sat":11,"code":20}},{"cn0":173,"mesid":{"sat":31,"code":20}},{"cn0":206,"mesid":{"sat":12,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":170,"mesid":{"sat":33,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}}],"preamble":85,"sender":22963,"msg_type":97,"payload":"BQDVFQCzAgC+HwCmAAAAAAAAGQDaDADNHQDUEgDOAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwLNGQHMDAG7HwGWEgHDHQHCAAAABQHCAAAAAAAAAAAAAAAAZAPVYgOxZgOtZQPPXQPOAAAAagO3aAPMYgSsZgTNXQRNZATHZQTCaAS5AAAAagSvIwzIGgypIgyhGAy9GQycDAy5Ewy5Fgy/AAAADA3RAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADA7EAAAAGQ7BCw69GA7NAAAAHw6hIQ6aGRTIGBTXCxTCHxStDBTOAAAAIRSqAAAA","crc":36413} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MghAzC4QAAAAAAE=","wn":2098,"tow":271502400,"crc":30017} -{"length":16,"flags":17,"ns":399999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EUDMLhDkBwMZAxgs/oPXFw==","day":25,"tow":271502400,"year":2020,"crc":13913,"minutes":24,"month":3,"seconds":44} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.4764528750067,"preamble":85,"sender":22963,"msg_type":522,"payload":"QMwuEM/0KuBl6kJAZboIJVaSXsAsPczQ+HkxwAECWwQPBg==","lat":37.83123399827456,"tow":271502400,"h_accuracy":513,"crc":21818,"lon":-122.2865078530536} -{"v_accuracy":713,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"QMwuEPj////8////DgAAAPAAyQIPAg==","n":-8,"d":14,"tow":271502400,"h_accuracy":240,"crc":28536,"e":-4} -{"length":15,"gdop":155,"flags":6,"tdop":77,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"QMwuEJsAhwBNAEgAcgAG","tow":271502400,"crc":24062,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"QMwuEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271502400,"h_accuracy":0,"crc":35959,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"QMwuEP//","tow":271502400,"crc":51184} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":9,"l2ca_bias":0,"preamble":85,"l2p_bias":0,"sender":22963,"msg_type":117,"payload":"/wAAAAAAAAAA","l1ca_bias":0,"mask":255,"crc":49809,"l1p_bias":0} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgikzC4QAAAAAAE=","wn":2098,"tow":271502500,"crc":44601} -{"length":16,"flags":17,"ns":499999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EaTMLhDkBwMZAxgs/mTNHQ==","day":25,"tow":271502500,"year":2020,"crc":9911,"minutes":24,"month":3,"seconds":44} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.485391888086976,"preamble":85,"sender":22963,"msg_type":522,"payload":"pMwuEMjb/d9l6kJArev9JFaSXsDHE42kQnwxwAECWwQPBg==","lat":37.83123397727428,"tow":271502500,"h_accuracy":513,"crc":22430,"lon":-122.28650784298834} -{"v_accuracy":713,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"pMwuEAAAAAAFAAAAAgAAAPAAyQIPAg==","n":0,"d":2,"tow":271502500,"h_accuracy":240,"crc":54181,"e":5} -{"length":15,"gdop":155,"flags":6,"tdop":77,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"pMwuEJsAhwBNAEgAcgAG","tow":271502500,"crc":9539,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"pMwuEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271502500,"h_accuracy":0,"crc":11860,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"pMwuEP//","tow":271502500,"crc":19049} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MggIzS4QAAAAAAE=","wn":2098,"tow":271502600,"crc":17588} -{"length":16,"flags":17,"ns":599999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EQjNLhDkBwMZAxgs/kXDIw==","day":25,"tow":271502600,"year":2020,"crc":27971,"minutes":24,"month":3,"seconds":44} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.490438457661238,"preamble":85,"sender":22963,"msg_type":522,"payload":"CM0uENta3N9l6kJAJkP8JFaSXsAPW/BfjX0xwAECWwQPBg==","lat":37.83123396167294,"tow":271502600,"h_accuracy":513,"crc":12765,"lon":-122.28650784144392} -{"v_accuracy":713,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"CM0uEAEAAAADAAAA8f////AAyQIPAg==","n":1,"d":-15,"tow":271502600,"h_accuracy":240,"crc":58278,"e":3} -{"length":15,"gdop":155,"flags":6,"tdop":77,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"CM0uEJsAhwBNAEgAcgAG","tow":271502600,"crc":11219,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"CM0uEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271502600,"h_accuracy":0,"crc":53880,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"CM0uEP//","tow":271502600,"crc":2803} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":147,"af0":-9.23714367672801e-4,"w":-5.725038031956664e-2,"dn":3.576934707973788e-9,"c_us":1.2642704e-5,"c_uc":1.5250407e-6,"ecc":7.52994092181325e-4,"sqrta":5282.620655059814,"preamble":85,"toc":{"wn":2098,"tow":270014},"sender":22963,"msg_type":137,"omegadot":-6.592417457791331e-9,"payload":"Iwy+HgQAMggAAABAMCoAAAEAwwCGscMAhrEAgPlBANjTQgCwzDUAHFQ3AABIsgAAOjMUuSw6w7kuPn/O4GKYQgBAAAAAgJKsSD8AAEDjnqK0QJ1VR5JSigbAf+7mjHBQPL5w7E/+60+tv7WNXBae1O4/TfYYl9sb7T0AAACArUROvwAGni0AAAAAvh4EADIIh4cA","inc":0.963454288172605,"inc_dot":2.1179453637827823e-10,"iode":135,"crc":30051,"tgd2":-3.9e-9,"common":{"health_bits":0,"fit_interval":10800,"valid":1,"sid":{"sat":35,"code":12},"toe":{"wn":2098,"tow":270014},"ura":2},"c_rs":31.1875,"m0":2.03251721619182,"af2":0,"c_rc":105.921875,"af1":1.7965185e-11,"c_is":4.33065e-8,"c_ic":-1.1641532e-8,"tgd1":-3.9e-9,"omega0":-2.817540304948763,"iodc":135} -{"length":147,"af0":6.189986597746611e-4,"w":0.32445982545408203,"dn":4.235176412097173e-9,"c_us":3.1171367e-6,"c_uc":3.4985133e-6,"ecc":6.687664426863194e-4,"sqrta":5282.61806678772,"preamble":85,"toc":{"wn":2098,"tow":270014},"sender":22963,"msg_type":137,"omegadot":-7.279231780650402e-9,"payload":"Ggy+HgQAMggAAABAMCoAAAEAjyjOsY8ozrEACItCAAKUQwDIajYAMFE2AACGMwAAADHP95QuoDAyPiLf2/NWewdAAAAAAAXqRT8AAKA5nqK0QPup189o9PU//N6OmJlDP77QO8wk88PUP5/Et3R4h+4/gsMdrMKq/D0AAACAiUhEPwAwdy0AAAAAvh4EADIIh4cA","inc":0.9540369300504102,"inc_dot":4.1716023354102695e-10,"iode":135,"crc":36026,"tgd2":-6.0e-9,"common":{"health_bits":0,"fit_interval":10800,"valid":1,"sid":{"sat":26,"code":12},"toe":{"wn":2098,"tow":270014},"ura":2},"c_rs":69.515625,"m0":2.935224442622613,"af2":0,"c_rc":296.01563,"af1":1.4050983e-11,"c_is":1.8626451e-9,"c_ic":6.239861e-8,"tgd1":-6.0e-9,"omega0":1.372170268902322,"iodc":135} -{"length":147,"af0":-8.866871939972043e-4,"w":0.5946314748905823,"dn":4.351609833445096e-9,"c_us":3.0193478e-6,"c_uc":3.3127144e-6,"ecc":5.869971355423331e-4,"sqrta":5282.613315582275,"preamble":85,"toc":{"wn":2098,"tow":270014},"sender":22963,"msg_type":137,"omegadot":-7.331733967577227e-9,"payload":"GAy+HgQAMggAAABAMCoAAAEA/+bbMf/m2zEA+IVCAKiTQwBQXjYAoEo2AABYMwAAjLIVM8pGpbAyPiifS3+Dnf4/AAAAwBY8Qz8AAEACnaK0QCg91PljXPY/lGvUpVN9P742eTqWOAfjP+Iz0JJ5fe4/ndgi/RFG+D0AAABAEg5NvwAkli0AAAAAvh4EADIIh4cA","inc":0.9528167598197081,"inc_dot":3.532289991199278e-10,"iode":135,"crc":37866,"tgd2":6.4e-9,"common":{"health_bits":0,"fit_interval":10800,"valid":1,"sid":{"sat":24,"code":12},"toe":{"wn":2098,"tow":270014},"ura":2},"c_rs":66.984375,"m0":1.9134554836727578,"af2":0,"c_rc":295.3125,"af1":1.7069013e-11,"c_is":-1.6298145e-8,"c_ic":5.029142e-8,"tgd1":6.4e-9,"omega0":1.397556281943091,"iodc":135} -{"length":147,"af0":3.375648520886898e-4,"w":-1.9081863131506556,"dn":3.0797711419728383e-9,"c_us":1.3451092e-5,"c_uc":1.7820857e-6,"ecc":1.1259819148108363e-3,"sqrta":5282.626808166504,"preamble":85,"toc":{"wn":2098,"tow":270014},"sender":22963,"msg_type":137,"omegadot":-6.337763993309523e-9,"payload":"DAy+HgQAMggAAABAMCoAAAEAzy4XMV9wCbAAABtCAMjSQgAw7zUArGE3AACoMgAAALJoI1sFfXQqPnhZ35WZjwVAAAAA4LVyUj8AAIB2oKK0QPC50DJHWwbA+Cbw+HE4O76Vghpf7of+v3czuyPlpO8/MRP6+nc/8D0AAAAAZh82PwCo3iwAAAAAvh4EADIIh4cA","inc":0.9888787935138755,"inc_dot":2.3643842003780805e-10,"iode":135,"crc":42543,"tgd2":-5.0e-10,"common":{"health_bits":0,"fit_interval":10800,"valid":1,"sid":{"sat":12,"code":12},"toe":{"wn":2098,"tow":270014},"ura":2},"c_rs":38.75,"m0":2.695117159727655,"af2":0,"c_rc":105.390625,"af1":6.3282712e-12,"c_is":-7.450581e-9,"c_ic":1.9557774e-8,"tgd1":2.2e-9,"omega0":-2.794569394106695,"iodc":135} -{"length":147,"af0":3.618638729676604e-4,"w":-1.2494646693101417,"dn":3.988380417767678e-9,"c_us":6.2091276e-6,"c_uc":-4.3381006e-6,"ecc":9.270192822441459e-4,"sqrta":5282.625810623169,"preamble":85,"toc":{"wn":2098,"tow":270014},"sender":22963,"msg_type":137,"omegadot":-7.019935265624045e-9,"payload":"Ewy+HgQAMggAAABAMCoAAAEAUbI+MlGyPjIAILLCAMhnQwCQkbYAWNA2AAB4sgAAhbO3JwNJRSExPsX1sYGVhf4/AAAAwGZgTj8AACA1oKK0QLpUxzpa1+a/nPmKHYAmPr66HEOqzv3zv9CGs83N0u4/GoYZD6w0Bb4AAACAEbc3PwD8SC0AAAAAvh4EADIIh4cA","inc":0.9632329003909152,"inc_dot":-6.171685646908344e-10,"iode":135,"crc":22496,"tgd2":1.11e-8,"common":{"health_bits":0,"fit_interval":10800,"valid":1,"sid":{"sat":19,"code":12},"toe":{"wn":2098,"tow":270014},"ura":2},"c_rs":-89.0625,"m0":1.9076132837502524,"af2":0,"c_rc":231.78125,"af1":1.1424639e-11,"c_is":-6.193295e-8,"c_ic":-1.44355e-8,"tgd1":1.11e-8,"omega0":-0.7137881420154806,"iodc":135} -{"length":147,"af0":-8.595683611929417e-4,"w":-0.4481241952228889,"dn":3.9401641236512066e-9,"c_us":6.60168e-6,"c_uc":-4.6142377e-6,"ecc":6.332750199362636e-4,"sqrta":5282.624731063843,"preamble":85,"toc":{"wn":2098,"tow":270014},"sender":22963,"msg_type":137,"omegadot":-6.962790028152671e-9,"payload":"Fgy+HgQAMggAAABAMCoAAAEA5fp/MuX6fzIAKLXCAChjQwDUmrYAhN02AADksgAAgDLoZ92aQewwPiTcBIFHTtQ/AAAAwEvARD8AAGDun6K0QNF2psYWw+a/K084KavnPb4H1cEaEa7cv5y4HRYKze4/0Nr8rnXhBb4AAAAAlSpMvwDsfy0AAAAAvh4EADIIh4cA","inc":0.962529223628525,"inc_dot":-6.36812240071619e-10,"iode":135,"crc":61525,"tgd2":1.49e-8,"common":{"health_bits":0,"fit_interval":10800,"valid":1,"sid":{"sat":22,"code":12},"toe":{"wn":2098,"tow":270014},"ura":2},"c_rs":-90.578125,"m0":0.31727779006490864,"af2":0,"c_rc":227.15625,"af1":1.4547474e-11,"c_is":1.4901161e-8,"c_ic":-2.6542693e-8,"tgd1":1.49e-8,"omega0":-0.711314571369906,"iodc":135} -{"length":147,"af0":-5.756265018135309e-4,"w":0.17131749839288932,"dn":3.5805062853157493e-9,"c_us":1.34021975e-5,"c_uc":1.5008263e-6,"ecc":5.672440165653825e-4,"sqrta":5282.627738952637,"preamble":85,"toc":{"wn":2098,"tow":270014},"sender":22963,"msg_type":137,"omegadot":-6.595989035133292e-9,"payload":"Igy+HgQAMggAAABAMCoAAAEAWdkAslnZALIAAPZBAAi9QgBwyTUA2mA3AABwMgAAKDJjDrfYncEuPsrGdL5ZIcw/AAAAQGOWQj8AAICzoKK0QIU/AkIEigbAJhks3F1UPL4vPWpWu+3FP6YFBUkK1O4/ejptkv007T0AAACAtNxCvwCgC64AAAAAvh4EADIIh4cA","inc":0.9633838106312183,"inc_dot":2.125088518466704e-10,"iode":135,"crc":62150,"tgd2":-7.5e-9,"common":{"health_bits":0,"fit_interval":10800,"valid":1,"sid":{"sat":34,"code":12},"toe":{"wn":2098,"tow":270014},"ura":2},"c_rs":30.75,"m0":0.21976777839295486,"af2":0,"c_rc":94.515625,"af1":-3.174705e-11,"c_is":9.778887e-9,"c_ic":1.3969839e-8,"tgd1":-7.5e-9,"omega0":-2.8173909336982796,"iodc":135} -{"length":147,"af0":-5.598061252385378e-4,"w":0.4555162837044739,"dn":4.254820087477957e-9,"c_us":3.4887344e-6,"c_uc":3.5273843e-6,"ecc":4.072687588632107e-4,"sqrta":5282.618574142456,"preamble":85,"toc":{"wn":2098,"tow":270014},"sender":22963,"msg_type":137,"omegadot":-7.227086751457774e-9,"payload":"GQy+HgQAMggAAABAMCoAAAEAP+2krz/tpK8AcI5CAByQQwC4bDYAIGo2AACUsgAAtLNlYpFiOUYyPjyioq2B4/M/AAAAANawOj8AAOBanqK0QNMn20Uo8vU/daM2E0QKP75XmFPFLSfdPykqFKcEh+4/DQoOoigw+j0AAACA/ldCvwCgZK0AAAAAvh4EADIIh4cA","inc":0.9539817107445902,"inc_dot":3.8108730238722235e-10,"iode":135,"crc":4271,"tgd2":-3.0e-10,"common":{"health_bits":0,"fit_interval":10800,"valid":1,"sid":{"sat":25,"code":12},"toe":{"wn":2098,"tow":270014},"ura":2},"c_rs":71.21875,"m0":1.2430435927036703,"af2":0,"c_rc":288.21875,"af1":-1.2995827e-11,"c_is":-8.381903e-8,"c_ic":-1.7229468e-8,"tgd1":-3.0e-10,"omega0":1.37162043845682,"iodc":135} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MghszS4QAAAAAAE=","wn":2098,"tow":271502700,"crc":8318} -{"length":16,"flags":17,"ns":699999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EWzNLhDkBwMZAxgs/ia5KQ==","day":25,"tow":271502700,"year":2020,"crc":50447,"minutes":24,"month":3,"seconds":44} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.495229808655402,"preamble":85,"sender":22963,"msg_type":522,"payload":"bM0uEBfhwd9l6kJAixnvJFaSXsDmLXhhx34xwAECWwQPBg==","lat":37.83123394934426,"tow":271502700,"h_accuracy":513,"crc":1734,"lon":-122.28650782918537} -{"v_accuracy":713,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"bM0uEAYAAAADAAAAFAAAAPAAyQIPAg==","n":6,"d":20,"tow":271502700,"h_accuracy":240,"crc":56213,"e":3} -{"length":15,"gdop":155,"flags":6,"tdop":77,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"bM0uEJsAhwBNAEgAcgAG","tow":271502700,"crc":1916,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"bM0uEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271502700,"h_accuracy":0,"crc":51918,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"bM0uEP//","tow":271502700,"crc":21322} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"message_type":3,"length":34,"data":[151,255,0,31,253,127,247,255,0,23,255,255,231,255,127,240,0,0,0,0,232,206,246,231,239,229,112],"preamble":85,"sender":22963,"msg_type":30583,"payload":"gwKNzC4QA5f/AB/9f/f/ABf//+f/f/AAAAAA6M725+/lcA==","tow":271502477,"crc":21291,"sid":{"sat":131,"code":2}} -{"length":136,"preamble":85,"sender":22963,"msg_type":151,"payload":"AgAaHgUALDUMAFEtFQB9GRkAbUYaAKEBHQChNx8AlQ4EAxYWBQMyIQYDTggJA18OCgNxKQsDmCUMA6oDEwMiBxQDCzEVA5UlDAyUKRMMIyAUDA8CFgxDIxgMgiMZDJ0OGgxnFR0MLAAiDI4RIwwiLQsOizIMDg88GA5sNhkOlykfDlURIQ4fDw==","crc":41336,"azel":[{"el":30,"az":26,"sid":{"sat":2,"code":0}},{"el":53,"az":44,"sid":{"sat":5,"code":0}},{"el":45,"az":81,"sid":{"sat":12,"code":0}},{"el":25,"az":125,"sid":{"sat":21,"code":0}},{"el":70,"az":109,"sid":{"sat":25,"code":0}},{"el":1,"az":161,"sid":{"sat":26,"code":0}},{"el":55,"az":161,"sid":{"sat":29,"code":0}},{"el":14,"az":149,"sid":{"sat":31,"code":0}},{"el":22,"az":22,"sid":{"sat":4,"code":3}},{"el":33,"az":50,"sid":{"sat":5,"code":3}},{"el":8,"az":78,"sid":{"sat":6,"code":3}},{"el":14,"az":95,"sid":{"sat":9,"code":3}},{"el":41,"az":113,"sid":{"sat":10,"code":3}},{"el":37,"az":152,"sid":{"sat":11,"code":3}},{"el":3,"az":170,"sid":{"sat":12,"code":3}},{"el":7,"az":34,"sid":{"sat":19,"code":3}},{"el":49,"az":11,"sid":{"sat":20,"code":3}},{"el":37,"az":149,"sid":{"sat":21,"code":3}},{"el":41,"az":148,"sid":{"sat":12,"code":12}},{"el":32,"az":35,"sid":{"sat":19,"code":12}},{"el":2,"az":15,"sid":{"sat":20,"code":12}},{"el":35,"az":67,"sid":{"sat":22,"code":12}},{"el":35,"az":130,"sid":{"sat":24,"code":12}},{"el":14,"az":157,"sid":{"sat":25,"code":12}},{"el":21,"az":103,"sid":{"sat":26,"code":12}},{"el":0,"az":44,"sid":{"sat":29,"code":12}},{"el":17,"az":142,"sid":{"sat":34,"code":12}},{"el":45,"az":34,"sid":{"sat":35,"code":12}},{"el":50,"az":139,"sid":{"sat":11,"code":14}},{"el":60,"az":15,"sid":{"sat":12,"code":14}},{"el":54,"az":108,"sid":{"sat":24,"code":14}},{"el":41,"az":151,"sid":{"sat":25,"code":14}},{"el":17,"az":85,"sid":{"sat":31,"code":14}},{"el":15,"az":31,"sid":{"sat":33,"code":14}}]} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgjQzS4QAAAAAAE=","wn":2098,"tow":271502800,"crc":57054} -{"length":16,"flags":17,"ns":799999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EdDNLhDkBwMZAxgs/gevLw==","day":25,"tow":271502800,"year":2020,"crc":34449,"minutes":24,"month":3,"seconds":44} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.498905876193543,"preamble":85,"sender":22963,"msg_type":522,"payload":"0M0uECOzfd9l6kJAE9fKJFaSXsCTCKZLuH8xwAECWwQPBg==","lat":37.8312339175957,"tow":271502800,"h_accuracy":513,"crc":51660,"lon":-122.28650779541594} -{"v_accuracy":713,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"0M0uEPn///8DAAAA7f////AAyQIPAg==","n":-7,"d":-19,"tow":271502800,"h_accuracy":240,"crc":49936,"e":3} -{"length":15,"gdop":155,"flags":6,"tdop":77,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"0M0uEJsAhwBNAEgAcgAG","tow":271502800,"crc":15367,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"0M0uEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271502800,"h_accuracy":0,"crc":24146,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"0M0uEP//","tow":271502800,"crc":41733} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":237,"states":[{"cn0":213,"mesid":{"sat":5,"code":0}},{"cn0":179,"mesid":{"sat":21,"code":0}},{"cn0":190,"mesid":{"sat":2,"code":0}},{"cn0":165,"mesid":{"sat":31,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":218,"mesid":{"sat":25,"code":0}},{"cn0":205,"mesid":{"sat":12,"code":0}},{"cn0":212,"mesid":{"sat":29,"code":0}},{"cn0":206,"mesid":{"sat":18,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":205,"mesid":{"sat":131,"code":2}},{"cn0":205,"mesid":{"sat":25,"code":1}},{"cn0":187,"mesid":{"sat":12,"code":1}},{"cn0":150,"mesid":{"sat":31,"code":1}},{"cn0":195,"mesid":{"sat":18,"code":1}},{"cn0":194,"mesid":{"sat":29,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":194,"mesid":{"sat":5,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":213,"mesid":{"sat":11,"code":3}},{"cn0":177,"mesid":{"sat":9,"code":3}},{"cn0":173,"mesid":{"sat":20,"code":3}},{"cn0":206,"mesid":{"sat":5,"code":3}},{"cn0":206,"mesid":{"sat":10,"code":3}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":183,"mesid":{"sat":4,"code":3}},{"cn0":204,"mesid":{"sat":21,"code":3}},{"cn0":172,"mesid":{"sat":9,"code":4}},{"cn0":204,"mesid":{"sat":20,"code":4}},{"cn0":70,"mesid":{"sat":10,"code":4}},{"cn0":199,"mesid":{"sat":11,"code":4}},{"cn0":194,"mesid":{"sat":5,"code":4}},{"cn0":185,"mesid":{"sat":0,"code":4}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":176,"mesid":{"sat":4,"code":4}},{"cn0":200,"mesid":{"sat":35,"code":12}},{"cn0":169,"mesid":{"sat":26,"code":12}},{"cn0":161,"mesid":{"sat":34,"code":12}},{"cn0":189,"mesid":{"sat":24,"code":12}},{"cn0":156,"mesid":{"sat":25,"code":12}},{"cn0":185,"mesid":{"sat":12,"code":12}},{"cn0":185,"mesid":{"sat":19,"code":12}},{"cn0":191,"mesid":{"sat":22,"code":12}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":209,"mesid":{"sat":12,"code":13}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":196,"mesid":{"sat":12,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":193,"mesid":{"sat":25,"code":14}},{"cn0":190,"mesid":{"sat":11,"code":14}},{"cn0":205,"mesid":{"sat":24,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":161,"mesid":{"sat":31,"code":14}},{"cn0":155,"mesid":{"sat":33,"code":14}},{"cn0":201,"mesid":{"sat":25,"code":20}},{"cn0":215,"mesid":{"sat":24,"code":20}},{"cn0":194,"mesid":{"sat":11,"code":20}},{"cn0":173,"mesid":{"sat":31,"code":20}},{"cn0":207,"mesid":{"sat":12,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":171,"mesid":{"sat":33,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}}],"preamble":85,"sender":22963,"msg_type":97,"payload":"BQDVFQCzAgC+HwClAAAAAAAAGQDaDADNHQDUEgDOAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwLNGQHNDAG7HwGWEgHDHQHCAAAABQHCAAAAAAAAAAAAAAAACwPVCQOxFAOtBQPOCgPOAAAABAO3FQPMCQSsFATMCgRGCwTHBQTCAAS5AAAABASwIwzIGgypIgyhGAy9GQycDAy5Ewy5Fgy/AAAADA3RAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADA7EAAAAGQ7BCw6+GA7NAAAAHw6hIQ6bGRTJGBTXCxTCHxStDBTPAAAAIRSrAAAA","crc":4273} -{"length":51,"text":"GLO L2OF ME 1 [+1326ms] low CN0 too long, dropping","preamble":85,"sender":22963,"msg_type":1025,"payload":"BkdMTyBMMk9GIE1FIDEgWysxMzI2bXNdIGxvdyBDTjAgdG9vIGxvbmcsIGRyb3BwaW5n","crc":24511,"level":6} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"Mgg0zi4QAAAAAAE=","wn":2098,"tow":271502900,"crc":52691} -{"length":16,"flags":17,"ns":899999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"ETTOLhDkBwMZAxgs/uikNQ==","day":25,"tow":271502900,"year":2020,"crc":36878,"minutes":24,"month":3,"seconds":44} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.509175684697105,"preamble":85,"sender":22963,"msg_type":522,"payload":"NM4uEFAsP99l6kJAGNOpJFaSXsBGsXFWWYIxwAECWwQPBg==","lat":37.83123388847946,"tow":271502900,"h_accuracy":513,"crc":61668,"lon":-122.28650776466782} -{"v_accuracy":713,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"NM4uEAAAAAAFAAAAKAAAAPAAyQIPAg==","n":0,"d":40,"tow":271502900,"h_accuracy":240,"crc":49783,"e":5} -{"length":15,"gdop":155,"flags":6,"tdop":77,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"NM4uEJsAhwBNAEgAcgAG","tow":271502900,"crc":51481,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"NM4uEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271502900,"h_accuracy":0,"crc":37450,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"NM4uEP//","tow":271502900,"crc":49230} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":249,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":120,"i":110562077},"flags":15,"cn0":213,"P":1051963062,"D":{"f":0,"i":-175},"lock":15,"sid":{"sat":5,"code":0}},{"L":{"f":202,"i":121850852},"flags":15,"cn0":179,"P":1159372321,"D":{"f":46,"i":2177},"lock":15,"sid":{"sat":21,"code":0}},{"L":{"f":129,"i":123308589},"flags":15,"cn0":190,"P":1173241866,"D":{"f":67,"i":-2481},"lock":15,"sid":{"sat":2,"code":0}},{"L":{"f":53,"i":128733684},"flags":15,"cn0":166,"P":1224860275,"D":{"f":34,"i":-389},"lock":15,"sid":{"sat":31,"code":0}},{"L":{"f":227,"i":107809837},"flags":15,"cn0":218,"P":1025776440,"D":{"f":0,"i":-1119},"lock":15,"sid":{"sat":25,"code":0}},{"L":{"f":79,"i":114063179},"flags":15,"cn0":206,"P":1085274943,"D":{"f":117,"i":-2963},"lock":15,"sid":{"sat":12,"code":0}},{"L":{"f":225,"i":110778744},"flags":15,"cn0":212,"P":1054024626,"D":{"f":239,"i":1486},"lock":15,"sid":{"sat":29,"code":0}},{"L":{"f":97,"i":84007686},"flags":15,"cn0":205,"P":1025776479,"D":{"f":156,"i":-873},"lock":15,"sid":{"sat":25,"code":1}},{"L":{"f":26,"i":88880431},"flags":15,"cn0":187,"P":1085274885,"D":{"f":206,"i":-2311},"lock":15,"sid":{"sat":12,"code":1}},{"L":{"f":34,"i":100311964},"flags":15,"cn0":150,"P":1224860186,"D":{"f":239,"i":-305},"lock":15,"sid":{"sat":31,"code":1}},{"L":{"f":185,"i":86321101},"flags":15,"cn0":195,"P":1054024552,"D":{"f":16,"i":1158},"lock":15,"sid":{"sat":29,"code":1}},{"L":{"f":108,"i":86152297},"flags":15,"cn0":194,"P":1051962988,"D":{"f":11,"i":-135},"lock":15,"sid":{"sat":5,"code":1}},{"L":{"f":175,"i":112950506},"flags":15,"cn0":213,"P":1056857064,"D":{"f":171,"i":1176},"lock":15,"sid":{"sat":11,"code":3}},{"L":{"f":62,"i":123284648},"flags":15,"cn0":177,"P":1154362412,"D":{"f":201,"i":-4408},"lock":15,"sid":{"sat":9,"code":3}}],"payload":"mM4uEAAAAAAyCEC2rrM+HQuXBnhR/wDVDw8FACGeGkXkS0MHyoEILrMPDxUACkDuRS2KWQeBT/ZDvg8PAgBz4gFJ9FGsBzV7/iKmDw8fADgbJD0tDG0G46H7ANoPDxkAP/uvQEt3zAZPbfR1zg8PDACyI9M+eFmaBuHOBe/UDw8dAF8bJD0G2wEFYZf8nM0PDxkBBfuvQC81TAUa+fbOuw8PDAEa4gFJnKP6BSLP/u+WDw8fAWgj0z7NJyUFuYYEEMMPDx0BbK6zPmmUIgVsef8Lwg8PBQHoW/4+6ny7Bq+YBKvVDw8LAywszkSoLFkHPsjuybEPDwkD","header":{"n_obs":64,"t":{"ns_residual":0,"wn":2098,"tow":271503000}},"crc":12198} -{"length":249,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":246,"i":109757024},"flags":15,"cn0":174,"P":1026255490,"D":{"f":186,"i":-1208},"lock":15,"sid":{"sat":20,"code":3}},{"L":{"f":132,"i":114885029},"flags":15,"cn0":206,"P":1074580688,"D":{"f":54,"i":2206},"lock":15,"sid":{"sat":5,"code":3}},{"L":{"f":6,"i":111569456},"flags":15,"cn0":206,"P":1046506917,"D":{"f":132,"i":-3037},"lock":15,"sid":{"sat":10,"code":3}},{"L":{"f":41,"i":120423821},"flags":15,"cn0":183,"P":1124414716,"D":{"f":154,"i":-1307},"lock":15,"sid":{"sat":4,"code":3}},{"L":{"f":252,"i":113438118},"flags":15,"cn0":204,"P":1059930783,"D":{"f":253,"i":1624},"lock":15,"sid":{"sat":21,"code":3}},{"L":{"f":96,"i":95888069},"flags":15,"cn0":172,"P":1154362579,"D":{"f":55,"i":-3427},"lock":15,"sid":{"sat":9,"code":4}},{"L":{"f":179,"i":85366610},"flags":15,"cn0":204,"P":1026255855,"D":{"f":247,"i":-940},"lock":15,"sid":{"sat":20,"code":4}},{"L":{"f":107,"i":87850404},"flags":15,"cn0":199,"P":1056857326,"D":{"f":132,"i":914},"lock":15,"sid":{"sat":11,"code":4}},{"L":{"f":190,"i":89355026},"flags":15,"cn0":194,"P":1074580934,"D":{"f":136,"i":1716},"lock":15,"sid":{"sat":5,"code":4}},{"L":{"f":61,"i":93662962},"flags":15,"cn0":176,"P":1124414825,"D":{"f":201,"i":-1018},"lock":15,"sid":{"sat":4,"code":4}},{"L":{"f":44,"i":121563070},"flags":15,"cn0":200,"P":1167245183,"D":{"f":66,"i":-1498},"lock":15,"sid":{"sat":35,"code":12}},{"L":{"f":200,"i":129178042},"flags":15,"cn0":169,"P":1240364288,"D":{"f":196,"i":-3008},"lock":15,"sid":{"sat":26,"code":12}},{"L":{"f":115,"i":132971348},"flags":15,"cn0":161,"P":1276787246,"D":{"f":217,"i":2248},"lock":15,"sid":{"sat":34,"code":12}},{"L":{"f":88,"i":125136691},"flags":15,"cn0":189,"P":1201559301,"D":{"f":201,"i":-1298},"lock":15,"sid":{"sat":24,"code":12}}],"payload":"mM4uEAAAAAAyCEGCais9YMKKBvZI+7quDw8UA9DMDEClAdkGhJ4INs4PDwUDpW1gPjBqpgYGI/SEzg8PCgP8NAVDjYUtBynl+pq3Dw8EA59CLT+m7cIG/FgG/cwPDxUD0yzORMUitwVgnfI3rA8PCQTvays9UpcWBbNU/PfMDw8UBO5c/j6kfTwFa5IDhMcPDwsExs0MQBJzUwW+tAaIwg8PBQRpNQVD8i6VBT0G/MmwDw8EBH+/kkW+5z4HLCb6QsgPDyMMAHXuSboZswfIQPTEqQ8PGgwuOhpMVPvsB3PICNmhDw8iDAVXnkczb3UHWO76yb0PDxgM","header":{"n_obs":65,"t":{"ns_residual":0,"wn":2098,"tow":271503000}},"crc":26425} -{"length":249,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":224,"i":134687130},"flags":15,"cn0":156,"P":1293262363,"D":{"f":28,"i":1331},"lock":15,"sid":{"sat":25,"code":12}},{"L":{"f":5,"i":121118127},"flags":15,"cn0":185,"P":1162973126,"D":{"f":153,"i":1611},"lock":15,"sid":{"sat":12,"code":12}},{"L":{"f":74,"i":124511741},"flags":15,"cn0":184,"P":1195558507,"D":{"f":155,"i":-283},"lock":15,"sid":{"sat":19,"code":12}},{"L":{"f":25,"i":124731312},"flags":15,"cn0":192,"P":1197666849,"D":{"f":241,"i":2390},"lock":15,"sid":{"sat":22,"code":12}},{"L":{"f":57,"i":93656227},"flags":15,"cn0":209,"P":1162973034,"D":{"f":152,"i":1246},"lock":15,"sid":{"sat":12,"code":13}},{"L":{"f":87,"i":116414612},"flags":15,"cn0":196,"P":1107648189,"D":{"f":84,"i":-1028},"lock":15,"sid":{"sat":12,"code":14}},{"L":{"f":223,"i":132487038},"flags":15,"cn0":193,"P":1260572199,"D":{"f":108,"i":1092},"lock":15,"sid":{"sat":25,"code":14}},{"L":{"f":159,"i":125434279},"flags":15,"cn0":190,"P":1193467432,"D":{"f":95,"i":1047},"lock":15,"sid":{"sat":11,"code":14}},{"L":{"f":82,"i":118394520},"flags":15,"cn0":205,"P":1126486286,"D":{"f":109,"i":-1740},"lock":15,"sid":{"sat":24,"code":14}},{"L":{"f":72,"i":143286104},"flags":15,"cn0":161,"P":1363321942,"D":{"f":221,"i":-3171},"lock":15,"sid":{"sat":31,"code":14}},{"L":{"f":204,"i":144500358},"flags":15,"cn0":155,"P":1374875205,"D":{"f":28,"i":-2142},"lock":15,"sid":{"sat":33,"code":14}},{"L":{"f":42,"i":101516041},"flags":15,"cn0":201,"P":1260572155,"D":{"f":170,"i":837},"lock":15,"sid":{"sat":25,"code":20}},{"L":{"f":195,"i":90717942},"flags":15,"cn0":215,"P":1126486819,"D":{"f":239,"i":-1335},"lock":15,"sid":{"sat":24,"code":20}},{"L":{"f":77,"i":96111958},"flags":15,"cn0":194,"P":1193467246,"D":{"f":122,"i":803},"lock":15,"sid":{"sat":11,"code":20}}],"payload":"mM4uEAAAAAAyCEIbnhVNmikHCOAzBRycDw8ZDMaPUUWvHTgHBUsGmbkPDwwMa8ZCR/3lawdK5f6buA8PEwwh8mJHsD9vBxlWCfHADw8WDGqPUUWjFJUFOd4EmNEPDwwNvV4FQpRY8AZX/PtUxA8PDA4nziJLfpflB99EBGzBDw8ZDijeIken+XkHnxcEX74PDwsODtEkQ5iODgdSNPltzQ8PGA5WpEJRWF+KCEid892hDw8fDkXu8lGG5pwIzKL3HJsPDyEO+80iSwkDDQYqRQOqyQ8PGRQj0yRD9j5oBcPJ+u/XDw8YFG7dIkdWjboFTSMDesIPDwsU","header":{"n_obs":66,"t":{"ns_residual":0,"wn":2098,"tow":271503000}},"crc":21882} -{"length":62,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":217,"i":109790692},"flags":15,"cn0":173,"P":1363321994,"D":{"f":187,"i":-2430},"lock":15,"sid":{"sat":31,"code":20}},{"L":{"f":114,"i":89200837},"flags":15,"cn0":207,"P":1107648028,"D":{"f":144,"i":-787},"lock":15,"sid":{"sat":12,"code":20}},{"L":{"f":160,"i":110721124},"flags":15,"cn0":170,"P":1374875167,"D":{"f":69,"i":-1643},"lock":15,"sid":{"sat":33,"code":20}}],"payload":"mM4uEAAAAAAyCEOKpEJR5EWLBtmC9rutDw8fFBxeBULFGFEFcu38kM8PDwwUH+7yUWR4mQaglflFqg8PIRQ=","header":{"n_obs":67,"t":{"ns_residual":0,"wn":2098,"tow":271503000}},"crc":50056} -{"length":9,"l2ca_bias":0,"preamble":85,"l2p_bias":0,"sender":22963,"msg_type":117,"payload":"/wAAAAAAAAAA","l1ca_bias":0,"mask":255,"crc":49809,"l1p_bias":0} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgiYzi4QAAAAAAE=","wn":2098,"tow":271503000,"crc":24717} -{"length":16,"flags":17,"ns":999999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EZjOLhDkBwMZAxgs/smaOw==","day":25,"tow":271503000,"year":2020,"crc":37725,"minutes":24,"month":3,"seconds":44} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.512517367642587,"preamble":85,"sender":22963,"msg_type":522,"payload":"mM4uEOxgC99l6kJAgUOgJFaSXsAsqJRWNIMxwAECWwQPBg==","lat":37.83123386436077,"tow":271503000,"h_accuracy":513,"crc":13898,"lon":-122.28650775576354} -{"v_accuracy":713,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"mM4uEPr////5////5/////AAyQIPAg==","n":-6,"d":-25,"tow":271503000,"h_accuracy":240,"crc":6454,"e":-7} -{"length":15,"gdop":155,"flags":6,"tdop":77,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"mM4uEJsAhwBNAEgAcgAG","tow":271503000,"crc":48360,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"mM4uEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271503000,"h_accuracy":0,"crc":48016,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"mM4uEP//","tow":271503000,"crc":10885} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":4,"flags":2147616000,"preamble":85,"sender":22963,"msg_type":65535,"payload":"AAUCgA==","crc":40942} -{"length":24,"z":3890655.0240602265,"preamble":85,"sender":22963,"msg_type":72,"payload":"UO0a3iqORMHK1UJhIkRQwc9nFIPvrk1B","crc":2168,"x":-2694229.735196747,"y":-4264073.519704292} -{"cpu_vint":989,"length":10,"fe_temperature":5641,"preamble":85,"sender":22963,"cpu_vaux":1780,"msg_type":181,"payload":"6xbdA/QGVBUJFg==","dev_vin":5867,"crc":25495,"cpu_temperature":5460} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"Mgj8zi4QAAAAAAE=","wn":2098,"tow":271503100,"crc":1095} -{"length":16,"flags":17,"ns":99999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EfzOLhDkBwMZAxgt/uD1BQ==","day":25,"tow":271503100,"year":2020,"crc":49533,"minutes":24,"month":3,"seconds":45} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.51979336898869,"preamble":85,"sender":22963,"msg_type":522,"payload":"/M4uEHtm7d5l6kJARpiLJFaSXsDte6AtEYUxwAECWwQPBg==","lat":37.83123385040104,"tow":271503100,"h_accuracy":513,"crc":49812,"lon":-122.28650773651415} -{"v_accuracy":713,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"/M4uEAIAAAADAAAAGgAAAPAAyQIPAg==","n":2,"d":26,"tow":271503100,"h_accuracy":240,"crc":31534,"e":3} -{"length":15,"gdop":155,"flags":6,"tdop":77,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"/M4uEJsAhwBNAEgAcgAG","tow":271503100,"crc":36935,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"/M4uEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271503100,"h_accuracy":0,"crc":41766,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"/M4uEP//","tow":271503100,"crc":29500} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"Mghgzy4QAAAAAAE=","wn":2098,"tow":271503200,"crc":6856} -{"length":16,"flags":17,"ns":199999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EWDPLhDkBwMZAxgt/sHrCw==","day":25,"tow":271503200,"year":2020,"crc":27703,"minutes":24,"month":3,"seconds":45} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.524361152140592,"preamble":85,"sender":22963,"msg_type":522,"payload":"YM8uECPRy95l6kJAeAZ9JFaSXsCavE+IPIYxwAECWwQPBg==","lat":37.831233834762564,"tow":271503200,"h_accuracy":513,"crc":8014,"lon":-122.2865077229452} -{"v_accuracy":713,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"YM8uEP/////5////+v////AAyQIPAg==","n":-1,"d":-6,"tow":271503200,"h_accuracy":240,"crc":13948,"e":-7} -{"length":15,"gdop":155,"flags":6,"tdop":77,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"YM8uEJsAhwBNAEgAcgAG","tow":271503200,"crc":19785,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"YM8uEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271503200,"h_accuracy":0,"crc":35041,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"YM8uEP//","tow":271503200,"crc":7210} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgjEzy4QAAAAAAE=","wn":2098,"tow":271503300,"crc":40553} -{"length":16,"flags":17,"ns":299999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EcTPLhDkBwMZAxgt/qLhEQ==","day":25,"tow":271503300,"year":2020,"crc":40968,"minutes":24,"month":3,"seconds":45} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.53280142938859,"preamble":85,"sender":22963,"msg_type":522,"payload":"xM8uEILLqt5l6kJA6adJJFaSXsBufKqsZYgxwAECWwQPBg==","lat":37.8312338193855,"tow":271503300,"h_accuracy":513,"crc":39585,"lon":-122.28650767510375} -{"v_accuracy":713,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"xM8uEAAAAAALAAAAEgAAAPAAyQIPAg==","n":0,"d":18,"tow":271503300,"h_accuracy":240,"crc":30451,"e":11} -{"length":15,"gdop":155,"flags":6,"tdop":77,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"xM8uEJsAhwBNAEgAcgAG","tow":271503300,"crc":8189,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"xM8uEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271503300,"h_accuracy":0,"crc":65432,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"xM8uEP//","tow":271503300,"crc":64419} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":237,"states":[{"cn0":213,"mesid":{"sat":5,"code":0}},{"cn0":180,"mesid":{"sat":21,"code":0}},{"cn0":190,"mesid":{"sat":2,"code":0}},{"cn0":166,"mesid":{"sat":31,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":219,"mesid":{"sat":25,"code":0}},{"cn0":206,"mesid":{"sat":12,"code":0}},{"cn0":213,"mesid":{"sat":29,"code":0}},{"cn0":207,"mesid":{"sat":18,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":205,"mesid":{"sat":131,"code":2}},{"cn0":205,"mesid":{"sat":25,"code":1}},{"cn0":187,"mesid":{"sat":12,"code":1}},{"cn0":148,"mesid":{"sat":31,"code":1}},{"cn0":195,"mesid":{"sat":18,"code":1}},{"cn0":195,"mesid":{"sat":29,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":194,"mesid":{"sat":5,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":213,"mesid":{"sat":100,"code":3}},{"cn0":177,"mesid":{"sat":98,"code":3}},{"cn0":173,"mesid":{"sat":102,"code":3}},{"cn0":206,"mesid":{"sat":101,"code":3}},{"cn0":206,"mesid":{"sat":93,"code":3}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":183,"mesid":{"sat":106,"code":3}},{"cn0":204,"mesid":{"sat":104,"code":3}},{"cn0":172,"mesid":{"sat":98,"code":4}},{"cn0":204,"mesid":{"sat":102,"code":4}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":199,"mesid":{"sat":100,"code":4}},{"cn0":194,"mesid":{"sat":101,"code":4}},{"cn0":185,"mesid":{"sat":104,"code":4}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":176,"mesid":{"sat":106,"code":4}},{"cn0":200,"mesid":{"sat":35,"code":12}},{"cn0":169,"mesid":{"sat":26,"code":12}},{"cn0":161,"mesid":{"sat":34,"code":12}},{"cn0":189,"mesid":{"sat":24,"code":12}},{"cn0":157,"mesid":{"sat":25,"code":12}},{"cn0":185,"mesid":{"sat":12,"code":12}},{"cn0":185,"mesid":{"sat":19,"code":12}},{"cn0":192,"mesid":{"sat":22,"code":12}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":208,"mesid":{"sat":12,"code":13}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":196,"mesid":{"sat":12,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":193,"mesid":{"sat":25,"code":14}},{"cn0":189,"mesid":{"sat":11,"code":14}},{"cn0":205,"mesid":{"sat":24,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":161,"mesid":{"sat":31,"code":14}},{"cn0":155,"mesid":{"sat":33,"code":14}},{"cn0":201,"mesid":{"sat":25,"code":20}},{"cn0":215,"mesid":{"sat":24,"code":20}},{"cn0":193,"mesid":{"sat":11,"code":20}},{"cn0":173,"mesid":{"sat":31,"code":20}},{"cn0":206,"mesid":{"sat":12,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":171,"mesid":{"sat":33,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}}],"preamble":85,"sender":22963,"msg_type":97,"payload":"BQDVFQC0AgC+HwCmAAAAAAAAGQDbDADOHQDVEgDPAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwLNGQHNDAG7HwGUEgHDHQHDAAAABQHCAAAAAAAAAAAAAAAAZAPVYgOxZgOtZQPOXQPOAAAAagO3aAPMYgSsZgTMAAAAZATHZQTCaAS5AAAAagSwIwzIGgypIgyhGAy9GQydDAy5Ewy5FgzAAAAADA3QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADA7EAAAAGQ7BCw69GA7NAAAAHw6hIQ6bGRTJGBTXCxTBHxStDBTOAAAAIRSrAAAA","crc":63950} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"Mggo0C4QAAAAAAE=","wn":2098,"tow":271503400,"crc":34968} -{"length":16,"flags":17,"ns":399999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"ESjQLhDkBwMZAxgt/oPXFw==","day":25,"tow":271503400,"year":2020,"crc":56425,"minutes":24,"month":3,"seconds":45} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.5371405866384,"preamble":85,"sender":22963,"msg_type":522,"payload":"KNAuEHZlnt5l6kJA4WklJFaSXsBY96QLgokxwAECWwQPBg==","lat":37.831233813611945,"tow":271503400,"h_accuracy":513,"crc":23239,"lon":-122.28650764135047} -{"v_accuracy":713,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"KNAuEAEAAAD8////+P////AAyQIPAg==","n":1,"d":-8,"tow":271503400,"h_accuracy":240,"crc":29280,"e":-4} -{"length":15,"gdop":155,"flags":6,"tdop":77,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"KNAuEJsAhwBNAEgAcgAG","tow":271503400,"crc":7583,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"KNAuEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271503400,"h_accuracy":0,"crc":19235,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"KNAuEP//","tow":271503400,"crc":6875} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":9,"l2ca_bias":0,"preamble":85,"l2p_bias":0,"sender":22963,"msg_type":117,"payload":"/wAAAAAAAAAA","l1ca_bias":0,"mask":255,"crc":49809,"l1p_bias":0} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgiM0C4QAAAAAAE=","wn":2098,"tow":271503500,"crc":3129} -{"length":16,"flags":17,"ns":499999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EYzQLhDkBwMZAxgt/mTNHQ==","day":25,"tow":271503500,"year":2020,"crc":59022,"minutes":24,"month":3,"seconds":45} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.543637478861665,"preamble":85,"sender":22963,"msg_type":522,"payload":"jNAuEFvslt5l6kJAccL3I1aSXsA7l2jTK4sxwAECWwQPBg==","lat":37.83123381013203,"tow":271503500,"h_accuracy":513,"crc":42755,"lon":-122.28650759883182} -{"v_accuracy":713,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"jNAuEP3///8OAAAADwAAAPAAyQIPAg==","n":-3,"d":15,"tow":271503500,"h_accuracy":240,"crc":61626,"e":14} -{"length":15,"gdop":155,"flags":6,"tdop":77,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"jNAuEJsAhwBNAEgAcgAG","tow":271503500,"crc":20267,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"jNAuEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271503500,"h_accuracy":0,"crc":15450,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"jNAuEP//","tow":271503500,"crc":64850} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"Mgjw0C4QAAAAAAE=","wn":2098,"tow":271503600,"crc":4850} -{"length":16,"flags":17,"ns":599999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EfDQLhDkBwMZAxgt/kXDIw==","day":25,"tow":271503600,"year":2020,"crc":59018,"minutes":24,"month":3,"seconds":45} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.54348041741564,"preamble":85,"sender":22963,"msg_type":522,"payload":"8NAuEFH5fd5l6kJAXSPqI1aSXsAN0VqIIYsxwAECWwQPBg==","lat":37.83123379851407,"tow":271503600,"h_accuracy":513,"crc":51630,"lon":-122.2865075861459} -{"v_accuracy":713,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"8NAuEPT////8////4/////AAyQIPAg==","n":-12,"d":-29,"tow":271503600,"h_accuracy":240,"crc":49109,"e":-4} -{"length":15,"gdop":155,"flags":6,"tdop":77,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"8NAuEJsAhwBNAEgAcgAG","tow":271503600,"crc":2635,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"8NAuEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271503600,"h_accuracy":0,"crc":50953,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"8NAuEP//","tow":271503600,"crc":45869} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"message_type":4,"length":34,"data":[151,255,127,255,253,127,240,1,127,255,254,255,239,251,127,247,255,127,247,255,238,94,110,170,175,255,240],"preamble":85,"sender":22963,"msg_type":30583,"payload":"gwJv0C4QBJf/f//9f/ABf//+/+/7f/f/f/f/7l5uqq//8A==","tow":271503471,"crc":25189,"sid":{"sat":131,"code":2}} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MghU0S4QAAAAAAE=","wn":2098,"tow":271503700,"crc":53632} -{"length":16,"flags":17,"ns":699999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EVTRLhDkBwMZAxgt/ia5KQ==","day":25,"tow":271503700,"year":2020,"crc":19388,"minutes":24,"month":3,"seconds":45} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.54843135838237,"preamble":85,"sender":22963,"msg_type":522,"payload":"VNEuEPj4pN5l6kJAX5biI1aSXsBnWlz/ZYwxwAECWwQPBg==","lat":37.83123381667423,"tow":271503700,"h_accuracy":513,"crc":48536,"lon":-122.28650757911372} -{"v_accuracy":713,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"VNEuEAgAAAD8////FQAAAPAAyQIPAg==","n":8,"d":21,"tow":271503700,"h_accuracy":240,"crc":51072,"e":-4} -{"length":15,"gdop":155,"flags":6,"tdop":77,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"VNEuEJsAhwBNAEgAcgAG","tow":271503700,"crc":9118,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"VNEuEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271503700,"h_accuracy":0,"crc":25990,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"VNEuEP//","tow":271503700,"crc":65269} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":136,"preamble":85,"sender":22963,"msg_type":151,"payload":"AgAaHgUALDUMAFEtFQB9GRkAbUYaAKEBHQChNx8AlQ4EAxYWBQMyIQYDTggJA18OCgNxKQsDmCUMA6oDEwMiBxQDCzEVA5UlDAyUKRMMIyAUDA8CFgxDIxgMgiMZDJ0OGgxnFR0MLAAiDI4RIwwiLQsOizIMDg88GA5sNhkOlykfDlURIQ4fDw==","crc":41336,"azel":[{"el":30,"az":26,"sid":{"sat":2,"code":0}},{"el":53,"az":44,"sid":{"sat":5,"code":0}},{"el":45,"az":81,"sid":{"sat":12,"code":0}},{"el":25,"az":125,"sid":{"sat":21,"code":0}},{"el":70,"az":109,"sid":{"sat":25,"code":0}},{"el":1,"az":161,"sid":{"sat":26,"code":0}},{"el":55,"az":161,"sid":{"sat":29,"code":0}},{"el":14,"az":149,"sid":{"sat":31,"code":0}},{"el":22,"az":22,"sid":{"sat":4,"code":3}},{"el":33,"az":50,"sid":{"sat":5,"code":3}},{"el":8,"az":78,"sid":{"sat":6,"code":3}},{"el":14,"az":95,"sid":{"sat":9,"code":3}},{"el":41,"az":113,"sid":{"sat":10,"code":3}},{"el":37,"az":152,"sid":{"sat":11,"code":3}},{"el":3,"az":170,"sid":{"sat":12,"code":3}},{"el":7,"az":34,"sid":{"sat":19,"code":3}},{"el":49,"az":11,"sid":{"sat":20,"code":3}},{"el":37,"az":149,"sid":{"sat":21,"code":3}},{"el":41,"az":148,"sid":{"sat":12,"code":12}},{"el":32,"az":35,"sid":{"sat":19,"code":12}},{"el":2,"az":15,"sid":{"sat":20,"code":12}},{"el":35,"az":67,"sid":{"sat":22,"code":12}},{"el":35,"az":130,"sid":{"sat":24,"code":12}},{"el":14,"az":157,"sid":{"sat":25,"code":12}},{"el":21,"az":103,"sid":{"sat":26,"code":12}},{"el":0,"az":44,"sid":{"sat":29,"code":12}},{"el":17,"az":142,"sid":{"sat":34,"code":12}},{"el":45,"az":34,"sid":{"sat":35,"code":12}},{"el":50,"az":139,"sid":{"sat":11,"code":14}},{"el":60,"az":15,"sid":{"sat":12,"code":14}},{"el":54,"az":108,"sid":{"sat":24,"code":14}},{"el":41,"az":151,"sid":{"sat":25,"code":14}},{"el":17,"az":85,"sid":{"sat":31,"code":14}},{"el":15,"az":31,"sid":{"sat":33,"code":14}}]} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"Mgi40S4QAAAAAAE=","wn":2098,"tow":271503800,"crc":8967} -{"length":16,"flags":17,"ns":799999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EbjRLhDkBwMZAxgt/gevLw==","day":25,"tow":271503800,"year":2020,"crc":27809,"minutes":24,"month":3,"seconds":45} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.554397581544016,"preamble":85,"sender":22963,"msg_type":522,"payload":"uNEuEPLE3d5l6kJArzbNI1aSXsCKtvn/7I0xwAECWwQPBg==","lat":37.83123384312229,"tow":271503800,"h_accuracy":513,"crc":40381,"lon":-122.28650755920783} -{"v_accuracy":713,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"uNEuEBEAAAABAAAABgAAAPAAyQIPAg==","n":17,"d":6,"tow":271503800,"h_accuracy":240,"crc":13993,"e":1} -{"length":15,"gdop":155,"flags":6,"tdop":77,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"uNEuEJsAhwBNAEgAcgAG","tow":271503800,"crc":31846,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"uNEuEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271503800,"h_accuracy":0,"crc":39174,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"uNEuEP//","tow":271503800,"crc":32302} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":237,"states":[{"cn0":214,"mesid":{"sat":5,"code":0}},{"cn0":181,"mesid":{"sat":21,"code":0}},{"cn0":191,"mesid":{"sat":2,"code":0}},{"cn0":167,"mesid":{"sat":31,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":219,"mesid":{"sat":25,"code":0}},{"cn0":207,"mesid":{"sat":12,"code":0}},{"cn0":213,"mesid":{"sat":29,"code":0}},{"cn0":207,"mesid":{"sat":18,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":206,"mesid":{"sat":131,"code":2}},{"cn0":205,"mesid":{"sat":25,"code":1}},{"cn0":187,"mesid":{"sat":12,"code":1}},{"cn0":150,"mesid":{"sat":31,"code":1}},{"cn0":196,"mesid":{"sat":18,"code":1}},{"cn0":195,"mesid":{"sat":29,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":195,"mesid":{"sat":5,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":213,"mesid":{"sat":11,"code":3}},{"cn0":177,"mesid":{"sat":9,"code":3}},{"cn0":174,"mesid":{"sat":20,"code":3}},{"cn0":206,"mesid":{"sat":5,"code":3}},{"cn0":206,"mesid":{"sat":10,"code":3}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":184,"mesid":{"sat":4,"code":3}},{"cn0":204,"mesid":{"sat":21,"code":3}},{"cn0":171,"mesid":{"sat":9,"code":4}},{"cn0":204,"mesid":{"sat":20,"code":4}},{"cn0":65,"mesid":{"sat":10,"code":4}},{"cn0":199,"mesid":{"sat":11,"code":4}},{"cn0":194,"mesid":{"sat":5,"code":4}},{"cn0":186,"mesid":{"sat":0,"code":4}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":176,"mesid":{"sat":4,"code":4}},{"cn0":200,"mesid":{"sat":35,"code":12}},{"cn0":169,"mesid":{"sat":26,"code":12}},{"cn0":161,"mesid":{"sat":34,"code":12}},{"cn0":189,"mesid":{"sat":24,"code":12}},{"cn0":157,"mesid":{"sat":25,"code":12}},{"cn0":185,"mesid":{"sat":12,"code":12}},{"cn0":184,"mesid":{"sat":19,"code":12}},{"cn0":192,"mesid":{"sat":22,"code":12}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":208,"mesid":{"sat":12,"code":13}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":195,"mesid":{"sat":12,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":193,"mesid":{"sat":25,"code":14}},{"cn0":189,"mesid":{"sat":11,"code":14}},{"cn0":204,"mesid":{"sat":24,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":160,"mesid":{"sat":31,"code":14}},{"cn0":154,"mesid":{"sat":33,"code":14}},{"cn0":201,"mesid":{"sat":25,"code":20}},{"cn0":215,"mesid":{"sat":24,"code":20}},{"cn0":193,"mesid":{"sat":11,"code":20}},{"cn0":172,"mesid":{"sat":31,"code":20}},{"cn0":206,"mesid":{"sat":12,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":170,"mesid":{"sat":33,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}}],"preamble":85,"sender":22963,"msg_type":97,"payload":"BQDWFQC1AgC/HwCnAAAAAAAAGQDbDADPHQDVEgDPAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwLOGQHNDAG7HwGWEgHEHQHDAAAABQHDAAAAAAAAAAAAAAAACwPVCQOxFAOuBQPOCgPOAAAABAO4FQPMCQSrFATMCgRBCwTHBQTCAAS6AAAABASwIwzIGgypIgyhGAy9GQydDAy5Ewy4FgzAAAAADA3QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADA7DAAAAGQ7BCw69GA7MAAAAHw6gIQ6aGRTJGBTXCxTBHxSsDBTOAAAAIRSqAAAA","crc":60393} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"Mggc0i4QAAAAAAE=","wn":2098,"tow":271503900,"crc":28627} -{"length":16,"flags":17,"ns":899999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"ERzSLhDkBwMZAxgt/uikNQ==","day":25,"tow":271503900,"year":2020,"crc":20535,"minutes":24,"month":3,"seconds":45} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.562479248979372,"preamble":85,"sender":22963,"msg_type":522,"payload":"HNIuECbN6N5l6kJAEEe0I1aSXsCIC9uj/o8xwAECWwQPBg==","lat":37.83123384825949,"tow":271503900,"h_accuracy":513,"crc":37637,"lon":-122.28650753598436} -{"v_accuracy":713,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"HNIuEPb///8BAAAAGQAAAPAAyQIPAg==","n":-10,"d":25,"tow":271503900,"h_accuracy":240,"crc":49661,"e":1} -{"length":15,"gdop":155,"flags":6,"tdop":77,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"HNIuEJsAhwBNAEgAcgAG","tow":271503900,"crc":41841,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"HNIuEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271503900,"h_accuracy":0,"crc":32836,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"HNIuEP//","tow":271503900,"crc":30581} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":249,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":214,"i":110562251},"flags":15,"cn0":213,"P":1051964723,"D":{"f":50,"i":-174},"lock":15,"sid":{"sat":5,"code":0}},{"L":{"f":130,"i":121848675},"flags":15,"cn0":180,"P":1159351599,"D":{"f":209,"i":2176},"lock":15,"sid":{"sat":21,"code":0}},{"L":{"f":185,"i":123311067},"flags":15,"cn0":190,"P":1173265439,"D":{"f":235,"i":-2479},"lock":15,"sid":{"sat":2,"code":0}},{"L":{"f":194,"i":128734072},"flags":15,"cn0":166,"P":1224863971,"D":{"f":206,"i":-390},"lock":15,"sid":{"sat":31,"code":0}},{"L":{"f":184,"i":107810956},"flags":15,"cn0":219,"P":1025787090,"D":{"f":19,"i":-1118},"lock":15,"sid":{"sat":25,"code":0}},{"L":{"f":81,"i":114066141},"flags":15,"cn0":206,"P":1085303130,"D":{"f":13,"i":-2963},"lock":15,"sid":{"sat":12,"code":0}},{"L":{"f":158,"i":110777257},"flags":15,"cn0":213,"P":1054010477,"D":{"f":140,"i":1487},"lock":15,"sid":{"sat":29,"code":0}},{"L":{"f":50,"i":84008558},"flags":15,"cn0":205,"P":1025787121,"D":{"f":59,"i":-871},"lock":15,"sid":{"sat":25,"code":1}},{"L":{"f":41,"i":88882739},"flags":15,"cn0":188,"P":1085303061,"D":{"f":194,"i":-2309},"lock":15,"sid":{"sat":12,"code":1}},{"L":{"f":231,"i":100312266},"flags":15,"cn0":150,"P":1224863893,"D":{"f":79,"i":-306},"lock":15,"sid":{"sat":31,"code":1}},{"L":{"f":212,"i":86319942},"flags":15,"cn0":195,"P":1054010395,"D":{"f":205,"i":1158},"lock":15,"sid":{"sat":29,"code":1}},{"L":{"f":75,"i":86152433},"flags":15,"cn0":194,"P":1051964643,"D":{"f":121,"i":-137},"lock":15,"sid":{"sat":5,"code":1}},{"L":{"f":195,"i":112949329},"flags":15,"cn0":213,"P":1056846050,"D":{"f":192,"i":1177},"lock":15,"sid":{"sat":11,"code":3}},{"L":{"f":133,"i":123289054},"flags":15,"cn0":177,"P":1154403653,"D":{"f":103,"i":-4406},"lock":15,"sid":{"sat":9,"code":3}}],"payload":"gNIuEAAAAAAyCEAztbM+ywuXBtZS/zLVDw8FAC9NGkVjQ0MHgoAI0bQPDxUAH5zuRduTWQe5Ufbrvg8PAgDj8AFJeFOsB8J6/s6mDw8fANJEJD2MEG0GuKL7E9sPDxkAWmmwQN2CzAZRbfQNzg8PDABt7NI+qVOaBp7PBYzVDw8dAPFEJD1u3gEFMpn8O80PDxkBFWmwQDM+TAUp+/bCvA8PDAGV8AFJyqT6BefO/k+WDw8fARvs0j5GIyUF1IYEzcMPDx0B47SzPvGUIgVLd/95wg8PBQHiMP4+UXi7BsOZBMDVDw8LA0XNzkTePVkHhcruZ7EPDwkD","header":{"n_obs":64,"t":{"ns_residual":0,"wn":2098,"tow":271504000}},"crc":12493} -{"length":249,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":105,"i":109758232},"flags":15,"cn0":174,"P":1026266770,"D":{"f":16,"i":-1208},"lock":15,"sid":{"sat":20,"code":3}},{"L":{"f":168,"i":114882822},"flags":15,"cn0":206,"P":1074560023,"D":{"f":116,"i":2206},"lock":15,"sid":{"sat":5,"code":3}},{"L":{"f":90,"i":111572492},"flags":15,"cn0":206,"P":1046535402,"D":{"f":10,"i":-3036},"lock":15,"sid":{"sat":10,"code":3}},{"L":{"f":215,"i":120425126},"flags":15,"cn0":184,"P":1124426905,"D":{"f":238,"i":-1307},"lock":15,"sid":{"sat":4,"code":3}},{"L":{"f":91,"i":113436493},"flags":15,"cn0":204,"P":1059915605,"D":{"f":176,"i":1625},"lock":15,"sid":{"sat":21,"code":3}},{"L":{"f":123,"i":95891496},"flags":15,"cn0":172,"P":1154403834,"D":{"f":237,"i":-3428},"lock":15,"sid":{"sat":9,"code":4}},{"L":{"f":210,"i":85367549},"flags":15,"cn0":204,"P":1026267156,"D":{"f":42,"i":-940},"lock":15,"sid":{"sat":20,"code":4}},{"L":{"f":10,"i":87849489},"flags":15,"cn0":199,"P":1056846326,"D":{"f":115,"i":915},"lock":15,"sid":{"sat":11,"code":4}},{"L":{"f":79,"i":89353310},"flags":15,"cn0":194,"P":1074560317,"D":{"f":56,"i":1717},"lock":15,"sid":{"sat":5,"code":4}},{"L":{"f":198,"i":93663977},"flags":15,"cn0":176,"P":1124427045,"D":{"f":144,"i":-1016},"lock":15,"sid":{"sat":4,"code":4}},{"L":{"f":91,"i":121564567},"flags":15,"cn0":200,"P":1167259556,"D":{"f":245,"i":-1498},"lock":15,"sid":{"sat":35,"code":12}},{"L":{"f":104,"i":129181049},"flags":15,"cn0":169,"P":1240393159,"D":{"f":94,"i":-3008},"lock":15,"sid":{"sat":26,"code":12}},{"L":{"f":32,"i":132969099},"flags":15,"cn0":161,"P":1276765648,"D":{"f":47,"i":2249},"lock":15,"sid":{"sat":34,"code":12}},{"L":{"f":199,"i":125137987},"flags":15,"cn0":189,"P":1201571756,"D":{"f":69,"i":-1297},"lock":15,"sid":{"sat":24,"code":12}}],"payload":"gNIuEAAAAAAyCEGSlis9GMeKBmlI+xCuDw8UAxd8DEAG+dgGqJ4IdM4PDwUD6txgPgx2pgZaJPQKzg8PCgOZZAVDpootB9fl+u64Dw8EA1UHLT9N58IGW1kGsMwPDxUD+s3ORCgwtwV7nPLtrA8PCQQUmCs9/ZoWBdJU/CrMDw8UBPYx/j4RejwFCpMDc8cPDwsEPX0MQF5sUwVPtQY4wg8PBQQlZQVD6TKVBcYI/JCwDw8EBKT3kkWX7T4HWyb69cgPDyMMx+XuSXklswdoQPReqQ8PGgzQ5RlMi/LsByDJCC+hDw8iDKyHnkdDdHUHx+/6Rb0PDxgM","header":{"n_obs":65,"t":{"ns_residual":0,"wn":2098,"tow":271504000}},"crc":44911} -{"length":249,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":185,"i":134685799},"flags":15,"cn0":157,"P":1293249574,"D":{"f":62,"i":1331},"lock":15,"sid":{"sat":25,"code":12}},{"L":{"f":147,"i":121116513},"flags":15,"cn0":185,"P":1162957636,"D":{"f":235,"i":1614},"lock":15,"sid":{"sat":12,"code":12}},{"L":{"f":182,"i":124512023},"flags":15,"cn0":184,"P":1195561214,"D":{"f":142,"i":-283},"lock":15,"sid":{"sat":19,"code":12}},{"L":{"f":63,"i":124728920},"flags":15,"cn0":192,"P":1197643885,"D":{"f":182,"i":2391},"lock":15,"sid":{"sat":22,"code":12}},{"L":{"f":154,"i":93654979},"flags":15,"cn0":208,"P":1162957547,"D":{"f":203,"i":1247},"lock":15,"sid":{"sat":12,"code":13}},{"L":{"f":112,"i":116415637},"flags":15,"cn0":195,"P":1107657941,"D":{"f":109,"i":-1026},"lock":15,"sid":{"sat":12,"code":14}},{"L":{"f":248,"i":132485944},"flags":15,"cn0":193,"P":1260561781,"D":{"f":69,"i":1095},"lock":15,"sid":{"sat":25,"code":14}},{"L":{"f":219,"i":125433229},"flags":15,"cn0":189,"P":1193457451,"D":{"f":24,"i":1051},"lock":15,"sid":{"sat":11,"code":14}},{"L":{"f":98,"i":118396259},"flags":15,"cn0":205,"P":1126502832,"D":{"f":131,"i":-1740},"lock":15,"sid":{"sat":24,"code":14}},{"L":{"f":171,"i":143289275},"flags":15,"cn0":161,"P":1363352138,"D":{"f":230,"i":-3171},"lock":15,"sid":{"sat":31,"code":14}},{"L":{"f":180,"i":144502499},"flags":15,"cn0":154,"P":1374895565,"D":{"f":245,"i":-2145},"lock":15,"sid":{"sat":33,"code":14}},{"L":{"f":255,"i":101515202},"flags":15,"cn0":201,"P":1260561748,"D":{"f":160,"i":838},"lock":15,"sid":{"sat":25,"code":20}},{"L":{"f":75,"i":90719275},"flags":15,"cn0":215,"P":1126503366,"D":{"f":220,"i":-1334},"lock":15,"sid":{"sat":24,"code":20}},{"L":{"f":246,"i":96111153},"flags":15,"cn0":194,"P":1193457257,"D":{"f":4,"i":804},"lock":15,"sid":{"sat":11,"code":20}}],"payload":"gNIuEAAAAAAyCEImbBVNZyQHCLkzBT6dDw8ZDERTUUVhFzgHk04G67kPDwwM/tBCRxfnawe25f6OuA8PEwxtmGJHWDZvBz9XCbbADw8WDOtSUUXDD5UFmt8Ey9APDwwN1YQFQpVc8AZw/vttww8PDA51pSJLOJPlB/hHBEXBDw8ZDiu3IkeN9XkH2xsEGL0PDwsOsBElQ2OVDgdiNPmDzQ8PGA5KGkNRu2uKCKud8+ahDw8fDs0981Hj7pwItJ/39ZoPDyEOVKUiS8L/DAb/RgOgyQ8PGRTGEyVDK0RoBUvK+tzXDw8YFGm2IkcxiroF9iQDBMIPDwsU","header":{"n_obs":66,"t":{"ns_residual":0,"wn":2098,"tow":271504000}},"crc":63141} -{"length":62,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":222,"i":109793122},"flags":15,"cn0":173,"P":1363352170,"D":{"f":226,"i":-2430},"lock":15,"sid":{"sat":31,"code":20}},{"L":{"f":238,"i":89201622},"flags":15,"cn0":206,"P":1107657783,"D":{"f":236,"i":-786},"lock":15,"sid":{"sat":12,"code":20}},{"L":{"f":25,"i":110722765},"flags":15,"cn0":170,"P":1374895533,"D":{"f":88,"i":-1640},"lock":15,"sid":{"sat":33,"code":20}}],"payload":"gNIuEAAAAAAyCENqGkNRYk+LBt6C9uKtDw8fFDeEBULWG1EF7u787M4PDwwUrT3zUc1+mQYZmPlYqg8PIRQ=","header":{"n_obs":67,"t":{"ns_residual":0,"wn":2098,"tow":271504000}},"crc":265} -{"length":9,"l2ca_bias":0,"preamble":85,"l2p_bias":0,"sender":22963,"msg_type":117,"payload":"/wAAAAAAAAAA","l1ca_bias":0,"mask":255,"crc":49809,"l1p_bias":0} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgiA0i4QAAAAAAE=","wn":2098,"tow":271504000,"crc":13967} -{"length":16,"flags":17,"ns":999999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EYDSLhDkBwMZAxgt/smaOw==","day":25,"tow":271504000,"year":2020,"crc":33018,"minutes":24,"month":3,"seconds":45} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.56295355014469,"preamble":85,"sender":22963,"msg_type":522,"payload":"gNIuEHWrBN9l6kJA3PywI1aSXsDeCU+5HZAxwAECWwQPBg==","lat":37.83123386123672,"tow":271504000,"h_accuracy":513,"crc":50172,"lon":-122.28650753292044} -{"v_accuracy":713,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"gNIuEP//////////2/////AAyQIPAg==","n":-1,"d":-37,"tow":271504000,"h_accuracy":240,"crc":40391,"e":-1} -{"length":15,"gdop":155,"flags":6,"tdop":77,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"gNIuEJsAhwBNAEgAcgAG","tow":271504000,"crc":1310,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"gNIuEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271504000,"h_accuracy":0,"crc":32373,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"gNIuEP//","tow":271504000,"crc":45618} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":4,"flags":2147616000,"preamble":85,"sender":22963,"msg_type":65535,"payload":"AAUCgA==","crc":40942} -{"length":24,"z":3890655.0240602265,"preamble":85,"sender":22963,"msg_type":72,"payload":"UO0a3iqORMHK1UJhIkRQwc9nFIPvrk1B","crc":2168,"x":-2694229.735196747,"y":-4264073.519704292} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"bWFpbgAAAAAAAAAAAAAAAAAAAAAAAAx1AAA=","name":"main\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":47991,"stack_free":29964,"cpu":0} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"aWRsZQAAAAAAAAAAAAAAAAAAAABbAXwAAAA=","name":"idle\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":23863,"stack_free":124,"cpu":347} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"cnBtc2cAAAAAAAAAAAAAAAAAAAABANwNAAA=","name":"rpmsg\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":58151,"stack_free":3548,"cpu":1} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"U0JQAAAAAAAAAAAAAAAAAAAAAAAAAPz/AAA=","name":"SBP\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":51784,"stack_free":65532,"cpu":0} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"TkFQAAAAAAAAAAAAAAAAAAAAAAAAAASAAAA=","name":"NAP\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":33651,"stack_free":32772,"cpu":0} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"bWFuYWdlIFBWAAAAAAAAAAAAAAAAACQEAAA=","name":"manage PV\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":29877,"stack_free":1060,"cpu":0} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"SU1VAAAAAAAAAAAAAAAAAAAAAAAAAPQHAAA=","name":"IMU\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":14252,"stack_free":2036,"cpu":0} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"SU1VIGF1eAAAAAAAAAAAAAAAAAAAAEwIAAA=","name":"IMU aux\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":18976,"stack_free":2124,"cpu":0} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"bmRiAAAAAAAAAAAAAAAAAAAAAAAAAFAMAAA=","name":"ndb\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":26120,"stack_free":3152,"cpu":0} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"TkFQIFRyYWNraW5nAAAAAAAAAAAjAdR3AAA=","name":"NAP Tracking\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":58848,"stack_free":30676,"cpu":291} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"ZGVjb2RlAAAAAAAAAAAAAAAAAAAIANQGAAA=","name":"decode\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":40082,"stack_free":1748,"cpu":8} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"bWFuYWdlIGFjcQAAAAAAAAAAAAC7AKR3AAA=","name":"manage acq\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":54128,"stack_free":30628,"cpu":187} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"c3lzdGVtIG1vbml0b3IAAAAAAAAAACwGAAA=","name":"system monitor\u0000\u0000\u0000\u0000\u0000\u0000","crc":58531,"stack_free":1580,"cpu":0} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"V2F0Y2hkb2cAAAAAAAAAAAAAAAAAAOQDAAA=","name":"Watchdog\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":44438,"stack_free":996,"cpu":0} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"c3RhcmxpbmcAAAAAAAAAAAAAAACYAPz/AAA=","name":"starling\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":28732,"stack_free":65532,"cpu":152} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"bWVfY2FsY19wdnQAAAAAAAAAAAAJAIwjAAA=","name":"me_calc_pvt\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":57561,"stack_free":9100,"cpu":9} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"UFBTAAAAAAAAAAAAAAAAAAAAAAAAAEgHAAA=","name":"PPS\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":38576,"stack_free":1864,"cpu":0} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"c3BlY3RydW0gYW5hbHl6ZXIAAAAAANQPAAA=","name":"spectrum analyzer\u0000\u0000\u0000","crc":50933,"stack_free":4052,"cpu":0} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"Mgjk0i4QAAAAAAE=","wn":2098,"tow":271504100,"crc":21061} -{"length":16,"flags":17,"ns":99999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EeTSLhDkBwMZAxgu/uD1BQ==","day":25,"tow":271504100,"year":2020,"crc":38489,"minutes":24,"month":3,"seconds":46} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.57094821989053,"preamble":85,"sender":22963,"msg_type":522,"payload":"5NIuEB7PBt9l6kJAj1OeI1aSXsClI5ypKZIxwAECWwQPBg==","lat":37.83123386223291,"tow":271504100,"h_accuracy":513,"crc":27957,"lon":-122.28650751554072} -{"v_accuracy":713,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"5NIuEP7///8KAAAADwAAAPAAyQIPAg==","n":-2,"d":15,"tow":271504100,"h_accuracy":240,"crc":22516,"e":10} -{"length":15,"gdop":155,"flags":6,"tdop":77,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"5NIuEJsAhwBNAEgAcgAG","tow":271504100,"crc":10673,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"5NIuEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271504100,"h_accuracy":0,"crc":26307,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"5NIuEP//","tow":271504100,"crc":60299} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":51,"text":"GLO L2OF ME 1 [+1204ms] low CN0 too long, dropping","preamble":85,"sender":22963,"msg_type":1025,"payload":"BkdMTyBMMk9GIE1FIDEgWysxMjA0bXNdIGxvdyBDTjAgdG9vIGxvbmcsIGRyb3BwaW5n","crc":27804,"level":6} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MghI0y4QAAAAAAE=","wn":2098,"tow":271504200,"crc":47304} -{"length":16,"flags":17,"ns":199999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EUjTLhDkBwMZAxgu/sHrCw==","day":25,"tow":271504200,"year":2020,"crc":59533,"minutes":24,"month":3,"seconds":46} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.580039015422997,"preamble":85,"sender":22963,"msg_type":522,"payload":"SNMuEEfmHt9l6kJAvrSaI1aSXsBUpdlvfZQxwAECWwQPBg==","lat":37.831233873450905,"tow":271504200,"h_accuracy":513,"crc":54181,"lon":-122.28650751216898} -{"v_accuracy":713,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"SNMuEAwAAAACAAAAHgAAAPAAyQIPAg==","n":12,"d":30,"tow":271504200,"h_accuracy":240,"crc":25912,"e":2} -{"length":15,"gdop":155,"flags":6,"tdop":77,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"SNMuEJsAhwBNAEgAcgAG","tow":271504200,"crc":10017,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"SNMuEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271504200,"h_accuracy":0,"crc":39663,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"SNMuEP//","tow":271504200,"crc":43793} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"Mgis0y4QAAAAAAE=","wn":2098,"tow":271504300,"crc":25520} -{"length":16,"flags":17,"ns":299999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EazTLhDkBwMZAxgu/qLhEQ==","day":25,"tow":271504300,"year":2020,"crc":3771,"minutes":24,"month":3,"seconds":46} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.585568107752252,"preamble":85,"sender":22963,"msg_type":522,"payload":"rNMuEMGoFd9l6kJAC/igI1aSXsBkYKDK55UxwAECWwQPBg==","lat":37.83123386914804,"tow":271504300,"h_accuracy":513,"crc":59944,"lon":-122.28650751800176} -{"v_accuracy":713,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"rNMuEPX////7////9v////AAyQIPAg==","n":-11,"d":-10,"tow":271504300,"h_accuracy":240,"crc":38593,"e":-5} -{"length":15,"gdop":155,"flags":6,"tdop":77,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"rNMuEJsAhwBNAEgAcgAG","tow":271504300,"crc":24476,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"rNMuEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271504300,"h_accuracy":0,"crc":14540,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"rNMuEP//","tow":271504300,"crc":9864} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":237,"states":[{"cn0":213,"mesid":{"sat":5,"code":0}},{"cn0":180,"mesid":{"sat":21,"code":0}},{"cn0":190,"mesid":{"sat":2,"code":0}},{"cn0":166,"mesid":{"sat":31,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":218,"mesid":{"sat":25,"code":0}},{"cn0":206,"mesid":{"sat":12,"code":0}},{"cn0":212,"mesid":{"sat":29,"code":0}},{"cn0":206,"mesid":{"sat":18,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":205,"mesid":{"sat":131,"code":2}},{"cn0":205,"mesid":{"sat":25,"code":1}},{"cn0":187,"mesid":{"sat":12,"code":1}},{"cn0":151,"mesid":{"sat":31,"code":1}},{"cn0":195,"mesid":{"sat":18,"code":1}},{"cn0":195,"mesid":{"sat":29,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":194,"mesid":{"sat":5,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":213,"mesid":{"sat":100,"code":3}},{"cn0":177,"mesid":{"sat":98,"code":3}},{"cn0":173,"mesid":{"sat":102,"code":3}},{"cn0":206,"mesid":{"sat":101,"code":3}},{"cn0":206,"mesid":{"sat":93,"code":3}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":184,"mesid":{"sat":106,"code":3}},{"cn0":204,"mesid":{"sat":104,"code":3}},{"cn0":171,"mesid":{"sat":98,"code":4}},{"cn0":204,"mesid":{"sat":102,"code":4}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":199,"mesid":{"sat":100,"code":4}},{"cn0":195,"mesid":{"sat":101,"code":4}},{"cn0":186,"mesid":{"sat":104,"code":4}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":176,"mesid":{"sat":106,"code":4}},{"cn0":200,"mesid":{"sat":35,"code":12}},{"cn0":168,"mesid":{"sat":26,"code":12}},{"cn0":160,"mesid":{"sat":34,"code":12}},{"cn0":189,"mesid":{"sat":24,"code":12}},{"cn0":156,"mesid":{"sat":25,"code":12}},{"cn0":185,"mesid":{"sat":12,"code":12}},{"cn0":184,"mesid":{"sat":19,"code":12}},{"cn0":192,"mesid":{"sat":22,"code":12}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":208,"mesid":{"sat":12,"code":13}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":195,"mesid":{"sat":12,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":193,"mesid":{"sat":25,"code":14}},{"cn0":189,"mesid":{"sat":11,"code":14}},{"cn0":204,"mesid":{"sat":24,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":161,"mesid":{"sat":31,"code":14}},{"cn0":154,"mesid":{"sat":33,"code":14}},{"cn0":201,"mesid":{"sat":25,"code":20}},{"cn0":215,"mesid":{"sat":24,"code":20}},{"cn0":193,"mesid":{"sat":11,"code":20}},{"cn0":173,"mesid":{"sat":31,"code":20}},{"cn0":207,"mesid":{"sat":12,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":170,"mesid":{"sat":33,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}}],"preamble":85,"sender":22963,"msg_type":97,"payload":"BQDVFQC0AgC+HwCmAAAAAAAAGQDaDADOHQDUEgDOAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwLNGQHNDAG7HwGXEgHDHQHDAAAABQHCAAAAAAAAAAAAAAAAZAPVYgOxZgOtZQPOXQPOAAAAagO4aAPMYgSrZgTMAAAAZATHZQTDaAS6AAAAagSwIwzIGgyoIgygGAy9GQycDAy5Ewy4FgzAAAAADA3QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADA7DAAAAGQ7BCw69GA7MAAAAHw6hIQ6aGRTJGBTXCxTBHxStDBTPAAAAIRSqAAAA","crc":54568} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MggQ1C4QAAAAAAE=","wn":2098,"tow":271504400,"crc":23048} -{"length":16,"flags":17,"ns":399999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"ERDULhDkBwMZAxgu/oPXFw==","day":25,"tow":271504400,"year":2020,"crc":15301,"minutes":24,"month":3,"seconds":46} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.593053732215726,"preamble":85,"sender":22963,"msg_type":522,"payload":"ENQuEB0sLd9l6kJABTmYI1aSXsAlo5Be0pcxwAECWwQPBg==","lat":37.831233880097194,"tow":271504400,"h_accuracy":513,"crc":46816,"lon":-122.28650750985624} -{"v_accuracy":713,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"ENQuEAMAAAAFAAAAEgAAAPAAyQIPAg==","n":3,"d":18,"tow":271504400,"h_accuracy":240,"crc":52421,"e":5} -{"length":15,"gdop":155,"flags":6,"tdop":77,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"ENQuEJsAhwBNAEgAcgAG","tow":271504400,"crc":5345,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"ENQuEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271504400,"h_accuracy":0,"crc":42448,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"ENQuEP//","tow":271504400,"crc":45331} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":9,"l2ca_bias":0,"preamble":85,"l2p_bias":0,"sender":22963,"msg_type":117,"payload":"/wAAAAAAAAAA","l1ca_bias":0,"mask":255,"crc":49809,"l1p_bias":0} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"Mgh01C4QAAAAAAE=","wn":2098,"tow":271504500,"crc":16066} -{"length":16,"flags":17,"ns":499999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EXTULhDkBwMZAxgu/mTNHQ==","day":25,"tow":271504500,"year":2020,"crc":32569,"minutes":24,"month":3,"seconds":46} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.59815145578314,"preamble":85,"sender":22963,"msg_type":522,"payload":"dNQuEEqeN99l6kJAxSGPI1aSXsC0pCx0IJkxwAECWwQPBg==","lat":37.83123388496149,"tow":271504500,"h_accuracy":513,"crc":39867,"lon":-122.28650750138975} -{"v_accuracy":713,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"dNQuEP////8DAAAA/P////AAyQIPAg==","n":-1,"d":-4,"tow":271504500,"h_accuracy":240,"crc":56083,"e":3} -{"length":15,"gdop":155,"flags":6,"tdop":77,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"dNQuEJsAhwBNAEgAcgAG","tow":271504500,"crc":14414,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"dNQuEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271504500,"h_accuracy":0,"crc":48486,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"dNQuEP//","tow":271504500,"crc":59562} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgjY1C4QAAAAAAE=","wn":2098,"tow":271504600,"crc":37788} -{"length":16,"flags":17,"ns":599999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EdjULhDkBwMZAxgu/kXDIw==","day":25,"tow":271504600,"year":2020,"crc":20396,"minutes":24,"month":3,"seconds":46} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.605567012562894,"preamble":85,"sender":22963,"msg_type":522,"payload":"2NQuEMunJt9l6kJAkZCII1aSXsB6fpJwBpsxwAECWwQPBg==","lat":37.83123387706254,"tow":271504600,"h_accuracy":513,"crc":5725,"lon":-122.28650749527357} -{"v_accuracy":713,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"2NQuEPn///8AAAAAFwAAAPAAyQIPAg==","n":-7,"d":23,"tow":271504600,"h_accuracy":240,"crc":38442,"e":0} -{"length":15,"gdop":155,"flags":6,"tdop":77,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"2NQuEJsAhwBNAEgAcgAG","tow":271504600,"crc":19903,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"2NQuEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271504600,"h_accuracy":0,"crc":38076,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"2NQuEP//","tow":271504600,"crc":609} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"message_type":2,"length":34,"data":[23,255,0,7,255,0,47,254,0,7,255,127,255,255,127,247,255,255,240,2,229,231,85,238,110,229,112],"preamble":85,"sender":22963,"msg_type":30583,"payload":"gwJd1C4QAhf/AAf/AC/+AAf/f///f/f///AC5edV7m7lcA==","tow":271504477,"crc":55465,"sid":{"sat":131,"code":2}} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"Mgg81S4QAAAAAAE=","wn":2098,"tow":271504700,"crc":3895} -{"length":16,"flags":17,"ns":699999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"ETzVLhDkBwMZAxgu/ia5KQ==","day":25,"tow":271504700,"year":2020,"crc":51347,"minutes":24,"month":3,"seconds":46} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.60941779587296,"preamble":85,"sender":22963,"msg_type":522,"payload":"PNUuEGucf99l6kJAHxl0I1aSXsDx3/7NApwxwAECWwQPBg==","lat":37.8312339184857,"tow":271504700,"h_accuracy":513,"crc":57778,"lon":-122.28650747621258} -{"v_accuracy":713,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"PNUuEAwAAAD9////5f////AAyQIPAg==","n":12,"d":-27,"tow":271504700,"h_accuracy":240,"crc":19487,"e":-3} -{"length":15,"gdop":155,"flags":6,"tdop":77,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"PNUuEJsAhwBNAEgAcgAG","tow":271504700,"crc":20067,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"PNUuEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271504700,"h_accuracy":0,"crc":58217,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"PNUuEP//","tow":271504700,"crc":9641} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":136,"preamble":85,"sender":22963,"msg_type":151,"payload":"AgAaHgUALDUMAFEtFQB9GRkAbUYaAKEBHQChNx8AlQ4EAxYWBQMyIQYDTggJA18OCgNxKQsDmCUMA6oDEwMiBxQDCzEVA5UlDAyUKRMMIyAUDA8CFgxDIxgMgiMZDJ0OGgxnFR0MLAAiDI4RIwwiLQsOizIMDg88GA5sNhkOlykfDlURIQ4fDw==","crc":41336,"azel":[{"el":30,"az":26,"sid":{"sat":2,"code":0}},{"el":53,"az":44,"sid":{"sat":5,"code":0}},{"el":45,"az":81,"sid":{"sat":12,"code":0}},{"el":25,"az":125,"sid":{"sat":21,"code":0}},{"el":70,"az":109,"sid":{"sat":25,"code":0}},{"el":1,"az":161,"sid":{"sat":26,"code":0}},{"el":55,"az":161,"sid":{"sat":29,"code":0}},{"el":14,"az":149,"sid":{"sat":31,"code":0}},{"el":22,"az":22,"sid":{"sat":4,"code":3}},{"el":33,"az":50,"sid":{"sat":5,"code":3}},{"el":8,"az":78,"sid":{"sat":6,"code":3}},{"el":14,"az":95,"sid":{"sat":9,"code":3}},{"el":41,"az":113,"sid":{"sat":10,"code":3}},{"el":37,"az":152,"sid":{"sat":11,"code":3}},{"el":3,"az":170,"sid":{"sat":12,"code":3}},{"el":7,"az":34,"sid":{"sat":19,"code":3}},{"el":49,"az":11,"sid":{"sat":20,"code":3}},{"el":37,"az":149,"sid":{"sat":21,"code":3}},{"el":41,"az":148,"sid":{"sat":12,"code":12}},{"el":32,"az":35,"sid":{"sat":19,"code":12}},{"el":2,"az":15,"sid":{"sat":20,"code":12}},{"el":35,"az":67,"sid":{"sat":22,"code":12}},{"el":35,"az":130,"sid":{"sat":24,"code":12}},{"el":14,"az":157,"sid":{"sat":25,"code":12}},{"el":21,"az":103,"sid":{"sat":26,"code":12}},{"el":0,"az":44,"sid":{"sat":29,"code":12}},{"el":17,"az":142,"sid":{"sat":34,"code":12}},{"el":45,"az":34,"sid":{"sat":35,"code":12}},{"el":50,"az":139,"sid":{"sat":11,"code":14}},{"el":60,"az":15,"sid":{"sat":12,"code":14}},{"el":54,"az":108,"sid":{"sat":24,"code":14}},{"el":41,"az":151,"sid":{"sat":25,"code":14}},{"el":17,"az":85,"sid":{"sat":31,"code":14}},{"el":15,"az":31,"sid":{"sat":33,"code":14}}]} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"Mgig1S4QAAAAAAE=","wn":2098,"tow":271504800,"crc":22123} -{"length":16,"flags":17,"ns":799999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EaDVLhDkBwMZAxgu/gevLw==","day":25,"tow":271504800,"year":2020,"crc":5657,"minutes":24,"month":3,"seconds":46} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.618508959319357,"preamble":85,"sender":22963,"msg_type":522,"payload":"oNUuEDcN0N9l6kJAoE9KI1aSXsBEj2iaVp4xwAECWwQPBg==","lat":37.83123395594378,"tow":271504800,"h_accuracy":513,"crc":45916,"lon":-122.28650743729531} -{"v_accuracy":713,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"oNUuEAUAAAABAAAAHQAAAPAAyQIPAg==","n":5,"d":29,"tow":271504800,"h_accuracy":240,"crc":57277,"e":1} -{"length":15,"gdop":155,"flags":6,"tdop":77,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"oNUuEJsAhwBNAEgAcgAG","tow":271504800,"crc":59404,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"oNUuEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271504800,"h_accuracy":0,"crc":7512,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"oNUuEP//","tow":271504800,"crc":57582} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":237,"states":[{"cn0":213,"mesid":{"sat":5,"code":0}},{"cn0":180,"mesid":{"sat":21,"code":0}},{"cn0":189,"mesid":{"sat":2,"code":0}},{"cn0":166,"mesid":{"sat":31,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":218,"mesid":{"sat":25,"code":0}},{"cn0":206,"mesid":{"sat":12,"code":0}},{"cn0":212,"mesid":{"sat":29,"code":0}},{"cn0":206,"mesid":{"sat":18,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":205,"mesid":{"sat":131,"code":2}},{"cn0":205,"mesid":{"sat":25,"code":1}},{"cn0":188,"mesid":{"sat":12,"code":1}},{"cn0":151,"mesid":{"sat":31,"code":1}},{"cn0":195,"mesid":{"sat":18,"code":1}},{"cn0":195,"mesid":{"sat":29,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":194,"mesid":{"sat":5,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":213,"mesid":{"sat":11,"code":3}},{"cn0":176,"mesid":{"sat":9,"code":3}},{"cn0":172,"mesid":{"sat":20,"code":3}},{"cn0":206,"mesid":{"sat":5,"code":3}},{"cn0":206,"mesid":{"sat":10,"code":3}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":183,"mesid":{"sat":4,"code":3}},{"cn0":203,"mesid":{"sat":21,"code":3}},{"cn0":171,"mesid":{"sat":9,"code":4}},{"cn0":204,"mesid":{"sat":20,"code":4}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":199,"mesid":{"sat":11,"code":4}},{"cn0":194,"mesid":{"sat":5,"code":4}},{"cn0":186,"mesid":{"sat":0,"code":4}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":176,"mesid":{"sat":4,"code":4}},{"cn0":200,"mesid":{"sat":35,"code":12}},{"cn0":168,"mesid":{"sat":26,"code":12}},{"cn0":161,"mesid":{"sat":34,"code":12}},{"cn0":189,"mesid":{"sat":24,"code":12}},{"cn0":156,"mesid":{"sat":25,"code":12}},{"cn0":185,"mesid":{"sat":12,"code":12}},{"cn0":184,"mesid":{"sat":19,"code":12}},{"cn0":191,"mesid":{"sat":22,"code":12}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":207,"mesid":{"sat":12,"code":13}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":195,"mesid":{"sat":12,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":192,"mesid":{"sat":25,"code":14}},{"cn0":189,"mesid":{"sat":11,"code":14}},{"cn0":204,"mesid":{"sat":24,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":160,"mesid":{"sat":31,"code":14}},{"cn0":154,"mesid":{"sat":33,"code":14}},{"cn0":200,"mesid":{"sat":25,"code":20}},{"cn0":215,"mesid":{"sat":24,"code":20}},{"cn0":193,"mesid":{"sat":11,"code":20}},{"cn0":173,"mesid":{"sat":31,"code":20}},{"cn0":207,"mesid":{"sat":12,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":170,"mesid":{"sat":33,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}}],"preamble":85,"sender":22963,"msg_type":97,"payload":"BQDVFQC0AgC9HwCmAAAAAAAAGQDaDADOHQDUEgDOAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwLNGQHNDAG8HwGXEgHDHQHDAAAABQHCAAAAAAAAAAAAAAAACwPVCQOwFAOsBQPOCgPOAAAABAO3FQPLCQSrFATMAAAACwTHBQTCAAS6AAAABASwIwzIGgyoIgyhGAy9GQycDAy5Ewy4Fgy/AAAADA3PAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADA7DAAAAGQ7ACw69GA7MAAAAHw6gIQ6aGRTIGBTXCxTBHxStDBTPAAAAIRSqAAAA","crc":44572} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MggE1i4QAAAAAAE=","wn":2098,"tow":271504900,"crc":6847} -{"length":16,"flags":17,"ns":899999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EQTWLhDkBwMZAxgu/uikNQ==","day":25,"tow":271504900,"year":2020,"crc":10895,"minutes":24,"month":3,"seconds":46} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.622473991012193,"preamble":85,"sender":22963,"msg_type":522,"payload":"BNYuEDBrAOBl6kJAXWcTI1aSXsAKApp0Wp8xwAECWwQPBg==","lat":37.83123397846646,"tow":271504900,"h_accuracy":513,"crc":24508,"lon":-122.28650738615893} -{"v_accuracy":713,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"BNYuEPf///8OAAAAAgAAAPAAyQIPAg==","n":-9,"d":2,"tow":271504900,"h_accuracy":240,"crc":16877,"e":14} -{"length":15,"gdop":155,"flags":6,"tdop":77,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"BNYuEJsAhwBNAEgAcgAG","tow":271504900,"crc":14107,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"BNYuEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271504900,"h_accuracy":0,"crc":1050,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"BNYuEP//","tow":271504900,"crc":59829} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":249,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":122,"i":110562426},"flags":15,"cn0":213,"P":1051966383,"D":{"f":31,"i":-177},"lock":15,"sid":{"sat":5,"code":0}},{"L":{"f":20,"i":121846498},"flags":15,"cn0":180,"P":1159330901,"D":{"f":233,"i":2175},"lock":15,"sid":{"sat":21,"code":0}},{"L":{"f":140,"i":123313545},"flags":15,"cn0":189,"P":1173289006,"D":{"f":162,"i":-2480},"lock":15,"sid":{"sat":2,"code":0}},{"L":{"f":102,"i":128734461},"flags":15,"cn0":166,"P":1224867663,"D":{"f":72,"i":-392},"lock":15,"sid":{"sat":31,"code":0}},{"L":{"f":197,"i":107812075},"flags":15,"cn0":218,"P":1025797736,"D":{"f":119,"i":-1120},"lock":15,"sid":{"sat":25,"code":0}},{"L":{"f":80,"i":114069103},"flags":15,"cn0":205,"P":1085331307,"D":{"f":14,"i":-2963},"lock":15,"sid":{"sat":12,"code":0}},{"L":{"f":37,"i":110775770},"flags":15,"cn0":212,"P":1053996328,"D":{"f":252,"i":1486},"lock":15,"sid":{"sat":29,"code":0}},{"L":{"f":47,"i":84009430},"flags":15,"cn0":205,"P":1025797774,"D":{"f":100,"i":-874},"lock":15,"sid":{"sat":25,"code":1}},{"L":{"f":51,"i":88885047},"flags":15,"cn0":187,"P":1085331244,"D":{"f":255,"i":-2311},"lock":15,"sid":{"sat":12,"code":1}},{"L":{"f":191,"i":100312569},"flags":15,"cn0":150,"P":1224867580,"D":{"f":95,"i":-305},"lock":15,"sid":{"sat":31,"code":1}},{"L":{"f":193,"i":86318783},"flags":15,"cn0":194,"P":1053996242,"D":{"f":244,"i":1156},"lock":15,"sid":{"sat":29,"code":1}},{"L":{"f":97,"i":86152569},"flags":15,"cn0":194,"P":1051966313,"D":{"f":140,"i":-138},"lock":15,"sid":{"sat":5,"code":1}},{"L":{"f":74,"i":112948153},"flags":15,"cn0":213,"P":1056835047,"D":{"f":36,"i":1174},"lock":15,"sid":{"sat":11,"code":3}},{"L":{"f":105,"i":123293460},"flags":15,"cn0":176,"P":1154444940,"D":{"f":10,"i":-4407},"lock":15,"sid":{"sat":9,"code":3}}],"payload":"aNYuEAAAAAAyCECvu7M+egyXBnpP/x/VDw8FAFX8GUXiOkMHFH8I6bQPDxUALvjuRYmdWQeMUPaivQ8PAgBP/wFJ/VSsB2Z4/kimDw8fAGhuJD3rFG0GxaD7d9oPDxkAa9ewQG+OzAZQbfQOzQ8PDAAotdI+2k2aBiXOBfzUDw8dAI5uJD3W4QEFL5b8ZM0PDxkBLNewQDdHTAUz+fb/uw8PDAH8/gFJ+aX6Bb/P/l+WDw8fAdK00j6/HiUFwYQE9MIPDx0BabuzPnmVIgVhdv+Mwg8PBQHnBf4+uXO7BkqWBCTVDw8LA4xuz0QUT1kHacnuCrAPDwkD","header":{"n_obs":64,"t":{"ns_residual":0,"wn":2098,"tow":271505000}},"crc":36578} -{"length":249,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":153,"i":109759439},"flags":15,"cn0":173,"P":1026278081,"D":{"f":41,"i":-1208},"lock":15,"sid":{"sat":20,"code":3}},{"L":{"f":13,"i":114880616},"flags":15,"cn0":206,"P":1074539375,"D":{"f":111,"i":2204},"lock":15,"sid":{"sat":5,"code":3}},{"L":{"f":217,"i":111575528},"flags":15,"cn0":206,"P":1046563901,"D":{"f":59,"i":-3038},"lock":15,"sid":{"sat":10,"code":3}},{"L":{"f":225,"i":120426432},"flags":15,"cn0":183,"P":1124439115,"D":{"f":35,"i":-1308},"lock":15,"sid":{"sat":4,"code":3}},{"L":{"f":134,"i":113434867},"flags":15,"cn0":203,"P":1059900402,"D":{"f":11,"i":1624},"lock":15,"sid":{"sat":21,"code":3}},{"L":{"f":75,"i":95894923},"flags":15,"cn0":171,"P":1154445053,"D":{"f":16,"i":-3425},"lock":15,"sid":{"sat":9,"code":4}},{"L":{"f":192,"i":85368488},"flags":15,"cn0":204,"P":1026278436,"D":{"f":175,"i":-941},"lock":15,"sid":{"sat":20,"code":4}},{"L":{"f":1,"i":87848574},"flags":15,"cn0":199,"P":1056835294,"D":{"f":253,"i":914},"lock":15,"sid":{"sat":11,"code":4}},{"L":{"f":12,"i":89351594},"flags":15,"cn0":194,"P":1074539673,"D":{"f":7,"i":1715},"lock":15,"sid":{"sat":5,"code":4}},{"L":{"f":148,"i":93664993},"flags":15,"cn0":176,"P":1124439222,"D":{"f":143,"i":-1018},"lock":15,"sid":{"sat":4,"code":4}},{"L":{"f":68,"i":121566064},"flags":15,"cn0":200,"P":1167273942,"D":{"f":71,"i":-1498},"lock":15,"sid":{"sat":35,"code":12}},{"L":{"f":186,"i":129184055},"flags":15,"cn0":168,"P":1240422003,"D":{"f":191,"i":-3009},"lock":15,"sid":{"sat":26,"code":12}},{"L":{"f":101,"i":132966849},"flags":15,"cn0":160,"P":1276744041,"D":{"f":66,"i":2248},"lock":15,"sid":{"sat":34,"code":12}},{"L":{"f":72,"i":125139284},"flags":15,"cn0":188,"P":1201584199,"D":{"f":16,"i":-1298},"lock":15,"sid":{"sat":24,"code":12}}],"payload":"aNYuEAAAAAAyCEHBwis9z8uKBplI+ymtDw8UA28rDEBo8NgGDZwIb84PDwUDPUxhPuiBpgbZIvQ7zg8PCgNLlAVDwI8tB+Hk+iO3Dw8EA/LLLD/z4MIGhlgGC8sPDxUD/W7PRIs9twVLn/IQqw8PCQQkxCs9qJ4WBcBT/K/MDw8UBN4G/j5+djwFAZID/ccPDwsEmSwMQKplUwUMswYHwg8PBQS2lAVD4TaVBZQG/I+wDw8EBNYvk0Vw8z4HRCb6R8gPDyMMc1bvSTcxswe6P/S/qA8PGgxpkRlMwensB2XICEKgDw8iDEe4nkdUeXUHSO76ELwPDxgM","header":{"n_obs":65,"t":{"ns_residual":0,"wn":2098,"tow":271505000}},"crc":6752} -{"length":249,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":174,"i":134684468},"flags":15,"cn0":155,"P":1293236794,"D":{"f":146,"i":1329},"lock":15,"sid":{"sat":25,"code":12}},{"L":{"f":207,"i":121114899},"flags":15,"cn0":185,"P":1162942148,"D":{"f":50,"i":1614},"lock":15,"sid":{"sat":12,"code":12}},{"L":{"f":68,"i":124512306},"flags":15,"cn0":184,"P":1195563926,"D":{"f":44,"i":-285},"lock":15,"sid":{"sat":19,"code":12}},{"L":{"f":76,"i":124726528},"flags":15,"cn0":191,"P":1197620914,"D":{"f":250,"i":2390},"lock":15,"sid":{"sat":22,"code":12}},{"L":{"f":189,"i":93653731},"flags":15,"cn0":207,"P":1162942054,"D":{"f":151,"i":1247},"lock":15,"sid":{"sat":12,"code":13}},{"L":{"f":62,"i":116416662},"flags":15,"cn0":195,"P":1107667689,"D":{"f":114,"i":-1027},"lock":15,"sid":{"sat":12,"code":14}},{"L":{"f":26,"i":132484851},"flags":15,"cn0":192,"P":1260551380,"D":{"f":234,"i":1090},"lock":15,"sid":{"sat":25,"code":14}},{"L":{"f":227,"i":125432179},"flags":15,"cn0":189,"P":1193447458,"D":{"f":14,"i":1050},"lock":15,"sid":{"sat":11,"code":14}},{"L":{"f":107,"i":118397998},"flags":15,"cn0":204,"P":1126519375,"D":{"f":43,"i":-1741},"lock":15,"sid":{"sat":24,"code":14}},{"L":{"f":167,"i":143292446},"flags":15,"cn0":160,"P":1363382311,"D":{"f":74,"i":-3172},"lock":15,"sid":{"sat":31,"code":14}},{"L":{"f":55,"i":144504640},"flags":15,"cn0":153,"P":1374915939,"D":{"f":139,"i":-2140},"lock":15,"sid":{"sat":33,"code":14}},{"L":{"f":215,"i":101514364},"flags":15,"cn0":200,"P":1260551338,"D":{"f":252,"i":837},"lock":15,"sid":{"sat":25,"code":20}},{"L":{"f":206,"i":90720607},"flags":15,"cn0":215,"P":1126519912,"D":{"f":158,"i":-1334},"lock":15,"sid":{"sat":24,"code":20}},{"L":{"f":109,"i":96110349},"flags":15,"cn0":194,"P":1193447267,"D":{"f":210,"i":801},"lock":15,"sid":{"sat":11,"code":20}}],"payload":"aNYuEAAAAAAyCEI6OhVNNB8HCK4xBZKbDw8ZDMQWUUUTETgHz04GMrkPDwwMlttCRzLoawdE4/4suA8PEwyyPmJHAC1vB0xWCfq/Dw8WDGYWUUXjCpUFvd8El88PDwwN6aoFQpZg8AY+/ftyww8PDA7UfCJL847lBxpCBOrADw8ZDiKQIkdz8XkH4xoEDr0PDwsOT1IlQy6cDgdrM/krzA8PGA4nkENRHniKCKec80qgDw8fDmON81FA95wIN6T3i5kPDyEOqnwiS3z8DAbXRQP8yA8PGRRoVCVDX0loBc7K+p7XDw8YFGOPIkcNh7oFbSED0sIPDwsU","header":{"n_obs":66,"t":{"ns_residual":0,"wn":2098,"tow":271505000}},"crc":26445} -{"length":62,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":147,"i":109795552},"flags":15,"cn0":173,"P":1363382345,"D":{"f":251,"i":-2433},"lock":15,"sid":{"sat":31,"code":20}},{"L":{"f":42,"i":89202408},"flags":15,"cn0":207,"P":1107667531,"D":{"f":1,"i":-786},"lock":15,"sid":{"sat":12,"code":20}},{"L":{"f":51,"i":110724405},"flags":15,"cn0":170,"P":1374915894,"D":{"f":117,"i":-1640},"lock":15,"sid":{"sat":33,"code":20}}],"payload":"aNYuEAAAAAAyCENJkENR4FiLBpN/9vutDw8fFEuqBULoHlEFKu78Ac8PDwwUNo3zUTWFmQYzmPl1qg8PIRQ=","header":{"n_obs":67,"t":{"ns_residual":0,"wn":2098,"tow":271505000}},"crc":6758} -{"length":9,"l2ca_bias":0,"preamble":85,"l2p_bias":0,"sender":22963,"msg_type":117,"payload":"/wAAAAAAAAAA","l1ca_bias":0,"mask":255,"crc":49809,"l1p_bias":0} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"Mgho1i4QAAAAAAE=","wn":2098,"tow":271505000,"crc":22410} -{"length":16,"flags":17,"ns":999999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EWjWLhDkBwMZAxgu/smaOw==","day":25,"tow":271505000,"year":2020,"crc":22471,"minutes":24,"month":3,"seconds":46} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.622954413295457,"preamble":85,"sender":22963,"msg_type":522,"payload":"aNYuEEg8TeBl6kJAdNPwIlaSXsC7AMDweZ8xwAECWwQPBg==","lat":37.831234014237054,"tow":271505000,"h_accuracy":513,"crc":32103,"lon":-122.28650735395587} -{"v_accuracy":713,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"aNYuEAMAAAD4/////P////EAyQIPAg==","n":3,"d":-4,"tow":271505000,"h_accuracy":241,"crc":40511,"e":-8} -{"length":15,"gdop":155,"flags":6,"tdop":77,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"aNYuEJsAhwBNAEgAcgAG","tow":271505000,"crc":15601,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"aNYuEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271505000,"h_accuracy":0,"crc":16911,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"aNYuEP//","tow":271505000,"crc":48462} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":4,"flags":2147616000,"preamble":85,"sender":22963,"msg_type":65535,"payload":"AAUCgA==","crc":40942} -{"length":24,"z":3890655.0240602265,"preamble":85,"sender":22963,"msg_type":72,"payload":"UO0a3iqORMHK1UJhIkRQwc9nFIPvrk1B","crc":2168,"x":-2694229.735196747,"y":-4264073.519704292} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgjM1i4QAAAAAAE=","wn":2098,"tow":271505100,"crc":54059} -{"length":16,"flags":17,"ns":99999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EczWLhDkBwMZAxgv/uD1BQ==","day":25,"tow":271505100,"year":2020,"crc":31740,"minutes":24,"month":3,"seconds":47} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.62163807472333,"preamble":85,"sender":22963,"msg_type":522,"payload":"zNYuEONvr+Bl6kJAgSHNIlaSXsCW4kCsI58xwAECWwQPBg==","lat":37.83123405996573,"tow":271505100,"h_accuracy":513,"crc":65188,"lon":-122.2865073207122} -{"v_accuracy":713,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"zNYuEAEAAAACAAAA9f////EAyQIPAg==","n":1,"d":-11,"tow":271505100,"h_accuracy":241,"crc":38748,"e":2} -{"length":15,"gdop":155,"flags":6,"tdop":77,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"zNYuEJsAhwBNAEgAcgAG","tow":271505100,"crc":28229,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"zNYuEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271505100,"h_accuracy":0,"crc":13686,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"zNYuEP//","tow":271505100,"crc":23239} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"Mggw1y4QAAAAAAE=","wn":2098,"tow":271505200,"crc":13697} -{"length":16,"flags":17,"ns":199999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"ETDXLhDkBwMZAxgv/sHrCw==","day":25,"tow":271505200,"year":2020,"crc":25003,"minutes":24,"month":3,"seconds":47} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.61756060344455,"preamble":85,"sender":22963,"msg_type":522,"payload":"MNcuEPM/J+Fl6kJAavG5IlaSXsClF6NzGJ4xwAECWwQPBg==","lat":37.83123411575789,"tow":271505200,"h_accuracy":513,"crc":178,"lon":-122.28650730284213} -{"v_accuracy":713,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"MNcuEA4AAAD2////AgAAAPEAyQIPAg==","n":14,"d":2,"tow":271505200,"h_accuracy":241,"crc":54209,"e":-10} -{"length":15,"gdop":155,"flags":6,"tdop":77,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"MNcuEJsAhwBNAEgAcgAG","tow":271505200,"crc":1110,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"MNcuEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271505200,"h_accuracy":0,"crc":41286,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"MNcuEP//","tow":271505200,"crc":27337} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgiU1y4QAAAAAAE=","wn":2098,"tow":271505300,"crc":45344} -{"length":16,"flags":17,"ns":299999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EZTXLhDkBwMZAxgv/qLhEQ==","day":25,"tow":271505300,"year":2020,"crc":44436,"minutes":24,"month":3,"seconds":47} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.61514839011931,"preamble":85,"sender":22963,"msg_type":522,"payload":"lNcuEAUhbOFl6kJAzNmKIlaSXsDev2ldep0xwAECWwQPBg==","lat":37.831234147832255,"tow":271505300,"h_accuracy":513,"crc":46384,"lon":-122.28650725898405} -{"v_accuracy":713,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"lNcuEPz///8KAAAABgAAAPEAyQIPAg==","n":-4,"d":6,"tow":271505300,"h_accuracy":241,"crc":30693,"e":10} -{"length":15,"gdop":155,"flags":6,"tdop":77,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"lNcuEJsAhwBNAEgAcgAG","tow":271505300,"crc":22242,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"lNcuEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271505300,"h_accuracy":0,"crc":54847,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"lNcuEP//","tow":271505300,"crc":36160} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":237,"states":[{"cn0":213,"mesid":{"sat":5,"code":0}},{"cn0":181,"mesid":{"sat":21,"code":0}},{"cn0":189,"mesid":{"sat":2,"code":0}},{"cn0":166,"mesid":{"sat":31,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":218,"mesid":{"sat":25,"code":0}},{"cn0":205,"mesid":{"sat":12,"code":0}},{"cn0":212,"mesid":{"sat":29,"code":0}},{"cn0":206,"mesid":{"sat":18,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":205,"mesid":{"sat":131,"code":2}},{"cn0":204,"mesid":{"sat":25,"code":1}},{"cn0":187,"mesid":{"sat":12,"code":1}},{"cn0":150,"mesid":{"sat":31,"code":1}},{"cn0":195,"mesid":{"sat":18,"code":1}},{"cn0":194,"mesid":{"sat":29,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":194,"mesid":{"sat":5,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":213,"mesid":{"sat":100,"code":3}},{"cn0":176,"mesid":{"sat":98,"code":3}},{"cn0":173,"mesid":{"sat":102,"code":3}},{"cn0":206,"mesid":{"sat":101,"code":3}},{"cn0":206,"mesid":{"sat":93,"code":3}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":183,"mesid":{"sat":106,"code":3}},{"cn0":204,"mesid":{"sat":104,"code":3}},{"cn0":171,"mesid":{"sat":98,"code":4}},{"cn0":204,"mesid":{"sat":102,"code":4}},{"cn0":86,"mesid":{"sat":93,"code":4}},{"cn0":199,"mesid":{"sat":100,"code":4}},{"cn0":194,"mesid":{"sat":101,"code":4}},{"cn0":186,"mesid":{"sat":104,"code":4}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":176,"mesid":{"sat":106,"code":4}},{"cn0":200,"mesid":{"sat":35,"code":12}},{"cn0":168,"mesid":{"sat":26,"code":12}},{"cn0":160,"mesid":{"sat":34,"code":12}},{"cn0":189,"mesid":{"sat":24,"code":12}},{"cn0":157,"mesid":{"sat":25,"code":12}},{"cn0":185,"mesid":{"sat":12,"code":12}},{"cn0":184,"mesid":{"sat":19,"code":12}},{"cn0":191,"mesid":{"sat":22,"code":12}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":208,"mesid":{"sat":12,"code":13}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":195,"mesid":{"sat":12,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":192,"mesid":{"sat":25,"code":14}},{"cn0":188,"mesid":{"sat":11,"code":14}},{"cn0":204,"mesid":{"sat":24,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":160,"mesid":{"sat":31,"code":14}},{"cn0":154,"mesid":{"sat":33,"code":14}},{"cn0":200,"mesid":{"sat":25,"code":20}},{"cn0":215,"mesid":{"sat":24,"code":20}},{"cn0":194,"mesid":{"sat":11,"code":20}},{"cn0":173,"mesid":{"sat":31,"code":20}},{"cn0":207,"mesid":{"sat":12,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":170,"mesid":{"sat":33,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}}],"preamble":85,"sender":22963,"msg_type":97,"payload":"BQDVFQC1AgC9HwCmAAAAAAAAGQDaDADNHQDUEgDOAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwLNGQHMDAG7HwGWEgHDHQHCAAAABQHCAAAAAAAAAAAAAAAAZAPVYgOwZgOtZQPOXQPOAAAAagO3aAPMYgSrZgTMXQRWZATHZQTCaAS6AAAAagSwIwzIGgyoIgygGAy9GQydDAy5Ewy4Fgy/AAAADA3QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADA7DAAAAGQ7ACw68GA7MAAAAHw6gIQ6aGRTIGBTXCxTCHxStDBTPAAAAIRSqAAAA","crc":58103} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"Mgj41y4QAAAAAAE=","wn":2098,"tow":271505400,"crc":64533} -{"length":16,"flags":17,"ns":399999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EfjXLhDkBwMZAxgv/oPXFw==","day":25,"tow":271505400,"year":2020,"crc":55421,"minutes":24,"month":3,"seconds":47} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.61320385660289,"preamble":85,"sender":22963,"msg_type":522,"payload":"+NcuEGIbwuFl6kJA8ChyIlaSXsD3443t+pwxwAECWwQPBg==","lat":37.83123418786887,"tow":271505400,"h_accuracy":513,"crc":10135,"lon":-122.28650723598889} -{"v_accuracy":713,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"+NcuEAYAAAAFAAAACAAAAPEAyQIPAg==","n":6,"d":8,"tow":271505400,"h_accuracy":241,"crc":48222,"e":5} -{"length":15,"gdop":155,"flags":6,"tdop":77,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"+NcuEJsAhwBNAEgAcgAG","tow":271505400,"crc":23816,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"+NcuEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271505400,"h_accuracy":0,"crc":36906,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"+NcuEP//","tow":271505400,"crc":55739} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":9,"l2ca_bias":0,"preamble":85,"l2p_bias":0,"sender":22963,"msg_type":117,"payload":"/wAAAAAAAAAA","l1ca_bias":0,"mask":255,"crc":49809,"l1p_bias":0} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"Mghc2C4QAAAAAAE=","wn":2098,"tow":271505500,"crc":41334} -{"length":16,"flags":17,"ns":499999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EVzYLhDkBwMZAxgv/mTNHQ==","day":25,"tow":271505500,"year":2020,"crc":31223,"minutes":24,"month":3,"seconds":47} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.614633507552636,"preamble":85,"sender":22963,"msg_type":522,"payload":"XNguEJPj/+Fl6kJAA21aIlaSXsDf9h2fWJ0xwAECWwQPBg==","lat":37.83123421663836,"tow":271505500,"h_accuracy":513,"crc":51344,"lon":-122.2865072138848} -{"v_accuracy":713,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"XNguEPb///8LAAAAGAAAAPEAyQIPAg==","n":-10,"d":24,"tow":271505500,"h_accuracy":241,"crc":22352,"e":11} -{"length":15,"gdop":155,"flags":6,"tdop":77,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"XNguEJsAhwBNAEgAcgAG","tow":271505500,"crc":38097,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"XNguEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271505500,"h_accuracy":0,"crc":8613,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"XNguEP//","tow":271505500,"crc":23499} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgjA2C4QAAAAAAE=","wn":2098,"tow":271505600,"crc":63530} -{"length":16,"flags":17,"ns":599999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EcDYLhDkBwMZAxgv/kXDIw==","day":25,"tow":271505600,"year":2020,"crc":39676,"minutes":24,"month":3,"seconds":47} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.614403724149312,"preamble":85,"sender":22963,"msg_type":522,"payload":"wNguEO0sTOJl6kJA7+9VIlaSXsAMw/2PSZ0xwAECWwQPBg==","lat":37.83123425216204,"tow":271505600,"h_accuracy":513,"crc":957,"lon":-122.28650720970448} -{"v_accuracy":713,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"wNguEAEAAAD8////+v////EAyQIPAg==","n":1,"d":-6,"tow":271505600,"h_accuracy":241,"crc":32253,"e":-4} -{"length":15,"gdop":155,"flags":6,"tdop":77,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"wNguEJsAhwBNAEgAcgAG","tow":271505600,"crc":12990,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"wNguEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271505600,"h_accuracy":0,"crc":57236,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"wNguEP//","tow":271505600,"crc":40588} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"message_type":63,"length":34,"data":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"preamble":85,"sender":22963,"msg_type":30583,"payload":"gwJB2C4QPwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA==","tow":271505473,"crc":22801,"sid":{"sat":131,"code":2}} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"Mggk2S4QAAAAAAE=","wn":2098,"tow":271505700,"crc":25729} -{"length":16,"flags":17,"ns":699999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"ESTZLhDkBwMZAxgv/ia5KQ==","day":25,"tow":271505700,"year":2020,"crc":7619,"minutes":24,"month":3,"seconds":47} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.615957283368953,"preamble":85,"sender":22963,"msg_type":522,"payload":"JNkuEDtYyeJl6kJAk/o7IlaSXsB7zWNgr50xwAECWwQPBg==","lat":37.83123431044847,"tow":271505700,"h_accuracy":513,"crc":59371,"lon":-122.2865071855288} -{"v_accuracy":713,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"JNkuEA8AAAAHAAAA/f////EAyQIPAg==","n":15,"d":-3,"tow":271505700,"h_accuracy":241,"crc":14191,"e":7} -{"length":15,"gdop":155,"flags":6,"tdop":77,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"JNkuEJsAhwBNAEgAcgAG","tow":271505700,"crc":12642,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"JNkuEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271505700,"h_accuracy":0,"crc":43073,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"JNkuEP//","tow":271505700,"crc":47428} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgiI2S4QAAAAAAE=","wn":2098,"tow":271505800,"crc":51679} -{"length":16,"flags":17,"ns":799999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EYjZLhDkBwMZAxgv/gevLw==","day":25,"tow":271505800,"year":2020,"crc":4311,"minutes":24,"month":3,"seconds":47} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.620582365350664,"preamble":85,"sender":22963,"msg_type":522,"payload":"iNkuEI5IK+Nl6kJAzUIwIlaSXsDKp2N83p4xwAECWwQPBg==","lat":37.831234356054765,"tow":271505800,"h_accuracy":513,"crc":40857,"lon":-122.28650717461569} -{"v_accuracy":713,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"iNkuEAAAAAD7////EQAAAPEAyQIPAg==","n":0,"d":17,"tow":271505800,"h_accuracy":241,"crc":19041,"e":-5} -{"length":15,"gdop":155,"flags":6,"tdop":77,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"iNkuEJsAhwBNAEgAcgAG","tow":271505800,"crc":17555,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"iNkuEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271505800,"h_accuracy":0,"crc":33179,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"iNkuEP//","tow":271505800,"crc":21391} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":237,"states":[{"cn0":213,"mesid":{"sat":5,"code":0}},{"cn0":180,"mesid":{"sat":21,"code":0}},{"cn0":189,"mesid":{"sat":2,"code":0}},{"cn0":166,"mesid":{"sat":31,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":218,"mesid":{"sat":25,"code":0}},{"cn0":206,"mesid":{"sat":12,"code":0}},{"cn0":212,"mesid":{"sat":29,"code":0}},{"cn0":206,"mesid":{"sat":18,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":205,"mesid":{"sat":131,"code":2}},{"cn0":204,"mesid":{"sat":25,"code":1}},{"cn0":187,"mesid":{"sat":12,"code":1}},{"cn0":150,"mesid":{"sat":31,"code":1}},{"cn0":195,"mesid":{"sat":18,"code":1}},{"cn0":194,"mesid":{"sat":29,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":194,"mesid":{"sat":5,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":214,"mesid":{"sat":11,"code":3}},{"cn0":176,"mesid":{"sat":9,"code":3}},{"cn0":173,"mesid":{"sat":20,"code":3}},{"cn0":207,"mesid":{"sat":5,"code":3}},{"cn0":207,"mesid":{"sat":10,"code":3}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":184,"mesid":{"sat":4,"code":3}},{"cn0":203,"mesid":{"sat":21,"code":3}},{"cn0":171,"mesid":{"sat":9,"code":4}},{"cn0":205,"mesid":{"sat":20,"code":4}},{"cn0":64,"mesid":{"sat":10,"code":4}},{"cn0":199,"mesid":{"sat":11,"code":4}},{"cn0":194,"mesid":{"sat":5,"code":4}},{"cn0":187,"mesid":{"sat":0,"code":4}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":176,"mesid":{"sat":4,"code":4}},{"cn0":200,"mesid":{"sat":35,"code":12}},{"cn0":169,"mesid":{"sat":26,"code":12}},{"cn0":160,"mesid":{"sat":34,"code":12}},{"cn0":189,"mesid":{"sat":24,"code":12}},{"cn0":156,"mesid":{"sat":25,"code":12}},{"cn0":185,"mesid":{"sat":12,"code":12}},{"cn0":184,"mesid":{"sat":19,"code":12}},{"cn0":191,"mesid":{"sat":22,"code":12}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":208,"mesid":{"sat":12,"code":13}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":195,"mesid":{"sat":12,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":192,"mesid":{"sat":25,"code":14}},{"cn0":188,"mesid":{"sat":11,"code":14}},{"cn0":204,"mesid":{"sat":24,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":160,"mesid":{"sat":31,"code":14}},{"cn0":153,"mesid":{"sat":33,"code":14}},{"cn0":200,"mesid":{"sat":25,"code":20}},{"cn0":215,"mesid":{"sat":24,"code":20}},{"cn0":194,"mesid":{"sat":11,"code":20}},{"cn0":173,"mesid":{"sat":31,"code":20}},{"cn0":207,"mesid":{"sat":12,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":169,"mesid":{"sat":33,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}}],"preamble":85,"sender":22963,"msg_type":97,"payload":"BQDVFQC0AgC9HwCmAAAAAAAAGQDaDADOHQDUEgDOAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwLNGQHMDAG7HwGWEgHDHQHCAAAABQHCAAAAAAAAAAAAAAAACwPWCQOwFAOtBQPPCgPPAAAABAO4FQPLCQSrFATNCgRACwTHBQTCAAS7AAAABASwIwzIGgypIgygGAy9GQycDAy5Ewy4Fgy/AAAADA3QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADA7DAAAAGQ7ACw68GA7MAAAAHw6gIQ6ZGRTIGBTXCxTCHxStDBTPAAAAIRSpAAAA","crc":32118} -{"length":136,"preamble":85,"sender":22963,"msg_type":151,"payload":"AgAaHgUALDUMAFEtFQB9GRkAbUYaAKEBHQChNx8AlQ4EAxYWBQMyIQYDTggJA18OCgNxKQsDmCUMA6oDEwMiBxQDCzEVA5UlDAyUKRMMIyAUDA8CFgxDIxgMgiMZDJ0OGgxnFR0MLAAiDI4RIwwiLQsOizIMDg88GA5sNhkOlykfDlURIQ4fDw==","crc":41336,"azel":[{"el":30,"az":26,"sid":{"sat":2,"code":0}},{"el":53,"az":44,"sid":{"sat":5,"code":0}},{"el":45,"az":81,"sid":{"sat":12,"code":0}},{"el":25,"az":125,"sid":{"sat":21,"code":0}},{"el":70,"az":109,"sid":{"sat":25,"code":0}},{"el":1,"az":161,"sid":{"sat":26,"code":0}},{"el":55,"az":161,"sid":{"sat":29,"code":0}},{"el":14,"az":149,"sid":{"sat":31,"code":0}},{"el":22,"az":22,"sid":{"sat":4,"code":3}},{"el":33,"az":50,"sid":{"sat":5,"code":3}},{"el":8,"az":78,"sid":{"sat":6,"code":3}},{"el":14,"az":95,"sid":{"sat":9,"code":3}},{"el":41,"az":113,"sid":{"sat":10,"code":3}},{"el":37,"az":152,"sid":{"sat":11,"code":3}},{"el":3,"az":170,"sid":{"sat":12,"code":3}},{"el":7,"az":34,"sid":{"sat":19,"code":3}},{"el":49,"az":11,"sid":{"sat":20,"code":3}},{"el":37,"az":149,"sid":{"sat":21,"code":3}},{"el":41,"az":148,"sid":{"sat":12,"code":12}},{"el":32,"az":35,"sid":{"sat":19,"code":12}},{"el":2,"az":15,"sid":{"sat":20,"code":12}},{"el":35,"az":67,"sid":{"sat":22,"code":12}},{"el":35,"az":130,"sid":{"sat":24,"code":12}},{"el":14,"az":157,"sid":{"sat":25,"code":12}},{"el":21,"az":103,"sid":{"sat":26,"code":12}},{"el":0,"az":44,"sid":{"sat":29,"code":12}},{"el":17,"az":142,"sid":{"sat":34,"code":12}},{"el":45,"az":34,"sid":{"sat":35,"code":12}},{"el":50,"az":139,"sid":{"sat":11,"code":14}},{"el":60,"az":15,"sid":{"sat":12,"code":14}},{"el":54,"az":108,"sid":{"sat":24,"code":14}},{"el":41,"az":151,"sid":{"sat":25,"code":14}},{"el":17,"az":85,"sid":{"sat":31,"code":14}},{"el":15,"az":31,"sid":{"sat":33,"code":14}}]} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"Mgjs2S4QAAAAAAE=","wn":2098,"tow":271505900,"crc":44309} -{"length":16,"flags":17,"ns":899999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EezZLhDkBwMZAxgv/uikNQ==","day":25,"tow":271505900,"year":2020,"crc":57337,"minutes":24,"month":3,"seconds":47} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.61656044524893,"preamble":85,"sender":22963,"msg_type":522,"payload":"7NkuEBtWlONl6kJAvSAdIlaSXsDyWcTn1p0xwAECWwQPBg==","lat":37.83123440497385,"tow":271505900,"h_accuracy":513,"crc":12032,"lon":-122.28650715679665} -{"v_accuracy":713,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"7NkuEAEAAAD8////9/////EAyQIPAg==","n":1,"d":-9,"tow":271505900,"h_accuracy":241,"crc":45951,"e":-4} -{"length":15,"gdop":155,"flags":6,"tdop":77,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"7NkuEJsAhwBNAEgAcgAG","tow":271505900,"crc":26684,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"7NkuEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271505900,"h_accuracy":0,"crc":39213,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"7NkuEP//","tow":271505900,"crc":2614} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":249,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":203,"i":110562602},"flags":15,"cn0":213,"P":1051968059,"D":{"f":255,"i":-177},"lock":15,"sid":{"sat":5,"code":0}},{"L":{"f":229,"i":121844321},"flags":15,"cn0":181,"P":1159310196,"D":{"f":40,"i":2176},"lock":15,"sid":{"sat":21,"code":0}},{"L":{"f":102,"i":123316024},"flags":15,"cn0":189,"P":1173312590,"D":{"f":56,"i":-2477},"lock":15,"sid":{"sat":2,"code":0}},{"L":{"f":145,"i":128734851},"flags":15,"cn0":166,"P":1224871375,"D":{"f":245,"i":-391},"lock":15,"sid":{"sat":31,"code":0}},{"L":{"f":109,"i":107813196},"flags":15,"cn0":218,"P":1025808396,"D":{"f":67,"i":-1121},"lock":15,"sid":{"sat":25,"code":0}},{"L":{"f":176,"i":114072066},"flags":15,"cn0":206,"P":1085359512,"D":{"f":1,"i":-2964},"lock":15,"sid":{"sat":12,"code":0}},{"L":{"f":223,"i":110774283},"flags":15,"cn0":212,"P":1053982186,"D":{"f":203,"i":1486},"lock":15,"sid":{"sat":29,"code":0}},{"L":{"f":108,"i":84010303},"flags":15,"cn0":204,"P":1025808442,"D":{"f":91,"i":-874},"lock":15,"sid":{"sat":25,"code":1}},{"L":{"f":83,"i":88887356},"flags":15,"cn0":187,"P":1085359443,"D":{"f":55,"i":-2310},"lock":15,"sid":{"sat":12,"code":1}},{"L":{"f":193,"i":100312873},"flags":15,"cn0":150,"P":1224871291,"D":{"f":149,"i":-304},"lock":15,"sid":{"sat":31,"code":1}},{"L":{"f":158,"i":86317625},"flags":15,"cn0":194,"P":1053982093,"D":{"f":166,"i":1157},"lock":15,"sid":{"sat":29,"code":1}},{"L":{"f":195,"i":86152706},"flags":15,"cn0":194,"P":1051967991,"D":{"f":132,"i":-137},"lock":15,"sid":{"sat":5,"code":1}},{"L":{"f":167,"i":112946978},"flags":15,"cn0":214,"P":1056824063,"D":{"f":252,"i":1174},"lock":15,"sid":{"sat":11,"code":3}},{"L":{"f":91,"i":123297867},"flags":15,"cn0":176,"P":1154486181,"D":{"f":222,"i":-4407},"lock":15,"sid":{"sat":9,"code":3}}],"payload":"UNouEAAAAAAyCEA7wrM+Kg2XBstP///VDw8FAHSrGUVhMkMH5YAIKLUPDxUATlTvRTinWQdmU/Y4vQ8PAgDPDQJJg1asB5F5/vWmDw8fAAyYJD1MGW0GbZ/7Q9oPDxkAmEWxQAKazAawbPQBzg8PDADqfdI+C0iaBt/OBcvUDw8dADqYJD0/5QEFbJb8W8wPDxkBU0WxQDxQTAVT+vY3uw8PDAF7DQJJKaf6BcHQ/pWWDw8fAY190j45GiUFnoUEpsIPDx0B98GzPgKWIgXDd/+Ewg8PBQH/2v0+Im+7BqeWBPzWDw8LA6UP0ERLYFkHW8nu3rAPDwkD","header":{"n_obs":64,"t":{"ns_residual":0,"wn":2098,"tow":271506000}},"crc":26851} -{"length":249,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":243,"i":109760647},"flags":15,"cn0":173,"P":1026289343,"D":{"f":144,"i":-1209},"lock":15,"sid":{"sat":20,"code":3}},{"L":{"f":29,"i":114878411},"flags":15,"cn0":206,"P":1074518763,"D":{"f":98,"i":2205},"lock":15,"sid":{"sat":5,"code":3}},{"L":{"f":240,"i":111578566},"flags":15,"cn0":207,"P":1046592401,"D":{"f":235,"i":-3038},"lock":15,"sid":{"sat":10,"code":3}},{"L":{"f":185,"i":120427740},"flags":15,"cn0":183,"P":1124451311,"D":{"f":122,"i":-1309},"lock":15,"sid":{"sat":4,"code":3}},{"L":{"f":232,"i":113433242},"flags":15,"cn0":204,"P":1059885217,"D":{"f":3,"i":1624},"lock":15,"sid":{"sat":21,"code":3}},{"L":{"f":234,"i":95898350},"flags":15,"cn0":170,"P":1154486332,"D":{"f":156,"i":-3429},"lock":15,"sid":{"sat":9,"code":4}},{"L":{"f":148,"i":85369428},"flags":15,"cn0":205,"P":1026289757,"D":{"f":209,"i":-940},"lock":15,"sid":{"sat":20,"code":4}},{"L":{"f":100,"i":87847660},"flags":15,"cn0":199,"P":1056824293,"D":{"f":29,"i":913},"lock":15,"sid":{"sat":11,"code":4}},{"L":{"f":26,"i":89349879},"flags":15,"cn0":194,"P":1074519058,"D":{"f":40,"i":1715},"lock":15,"sid":{"sat":5,"code":4}},{"L":{"f":204,"i":93666010},"flags":15,"cn0":176,"P":1124451472,"D":{"f":47,"i":-1019},"lock":15,"sid":{"sat":4,"code":4}},{"L":{"f":69,"i":121567562},"flags":15,"cn0":200,"P":1167288325,"D":{"f":206,"i":-1498},"lock":15,"sid":{"sat":35,"code":12}},{"L":{"f":16,"i":129187063},"flags":15,"cn0":168,"P":1240450885,"D":{"f":6,"i":-3009},"lock":15,"sid":{"sat":26,"code":12}},{"L":{"f":175,"i":132964600},"flags":15,"cn0":160,"P":1276722457,"D":{"f":228,"i":2247},"lock":15,"sid":{"sat":34,"code":12}},{"L":{"f":53,"i":125140582},"flags":15,"cn0":189,"P":1201596669,"D":{"f":82,"i":-1299},"lock":15,"sid":{"sat":24,"code":12}}],"payload":"UNouEAAAAAAyCEG/7is9h9CKBvNH+5CtDw8UA+vaC0DL59gGHZ0IYs4PDwUDkbthPsaNpgbwIvTrzw8PCgPvwwVD3JQtB7nj+nq3Dw8EA6GQLD+a2sIG6FgGA8wPDxUDPBDQRO5KtwXqm/Kcqg8PCQRd8Cs9VKIWBZRU/NHNDw8UBOXb/T7scjwFZJEDHccPDwsEEtwLQPdeUwUaswYowg8PBQSQxAVD2jqVBcwF/C+wDw8EBAVok0VK+T4HRSb6zsgPDyMMRcfvSfc8swcQP/QGqA8PGgwZPRlM+ODsB6/HCOSgDw8iDP3onkdmfnUHNe36Ur0PDxgM","header":{"n_obs":65,"t":{"ns_residual":0,"wn":2098,"tow":271506000}},"crc":12702} -{"length":249,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":19,"i":134683139},"flags":15,"cn0":157,"P":1293224042,"D":{"f":59,"i":1330},"lock":15,"sid":{"sat":25,"code":12}},{"L":{"f":27,"i":121113287},"flags":15,"cn0":185,"P":1162926665,"D":{"f":205,"i":1612},"lock":15,"sid":{"sat":12,"code":12}},{"L":{"f":82,"i":124512590},"flags":15,"cn0":184,"P":1195566657,"D":{"f":247,"i":-286},"lock":15,"sid":{"sat":19,"code":12}},{"L":{"f":166,"i":124724137},"flags":15,"cn0":191,"P":1197597963,"D":{"f":61,"i":2391},"lock":15,"sid":{"sat":22,"code":12}},{"L":{"f":180,"i":93652484},"flags":15,"cn0":208,"P":1162926569,"D":{"f":24,"i":1248},"lock":15,"sid":{"sat":12,"code":13}},{"L":{"f":34,"i":116417688},"flags":15,"cn0":195,"P":1107677454,"D":{"f":162,"i":-1026},"lock":15,"sid":{"sat":12,"code":14}},{"L":{"f":169,"i":132483758},"flags":15,"cn0":192,"P":1260540990,"D":{"f":169,"i":1092},"lock":15,"sid":{"sat":25,"code":14}},{"L":{"f":7,"i":125431131},"flags":15,"cn0":188,"P":1193437481,"D":{"f":173,"i":1050},"lock":15,"sid":{"sat":11,"code":14}},{"L":{"f":216,"i":118399738},"flags":15,"cn0":204,"P":1126535932,"D":{"f":35,"i":-1741},"lock":15,"sid":{"sat":24,"code":14}},{"L":{"f":173,"i":143295618},"flags":15,"cn0":160,"P":1363412495,"D":{"f":252,"i":-3175},"lock":15,"sid":{"sat":31,"code":14}},{"L":{"f":162,"i":144506781},"flags":15,"cn0":152,"P":1374936326,"D":{"f":112,"i":-2141},"lock":15,"sid":{"sat":33,"code":14}},{"L":{"f":197,"i":101513527},"flags":15,"cn0":200,"P":1260540943,"D":{"f":208,"i":837},"lock":15,"sid":{"sat":25,"code":20}},{"L":{"f":96,"i":90721941},"flags":15,"cn0":215,"P":1126536472,"D":{"f":83,"i":-1334},"lock":15,"sid":{"sat":24,"code":20}},{"L":{"f":196,"i":96109545},"flags":15,"cn0":194,"P":1193437289,"D":{"f":130,"i":804},"lock":15,"sid":{"sat":11,"code":20}}],"payload":"UNouEAAAAAAyCEJqCBVNAxoHCBMyBTudDw8ZDEnaUEXHCjgHG0wGzbkPDwwMQeZCR07pawdS4v73uA8PEwwL5WFHqSNvB6ZXCT2/Dw8WDOnZUEUEBpUFtOAEGNAPDwwNDtEFQphk8AYi/vuiww8PDA4+VCJLrorlB6lEBKnADw8ZDilpIkdb7XkHBxoErbwPDwsO/JIlQ/qiDgfYM/kjzA8PGA4PBkRRgoSKCK2Z8/ygDw8fDgbd81Gd/5wIoqP3cJgPDyEOD1QiSzf5DAbFRQPQyA8PGRQYlSVDlU5oBWDK+lPXDw8YFGloIkfpg7oFxCQDgsIPDwsU","header":{"n_obs":66,"t":{"ns_residual":0,"wn":2098,"tow":271506000}},"crc":35120} -{"length":62,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":25,"i":109797983},"flags":15,"cn0":172,"P":1363412530,"D":{"f":149,"i":-2429},"lock":15,"sid":{"sat":31,"code":20}},{"L":{"f":60,"i":89203194},"flags":15,"cn0":206,"P":1107677291,"D":{"f":123,"i":-785},"lock":15,"sid":{"sat":12,"code":20}},{"L":{"f":12,"i":110726046},"flags":15,"cn0":169,"P":1374936267,"D":{"f":88,"i":-1639},"lock":15,"sid":{"sat":33,"code":20}}],"payload":"UNouEAAAAAAyCEMyBkRRX2KLBhmD9pWsDw8fFGvQBUL6IVEFPO/8e84PDwwUy9zzUZ6LmQYMmflYqQ8PIRQ=","header":{"n_obs":67,"t":{"ns_residual":0,"wn":2098,"tow":271506000}},"crc":34924} -{"length":9,"l2ca_bias":0,"preamble":85,"l2p_bias":0,"sender":22963,"msg_type":117,"payload":"/wAAAAAAAAAA","l1ca_bias":0,"mask":255,"crc":49809,"l1p_bias":0} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MghQ2i4QAAAAAAE=","wn":2098,"tow":271506000,"crc":39872} -{"length":16,"flags":17,"ns":999999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EVDaLhDkBwMZAxgv/smaOw==","day":25,"tow":271506000,"year":2020,"crc":8067,"minutes":24,"month":3,"seconds":47} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.615573696813748,"preamble":85,"sender":22963,"msg_type":522,"payload":"UNouEE3WDuRl6kJAECv6IVaSXsDGF+A8lp0xwAECWwQPBg==","lat":37.83123446201771,"tow":271506000,"h_accuracy":513,"crc":26937,"lon":-122.28650712423791} -{"v_accuracy":713,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"UNouEAQAAAAFAAAAAQAAAPEAyQIPAg==","n":4,"d":1,"tow":271506000,"h_accuracy":241,"crc":39603,"e":5} -{"length":15,"gdop":155,"flags":6,"tdop":77,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"UNouEJsAhwBNAEgAcgAG","tow":271506000,"crc":57060,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"UNouEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271506000,"h_accuracy":0,"crc":25482,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"UNouEP//","tow":271506000,"crc":5291} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":4,"flags":2147616000,"preamble":85,"sender":22963,"msg_type":65535,"payload":"AAUCgA==","crc":40942} -{"length":24,"z":3890655.0240602265,"preamble":85,"sender":22963,"msg_type":72,"payload":"UO0a3iqORMHK1UJhIkRQwc9nFIPvrk1B","crc":2168,"x":-2694229.735196747,"y":-4264073.519704292} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"bWFpbgAAAAAAAAAAAAAAAAAAAAAAAAx1AAA=","name":"main\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":47991,"stack_free":29964,"cpu":0} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"aWRsZQAAAAAAAAAAAAAAAAAAAAAaAHwAAAA=","name":"idle\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":55510,"stack_free":124,"cpu":26} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"cnBtc2cAAAAAAAAAAAAAAAAAAAABAOQNAAA=","name":"rpmsg\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":18957,"stack_free":3556,"cpu":1} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"U0JQAAAAAAAAAAAAAAAAAAAAAAAAAPz/AAA=","name":"SBP\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":51784,"stack_free":65532,"cpu":0} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"TkFQAAAAAAAAAAAAAAAAAAAAAAAAAASAAAA=","name":"NAP\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":33651,"stack_free":32772,"cpu":0} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"bWFuYWdlIFBWAAAAAAAAAAAAAAAAACQEAAA=","name":"manage PV\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":29877,"stack_free":1060,"cpu":0} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"SU1VAAAAAAAAAAAAAAAAAAAAAAAAAPQHAAA=","name":"IMU\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":14252,"stack_free":2036,"cpu":0} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"SU1VIGF1eAAAAAAAAAAAAAAAAAAAAEwIAAA=","name":"IMU aux\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":18976,"stack_free":2124,"cpu":0} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"bmRiAAAAAAAAAAAAAAAAAAAAAAAAAFAMAAA=","name":"ndb\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":26120,"stack_free":3152,"cpu":0} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"TkFQIFRyYWNraW5nAAAAAAAAAAAoAdR3AAA=","name":"NAP Tracking\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":9794,"stack_free":30676,"cpu":296} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"ZGVjb2RlAAAAAAAAAAAAAAAAAAAIANQGAAA=","name":"decode\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":40082,"stack_free":1748,"cpu":8} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"bWFuYWdlIGFjcQAAAAAAAAAAAAD7AaR3AAA=","name":"manage acq\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":4913,"stack_free":30628,"cpu":507} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"c3lzdGVtIG1vbml0b3IAAAAAAAAAACwGAAA=","name":"system monitor\u0000\u0000\u0000\u0000\u0000\u0000","crc":58531,"stack_free":1580,"cpu":0} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"V2F0Y2hkb2cAAAAAAAAAAAAAAAAAAOQDAAA=","name":"Watchdog\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":44438,"stack_free":996,"cpu":0} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"c3RhcmxpbmcAAAAAAAAAAAAAAACWAPz/AAA=","name":"starling\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":61599,"stack_free":65532,"cpu":150} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"bWVfY2FsY19wdnQAAAAAAAAAAAAIAIwjAAA=","name":"me_calc_pvt\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":42361,"stack_free":9100,"cpu":8} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"UFBTAAAAAAAAAAAAAAAAAAAAAAAAAEgHAAA=","name":"PPS\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":38576,"stack_free":1864,"cpu":0} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"c3BlY3RydW0gYW5hbHl6ZXIAAAAAANQPAAA=","name":"spectrum analyzer\u0000\u0000\u0000","crc":50933,"stack_free":4052,"cpu":0} -{"length":152,"af0":5.887670442461967e-3,"w":-0.44091143270237854,"dn":2.7565433925253817e-9,"c_us":1.0313466e-5,"c_uc":4.9471855e-6,"ecc":5.041392287239432e-4,"sqrta":5440.606742858887,"preamble":85,"toc":{"wn":2098,"tow":270600},"sender":22963,"bgd_e1e5a":-1.2805685e-8,"msg_type":149,"omegadot":-5.397724836905428e-9,"payload":"DA4IIQQAMggUrkdAQDgAAAEAAABcsgAAXLIAENRCALgCQwAApjYACC03AABAsgAAgDNL+3P5s60nPnUMqQwPaP4/AAAAwAaFQD8AAIBTm0C1QIrkGgU4CAPAN7MGedwuN77+6PiV5Dfcv4P9KHoHme8/6TII/sTfAj7///9/qx14P///////m7S9AAAAAAghBAAyCEMAQwA=","inc":0.9874303232135592,"inc_dot":5.493085951935782e-10,"iode":67,"crc":22055,"common":{"health_bits":0,"fit_interval":14400,"valid":1,"sid":{"sat":12,"code":14},"toe":{"wn":2098,"tow":270600},"ura":3.12},"c_rs":106.03125,"m0":1.9004049772782114,"af2":0,"c_rc":130.71875,"bgd_e1e5b":-1.2805685e-8,"af1":-1.874411736935144e-11,"c_is":5.9604645e-8,"c_ic":-1.1175871e-8,"omega0":-2.379013099559022,"iodc":67} -{"cpu_vint":988,"length":10,"fe_temperature":5641,"preamble":85,"sender":22963,"cpu_vaux":1780,"msg_type":181,"payload":"5RbcA/QGVxUJFg==","dev_vin":5861,"crc":34412,"cpu_temperature":5463} -{"length":152,"af0":5.542786035221069e-3,"w":0.8010578836647987,"dn":3.2565642203999004e-9,"c_us":1.2051314e-6,"c_uc":-9.313226e-7,"ecc":6.41814898699522e-4,"sqrta":5440.5982837677,"preamble":85,"toc":{"wn":2098,"tow":270600},"sender":22963,"bgd_e1e5a":4.5401976e-8,"msg_type":149,"omegadot":-5.952033640377751e-9,"payload":"GA4IIQQAMggUrkdAQDgAAAEAAABDMwAAWjMAwLDBACiiQwAAerUAwKE1AADAMgAAkLIDohqtQvkrPghvDWj2Cv8/AAAAAO8HRT8AACApmUC1QAE7BZsOMv0/fijCh1SQOb6TYpEkRKLpP79dPRTHYe8/dQCRpGwQsr3///9LCLR2P///////07W9AAAAAAghBAAyCEMAQwA=","inc":0.9806857486063832,"inc_dot":-1.6429255773019897e-11,"iode":67,"crc":17160,"common":{"health_bits":0,"fit_interval":14400,"valid":1,"sid":{"sat":24,"code":14},"toe":{"wn":2098,"tow":270600},"ura":3.12},"c_rs":-22.09375,"m0":1.9401763977575133,"af2":0,"c_rc":324.3125,"bgd_e1e5b":5.075708e-8,"af1":-1.9852564037137196e-11,"c_is":-1.6763806e-8,"c_ic":2.2351742e-8,"omega0":1.8247209601865395,"iodc":67} -{"length":152,"af0":1.907260389998555e-3,"w":-1.5654652719122086e-2,"dn":2.7722583328300094e-9,"c_us":1.0371208e-5,"c_uc":4.9714e-6,"ecc":4.320717416703701e-4,"sqrta":5440.606544494629,"preamble":85,"toc":{"wn":2098,"tow":270600},"sender":22963,"bgd_e1e5a":-1.5366822e-8,"msg_type":149,"omegadot":-5.393081786360879e-9,"payload":"Cw4IIQQAMggUrkdAQDgAAAEAAACEsgAAkLIAgNtCAHAEQwDQpjYAAC43AADAMQAA8DIJ2QezQtAnPuz3xuNXe+U/AAAAAPZQPD8AAIBGm0C1QK3tOpsxCAPAXpX5kcEpN74w4dX1xQeQv9UhC83qmO8/RLuw9AgSAz7///8/oT9fP/7/////ces9AAAAIgghBAAyCEMAQwA=","inc":0.9874166493182722,"inc_dot":5.550231189407157e-10,"iode":67,"crc":2583,"common":{"health_bits":0,"fit_interval":14400,"valid":1,"sid":{"sat":11,"code":14},"toe":{"wn":2098,"tow":270600},"ura":3.12},"c_rs":109.75,"m0":0.6713065575383985,"af2":1.7347235e-18,"c_rc":132.4375,"bgd_e1e5b":-1.6763806e-8,"af1":1.996909304580185e-10,"c_is":2.7939677e-8,"c_ic":5.5879354e-9,"omega0":-2.379000866638043,"iodc":67} -{"length":152,"af0":-4.7208549221977586e-4,"w":-0.5807865279072539,"dn":3.1744179415348008e-9,"c_us":1.1641532e-6,"c_uc":-6.724149e-7,"ecc":6.590713746845722e-5,"sqrta":5440.611110687256,"preamble":85,"toc":{"wn":2098,"tow":270600},"sender":22963,"bgd_e1e5a":2.3283064e-9,"msg_type":149,"omegadot":-5.8966741915773585e-9,"payload":"Hw4IIQQAMggUrkdAQDgAAAEAAAAgMQAAMDEAAHbBAHijQwCANLUAQJw1AAAAsQAA8DL+96xunkQrPkZyn/wvcwHAAAAAAPRGET8AAMBxnEC1QJaRgpusG/0/YRMSO3ZTOb6iNeqgzZXiv43JI3Ekcu8/wO8/t+Srsb3///+/R/A+v/7//////y+9AAAAAAghBAAyCEMAQwA=","inc":0.9826833925019841,"inc_dot":-1.607209803882381e-11,"iode":67,"crc":3,"common":{"health_bits":0,"fit_interval":14400,"valid":1,"sid":{"sat":31,"code":14},"toe":{"wn":2098,"tow":270600},"ura":3.12},"c_rs":-15.375,"m0":-2.181243871322553,"af2":0,"c_rc":326.9375,"bgd_e1e5b":2.561137e-9,"af1":-5.6843418860808e-14,"c_is":2.7939677e-8,"c_ic":-1.8626451e-9,"omega0":1.8192564081774427,"iodc":67} -{"length":51,"text":"GLO L2OF ME 1 [+1360ms] low CN0 too long, dropping","preamble":85,"sender":22963,"msg_type":1025,"payload":"BkdMTyBMMk9GIE1FIDEgWysxMzYwbXNdIGxvdyBDTjAgdG9vIGxvbmcsIGRyb3BwaW5n","crc":15891,"level":6} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"Mgi02i4QAAAAAAE=","wn":2098,"tow":271506100,"crc":16568} -{"length":16,"flags":17,"ns":99999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EbTaLhDkBwMZAxgw/uD1BQ==","day":25,"tow":271506100,"year":2020,"crc":53827,"minutes":24,"month":3,"seconds":48} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.616115094373786,"preamble":85,"sender":22963,"msg_type":522,"payload":"tNouEH56gORl6kJA8q7PIVaSXsBJ6AS4uZ0xwAECWwQPBg==","lat":37.8312345149361,"tow":271506100,"h_accuracy":513,"crc":20116,"lon":-122.28650708467083} -{"v_accuracy":713,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"tNouEAAAAAAJAAAACgAAAPEAyQIPAg==","n":0,"d":10,"tow":271506100,"h_accuracy":241,"crc":9597,"e":9} -{"length":15,"gdop":155,"flags":6,"tdop":77,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"tNouEJsAhwBNAEgAcgAG","tow":271506100,"crc":42585,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"tNouEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271506100,"h_accuracy":0,"crc":49577,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"tNouEP//","tow":271506100,"crc":39218} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":152,"af0":-4.6914938138797874e-4,"w":-0.8905894853810961,"dn":2.6633252239002037e-9,"c_us":1.0326505e-5,"c_uc":4.2803586e-6,"ecc":3.9580545853823423e-4,"sqrta":5440.610097885132,"preamble":85,"toc":{"wn":2098,"tow":270000},"sender":22963,"bgd_e1e5a":-5.122274e-9,"msg_type":149,"omegadot":-5.325221816863623e-9,"payload":"IQ6wHgQAMggUrkdAQDgAAAEAAACwsQAA0LEAMLNCALgFQwCgjzYAQC03AACIswAAwLE7r4zPtuAmPkwWPLbJbwhAAAAAgIPwOT8AAGAvnEC1QDTgM7QeEQPA+GrXryTfNr7k8TuFtX/sv6HbAEo2s+8/tGUD6d1QAz7///8/Bb8+v/7//////109AAAAALAeBAAyCEIAQgA=","inc":0.9906264729860262,"inc_dot":5.621662736246373e-10,"iode":66,"crc":18815,"common":{"health_bits":0,"fit_interval":14400,"valid":1,"sid":{"sat":33,"code":14},"toe":{"wn":2098,"tow":270000},"ura":3.12},"c_rs":89.59375,"m0":3.0545839535796286,"af2":0,"c_rc":133.71875,"bgd_e1e5b":-6.0535967e-9,"af1":4.2632564145606e-13,"c_is":-5.5879354e-9,"c_ic":-6.3329935e-8,"omega0":-2.383359344323276,"iodc":66} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MggY2y4QAAAAAAE=","wn":2098,"tow":271506200,"crc":43573} -{"length":16,"flags":17,"ns":199999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"ERjbLhDkBwMZAxgw/sHrCw==","day":25,"tow":271506200,"year":2020,"crc":44183,"minutes":24,"month":3,"seconds":48} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.613832226953363,"preamble":85,"sender":22963,"msg_type":522,"payload":"GNsuEFREAeVl6kJAvfOpIVaSXsDc/tsbJJ0xwAECWwQPBg==","lat":37.83123457490788,"tow":271506200,"h_accuracy":513,"crc":12543,"lon":-122.28650704953084} -{"v_accuracy":713,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"GNsuEAYAAAAEAAAA8f////EAyQIPAg==","n":6,"d":-15,"tow":271506200,"h_accuracy":241,"crc":51496,"e":4} -{"length":15,"gdop":155,"flags":6,"tdop":77,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"GNsuEJsAhwBNAEgAcgAG","tow":271506200,"crc":43209,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"GNsuEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271506200,"h_accuracy":0,"crc":15749,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"GNsuEP//","tow":271506200,"crc":55720} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"Mgh82y4QAAAAAAE=","wn":2098,"tow":271506300,"crc":52991} -{"length":16,"flags":17,"ns":299999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EXzbLhDkBwMZAxgw/qLhEQ==","day":25,"tow":271506300,"year":2020,"crc":7859,"minutes":24,"month":3,"seconds":48} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.611402613832425,"preamble":85,"sender":22963,"msg_type":522,"payload":"fNsuEDq8YuVl6kJArKV/IVaSXsBkGbfhhJwxwAECWwQPBg==","lat":37.83123462029512,"tow":271506300,"h_accuracy":513,"crc":52051,"lon":-122.28650701013129} -{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"fNsuEPr///8BAAAACwAAAPEAygIPAg==","n":-6,"d":11,"tow":271506300,"h_accuracy":241,"crc":61730,"e":1} -{"length":15,"gdop":155,"flags":6,"tdop":77,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"fNsuEJsAhwBNAEgAcgAG","tow":271506300,"crc":33894,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"fNsuEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271506300,"h_accuracy":0,"crc":9523,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"fNsuEP//","tow":271506300,"crc":32785} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":237,"states":[{"cn0":213,"mesid":{"sat":5,"code":0}},{"cn0":180,"mesid":{"sat":21,"code":0}},{"cn0":189,"mesid":{"sat":2,"code":0}},{"cn0":167,"mesid":{"sat":31,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":218,"mesid":{"sat":25,"code":0}},{"cn0":206,"mesid":{"sat":12,"code":0}},{"cn0":213,"mesid":{"sat":29,"code":0}},{"cn0":206,"mesid":{"sat":18,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":205,"mesid":{"sat":131,"code":2}},{"cn0":204,"mesid":{"sat":25,"code":1}},{"cn0":187,"mesid":{"sat":12,"code":1}},{"cn0":150,"mesid":{"sat":31,"code":1}},{"cn0":195,"mesid":{"sat":18,"code":1}},{"cn0":194,"mesid":{"sat":29,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":193,"mesid":{"sat":5,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":214,"mesid":{"sat":100,"code":3}},{"cn0":176,"mesid":{"sat":98,"code":3}},{"cn0":173,"mesid":{"sat":102,"code":3}},{"cn0":206,"mesid":{"sat":101,"code":3}},{"cn0":207,"mesid":{"sat":93,"code":3}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":183,"mesid":{"sat":106,"code":3}},{"cn0":204,"mesid":{"sat":104,"code":3}},{"cn0":170,"mesid":{"sat":98,"code":4}},{"cn0":205,"mesid":{"sat":102,"code":4}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":199,"mesid":{"sat":100,"code":4}},{"cn0":194,"mesid":{"sat":101,"code":4}},{"cn0":187,"mesid":{"sat":104,"code":4}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":176,"mesid":{"sat":106,"code":4}},{"cn0":200,"mesid":{"sat":35,"code":12}},{"cn0":168,"mesid":{"sat":26,"code":12}},{"cn0":160,"mesid":{"sat":34,"code":12}},{"cn0":189,"mesid":{"sat":24,"code":12}},{"cn0":157,"mesid":{"sat":25,"code":12}},{"cn0":185,"mesid":{"sat":12,"code":12}},{"cn0":184,"mesid":{"sat":19,"code":12}},{"cn0":191,"mesid":{"sat":22,"code":12}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":208,"mesid":{"sat":12,"code":13}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":195,"mesid":{"sat":12,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":192,"mesid":{"sat":25,"code":14}},{"cn0":188,"mesid":{"sat":11,"code":14}},{"cn0":204,"mesid":{"sat":24,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":158,"mesid":{"sat":31,"code":14}},{"cn0":153,"mesid":{"sat":33,"code":14}},{"cn0":201,"mesid":{"sat":25,"code":20}},{"cn0":215,"mesid":{"sat":24,"code":20}},{"cn0":194,"mesid":{"sat":11,"code":20}},{"cn0":173,"mesid":{"sat":31,"code":20}},{"cn0":207,"mesid":{"sat":12,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":169,"mesid":{"sat":33,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}}],"preamble":85,"sender":22963,"msg_type":97,"payload":"BQDVFQC0AgC9HwCnAAAAAAAAGQDaDADOHQDVEgDOAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwLNGQHMDAG7HwGWEgHDHQHCAAAABQHBAAAAAAAAAAAAAAAAZAPWYgOwZgOtZQPOXQPPAAAAagO3aAPMYgSqZgTNAAAAZATHZQTCaAS7AAAAagSwIwzIGgyoIgygGAy9GQydDAy5Ewy4Fgy/AAAADA3QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADA7DAAAAGQ7ACw68GA7MAAAAHw6eIQ6ZGRTJGBTXCxTCHxStDBTPAAAAIRSpAAAA","crc":31743} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"Mgjg2y4QAAAAAAE=","wn":2098,"tow":271506400,"crc":38819} -{"length":16,"flags":17,"ns":399999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EeDbLhDkBwMZAxgw/oPXFw==","day":25,"tow":271506400,"year":2020,"crc":50911,"minutes":24,"month":3,"seconds":48} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.609590309347126,"preamble":85,"sender":22963,"msg_type":522,"payload":"4NsuEKkA8uVl6kJAPVJoIVaSXsC8mkocDpwxwAECWwQPBg==","lat":37.831234687009164,"tow":271506400,"h_accuracy":513,"crc":18781,"lon":-122.28650698840734} -{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"4NsuEA8AAAD9////AAAAAPEAygIPAg==","n":15,"d":0,"tow":271506400,"h_accuracy":241,"crc":31274,"e":-3} -{"length":15,"gdop":155,"flags":6,"tdop":77,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"4NsuEJsAhwBNAEgAcgAG","tow":271506400,"crc":8713,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"4NsuEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271506400,"h_accuracy":0,"crc":56066,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"4NsuEP//","tow":271506400,"crc":17750} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":9,"l2ca_bias":0,"preamble":85,"l2p_bias":0,"sender":22963,"msg_type":117,"payload":"/wAAAAAAAAAA","l1ca_bias":0,"mask":255,"crc":49809,"l1p_bias":0} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MghE3C4QAAAAAAE=","wn":2098,"tow":271506500,"crc":54298} -{"length":16,"flags":17,"ns":499999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EUTcLhDkBwMZAxgw/mTNHQ==","day":25,"tow":271506500,"year":2020,"crc":35902,"minutes":24,"month":3,"seconds":48} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.610994953274844,"preamble":85,"sender":22963,"msg_type":522,"payload":"RNwuENWBWuZl6kJAmDpFIVaSXsAlVk4qapwxwAECWwQPBg==","lat":37.8312347356729,"tow":271506500,"h_accuracy":513,"crc":44973,"lon":-122.28650695572503} -{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"RNwuEP////8EAAAADQAAAPEAygIPAg==","n":-1,"d":13,"tow":271506500,"h_accuracy":241,"crc":33799,"e":4} -{"length":15,"gdop":155,"flags":6,"tdop":77,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"RNwuEJsAhwBNAEgAcgAG","tow":271506500,"crc":187,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"RNwuEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271506500,"h_accuracy":0,"crc":42491,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"RNwuEP//","tow":271506500,"crc":50443} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"Mgio3C4QAAAAAAE=","wn":2098,"tow":271506600,"crc":9885} -{"length":16,"flags":17,"ns":599999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EajcLhDkBwMZAxgw/kXDIw==","day":25,"tow":271506600,"year":2020,"crc":38562,"minutes":24,"month":3,"seconds":48} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.61016409591592,"preamble":85,"sender":22963,"msg_type":522,"payload":"qNwuEE660eZl6kJAfq8fIVaSXsD8JtW2M5wxwAECWwQPBg==","lat":37.83123479118932,"tow":271506600,"h_accuracy":513,"crc":33617,"lon":-122.28650692076005} -{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"qNwuEAwAAAD9////9/////EAygIPAg==","n":12,"d":-9,"tow":271506600,"h_accuracy":241,"crc":25197,"e":-3} -{"length":15,"gdop":155,"flags":6,"tdop":77,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"qNwuEJsAhwBNAEgAcgAG","tow":271506600,"crc":24387,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"qNwuEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271506600,"h_accuracy":0,"crc":22907,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"qNwuEP//","tow":271506600,"crc":17872} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MggM3S4QAAAAAAE=","wn":2098,"tow":271506700,"crc":58863} -{"length":16,"flags":17,"ns":699999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EQzdLhDkBwMZAxgw/ia5KQ==","day":25,"tow":271506700,"year":2020,"crc":15252,"minutes":24,"month":3,"seconds":48} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.611184904265475,"preamble":85,"sender":22963,"msg_type":522,"payload":"DN0uECt+Nudl6kJAFD0FIVaSXsANoSeddpwxwAECWwQPBg==","lat":37.83123483811172,"tow":271506700,"h_accuracy":513,"crc":12487,"lon":-122.28650689612942} -{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"DN0uEAMAAAD7//////////EAygIPAg==","n":3,"d":-1,"tow":271506700,"h_accuracy":241,"crc":32884,"e":-5} -{"length":15,"gdop":155,"flags":6,"tdop":77,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"DN0uEJsAhwBNAEgAcgAG","tow":271506700,"crc":30358,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"DN0uEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271506700,"h_accuracy":0,"crc":64500,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"DN0uEP//","tow":271506700,"crc":2056} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"message_type":63,"length":34,"data":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"preamble":85,"sender":22963,"msg_type":30583,"payload":"gwIv3C4QPwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA==","tow":271506479,"crc":55020,"sid":{"sat":131,"code":2}} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"Mghw3S4QAAAAAAE=","wn":2098,"tow":271506800,"crc":64292} -{"length":16,"flags":17,"ns":799999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EXDdLhDkBwMZAxgw/gevLw==","day":25,"tow":271506800,"year":2020,"crc":1553,"minutes":24,"month":3,"seconds":48} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.61470518315392,"preamble":85,"sender":22963,"msg_type":522,"payload":"cN0uEKqEludl6kJAADDfIFaSXsDpU6JRXZ0xwAECWwQPBg==","lat":37.83123488282702,"tow":271506800,"h_accuracy":513,"crc":29489,"lon":-122.28650686069159} -{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"cN0uEP3///8JAAAA//////EAygIPAg==","n":-3,"d":-1,"tow":271506800,"h_accuracy":241,"crc":58507,"e":9} -{"length":15,"gdop":155,"flags":6,"tdop":77,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"cN0uEJsAhwBNAEgAcgAG","tow":271506800,"crc":13302,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"cN0uEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271506800,"h_accuracy":0,"crc":167,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"cN0uEP//","tow":271506800,"crc":18039} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":237,"states":[{"cn0":213,"mesid":{"sat":5,"code":0}},{"cn0":181,"mesid":{"sat":21,"code":0}},{"cn0":189,"mesid":{"sat":2,"code":0}},{"cn0":167,"mesid":{"sat":31,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":218,"mesid":{"sat":25,"code":0}},{"cn0":206,"mesid":{"sat":12,"code":0}},{"cn0":213,"mesid":{"sat":29,"code":0}},{"cn0":206,"mesid":{"sat":18,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":205,"mesid":{"sat":131,"code":2}},{"cn0":205,"mesid":{"sat":25,"code":1}},{"cn0":187,"mesid":{"sat":12,"code":1}},{"cn0":150,"mesid":{"sat":31,"code":1}},{"cn0":195,"mesid":{"sat":18,"code":1}},{"cn0":194,"mesid":{"sat":29,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":194,"mesid":{"sat":5,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":214,"mesid":{"sat":11,"code":3}},{"cn0":176,"mesid":{"sat":9,"code":3}},{"cn0":173,"mesid":{"sat":20,"code":3}},{"cn0":206,"mesid":{"sat":5,"code":3}},{"cn0":207,"mesid":{"sat":10,"code":3}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":183,"mesid":{"sat":4,"code":3}},{"cn0":203,"mesid":{"sat":21,"code":3}},{"cn0":170,"mesid":{"sat":9,"code":4}},{"cn0":205,"mesid":{"sat":20,"code":4}},{"cn0":83,"mesid":{"sat":10,"code":4}},{"cn0":199,"mesid":{"sat":11,"code":4}},{"cn0":194,"mesid":{"sat":5,"code":4}},{"cn0":187,"mesid":{"sat":0,"code":4}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":177,"mesid":{"sat":4,"code":4}},{"cn0":200,"mesid":{"sat":35,"code":12}},{"cn0":169,"mesid":{"sat":26,"code":12}},{"cn0":160,"mesid":{"sat":34,"code":12}},{"cn0":189,"mesid":{"sat":24,"code":12}},{"cn0":157,"mesid":{"sat":25,"code":12}},{"cn0":185,"mesid":{"sat":12,"code":12}},{"cn0":184,"mesid":{"sat":19,"code":12}},{"cn0":191,"mesid":{"sat":22,"code":12}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":208,"mesid":{"sat":12,"code":13}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":194,"mesid":{"sat":12,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":191,"mesid":{"sat":25,"code":14}},{"cn0":188,"mesid":{"sat":11,"code":14}},{"cn0":204,"mesid":{"sat":24,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":159,"mesid":{"sat":31,"code":14}},{"cn0":153,"mesid":{"sat":33,"code":14}},{"cn0":201,"mesid":{"sat":25,"code":20}},{"cn0":215,"mesid":{"sat":24,"code":20}},{"cn0":194,"mesid":{"sat":11,"code":20}},{"cn0":173,"mesid":{"sat":31,"code":20}},{"cn0":207,"mesid":{"sat":12,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":169,"mesid":{"sat":33,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}}],"preamble":85,"sender":22963,"msg_type":97,"payload":"BQDVFQC1AgC9HwCnAAAAAAAAGQDaDADOHQDVEgDOAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwLNGQHNDAG7HwGWEgHDHQHCAAAABQHCAAAAAAAAAAAAAAAACwPWCQOwFAOtBQPOCgPPAAAABAO3FQPLCQSqFATNCgRTCwTHBQTCAAS7AAAABASxIwzIGgypIgygGAy9GQydDAy5Ewy4Fgy/AAAADA3QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADA7CAAAAGQ6/Cw68GA7MAAAAHw6fIQ6ZGRTJGBTXCxTCHxStDBTPAAAAIRSpAAAA","crc":14970} -{"length":136,"preamble":85,"sender":22963,"msg_type":151,"payload":"AgAaHgUALDUMAFEtFQB9GRkAbUYaAKEBHQChNx8AlQ4EAxYWBQMyIQYDTggJA18OCgNxKQsDmCUMA6oDEwMiBxQDCzEVA5UlDAyUKRMMIyAUDA8CFgxDIxgMgiMZDJ0OGgxnFR0MLAAiDI4RIwwiLQsOizIMDg88GA5sNhkOlykfDlURIQ4fDw==","crc":41336,"azel":[{"el":30,"az":26,"sid":{"sat":2,"code":0}},{"el":53,"az":44,"sid":{"sat":5,"code":0}},{"el":45,"az":81,"sid":{"sat":12,"code":0}},{"el":25,"az":125,"sid":{"sat":21,"code":0}},{"el":70,"az":109,"sid":{"sat":25,"code":0}},{"el":1,"az":161,"sid":{"sat":26,"code":0}},{"el":55,"az":161,"sid":{"sat":29,"code":0}},{"el":14,"az":149,"sid":{"sat":31,"code":0}},{"el":22,"az":22,"sid":{"sat":4,"code":3}},{"el":33,"az":50,"sid":{"sat":5,"code":3}},{"el":8,"az":78,"sid":{"sat":6,"code":3}},{"el":14,"az":95,"sid":{"sat":9,"code":3}},{"el":41,"az":113,"sid":{"sat":10,"code":3}},{"el":37,"az":152,"sid":{"sat":11,"code":3}},{"el":3,"az":170,"sid":{"sat":12,"code":3}},{"el":7,"az":34,"sid":{"sat":19,"code":3}},{"el":49,"az":11,"sid":{"sat":20,"code":3}},{"el":37,"az":149,"sid":{"sat":21,"code":3}},{"el":41,"az":148,"sid":{"sat":12,"code":12}},{"el":32,"az":35,"sid":{"sat":19,"code":12}},{"el":2,"az":15,"sid":{"sat":20,"code":12}},{"el":35,"az":67,"sid":{"sat":22,"code":12}},{"el":35,"az":130,"sid":{"sat":24,"code":12}},{"el":14,"az":157,"sid":{"sat":25,"code":12}},{"el":21,"az":103,"sid":{"sat":26,"code":12}},{"el":0,"az":44,"sid":{"sat":29,"code":12}},{"el":17,"az":142,"sid":{"sat":34,"code":12}},{"el":45,"az":34,"sid":{"sat":35,"code":12}},{"el":50,"az":139,"sid":{"sat":11,"code":14}},{"el":60,"az":15,"sid":{"sat":12,"code":14}},{"el":54,"az":108,"sid":{"sat":24,"code":14}},{"el":41,"az":151,"sid":{"sat":25,"code":14}},{"el":17,"az":85,"sid":{"sat":31,"code":14}},{"el":15,"az":31,"sid":{"sat":33,"code":14}}]} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgjU3S4QAAAAAAE=","wn":2098,"tow":271506900,"crc":32645} -{"length":16,"flags":17,"ns":899999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EdTdLhDkBwMZAxgw/uikNQ==","day":25,"tow":271506900,"year":2020,"crc":46884,"minutes":24,"month":3,"seconds":48} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.619562651292295,"preamble":85,"sender":22963,"msg_type":522,"payload":"1N0uEKtx8edl6kJAngOiIFaSXsCbH22om54xwAECWwQPBg==","lat":37.83123492516764,"tow":271506900,"h_accuracy":513,"crc":24564,"lon":-122.28650680371945} -{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"1N0uEP3///8QAAAAKQAAAPEAygIPAg==","n":-3,"d":41,"tow":271506900,"h_accuracy":241,"crc":2315,"e":16} -{"length":15,"gdop":155,"flags":6,"tdop":77,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"1N0uEJsAhwBNAEgAcgAG","tow":271506900,"crc":24898,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"1N0uEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271506900,"h_accuracy":0,"crc":30686,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"1N0uEP//","tow":271506900,"crc":41470} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":249,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":61,"i":110562778},"flags":15,"cn0":213,"P":1051969726,"D":{"f":145,"i":-178},"lock":15,"sid":{"sat":5,"code":0}},{"L":{"f":98,"i":121842144},"flags":15,"cn0":180,"P":1159289475,"D":{"f":128,"i":2175},"lock":15,"sid":{"sat":21,"code":0}},{"L":{"f":182,"i":123318501},"flags":15,"cn0":189,"P":1173336152,"D":{"f":215,"i":-2479},"lock":15,"sid":{"sat":2,"code":0}},{"L":{"f":181,"i":128735240},"flags":15,"cn0":167,"P":1224875078,"D":{"f":229,"i":-392},"lock":15,"sid":{"sat":31,"code":0}},{"L":{"f":37,"i":107814316},"flags":15,"cn0":218,"P":1025819043,"D":{"f":184,"i":-1122},"lock":15,"sid":{"sat":25,"code":0}},{"L":{"f":230,"i":114075028},"flags":15,"cn0":206,"P":1085387700,"D":{"f":226,"i":-2964},"lock":15,"sid":{"sat":12,"code":0}},{"L":{"f":62,"i":110772796},"flags":15,"cn0":213,"P":1053968032,"D":{"f":52,"i":1486},"lock":15,"sid":{"sat":29,"code":0}},{"L":{"f":237,"i":84011175},"flags":15,"cn0":204,"P":1025819091,"D":{"f":249,"i":-874},"lock":15,"sid":{"sat":25,"code":1}},{"L":{"f":138,"i":88889664},"flags":15,"cn0":187,"P":1085387620,"D":{"f":42,"i":-2311},"lock":15,"sid":{"sat":12,"code":1}},{"L":{"f":253,"i":100313176},"flags":15,"cn0":151,"P":1224875011,"D":{"f":225,"i":-306},"lock":15,"sid":{"sat":31,"code":1}},{"L":{"f":107,"i":86316466},"flags":15,"cn0":194,"P":1053967932,"D":{"f":142,"i":1158},"lock":15,"sid":{"sat":29,"code":1}},{"L":{"f":120,"i":86152843},"flags":15,"cn0":194,"P":1051969654,"D":{"f":199,"i":-139},"lock":15,"sid":{"sat":5,"code":1}},{"L":{"f":61,"i":112945803},"flags":15,"cn0":214,"P":1056813072,"D":{"f":154,"i":1173},"lock":15,"sid":{"sat":11,"code":3}},{"L":{"f":208,"i":123302272},"flags":15,"cn0":177,"P":1154527455,"D":{"f":223,"i":-4406},"lock":15,"sid":{"sat":9,"code":3}}],"payload":"ON4uEAAAAAAyCEC+yLM+2g2XBj1O/5HVDw8FAINaGUXgKUMHYn8IgLQPDxUAWLDvReWwWQe2UfbXvQ8PAgBGHAJJCFisB7V4/uWnDw8fAKPBJD2sHW0GJZ77uNoPDxkAtLOxQJSlzAbmbPTizg8PDACgRtI+PEKaBj7OBTTVDw8dANPBJD2n6AEF7Zb8+cwPDxkBZLOxQEBZTAWK+fYquw8PDAEDHAJJWKj6Bf3O/uGXDw8fATxG0j6yFSUFa4YEjsIPDx0BdsizPouWIgV4df/Hwg8PBQEQsP0+i2q7Bj2VBJrWDw8LA9+w0ESAcVkH0Mru37EPDwkD","header":{"n_obs":64,"t":{"ns_residual":0,"wn":2098,"tow":271507000}},"crc":23747} -{"length":249,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":223,"i":109761854},"flags":15,"cn0":173,"P":1026300671,"D":{"f":209,"i":-1209},"lock":15,"sid":{"sat":20,"code":3}},{"L":{"f":65,"i":114876205},"flags":15,"cn0":206,"P":1074498131,"D":{"f":219,"i":2203},"lock":15,"sid":{"sat":5,"code":3}},{"L":{"f":9,"i":111581604},"flags":15,"cn0":207,"P":1046620893,"D":{"f":70,"i":-3039},"lock":15,"sid":{"sat":10,"code":3}},{"L":{"f":209,"i":120429047},"flags":15,"cn0":183,"P":1124463509,"D":{"f":10,"i":-1309},"lock":15,"sid":{"sat":4,"code":3}},{"L":{"f":226,"i":113431616},"flags":15,"cn0":203,"P":1059870020,"D":{"f":134,"i":1624},"lock":15,"sid":{"sat":21,"code":3}},{"L":{"f":103,"i":95901777},"flags":15,"cn0":170,"P":1154527592,"D":{"f":129,"i":-3430},"lock":15,"sid":{"sat":9,"code":4}},{"L":{"f":78,"i":85370367},"flags":15,"cn0":205,"P":1026301047,"D":{"f":31,"i":-940},"lock":15,"sid":{"sat":20,"code":4}},{"L":{"f":46,"i":87846746},"flags":15,"cn0":199,"P":1056813300,"D":{"f":32,"i":912},"lock":15,"sid":{"sat":11,"code":4}},{"L":{"f":110,"i":89348163},"flags":15,"cn0":195,"P":1074498442,"D":{"f":156,"i":1714},"lock":15,"sid":{"sat":5,"code":4}},{"L":{"f":107,"i":93667027},"flags":15,"cn0":177,"P":1124463700,"D":{"f":16,"i":-1018},"lock":15,"sid":{"sat":4,"code":4}},{"L":{"f":220,"i":121569058},"flags":15,"cn0":200,"P":1167302690,"D":{"f":31,"i":-1498},"lock":15,"sid":{"sat":35,"code":12}},{"L":{"f":236,"i":129190068},"flags":15,"cn0":169,"P":1240479745,"D":{"f":128,"i":-3009},"lock":15,"sid":{"sat":26,"code":12}},{"L":{"f":120,"i":132962350},"flags":15,"cn0":160,"P":1276700847,"D":{"f":201,"i":2249},"lock":15,"sid":{"sat":34,"code":12}},{"L":{"f":8,"i":125141879},"flags":15,"cn0":189,"P":1201609135,"D":{"f":54,"i":-1299},"lock":15,"sid":{"sat":24,"code":12}}],"payload":"ON4uEAAAAAAyCEH/Giw9PtWKBt9H+9GtDw8UA1OKC0At39gGQZsI284PDwUD3SpiPqSZpgYJIfRGzw8PCgOV8wVD95ktB9Hj+gq3Dw8EA0RVLD9A1MIG4lgGhssPDxUDaLHQRFFYtwVnmvKBqg8PCQR3HCw9/6UWBU5U/B/NDw8UBPSw/T5abzwFLpADIMcPDwsEiosLQENYUwVusgacww8PBQRU9AVD0z6VBWsG/BCxDw8EBCKgk0Ui/z4H3Cb6H8gPDyMMATjwSbRIswfsP/SAqQ8PGgyv6BhMLtjsB3jJCMmgDw8iDK8Zn0d3g3UHCO36Nr0PDxgM","header":{"n_obs":65,"t":{"ns_residual":0,"wn":2098,"tow":271507000}},"crc":33589} -{"length":249,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":99,"i":134681808},"flags":15,"cn0":156,"P":1293211258,"D":{"f":99,"i":1329},"lock":15,"sid":{"sat":25,"code":12}},{"L":{"f":244,"i":121111672},"flags":15,"cn0":185,"P":1162911163,"D":{"f":2,"i":1612},"lock":15,"sid":{"sat":12,"code":12}},{"L":{"f":103,"i":124512873},"flags":15,"cn0":184,"P":1195569375,"D":{"f":89,"i":-285},"lock":15,"sid":{"sat":19,"code":12}},{"L":{"f":198,"i":124721745},"flags":15,"cn0":191,"P":1197574987,"D":{"f":156,"i":2389},"lock":15,"sid":{"sat":22,"code":12}},{"L":{"f":138,"i":93651236},"flags":15,"cn0":208,"P":1162911074,"D":{"f":254,"i":1246},"lock":15,"sid":{"sat":12,"code":13}},{"L":{"f":144,"i":116418712},"flags":15,"cn0":194,"P":1107687200,"D":{"f":133,"i":-1027},"lock":15,"sid":{"sat":12,"code":14}},{"L":{"f":23,"i":132482665},"flags":15,"cn0":192,"P":1260530575,"D":{"f":170,"i":1091},"lock":15,"sid":{"sat":25,"code":14}},{"L":{"f":206,"i":125430080},"flags":15,"cn0":188,"P":1193427504,"D":{"f":169,"i":1047},"lock":15,"sid":{"sat":11,"code":14}},{"L":{"f":24,"i":118401478},"flags":15,"cn0":204,"P":1126552484,"D":{"f":144,"i":-1741},"lock":15,"sid":{"sat":24,"code":14}},{"L":{"f":44,"i":143298789},"flags":15,"cn0":159,"P":1363442651,"D":{"f":235,"i":-3172},"lock":15,"sid":{"sat":31,"code":14}},{"L":{"f":122,"i":144508921},"flags":15,"cn0":153,"P":1374956668,"D":{"f":226,"i":-2141},"lock":15,"sid":{"sat":33,"code":14}},{"L":{"f":215,"i":101512689},"flags":15,"cn0":201,"P":1260530541,"D":{"f":252,"i":836},"lock":15,"sid":{"sat":25,"code":20}},{"L":{"f":12,"i":90723274},"flags":15,"cn0":215,"P":1126553020,"D":{"f":113,"i":-1335},"lock":15,"sid":{"sat":24,"code":20}},{"L":{"f":8,"i":96108741},"flags":15,"cn0":194,"P":1193427295,"D":{"f":160,"i":802},"lock":15,"sid":{"sat":11,"code":20}}],"payload":"ON4uEAAAAAAyCEJ61hRN0BQHCGMxBWOcDw8ZDLudUEV4BDgH9EwGArkPDwwM3/BCR2nqawdn4/5ZuA8PEwxLi2FHURpvB8ZVCZy/Dw8WDGKdUEUkAZUFit4E/tAPDwwNIPcFQpho8AaQ/fuFwg8PDA6PKyJLaYblBxdDBKrADw8ZDjBCIkdA6XkHzhcEqbwPDwsOpNMlQ8apDgcYM/mQzA8PGA7be0RR5ZCKCCyc8+ufDw8fDnws9FH5B50IeqP34pkPDyEObSsiS/H1DAbXRAP8yQ8PGRS81SVDylNoBQzJ+nHXDw8YFF9BIkfFgLoFCCIDoMIPDwsU","header":{"n_obs":66,"t":{"ns_residual":0,"wn":2098,"tow":271507000}},"crc":15726} -{"length":62,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":112,"i":109800412},"flags":15,"cn0":173,"P":1363442688,"D":{"f":181,"i":-2430},"lock":15,"sid":{"sat":31,"code":20}},{"L":{"f":48,"i":89203979},"flags":15,"cn0":207,"P":1107687037,"D":{"f":171,"i":-788},"lock":15,"sid":{"sat":12,"code":20}},{"L":{"f":171,"i":110727685},"flags":15,"cn0":170,"P":1374956626,"D":{"f":136,"i":-1640},"lock":15,"sid":{"sat":33,"code":20}}],"payload":"ON4uEAAAAAAyCEMAfERR3GuLBnCC9rWtDw8fFH32BUILJVEFMOz8q88PDwwUUiz0UQWSmQarmPmIqg8PIRQ=","header":{"n_obs":67,"t":{"ns_residual":0,"wn":2098,"tow":271507000}},"crc":20711} -{"length":9,"l2ca_bias":0,"preamble":85,"l2p_bias":0,"sender":22963,"msg_type":117,"payload":"/wAAAAAAAAAA","l1ca_bias":0,"mask":255,"crc":49809,"l1p_bias":0} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"Mgg43i4QAAAAAAE=","wn":2098,"tow":271507000,"crc":17783} -{"length":16,"flags":17,"ns":999999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"ETjeLhDkBwMZAxgw/smaOw==","day":25,"tow":271507000,"year":2020,"crc":5085,"minutes":24,"month":3,"seconds":48} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.61990320585585,"preamble":85,"sender":22963,"msg_type":522,"payload":"ON4uEPoTRuhl6kJAfjOAIFaSXsAg1vv5sZ4xwAECWwQPBg==","lat":37.83123496457843,"tow":271507000,"h_accuracy":513,"crc":47292,"lon":-122.28650677222865} -{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"ON4uEAUAAAD6/////v////EAygIPAg==","n":5,"d":-2,"tow":271507000,"h_accuracy":241,"crc":35365,"e":-6} -{"length":15,"gdop":155,"flags":6,"tdop":77,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"ON4uEJsAhwBNAEgAcgAG","tow":271507000,"crc":45849,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"ON4uEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271507000,"h_accuracy":0,"crc":58725,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"ON4uEP//","tow":271507000,"crc":53239} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":4,"flags":2147616000,"preamble":85,"sender":22963,"msg_type":65535,"payload":"AAUCgA==","crc":40942} -{"length":24,"z":3890655.0240602265,"preamble":85,"sender":22963,"msg_type":72,"payload":"UO0a3iqORMHK1UJhIkRQwc9nFIPvrk1B","crc":2168,"x":-2694229.735196747,"y":-4264073.519704292} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"Mgic3i4QAAAAAAE=","wn":2098,"tow":271507100,"crc":49622} -{"length":16,"flags":17,"ns":99999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EZzeLhDkBwMZAxgx/uD1BQ==","day":25,"tow":271507100,"year":2020,"crc":16358,"minutes":24,"month":3,"seconds":49} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.617370818876648,"preamble":85,"sender":22963,"msg_type":522,"payload":"nN4uEO3qhuhl6kJA14hMIFaSXsB3lJQDDJ4xwAECWwQPBg==","lat":37.83123499477174,"tow":271507100,"h_accuracy":513,"crc":38169,"lon":-122.28650672411037} -{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"nN4uEP3///8AAAAAAQAAAPEAygIPAg==","n":-3,"d":1,"tow":271507100,"h_accuracy":241,"crc":22904,"e":0} -{"length":15,"gdop":155,"flags":6,"tdop":77,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"nN4uEJsAhwBNAEgAcgAG","tow":271507100,"crc":57773,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"nN4uEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271507100,"h_accuracy":0,"crc":37404,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"nN4uEP//","tow":271507100,"crc":10366} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MggA3y4QAAAAAAE=","wn":2098,"tow":271507200,"crc":57177} -{"length":16,"flags":17,"ns":199999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EQDfLhDkBwMZAxgx/sHrCw==","day":25,"tow":271507200,"year":2020,"crc":37548,"minutes":24,"month":3,"seconds":49} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.61359973984988,"preamble":85,"sender":22963,"msg_type":522,"payload":"AN8uEHP98Ohl6kJAT1URIFaSXsBGfV/fFJ0xwAECWwQPBg==","lat":37.83123504416553,"tow":271507200,"h_accuracy":513,"crc":43634,"lon":-122.28650666897487} -{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"AN8uEA4AAAAEAAAAAQAAAPEAygIPAg==","n":14,"d":1,"tow":271507200,"h_accuracy":241,"crc":41331,"e":4} -{"length":15,"gdop":155,"flags":6,"tdop":77,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"AN8uEJsAhwBNAEgAcgAG","tow":271507200,"crc":15523,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"AN8uEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271507200,"h_accuracy":0,"crc":47579,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"AN8uEP//","tow":271507200,"crc":18280} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":139,"af0":-9.685755e-6,"w":0.7879862351781709,"dn":5.216288707933817e-9,"c_us":3.6917627e-6,"c_uc":-2.0805746e-6,"ecc":5.77498646453023e-3,"sqrta":5153.621828079224,"preamble":85,"toc":{"wn":2098,"tow":273600},"sender":22963,"msg_type":138,"omegadot":-8.661789369723447e-9,"payload":"BQDALAQAMggAAABAQDgAAAEAAABAsgBALsIAFJZDAKALtgDAdzYAAACxAACAMRHWGb5eZzY+T/dUY52P0T8AAAAgg6d3PwAAIDCfIbRARtfJCOom8b9M1QV73plCvqU6ueguN+k/EhTM+Tx17j/o1QJxDTj7vQCAIrcAAECrAAAAAMAsBAAyCBsbAA==","inc":0.9518113020755001,"inc_dot":-3.9608792722345795e-10,"tgd":-1.1175871e-8,"iode":27,"crc":17495,"common":{"health_bits":0,"fit_interval":14400,"valid":1,"sid":{"sat":5,"code":0},"toe":{"wn":2098,"tow":273600},"ura":2},"c_rs":-43.5625,"m0":0.2743905515707085,"af2":0,"c_rc":300.15625,"af1":-6.82121e-13,"c_is":3.7252903e-9,"c_ic":-1.8626451e-9,"omega0":-1.0720005362795333,"iodc":27} -{"length":139,"af0":-7.2387047e-6,"w":0.913959268152067,"dn":4.643050544549101e-9,"c_us":4.1704625e-6,"c_uc":-2.9560179e-6,"ecc":9.245076566003263e-3,"sqrta":5153.570272445679,"preamble":85,"toc":{"wn":2098,"tow":273600},"sender":22963,"msg_type":138,"omegadot":-8.311417632477088e-9,"payload":"GQDALAQAMggAAABAQDgAAAEAAADAMQAgX8IA/JZDAGBGtgDwizYAADa0AAAotFSYPIsW8TM+5hz4wc+O/z8AAAAsFe+CPwAAYP2RIbRAFhvTsJnQAEDKAtIKQNlBvuja0oEnP+0/Qj1ZqGzq7j/cS8aiBt3svQDk8rYAABgsAAAAAMAsBAAyCAUFAA==","inc":0.9661162651117723,"inc_dot":-2.100087477072978e-10,"tgd":5.5879354e-9,"iode":5,"crc":19841,"common":{"health_bits":0,"fit_interval":14400,"valid":1,"sid":{"sat":25,"code":0},"toe":{"wn":2098,"tow":273600},"ura":2},"c_rs":-55.78125,"m0":1.9723661019250414,"af2":0,"c_rc":301.96875,"af1":2.16005e-12,"c_is":-1.5646219e-7,"c_ic":-1.6950071e-7,"omega0":2.101855641786993,"iodc":5} -{"length":139,"af0":1.3691094e-4,"w":1.124390026032068,"dn":4.266606292706428e-9,"c_us":4.5280904e-6,"c_uc":-3.33786e-6,"ecc":8.09362216386944e-3,"sqrta":5153.721719741821,"preamble":85,"toc":{"wn":2098,"tow":273600},"sender":22963,"msg_type":138,"omegadot":-8.031048811133161e-9,"payload":"DADALAQAMggAAABAQDgAAAEAAABYsgCge8IApJZDAABgtgDwlzYAAKAyAAAgtI3VKOguUzI+msQrVfHbAUAAAACUY5OAPwAAoMK4IbRAOKAgCzJcAUCtOHejHT9BvuQZXGWA/fE/c6ROYnhS7z8M3+7JXEfxvcCPDzkAAJisAAAAAMAsBAAyCBcXAA==","inc":0.9788171691954076,"inc_dot":-2.5143904487404365e-10,"tgd":-1.2572855e-8,"iode":23,"crc":50178,"common":{"health_bits":0,"fit_interval":14400,"valid":1,"sid":{"sat":12,"code":0},"toe":{"wn":2098,"tow":273600},"ura":2},"c_rs":-62.90625,"m0":2.2323938993436743,"af2":0,"c_rc":301.28125,"af1":-4.3201e-12,"c_is":-1.4901161e-7,"c_ic":1.8626451e-8,"omega0":2.1700173253375645,"iodc":23} -{"length":139,"af0":-6.4762775e-5,"w":1.8704240804535182,"dn":3.736227057425242e-9,"c_us":1.2401491e-5,"c_uc":-9.741634e-7,"ecc":1.2328720185905695e-3,"sqrta":5153.613843917847,"preamble":85,"toc":{"wn":2098,"tow":273600},"sender":22963,"msg_type":138,"omegadot":-7.594244902211349e-9,"payload":"HQDALAQAMggAAABAQDgAAAEAAAAwsgCAYsEAABlDAMCCtQAQUDcAAOAyAACQMqWXiWwGDDA+XB/TSA2OvL8AAABACjNUPwAA4CSdIbRAtqOeydGKCMBFFRj0+k5AvgMu88xB7f0/FO/KteyN7z8ahhkPrDSlvUDRh7gAACKtAAAAAMAsBAAyCEREAA==","inc":0.9860747862471464,"inc_dot":-9.643258823294287e-12,"tgd":-1.0244548e-8,"iode":68,"crc":20617,"common":{"health_bits":0,"fit_interval":14400,"valid":1,"sid":{"sat":29,"code":0},"toe":{"wn":2098,"tow":273600},"ura":2},"c_rs":-14.15625,"m0":-0.11154253986307822,"af2":0,"c_rc":153,"af1":-9.208634e-12,"c_is":1.6763806e-8,"c_ic":2.6077032e-8,"omega0":-3.067782950547975,"iodc":68} -{"length":139,"af0":-4.2781373e-4,"w":-1.6429787675404337,"dn":4.696267046944317e-9,"c_us":7.232651e-6,"c_uc":4.408881e-6,"ecc":1.97759565198794e-2,"sqrta":5153.662273406982,"preamble":85,"toc":{"wn":2098,"tow":273600},"sender":22963,"msg_type":138,"omegadot":-7.878185300897237e-9,"payload":"AgDALAQAMggAAABAQDgAAAEAAACYsgCwpkIAuGpDAPCTNgCw8jYAAGg0AAAsNA3HXKiZKzQ+FOBzlwsNA8AAAAD6JUCUPwAAwIqpIbRAOU/fvEhCAcC2dBUDFOtAvp68qRqkSfq/uJiunyKq7j/puaCuBosEPjBM4LkAAOisAAAAAMAsBAAyCDQ0AA==","inc":0.9582684630193148,"inc_dot":5.978820470442458e-10,"tgd":-1.7695129e-8,"iode":52,"crc":18755,"common":{"health_bits":0,"fit_interval":14400,"valid":1,"sid":{"sat":2,"code":0},"toe":{"wn":2098,"tow":273600},"ura":2},"c_rs":83.34375,"m0":-2.3813697654950463,"af2":0,"c_rc":234.71875,"af1":-6.5938366e-12,"c_is":1.6018748e-7,"c_ic":2.1606684e-7,"omega0":-2.1573652988098755,"iodc":52} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"Mghk3y4QAAAAAAE=","wn":2098,"tow":271507300,"crc":48019} -{"length":16,"flags":17,"ns":299999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EWTfLhDkBwMZAxgx/qLhEQ==","day":25,"tow":271507300,"year":2020,"crc":8328,"minutes":24,"month":3,"seconds":49} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.61172309197437,"preamble":85,"sender":22963,"msg_type":522,"payload":"ZN8uEPhxMOll6kJAFWvvH1aSXsDoPHLimZwxwAECWwQPBg==","lat":37.83123507371414,"tow":271507300,"h_accuracy":513,"crc":15426,"lon":-122.28650663738911} -{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"ZN8uEPj////6////+/////EAygIPAg==","n":-8,"d":-5,"tow":271507300,"h_accuracy":241,"crc":54207,"e":-6} -{"length":15,"gdop":155,"flags":6,"tdop":77,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"ZN8uEJsAhwBNAEgAcgAG","tow":271507300,"crc":4108,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"ZN8uEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271507300,"h_accuracy":0,"crc":41325,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"ZN8uEP//","tow":271507300,"crc":7889} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":237,"states":[{"cn0":214,"mesid":{"sat":5,"code":0}},{"cn0":181,"mesid":{"sat":21,"code":0}},{"cn0":189,"mesid":{"sat":2,"code":0}},{"cn0":167,"mesid":{"sat":31,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":218,"mesid":{"sat":25,"code":0}},{"cn0":207,"mesid":{"sat":12,"code":0}},{"cn0":213,"mesid":{"sat":29,"code":0}},{"cn0":207,"mesid":{"sat":18,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":205,"mesid":{"sat":131,"code":2}},{"cn0":204,"mesid":{"sat":25,"code":1}},{"cn0":187,"mesid":{"sat":12,"code":1}},{"cn0":150,"mesid":{"sat":31,"code":1}},{"cn0":195,"mesid":{"sat":18,"code":1}},{"cn0":194,"mesid":{"sat":29,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":194,"mesid":{"sat":5,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":214,"mesid":{"sat":100,"code":3}},{"cn0":176,"mesid":{"sat":98,"code":3}},{"cn0":173,"mesid":{"sat":102,"code":3}},{"cn0":206,"mesid":{"sat":101,"code":3}},{"cn0":207,"mesid":{"sat":93,"code":3}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":183,"mesid":{"sat":106,"code":3}},{"cn0":203,"mesid":{"sat":104,"code":3}},{"cn0":170,"mesid":{"sat":98,"code":4}},{"cn0":205,"mesid":{"sat":102,"code":4}},{"cn0":69,"mesid":{"sat":93,"code":4}},{"cn0":199,"mesid":{"sat":100,"code":4}},{"cn0":195,"mesid":{"sat":101,"code":4}},{"cn0":187,"mesid":{"sat":104,"code":4}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":177,"mesid":{"sat":106,"code":4}},{"cn0":200,"mesid":{"sat":35,"code":12}},{"cn0":169,"mesid":{"sat":26,"code":12}},{"cn0":160,"mesid":{"sat":34,"code":12}},{"cn0":189,"mesid":{"sat":24,"code":12}},{"cn0":157,"mesid":{"sat":25,"code":12}},{"cn0":185,"mesid":{"sat":12,"code":12}},{"cn0":184,"mesid":{"sat":19,"code":12}},{"cn0":191,"mesid":{"sat":22,"code":12}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":209,"mesid":{"sat":12,"code":13}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":194,"mesid":{"sat":12,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":191,"mesid":{"sat":25,"code":14}},{"cn0":188,"mesid":{"sat":11,"code":14}},{"cn0":204,"mesid":{"sat":24,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":158,"mesid":{"sat":31,"code":14}},{"cn0":153,"mesid":{"sat":33,"code":14}},{"cn0":200,"mesid":{"sat":25,"code":20}},{"cn0":215,"mesid":{"sat":24,"code":20}},{"cn0":194,"mesid":{"sat":11,"code":20}},{"cn0":173,"mesid":{"sat":31,"code":20}},{"cn0":207,"mesid":{"sat":12,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":170,"mesid":{"sat":33,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}}],"preamble":85,"sender":22963,"msg_type":97,"payload":"BQDWFQC1AgC9HwCnAAAAAAAAGQDaDADPHQDVEgDPAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwLNGQHMDAG7HwGWEgHDHQHCAAAABQHCAAAAAAAAAAAAAAAAZAPWYgOwZgOtZQPOXQPPAAAAagO3aAPLYgSqZgTNXQRFZATHZQTDaAS7AAAAagSxIwzIGgypIgygGAy9GQydDAy5Ewy4Fgy/AAAADA3RAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADA7CAAAAGQ6/Cw68GA7MAAAAHw6eIQ6ZGRTIGBTXCxTCHxStDBTPAAAAIRSqAAAA","crc":24695} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgjI3y4QAAAAAAE=","wn":2098,"tow":271507400,"crc":5837} -{"length":16,"flags":17,"ns":399999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EcjfLhDkBwMZAxgx/oPXFw==","day":25,"tow":271507400,"year":2020,"crc":11130,"minutes":24,"month":3,"seconds":49} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.611254959095493,"preamble":85,"sender":22963,"msg_type":522,"payload":"yN8uEIuHe+ll6kJAs/XEH1aSXsA91Xo0e5wxwAECWwQPBg==","lat":37.83123510867798,"tow":271507400,"h_accuracy":513,"crc":13030,"lon":-122.28650659784653} -{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"yN8uEAkAAAAJAAAACQAAAPEAygIPAg==","n":9,"d":9,"tow":271507400,"h_accuracy":241,"crc":18222,"e":9} -{"length":15,"gdop":155,"flags":6,"tdop":77,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"yN8uEJsAhwBNAEgAcgAG","tow":271507400,"crc":26109,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"yN8uEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271507400,"h_accuracy":0,"crc":34999,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"yN8uEP//","tow":271507400,"crc":62490} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":9,"l2ca_bias":0,"preamble":85,"l2p_bias":0,"sender":22963,"msg_type":117,"payload":"/wAAAAAAAAAA","l1ca_bias":0,"mask":255,"crc":49809,"l1p_bias":0} -{"length":51,"text":"GLO L2OF ME 1 [+1348ms] low CN0 too long, dropping","preamble":85,"sender":22963,"msg_type":1025,"payload":"BkdMTyBMMk9GIE1FIDEgWysxMzQ4bXNdIGxvdyBDTjAgdG9vIGxvbmcsIGRyb3BwaW5n","crc":48467,"level":6} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"Mggs4C4QAAAAAAE=","wn":2098,"tow":271507500,"crc":21163} -{"length":16,"flags":17,"ns":499999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"ESzgLhDkBwMZAxgx/mTNHQ==","day":25,"tow":271507500,"year":2020,"crc":64449,"minutes":24,"month":3,"seconds":49} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.60464544873377,"preamble":85,"sender":22963,"msg_type":522,"payload":"LOAuEM2jmell6kJArsmnH1aSXsCe/EsLypoxwAECWwQPBg==","lat":37.83123512269922,"tow":271507500,"h_accuracy":513,"crc":9149,"lon":-122.28650657067803} -{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"LOAuEP7////+////2/////EAygIPAg==","n":-2,"d":-37,"tow":271507500,"h_accuracy":241,"crc":55690,"e":-2} -{"length":15,"gdop":155,"flags":6,"tdop":77,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"LOAuEJsAhwBNAEgAcgAG","tow":271507500,"crc":56597,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"LOAuEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271507500,"h_accuracy":0,"crc":28436,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"LOAuEP//","tow":271507500,"crc":4244} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgiQ4C4QAAAAAAE=","wn":2098,"tow":271507600,"crc":44043} -{"length":16,"flags":17,"ns":599999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EZDgLhDkBwMZAxgx/kXDIw==","day":25,"tow":271507600,"year":2020,"crc":34270,"minutes":24,"month":3,"seconds":49} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.60559532678202,"preamble":85,"sender":22963,"msg_type":522,"payload":"kOAuEEr5pell6kJAZtdzH1aSXsCjI5tLCJsxwAECWwQPBg==","lat":37.83123512844266,"tow":271507600,"h_accuracy":513,"crc":10728,"lon":-122.28650652229916} -{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"kOAuEAAAAAARAAAAGwAAAPEAygIPAg==","n":0,"d":27,"tow":271507600,"h_accuracy":241,"crc":21199,"e":17} -{"length":15,"gdop":155,"flags":6,"tdop":77,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"kOAuEJsAhwBNAEgAcgAG","tow":271507600,"crc":58990,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"kOAuEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271507600,"h_accuracy":0,"crc":64392,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"kOAuEP//","tow":271507600,"crc":57563} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"Mgj04C4QAAAAAAE=","wn":2098,"tow":271507700,"crc":51393} -{"length":16,"flags":17,"ns":699999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EfTgLhDkBwMZAxgx/ia5KQ==","day":25,"tow":271507700,"year":2020,"crc":11666,"minutes":24,"month":3,"seconds":49} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.603921233537086,"preamble":85,"sender":22963,"msg_type":522,"payload":"9OAuEFuQuOll6kJAj+JLH1aSXsDaZvuUmpoxwAECWwQPBg==","lat":37.83123513709935,"tow":271507700,"h_accuracy":513,"crc":53143,"lon":-122.28650648508686} -{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"9OAuEAIAAAAAAAAAFQAAAPEAygIPAg==","n":2,"d":21,"tow":271507700,"h_accuracy":241,"crc":15960,"e":0} -{"length":15,"gdop":155,"flags":6,"tdop":77,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"9OAuEJsAhwBNAEgAcgAG","tow":271507700,"crc":51905,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"9OAuEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271507700,"h_accuracy":0,"crc":58174,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"9OAuEP//","tow":271507700,"crc":47458} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"message_type":26,"length":34,"data":[33,1,200,6,128,54,7,176,68,129,228,15,32,105,2,200,14,64,84,1,160,53,129,232,15,48,0],"preamble":85,"sender":22963,"msg_type":30583,"payload":"gwIT4C4QGiEByAaANgewRIHkDyBpAsgOQFQBoDWB6A8wAA==","tow":271507475,"crc":37406,"sid":{"sat":131,"code":2}} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MghY4S4QAAAAAAE=","wn":2098,"tow":271507800,"crc":8780} -{"length":16,"flags":17,"ns":799999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EVjhLhDkBwMZAxgx/gevLw==","day":25,"tow":271507800,"year":2020,"crc":23527,"minutes":24,"month":3,"seconds":49} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.596527999495738,"preamble":85,"sender":22963,"msg_type":522,"payload":"WOEuEP3xwOll6kJAIUwjH1aSXsCF+xgPtpgxwAECWwQPBg==","lat":37.83123514100223,"tow":271507800,"h_accuracy":513,"crc":7717,"lon":-122.2865064472867} -{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"WOEuEPv////9////9P////EAygIPAg==","n":-5,"d":-12,"tow":271507800,"h_accuracy":241,"crc":19205,"e":-3} -{"length":15,"gdop":155,"flags":6,"tdop":77,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"WOEuEJsAhwBNAEgAcgAG","tow":271507800,"crc":50257,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"WOEuEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271507800,"h_accuracy":0,"crc":7954,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"WOEuEP//","tow":271507800,"crc":63992} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":237,"states":[{"cn0":214,"mesid":{"sat":5,"code":0}},{"cn0":181,"mesid":{"sat":21,"code":0}},{"cn0":190,"mesid":{"sat":2,"code":0}},{"cn0":167,"mesid":{"sat":31,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":219,"mesid":{"sat":25,"code":0}},{"cn0":207,"mesid":{"sat":12,"code":0}},{"cn0":214,"mesid":{"sat":29,"code":0}},{"cn0":207,"mesid":{"sat":18,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":206,"mesid":{"sat":131,"code":2}},{"cn0":204,"mesid":{"sat":25,"code":1}},{"cn0":186,"mesid":{"sat":12,"code":1}},{"cn0":151,"mesid":{"sat":31,"code":1}},{"cn0":195,"mesid":{"sat":18,"code":1}},{"cn0":194,"mesid":{"sat":29,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":194,"mesid":{"sat":5,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":214,"mesid":{"sat":11,"code":3}},{"cn0":176,"mesid":{"sat":9,"code":3}},{"cn0":173,"mesid":{"sat":20,"code":3}},{"cn0":206,"mesid":{"sat":5,"code":3}},{"cn0":207,"mesid":{"sat":10,"code":3}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":183,"mesid":{"sat":4,"code":3}},{"cn0":203,"mesid":{"sat":21,"code":3}},{"cn0":170,"mesid":{"sat":9,"code":4}},{"cn0":205,"mesid":{"sat":20,"code":4}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":199,"mesid":{"sat":11,"code":4}},{"cn0":195,"mesid":{"sat":5,"code":4}},{"cn0":188,"mesid":{"sat":0,"code":4}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":177,"mesid":{"sat":4,"code":4}},{"cn0":200,"mesid":{"sat":35,"code":12}},{"cn0":168,"mesid":{"sat":26,"code":12}},{"cn0":159,"mesid":{"sat":34,"code":12}},{"cn0":189,"mesid":{"sat":24,"code":12}},{"cn0":157,"mesid":{"sat":25,"code":12}},{"cn0":185,"mesid":{"sat":12,"code":12}},{"cn0":184,"mesid":{"sat":19,"code":12}},{"cn0":191,"mesid":{"sat":22,"code":12}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":209,"mesid":{"sat":12,"code":13}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":194,"mesid":{"sat":12,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":191,"mesid":{"sat":25,"code":14}},{"cn0":188,"mesid":{"sat":11,"code":14}},{"cn0":204,"mesid":{"sat":24,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":158,"mesid":{"sat":31,"code":14}},{"cn0":154,"mesid":{"sat":33,"code":14}},{"cn0":201,"mesid":{"sat":25,"code":20}},{"cn0":215,"mesid":{"sat":24,"code":20}},{"cn0":194,"mesid":{"sat":11,"code":20}},{"cn0":173,"mesid":{"sat":31,"code":20}},{"cn0":207,"mesid":{"sat":12,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":169,"mesid":{"sat":33,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}}],"preamble":85,"sender":22963,"msg_type":97,"payload":"BQDWFQC1AgC+HwCnAAAAAAAAGQDbDADPHQDWEgDPAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwLOGQHMDAG6HwGXEgHDHQHCAAAABQHCAAAAAAAAAAAAAAAACwPWCQOwFAOtBQPOCgPPAAAABAO3FQPLCQSqFATNAAAACwTHBQTDAAS8AAAABASxIwzIGgyoIgyfGAy9GQydDAy5Ewy4Fgy/AAAADA3RAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADA7CAAAAGQ6/Cw68GA7MAAAAHw6eIQ6aGRTJGBTXCxTCHxStDBTPAAAAIRSpAAAA","crc":36631} -{"length":136,"preamble":85,"sender":22963,"msg_type":151,"payload":"AgAaHgUALDUMAFEtFQB9GRkAbUYaAKEBHQChNx8AlQ4EAxYWBQMyIQYDTggJA18OCgNxKQsDmCUMA6oDEwMiBxQDCzEVA5UlDAyUKRMMIyAUDA8CFgxDIxgMgiMZDJ0OGgxnFR0MLAAiDI4RIwwiLQsOizIMDg88GA5sNhkOlykfDlURIQ4fDw==","crc":41336,"azel":[{"el":30,"az":26,"sid":{"sat":2,"code":0}},{"el":53,"az":44,"sid":{"sat":5,"code":0}},{"el":45,"az":81,"sid":{"sat":12,"code":0}},{"el":25,"az":125,"sid":{"sat":21,"code":0}},{"el":70,"az":109,"sid":{"sat":25,"code":0}},{"el":1,"az":161,"sid":{"sat":26,"code":0}},{"el":55,"az":161,"sid":{"sat":29,"code":0}},{"el":14,"az":149,"sid":{"sat":31,"code":0}},{"el":22,"az":22,"sid":{"sat":4,"code":3}},{"el":33,"az":50,"sid":{"sat":5,"code":3}},{"el":8,"az":78,"sid":{"sat":6,"code":3}},{"el":14,"az":95,"sid":{"sat":9,"code":3}},{"el":41,"az":113,"sid":{"sat":10,"code":3}},{"el":37,"az":152,"sid":{"sat":11,"code":3}},{"el":3,"az":170,"sid":{"sat":12,"code":3}},{"el":7,"az":34,"sid":{"sat":19,"code":3}},{"el":49,"az":11,"sid":{"sat":20,"code":3}},{"el":37,"az":149,"sid":{"sat":21,"code":3}},{"el":41,"az":148,"sid":{"sat":12,"code":12}},{"el":32,"az":35,"sid":{"sat":19,"code":12}},{"el":2,"az":15,"sid":{"sat":20,"code":12}},{"el":35,"az":67,"sid":{"sat":22,"code":12}},{"el":35,"az":130,"sid":{"sat":24,"code":12}},{"el":14,"az":157,"sid":{"sat":25,"code":12}},{"el":21,"az":103,"sid":{"sat":26,"code":12}},{"el":0,"az":44,"sid":{"sat":29,"code":12}},{"el":17,"az":142,"sid":{"sat":34,"code":12}},{"el":45,"az":34,"sid":{"sat":35,"code":12}},{"el":50,"az":139,"sid":{"sat":11,"code":14}},{"el":60,"az":15,"sid":{"sat":12,"code":14}},{"el":54,"az":108,"sid":{"sat":24,"code":14}},{"el":41,"az":151,"sid":{"sat":25,"code":14}},{"el":17,"az":85,"sid":{"sat":31,"code":14}},{"el":15,"az":31,"sid":{"sat":33,"code":14}}]} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"Mgi84S4QAAAAAAE=","wn":2098,"tow":271507900,"crc":63796} -{"length":16,"flags":17,"ns":899999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EbzhLhDkBwMZAxgx/uikNQ==","day":25,"tow":271507900,"year":2020,"crc":49371,"minutes":24,"month":3,"seconds":49} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.590565844936364,"preamble":85,"sender":22963,"msg_type":522,"payload":"vOEuENN67+ll6kJAVi/3HlaSXsDkIr5SL5cxwAECWwQPBg==","lat":37.831235162671554,"tow":271507900,"h_accuracy":513,"crc":48420,"lon":-122.28650640620376} -{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"vOEuEBYAAAAAAAAADQAAAPEAygIPAg==","n":22,"d":13,"tow":271507900,"h_accuracy":241,"crc":48338,"e":0} -{"length":15,"gdop":155,"flags":6,"tdop":77,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"vOEuEJsAhwBNAEgAcgAG","tow":271507900,"crc":48364,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"vOEuEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271507900,"h_accuracy":0,"crc":48433,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"vOEuEP//","tow":271507900,"crc":29793} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":249,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":85,"i":110562955},"flags":15,"cn0":214,"P":1051971406,"D":{"f":189,"i":-180},"lock":15,"sid":{"sat":5,"code":0}},{"L":{"f":34,"i":121839968},"flags":15,"cn0":181,"P":1159268762,"D":{"f":133,"i":2173},"lock":15,"sid":{"sat":21,"code":0}},{"L":{"f":6,"i":123320980},"flags":15,"cn0":190,"P":1173359743,"D":{"f":99,"i":-2479},"lock":15,"sid":{"sat":2,"code":0}},{"L":{"f":90,"i":128735631},"flags":15,"cn0":168,"P":1224878831,"D":{"f":151,"i":-395},"lock":15,"sid":{"sat":31,"code":0}},{"L":{"f":115,"i":107815437},"flags":15,"cn0":219,"P":1025829709,"D":{"f":246,"i":-1124},"lock":15,"sid":{"sat":25,"code":0}},{"L":{"f":117,"i":114077992},"flags":15,"cn0":207,"P":1085415888,"D":{"f":226,"i":-2966},"lock":15,"sid":{"sat":12,"code":0}},{"L":{"f":196,"i":110771309},"flags":15,"cn0":214,"P":1053953895,"D":{"f":76,"i":1485},"lock":15,"sid":{"sat":29,"code":0}},{"L":{"f":173,"i":84012049},"flags":15,"cn0":204,"P":1025829766,"D":{"f":211,"i":-876},"lock":15,"sid":{"sat":25,"code":1}},{"L":{"f":207,"i":88891973},"flags":15,"cn0":186,"P":1085415818,"D":{"f":49,"i":-2310},"lock":15,"sid":{"sat":12,"code":1}},{"L":{"f":93,"i":100313481},"flags":15,"cn0":150,"P":1224878743,"D":{"f":238,"i":-305},"lock":15,"sid":{"sat":31,"code":1}},{"L":{"f":33,"i":86315308},"flags":15,"cn0":194,"P":1053953785,"D":{"f":248,"i":1157},"lock":15,"sid":{"sat":29,"code":1}},{"L":{"f":118,"i":86152981},"flags":15,"cn0":194,"P":1051971338,"D":{"f":128,"i":-141},"lock":15,"sid":{"sat":5,"code":1}},{"L":{"f":169,"i":112944629},"flags":15,"cn0":214,"P":1056802087,"D":{"f":78,"i":1171},"lock":15,"sid":{"sat":11,"code":3}},{"L":{"f":72,"i":123306679},"flags":15,"cn0":176,"P":1154568678,"D":{"f":47,"i":-4406},"lock":15,"sid":{"sat":9,"code":3}}],"payload":"IOIuEAAAAAAyCEBOz7M+iw6XBlVM/73WDw8FAJoJGUVgIUMHIn0IhbUPDxUAfwzwRZS6WQcGUfZjvg8PAgDvKgJJj1msB1p1/peoDw8fAE3rJD0NIm0Gc5z79tsPDxkA0CGyQCixzAZ1avTizw8PDABnD9I+bTyaBsTNBUzWDw8dAIbrJD0R7AEFrZT808wPDxkBiiGyQEViTAXP+vYxug8PDAGXKgJJian6BV3P/u6WDw8fAfkO0j4sESUFIYUE+MIPDx0BCs+zPhWXIgV2c/+Awg8PBQEnhf0+9WW7BqmTBE7WDw8LA+ZR0US3glkHSMruL7APDwkD","header":{"n_obs":64,"t":{"ns_residual":0,"wn":2098,"tow":271508000}},"crc":44064} -{"length":249,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":245,"i":109763062},"flags":15,"cn0":173,"P":1026311976,"D":{"f":31,"i":-1209},"lock":15,"sid":{"sat":20,"code":3}},{"L":{"f":13,"i":114874001},"flags":15,"cn0":206,"P":1074477501,"D":{"f":91,"i":2203},"lock":15,"sid":{"sat":5,"code":3}},{"L":{"f":176,"i":111584642},"flags":15,"cn0":207,"P":1046649400,"D":{"f":156,"i":-3041},"lock":15,"sid":{"sat":10,"code":3}},{"L":{"f":184,"i":120430356},"flags":15,"cn0":183,"P":1124475730,"D":{"f":21,"i":-1311},"lock":15,"sid":{"sat":4,"code":3}},{"L":{"f":255,"i":113429991},"flags":15,"cn0":203,"P":1059854825,"D":{"f":67,"i":1623},"lock":15,"sid":{"sat":21,"code":3}},{"L":{"f":163,"i":95905204},"flags":15,"cn0":170,"P":1154568822,"D":{"f":251,"i":-3429},"lock":15,"sid":{"sat":9,"code":4}},{"L":{"f":235,"i":85371306},"flags":15,"cn0":205,"P":1026312336,"D":{"f":46,"i":-941},"lock":15,"sid":{"sat":20,"code":4}},{"L":{"f":103,"i":87845833},"flags":15,"cn0":199,"P":1056802332,"D":{"f":122,"i":912},"lock":15,"sid":{"sat":11,"code":4}},{"L":{"f":14,"i":89346449},"flags":15,"cn0":195,"P":1074477831,"D":{"f":109,"i":1713},"lock":15,"sid":{"sat":5,"code":4}},{"L":{"f":113,"i":93668045},"flags":15,"cn0":177,"P":1124475910,"D":{"f":72,"i":-1019},"lock":15,"sid":{"sat":4,"code":4}},{"L":{"f":134,"i":121570556},"flags":15,"cn0":200,"P":1167317078,"D":{"f":89,"i":-1500},"lock":15,"sid":{"sat":35,"code":12}},{"L":{"f":215,"i":129193075},"flags":15,"cn0":168,"P":1240508618,"D":{"f":222,"i":-3010},"lock":15,"sid":{"sat":26,"code":12}},{"L":{"f":53,"i":132960101},"flags":15,"cn0":159,"P":1276679248,"D":{"f":71,"i":2249},"lock":15,"sid":{"sat":34,"code":12}},{"L":{"f":70,"i":125143177},"flags":15,"cn0":189,"P":1201621598,"D":{"f":190,"i":-1301},"lock":15,"sid":{"sat":24,"code":12}}],"payload":"IOIuEAAAAAAyCEEoRyw99tmKBvVH+x+tDw8UA705C0CR1tgGDZsIW84PDwUDOJpiPoKlpgawH/Sczw8PCgNSIwZDFJ8tB7jh+hW3Dw8EA+kZLD/nzcIG/1cGQ8sPDxUDdlLRRLRltwWjm/L7qg8PCQSQSCw9qqkWBetT/C7NDw8UBByG/T7JazwFZ5ADescPDwsEBzsLQJFRUwUOsQZtww8PBQQGJAZDzUKVBXEF/EixDw8EBFbYk0X8BD8HhiT6WcgPDyMMyqjwSXNUswfXPvTeqA8PGgxQlBhMZc/sBzXJCEefDw8iDF5Kn0eJiHUHRuv6vr0PDxgM","header":{"n_obs":65,"t":{"ns_residual":0,"wn":2098,"tow":271508000}},"crc":11311} -{"length":249,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":33,"i":134680479},"flags":15,"cn0":157,"P":1293198502,"D":{"f":129,"i":1327},"lock":15,"sid":{"sat":25,"code":12}},{"L":{"f":218,"i":121110059},"flags":15,"cn0":185,"P":1162895666,"D":{"f":10,"i":1611},"lock":15,"sid":{"sat":12,"code":12}},{"L":{"f":245,"i":124513157},"flags":15,"cn0":184,"P":1195572099,"D":{"f":15,"i":-285},"lock":15,"sid":{"sat":19,"code":12}},{"L":{"f":41,"i":124719355},"flags":15,"cn0":191,"P":1197552022,"D":{"f":33,"i":2389},"lock":15,"sid":{"sat":22,"code":12}},{"L":{"f":50,"i":93649989},"flags":15,"cn0":209,"P":1162895589,"D":{"f":90,"i":1246},"lock":15,"sid":{"sat":12,"code":13}},{"L":{"f":14,"i":116419738},"flags":15,"cn0":194,"P":1107696952,"D":{"f":61,"i":-1028},"lock":15,"sid":{"sat":12,"code":14}},{"L":{"f":236,"i":132481572},"flags":15,"cn0":191,"P":1260520188,"D":{"f":114,"i":1089},"lock":15,"sid":{"sat":25,"code":14}},{"L":{"f":167,"i":125429031},"flags":15,"cn0":188,"P":1193417508,"D":{"f":216,"i":1047},"lock":15,"sid":{"sat":11,"code":14}},{"L":{"f":178,"i":118403218},"flags":15,"cn0":204,"P":1126569045,"D":{"f":25,"i":-1743},"lock":15,"sid":{"sat":24,"code":14}},{"L":{"f":183,"i":143301960},"flags":15,"cn0":158,"P":1363472828,"D":{"f":161,"i":-3173},"lock":15,"sid":{"sat":31,"code":14}},{"L":{"f":52,"i":144511062},"flags":15,"cn0":153,"P":1374977034,"D":{"f":248,"i":-2141},"lock":15,"sid":{"sat":33,"code":14}},{"L":{"f":251,"i":101511852},"flags":15,"cn0":201,"P":1260520148,"D":{"f":207,"i":835},"lock":15,"sid":{"sat":25,"code":20}},{"L":{"f":196,"i":90724607},"flags":15,"cn0":215,"P":1126569580,"D":{"f":49,"i":-1335},"lock":15,"sid":{"sat":24,"code":20}},{"L":{"f":37,"i":96107937},"flags":15,"cn0":194,"P":1193417313,"D":{"f":184,"i":802},"lock":15,"sid":{"sat":11,"code":20}}],"payload":"IOIuEAAAAAAyCEKmpBRNnw8HCCEvBYGdDw8ZDDJhUEUr/jcH2ksGCrkPDwwMg/tCR4Xrawf14/4PuA8PEwyWMWFH+xBvBylVCSG/Dw8WDOVgUEVF/JQFMt4EWtEPDwwNOB0GQpps8AYO/Ps9wg8PDA78AiJLJILlB+xBBHK/Dw8ZDiQbIkcn5XkHpxcE2LwPDwsOVRQmQ5KwDgeyMfkZzA8PGA688URRSJ2KCLeb86GeDw8fDgp89FFWEJ0INKP3+JkPDyEO1AIiS6zyDAb7QwPPyQ8PGRRsFiZD/1hoBcTJ+jHXDw8YFGEaIkehfboFJSIDuMIPDwsU","header":{"n_obs":66,"t":{"ns_residual":0,"wn":2098,"tow":271508000}},"crc":11695} -{"length":62,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":150,"i":109802842},"flags":15,"cn0":173,"P":1363472864,"D":{"f":67,"i":-2431},"lock":15,"sid":{"sat":31,"code":20}},{"L":{"f":246,"i":89204764},"flags":15,"cn0":207,"P":1107696792,"D":{"f":59,"i":-787},"lock":15,"sid":{"sat":12,"code":20}},{"L":{"f":245,"i":110729325},"flags":15,"cn0":170,"P":1374976992,"D":{"f":219,"i":-1643},"lock":15,"sid":{"sat":33,"code":20}}],"payload":"IOIuEAAAAAAyCEPg8URRWnWLBpaB9kOtDw8fFJgcBkIcKFEF9u38O88PDwwU4Hv0UW2YmQb1lfnbqg8PIRQ=","header":{"n_obs":67,"t":{"ns_residual":0,"wn":2098,"tow":271508000}},"crc":45399} -{"length":9,"l2ca_bias":0,"preamble":85,"l2p_bias":0,"sender":22963,"msg_type":117,"payload":"/wAAAAAAAAAA","l1ca_bias":0,"mask":255,"crc":49809,"l1p_bias":0} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"Mggg4i4QAAAAAAE=","wn":2098,"tow":271508000,"crc":26653} -{"length":16,"flags":17,"ns":999999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"ESDiLhDkBwMZAxgx/smaOw==","day":25,"tow":271508000,"year":2020,"crc":40373,"minutes":24,"month":3,"seconds":49} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.582901876886808,"preamble":85,"sender":22963,"msg_type":522,"payload":"IOIuEDfB6+ll6kJAWnPMHlaSXsCAAbIOOZUxwAECWwQPBg==","lat":37.83123516093695,"tow":271508000,"h_accuracy":513,"crc":33654,"lon":-122.28650636640432} -{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"IOIuEPz////8////+v////EAygIPAg==","n":-4,"d":-6,"tow":271508000,"h_accuracy":241,"crc":52076,"e":-4} -{"length":15,"gdop":155,"flags":6,"tdop":77,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"IOIuEJsAhwBNAEgAcgAG","tow":271508000,"crc":38688,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"IOIuEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271508000,"h_accuracy":0,"crc":11579,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"IOIuEP//","tow":271508000,"crc":24564} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":4,"flags":2147616000,"preamble":85,"sender":22963,"msg_type":65535,"payload":"AAUCgA==","crc":40942} -{"length":24,"z":3890655.0240602265,"preamble":85,"sender":22963,"msg_type":72,"payload":"UO0a3iqORMHK1UJhIkRQwc9nFIPvrk1B","crc":2168,"x":-2694229.735196747,"y":-4264073.519704292} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"bWFpbgAAAAAAAAAAAAAAAAAAAAAAAAx1AAA=","name":"main\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":47991,"stack_free":29964,"cpu":0} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"aWRsZQAAAAAAAAAAAAAAAAAAAAA8AHwAAAA=","name":"idle\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":24639,"stack_free":124,"cpu":60} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"cnBtc2cAAAAAAAAAAAAAAAAAAAABANQNAAA=","name":"rpmsg\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":26340,"stack_free":3540,"cpu":1} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"U0JQAAAAAAAAAAAAAAAAAAAAAAAAAPz/AAA=","name":"SBP\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":51784,"stack_free":65532,"cpu":0} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"TkFQAAAAAAAAAAAAAAAAAAAAAAAAAASAAAA=","name":"NAP\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":33651,"stack_free":32772,"cpu":0} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"bWFuYWdlIFBWAAAAAAAAAAAAAAAAACQEAAA=","name":"manage PV\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":29877,"stack_free":1060,"cpu":0} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"SU1VAAAAAAAAAAAAAAAAAAAAAAAAAPQHAAA=","name":"IMU\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":14252,"stack_free":2036,"cpu":0} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"SU1VIGF1eAAAAAAAAAAAAAAAAAAAAEwIAAA=","name":"IMU aux\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":18976,"stack_free":2124,"cpu":0} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"bmRiAAAAAAAAAAAAAAAAAAAAAAAAAFAMAAA=","name":"ndb\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":26120,"stack_free":3152,"cpu":0} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"TkFQIFRyYWNraW5nAAAAAAAAAAAqAdR3AAA=","name":"NAP Tracking\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":44290,"stack_free":30676,"cpu":298} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"ZGVjb2RlAAAAAAAAAAAAAAAAAAAKANQGAAA=","name":"decode\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":6098,"stack_free":1748,"cpu":10} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"bWFuYWdlIGFjcQAAAAAAAAAAAADTAaR3AAA=","name":"manage acq\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":11131,"stack_free":30628,"cpu":467} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"c3lzdGVtIG1vbml0b3IAAAAAAAAAACwGAAA=","name":"system monitor\u0000\u0000\u0000\u0000\u0000\u0000","crc":58531,"stack_free":1580,"cpu":0} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"V2F0Y2hkb2cAAAAAAAAAAAAAAAAAAOQDAAA=","name":"Watchdog\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":44438,"stack_free":996,"cpu":0} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"c3RhcmxpbmcAAAAAAAAAAAAAAACWAPz/AAA=","name":"starling\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":61599,"stack_free":65532,"cpu":150} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"bWVfY2FsY19wdnQAAAAAAAAAAAAJAIwjAAA=","name":"me_calc_pvt\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":57561,"stack_free":9100,"cpu":9} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"UFBTAAAAAAAAAAAAAAAAAAAAAAAAAEgHAAA=","name":"PPS\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":38576,"stack_free":1864,"cpu":0} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"c3BlY3RydW0gYW5hbHl6ZXIAAAAAANQPAAA=","name":"spectrum analyzer\u0000\u0000\u0000","crc":50933,"stack_free":4052,"cpu":0} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgiE4i4QAAAAAAE=","wn":2098,"tow":271508100,"crc":60604} -{"length":16,"flags":17,"ns":99999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EYTiLhDkBwMZAxgy/uD1BQ==","day":25,"tow":271508100,"year":2020,"crc":62733,"minutes":24,"month":3,"seconds":50} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.57576080885312,"preamble":85,"sender":22963,"msg_type":522,"payload":"hOIuEB13vull6kJAcJGGHlaSXsC4V3QPZZMxwAECWwQPBg==","lat":37.8312351398474,"tow":271508100,"h_accuracy":513,"crc":49497,"lon":-122.2865063013212} -{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"hOIuEO3///8TAAAACwAAAPEAygIPAg==","n":-19,"d":11,"tow":271508100,"h_accuracy":241,"crc":48204,"e":19} -{"length":15,"gdop":155,"flags":6,"tdop":77,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"hOIuEJsAhwBNAEgAcgAG","tow":271508100,"crc":50580,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"hOIuEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271508100,"h_accuracy":0,"crc":23106,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"hOIuEP//","tow":271508100,"crc":47229} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"Mgjo4i4QAAAAAAE=","wn":2098,"tow":271508200,"crc":41353} -{"length":16,"flags":17,"ns":199999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EejiLhDkBwMZAxgy/sHrCw==","day":25,"tow":271508200,"year":2020,"crc":36515,"minutes":24,"month":3,"seconds":50} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.567721936336202,"preamble":85,"sender":22963,"msg_type":522,"payload":"6OIuEOvfxOll6kJALrBPHlaSXsApyY05VpExwAECWwQPBg==","lat":37.83123514283201,"tow":271508200,"h_accuracy":513,"crc":62222,"lon":-122.2865062502103} -{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"6OIuEA0AAAD9////7/////EAygIPAg==","n":13,"d":-17,"tow":271508200,"h_accuracy":241,"crc":2477,"e":-3} -{"length":15,"gdop":155,"flags":6,"tdop":77,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"6OIuEJsAhwBNAEgAcgAG","tow":271508200,"crc":52862,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"6OIuEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271508200,"h_accuracy":0,"crc":7255,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"6OIuEP//","tow":271508200,"crc":60550} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MghM4y4QAAAAAAE=","wn":2098,"tow":271508300,"crc":25339} -{"length":16,"flags":17,"ns":299999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EUzjLhDkBwMZAxgy/qLhEQ==","day":25,"tow":271508300,"year":2020,"crc":14845,"minutes":24,"month":3,"seconds":50} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.56216150819347,"preamble":85,"sender":22963,"msg_type":522,"payload":"TOMuEJaI2Oll6kJAO9ESHlaSXsDQwgzR6Y8xwAECWwQPBg==","lat":37.83123515198638,"tow":271508300,"h_accuracy":513,"crc":33663,"lon":-122.28650619351986} -{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"TOMuEAoAAAADAAAAFAAAAPEAygIPAg==","n":10,"d":20,"tow":271508300,"h_accuracy":241,"crc":28727,"e":3} -{"length":15,"gdop":155,"flags":6,"tdop":77,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"TOMuEJsAhwBNAEgAcgAG","tow":271508300,"crc":59307,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"TOMuEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271508300,"h_accuracy":0,"crc":48856,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"TOMuEP//","tow":271508300,"crc":41310} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":237,"states":[{"cn0":214,"mesid":{"sat":5,"code":0}},{"cn0":181,"mesid":{"sat":21,"code":0}},{"cn0":190,"mesid":{"sat":2,"code":0}},{"cn0":168,"mesid":{"sat":31,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":218,"mesid":{"sat":25,"code":0}},{"cn0":206,"mesid":{"sat":12,"code":0}},{"cn0":214,"mesid":{"sat":29,"code":0}},{"cn0":207,"mesid":{"sat":18,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":206,"mesid":{"sat":131,"code":2}},{"cn0":204,"mesid":{"sat":25,"code":1}},{"cn0":186,"mesid":{"sat":12,"code":1}},{"cn0":150,"mesid":{"sat":31,"code":1}},{"cn0":195,"mesid":{"sat":18,"code":1}},{"cn0":194,"mesid":{"sat":29,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":193,"mesid":{"sat":5,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":214,"mesid":{"sat":100,"code":3}},{"cn0":176,"mesid":{"sat":98,"code":3}},{"cn0":173,"mesid":{"sat":102,"code":3}},{"cn0":206,"mesid":{"sat":101,"code":3}},{"cn0":207,"mesid":{"sat":93,"code":3}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":183,"mesid":{"sat":106,"code":3}},{"cn0":202,"mesid":{"sat":104,"code":3}},{"cn0":170,"mesid":{"sat":98,"code":4}},{"cn0":205,"mesid":{"sat":102,"code":4}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":199,"mesid":{"sat":100,"code":4}},{"cn0":195,"mesid":{"sat":101,"code":4}},{"cn0":187,"mesid":{"sat":104,"code":4}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":176,"mesid":{"sat":106,"code":4}},{"cn0":200,"mesid":{"sat":35,"code":12}},{"cn0":169,"mesid":{"sat":26,"code":12}},{"cn0":160,"mesid":{"sat":34,"code":12}},{"cn0":189,"mesid":{"sat":24,"code":12}},{"cn0":157,"mesid":{"sat":25,"code":12}},{"cn0":185,"mesid":{"sat":12,"code":12}},{"cn0":184,"mesid":{"sat":19,"code":12}},{"cn0":191,"mesid":{"sat":22,"code":12}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":209,"mesid":{"sat":12,"code":13}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":195,"mesid":{"sat":12,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":192,"mesid":{"sat":25,"code":14}},{"cn0":188,"mesid":{"sat":11,"code":14}},{"cn0":204,"mesid":{"sat":24,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":159,"mesid":{"sat":31,"code":14}},{"cn0":154,"mesid":{"sat":33,"code":14}},{"cn0":201,"mesid":{"sat":25,"code":20}},{"cn0":215,"mesid":{"sat":24,"code":20}},{"cn0":194,"mesid":{"sat":11,"code":20}},{"cn0":173,"mesid":{"sat":31,"code":20}},{"cn0":207,"mesid":{"sat":12,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":169,"mesid":{"sat":33,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}}],"preamble":85,"sender":22963,"msg_type":97,"payload":"BQDWFQC1AgC+HwCoAAAAAAAAGQDaDADOHQDWEgDPAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwLOGQHMDAG6HwGWEgHDHQHCAAAABQHBAAAAAAAAAAAAAAAAZAPWYgOwZgOtZQPOXQPPAAAAagO3aAPKYgSqZgTNAAAAZATHZQTDaAS7AAAAagSwIwzIGgypIgygGAy9GQydDAy5Ewy4Fgy/AAAADA3RAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADA7DAAAAGQ7ACw68GA7MAAAAHw6fIQ6aGRTJGBTXCxTCHxStDBTPAAAAIRSpAAAA","crc":46534} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"Mgiw4y4QAAAAAAE=","wn":2098,"tow":271508400,"crc":50050} -{"length":16,"flags":17,"ns":399999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EbDjLhDkBwMZAxgy/oPXFw==","day":25,"tow":271508400,"year":2020,"crc":22156,"minutes":24,"month":3,"seconds":50} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.554971704011077,"preamble":85,"sender":22963,"msg_type":522,"payload":"sOMuEOEi1ull6kJAesPbHVaSXsDX7iagEo4xwAECWwQPBg==","lat":37.83123515087005,"tow":271508400,"h_accuracy":513,"crc":55776,"lon":-122.28650614224708} -{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"sOMuEAIAAAAFAAAA9v////EAygIPAg==","n":2,"d":-10,"tow":271508400,"h_accuracy":241,"crc":1875,"e":5} -{"length":15,"gdop":155,"flags":6,"tdop":77,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"sOMuEJsAhwBNAEgAcgAG","tow":271508400,"crc":63193,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"sOMuEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271508400,"h_accuracy":0,"crc":65310,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"sOMuEP//","tow":271508400,"crc":15105} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":9,"l2ca_bias":0,"preamble":85,"l2p_bias":0,"sender":22963,"msg_type":117,"payload":"/wAAAAAAAAAA","l1ca_bias":0,"mask":255,"crc":49809,"l1p_bias":0} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MggU5C4QAAAAAAE=","wn":2098,"tow":271508500,"crc":32827} -{"length":16,"flags":17,"ns":499999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"ERTkLhDkBwMZAxgy/mTNHQ==","day":25,"tow":271508500,"year":2020,"crc":7277,"minutes":24,"month":3,"seconds":50} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.553830878594173,"preamble":85,"sender":22963,"msg_type":522,"payload":"FOQuEASh4+ll6kJA8dG5HVaSXsCxE0fcx40xwAECWwQPBg==","lat":37.83123515715309,"tow":271508500,"h_accuracy":513,"crc":25557,"lon":-122.28650611063473} -{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"FOQuEAIAAAD+////HQAAAPEAygIPAg==","n":2,"d":29,"tow":271508500,"h_accuracy":241,"crc":16440,"e":-2} -{"length":15,"gdop":155,"flags":6,"tdop":77,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"FOQuEJsAhwBNAEgAcgAG","tow":271508500,"crc":54379,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"FOQuEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271508500,"h_accuracy":0,"crc":33255,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"FOQuEP//","tow":271508500,"crc":47964} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"Mgh45C4QAAAAAAE=","wn":2098,"tow":271508600,"crc":52494} -{"length":16,"flags":17,"ns":599999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EXjkLhDkBwMZAxgy/kXDIw==","day":25,"tow":271508600,"year":2020,"crc":21219,"minutes":24,"month":3,"seconds":50} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.54568420707544,"preamble":85,"sender":22963,"msg_type":522,"payload":"eOQuEKTpxull6kJAZ52MHVaSXsAsVc/1sYsxwAECWwQPBg==","lat":37.831235143781015,"tow":271508600,"h_accuracy":513,"crc":57497,"lon":-122.28650606853408} -{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"eOQuEPX///8FAAAA2P////EAygIPAg==","n":-11,"d":-40,"tow":271508600,"h_accuracy":241,"crc":57736,"e":5} -{"length":15,"gdop":155,"flags":6,"tdop":77,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"eOQuEJsAhwBNAEgAcgAG","tow":271508600,"crc":57217,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"eOQuEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271508600,"h_accuracy":0,"crc":51186,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"eOQuEP//","tow":271508600,"crc":61351} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"message_type":3,"length":34,"data":[23,255,0,31,254,127,247,255,0,7,255,255,215,255,127,240,0,255,255,255,232,206,246,231,239,229,112],"preamble":85,"sender":22963,"msg_type":30583,"payload":"gwL14y4QAxf/AB/+f/f/AAf//9f/f/AA////6M725+/lcA==","tow":271508469,"crc":16960,"sid":{"sat":131,"code":2}} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"Mgjc5C4QAAAAAAE=","wn":2098,"tow":271508700,"crc":18863} -{"length":16,"flags":17,"ns":699999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EdzkLhDkBwMZAxgy/ia5KQ==","day":25,"tow":271508700,"year":2020,"crc":33972,"minutes":24,"month":3,"seconds":50} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.541121527093107,"preamble":85,"sender":22963,"msg_type":522,"payload":"3OQuEOxexell6kJAYih+HVaSXsDHBr7whooxwAECWwQPBg==","lat":37.831235143063026,"tow":271508700,"h_accuracy":513,"crc":7659,"lon":-122.28650605506985} -{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"3OQuEAkAAAD5////CgAAAPEAygIPAg==","n":9,"d":10,"tow":271508700,"h_accuracy":241,"crc":30755,"e":-7} -{"length":15,"gdop":155,"flags":6,"tdop":77,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"3OQuEJsAhwBNAEgAcgAG","tow":271508700,"crc":36149,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"3OQuEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271508700,"h_accuracy":0,"crc":45195,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"3OQuEP//","tow":271508700,"crc":2094} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MghA5S4QAAAAAAE=","wn":2098,"tow":271508800,"crc":22304} -{"length":16,"flags":17,"ns":799999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EUDlLhDkBwMZAxgy/gevLw==","day":25,"tow":271508800,"year":2020,"crc":8543,"minutes":24,"month":3,"seconds":50} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.539237037012033,"preamble":85,"sender":22963,"msg_type":522,"payload":"QOUuEGWypOll6kJAgW9oHVaSXsA1wj5wC4oxwAECWwQPBg==","lat":37.83123512784804,"tow":271508800,"h_accuracy":513,"crc":61392,"lon":-122.28650603483949} -{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"QOUuEP3///8EAAAAAwAAAPEAygIPAg==","n":-3,"d":3,"tow":271508800,"h_accuracy":241,"crc":29447,"e":4} -{"length":15,"gdop":155,"flags":6,"tdop":77,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"QOUuEJsAhwBNAEgAcgAG","tow":271508800,"crc":20539,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"QOUuEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271508800,"h_accuracy":0,"crc":39756,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"QOUuEP//","tow":271508800,"crc":26424} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":237,"states":[{"cn0":213,"mesid":{"sat":5,"code":0}},{"cn0":181,"mesid":{"sat":21,"code":0}},{"cn0":189,"mesid":{"sat":2,"code":0}},{"cn0":167,"mesid":{"sat":31,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":218,"mesid":{"sat":25,"code":0}},{"cn0":206,"mesid":{"sat":12,"code":0}},{"cn0":213,"mesid":{"sat":29,"code":0}},{"cn0":207,"mesid":{"sat":18,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":206,"mesid":{"sat":131,"code":2}},{"cn0":204,"mesid":{"sat":25,"code":1}},{"cn0":186,"mesid":{"sat":12,"code":1}},{"cn0":152,"mesid":{"sat":31,"code":1}},{"cn0":195,"mesid":{"sat":18,"code":1}},{"cn0":194,"mesid":{"sat":29,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":193,"mesid":{"sat":5,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":214,"mesid":{"sat":11,"code":3}},{"cn0":176,"mesid":{"sat":9,"code":3}},{"cn0":173,"mesid":{"sat":20,"code":3}},{"cn0":207,"mesid":{"sat":5,"code":3}},{"cn0":207,"mesid":{"sat":10,"code":3}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":182,"mesid":{"sat":4,"code":3}},{"cn0":202,"mesid":{"sat":21,"code":3}},{"cn0":170,"mesid":{"sat":9,"code":4}},{"cn0":206,"mesid":{"sat":20,"code":4}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":199,"mesid":{"sat":11,"code":4}},{"cn0":195,"mesid":{"sat":5,"code":4}},{"cn0":188,"mesid":{"sat":0,"code":4}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":177,"mesid":{"sat":4,"code":4}},{"cn0":200,"mesid":{"sat":35,"code":12}},{"cn0":168,"mesid":{"sat":26,"code":12}},{"cn0":159,"mesid":{"sat":34,"code":12}},{"cn0":189,"mesid":{"sat":24,"code":12}},{"cn0":156,"mesid":{"sat":25,"code":12}},{"cn0":186,"mesid":{"sat":12,"code":12}},{"cn0":184,"mesid":{"sat":19,"code":12}},{"cn0":191,"mesid":{"sat":22,"code":12}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":209,"mesid":{"sat":12,"code":13}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":194,"mesid":{"sat":12,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":191,"mesid":{"sat":25,"code":14}},{"cn0":188,"mesid":{"sat":11,"code":14}},{"cn0":204,"mesid":{"sat":24,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":159,"mesid":{"sat":31,"code":14}},{"cn0":153,"mesid":{"sat":33,"code":14}},{"cn0":201,"mesid":{"sat":25,"code":20}},{"cn0":215,"mesid":{"sat":24,"code":20}},{"cn0":194,"mesid":{"sat":11,"code":20}},{"cn0":173,"mesid":{"sat":31,"code":20}},{"cn0":207,"mesid":{"sat":12,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":170,"mesid":{"sat":33,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}}],"preamble":85,"sender":22963,"msg_type":97,"payload":"BQDVFQC1AgC9HwCnAAAAAAAAGQDaDADOHQDVEgDPAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwLOGQHMDAG6HwGYEgHDHQHCAAAABQHBAAAAAAAAAAAAAAAACwPWCQOwFAOtBQPPCgPPAAAABAO2FQPKCQSqFATOAAAACwTHBQTDAAS8AAAABASxIwzIGgyoIgyfGAy9GQycDAy6Ewy4Fgy/AAAADA3RAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADA7CAAAAGQ6/Cw68GA7MAAAAHw6fIQ6ZGRTJGBTXCxTCHxStDBTPAAAAIRSqAAAA","crc":9989} -{"length":136,"preamble":85,"sender":22963,"msg_type":151,"payload":"AgAaHgUALDUMAFEtFQB9GRkAbUYaAKEBHQChNx8AlQ4EAxYWBQMyIQYDTggJA18OCgNxKQsDmCUMA6oDEwMiBxQDCzEVA5UlDAyUKRMMIyAUDA8CFgxDIxgMgiMZDJ0OGgxnFR0MLAAiDI4RIwwiLQsOizIMDg88GA5sNhkOlykfDlURIQ4fDw==","crc":41336,"azel":[{"el":30,"az":26,"sid":{"sat":2,"code":0}},{"el":53,"az":44,"sid":{"sat":5,"code":0}},{"el":45,"az":81,"sid":{"sat":12,"code":0}},{"el":25,"az":125,"sid":{"sat":21,"code":0}},{"el":70,"az":109,"sid":{"sat":25,"code":0}},{"el":1,"az":161,"sid":{"sat":26,"code":0}},{"el":55,"az":161,"sid":{"sat":29,"code":0}},{"el":14,"az":149,"sid":{"sat":31,"code":0}},{"el":22,"az":22,"sid":{"sat":4,"code":3}},{"el":33,"az":50,"sid":{"sat":5,"code":3}},{"el":8,"az":78,"sid":{"sat":6,"code":3}},{"el":14,"az":95,"sid":{"sat":9,"code":3}},{"el":41,"az":113,"sid":{"sat":10,"code":3}},{"el":37,"az":152,"sid":{"sat":11,"code":3}},{"el":3,"az":170,"sid":{"sat":12,"code":3}},{"el":7,"az":34,"sid":{"sat":19,"code":3}},{"el":49,"az":11,"sid":{"sat":20,"code":3}},{"el":37,"az":149,"sid":{"sat":21,"code":3}},{"el":41,"az":148,"sid":{"sat":12,"code":12}},{"el":32,"az":35,"sid":{"sat":19,"code":12}},{"el":2,"az":15,"sid":{"sat":20,"code":12}},{"el":35,"az":67,"sid":{"sat":22,"code":12}},{"el":35,"az":130,"sid":{"sat":24,"code":12}},{"el":14,"az":157,"sid":{"sat":25,"code":12}},{"el":21,"az":103,"sid":{"sat":26,"code":12}},{"el":0,"az":44,"sid":{"sat":29,"code":12}},{"el":17,"az":142,"sid":{"sat":34,"code":12}},{"el":45,"az":34,"sid":{"sat":35,"code":12}},{"el":50,"az":139,"sid":{"sat":11,"code":14}},{"el":60,"az":15,"sid":{"sat":12,"code":14}},{"el":54,"az":108,"sid":{"sat":24,"code":14}},{"el":41,"az":151,"sid":{"sat":25,"code":14}},{"el":17,"az":85,"sid":{"sat":31,"code":14}},{"el":15,"az":31,"sid":{"sat":33,"code":14}}]} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"Mgik5S4QAAAAAAE=","wn":2098,"tow":271508900,"crc":35928} -{"length":16,"flags":17,"ns":899999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EaTlLhDkBwMZAxgy/uikNQ==","day":25,"tow":271508900,"year":2020,"crc":47715,"minutes":24,"month":3,"seconds":50} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.537121943396876,"preamble":85,"sender":22963,"msg_type":522,"payload":"pOUuEI5gj+ll6kJArxVWHVaSXsCC2tzSgIkxwAECWwQPBg==","lat":37.831235117920286,"tow":271508900,"h_accuracy":513,"crc":9870,"lon":-122.28650601774892} -{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"pOUuEAsAAAABAAAACgAAAPEAygIPAg==","n":11,"d":10,"tow":271508900,"h_accuracy":241,"crc":23569,"e":1} -{"length":15,"gdop":155,"flags":6,"tdop":77,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"pOUuEJsAhwBNAEgAcgAG","tow":271508900,"crc":10374,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"pOUuEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271508900,"h_accuracy":0,"crc":14703,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"pOUuEP//","tow":271508900,"crc":60065} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":249,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":164,"i":110563132},"flags":15,"cn0":213,"P":1051973095,"D":{"f":148,"i":-181},"lock":15,"sid":{"sat":5,"code":0}},{"L":{"f":169,"i":121837791},"flags":15,"cn0":180,"P":1159248042,"D":{"f":126,"i":2173},"lock":15,"sid":{"sat":21,"code":0}},{"L":{"f":226,"i":123323457},"flags":15,"cn0":189,"P":1173383311,"D":{"f":100,"i":-2481},"lock":15,"sid":{"sat":2,"code":0}},{"L":{"f":11,"i":128736022},"flags":15,"cn0":166,"P":1224882548,"D":{"f":184,"i":-394},"lock":15,"sid":{"sat":31,"code":0}},{"L":{"f":233,"i":107816558},"flags":15,"cn0":218,"P":1025840377,"D":{"f":163,"i":-1125},"lock":15,"sid":{"sat":25,"code":0}},{"L":{"f":244,"i":114080955},"flags":15,"cn0":206,"P":1085444091,"D":{"f":36,"i":-2966},"lock":15,"sid":{"sat":12,"code":0}},{"L":{"f":8,"i":110769823},"flags":15,"cn0":213,"P":1053939750,"D":{"f":211,"i":1484},"lock":15,"sid":{"sat":29,"code":0}},{"L":{"f":136,"i":84012923},"flags":15,"cn0":204,"P":1025840435,"D":{"f":128,"i":-877},"lock":15,"sid":{"sat":25,"code":1}},{"L":{"f":6,"i":88894283},"flags":15,"cn0":187,"P":1085444016,"D":{"f":35,"i":-2311},"lock":15,"sid":{"sat":12,"code":1}},{"L":{"f":206,"i":100313785},"flags":15,"cn0":153,"P":1224882467,"D":{"f":154,"i":-308},"lock":15,"sid":{"sat":31,"code":1}},{"L":{"f":160,"i":86314149},"flags":15,"cn0":194,"P":1053939648,"D":{"f":124,"i":1158},"lock":15,"sid":{"sat":29,"code":1}},{"L":{"f":160,"i":86153119},"flags":15,"cn0":194,"P":1051973028,"D":{"f":28,"i":-141},"lock":15,"sid":{"sat":5,"code":1}},{"L":{"f":131,"i":112943456},"flags":15,"cn0":214,"P":1056791109,"D":{"f":39,"i":1170},"lock":15,"sid":{"sat":11,"code":3}},{"L":{"f":88,"i":123311085},"flags":15,"cn0":176,"P":1154609929,"D":{"f":255,"i":-4407},"lock":15,"sid":{"sat":9,"code":3}}],"payload":"COYuEAAAAAAyCEDn1bM+PA+XBqRL/5TVDw8FAKq4GEXfGEMHqX0IfrQPDxUAj2jwRUHEWQfiT/ZkvQ8PAgB0OQJJFlusBwt2/rimDw8fAPkUJT1uJm0G6Zv7o9oPDxkA+4+yQLu8zAb0avQkzg8PDAAm2NE+nzaaBgjMBdPVDw8dADMVJT177wEFiJP8gMwPDxkBsI+yQEtrTAUG+fYjuw8PDAEjOQJJuar6Bc7M/pqZDw8fAcDX0T6lDCUFoIYEfMIPDx0BpNWzPp+XIgWgc/8cwg8PBQFFWv0+YGG7BoOSBCfWDw8LAwnz0UTtk1kHWMnu/7APDwkD","header":{"n_obs":64,"t":{"ns_residual":0,"wn":2098,"tow":271509000}},"crc":11696} -{"length":249,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":189,"i":109764270},"flags":15,"cn0":173,"P":1026323275,"D":{"f":67,"i":-1210},"lock":15,"sid":{"sat":20,"code":3}},{"L":{"f":16,"i":114871797},"flags":15,"cn0":207,"P":1074456904,"D":{"f":3,"i":2201},"lock":15,"sid":{"sat":5,"code":3}},{"L":{"f":120,"i":111587681},"flags":15,"cn0":207,"P":1046677883,"D":{"f":105,"i":-3042},"lock":15,"sid":{"sat":10,"code":3}},{"L":{"f":243,"i":120431665},"flags":15,"cn0":182,"P":1124487965,"D":{"f":154,"i":-1312},"lock":15,"sid":{"sat":4,"code":3}},{"L":{"f":210,"i":113428366},"flags":15,"cn0":202,"P":1059839628,"D":{"f":70,"i":1623},"lock":15,"sid":{"sat":21,"code":3}},{"L":{"f":146,"i":95908631},"flags":15,"cn0":170,"P":1154610058,"D":{"f":33,"i":-3427},"lock":15,"sid":{"sat":9,"code":4}},{"L":{"f":79,"i":85372246},"flags":15,"cn0":205,"P":1026323628,"D":{"f":108,"i":-941},"lock":15,"sid":{"sat":20,"code":4}},{"L":{"f":243,"i":87844920},"flags":15,"cn0":199,"P":1056791359,"D":{"f":24,"i":910},"lock":15,"sid":{"sat":11,"code":4}},{"L":{"f":214,"i":89344734},"flags":15,"cn0":195,"P":1074457205,"D":{"f":212,"i":1711},"lock":15,"sid":{"sat":5,"code":4}},{"L":{"f":191,"i":93669063},"flags":15,"cn0":177,"P":1124488163,"D":{"f":207,"i":-1022},"lock":15,"sid":{"sat":4,"code":4}},{"L":{"f":217,"i":121572053},"flags":15,"cn0":200,"P":1167331453,"D":{"f":211,"i":-1501},"lock":15,"sid":{"sat":35,"code":12}},{"L":{"f":82,"i":129196082},"flags":15,"cn0":168,"P":1240537492,"D":{"f":28,"i":-3008},"lock":15,"sid":{"sat":26,"code":12}},{"L":{"f":127,"i":132957851},"flags":15,"cn0":159,"P":1276657651,"D":{"f":126,"i":2248},"lock":15,"sid":{"sat":34,"code":12}},{"L":{"f":132,"i":125144475},"flags":15,"cn0":189,"P":1201634057,"D":{"f":1,"i":-1300},"lock":15,"sid":{"sat":24,"code":12}}],"payload":"COYuEAAAAAAyCEFLcyw9rt6KBr1G+0OtDw8UA0jpCkD1zdgGEJkIA88PDwUDewljPmGxpgZ4HvRpzw8PCgMdUwZDMaQtB/Pg+pq2Dw8EA4zeKz+Ox8IG0lcGRsoPDxUDivPRRBdztwWSnfIhqg8PCQSsdCw9Vq0WBU9T/GzNDw8UBD9b/T44aDwF844DGMcPDwsEdeoKQN5KUwXWrwbUww8PBQTjUwZDx0aVBb8C/M+xDw8EBH0QlEXVCj8H2SP608gPDyMMlBnxSTJgswdSQPQcqA8PGgzzPxhMm8bsB3/ICH6fDw8iDAl7n0ebjXUHhOz6Ab0PDxgM","header":{"n_obs":65,"t":{"ns_residual":0,"wn":2098,"tow":271509000}},"crc":41134} -{"length":249,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":227,"i":134679149},"flags":15,"cn0":156,"P":1293185752,"D":{"f":148,"i":1325},"lock":15,"sid":{"sat":25,"code":12}},{"L":{"f":96,"i":121108446},"flags":15,"cn0":185,"P":1162880177,"D":{"f":52,"i":1612},"lock":15,"sid":{"sat":12,"code":12}},{"L":{"f":154,"i":124513442},"flags":15,"cn0":184,"P":1195574833,"D":{"f":55,"i":-287},"lock":15,"sid":{"sat":19,"code":12}},{"L":{"f":105,"i":124716964},"flags":15,"cn0":191,"P":1197529069,"D":{"f":70,"i":2388},"lock":15,"sid":{"sat":22,"code":12}},{"L":{"f":138,"i":93648741},"flags":15,"cn0":209,"P":1162880102,"D":{"f":160,"i":1245},"lock":15,"sid":{"sat":12,"code":13}},{"L":{"f":48,"i":116420763},"flags":15,"cn0":194,"P":1107706704,"D":{"f":154,"i":-1028},"lock":15,"sid":{"sat":12,"code":14}},{"L":{"f":184,"i":132480480},"flags":15,"cn0":191,"P":1260509790,"D":{"f":82,"i":1091},"lock":15,"sid":{"sat":25,"code":14}},{"L":{"f":65,"i":125427982},"flags":15,"cn0":188,"P":1193407529,"D":{"f":191,"i":1047},"lock":15,"sid":{"sat":11,"code":14}},{"L":{"f":58,"i":118404959},"flags":15,"cn0":204,"P":1126585603,"D":{"f":247,"i":-1744},"lock":15,"sid":{"sat":24,"code":14}},{"L":{"f":201,"i":143305131},"flags":15,"cn0":159,"P":1363502988,"D":{"f":2,"i":-3173},"lock":15,"sid":{"sat":31,"code":14}},{"L":{"f":106,"i":144513202},"flags":15,"cn0":153,"P":1374997382,"D":{"f":76,"i":-2144},"lock":15,"sid":{"sat":33,"code":14}},{"L":{"f":22,"i":101511016},"flags":15,"cn0":201,"P":1260509755,"D":{"f":120,"i":834},"lock":15,"sid":{"sat":25,"code":20}},{"L":{"f":104,"i":90725941},"flags":15,"cn0":215,"P":1126586140,"D":{"f":222,"i":-1337},"lock":15,"sid":{"sat":24,"code":20}},{"L":{"f":10,"i":96107133},"flags":15,"cn0":194,"P":1193407326,"D":{"f":113,"i":801},"lock":15,"sid":{"sat":11,"code":20}}],"payload":"COYuEAAAAAAyCELYchRNbQoHCOMtBZScDw8ZDLEkUEXe9zcHYEwGNLkPDwwMMQZDR6Lsawea4f43uA8PEwzt12BHpAdvB2lUCUa/Dw8WDGYkUEVl95QFit0EoNEPDwwNUEMGQptw8AYw/Puawg8PDA5e2iFL4H3lB7hDBFK/Dw8ZDin0IUcO4XkHQRcEv7wPDwsOA1UmQ1+3Dgc6MPn3zA8PGA6MZ0VRq6mKCMmb8wKfDw8fDobL9FGyGJ0IaqD3TJkPDyEOO9ohS2jvDAYWQgN4yQ8PGRQcVyZDNV5oBWjH+t7XDw8YFF7zIUd9eroFCiEDccIPDwsU","header":{"n_obs":66,"t":{"ns_residual":0,"wn":2098,"tow":271509000}},"crc":8177} -{"length":62,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":91,"i":109805272},"flags":15,"cn0":173,"P":1363503039,"D":{"f":121,"i":-2431},"lock":15,"sid":{"sat":31,"code":20}},{"L":{"f":114,"i":89205550},"flags":15,"cn0":207,"P":1107706548,"D":{"f":22,"i":-788},"lock":15,"sid":{"sat":12,"code":20}},{"L":{"f":223,"i":110730965},"flags":15,"cn0":169,"P":1374997353,"D":{"f":127,"i":-1640},"lock":15,"sid":{"sat":33,"code":20}}],"payload":"COYuEAAAAAAyCEO/Z0VR2H6LBluB9nmtDw8fFLRCBkIuK1EFcuz8Fs8PDwwUacv0UdWemQbfmPl/qQ8PIRQ=","header":{"n_obs":67,"t":{"ns_residual":0,"wn":2098,"tow":271509000}},"crc":56491} -{"length":9,"l2ca_bias":0,"preamble":85,"l2p_bias":0,"sender":22963,"msg_type":117,"payload":"/wAAAAAAAAAA","l1ca_bias":0,"mask":255,"crc":49809,"l1p_bias":0} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MggI5i4QAAAAAAE=","wn":2098,"tow":271509000,"crc":59763} -{"length":16,"flags":17,"ns":999999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EQjmLhDkBwMZAxgy/smaOw==","day":25,"tow":271509000,"year":2020,"crc":13459,"minutes":24,"month":3,"seconds":50} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.537276390457404,"preamble":85,"sender":22963,"msg_type":522,"payload":"COYuEC15e+ll6kJA50U4HVaSXsBv7Q3yiokxwAECWwQPBg==","lat":37.831235108651846,"tow":271509000,"h_accuracy":513,"crc":49935,"lon":-122.28650598998466} -{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"COYuEP7///8JAAAAFgAAAPEAygIPAg==","n":-2,"d":22,"tow":271509000,"h_accuracy":241,"crc":44542,"e":9} -{"length":15,"gdop":155,"flags":6,"tdop":77,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"COYuEJsAhwBNAEgAcgAG","tow":271509000,"crc":53460,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"COYuEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271509000,"h_accuracy":0,"crc":32398,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"COYuEP//","tow":271509000,"crc":61112} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":4,"flags":2147616000,"preamble":85,"sender":22963,"msg_type":65535,"payload":"AAUCgA==","crc":40942} -{"length":24,"z":3890655.0240602265,"preamble":85,"sender":22963,"msg_type":72,"payload":"UO0a3iqORMHK1UJhIkRQwc9nFIPvrk1B","crc":2168,"x":-2694229.735196747,"y":-4264073.519704292} -{"cpu_vint":988,"length":10,"fe_temperature":5641,"preamble":85,"sender":22963,"cpu_vaux":1780,"msg_type":181,"payload":"6BbcA/QGYRUJFg==","dev_vin":5864,"crc":1319,"cpu_temperature":5473} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"Mghs5i4QAAAAAAE=","wn":2098,"tow":271509100,"crc":36281} -{"length":16,"flags":17,"ns":99999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EWzmLhDkBwMZAxgz/uD1BQ==","day":25,"tow":271509100,"year":2020,"crc":26291,"minutes":24,"month":3,"seconds":51} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.53568972218729,"preamble":85,"sender":22963,"msg_type":522,"payload":"bOYuEBsTTull6kJAhyMVHVaSXsAFmS32IokxwAECWwQPBg==","lat":37.83123508751142,"tow":271509100,"h_accuracy":513,"crc":19652,"lon":-122.28650595726332} -{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"bOYuEPL///8HAAAA+v////EAygIPAg==","n":-14,"d":-6,"tow":271509100,"h_accuracy":241,"crc":41426,"e":7} -{"length":15,"gdop":155,"flags":6,"tdop":77,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"bOYuEJsAhwBNAEgAcgAG","tow":271509100,"crc":64635,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"bOYuEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271509100,"h_accuracy":0,"crc":26168,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"bOYuEP//","tow":271509100,"crc":46849} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgjQ5i4QAAAAAAE=","wn":2098,"tow":271509200,"crc":29465} -{"length":16,"flags":17,"ns":199999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EdDmLhDkBwMZAxgz/sHrCw==","day":25,"tow":271509200,"year":2020,"crc":11660,"minutes":24,"month":3,"seconds":51} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.53142161036575,"preamble":85,"sender":22963,"msg_type":522,"payload":"0OYuEFmiQull6kJAUt0CHVaSXsCX6CQ/C4gxwAECWwQPBg==","lat":37.831235082184044,"tow":271509200,"h_accuracy":513,"crc":4556,"lon":-122.2865059402441} -{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"0OYuEAEAAAD2////4/////EAygIPAg==","n":1,"d":-29,"tow":271509200,"h_accuracy":241,"crc":26400,"e":-10} -{"length":15,"gdop":155,"flags":6,"tdop":77,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"0OYuEJsAhwBNAEgAcgAG","tow":271509200,"crc":50944,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"0OYuEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271509200,"h_accuracy":0,"crc":62116,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"0OYuEP//","tow":271509200,"crc":18254} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"Mgg05y4QAAAAAAE=","wn":2098,"tow":271509300,"crc":61362} -{"length":16,"flags":17,"ns":299999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"ETTnLhDkBwMZAxgz/qLhEQ==","day":25,"tow":271509300,"year":2020,"crc":45275,"minutes":24,"month":3,"seconds":51} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.532975014391134,"preamble":85,"sender":22963,"msg_type":522,"payload":"NOcuECZZQ+ll6kJA3d/dHFaSXsAiZfAMcYgxwAECWwQPBg==","lat":37.83123508251656,"tow":271509300,"h_accuracy":513,"crc":21203,"lon":-122.28650590579441} -{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"NOcuEA8AAAD9////GQAAAPEAygIPAg==","n":15,"d":25,"tow":271509300,"h_accuracy":241,"crc":38337,"e":-3} -{"length":15,"gdop":155,"flags":6,"tdop":77,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"NOcuEJsAhwBNAEgAcgAG","tow":271509300,"crc":50396,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"NOcuEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271509300,"h_accuracy":0,"crc":34161,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"NOcuEP//","tow":271509300,"crc":24710} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":237,"states":[{"cn0":213,"mesid":{"sat":5,"code":0}},{"cn0":180,"mesid":{"sat":21,"code":0}},{"cn0":188,"mesid":{"sat":2,"code":0}},{"cn0":166,"mesid":{"sat":31,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":217,"mesid":{"sat":25,"code":0}},{"cn0":206,"mesid":{"sat":12,"code":0}},{"cn0":213,"mesid":{"sat":29,"code":0}},{"cn0":206,"mesid":{"sat":18,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":205,"mesid":{"sat":131,"code":2}},{"cn0":204,"mesid":{"sat":25,"code":1}},{"cn0":186,"mesid":{"sat":12,"code":1}},{"cn0":152,"mesid":{"sat":31,"code":1}},{"cn0":195,"mesid":{"sat":18,"code":1}},{"cn0":194,"mesid":{"sat":29,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":194,"mesid":{"sat":5,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":214,"mesid":{"sat":100,"code":3}},{"cn0":176,"mesid":{"sat":98,"code":3}},{"cn0":173,"mesid":{"sat":102,"code":3}},{"cn0":207,"mesid":{"sat":101,"code":3}},{"cn0":207,"mesid":{"sat":93,"code":3}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":182,"mesid":{"sat":106,"code":3}},{"cn0":202,"mesid":{"sat":104,"code":3}},{"cn0":170,"mesid":{"sat":98,"code":4}},{"cn0":205,"mesid":{"sat":102,"code":4}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":199,"mesid":{"sat":100,"code":4}},{"cn0":195,"mesid":{"sat":101,"code":4}},{"cn0":188,"mesid":{"sat":104,"code":4}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":177,"mesid":{"sat":106,"code":4}},{"cn0":199,"mesid":{"sat":35,"code":12}},{"cn0":169,"mesid":{"sat":26,"code":12}},{"cn0":159,"mesid":{"sat":34,"code":12}},{"cn0":189,"mesid":{"sat":24,"code":12}},{"cn0":156,"mesid":{"sat":25,"code":12}},{"cn0":185,"mesid":{"sat":12,"code":12}},{"cn0":184,"mesid":{"sat":19,"code":12}},{"cn0":191,"mesid":{"sat":22,"code":12}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":208,"mesid":{"sat":12,"code":13}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":194,"mesid":{"sat":12,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":191,"mesid":{"sat":25,"code":14}},{"cn0":188,"mesid":{"sat":11,"code":14}},{"cn0":203,"mesid":{"sat":24,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":159,"mesid":{"sat":31,"code":14}},{"cn0":153,"mesid":{"sat":33,"code":14}},{"cn0":201,"mesid":{"sat":25,"code":20}},{"cn0":215,"mesid":{"sat":24,"code":20}},{"cn0":194,"mesid":{"sat":11,"code":20}},{"cn0":173,"mesid":{"sat":31,"code":20}},{"cn0":206,"mesid":{"sat":12,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":169,"mesid":{"sat":33,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}}],"preamble":85,"sender":22963,"msg_type":97,"payload":"BQDVFQC0AgC8HwCmAAAAAAAAGQDZDADOHQDVEgDOAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwLNGQHMDAG6HwGYEgHDHQHCAAAABQHCAAAAAAAAAAAAAAAAZAPWYgOwZgOtZQPPXQPPAAAAagO2aAPKYgSqZgTNAAAAZATHZQTDaAS8AAAAagSxIwzHGgypIgyfGAy9GQycDAy5Ewy4Fgy/AAAADA3QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADA7CAAAAGQ6/Cw68GA7LAAAAHw6fIQ6ZGRTJGBTXCxTCHxStDBTOAAAAIRSpAAAA","crc":1145} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgiY5y4QAAAAAAE=","wn":2098,"tow":271509400,"crc":17132} -{"length":16,"flags":17,"ns":399999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EZjnLhDkBwMZAxgz/oPXFw==","day":25,"tow":271509400,"year":2020,"crc":47913,"minutes":24,"month":3,"seconds":51} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.526091374987356,"preamble":85,"sender":22963,"msg_type":522,"payload":"mOcuEJDyH+ll6kJAgxnDHFaSXsBDR6LsrYYxwAECWwQPBg==","lat":37.83123506603181,"tow":271509400,"h_accuracy":513,"crc":44083,"lon":-122.28650588085843} -{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"mOcuEP////8FAAAA/f////EAygIPAg==","n":-1,"d":-3,"tow":271509400,"h_accuracy":241,"crc":28800,"e":5} -{"length":15,"gdop":155,"flags":6,"tdop":77,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"mOcuEJsAhwBNAEgAcgAG","tow":271509400,"crc":45357,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"mOcuEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271509400,"h_accuracy":0,"crc":44203,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"mOcuEP//","tow":271509400,"crc":35405} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":9,"l2ca_bias":0,"preamble":85,"l2p_bias":0,"sender":22963,"msg_type":117,"payload":"/wAAAAAAAAAA","l1ca_bias":0,"mask":255,"crc":49809,"l1p_bias":0} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"Mgj85y4QAAAAAAE=","wn":2098,"tow":271509500,"crc":9766} -{"length":16,"flags":17,"ns":499999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EfznLhDkBwMZAxgz/mTNHQ==","day":25,"tow":271509500,"year":2020,"crc":65493,"minutes":24,"month":3,"seconds":51} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.52095516508698,"preamble":85,"sender":22963,"msg_type":522,"payload":"/OcuEH928+hl6kJA/6O2HFaSXsAau1RRXYUxwAECWwQPBg==","lat":37.83123504531704,"tow":271509500,"h_accuracy":513,"crc":10626,"lon":-122.28650586925504} -{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"/OcuEPv///8AAAAABgAAAPEAygIPAg==","n":-5,"d":6,"tow":271509500,"h_accuracy":241,"crc":25447,"e":0} -{"length":15,"gdop":155,"flags":6,"tdop":77,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"/OcuEJsAhwBNAEgAcgAG","tow":271509500,"crc":40322,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"/OcuEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271509500,"h_accuracy":0,"crc":46109,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"/OcuEP//","tow":271509500,"crc":54260} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"Mghg6C4QAAAAAAE=","wn":2098,"tow":271509600,"crc":42680} -{"length":16,"flags":17,"ns":599999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EWDoLhDkBwMZAxgz/kXDIw==","day":25,"tow":271509600,"year":2020,"crc":34739,"minutes":24,"month":3,"seconds":51} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.51651706135248,"preamble":85,"sender":22963,"msg_type":522,"payload":"YOguEH5uxuhl6kJAwF6hHFaSXsC+VU52OoQxwAECWwQPBg==","lat":37.83123502434772,"tow":271509600,"h_accuracy":513,"crc":20295,"lon":-122.28650584944535} -{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"YOguEP////8GAAAAAQAAAPEAygIPAg==","n":-1,"d":1,"tow":271509600,"h_accuracy":241,"crc":48282,"e":6} -{"length":15,"gdop":155,"flags":6,"tdop":77,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"YOguEJsAhwBNAEgAcgAG","tow":271509600,"crc":41088,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"YOguEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271509600,"h_accuracy":0,"crc":36058,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"YOguEP//","tow":271509600,"crc":29514} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"message_type":4,"length":34,"data":[23,255,127,255,254,127,240,0,127,255,253,255,255,252,127,247,255,127,247,255,238,94,110,170,175,255,240],"preamble":85,"sender":22963,"msg_type":30583,"payload":"gwLj5y4QBBf/f//+f/AAf//9///8f/f/f/f/7l5uqq//8A==","tow":271509475,"crc":666,"sid":{"sat":131,"code":2}} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgjE6C4QAAAAAAE=","wn":2098,"tow":271509700,"crc":8729} -{"length":16,"flags":17,"ns":699999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EcToLhDkBwMZAxgz/ia5KQ==","day":25,"tow":271509700,"year":2020,"crc":20964,"minutes":24,"month":3,"seconds":51} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.512157243072107,"preamble":85,"sender":22963,"msg_type":522,"payload":"xOguEBPpdehl6kJACw2UHFaSXsB7Z7G8HIMxwAECWwQPBg==","lat":37.83123498685213,"tow":271509700,"h_accuracy":513,"crc":33583,"lon":-122.2865058370409} -{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"xOguEPj////+////8f////EAygIPAg==","n":-8,"d":-15,"tow":271509700,"h_accuracy":241,"crc":57365,"e":-2} -{"length":15,"gdop":155,"flags":6,"tdop":77,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"xOguEJsAhwBNAEgAcgAG","tow":271509700,"crc":62004,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"xOguEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271509700,"h_accuracy":0,"crc":64419,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"xOguEP//","tow":271509700,"crc":38083} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"Mggo6S4QAAAAAAE=","wn":2098,"tow":271509800,"crc":38733} -{"length":16,"flags":17,"ns":799999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"ESjpLhDkBwMZAxgz/gevLw==","day":25,"tow":271509800,"year":2020,"crc":3480,"minutes":24,"month":3,"seconds":51} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.50819365589743,"preamble":85,"sender":22963,"msg_type":522,"payload":"KOkuEKJWMOhl6kJAT+mEHFaSXsA4Hbz6GIIxwAECWwQPBg==","lat":37.83123495445513,"tow":271509800,"h_accuracy":513,"crc":48795,"lon":-122.28650582294107} -{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"KOkuEAEAAAD7////3/////EAygIPAg==","n":1,"d":-33,"tow":271509800,"h_accuracy":241,"crc":24603,"e":-5} -{"length":15,"gdop":155,"flags":6,"tdop":77,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"KOkuEJsAhwBNAEgAcgAG","tow":271509800,"crc":54957,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"KOkuEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271509800,"h_accuracy":0,"crc":53973,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"KOkuEP//","tow":271509800,"crc":48713} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":237,"states":[{"cn0":213,"mesid":{"sat":5,"code":0}},{"cn0":180,"mesid":{"sat":21,"code":0}},{"cn0":188,"mesid":{"sat":2,"code":0}},{"cn0":166,"mesid":{"sat":31,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":217,"mesid":{"sat":25,"code":0}},{"cn0":206,"mesid":{"sat":12,"code":0}},{"cn0":213,"mesid":{"sat":29,"code":0}},{"cn0":206,"mesid":{"sat":18,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":205,"mesid":{"sat":131,"code":2}},{"cn0":204,"mesid":{"sat":25,"code":1}},{"cn0":187,"mesid":{"sat":12,"code":1}},{"cn0":151,"mesid":{"sat":31,"code":1}},{"cn0":195,"mesid":{"sat":18,"code":1}},{"cn0":194,"mesid":{"sat":29,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":194,"mesid":{"sat":5,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":213,"mesid":{"sat":11,"code":3}},{"cn0":177,"mesid":{"sat":9,"code":3}},{"cn0":173,"mesid":{"sat":20,"code":3}},{"cn0":207,"mesid":{"sat":5,"code":3}},{"cn0":207,"mesid":{"sat":10,"code":3}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":182,"mesid":{"sat":4,"code":3}},{"cn0":202,"mesid":{"sat":21,"code":3}},{"cn0":170,"mesid":{"sat":9,"code":4}},{"cn0":205,"mesid":{"sat":20,"code":4}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":199,"mesid":{"sat":11,"code":4}},{"cn0":195,"mesid":{"sat":5,"code":4}},{"cn0":188,"mesid":{"sat":0,"code":4}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":177,"mesid":{"sat":4,"code":4}},{"cn0":200,"mesid":{"sat":35,"code":12}},{"cn0":169,"mesid":{"sat":26,"code":12}},{"cn0":159,"mesid":{"sat":34,"code":12}},{"cn0":189,"mesid":{"sat":24,"code":12}},{"cn0":156,"mesid":{"sat":25,"code":12}},{"cn0":185,"mesid":{"sat":12,"code":12}},{"cn0":183,"mesid":{"sat":19,"code":12}},{"cn0":191,"mesid":{"sat":22,"code":12}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":208,"mesid":{"sat":12,"code":13}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":195,"mesid":{"sat":12,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":191,"mesid":{"sat":25,"code":14}},{"cn0":188,"mesid":{"sat":11,"code":14}},{"cn0":204,"mesid":{"sat":24,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":159,"mesid":{"sat":31,"code":14}},{"cn0":151,"mesid":{"sat":33,"code":14}},{"cn0":201,"mesid":{"sat":25,"code":20}},{"cn0":215,"mesid":{"sat":24,"code":20}},{"cn0":194,"mesid":{"sat":11,"code":20}},{"cn0":174,"mesid":{"sat":31,"code":20}},{"cn0":207,"mesid":{"sat":12,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":168,"mesid":{"sat":33,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}}],"preamble":85,"sender":22963,"msg_type":97,"payload":"BQDVFQC0AgC8HwCmAAAAAAAAGQDZDADOHQDVEgDOAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwLNGQHMDAG7HwGXEgHDHQHCAAAABQHCAAAAAAAAAAAAAAAACwPVCQOxFAOtBQPPCgPPAAAABAO2FQPKCQSqFATNAAAACwTHBQTDAAS8AAAABASxIwzIGgypIgyfGAy9GQycDAy5Ewy3Fgy/AAAADA3QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADA7DAAAAGQ6/Cw68GA7MAAAAHw6fIQ6XGRTJGBTXCxTCHxSuDBTPAAAAIRSoAAAA","crc":32353} -{"length":136,"preamble":85,"sender":22963,"msg_type":151,"payload":"AgAaHgUALDUMAFEtFQB9GRkAbUYaAKEBHQChNx8AlQ4EAxYWBQMyIQYDTggJA18OCgNxKQsDmCUMA6oDEwMiBxQDCzEVA5UlDAyUKRMMIyAUDA8CFgxDIxgMgiMZDJ0OGgxnFR0MLAAiDI4RIwwiLQsOizIMDg88GA5sNhkOlykfDlURIQ4fDw==","crc":41336,"azel":[{"el":30,"az":26,"sid":{"sat":2,"code":0}},{"el":53,"az":44,"sid":{"sat":5,"code":0}},{"el":45,"az":81,"sid":{"sat":12,"code":0}},{"el":25,"az":125,"sid":{"sat":21,"code":0}},{"el":70,"az":109,"sid":{"sat":25,"code":0}},{"el":1,"az":161,"sid":{"sat":26,"code":0}},{"el":55,"az":161,"sid":{"sat":29,"code":0}},{"el":14,"az":149,"sid":{"sat":31,"code":0}},{"el":22,"az":22,"sid":{"sat":4,"code":3}},{"el":33,"az":50,"sid":{"sat":5,"code":3}},{"el":8,"az":78,"sid":{"sat":6,"code":3}},{"el":14,"az":95,"sid":{"sat":9,"code":3}},{"el":41,"az":113,"sid":{"sat":10,"code":3}},{"el":37,"az":152,"sid":{"sat":11,"code":3}},{"el":3,"az":170,"sid":{"sat":12,"code":3}},{"el":7,"az":34,"sid":{"sat":19,"code":3}},{"el":49,"az":11,"sid":{"sat":20,"code":3}},{"el":37,"az":149,"sid":{"sat":21,"code":3}},{"el":41,"az":148,"sid":{"sat":12,"code":12}},{"el":32,"az":35,"sid":{"sat":19,"code":12}},{"el":2,"az":15,"sid":{"sat":20,"code":12}},{"el":35,"az":67,"sid":{"sat":22,"code":12}},{"el":35,"az":130,"sid":{"sat":24,"code":12}},{"el":14,"az":157,"sid":{"sat":25,"code":12}},{"el":21,"az":103,"sid":{"sat":26,"code":12}},{"el":0,"az":44,"sid":{"sat":29,"code":12}},{"el":17,"az":142,"sid":{"sat":34,"code":12}},{"el":45,"az":34,"sid":{"sat":35,"code":12}},{"el":50,"az":139,"sid":{"sat":11,"code":14}},{"el":60,"az":15,"sid":{"sat":12,"code":14}},{"el":54,"az":108,"sid":{"sat":24,"code":14}},{"el":41,"az":151,"sid":{"sat":25,"code":14}},{"el":17,"az":85,"sid":{"sat":31,"code":14}},{"el":15,"az":31,"sid":{"sat":33,"code":14}}]} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgiM6S4QAAAAAAE=","wn":2098,"tow":271509900,"crc":5100} -{"length":16,"flags":17,"ns":899999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EYzpLhDkBwMZAxgz/uikNQ==","day":25,"tow":271509900,"year":2020,"crc":48301,"minutes":24,"month":3,"seconds":51} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.514291617092855,"preamble":85,"sender":22963,"msg_type":522,"payload":"jOkuEDwC4udl6kJATPZZHFaSXsBRBYydqIMxwAECWwQPBg==","lat":37.83123491798003,"tow":271509900,"h_accuracy":513,"crc":10120,"lon":-122.28650578294145} -{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"jOkuEP7///8NAAAAMQAAAPEAygIPAg==","n":-2,"d":49,"tow":271509900,"h_accuracy":241,"crc":44686,"e":13} -{"length":15,"gdop":155,"flags":6,"tdop":77,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"jOkuEJsAhwBNAEgAcgAG","tow":271509900,"crc":33817,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"jOkuEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271509900,"h_accuracy":0,"crc":42412,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"jOkuEP//","tow":271509900,"crc":22976} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":249,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":224,"i":110563310},"flags":15,"cn0":213,"P":1051974795,"D":{"f":14,"i":-180},"lock":15,"sid":{"sat":5,"code":0}},{"L":{"f":175,"i":121835615},"flags":15,"cn0":180,"P":1159227349,"D":{"f":104,"i":2175},"lock":15,"sid":{"sat":21,"code":0}},{"L":{"f":4,"i":123325936},"flags":15,"cn0":188,"P":1173406880,"D":{"f":85,"i":-2478},"lock":15,"sid":{"sat":2,"code":0}},{"L":{"f":136,"i":128736413},"flags":15,"cn0":166,"P":1224886261,"D":{"f":28,"i":-393},"lock":15,"sid":{"sat":31,"code":0}},{"L":{"f":54,"i":107817681},"flags":15,"cn0":217,"P":1025851053,"D":{"f":74,"i":-1124},"lock":15,"sid":{"sat":25,"code":0}},{"L":{"f":18,"i":114083920},"flags":15,"cn0":206,"P":1085472286,"D":{"f":194,"i":-2966},"lock":15,"sid":{"sat":12,"code":0}},{"L":{"f":187,"i":110768336},"flags":15,"cn0":213,"P":1053925607,"D":{"f":47,"i":1485},"lock":15,"sid":{"sat":29,"code":0}},{"L":{"f":14,"i":84013798},"flags":15,"cn0":204,"P":1025851118,"D":{"f":126,"i":-876},"lock":15,"sid":{"sat":25,"code":1}},{"L":{"f":186,"i":88896592},"flags":15,"cn0":187,"P":1085472211,"D":{"f":156,"i":-2312},"lock":15,"sid":{"sat":12,"code":1}},{"L":{"f":222,"i":100314090},"flags":15,"cn0":151,"P":1224886190,"D":{"f":212,"i":-307},"lock":15,"sid":{"sat":31,"code":1}},{"L":{"f":121,"i":86312991},"flags":15,"cn0":194,"P":1053925505,"D":{"f":177,"i":1156},"lock":15,"sid":{"sat":29,"code":1}},{"L":{"f":131,"i":86153258},"flags":15,"cn0":194,"P":1051974730,"D":{"f":27,"i":-141},"lock":15,"sid":{"sat":5,"code":1}},{"L":{"f":123,"i":112942284},"flags":15,"cn0":213,"P":1056780131,"D":{"f":121,"i":1170},"lock":15,"sid":{"sat":11,"code":3}},{"L":{"f":178,"i":123315491},"flags":15,"cn0":177,"P":1154651170,"D":{"f":87,"i":-4407},"lock":15,"sid":{"sat":9,"code":3}}],"payload":"8OkuEAAAAAAyCECL3LM+7g+XBuBM/w7VDw8FANVnGEVfEEMHr38IaLQPDxUAoMTwRfDNWQcEUvZVvA8PAgD1RwJJnVysB4h3/hymDw8fAK0+JT3RKm0GNpz7StkPDxkAHv6yQFDIzAYSavTCzg8PDADnoNE+0DCaBrvNBS/VDw8dAO4+JT3m8gEFDpT8fswPDxkB0/2yQFB0TAW6+Pacuw8PDAGuRwJJ6qv6Bd7N/tSXDw8fAYGg0T4fCCUFeYQEscIPDx0BStyzPiqYIgWDc/8bwg8PBQFjL/0+zFy7BnuSBHnVDw8LAyKU0kQjpVkHssnuV7EPDwkD","header":{"n_obs":64,"t":{"ns_residual":0,"wn":2098,"tow":271510000}},"crc":43069} -{"length":249,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":248,"i":109765478},"flags":15,"cn0":173,"P":1026334589,"D":{"f":217,"i":-1209},"lock":15,"sid":{"sat":20,"code":3}},{"L":{"f":250,"i":114869593},"flags":15,"cn0":207,"P":1074436303,"D":{"f":20,"i":2202},"lock":15,"sid":{"sat":5,"code":3}},{"L":{"f":17,"i":111590721},"flags":15,"cn0":207,"P":1046706402,"D":{"f":142,"i":-3042},"lock":15,"sid":{"sat":10,"code":3}},{"L":{"f":54,"i":120432976},"flags":15,"cn0":182,"P":1124500196,"D":{"f":61,"i":-1312},"lock":15,"sid":{"sat":4,"code":3}},{"L":{"f":18,"i":113426742},"flags":15,"cn0":202,"P":1059824438,"D":{"f":209,"i":1623},"lock":15,"sid":{"sat":21,"code":3}},{"L":{"f":187,"i":95912058},"flags":15,"cn0":170,"P":1154651318,"D":{"f":87,"i":-3429},"lock":15,"sid":{"sat":9,"code":4}},{"L":{"f":8,"i":85373186},"flags":15,"cn0":205,"P":1026334933,"D":{"f":52,"i":-942},"lock":15,"sid":{"sat":20,"code":4}},{"L":{"f":94,"i":87844009},"flags":15,"cn0":199,"P":1056780380,"D":{"f":214,"i":910},"lock":15,"sid":{"sat":11,"code":4}},{"L":{"f":84,"i":89343021},"flags":15,"cn0":195,"P":1074436613,"D":{"f":21,"i":1712},"lock":15,"sid":{"sat":5,"code":4}},{"L":{"f":216,"i":93670082},"flags":15,"cn0":176,"P":1124500393,"D":{"f":248,"i":-1022},"lock":15,"sid":{"sat":4,"code":4}},{"L":{"f":136,"i":121573551},"flags":15,"cn0":200,"P":1167345832,"D":{"f":156,"i":-1499},"lock":15,"sid":{"sat":35,"code":12}},{"L":{"f":31,"i":129199089},"flags":15,"cn0":169,"P":1240566380,"D":{"f":213,"i":-3007},"lock":15,"sid":{"sat":26,"code":12}},{"L":{"f":12,"i":132955602},"flags":15,"cn0":159,"P":1276636053,"D":{"f":242,"i":2248},"lock":15,"sid":{"sat":34,"code":12}},{"L":{"f":112,"i":125145774},"flags":15,"cn0":189,"P":1201646536,"D":{"f":189,"i":-1301},"lock":15,"sid":{"sat":24,"code":12}}],"payload":"8OkuEAAAAAAyCEF9nyw9ZuOKBvhH+9mtDw8UA8+YCkBZxdgG+poIFM8PDwUD4nhjPkG9pgYRHvSOzw8PCgPkggZDUKktBzbg+j22Dw8EAzajKz82wcIGElcG0coPDxUDtpTSRHqAtwW7m/JXqg8PCQTVoCw9ArEWBQhS/DTNDw8UBFww/T6pZDwFXo4D1scPDwsEBZoKQC1EUwVUsAYVww8PBQSpgwZDwkqVBdgC/PiwDw8EBKhIlEWvED8HiCX6nMgPDyMMbIrxSfFrswcfQfTVqQ8PGgyV6xdM0r3sBwzICPKfDw8iDMirn0euknUHcOv6vb0PDxgM","header":{"n_obs":65,"t":{"ns_residual":0,"wn":2098,"tow":271510000}},"crc":1753} -{"length":249,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":92,"i":134677821},"flags":15,"cn0":156,"P":1293172964,"D":{"f":63,"i":1329},"lock":15,"sid":{"sat":25,"code":12}},{"L":{"f":56,"i":121106833},"flags":15,"cn0":185,"P":1162864683,"D":{"f":196,"i":1611},"lock":15,"sid":{"sat":12,"code":12}},{"L":{"f":5,"i":124513728},"flags":15,"cn0":183,"P":1195577569,"D":{"f":54,"i":-286},"lock":15,"sid":{"sat":19,"code":12}},{"L":{"f":54,"i":124714574},"flags":15,"cn0":191,"P":1197506111,"D":{"f":209,"i":2388},"lock":15,"sid":{"sat":22,"code":12}},{"L":{"f":37,"i":93647494},"flags":15,"cn0":208,"P":1162864615,"D":{"f":86,"i":1246},"lock":15,"sid":{"sat":12,"code":13}},{"L":{"f":167,"i":116421788},"flags":15,"cn0":194,"P":1107716461,"D":{"f":253,"i":-1028},"lock":15,"sid":{"sat":12,"code":14}},{"L":{"f":48,"i":132479389},"flags":15,"cn0":191,"P":1260499413,"D":{"f":71,"i":1090},"lock":15,"sid":{"sat":25,"code":14}},{"L":{"f":44,"i":125426933},"flags":15,"cn0":188,"P":1193397544,"D":{"f":182,"i":1047},"lock":15,"sid":{"sat":11,"code":14}},{"L":{"f":97,"i":118406700},"flags":15,"cn0":204,"P":1126602167,"D":{"f":192,"i":-1744},"lock":15,"sid":{"sat":24,"code":14}},{"L":{"f":35,"i":143308303},"flags":15,"cn0":159,"P":1363533162,"D":{"f":222,"i":-3174},"lock":15,"sid":{"sat":31,"code":14}},{"L":{"f":213,"i":144515342},"flags":15,"cn0":151,"P":1375017757,"D":{"f":162,"i":-2143},"lock":15,"sid":{"sat":33,"code":14}},{"L":{"f":187,"i":101510179},"flags":15,"cn0":200,"P":1260499372,"D":{"f":247,"i":835},"lock":15,"sid":{"sat":25,"code":20}},{"L":{"f":138,"i":90727275},"flags":15,"cn0":215,"P":1126602705,"D":{"f":49,"i":-1335},"lock":15,"sid":{"sat":24,"code":20}},{"L":{"f":53,"i":96106329},"flags":15,"cn0":194,"P":1193397345,"D":{"f":137,"i":803},"lock":15,"sid":{"sat":11,"code":20}}],"payload":"8OkuEAAAAAAyCELkQBRNPQUHCFwxBT+cDw8ZDCvoT0WR8TcHOEsGxLkPDwwM4RBDR8DtawcF4v42tw8PEww/fmBHTv5uBzZUCdG/Dw8WDOfnT0WG8pQFJd4EVtAPDwwNbWkGQpx08Aan/Pv9wg8PDA7VsSFLnXnlBzBCBEe/Dw8ZDijNIUf13HkHLBcEtrwPDwsOt5UmQyy+DgdhMPnAzA8PGA5q3UVRD7aKCCOa896fDw8fDh0b9VEOIZ0I1aH3opcPDyEOrLEhSyPsDAa7QwP3yA8PGRTRlyZDa2NoBYrJ+jHXDw8YFGHMIUdZd7oFNSMDicIPDwsU","header":{"n_obs":66,"t":{"ns_residual":0,"wn":2098,"tow":271510000}},"crc":19312} -{"length":62,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":96,"i":109807702},"flags":15,"cn0":173,"P":1363533221,"D":{"f":124,"i":-2429},"lock":15,"sid":{"sat":31,"code":20}},{"L":{"f":48,"i":89206336},"flags":15,"cn0":207,"P":1107716305,"D":{"f":203,"i":-788},"lock":15,"sid":{"sat":12,"code":20}},{"L":{"f":235,"i":110732605},"flags":15,"cn0":169,"P":1375017719,"D":{"f":66,"i":-1639},"lock":15,"sid":{"sat":33,"code":20}}],"payload":"8OkuEAAAAAAyCEOl3UVRVoiLBmCD9nytDw8fFNFoBkJALlEFMOz8y88PDwwU9xr1UT2lmQbrmflCqQ8PIRQ=","header":{"n_obs":67,"t":{"ns_residual":0,"wn":2098,"tow":271510000}},"crc":3887} -{"length":9,"l2ca_bias":0,"preamble":85,"l2p_bias":0,"sender":22963,"msg_type":117,"payload":"/wAAAAAAAAAA","l1ca_bias":0,"mask":255,"crc":49809,"l1p_bias":0} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"Mgjw6S4QAAAAAAE=","wn":2098,"tow":271510000,"crc":3367} -{"length":16,"flags":17,"ns":999999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EfDpLhDkBwMZAxgz/smaOw==","day":25,"tow":271510000,"year":2020,"crc":36719,"minutes":24,"month":3,"seconds":51} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.515884053147378,"preamble":85,"sender":22963,"msg_type":522,"payload":"8OkuEF/ksudl6kJA/2lNHFaSXsDByzD6EIQxwAECWwQPBg==","lat":37.831234896039625,"tow":271510000,"h_accuracy":513,"crc":12794,"lon":-122.28650577125516} -{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"8OkuEAMAAAD0////8f////EAygIPAg==","n":3,"d":-15,"tow":271510000,"h_accuracy":241,"crc":34790,"e":-12} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"8OkuEJsAhwBMAEgAcgAG","tow":271510000,"crc":31000,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"8OkuEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271510000,"h_accuracy":0,"crc":24319,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"8OkuEP//","tow":271510000,"crc":6079} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":4,"flags":2147616000,"preamble":85,"sender":22963,"msg_type":65535,"payload":"AAUCgA==","crc":40942} -{"length":24,"z":3890655.0240602265,"preamble":85,"sender":22963,"msg_type":72,"payload":"UO0a3iqORMHK1UJhIkRQwc9nFIPvrk1B","crc":2168,"x":-2694229.735196747,"y":-4264073.519704292} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"bWFpbgAAAAAAAAAAAAAAAAAAAAAAAAx1AAA=","name":"main\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":47991,"stack_free":29964,"cpu":0} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"aWRsZQAAAAAAAAAAAAAAAAAAAABPAXwAAAA=","name":"idle\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":16658,"stack_free":124,"cpu":335} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"cnBtc2cAAAAAAAAAAAAAAAAAAAABAOwNAAA=","name":"rpmsg\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":53198,"stack_free":3564,"cpu":1} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"U0JQAAAAAAAAAAAAAAAAAAAAAAAAAPz/AAA=","name":"SBP\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":51784,"stack_free":65532,"cpu":0} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"TkFQAAAAAAAAAAAAAAAAAAAAAAAAAASAAAA=","name":"NAP\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":33651,"stack_free":32772,"cpu":0} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"bWFuYWdlIFBWAAAAAAAAAAAAAAAAACQEAAA=","name":"manage PV\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":29877,"stack_free":1060,"cpu":0} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"SU1VAAAAAAAAAAAAAAAAAAAAAAAAAPQHAAA=","name":"IMU\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":14252,"stack_free":2036,"cpu":0} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"SU1VIGF1eAAAAAAAAAAAAAAAAAAAAEwIAAA=","name":"IMU aux\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":18976,"stack_free":2124,"cpu":0} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"bmRiAAAAAAAAAAAAAAAAAAAAAAAAAFAMAAA=","name":"ndb\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":26120,"stack_free":3152,"cpu":0} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"TkFQIFRyYWNraW5nAAAAAAAAAAAhAdR3AAA=","name":"NAP Tracking\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":28320,"stack_free":30676,"cpu":289} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"ZGVjb2RlAAAAAAAAAAAAAAAAAAAIANQGAAA=","name":"decode\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":40082,"stack_free":1748,"cpu":8} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"bWFuYWdlIGFjcQAAAAAAAAAAAADOAKR3AAA=","name":"manage acq\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":54765,"stack_free":30628,"cpu":206} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"c3lzdGVtIG1vbml0b3IAAAAAAAAAACwGAAA=","name":"system monitor\u0000\u0000\u0000\u0000\u0000\u0000","crc":58531,"stack_free":1580,"cpu":0} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"V2F0Y2hkb2cAAAAAAAAAAAAAAAAAAOQDAAA=","name":"Watchdog\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":44438,"stack_free":996,"cpu":0} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"c3RhcmxpbmcAAAAAAAAAAAAAAACVAPz/AAA=","name":"starling\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":15999,"stack_free":65532,"cpu":149} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"bWVfY2FsY19wdnQAAAAAAAAAAAAJAIwjAAA=","name":"me_calc_pvt\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":57561,"stack_free":9100,"cpu":9} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"UFBTAAAAAAAAAAAAAAAAAAAAAAAAAEgHAAA=","name":"PPS\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":38576,"stack_free":1864,"cpu":0} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"c3BlY3RydW0gYW5hbHl6ZXIAAAAAANQPAAA=","name":"spectrum analyzer\u0000\u0000\u0000","crc":50933,"stack_free":4052,"cpu":0} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MghU6i4QAAAAAAE=","wn":2098,"tow":271510100,"crc":16883} -{"length":16,"flags":17,"ns":99999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EVTqLhDkBwMZAxg0/uD1BQ==","day":25,"tow":271510100,"year":2020,"crc":58226,"minutes":24,"month":3,"seconds":52} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.52332338068115,"preamble":85,"sender":22963,"msg_type":522,"payload":"VOouEBMxdudl6kJAeAEtHFaSXsD4QWWF+IUxwAECWwQPBg==","lat":37.83123486777381,"tow":271510100,"h_accuracy":513,"crc":11734,"lon":-122.28650574107257} -{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"VOouEP3////+////DAAAAPEAygIPAg==","n":-3,"d":12,"tow":271510100,"h_accuracy":241,"crc":21008,"e":-2} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"VOouEJsAhwBMAEgAcgAG","tow":271510100,"crc":42511,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"VOouEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271510100,"h_accuracy":0,"crc":18365,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"VOouEP//","tow":271510100,"crc":7908} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"Mgi46i4QAAAAAAE=","wn":2098,"tow":271510200,"crc":45940} -{"length":16,"flags":17,"ns":199999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EbjqLhDkBwMZAxg0/sHrCw==","day":25,"tow":271510200,"year":2020,"crc":52430,"minutes":24,"month":3,"seconds":52} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.532507876160253,"preamble":85,"sender":22963,"msg_type":522,"payload":"uOouEKsKRudl6kJAb0oEHFaSXsCA+KhvUogxwAECWwQPBg==","lat":37.831234845352206,"tow":271510200,"h_accuracy":513,"crc":59388,"lon":-122.2865057031538} -{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"uOouEAIAAAAJAAAAEgAAAPEAygIPAg==","n":2,"d":18,"tow":271510200,"h_accuracy":241,"crc":60075,"e":9} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"uOouEJsAhwBMAEgAcgAG","tow":271510200,"crc":63991,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"uOouEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271510200,"h_accuracy":0,"crc":47933,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"uOouEP//","tow":271510200,"crc":40511} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"Mggc6y4QAAAAAAE=","wn":2098,"tow":271510300,"crc":28678} -{"length":16,"flags":17,"ns":299999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"ERzrLhDkBwMZAxg0/qLhEQ==","day":25,"tow":271510300,"year":2020,"crc":31632,"minutes":24,"month":3,"seconds":52} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.538608768535088,"preamble":85,"sender":22963,"msg_type":522,"payload":"HOsuENaICOdl6kJApybaG1aSXsBxMqZD4okxwAECWwQPBg==","lat":37.831234816710705,"tow":271510300,"h_accuracy":513,"crc":29052,"lon":-122.28650566390807} -{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"HOsuEAAAAAAEAAAA7/////EAygIPAg==","n":0,"d":-17,"tow":271510300,"h_accuracy":241,"crc":56133,"e":4} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"HOsuEJsAhwBMAEgAcgAG","tow":271510300,"crc":53282,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"HOsuEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271510300,"h_accuracy":0,"crc":6578,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"HOsuEP//","tow":271510300,"crc":54247} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":237,"states":[{"cn0":212,"mesid":{"sat":5,"code":0}},{"cn0":180,"mesid":{"sat":21,"code":0}},{"cn0":188,"mesid":{"sat":2,"code":0}},{"cn0":166,"mesid":{"sat":31,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":217,"mesid":{"sat":25,"code":0}},{"cn0":206,"mesid":{"sat":12,"code":0}},{"cn0":213,"mesid":{"sat":29,"code":0}},{"cn0":205,"mesid":{"sat":18,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":205,"mesid":{"sat":131,"code":2}},{"cn0":204,"mesid":{"sat":25,"code":1}},{"cn0":187,"mesid":{"sat":12,"code":1}},{"cn0":152,"mesid":{"sat":31,"code":1}},{"cn0":195,"mesid":{"sat":18,"code":1}},{"cn0":194,"mesid":{"sat":29,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":194,"mesid":{"sat":5,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":213,"mesid":{"sat":100,"code":3}},{"cn0":177,"mesid":{"sat":98,"code":3}},{"cn0":173,"mesid":{"sat":102,"code":3}},{"cn0":207,"mesid":{"sat":101,"code":3}},{"cn0":206,"mesid":{"sat":93,"code":3}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":182,"mesid":{"sat":106,"code":3}},{"cn0":202,"mesid":{"sat":104,"code":3}},{"cn0":170,"mesid":{"sat":98,"code":4}},{"cn0":205,"mesid":{"sat":102,"code":4}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":199,"mesid":{"sat":100,"code":4}},{"cn0":195,"mesid":{"sat":101,"code":4}},{"cn0":188,"mesid":{"sat":104,"code":4}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":176,"mesid":{"sat":106,"code":4}},{"cn0":199,"mesid":{"sat":35,"code":12}},{"cn0":168,"mesid":{"sat":26,"code":12}},{"cn0":158,"mesid":{"sat":34,"code":12}},{"cn0":188,"mesid":{"sat":24,"code":12}},{"cn0":156,"mesid":{"sat":25,"code":12}},{"cn0":184,"mesid":{"sat":12,"code":12}},{"cn0":183,"mesid":{"sat":19,"code":12}},{"cn0":190,"mesid":{"sat":22,"code":12}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":208,"mesid":{"sat":12,"code":13}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":194,"mesid":{"sat":12,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":191,"mesid":{"sat":25,"code":14}},{"cn0":188,"mesid":{"sat":11,"code":14}},{"cn0":204,"mesid":{"sat":24,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":159,"mesid":{"sat":31,"code":14}},{"cn0":152,"mesid":{"sat":33,"code":14}},{"cn0":200,"mesid":{"sat":25,"code":20}},{"cn0":215,"mesid":{"sat":24,"code":20}},{"cn0":194,"mesid":{"sat":11,"code":20}},{"cn0":173,"mesid":{"sat":31,"code":20}},{"cn0":206,"mesid":{"sat":12,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":169,"mesid":{"sat":33,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}}],"preamble":85,"sender":22963,"msg_type":97,"payload":"BQDUFQC0AgC8HwCmAAAAAAAAGQDZDADOHQDVEgDNAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwLNGQHMDAG7HwGYEgHDHQHCAAAABQHCAAAAAAAAAAAAAAAAZAPVYgOxZgOtZQPPXQPOAAAAagO2aAPKYgSqZgTNAAAAZATHZQTDaAS8AAAAagSwIwzHGgyoIgyeGAy8GQycDAy4Ewy3Fgy+AAAADA3QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADA7CAAAAGQ6/Cw68GA7MAAAAHw6fIQ6YGRTIGBTXCxTCHxStDBTOAAAAIRSpAAAA","crc":63247} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgiA6y4QAAAAAAE=","wn":2098,"tow":271510400,"crc":10586} -{"length":16,"flags":17,"ns":399999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EYDrLhDkBwMZAxg0/oPXFw==","day":25,"tow":271510400,"year":2020,"crc":41980,"minutes":24,"month":3,"seconds":52} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.543902857475118,"preamble":85,"sender":22963,"msg_type":522,"payload":"gOsuEByXw+Zl6kJAhyauG1aSXsB8Drk3PYsxwAECWwQPBg==","lat":37.83123478460604,"tow":271510400,"h_accuracy":513,"crc":22633,"lon":-122.28650562292943} -{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"gOsuEPr///8QAAAAHAAAAPEAygIPAg==","n":-6,"d":28,"tow":271510400,"h_accuracy":241,"crc":1640,"e":16} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"gOsuEJsAhwBMAEgAcgAG","tow":271510400,"crc":30285,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"gOsuEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271510400,"h_accuracy":0,"crc":59267,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"gOsuEP//","tow":271510400,"crc":5792} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":9,"l2ca_bias":0,"preamble":85,"l2p_bias":0,"sender":22963,"msg_type":117,"payload":"/wAAAAAAAAAA","l1ca_bias":0,"mask":255,"crc":49809,"l1p_bias":0} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"Mgjk6y4QAAAAAAE=","wn":2098,"tow":271510500,"crc":19856} -{"length":16,"flags":17,"ns":499999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EeTrLhDkBwMZAxg0/mTNHQ==","day":25,"tow":271510500,"year":2020,"crc":59136,"minutes":24,"month":3,"seconds":52} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.545946554528193,"preamble":85,"sender":22963,"msg_type":522,"payload":"5OsuECzki+Zl6kJAKlCxG1aSXsD+D0Unw4sxwAECWwQPBg==","lat":37.83123475866918,"tow":271510500,"h_accuracy":513,"crc":56252,"lon":-122.28650562587487} -{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"5OsuEAgAAADv////DAAAAPEAygIPAg==","n":8,"d":12,"tow":271510500,"h_accuracy":241,"crc":31107,"e":-17} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"5OsuEJsAhwBMAEgAcgAG","tow":271510500,"crc":23266,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"5OsuEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271510500,"h_accuracy":0,"crc":65333,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"5OsuEP//","tow":271510500,"crc":20249} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MghI7C4QAAAAAAE=","wn":2098,"tow":271510600,"crc":10198} -{"length":16,"flags":17,"ns":599999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EUjsLhDkBwMZAxg0/kXDIw==","day":25,"tow":271510600,"year":2020,"crc":42899,"minutes":24,"month":3,"seconds":52} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.538514121768642,"preamble":85,"sender":22963,"msg_type":522,"payload":"SOwuEFkRMOZl6kJAGoGiG1aSXsA0br0P3IkxwAECWwQPBg==","lat":37.83123471591052,"tow":271510600,"h_accuracy":513,"crc":31566,"lon":-122.28650561208306} -{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"SOwuEPj///8CAAAAzv////EAygIPAg==","n":-8,"d":-50,"tow":271510600,"h_accuracy":241,"crc":40899,"e":2} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"SOwuEJsAhwBMAEgAcgAG","tow":271510600,"crc":24341,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"SOwuEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271510600,"h_accuracy":0,"crc":57199,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"SOwuEP//","tow":271510600,"crc":49670} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"message_type":2,"length":34,"data":[87,255,0,23,255,0,31,255,255,247,255,127,255,255,127,247,255,255,224,1,229,231,85,238,110,229,112],"preamble":85,"sender":22963,"msg_type":30583,"payload":"gwLL6y4QAlf/ABf/AB////f/f///f/f//+AB5edV7m7lcA==","tow":271510475,"crc":17420,"sid":{"sat":131,"code":2}} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"Mgis7C4QAAAAAAE=","wn":2098,"tow":271510700,"crc":64686} -{"length":16,"flags":17,"ns":699999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EazsLhDkBwMZAxg0/ia5KQ==","day":25,"tow":271510700,"year":2020,"crc":23501,"minutes":24,"month":3,"seconds":52} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.53856788571422,"preamble":85,"sender":22963,"msg_type":522,"payload":"rOwuEPe9wOVl6kJARBWjG1aSXsCF0b+V34kxwAECWwQPBg==","lat":37.83123466407044,"tow":271510700,"h_accuracy":513,"crc":14273,"lon":-122.28650561262208} -{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"rOwuEAIAAAD7////JgAAAPEAygIPAg==","n":2,"d":38,"tow":271510700,"h_accuracy":241,"crc":27720,"e":-5} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"rOwuEJsAhwBMAEgAcgAG","tow":271510700,"crc":10152,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"rOwuEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271510700,"h_accuracy":0,"crc":32076,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"rOwuEP//","tow":271510700,"crc":20383} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MggQ7S4QAAAAAAE=","wn":2098,"tow":271510800,"crc":17885} -{"length":16,"flags":17,"ns":799999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"ERDtLhDkBwMZAxg0/gevLw==","day":25,"tow":271510800,"year":2020,"crc":25394,"minutes":24,"month":3,"seconds":52} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.534817718886117,"preamble":85,"sender":22963,"msg_type":522,"payload":"EO0uEF4TYeVl6kJA6TGiG1aSXsDs72PQ6YgxwAECWwQPBg==","lat":37.831234619522306,"tow":271510800,"h_accuracy":513,"crc":36081,"lon":-122.28650561179496} -{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"EO0uEAIAAAD+////+f////EAygIPAg==","n":2,"d":-7,"tow":271510800,"h_accuracy":241,"crc":17132,"e":-2} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"EO0uEJsAhwBMAEgAcgAG","tow":271510800,"crc":26546,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"EO0uEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271510800,"h_accuracy":0,"crc":15398,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"EO0uEP//","tow":271510800,"crc":5505} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":237,"states":[{"cn0":212,"mesid":{"sat":5,"code":0}},{"cn0":179,"mesid":{"sat":21,"code":0}},{"cn0":188,"mesid":{"sat":2,"code":0}},{"cn0":165,"mesid":{"sat":31,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":216,"mesid":{"sat":25,"code":0}},{"cn0":205,"mesid":{"sat":12,"code":0}},{"cn0":212,"mesid":{"sat":29,"code":0}},{"cn0":205,"mesid":{"sat":18,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":204,"mesid":{"sat":131,"code":2}},{"cn0":204,"mesid":{"sat":25,"code":1}},{"cn0":187,"mesid":{"sat":12,"code":1}},{"cn0":152,"mesid":{"sat":31,"code":1}},{"cn0":195,"mesid":{"sat":18,"code":1}},{"cn0":194,"mesid":{"sat":29,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":194,"mesid":{"sat":5,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":212,"mesid":{"sat":11,"code":3}},{"cn0":177,"mesid":{"sat":9,"code":3}},{"cn0":173,"mesid":{"sat":20,"code":3}},{"cn0":206,"mesid":{"sat":5,"code":3}},{"cn0":206,"mesid":{"sat":10,"code":3}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":181,"mesid":{"sat":4,"code":3}},{"cn0":201,"mesid":{"sat":21,"code":3}},{"cn0":170,"mesid":{"sat":9,"code":4}},{"cn0":205,"mesid":{"sat":20,"code":4}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":199,"mesid":{"sat":11,"code":4}},{"cn0":195,"mesid":{"sat":5,"code":4}},{"cn0":188,"mesid":{"sat":0,"code":4}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":176,"mesid":{"sat":4,"code":4}},{"cn0":199,"mesid":{"sat":35,"code":12}},{"cn0":168,"mesid":{"sat":26,"code":12}},{"cn0":157,"mesid":{"sat":34,"code":12}},{"cn0":188,"mesid":{"sat":24,"code":12}},{"cn0":156,"mesid":{"sat":25,"code":12}},{"cn0":184,"mesid":{"sat":12,"code":12}},{"cn0":183,"mesid":{"sat":19,"code":12}},{"cn0":190,"mesid":{"sat":22,"code":12}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":208,"mesid":{"sat":12,"code":13}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":194,"mesid":{"sat":12,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":190,"mesid":{"sat":25,"code":14}},{"cn0":188,"mesid":{"sat":11,"code":14}},{"cn0":203,"mesid":{"sat":24,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":159,"mesid":{"sat":31,"code":14}},{"cn0":152,"mesid":{"sat":33,"code":14}},{"cn0":200,"mesid":{"sat":25,"code":20}},{"cn0":215,"mesid":{"sat":24,"code":20}},{"cn0":193,"mesid":{"sat":11,"code":20}},{"cn0":173,"mesid":{"sat":31,"code":20}},{"cn0":206,"mesid":{"sat":12,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":168,"mesid":{"sat":33,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}}],"preamble":85,"sender":22963,"msg_type":97,"payload":"BQDUFQCzAgC8HwClAAAAAAAAGQDYDADNHQDUEgDNAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwLMGQHMDAG7HwGYEgHDHQHCAAAABQHCAAAAAAAAAAAAAAAACwPUCQOxFAOtBQPOCgPOAAAABAO1FQPJCQSqFATNAAAACwTHBQTDAAS8AAAABASwIwzHGgyoIgydGAy8GQycDAy4Ewy3Fgy+AAAADA3QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADA7CAAAAGQ6+Cw68GA7LAAAAHw6fIQ6YGRTIGBTXCxTBHxStDBTOAAAAIRSoAAAA","crc":34743} -{"length":136,"preamble":85,"sender":22963,"msg_type":151,"payload":"AgAaHgUALDUMAFEtFQB9GRkAbUYaAKEBHQChNx8AlQ4EAxYWBQMyIQYDTggJA18OCgNxKQsDmCUMA6oDEwMiBxQDCzEVA5UlDAyUKRMMIyAUDA8CFgxDIxgMgiMZDJ0OGgxnFR0MLAAiDI4RIwwiLQsOizIMDg88GA5sNhkOlykfDlURIQ4fDw==","crc":41336,"azel":[{"el":30,"az":26,"sid":{"sat":2,"code":0}},{"el":53,"az":44,"sid":{"sat":5,"code":0}},{"el":45,"az":81,"sid":{"sat":12,"code":0}},{"el":25,"az":125,"sid":{"sat":21,"code":0}},{"el":70,"az":109,"sid":{"sat":25,"code":0}},{"el":1,"az":161,"sid":{"sat":26,"code":0}},{"el":55,"az":161,"sid":{"sat":29,"code":0}},{"el":14,"az":149,"sid":{"sat":31,"code":0}},{"el":22,"az":22,"sid":{"sat":4,"code":3}},{"el":33,"az":50,"sid":{"sat":5,"code":3}},{"el":8,"az":78,"sid":{"sat":6,"code":3}},{"el":14,"az":95,"sid":{"sat":9,"code":3}},{"el":41,"az":113,"sid":{"sat":10,"code":3}},{"el":37,"az":152,"sid":{"sat":11,"code":3}},{"el":3,"az":170,"sid":{"sat":12,"code":3}},{"el":7,"az":34,"sid":{"sat":19,"code":3}},{"el":49,"az":11,"sid":{"sat":20,"code":3}},{"el":37,"az":149,"sid":{"sat":21,"code":3}},{"el":41,"az":148,"sid":{"sat":12,"code":12}},{"el":32,"az":35,"sid":{"sat":19,"code":12}},{"el":2,"az":15,"sid":{"sat":20,"code":12}},{"el":35,"az":67,"sid":{"sat":22,"code":12}},{"el":35,"az":130,"sid":{"sat":24,"code":12}},{"el":14,"az":157,"sid":{"sat":25,"code":12}},{"el":21,"az":103,"sid":{"sat":26,"code":12}},{"el":0,"az":44,"sid":{"sat":29,"code":12}},{"el":17,"az":142,"sid":{"sat":34,"code":12}},{"el":45,"az":34,"sid":{"sat":35,"code":12}},{"el":50,"az":139,"sid":{"sat":11,"code":14}},{"el":60,"az":15,"sid":{"sat":12,"code":14}},{"el":54,"az":108,"sid":{"sat":24,"code":14}},{"el":41,"az":151,"sid":{"sat":25,"code":14}},{"el":17,"az":85,"sid":{"sat":31,"code":14}},{"el":15,"az":31,"sid":{"sat":33,"code":14}}]} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"Mgh07S4QAAAAAAE=","wn":2098,"tow":271510900,"crc":8471} -{"length":16,"flags":17,"ns":899999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EXTtLhDkBwMZAxg0/uikNQ==","day":25,"tow":271510900,"year":2020,"crc":44060,"minutes":24,"month":3,"seconds":52} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.531019929067703,"preamble":85,"sender":22963,"msg_type":522,"payload":"dO0uEBvC7uRl6kJAZo+QG1aSXsC63gzs8IcxwAECWwQPBg==","lat":37.831234566289105,"tow":271510900,"h_accuracy":513,"crc":7911,"lon":-122.28650559537127} -{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"dO0uEPX///8IAAAACgAAAPEAygIPAg==","n":-11,"d":10,"tow":271510900,"h_accuracy":241,"crc":3700,"e":8} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"dO0uEJsAhwBMAEgAcgAG","tow":271510900,"crc":19229,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"dO0uEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271510900,"h_accuracy":0,"crc":9360,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"dO0uEP//","tow":271510900,"crc":19512} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":249,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":59,"i":110563490},"flags":15,"cn0":212,"P":1051976501,"D":{"f":5,"i":-180},"lock":15,"sid":{"sat":5,"code":0}},{"L":{"f":100,"i":121833440},"flags":15,"cn0":180,"P":1159206653,"D":{"f":218,"i":2174},"lock":15,"sid":{"sat":21,"code":0}},{"L":{"f":155,"i":123328414},"flags":15,"cn0":188,"P":1173430470,"D":{"f":125,"i":-2481},"lock":15,"sid":{"sat":2,"code":0}},{"L":{"f":245,"i":128736805},"flags":15,"cn0":165,"P":1224889993,"D":{"f":10,"i":-395},"lock":15,"sid":{"sat":31,"code":0}},{"L":{"f":146,"i":107818804},"flags":15,"cn0":217,"P":1025861738,"D":{"f":65,"i":-1124},"lock":15,"sid":{"sat":25,"code":0}},{"L":{"f":6,"i":114086885},"flags":15,"cn0":205,"P":1085500497,"D":{"f":174,"i":-2965},"lock":15,"sid":{"sat":12,"code":0}},{"L":{"f":18,"i":110766851},"flags":15,"cn0":213,"P":1053911476,"D":{"f":169,"i":1485},"lock":15,"sid":{"sat":29,"code":0}},{"L":{"f":104,"i":84014673},"flags":15,"cn0":204,"P":1025861804,"D":{"f":223,"i":-878},"lock":15,"sid":{"sat":25,"code":1}},{"L":{"f":18,"i":88898903},"flags":15,"cn0":187,"P":1085500425,"D":{"f":45,"i":-2311},"lock":15,"sid":{"sat":12,"code":1}},{"L":{"f":163,"i":100314396},"flags":15,"cn0":152,"P":1224889922,"D":{"f":166,"i":-307},"lock":15,"sid":{"sat":31,"code":1}},{"L":{"f":210,"i":86311833},"flags":15,"cn0":195,"P":1053911380,"D":{"f":154,"i":1157},"lock":15,"sid":{"sat":29,"code":1}},{"L":{"f":69,"i":86153398},"flags":15,"cn0":194,"P":1051976436,"D":{"f":252,"i":-142},"lock":15,"sid":{"sat":5,"code":1}},{"L":{"f":183,"i":112941113},"flags":15,"cn0":213,"P":1056769162,"D":{"f":133,"i":1170},"lock":15,"sid":{"sat":11,"code":3}},{"L":{"f":143,"i":123319898},"flags":15,"cn0":177,"P":1154692491,"D":{"f":17,"i":-4408},"lock":15,"sid":{"sat":9,"code":3}}],"payload":"2O0uEAAAAAAyCEA147M+ohCXBjtM/wXUDw8FAP0WGEXgB0MHZH4I2rQPDxUAxiDxRZ7XWQebT/Z9vA8PAgCJVgJJJV6sB/V1/gqlDw8fAGpoJT00L20Gkpz7QdkPDxkAUWyzQOXTzAYGa/SuzQ8PDAC0adE+AyuaBhLNBanVDw8dAKxoJT1R9gEFaJL838wPDxkBCWyzQFd9TAUS+fYtuw8PDAFCVgJJHK36BaPN/qaYDw8fAVRp0T6ZAyUF0oUEmsMPDx0B9OKzPraYIgVFcv/8wg8PBQGKBP0+OVi7BreSBIXVDw8LA4s100RatlkHj8juEbEPDwkD","header":{"n_obs":64,"t":{"ns_residual":0,"wn":2098,"tow":271511000}},"crc":3838} -{"length":249,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":205,"i":109766687},"flags":15,"cn0":173,"P":1026345861,"D":{"f":104,"i":-1210},"lock":15,"sid":{"sat":20,"code":3}},{"L":{"f":4,"i":114867392},"flags":15,"cn0":207,"P":1074415712,"D":{"f":250,"i":2200},"lock":15,"sid":{"sat":5,"code":3}},{"L":{"f":177,"i":111593761},"flags":15,"cn0":206,"P":1046734924,"D":{"f":219,"i":-3042},"lock":15,"sid":{"sat":10,"code":3}},{"L":{"f":185,"i":120434287},"flags":15,"cn0":181,"P":1124512432,"D":{"f":71,"i":-1313},"lock":15,"sid":{"sat":4,"code":3}},{"L":{"f":247,"i":113425117},"flags":15,"cn0":201,"P":1059809265,"D":{"f":154,"i":1623},"lock":15,"sid":{"sat":21,"code":3}},{"L":{"f":75,"i":95915486},"flags":15,"cn0":170,"P":1154692617,"D":{"f":33,"i":-3427},"lock":15,"sid":{"sat":9,"code":4}},{"L":{"f":61,"i":85374126},"flags":15,"cn0":205,"P":1026346228,"D":{"f":4,"i":-940},"lock":15,"sid":{"sat":20,"code":4}},{"L":{"f":197,"i":87843098},"flags":15,"cn0":199,"P":1056769431,"D":{"f":159,"i":908},"lock":15,"sid":{"sat":11,"code":4}},{"L":{"f":176,"i":89341308},"flags":15,"cn0":194,"P":1074416009,"D":{"f":189,"i":1711},"lock":15,"sid":{"sat":5,"code":4}},{"L":{"f":229,"i":93671102},"flags":15,"cn0":176,"P":1124512591,"D":{"f":139,"i":-1022},"lock":15,"sid":{"sat":4,"code":4}},{"L":{"f":197,"i":121575049},"flags":15,"cn0":199,"P":1167360217,"D":{"f":86,"i":-1499},"lock":15,"sid":{"sat":35,"code":12}},{"L":{"f":106,"i":129202096},"flags":15,"cn0":168,"P":1240595250,"D":{"f":12,"i":-3008},"lock":15,"sid":{"sat":26,"code":12}},{"L":{"f":19,"i":132953353},"flags":15,"cn0":157,"P":1276614445,"D":{"f":97,"i":2249},"lock":15,"sid":{"sat":34,"code":12}},{"L":{"f":64,"i":125147074},"flags":15,"cn0":188,"P":1201659015,"D":{"f":154,"i":-1301},"lock":15,"sid":{"sat":24,"code":12}}],"payload":"2O0uEAAAAAAyCEGFyyw9H+iKBs1G+2itDw8UA2BICkDAvNgGBJgI+s8PDwUDTOhjPiHJpgaxHvTbzg8PCgOwsgZDb64tB7nf+ke1Dw8EA/FnKz/dusIG91cGmskPDxUDCTbTRN6NtwVLnfIhqg8PCQT0zCw9rrQWBT1U/ATNDw8UBJcF/T4aYTwFxYwDn8cPDwsEiUkKQHw9UwWwrwa9wg8PBQRPswZDvk6VBeUC/IuwDw8EBNmAlEWJFj8HxSX6VscPDyMMMvvxSbB3swdqQPQMqA8PGgwtlxdMCbXsBxPJCGGdDw8iDIfcn0fCl3UHQOv6mrwPDxgM","header":{"n_obs":65,"t":{"ns_residual":0,"wn":2098,"tow":271511000}},"crc":33326} -{"length":249,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":181,"i":134676493},"flags":15,"cn0":156,"P":1293160217,"D":{"f":202,"i":1325},"lock":15,"sid":{"sat":25,"code":12}},{"L":{"f":149,"i":121105220},"flags":15,"cn0":184,"P":1162849201,"D":{"f":139,"i":1610},"lock":15,"sid":{"sat":12,"code":12}},{"L":{"f":104,"i":124514014},"flags":15,"cn0":183,"P":1195580321,"D":{"f":169,"i":-289},"lock":15,"sid":{"sat":19,"code":12}},{"L":{"f":195,"i":124712184},"flags":15,"cn0":190,"P":1197483154,"D":{"f":216,"i":2387},"lock":15,"sid":{"sat":22,"code":12}},{"L":{"f":39,"i":93646247},"flags":15,"cn0":208,"P":1162849130,"D":{"f":137,"i":1245},"lock":15,"sid":{"sat":12,"code":13}},{"L":{"f":167,"i":116422814},"flags":15,"cn0":194,"P":1107726219,"D":{"f":23,"i":-1027},"lock":15,"sid":{"sat":12,"code":14}},{"L":{"f":133,"i":132478298},"flags":15,"cn0":191,"P":1260489027,"D":{"f":68,"i":1090},"lock":15,"sid":{"sat":25,"code":14}},{"L":{"f":187,"i":125425884},"flags":15,"cn0":188,"P":1193387565,"D":{"f":25,"i":1047},"lock":15,"sid":{"sat":11,"code":14}},{"L":{"f":93,"i":118408442},"flags":15,"cn0":204,"P":1126618741,"D":{"f":65,"i":-1743},"lock":15,"sid":{"sat":24,"code":14}},{"L":{"f":250,"i":143311474},"flags":15,"cn0":159,"P":1363563346,"D":{"f":37,"i":-3174},"lock":15,"sid":{"sat":31,"code":14}},{"L":{"f":168,"i":144517483},"flags":15,"cn0":152,"P":1375038127,"D":{"f":123,"i":-2141},"lock":15,"sid":{"sat":33,"code":14}},{"L":{"f":4,"i":101509344},"flags":15,"cn0":200,"P":1260488996,"D":{"f":30,"i":835},"lock":15,"sid":{"sat":25,"code":20}},{"L":{"f":77,"i":90728610},"flags":15,"cn0":215,"P":1126619283,"D":{"f":63,"i":-1336},"lock":15,"sid":{"sat":24,"code":20}},{"L":{"f":221,"i":96105525},"flags":15,"cn0":193,"P":1193387368,"D":{"f":254,"i":803},"lock":15,"sid":{"sat":11,"code":20}}],"payload":"2O0uEAAAAAAyCEIZDxRNDQAHCLUtBcqcDw8ZDLGrT0VE6zcHlUoGi7gPDwwMoRtDR97uawdo3/6ptw8PEwySJGBH+PRuB8NTCdi+Dw8WDGqrT0Wn7ZQFJ90EidAPDwwNi48GQp548Aan/fsXwg8PDA5DiSFLWnXlB4VCBES/Dw8ZDi2mIUfc2HkHuxcEGbwPDwsOddYmQ/rEDgddMflBzA8PGA5SU0ZRcsKKCPqa8yWfDw8fDq9q9VFrKZ0IqKP3e5gPDyEOJIkhS+DoDAYEQwMeyA8PGRST2CZDomhoBU3I+j/XDw8YFGilIUc1dLoF3SMD/sEPDwsU","header":{"n_obs":66,"t":{"ns_residual":0,"wn":2098,"tow":271511000}},"crc":21082} -{"length":62,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":190,"i":109810132},"flags":15,"cn0":173,"P":1363563399,"D":{"f":36,"i":-2432},"lock":15,"sid":{"sat":31,"code":20}},{"L":{"f":89,"i":89207122},"flags":15,"cn0":206,"P":1107726068,"D":{"f":202,"i":-787},"lock":15,"sid":{"sat":12,"code":20}},{"L":{"f":67,"i":110734246},"flags":15,"cn0":169,"P":1375038085,"D":{"f":73,"i":-1642},"lock":15,"sid":{"sat":33,"code":20}}],"payload":"2O0uEAAAAAAyCEOHU0ZR1JGLBr6A9iStDw8fFPSOBkJSMVEFWe38ys4PDwwUhWr1UaarmQZDlvlJqQ8PIRQ=","header":{"n_obs":67,"t":{"ns_residual":0,"wn":2098,"tow":271511000}},"crc":14455} -{"length":9,"l2ca_bias":0,"preamble":85,"l2p_bias":0,"sender":22963,"msg_type":117,"payload":"/wAAAAAAAAAA","l1ca_bias":0,"mask":255,"crc":49809,"l1p_bias":0} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgjY7S4QAAAAAAE=","wn":2098,"tow":271511000,"crc":35913} -{"length":16,"flags":17,"ns":999999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EdjtLhDkBwMZAxg0/smaOw==","day":25,"tow":271511000,"year":2020,"crc":44879,"minutes":24,"month":3,"seconds":52} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.53023923294896,"preamble":85,"sender":22963,"msg_type":522,"payload":"2O0uEOgsiORl6kJAT2aPG1aSXsBpkiTCvYcxwAECWwQPBg==","lat":37.83123451852026,"tow":271511000,"h_accuracy":513,"crc":11783,"lon":-122.28650559429046} -{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"2O0uEAAAAAD8////AgAAAPEAygIPAg==","n":0,"d":2,"tow":271511000,"h_accuracy":241,"crc":2099,"e":-4} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"2O0uEJsAhwBMAEgAcgAG","tow":271511000,"crc":16108,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"2O0uEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271511000,"h_accuracy":0,"crc":3402,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"2O0uEP//","tow":271511000,"crc":42739} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":4,"flags":2147616000,"preamble":85,"sender":22963,"msg_type":65535,"payload":"AAUCgA==","crc":40942} -{"length":24,"z":3890655.0240602265,"preamble":85,"sender":22963,"msg_type":72,"payload":"UO0a3iqORMHK1UJhIkRQwc9nFIPvrk1B","crc":2168,"x":-2694229.735196747,"y":-4264073.519704292} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"Mgg87i4QAAAAAAE=","wn":2098,"tow":271511100,"crc":40772} -{"length":16,"flags":17,"ns":99999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"ETzuLhDkBwMZAxg1/uD1BQ==","day":25,"tow":271511100,"year":2020,"crc":9438,"minutes":24,"month":3,"seconds":53} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.52643771504168,"preamble":85,"sender":22963,"msg_type":522,"payload":"PO4uEFLOJORl6kJA1dyAG1aSXsAofEGfxIYxwAECWwQPBg==","lat":37.83123447224774,"tow":271511100,"h_accuracy":513,"crc":10589,"lon":-122.28650558075181} -{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"PO4uEAAAAAALAAAAAgAAAPEAygIPAg==","n":0,"d":2,"tow":271511100,"h_accuracy":241,"crc":723,"e":11} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"PO4uEJsAhwBMAEgAcgAG","tow":271511100,"crc":52210,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"PO4uEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271511100,"h_accuracy":0,"crc":49490,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"PO4uEP//","tow":271511100,"crc":50616} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"Mgig7i4QAAAAAAE=","wn":2098,"tow":271511200,"crc":50712} -{"length":16,"flags":17,"ns":199999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EaDuLhDkBwMZAxg1/sHrCw==","day":25,"tow":271511200,"year":2020,"crc":62197,"minutes":24,"month":3,"seconds":53} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.525190920417522,"preamble":85,"sender":22963,"msg_type":522,"payload":"oO4uEDeA0eNl6kJA42mCG1aSXsByWYPpcoYxwAECWwQPBg==","lat":37.83123443345578,"tow":271511200,"h_accuracy":513,"crc":33361,"lon":-122.28650558219628} -{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"oO4uEAAAAAD5//////////EAygIPAg==","n":0,"d":-1,"tow":271511200,"h_accuracy":241,"crc":45651,"e":-7} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"oO4uEJsAhwBMAEgAcgAG","tow":271511200,"crc":28061,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"oO4uEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271511200,"h_accuracy":0,"crc":16227,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"oO4uEP//","tow":271511200,"crc":255} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MggE7y4QAAAAAAE=","wn":2098,"tow":271511300,"crc":1386} -{"length":16,"flags":17,"ns":299999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EQTvLhDkBwMZAxg1/qLhEQ==","day":25,"tow":271511300,"year":2020,"crc":17835,"minutes":24,"month":3,"seconds":53} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.527216157224487,"preamble":85,"sender":22963,"msg_type":522,"payload":"BO8uEJmEhuNl6kJAOMWJG1aSXsC0M1mj94YxwAECWwQPBg==","lat":37.83123439853916,"tow":271511300,"h_accuracy":513,"crc":59145,"lon":-122.2865055890478} -{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"BO8uEPj////x////9v////EAygIPAg==","n":-8,"d":-10,"tow":271511300,"h_accuracy":241,"crc":461,"e":-15} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"BO8uEJsAhwBMAEgAcgAG","tow":271511300,"crc":17480,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"BO8uEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271511300,"h_accuracy":0,"crc":40428,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"BO8uEP//","tow":271511300,"crc":19751} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":237,"states":[{"cn0":213,"mesid":{"sat":5,"code":0}},{"cn0":180,"mesid":{"sat":21,"code":0}},{"cn0":188,"mesid":{"sat":2,"code":0}},{"cn0":166,"mesid":{"sat":31,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":217,"mesid":{"sat":25,"code":0}},{"cn0":206,"mesid":{"sat":12,"code":0}},{"cn0":213,"mesid":{"sat":29,"code":0}},{"cn0":205,"mesid":{"sat":18,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":204,"mesid":{"sat":131,"code":2}},{"cn0":205,"mesid":{"sat":25,"code":1}},{"cn0":187,"mesid":{"sat":12,"code":1}},{"cn0":152,"mesid":{"sat":31,"code":1}},{"cn0":196,"mesid":{"sat":18,"code":1}},{"cn0":195,"mesid":{"sat":29,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":194,"mesid":{"sat":5,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":213,"mesid":{"sat":100,"code":3}},{"cn0":177,"mesid":{"sat":98,"code":3}},{"cn0":173,"mesid":{"sat":102,"code":3}},{"cn0":207,"mesid":{"sat":101,"code":3}},{"cn0":206,"mesid":{"sat":93,"code":3}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":181,"mesid":{"sat":106,"code":3}},{"cn0":201,"mesid":{"sat":104,"code":3}},{"cn0":171,"mesid":{"sat":98,"code":4}},{"cn0":205,"mesid":{"sat":102,"code":4}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":199,"mesid":{"sat":100,"code":4}},{"cn0":195,"mesid":{"sat":101,"code":4}},{"cn0":188,"mesid":{"sat":104,"code":4}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":175,"mesid":{"sat":106,"code":4}},{"cn0":199,"mesid":{"sat":35,"code":12}},{"cn0":168,"mesid":{"sat":26,"code":12}},{"cn0":158,"mesid":{"sat":34,"code":12}},{"cn0":188,"mesid":{"sat":24,"code":12}},{"cn0":156,"mesid":{"sat":25,"code":12}},{"cn0":184,"mesid":{"sat":12,"code":12}},{"cn0":183,"mesid":{"sat":19,"code":12}},{"cn0":190,"mesid":{"sat":22,"code":12}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":207,"mesid":{"sat":12,"code":13}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":195,"mesid":{"sat":12,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":191,"mesid":{"sat":25,"code":14}},{"cn0":188,"mesid":{"sat":11,"code":14}},{"cn0":204,"mesid":{"sat":24,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":159,"mesid":{"sat":31,"code":14}},{"cn0":153,"mesid":{"sat":33,"code":14}},{"cn0":200,"mesid":{"sat":25,"code":20}},{"cn0":215,"mesid":{"sat":24,"code":20}},{"cn0":193,"mesid":{"sat":11,"code":20}},{"cn0":173,"mesid":{"sat":31,"code":20}},{"cn0":207,"mesid":{"sat":12,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":169,"mesid":{"sat":33,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}}],"preamble":85,"sender":22963,"msg_type":97,"payload":"BQDVFQC0AgC8HwCmAAAAAAAAGQDZDADOHQDVEgDNAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwLMGQHNDAG7HwGYEgHEHQHDAAAABQHCAAAAAAAAAAAAAAAAZAPVYgOxZgOtZQPPXQPOAAAAagO1aAPJYgSrZgTNAAAAZATHZQTDaAS8AAAAagSvIwzHGgyoIgyeGAy8GQycDAy4Ewy3Fgy+AAAADA3PAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADA7DAAAAGQ6/Cw68GA7MAAAAHw6fIQ6ZGRTIGBTXCxTBHxStDBTPAAAAIRSpAAAA","crc":56052} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"Mgho7y4QAAAAAAE=","wn":2098,"tow":271511400,"crc":18527} -{"length":16,"flags":17,"ns":399999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EWjvLhDkBwMZAxg1/oPXFw==","day":25,"tow":271511400,"year":2020,"crc":12354,"minutes":24,"month":3,"seconds":53} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.528444599602352,"preamble":85,"sender":22963,"msg_type":522,"payload":"aO8uEPqGMeNl6kJApqVsG1aSXsA4CjElSIcxwAECWwQPBg==","lat":37.83123435896228,"tow":271511400,"h_accuracy":513,"crc":44591,"lon":-122.2865055619246} -{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"aO8uEPP///8HAAAAFQAAAPEAygIPAg==","n":-13,"d":21,"tow":271511400,"h_accuracy":241,"crc":43187,"e":7} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"aO8uEJsAhwBMAEgAcgAG","tow":271511400,"crc":20386,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"aO8uEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271511400,"h_accuracy":0,"crc":56313,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"aO8uEP//","tow":271511400,"crc":6620} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":9,"l2ca_bias":0,"preamble":85,"l2p_bias":0,"sender":22963,"msg_type":117,"payload":"/wAAAAAAAAAA","l1ca_bias":0,"mask":255,"crc":49809,"l1p_bias":0} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgjM7y4QAAAAAAE=","wn":2098,"tow":271511500,"crc":52478} -{"length":16,"flags":17,"ns":499999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EczvLhDkBwMZAxg1/mTNHQ==","day":25,"tow":271511500,"year":2020,"crc":2725,"minutes":24,"month":3,"seconds":53} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.527831057915524,"preamble":85,"sender":22963,"msg_type":522,"payload":"zO8uEOWAEeNl6kJAkY9oG1aSXsBtj6vvH4cxwAECWwQPBg==","lat":37.83123434405005,"tow":271511500,"h_accuracy":513,"crc":38829,"lon":-122.28650555811898} -{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"zO8uEAcAAAABAAAA/f////EAygIPAg==","n":7,"d":-3,"tow":271511500,"h_accuracy":241,"crc":21114,"e":1} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"zO8uEJsAhwBMAEgAcgAG","tow":271511500,"crc":7446,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"zO8uEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271511500,"h_accuracy":0,"crc":44160,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"zO8uEP//","tow":271511500,"crc":65109} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"Mggw8C4QAAAAAAE=","wn":2098,"tow":271511600,"crc":35313} -{"length":16,"flags":17,"ns":599999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"ETDwLhDkBwMZAxg1/kXDIw==","day":25,"tow":271511600,"year":2020,"crc":809,"minutes":24,"month":3,"seconds":53} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.523532228366516,"preamble":85,"sender":22963,"msg_type":522,"payload":"MPAuELQi0OJl6kJAzSpqG1aSXsB3PEc1BoYxwAECWwQPBg==","lat":37.831234313610736,"tow":271511600,"h_accuracy":513,"crc":8380,"lon":-122.28650555961504} -{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"MPAuEAAAAAADAAAABQAAAPEAygIPAg==","n":0,"d":5,"tow":271511600,"h_accuracy":241,"crc":37229,"e":3} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"MPAuEJsAhwBMAEgAcgAG","tow":271511600,"crc":20990,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"MPAuEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271511600,"h_accuracy":0,"crc":42365,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"MPAuEP//","tow":271511600,"crc":1449} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgiU8C4QAAAAAAE=","wn":2098,"tow":271511700,"crc":3408} -{"length":16,"flags":17,"ns":699999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EZTwLhDkBwMZAxg1/ia5KQ==","day":25,"tow":271511700,"year":2020,"crc":54654,"minutes":24,"month":3,"seconds":53} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.517011238403345,"preamble":85,"sender":22963,"msg_type":522,"payload":"lPAuEFmRpeJl6kJABWVpG1aSXsBZmzjZWoQxwAECWwQPBg==","lat":37.83123429378856,"tow":271511700,"h_accuracy":513,"crc":60977,"lon":-122.28650555889551} -{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"lPAuEAEAAAAFAAAABAAAAPEAygIPAg==","n":1,"d":4,"tow":271511700,"h_accuracy":241,"crc":29191,"e":5} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"lPAuEJsAhwBMAEgAcgAG","tow":271511700,"crc":842,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"lPAuEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271511700,"h_accuracy":0,"crc":53764,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"lPAuEP//","tow":271511700,"crc":57888} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"message_type":28,"length":34,"data":[76,47,106,45,172,32,69,139,103,111,218,145,4,70,150,107,74,24,16,8,4,143,122,227,253,137,48],"preamble":85,"sender":22963,"msg_type":30583,"payload":"gwLD7y4QHEwvai2sIEWLZ2/akQRGlmtKGBAIBI964/2JMA==","tow":271511491,"crc":274,"sid":{"sat":131,"code":2}} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"Mgj48C4QAAAAAAE=","wn":2098,"tow":271511800,"crc":16485} -{"length":16,"flags":17,"ns":799999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EfjwLhDkBwMZAxg1/gevLw==","day":25,"tow":271511800,"year":2020,"crc":42609,"minutes":24,"month":3,"seconds":53} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.513193863228352,"preamble":85,"sender":22963,"msg_type":522,"payload":"+PAuEIv8a+Jl6kJA7cZ1G1aSXsDcEkusYIMxwAECWwQPBg==","lat":37.831234266975194,"tow":271511800,"h_accuracy":513,"crc":9943,"lon":-122.28650557042756} -{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"+PAuEPf///8AAAAAAAAAAPEAygIPAg==","n":-9,"d":0,"tow":271511800,"h_accuracy":241,"crc":12572,"e":0} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"+PAuEJsAhwBMAEgAcgAG","tow":271511800,"crc":2208,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"+PAuEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271511800,"h_accuracy":0,"crc":37905,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"+PAuEP//","tow":271511800,"crc":46811} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":237,"states":[{"cn0":214,"mesid":{"sat":5,"code":0}},{"cn0":181,"mesid":{"sat":21,"code":0}},{"cn0":189,"mesid":{"sat":2,"code":0}},{"cn0":167,"mesid":{"sat":31,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":218,"mesid":{"sat":25,"code":0}},{"cn0":207,"mesid":{"sat":12,"code":0}},{"cn0":214,"mesid":{"sat":29,"code":0}},{"cn0":206,"mesid":{"sat":18,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":205,"mesid":{"sat":131,"code":2}},{"cn0":205,"mesid":{"sat":25,"code":1}},{"cn0":188,"mesid":{"sat":12,"code":1}},{"cn0":153,"mesid":{"sat":31,"code":1}},{"cn0":196,"mesid":{"sat":18,"code":1}},{"cn0":196,"mesid":{"sat":29,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":195,"mesid":{"sat":5,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":213,"mesid":{"sat":11,"code":3}},{"cn0":178,"mesid":{"sat":9,"code":3}},{"cn0":173,"mesid":{"sat":20,"code":3}},{"cn0":207,"mesid":{"sat":5,"code":3}},{"cn0":207,"mesid":{"sat":10,"code":3}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":182,"mesid":{"sat":4,"code":3}},{"cn0":202,"mesid":{"sat":21,"code":3}},{"cn0":171,"mesid":{"sat":9,"code":4}},{"cn0":205,"mesid":{"sat":20,"code":4}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":199,"mesid":{"sat":11,"code":4}},{"cn0":195,"mesid":{"sat":5,"code":4}},{"cn0":188,"mesid":{"sat":0,"code":4}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":176,"mesid":{"sat":4,"code":4}},{"cn0":199,"mesid":{"sat":35,"code":12}},{"cn0":169,"mesid":{"sat":26,"code":12}},{"cn0":158,"mesid":{"sat":34,"code":12}},{"cn0":188,"mesid":{"sat":24,"code":12}},{"cn0":156,"mesid":{"sat":25,"code":12}},{"cn0":185,"mesid":{"sat":12,"code":12}},{"cn0":183,"mesid":{"sat":19,"code":12}},{"cn0":190,"mesid":{"sat":22,"code":12}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":207,"mesid":{"sat":12,"code":13}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":195,"mesid":{"sat":12,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":192,"mesid":{"sat":25,"code":14}},{"cn0":189,"mesid":{"sat":11,"code":14}},{"cn0":205,"mesid":{"sat":24,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":160,"mesid":{"sat":31,"code":14}},{"cn0":153,"mesid":{"sat":33,"code":14}},{"cn0":200,"mesid":{"sat":25,"code":20}},{"cn0":215,"mesid":{"sat":24,"code":20}},{"cn0":194,"mesid":{"sat":11,"code":20}},{"cn0":173,"mesid":{"sat":31,"code":20}},{"cn0":206,"mesid":{"sat":12,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":169,"mesid":{"sat":33,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}}],"preamble":85,"sender":22963,"msg_type":97,"payload":"BQDWFQC1AgC9HwCnAAAAAAAAGQDaDADPHQDWEgDOAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwLNGQHNDAG8HwGZEgHEHQHEAAAABQHDAAAAAAAAAAAAAAAACwPVCQOyFAOtBQPPCgPPAAAABAO2FQPKCQSrFATNAAAACwTHBQTDAAS8AAAABASwIwzHGgypIgyeGAy8GQycDAy5Ewy3Fgy+AAAADA3PAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADA7DAAAAGQ7ACw69GA7NAAAAHw6gIQ6ZGRTIGBTXCxTCHxStDBTOAAAAIRSpAAAA","crc":31893} -{"length":136,"preamble":85,"sender":22963,"msg_type":151,"payload":"AgAaHgUALDUMAFEtFQB9GRkAbUYaAKEBHQChNx8AlQ4EAxYWBQMyIQYDTggJA18OCgNxKQsDmCUMA6oDEwMiBxQDCzEVA5UlDAyUKRMMIyAUDA8CFgxDIxgMgiMZDJ0OGgxnFR0MLAAiDI4RIwwiLQsOizIMDg88GA5sNhkOlykfDlURIQ4fDw==","crc":41336,"azel":[{"el":30,"az":26,"sid":{"sat":2,"code":0}},{"el":53,"az":44,"sid":{"sat":5,"code":0}},{"el":45,"az":81,"sid":{"sat":12,"code":0}},{"el":25,"az":125,"sid":{"sat":21,"code":0}},{"el":70,"az":109,"sid":{"sat":25,"code":0}},{"el":1,"az":161,"sid":{"sat":26,"code":0}},{"el":55,"az":161,"sid":{"sat":29,"code":0}},{"el":14,"az":149,"sid":{"sat":31,"code":0}},{"el":22,"az":22,"sid":{"sat":4,"code":3}},{"el":33,"az":50,"sid":{"sat":5,"code":3}},{"el":8,"az":78,"sid":{"sat":6,"code":3}},{"el":14,"az":95,"sid":{"sat":9,"code":3}},{"el":41,"az":113,"sid":{"sat":10,"code":3}},{"el":37,"az":152,"sid":{"sat":11,"code":3}},{"el":3,"az":170,"sid":{"sat":12,"code":3}},{"el":7,"az":34,"sid":{"sat":19,"code":3}},{"el":49,"az":11,"sid":{"sat":20,"code":3}},{"el":37,"az":149,"sid":{"sat":21,"code":3}},{"el":41,"az":148,"sid":{"sat":12,"code":12}},{"el":32,"az":35,"sid":{"sat":19,"code":12}},{"el":2,"az":15,"sid":{"sat":20,"code":12}},{"el":35,"az":67,"sid":{"sat":22,"code":12}},{"el":35,"az":130,"sid":{"sat":24,"code":12}},{"el":14,"az":157,"sid":{"sat":25,"code":12}},{"el":21,"az":103,"sid":{"sat":26,"code":12}},{"el":0,"az":44,"sid":{"sat":29,"code":12}},{"el":17,"az":142,"sid":{"sat":34,"code":12}},{"el":45,"az":34,"sid":{"sat":35,"code":12}},{"el":50,"az":139,"sid":{"sat":11,"code":14}},{"el":60,"az":15,"sid":{"sat":12,"code":14}},{"el":54,"az":108,"sid":{"sat":24,"code":14}},{"el":41,"az":151,"sid":{"sat":25,"code":14}},{"el":17,"az":85,"sid":{"sat":31,"code":14}},{"el":15,"az":31,"sid":{"sat":33,"code":14}}]} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"Mghc8S4QAAAAAAE=","wn":2098,"tow":271511900,"crc":33559} -{"length":16,"flags":17,"ns":899999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EVzxLhDkBwMZAxg1/uikNQ==","day":25,"tow":271511900,"year":2020,"crc":27685,"minutes":24,"month":3,"seconds":53} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.509124888950268,"preamble":85,"sender":22963,"msg_type":522,"payload":"XPEuEGZ1P+Jl6kJAS1+OG1aSXsD8njsCVoIxwAECWwQPBg==","lat":37.83123424624027,"tow":271511900,"h_accuracy":513,"crc":48206,"lon":-122.28650559333362} -{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"XPEuEPj////9////9/////EAygIPAg==","n":-8,"d":-9,"tow":271511900,"h_accuracy":241,"crc":54068,"e":-3} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"XPEuEJsAhwBMAEgAcgAG","tow":271511900,"crc":8565,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"XPEuEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271511900,"h_accuracy":0,"crc":13982,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"XPEuEP//","tow":271511900,"crc":64259} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":249,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":241,"i":110563669},"flags":15,"cn0":214,"P":1051978216,"D":{"f":190,"i":-180},"lock":15,"sid":{"sat":5,"code":0}},{"L":{"f":10,"i":121831265},"flags":15,"cn0":181,"P":1159185965,"D":{"f":183,"i":2176},"lock":15,"sid":{"sat":21,"code":0}},{"L":{"f":223,"i":123330892},"flags":15,"cn0":189,"P":1173454052,"D":{"f":68,"i":-2479},"lock":15,"sid":{"sat":2,"code":0}},{"L":{"f":146,"i":128737198},"flags":15,"cn0":167,"P":1224893721,"D":{"f":12,"i":-393},"lock":15,"sid":{"sat":31,"code":0}},{"L":{"f":55,"i":107819928},"flags":15,"cn0":218,"P":1025872426,"D":{"f":245,"i":-1124},"lock":15,"sid":{"sat":25,"code":0}},{"L":{"f":7,"i":114089850},"flags":15,"cn0":207,"P":1085528720,"D":{"f":180,"i":-2966},"lock":15,"sid":{"sat":12,"code":0}},{"L":{"f":73,"i":110765365},"flags":15,"cn0":214,"P":1053897340,"D":{"f":223,"i":1485},"lock":15,"sid":{"sat":29,"code":0}},{"L":{"f":249,"i":84015548},"flags":15,"cn0":205,"P":1025872499,"D":{"f":207,"i":-877},"lock":15,"sid":{"sat":25,"code":1}},{"L":{"f":120,"i":88901213},"flags":15,"cn0":188,"P":1085528655,"D":{"f":238,"i":-2311},"lock":15,"sid":{"sat":12,"code":1}},{"L":{"f":159,"i":100314702},"flags":15,"cn0":153,"P":1224893644,"D":{"f":181,"i":-307},"lock":15,"sid":{"sat":31,"code":1}},{"L":{"f":15,"i":86310676},"flags":15,"cn0":196,"P":1053897240,"D":{"f":27,"i":1159},"lock":15,"sid":{"sat":29,"code":1}},{"L":{"f":78,"i":86153538},"flags":15,"cn0":195,"P":1051978145,"D":{"f":187,"i":-142},"lock":15,"sid":{"sat":5,"code":1}},{"L":{"f":111,"i":112939943},"flags":15,"cn0":213,"P":1056758205,"D":{"f":20,"i":1170},"lock":15,"sid":{"sat":11,"code":3}},{"L":{"f":29,"i":123324305},"flags":15,"cn0":178,"P":1154733782,"D":{"f":244,"i":-4407},"lock":15,"sid":{"sat":9,"code":3}}],"payload":"wPEuEAAAAAAyCEDo6bM+VRGXBvFM/77WDw8FAC3GF0Vh/0IHCoAIt7UPDxUA5HzxRUzhWQffUfZEvQ8PAgAZZQJJrl+sB5J3/gynDw8fACqSJT2YM20GN5z79doPDxkAkNqzQHrfzAYHavS0zw8PDAB8MtE+NSWaBknNBd/WDw8dAHOSJT28+QEF+ZP8z80PDxkBT9qzQF2GTAV4+fbuvA8PDAHMZAJJTq76BZ/N/rWZDw8fARgy0T4U/yQFD4cEG8QPDx0BoemzPkKZIgVOcv+7ww8PBQG92fw+p1O7Bm+SBBTVDw8LA9bW00SRx1kHHcnu9LIPDwkD","header":{"n_obs":64,"t":{"ns_residual":0,"wn":2098,"tow":271512000}},"crc":18810} -{"length":249,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":127,"i":109767896},"flags":15,"cn0":173,"P":1026357193,"D":{"f":170,"i":-1209},"lock":15,"sid":{"sat":20,"code":3}},{"L":{"f":103,"i":114865190},"flags":15,"cn0":207,"P":1074395130,"D":{"f":139,"i":2201},"lock":15,"sid":{"sat":5,"code":3}},{"L":{"f":142,"i":111596802},"flags":15,"cn0":207,"P":1046763463,"D":{"f":196,"i":-3043},"lock":15,"sid":{"sat":10,"code":3}},{"L":{"f":181,"i":120435599},"flags":15,"cn0":182,"P":1124524654,"D":{"f":56,"i":-1312},"lock":15,"sid":{"sat":4,"code":3}},{"L":{"f":186,"i":113423493},"flags":15,"cn0":202,"P":1059794098,"D":{"f":161,"i":1624},"lock":15,"sid":{"sat":21,"code":3}},{"L":{"f":160,"i":95918913},"flags":15,"cn0":170,"P":1154733894,"D":{"f":226,"i":-3428},"lock":15,"sid":{"sat":9,"code":4}},{"L":{"f":85,"i":85375066},"flags":15,"cn0":205,"P":1026357552,"D":{"f":131,"i":-941},"lock":15,"sid":{"sat":20,"code":4}},{"L":{"f":144,"i":87842188},"flags":15,"cn0":199,"P":1056758480,"D":{"f":30,"i":910},"lock":15,"sid":{"sat":11,"code":4}},{"L":{"f":82,"i":89339596},"flags":15,"cn0":195,"P":1074395436,"D":{"f":121,"i":1711},"lock":15,"sid":{"sat":5,"code":4}},{"L":{"f":84,"i":93672123},"flags":15,"cn0":176,"P":1124524887,"D":{"f":93,"i":-1019},"lock":15,"sid":{"sat":4,"code":4}},{"L":{"f":203,"i":121576547},"flags":15,"cn0":199,"P":1167374601,"D":{"f":26,"i":-1498},"lock":15,"sid":{"sat":35,"code":12}},{"L":{"f":110,"i":129205103},"flags":15,"cn0":169,"P":1240624133,"D":{"f":93,"i":-3007},"lock":15,"sid":{"sat":26,"code":12}},{"L":{"f":193,"i":132951103},"flags":15,"cn0":158,"P":1276592834,"D":{"f":97,"i":2250},"lock":15,"sid":{"sat":34,"code":12}},{"L":{"f":50,"i":125148374},"flags":15,"cn0":188,"P":1201671490,"D":{"f":71,"i":-1301},"lock":15,"sid":{"sat":24,"code":12}}],"payload":"wPEuEAAAAAAyCEHJ9yw92OyKBn9H+6qtDw8UA/r3CUAmtNgGZ5kIi88PDwUDx1dkPgLVpgaOHfTEzw8PCgNu4gZDj7MtB7Xg+ji2Dw8EA7IsKz+FtMIGulgGocoPDxUDRtfTREGbtwWgnPLiqg8PCQQw+Sw9WrgWBVVT/IPNDw8UBNDa/D6MXTwFkI4DHscPDwsELPkJQMw2UwVSrwZ5ww8PBQRX4wZDu1KVBVQF/F2wDw8EBAm5lEVjHD8Hyyb6GscPDyMMBWzySW+DswduQfRdqQ8PGgzCQhdMP6zsB8HKCGGeDw8iDEINoEfWnHUHMuv6R7wPDxgM","header":{"n_obs":65,"t":{"ns_residual":0,"wn":2098,"tow":271512000}},"crc":55295} -{"length":249,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":64,"i":134675166},"flags":15,"cn0":156,"P":1293147459,"D":{"f":244,"i":1326},"lock":15,"sid":{"sat":25,"code":12}},{"L":{"f":180,"i":121103607},"flags":15,"cn0":184,"P":1162833717,"D":{"f":86,"i":1613},"lock":15,"sid":{"sat":12,"code":12}},{"L":{"f":1,"i":124514301},"flags":15,"cn0":183,"P":1195583070,"D":{"f":102,"i":-287},"lock":15,"sid":{"sat":19,"code":12}},{"L":{"f":77,"i":124709795},"flags":15,"cn0":190,"P":1197460207,"D":{"f":60,"i":2390},"lock":15,"sid":{"sat":22,"code":12}},{"L":{"f":249,"i":93644999},"flags":15,"cn0":207,"P":1162833642,"D":{"f":160,"i":1247},"lock":15,"sid":{"sat":12,"code":13}},{"L":{"f":107,"i":116423840},"flags":15,"cn0":195,"P":1107735988,"D":{"f":250,"i":-1027},"lock":15,"sid":{"sat":12,"code":14}},{"L":{"f":242,"i":132477207},"flags":15,"cn0":192,"P":1260478650,"D":{"f":215,"i":1089},"lock":15,"sid":{"sat":25,"code":14}},{"L":{"f":22,"i":125424836},"flags":15,"cn0":189,"P":1193377588,"D":{"f":153,"i":1049},"lock":15,"sid":{"sat":11,"code":14}},{"L":{"f":101,"i":118410184},"flags":15,"cn0":205,"P":1126635315,"D":{"f":193,"i":-1743},"lock":15,"sid":{"sat":24,"code":14}},{"L":{"f":128,"i":143314646},"flags":15,"cn0":160,"P":1363593505,"D":{"f":210,"i":-3175},"lock":15,"sid":{"sat":31,"code":14}},{"L":{"f":13,"i":144519624},"flags":15,"cn0":153,"P":1375058500,"D":{"f":109,"i":-2139},"lock":15,"sid":{"sat":33,"code":14}},{"L":{"f":100,"i":101508508},"flags":15,"cn0":200,"P":1260478619,"D":{"f":167,"i":835},"lock":15,"sid":{"sat":25,"code":20}},{"L":{"f":28,"i":90729945},"flags":15,"cn0":215,"P":1126635857,"D":{"f":198,"i":-1336},"lock":15,"sid":{"sat":24,"code":20}},{"L":{"f":91,"i":96104722},"flags":15,"cn0":193,"P":1193377389,"D":{"f":76,"i":802},"lock":15,"sid":{"sat":11,"code":20}}],"payload":"wPEuEAAAAAAyCEJD3RNN3voGCEAuBfScDw8ZDDVvT0X35DcHtE0GVrgPDwwMXiZDR/3vawcB4f5mtw8PEwzvyl9Ho+tuB01WCTy+Dw8WDOpuT0XH6JQF+d8EoM8PDwwNtLUGQqB88AZr/fv6ww8PDA66YCFLF3HlB/JBBNfADw8ZDjR/IUfE1HkHFhkEmb0PDwsOMxcnQ8jLDgdlMfnBzQ8PGA4hyUZR1s6KCICZ89KgDw8fDkS69VHIMZ0IDaX3bZkPDyEOm2AhS5zlDAZkQwOnyA8PGRRRGSdD2W1oBRzI+sbXDw8YFG1+IUcScboFWyIDTMEPDwsU","header":{"n_obs":66,"t":{"ns_residual":0,"wn":2098,"tow":271512000}},"crc":41497} -{"length":62,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":222,"i":109812562},"flags":15,"cn0":172,"P":1363593579,"D":{"f":178,"i":-2429},"lock":15,"sid":{"sat":31,"code":20}},{"L":{"f":83,"i":89207908},"flags":15,"cn0":206,"P":1107735826,"D":{"f":142,"i":-786},"lock":15,"sid":{"sat":12,"code":20}},{"L":{"f":84,"i":110735886},"flags":15,"cn0":169,"P":1375058449,"D":{"f":200,"i":-1640},"lock":15,"sid":{"sat":33,"code":20}}],"payload":"wPEuEAAAAAAyCENryUZRUpuLBt6D9rKsDw8fFBK1BkJkNFEFU+78js4PDwwUEbr1UQ6ymQZUmPnIqQ8PIRQ=","header":{"n_obs":67,"t":{"ns_residual":0,"wn":2098,"tow":271512000}},"crc":56651} -{"length":9,"l2ca_bias":0,"preamble":85,"l2p_bias":0,"sender":22963,"msg_type":117,"payload":"/wAAAAAAAAAA","l1ca_bias":0,"mask":255,"crc":49809,"l1p_bias":0} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgjA8S4QAAAAAAE=","wn":2098,"tow":271512000,"crc":55883} -{"length":16,"flags":17,"ns":999999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EcDxLhDkBwMZAxg1/smaOw==","day":25,"tow":271512000,"year":2020,"crc":48360,"minutes":24,"month":3,"seconds":53} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.508655917081146,"preamble":85,"sender":22963,"msg_type":522,"payload":"wPEuEKiORuJl6kJAF4O0G1aSXsDJxzBGN4IxwAECWwQPBg==","lat":37.831234249545844,"tow":271512000,"h_accuracy":513,"crc":51573,"lon":-122.2865056288541} -{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"wPEuEAUAAAD1////DgAAAPEAygIPAg==","n":5,"d":14,"tow":271512000,"h_accuracy":241,"crc":47668,"e":-11} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"wPEuEJsAhwBMAEgAcgAG","tow":271512000,"crc":34586,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"wPEuEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271512000,"h_accuracy":0,"crc":51375,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"wPEuEP//","tow":271512000,"crc":15940} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":4,"flags":2147616000,"preamble":85,"sender":22963,"msg_type":65535,"payload":"AAUCgA==","crc":40942} -{"length":24,"z":3890655.0240602265,"preamble":85,"sender":22963,"msg_type":72,"payload":"UO0a3iqORMHK1UJhIkRQwc9nFIPvrk1B","crc":2168,"x":-2694229.735196747,"y":-4264073.519704292} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"bWFpbgAAAAAAAAAAAAAAAAAAAAAAAAx1AAA=","name":"main\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":47991,"stack_free":29964,"cpu":0} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"aWRsZQAAAAAAAAAAAAAAAAAAAABjAXwAAAA=","name":"idle\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":32761,"stack_free":124,"cpu":355} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"cnBtc2cAAAAAAAAAAAAAAAAAAAABAOwNAAA=","name":"rpmsg\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":53198,"stack_free":3564,"cpu":1} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"U0JQAAAAAAAAAAAAAAAAAAAAAAAAAPz/AAA=","name":"SBP\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":51784,"stack_free":65532,"cpu":0} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"TkFQAAAAAAAAAAAAAAAAAAAAAAAAAASAAAA=","name":"NAP\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":33651,"stack_free":32772,"cpu":0} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"bWFuYWdlIFBWAAAAAAAAAAAAAAAAACwEAAA=","name":"manage PV\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":61814,"stack_free":1068,"cpu":0} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"SU1VAAAAAAAAAAAAAAAAAAAAAAAAAPQHAAA=","name":"IMU\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":14252,"stack_free":2036,"cpu":0} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"SU1VIGF1eAAAAAAAAAAAAAAAAAAAAEwIAAA=","name":"IMU aux\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":18976,"stack_free":2124,"cpu":0} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"bmRiAAAAAAAAAAAAAAAAAAAAAAAAAFAMAAA=","name":"ndb\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":26120,"stack_free":3152,"cpu":0} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"TkFQIFRyYWNraW5nAAAAAAAAAAAeAdR3AAA=","name":"NAP Tracking\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":33839,"stack_free":30676,"cpu":286} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"ZGVjb2RlAAAAAAAAAAAAAAAAAAAHANQGAAA=","name":"decode\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":22929,"stack_free":1748,"cpu":7} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"bWFuYWdlIGFjcQAAAAAAAAAAAAC9AKR3AAA=","name":"manage acq\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":24209,"stack_free":30628,"cpu":189} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"c3lzdGVtIG1vbml0b3IAAAAAAAAAACwGAAA=","name":"system monitor\u0000\u0000\u0000\u0000\u0000\u0000","crc":58531,"stack_free":1580,"cpu":0} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"V2F0Y2hkb2cAAAAAAAAAAAAAAAAAAOQDAAA=","name":"Watchdog\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":44438,"stack_free":996,"cpu":0} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"c3RhcmxpbmcAAAAAAAAAAAAAAACVAPz/AAA=","name":"starling\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":15999,"stack_free":65532,"cpu":149} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"bWVfY2FsY19wdnQAAAAAAAAAAAAJAIwjAAA=","name":"me_calc_pvt\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":57561,"stack_free":9100,"cpu":9} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"UFBTAAAAAAAAAAAAAAAAAAAAAAAAAEgHAAA=","name":"PPS\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":38576,"stack_free":1864,"cpu":0} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"c3BlY3RydW0gYW5hbHl6ZXIAAAAAANQPAAA=","name":"spectrum analyzer\u0000\u0000\u0000","crc":50933,"stack_free":4052,"cpu":0} -{"cpu_vint":989,"length":10,"fe_temperature":5641,"preamble":85,"sender":22963,"cpu_vaux":1780,"msg_type":181,"payload":"7xbdA/QGTBUJFg==","dev_vin":5871,"crc":20678,"cpu_temperature":5452} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"Mggk8i4QAAAAAAE=","wn":2098,"tow":271512100,"crc":51526} -{"length":16,"flags":17,"ns":99999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"ESTyLhDkBwMZAxg2/uD1BQ==","day":25,"tow":271512100,"year":2020,"crc":29690,"minutes":24,"month":3,"seconds":54} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.501021724472572,"preamble":85,"sender":22963,"msg_type":522,"payload":"JPIuEE7qRuJl6kJAJUvVG1aSXsD6MbH1QoAxwAECWwQPBg==","lat":37.83123424971255,"tow":271512100,"h_accuracy":513,"crc":24835,"lon":-122.28650565938422} -{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"JPIuEA0AAAD5////+v////EAygIPAg==","n":13,"d":-6,"tow":271512100,"h_accuracy":241,"crc":47630,"e":-7} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"JPIuEJsAhwBMAEgAcgAG","tow":271512100,"crc":29188,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"JPIuEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271512100,"h_accuracy":0,"crc":1207,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"JPIuEP//","tow":271512100,"crc":23823} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgiI8i4QAAAAAAE=","wn":2098,"tow":271512200,"crc":25624} -{"length":16,"flags":17,"ns":199999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EYjyLhDkBwMZAxg2/sHrCw==","day":25,"tow":271512200,"year":2020,"crc":30287,"minutes":24,"month":3,"seconds":54} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.49366034937492,"preamble":85,"sender":22963,"msg_type":522,"payload":"iPIuEBQlCuJl6kJAOGHWG1aSXsCw5U+GYH4xwAECWwQPBg==","lat":37.83123422141412,"tow":271512200,"h_accuracy":513,"crc":52490,"lon":-122.28650566039585} -{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"iPIuEPH///8IAAAA+P////EAygIPAg==","n":-15,"d":-8,"tow":271512200,"h_accuracy":241,"crc":44818,"e":8} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"iPIuEJsAhwBMAEgAcgAG","tow":271512200,"crc":2037,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"iPIuEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271512200,"h_accuracy":0,"crc":11629,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"iPIuEP//","tow":271512200,"crc":47044} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"Mgjs8i4QAAAAAAE=","wn":2098,"tow":271512300,"crc":210} -{"length":16,"flags":17,"ns":299999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EezyLhDkBwMZAxg2/qLhEQ==","day":25,"tow":271512300,"year":2020,"crc":50283,"minutes":24,"month":3,"seconds":54} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.4876069396076,"preamble":85,"sender":22963,"msg_type":522,"payload":"7PIuEGxKyOFl6kJATdLVG1aSXsDT6vLO03wxwAECWwQPBg==","lat":37.831234190748404,"tow":271512300,"h_accuracy":513,"crc":64742,"lon":-122.28650565987591} -{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"7PIuEPX///8EAAAA+f////EAygIPAg==","n":-11,"d":-7,"tow":271512300,"h_accuracy":241,"crc":16008,"e":4} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"7PIuEJsAhwBMAEgAcgAG","tow":271512300,"crc":11098,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"7PIuEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271512300,"h_accuracy":0,"crc":13787,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"7PIuEP//","tow":271512300,"crc":61053} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":237,"states":[{"cn0":214,"mesid":{"sat":5,"code":0}},{"cn0":181,"mesid":{"sat":21,"code":0}},{"cn0":189,"mesid":{"sat":2,"code":0}},{"cn0":167,"mesid":{"sat":31,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":218,"mesid":{"sat":25,"code":0}},{"cn0":207,"mesid":{"sat":12,"code":0}},{"cn0":214,"mesid":{"sat":29,"code":0}},{"cn0":206,"mesid":{"sat":18,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":205,"mesid":{"sat":131,"code":2}},{"cn0":205,"mesid":{"sat":25,"code":1}},{"cn0":188,"mesid":{"sat":12,"code":1}},{"cn0":153,"mesid":{"sat":31,"code":1}},{"cn0":196,"mesid":{"sat":18,"code":1}},{"cn0":196,"mesid":{"sat":29,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":195,"mesid":{"sat":5,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":213,"mesid":{"sat":100,"code":3}},{"cn0":179,"mesid":{"sat":98,"code":3}},{"cn0":174,"mesid":{"sat":102,"code":3}},{"cn0":207,"mesid":{"sat":101,"code":3}},{"cn0":207,"mesid":{"sat":93,"code":3}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":181,"mesid":{"sat":106,"code":3}},{"cn0":202,"mesid":{"sat":104,"code":3}},{"cn0":170,"mesid":{"sat":98,"code":4}},{"cn0":205,"mesid":{"sat":102,"code":4}},{"cn0":92,"mesid":{"sat":93,"code":4}},{"cn0":199,"mesid":{"sat":100,"code":4}},{"cn0":195,"mesid":{"sat":101,"code":4}},{"cn0":188,"mesid":{"sat":104,"code":4}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":176,"mesid":{"sat":106,"code":4}},{"cn0":200,"mesid":{"sat":35,"code":12}},{"cn0":169,"mesid":{"sat":26,"code":12}},{"cn0":158,"mesid":{"sat":34,"code":12}},{"cn0":188,"mesid":{"sat":24,"code":12}},{"cn0":157,"mesid":{"sat":25,"code":12}},{"cn0":184,"mesid":{"sat":12,"code":12}},{"cn0":183,"mesid":{"sat":19,"code":12}},{"cn0":190,"mesid":{"sat":22,"code":12}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":208,"mesid":{"sat":12,"code":13}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":195,"mesid":{"sat":12,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":192,"mesid":{"sat":25,"code":14}},{"cn0":189,"mesid":{"sat":11,"code":14}},{"cn0":205,"mesid":{"sat":24,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":160,"mesid":{"sat":31,"code":14}},{"cn0":155,"mesid":{"sat":33,"code":14}},{"cn0":200,"mesid":{"sat":25,"code":20}},{"cn0":215,"mesid":{"sat":24,"code":20}},{"cn0":194,"mesid":{"sat":11,"code":20}},{"cn0":173,"mesid":{"sat":31,"code":20}},{"cn0":206,"mesid":{"sat":12,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":169,"mesid":{"sat":33,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}}],"preamble":85,"sender":22963,"msg_type":97,"payload":"BQDWFQC1AgC9HwCnAAAAAAAAGQDaDADPHQDWEgDOAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwLNGQHNDAG8HwGZEgHEHQHEAAAABQHDAAAAAAAAAAAAAAAAZAPVYgOzZgOuZQPPXQPPAAAAagO1aAPKYgSqZgTNXQRcZATHZQTDaAS8AAAAagSwIwzIGgypIgyeGAy8GQydDAy4Ewy3Fgy+AAAADA3QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADA7DAAAAGQ7ACw69GA7NAAAAHw6gIQ6bGRTIGBTXCxTCHxStDBTOAAAAIRSpAAAA","crc":43056} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MghQ8y4QAAAAAAE=","wn":2098,"tow":271512400,"crc":47521} -{"length":16,"flags":17,"ns":399999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EVDzLhDkBwMZAxg2/oPXFw==","day":25,"tow":271512400,"year":2020,"crc":64114,"minutes":24,"month":3,"seconds":54} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.483580739133487,"preamble":85,"sender":22963,"msg_type":522,"payload":"UPMuEDuotuFl6kJA/83dG1aSXsDIjYPyy3sxwAECWwQPBg==","lat":37.83123418253714,"tow":271512400,"h_accuracy":513,"crc":340,"lon":-122.28650566731083} -{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"UPMuEAEAAAABAAAAFwAAAPEAygIPAg==","n":1,"d":23,"tow":271512400,"h_accuracy":241,"crc":3150,"e":1} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"UPMuEJsAhwBMAEgAcgAG","tow":271512400,"crc":27456,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"UPMuEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271512400,"h_accuracy":0,"crc":29873,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"UPMuEP//","tow":271512400,"crc":46179} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":9,"l2ca_bias":0,"preamble":85,"l2p_bias":0,"sender":22963,"msg_type":117,"payload":"/wAAAAAAAAAA","l1ca_bias":0,"mask":255,"crc":49809,"l1p_bias":0} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"Mgi08y4QAAAAAAE=","wn":2098,"tow":271512500,"crc":25305} -{"length":16,"flags":17,"ns":499999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EbTzLhDkBwMZAxg2/mTNHQ==","day":25,"tow":271512500,"year":2020,"crc":60060,"minutes":24,"month":3,"seconds":54} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.47255376650362,"preamble":85,"sender":22963,"msg_type":522,"payload":"tPMuEDpto+Fl6kJAYbfjG1aSXsATvJxI+XgxwAECWwQPBg==","lat":37.831234173582246,"tow":271512500,"h_accuracy":513,"crc":24208,"lon":-122.28650567281649} -{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"tPMuEAAAAAADAAAA4f////EAygIPAg==","n":0,"d":-31,"tow":271512500,"h_accuracy":241,"crc":23959,"e":3} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"tPMuEJsAhwBMAEgAcgAG","tow":271512500,"crc":5117,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"tPMuEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271512500,"h_accuracy":0,"crc":54930,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"tPMuEP//","tow":271512500,"crc":14842} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MggY9C4QAAAAAAE=","wn":2098,"tow":271512600,"crc":2207} -{"length":16,"flags":17,"ns":599999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"ERj0LhDkBwMZAxg2/kXDIw==","day":25,"tow":271512600,"year":2020,"crc":43535,"minutes":24,"month":3,"seconds":54} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.4682354421654,"preamble":85,"sender":22963,"msg_type":522,"payload":"GPQuEPvCiOFl6kJAY6/oG1aSXsCy7SZH3ncxwAECWwQPBg==","lat":37.831234161165376,"tow":271512600,"h_accuracy":513,"crc":30449,"lon":-122.28650567744403} -{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"GPQuEP/////2////BwAAAPEAygIPAg==","n":-1,"d":7,"tow":271512600,"h_accuracy":241,"crc":969,"e":-10} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"GPQuEJsAhwBMAEgAcgAG","tow":271512600,"crc":5642,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"GPQuEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271512600,"h_accuracy":0,"crc":63176,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"GPQuEP//","tow":271512600,"crc":46309} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"Mgh89C4QAAAAAAE=","wn":2098,"tow":271512700,"crc":27733} -{"length":16,"flags":17,"ns":699999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EXz0LhDkBwMZAxg2/ia5KQ==","day":25,"tow":271512700,"year":2020,"crc":579,"minutes":24,"month":3,"seconds":54} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.46401403462343,"preamble":85,"sender":22963,"msg_type":522,"payload":"fPQuEHcyc+Fl6kJAXX3gG1aSXsC3l6+fyXYxwAECWwQPBg==","lat":37.83123415112362,"tow":271512700,"h_accuracy":513,"crc":57264,"lon":-122.28650566981146} -{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"fPQuEAkAAAD8////BAAAAPEAygIPAg==","n":9,"d":4,"tow":271512700,"h_accuracy":241,"crc":39398,"e":-4} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"fPQuEJsAhwBMAEgAcgAG","tow":271512700,"crc":15013,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"fPQuEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271512700,"h_accuracy":0,"crc":61054,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"fPQuEP//","tow":271512700,"crc":60764} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"message_type":25,"length":34,"data":[132,105,253,192,23,253,254,159,224,0,0,2,254,104,176,127,176,43,254,191,176,0,8,8,0,191,144],"preamble":85,"sender":22963,"msg_type":30583,"payload":"gwKZ8y4QGYRp/cAX/f6f4AAAAv5osH+wK/6/sAAICAC/kA==","tow":271512473,"crc":35058,"sid":{"sat":131,"code":2}} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"Mgjg9C4QAAAAAAE=","wn":2098,"tow":271512800,"crc":13577} -{"length":16,"flags":17,"ns":799999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EeD0LhDkBwMZAxg2/gevLw==","day":25,"tow":271512800,"year":2020,"crc":56521,"minutes":24,"month":3,"seconds":54} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.459738119858915,"preamble":85,"sender":22963,"msg_type":522,"payload":"4PQuEChSQeFl6kJANnXTG1aSXsDBhL1lsXUxwAECWwQPBg==","lat":37.8312341278982,"tow":271512800,"h_accuracy":513,"crc":62474,"lon":-122.28650565767461} -{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"4PQuEPj////6////EgAAAPEAygIPAg==","n":-8,"d":18,"tow":271512800,"h_accuracy":241,"crc":21939,"e":-6} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"4PQuEJsAhwBMAEgAcgAG","tow":271512800,"crc":40138,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"4PQuEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271512800,"h_accuracy":0,"crc":4175,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"4PQuEP//","tow":271512800,"crc":10267} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":237,"states":[{"cn0":214,"mesid":{"sat":5,"code":0}},{"cn0":181,"mesid":{"sat":21,"code":0}},{"cn0":190,"mesid":{"sat":2,"code":0}},{"cn0":167,"mesid":{"sat":31,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":218,"mesid":{"sat":25,"code":0}},{"cn0":207,"mesid":{"sat":12,"code":0}},{"cn0":214,"mesid":{"sat":29,"code":0}},{"cn0":206,"mesid":{"sat":18,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":206,"mesid":{"sat":131,"code":2}},{"cn0":205,"mesid":{"sat":25,"code":1}},{"cn0":188,"mesid":{"sat":12,"code":1}},{"cn0":153,"mesid":{"sat":31,"code":1}},{"cn0":196,"mesid":{"sat":18,"code":1}},{"cn0":196,"mesid":{"sat":29,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":195,"mesid":{"sat":5,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":213,"mesid":{"sat":11,"code":3}},{"cn0":179,"mesid":{"sat":9,"code":3}},{"cn0":174,"mesid":{"sat":20,"code":3}},{"cn0":208,"mesid":{"sat":5,"code":3}},{"cn0":207,"mesid":{"sat":10,"code":3}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":182,"mesid":{"sat":4,"code":3}},{"cn0":202,"mesid":{"sat":21,"code":3}},{"cn0":171,"mesid":{"sat":9,"code":4}},{"cn0":205,"mesid":{"sat":20,"code":4}},{"cn0":61,"mesid":{"sat":10,"code":4}},{"cn0":199,"mesid":{"sat":11,"code":4}},{"cn0":195,"mesid":{"sat":5,"code":4}},{"cn0":188,"mesid":{"sat":0,"code":4}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":176,"mesid":{"sat":4,"code":4}},{"cn0":200,"mesid":{"sat":35,"code":12}},{"cn0":169,"mesid":{"sat":26,"code":12}},{"cn0":158,"mesid":{"sat":34,"code":12}},{"cn0":189,"mesid":{"sat":24,"code":12}},{"cn0":157,"mesid":{"sat":25,"code":12}},{"cn0":185,"mesid":{"sat":12,"code":12}},{"cn0":184,"mesid":{"sat":19,"code":12}},{"cn0":190,"mesid":{"sat":22,"code":12}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":207,"mesid":{"sat":12,"code":13}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":196,"mesid":{"sat":12,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":193,"mesid":{"sat":25,"code":14}},{"cn0":190,"mesid":{"sat":11,"code":14}},{"cn0":205,"mesid":{"sat":24,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":160,"mesid":{"sat":31,"code":14}},{"cn0":154,"mesid":{"sat":33,"code":14}},{"cn0":200,"mesid":{"sat":25,"code":20}},{"cn0":215,"mesid":{"sat":24,"code":20}},{"cn0":193,"mesid":{"sat":11,"code":20}},{"cn0":173,"mesid":{"sat":31,"code":20}},{"cn0":206,"mesid":{"sat":12,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":169,"mesid":{"sat":33,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}}],"preamble":85,"sender":22963,"msg_type":97,"payload":"BQDWFQC1AgC+HwCnAAAAAAAAGQDaDADPHQDWEgDOAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwLOGQHNDAG8HwGZEgHEHQHEAAAABQHDAAAAAAAAAAAAAAAACwPVCQOzFAOuBQPQCgPPAAAABAO2FQPKCQSrFATNCgQ9CwTHBQTDAAS8AAAABASwIwzIGgypIgyeGAy9GQydDAy5Ewy4Fgy+AAAADA3PAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADA7EAAAAGQ7BCw6+GA7NAAAAHw6gIQ6aGRTIGBTXCxTBHxStDBTOAAAAIRSpAAAA","crc":45023} -{"length":136,"preamble":85,"sender":22963,"msg_type":151,"payload":"AgAaHgUALDUMAFEtFQB9GRkAbUYaAKEBHQChNx8AlQ4EAxYWBQMyIQYDTggJA18OCgNxKQsDmCUMA6oDEwMiBxQDCzEVA5UlDAyUKRMMIyAUDA8CFgxDIxgMgiMZDJ0OGgxnFR0MLAAiDI4RIwwiLQsOizIMDg88GA5sNhkOlykfDlURIQ4fDw==","crc":41336,"azel":[{"el":30,"az":26,"sid":{"sat":2,"code":0}},{"el":53,"az":44,"sid":{"sat":5,"code":0}},{"el":45,"az":81,"sid":{"sat":12,"code":0}},{"el":25,"az":125,"sid":{"sat":21,"code":0}},{"el":70,"az":109,"sid":{"sat":25,"code":0}},{"el":1,"az":161,"sid":{"sat":26,"code":0}},{"el":55,"az":161,"sid":{"sat":29,"code":0}},{"el":14,"az":149,"sid":{"sat":31,"code":0}},{"el":22,"az":22,"sid":{"sat":4,"code":3}},{"el":33,"az":50,"sid":{"sat":5,"code":3}},{"el":8,"az":78,"sid":{"sat":6,"code":3}},{"el":14,"az":95,"sid":{"sat":9,"code":3}},{"el":41,"az":113,"sid":{"sat":10,"code":3}},{"el":37,"az":152,"sid":{"sat":11,"code":3}},{"el":3,"az":170,"sid":{"sat":12,"code":3}},{"el":7,"az":34,"sid":{"sat":19,"code":3}},{"el":49,"az":11,"sid":{"sat":20,"code":3}},{"el":37,"az":149,"sid":{"sat":21,"code":3}},{"el":41,"az":148,"sid":{"sat":12,"code":12}},{"el":32,"az":35,"sid":{"sat":19,"code":12}},{"el":2,"az":15,"sid":{"sat":20,"code":12}},{"el":35,"az":67,"sid":{"sat":22,"code":12}},{"el":35,"az":130,"sid":{"sat":24,"code":12}},{"el":14,"az":157,"sid":{"sat":25,"code":12}},{"el":21,"az":103,"sid":{"sat":26,"code":12}},{"el":0,"az":44,"sid":{"sat":29,"code":12}},{"el":17,"az":142,"sid":{"sat":34,"code":12}},{"el":45,"az":34,"sid":{"sat":35,"code":12}},{"el":50,"az":139,"sid":{"sat":11,"code":14}},{"el":60,"az":15,"sid":{"sat":12,"code":14}},{"el":54,"az":108,"sid":{"sat":24,"code":14}},{"el":41,"az":151,"sid":{"sat":25,"code":14}},{"el":17,"az":85,"sid":{"sat":31,"code":14}},{"el":15,"az":31,"sid":{"sat":33,"code":14}}]} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MghE9S4QAAAAAAE=","wn":2098,"tow":271512900,"crc":63099} -{"length":16,"flags":17,"ns":899999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EUT1LhDkBwMZAxg2/uikNQ==","day":25,"tow":271512900,"year":2020,"crc":5789,"minutes":24,"month":3,"seconds":54} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.448876195284655,"preamble":85,"sender":22963,"msg_type":522,"payload":"RPUuEA2NHeFl6kJA+cqkG1aSXsBUs+KM6XIxwAECWwQPBg==","lat":37.83123411124152,"tow":271512900,"h_accuracy":513,"crc":11556,"lon":-122.28650561421445} -{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"RPUuEPv///8QAAAA2/////EAygIPAg==","n":-5,"d":-37,"tow":271512900,"h_accuracy":241,"crc":38093,"e":16} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"RPUuEJsAhwBMAEgAcgAG","tow":271512900,"crc":46367,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"RPUuEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271512900,"h_accuracy":0,"crc":45760,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"RPUuEP//","tow":271512900,"crc":26051} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":249,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":179,"i":110563849},"flags":15,"cn0":214,"P":1051979922,"D":{"f":224,"i":-180},"lock":15,"sid":{"sat":5,"code":0}},{"L":{"f":77,"i":121829089},"flags":15,"cn0":181,"P":1159165271,"D":{"f":149,"i":2174},"lock":15,"sid":{"sat":21,"code":0}},{"L":{"f":136,"i":123333370},"flags":15,"cn0":190,"P":1173477624,"D":{"f":30,"i":-2476},"lock":15,"sid":{"sat":2,"code":0}},{"L":{"f":31,"i":128737591},"flags":15,"cn0":167,"P":1224897457,"D":{"f":71,"i":-394},"lock":15,"sid":{"sat":31,"code":0}},{"L":{"f":216,"i":107821051},"flags":15,"cn0":218,"P":1025883117,"D":{"f":51,"i":-1124},"lock":15,"sid":{"sat":25,"code":0}},{"L":{"f":203,"i":114092814},"flags":15,"cn0":207,"P":1085556930,"D":{"f":158,"i":-2965},"lock":15,"sid":{"sat":12,"code":0}},{"L":{"f":15,"i":110763879},"flags":15,"cn0":214,"P":1053883197,"D":{"f":234,"i":1485},"lock":15,"sid":{"sat":29,"code":0}},{"L":{"f":133,"i":84016424},"flags":15,"cn0":205,"P":1025883189,"D":{"f":0,"i":-876},"lock":15,"sid":{"sat":25,"code":1}},{"L":{"f":173,"i":88903523},"flags":15,"cn0":188,"P":1085556864,"D":{"f":191,"i":-2310},"lock":15,"sid":{"sat":12,"code":1}},{"L":{"f":124,"i":100315008},"flags":15,"cn0":154,"P":1224897403,"D":{"f":64,"i":-305},"lock":15,"sid":{"sat":31,"code":1}},{"L":{"f":249,"i":86309517},"flags":15,"cn0":196,"P":1053883115,"D":{"f":246,"i":1158},"lock":15,"sid":{"sat":29,"code":1}},{"L":{"f":97,"i":86153678},"flags":15,"cn0":195,"P":1051979855,"D":{"f":253,"i":-141},"lock":15,"sid":{"sat":5,"code":1}},{"L":{"f":102,"i":112938773},"flags":15,"cn0":213,"P":1056747254,"D":{"f":151,"i":1169},"lock":15,"sid":{"sat":11,"code":3}},{"L":{"f":14,"i":123328711},"flags":15,"cn0":179,"P":1154775019,"D":{"f":228,"i":-4407},"lock":15,"sid":{"sat":9,"code":3}}],"payload":"qPUuEAAAAAAyCECS8LM+CRKXBrNM/+DWDw8FAFd1F0Xh9kIHTX4IlbUPDxUA+NjxRfrqWQeIVPYevg8PAgCxcwJJN2GsBx92/kenDw8fAO27JT37N20G2Jz7M9oPDxkAwki0QA7rzAbLa/Sezw8PDAA9+9A+Zx+aBg/NBerWDw8dADW8JT0o/QEFhZT8AM0PDxkBgEi0QGOPTAWt+va/vA8PDAF7cwJJgK/6BXzP/kCaDw8fAev60D6N+iQF+YYE9sQPDx0BT/CzPs6ZIgVhc//9ww8PBQH2rvw+FU+7BmaRBJfVDw8LA+t31ETH2FkHDsnu5LMPDwkD","header":{"n_obs":64,"t":{"ns_residual":0,"wn":2098,"tow":271513000}},"crc":42801} -{"length":249,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":183,"i":109769104},"flags":15,"cn0":174,"P":1026368504,"D":{"f":186,"i":-1208},"lock":15,"sid":{"sat":20,"code":3}},{"L":{"f":212,"i":114862988},"flags":15,"cn0":208,"P":1074374526,"D":{"f":96,"i":2201},"lock":15,"sid":{"sat":5,"code":3}},{"L":{"f":95,"i":111599843},"flags":15,"cn0":207,"P":1046791979,"D":{"f":48,"i":-3041},"lock":15,"sid":{"sat":10,"code":3}},{"L":{"f":224,"i":120436911},"flags":15,"cn0":181,"P":1124536890,"D":{"f":138,"i":-1314},"lock":15,"sid":{"sat":4,"code":3}},{"L":{"f":9,"i":113421869},"flags":15,"cn0":202,"P":1059778922,"D":{"f":15,"i":1625},"lock":15,"sid":{"sat":21,"code":3}},{"L":{"f":120,"i":95922340},"flags":15,"cn0":171,"P":1154775128,"D":{"f":38,"i":-3427},"lock":15,"sid":{"sat":9,"code":4}},{"L":{"f":15,"i":85376006},"flags":15,"cn0":205,"P":1026368847,"D":{"f":14,"i":-939},"lock":15,"sid":{"sat":20,"code":4}},{"L":{"f":137,"i":87841278},"flags":15,"cn0":199,"P":1056747546,"D":{"f":255,"i":910},"lock":15,"sid":{"sat":11,"code":4}},{"L":{"f":252,"i":89337883},"flags":15,"cn0":196,"P":1074374844,"D":{"f":20,"i":1712},"lock":15,"sid":{"sat":5,"code":4}},{"L":{"f":231,"i":93673143},"flags":15,"cn0":176,"P":1124537137,"D":{"f":140,"i":-1021},"lock":15,"sid":{"sat":4,"code":4}},{"L":{"f":82,"i":121578045},"flags":15,"cn0":200,"P":1167388983,"D":{"f":242,"i":-1499},"lock":15,"sid":{"sat":35,"code":12}},{"L":{"f":229,"i":129208109},"flags":15,"cn0":169,"P":1240652993,"D":{"f":134,"i":-3006},"lock":15,"sid":{"sat":26,"code":12}},{"L":{"f":222,"i":132948853},"flags":15,"cn0":158,"P":1276571229,"D":{"f":70,"i":2249},"lock":15,"sid":{"sat":34,"code":12}},{"L":{"f":248,"i":125149673},"flags":15,"cn0":189,"P":1201683962,"D":{"f":10,"i":-1301},"lock":15,"sid":{"sat":24,"code":12}}],"payload":"qPUuEAAAAAAyCEH4Iy09kPGKBrdI+7quDw8UA36nCUCMq9gG1JkIYNAPDwUDK8dkPuPgpgZfH/Qwzw8PCgM6EgdDr7gtB+De+oq1Dw8EA2rxKj8trsIGCVkGD8oPDxUDWHjURKSotwV4nfImqw8PCQRPJS09BrwWBQ9V/A7NDw8UBBqw/D7+WTwFiY4D/8cPDwsEvKgJQBswUwX8sAYUxA8PBQQxEwdDt1aVBecD/IywDw8EBDfxlEU9Ij8HUiX68sgPDyMMwdzySS2PswflQvSGqQ8PGgxd7hZMdaPsB97JCEaeDw8iDPo9oEfpoXUH+Ov6Cr0PDxgM","header":{"n_obs":65,"t":{"ns_residual":0,"wn":2098,"tow":271513000}},"crc":14559} -{"length":249,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":150,"i":134673838},"flags":15,"cn0":157,"P":1293134702,"D":{"f":190,"i":1328},"lock":15,"sid":{"sat":25,"code":12}},{"L":{"f":74,"i":121101994},"flags":15,"cn0":185,"P":1162818220,"D":{"f":208,"i":1614},"lock":15,"sid":{"sat":12,"code":12}},{"L":{"f":135,"i":124514587},"flags":15,"cn0":184,"P":1195585828,"D":{"f":17,"i":-286},"lock":15,"sid":{"sat":19,"code":12}},{"L":{"f":138,"i":124707405},"flags":15,"cn0":190,"P":1197437261,"D":{"f":137,"i":2390},"lock":15,"sid":{"sat":22,"code":12}},{"L":{"f":97,"i":93643752},"flags":15,"cn0":208,"P":1162818149,"D":{"f":121,"i":1248},"lock":15,"sid":{"sat":12,"code":13}},{"L":{"f":170,"i":116424865},"flags":15,"cn0":196,"P":1107745736,"D":{"f":241,"i":-1026},"lock":15,"sid":{"sat":12,"code":14}},{"L":{"f":48,"i":132476117},"flags":15,"cn0":193,"P":1260468271,"D":{"f":81,"i":1091},"lock":15,"sid":{"sat":25,"code":14}},{"L":{"f":255,"i":125423786},"flags":15,"cn0":190,"P":1193367604,"D":{"f":230,"i":1049},"lock":15,"sid":{"sat":11,"code":14}},{"L":{"f":49,"i":118411926},"flags":15,"cn0":205,"P":1126651892,"D":{"f":219,"i":-1743},"lock":15,"sid":{"sat":24,"code":14}},{"L":{"f":118,"i":143317817},"flags":15,"cn0":161,"P":1363623683,"D":{"f":1,"i":-3174},"lock":15,"sid":{"sat":31,"code":14}},{"L":{"f":199,"i":144521763},"flags":15,"cn0":155,"P":1375078861,"D":{"f":150,"i":-2139},"lock":15,"sid":{"sat":33,"code":14}},{"L":{"f":157,"i":101507672},"flags":15,"cn0":200,"P":1260468240,"D":{"f":167,"i":835},"lock":15,"sid":{"sat":25,"code":20}},{"L":{"f":186,"i":90731279},"flags":15,"cn0":215,"P":1126652429,"D":{"f":193,"i":-1335},"lock":15,"sid":{"sat":24,"code":20}},{"L":{"f":130,"i":96103918},"flags":15,"cn0":194,"P":1193367407,"D":{"f":21,"i":804},"lock":15,"sid":{"sat":11,"code":20}}],"payload":"qPUuEAAAAAAyCEJuqxNNrvUGCJYwBb6dDw8ZDKwyT0Wq3jcHSk4G0LkPDwwMJDFDRxvxaweH4v4RuA8PEwxNcV9HTeJuB4pWCYm+Dw8WDGUyT0Xo45QFYeAEedAPDwwNyNsGQqGA8Aaq/vvxxA8PDA4vOCFL1WzlBzBDBFHBDw8ZDjRYIUeq0HkH/xkE5r4PDwsO9FcnQ5bSDgcxMfnbzQ8PGA4DP0dROduKCHaa8wGhDw8fDs0J9lEjOp0Ix6X3lpsPDyEOEDghS1jiDAadQwOnyA8PGRQNWidDD3NoBbrJ+sHXDw8YFG9XIUfubboFgiQDFcIPDwsU","header":{"n_obs":66,"t":{"ns_residual":0,"wn":2098,"tow":271513000}},"crc":16407} -{"length":62,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":146,"i":109814992},"flags":15,"cn0":173,"P":1363623748,"D":{"f":180,"i":-2431},"lock":15,"sid":{"sat":31,"code":20}},{"L":{"f":230,"i":89208693},"flags":15,"cn0":206,"P":1107745581,"D":{"f":145,"i":-786},"lock":15,"sid":{"sat":12,"code":20}},{"L":{"f":220,"i":110737525},"flags":15,"cn0":169,"P":1375078805,"D":{"f":48,"i":-1640},"lock":15,"sid":{"sat":33,"code":20}}],"payload":"qPUuEAAAAAAyCENEP0dR0KSLBpKB9rStDw8fFC3bBkJ1N1EF5u78kc4PDwwUlQn2UXW4mQbcmPkwqQ8PIRQ=","header":{"n_obs":67,"t":{"ns_residual":0,"wn":2098,"tow":271513000}},"crc":33942} -{"length":9,"l2ca_bias":0,"preamble":85,"l2p_bias":0,"sender":22963,"msg_type":117,"payload":"/wAAAAAAAAAA","l1ca_bias":0,"mask":255,"crc":49809,"l1p_bias":0} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"Mgio9S4QAAAAAAE=","wn":2098,"tow":271513000,"crc":1276} -{"length":16,"flags":17,"ns":999999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"Eaj1LhDkBwMZAxg2/smaOw==","day":25,"tow":271513000,"year":2020,"crc":16327,"minutes":24,"month":3,"seconds":54} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.445109226376772,"preamble":85,"sender":22963,"msg_type":522,"payload":"qPUuEN/s7uBl6kJAYQWRG1aSXsCkb6Kt8nExwAECWwQPBg==","lat":37.83123408952974,"tow":271513000,"h_accuracy":513,"crc":47314,"lon":-122.28650559580048} -{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"qPUuEPP///8FAAAAHQAAAPEAygIPAg==","n":-13,"d":29,"tow":271513000,"h_accuracy":241,"crc":33155,"e":5} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"qPUuEJsAhwBMAEgAcgAG","tow":271513000,"crc":60135,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"qPUuEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271513000,"h_accuracy":0,"crc":20032,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"qPUuEP//","tow":271513000,"crc":58648} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":4,"flags":2147616000,"preamble":85,"sender":22963,"msg_type":65535,"payload":"AAUCgA==","crc":40942} -{"length":24,"z":3890655.0240602265,"preamble":85,"sender":22963,"msg_type":72,"payload":"UO0a3iqORMHK1UJhIkRQwc9nFIPvrk1B","crc":2168,"x":-2694229.735196747,"y":-4264073.519704292} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MggM9i4QAAAAAAE=","wn":2098,"tow":271513100,"crc":18472} -{"length":16,"flags":17,"ns":99999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EQz2LhDkBwMZAxg3/uD1BQ==","day":25,"tow":271513100,"year":2020,"crc":40543,"minutes":24,"month":3,"seconds":55} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.438071923019688,"preamble":85,"sender":22963,"msg_type":522,"payload":"DPYuEOKb6+Bl6kJA1rGPG1aSXsBXqkZ7JXAxwAECWwQPBg==","lat":37.831234087985436,"tow":271513100,"h_accuracy":513,"crc":26328,"lon":-122.28650559456523} -{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"DPYuEAYAAAD8/////f////EAygIPAg==","n":6,"d":-3,"tow":271513100,"h_accuracy":241,"crc":33432,"e":-4} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"DPYuEJsAhwBMAEgAcgAG","tow":271513100,"crc":13808,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"DPYuEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271513100,"h_accuracy":0,"crc":22274,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"DPYuEP//","tow":271513100,"crc":60483} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":51,"text":"GLO L2OF ME 1 [+1346ms] low CN0 too long, dropping","preamble":85,"sender":22963,"msg_type":1025,"payload":"BkdMTyBMMk9GIE1FIDEgWysxMzQ2bXNdIGxvdyBDTjAgdG9vIGxvbmcsIGRyb3BwaW5n","crc":38922,"level":6} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"Mghw9i4QAAAAAAE=","wn":2098,"tow":271513200,"crc":22243} -{"length":16,"flags":17,"ns":199999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EXD2LhDkBwMZAxg3/sHrCw==","day":25,"tow":271513200,"year":2020,"crc":43899,"minutes":24,"month":3,"seconds":55} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.42857871769312,"preamble":85,"sender":22963,"msg_type":522,"payload":"cPYuEHgA2uBl6kJA3GOVG1aSXsDqQLhVt20xwAECWwQPBg==","lat":37.8312340797865,"tow":271513200,"h_accuracy":513,"crc":18314,"lon":-122.28650559986949} -{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"cPYuEAEAAAD3////9v////EAygIPAg==","n":1,"d":-10,"tow":271513200,"h_accuracy":241,"crc":5202,"e":-9} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"cPYuEJsAhwBMAEgAcgAG","tow":271513200,"crc":28816,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"cPYuEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271513200,"h_accuracy":0,"crc":44113,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"cPYuEP//","tow":271513200,"crc":41532} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":139,"af0":-2.3224857e-5,"w":-1.3463657413316004,"dn":4.863774024282281e-9,"c_us":7.007271e-6,"c_uc":3.5446137e-6,"ecc":2.4803906213492155e-2,"sqrta":5153.536083221436,"preamble":85,"toc":{"wn":2098,"tow":273600},"sender":22963,"msg_type":138,"omegadot":-7.992475775839984e-9,"payload":"FQDALAQAMggAAABAQDgAAAEAAAAwsgCwk0IAcGpDAOBtNgAg6zYAgAQ1AABmtKhKIq7G4zQ+zoPVH/LR/D8AAAD4MWaZPwAAwDyJIbRATXV4Dg49AcAnH2j36ClBvpWVt822ivW/nz9Vvld47j/jWw9tDf79PQDTwrcAALQsAAAAAMAsBAAyCCEhAA==","inc":0.9521902768556066,"inc_dot":4.364467511876155e-10,"tgd":-1.0244548e-8,"iode":33,"crc":59056,"common":{"health_bits":0,"fit_interval":14400,"valid":1,"sid":{"sat":21,"code":0},"toe":{"wn":2098,"tow":273600},"ura":2},"c_rs":73.84375,"m0":1.8012562984006197,"af2":0,"c_rc":234.4375,"af1":5.1159077e-12,"c_is":-2.1420419e-7,"c_ic":4.9360096e-7,"omega0":-2.154811966944783,"iodc":33} -{"length":139,"af0":-3.162166e-5,"w":0.12302202292105374,"dn":4.687338103589416e-9,"c_us":6.943941e-6,"c_uc":4.4591725e-6,"ecc":9.5325744478032e-3,"sqrta":5153.545351028442,"preamble":85,"toc":{"wn":2098,"tow":273584},"sender":22963,"msg_type":138,"omegadot":-8.187483898711045e-9,"payload":"HwCwLAQAMggAAABAQDgAAAEAAABosgBwr0IAuHZDAKCVNgAA6TYAALyzAADwMmzcL2LIITQ+jRvCTcbTA0AAAAB80IWDPwAAIJyLIbRAgzPjXdBF8T/3kXvrHZVBvmQ5Ig1ffr8/craUyTun7j8RGcu37Wv8PYChBLgAADCsAAAAALAsBAAyCCgoAA==","inc":0.9579142510535361,"inc_dot":4.135886561990661e-10,"tgd":-1.3504177e-8,"iode":40,"crc":15733,"common":{"health_bits":0,"fit_interval":14400,"valid":1,"sid":{"sat":31,"code":0},"toe":{"wn":2098,"tow":273584},"ura":2},"c_rs":87.71875,"m0":2.478405578123278,"af2":0,"c_rc":246.71875,"af1":-2.5011104e-12,"c_is":2.7939677e-8,"c_ic":-8.754432e-8,"omega0":1.0795444171410231,"iodc":40} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgjU9i4QAAAAAAE=","wn":2098,"tow":271513300,"crc":53826} -{"length":16,"flags":17,"ns":299999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EdT2LhDkBwMZAxg3/qLhEQ==","day":25,"tow":271513300,"year":2020,"crc":26436,"minutes":24,"month":3,"seconds":55} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.417209951139657,"preamble":85,"sender":22963,"msg_type":522,"payload":"1PYuEMJ10OBl6kJAONGQG1aSXsDptXdFzmoxwAECWwQPBg==","lat":37.83123407534323,"tow":271513300,"h_accuracy":513,"crc":45405,"lon":-122.28650559561072} -{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"1PYuEAUAAAAAAAAA9v////EAygIPAg==","n":5,"d":-10,"tow":271513300,"h_accuracy":241,"crc":21876,"e":0} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"1PYuEJsAhwBMAEgAcgAG","tow":271513300,"crc":8740,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"1PYuEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271513300,"h_accuracy":0,"crc":56104,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"1PYuEP//","tow":271513300,"crc":17845} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":237,"states":[{"cn0":214,"mesid":{"sat":5,"code":0}},{"cn0":180,"mesid":{"sat":21,"code":0}},{"cn0":190,"mesid":{"sat":2,"code":0}},{"cn0":166,"mesid":{"sat":31,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":218,"mesid":{"sat":25,"code":0}},{"cn0":207,"mesid":{"sat":12,"code":0}},{"cn0":213,"mesid":{"sat":29,"code":0}},{"cn0":206,"mesid":{"sat":18,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":205,"mesid":{"sat":131,"code":2}},{"cn0":205,"mesid":{"sat":25,"code":1}},{"cn0":188,"mesid":{"sat":12,"code":1}},{"cn0":153,"mesid":{"sat":31,"code":1}},{"cn0":196,"mesid":{"sat":18,"code":1}},{"cn0":196,"mesid":{"sat":29,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":195,"mesid":{"sat":5,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":213,"mesid":{"sat":100,"code":3}},{"cn0":179,"mesid":{"sat":98,"code":3}},{"cn0":173,"mesid":{"sat":102,"code":3}},{"cn0":208,"mesid":{"sat":101,"code":3}},{"cn0":208,"mesid":{"sat":93,"code":3}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":181,"mesid":{"sat":106,"code":3}},{"cn0":202,"mesid":{"sat":104,"code":3}},{"cn0":170,"mesid":{"sat":98,"code":4}},{"cn0":205,"mesid":{"sat":102,"code":4}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":199,"mesid":{"sat":100,"code":4}},{"cn0":195,"mesid":{"sat":101,"code":4}},{"cn0":188,"mesid":{"sat":104,"code":4}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":176,"mesid":{"sat":106,"code":4}},{"cn0":200,"mesid":{"sat":35,"code":12}},{"cn0":169,"mesid":{"sat":26,"code":12}},{"cn0":157,"mesid":{"sat":34,"code":12}},{"cn0":189,"mesid":{"sat":24,"code":12}},{"cn0":157,"mesid":{"sat":25,"code":12}},{"cn0":185,"mesid":{"sat":12,"code":12}},{"cn0":184,"mesid":{"sat":19,"code":12}},{"cn0":190,"mesid":{"sat":22,"code":12}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":209,"mesid":{"sat":12,"code":13}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":196,"mesid":{"sat":12,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":193,"mesid":{"sat":25,"code":14}},{"cn0":190,"mesid":{"sat":11,"code":14}},{"cn0":206,"mesid":{"sat":24,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":160,"mesid":{"sat":31,"code":14}},{"cn0":154,"mesid":{"sat":33,"code":14}},{"cn0":200,"mesid":{"sat":25,"code":20}},{"cn0":215,"mesid":{"sat":24,"code":20}},{"cn0":193,"mesid":{"sat":11,"code":20}},{"cn0":173,"mesid":{"sat":31,"code":20}},{"cn0":206,"mesid":{"sat":12,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":169,"mesid":{"sat":33,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}}],"preamble":85,"sender":22963,"msg_type":97,"payload":"BQDWFQC0AgC+HwCmAAAAAAAAGQDaDADPHQDVEgDOAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwLNGQHNDAG8HwGZEgHEHQHEAAAABQHDAAAAAAAAAAAAAAAAZAPVYgOzZgOtZQPQXQPQAAAAagO1aAPKYgSqZgTNAAAAZATHZQTDaAS8AAAAagSwIwzIGgypIgydGAy9GQydDAy5Ewy4Fgy+AAAADA3RAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADA7EAAAAGQ7BCw6+GA7OAAAAHw6gIQ6aGRTIGBTXCxTBHxStDBTOAAAAIRSpAAAA","crc":36709} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"Mgg49y4QAAAAAAE=","wn":2098,"tow":271513400,"crc":26390} -{"length":16,"flags":17,"ns":399999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"ETj3LhDkBwMZAxg3/oPXFw==","day":25,"tow":271513400,"year":2020,"crc":15838,"minutes":24,"month":3,"seconds":55} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.41370379738511,"preamble":85,"sender":22963,"msg_type":522,"payload":"OPcuECGwlOBl6kJAfUR5G1aSXsAEAPh96GkxwAECWwQPBg==","lat":37.83123404750973,"tow":271513400,"h_accuracy":513,"crc":14207,"lon":-122.28650557367833} -{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"OPcuEPH///8HAAAANgAAAPEAygIPAg==","n":-15,"d":54,"tow":271513400,"h_accuracy":241,"crc":63893,"e":7} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"OPcuEJsAhwBMAEgAcgAG","tow":271513400,"crc":1725,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"OPcuEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271513400,"h_accuracy":0,"crc":62046,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"OPcuEP//","tow":271513400,"crc":28479} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":9,"l2ca_bias":0,"preamble":85,"l2p_bias":0,"sender":22963,"msg_type":117,"payload":"/wAAAAAAAAAA","l1ca_bias":0,"mask":255,"crc":49809,"l1p_bias":0} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"Mgic9y4QAAAAAAE=","wn":2098,"tow":271513500,"crc":58295} -{"length":16,"flags":17,"ns":499999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EZz3LhDkBwMZAxg3/mTNHQ==","day":25,"tow":271513500,"year":2020,"crc":1849,"minutes":24,"month":3,"seconds":55} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.400200993148857,"preamble":85,"sender":22963,"msg_type":522,"payload":"nPcuEIaHlOBl6kJAo0F7G1aSXsCsZoGSc2YxwAECWwQPBg==","lat":37.83123404743587,"tow":271513500,"h_accuracy":513,"crc":51417,"lon":-122.2865055755306} -{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"nPcuEAcAAADz////xf////EAygIPAg==","n":7,"d":-59,"tow":271513500,"h_accuracy":241,"crc":56369,"e":-13} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"nPcuEJsAhwBMAEgAcgAG","tow":271513500,"crc":21513,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"nPcuEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271513500,"h_accuracy":0,"crc":34087,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"nPcuEP//","tow":271513500,"crc":34998} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MggA+C4QAAAAAAE=","wn":2098,"tow":271513600,"crc":25385} -{"length":16,"flags":17,"ns":599999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EQD4LhDkBwMZAxg3/kXDIw==","day":25,"tow":271513600,"year":2020,"crc":32607,"minutes":24,"month":3,"seconds":55} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.391772387916696,"preamble":85,"sender":22963,"msg_type":522,"payload":"APguEGK7neBl6kJAqNNjG1aSXsD6k/kxS2QxwAECWwQPBg==","lat":37.831234051721154,"tow":271513600,"h_accuracy":513,"crc":32756,"lon":-122.28650555371007} -{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"APguEAoAAAACAAAAAwAAAPEAygIPAg==","n":10,"d":3,"tow":271513600,"h_accuracy":241,"crc":32770,"e":2} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"APguEJsAhwBMAEgAcgAG","tow":271513600,"crc":26891,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"APguEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271513600,"h_accuracy":0,"crc":48608,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"APguEP//","tow":271513600,"crc":10248} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"message_type":63,"length":34,"data":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"preamble":85,"sender":22963,"msg_type":30583,"payload":"gwKF9y4QPwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA==","tow":271513477,"crc":9713,"sid":{"sat":131,"code":2}} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"Mghk+C4QAAAAAAE=","wn":2098,"tow":271513700,"crc":2019} -{"length":16,"flags":17,"ns":699999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EWT4LhDkBwMZAxg3/ia5KQ==","day":25,"tow":271513700,"year":2020,"crc":55059,"minutes":24,"month":3,"seconds":55} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.385166366408715,"preamble":85,"sender":22963,"msg_type":522,"payload":"ZPguEDTqaeBl6kJAxV5CG1aSXsCdPlNDmmIxwAECWwQPBg==","lat":37.83123402759193,"tow":271513700,"h_accuracy":513,"crc":21293,"lon":-122.2865055225512} -{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"ZPguEO////8HAAAAAAAAAPEAygIPAg==","n":-17,"d":0,"tow":271513700,"h_accuracy":241,"crc":29645,"e":7} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"ZPguEJsAhwBMAEgAcgAG","tow":271513700,"crc":17828,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"ZPguEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271513700,"h_accuracy":0,"crc":42326,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"ZPguEP//","tow":271513700,"crc":29105} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgjI+C4QAAAAAAE=","wn":2098,"tow":271513800,"crc":43709} -{"length":16,"flags":17,"ns":799999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"Ecj4LhDkBwMZAxg3/gevLw==","day":25,"tow":271513800,"year":2020,"crc":55815,"minutes":24,"month":3,"seconds":55} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.38358143427939,"preamble":85,"sender":22963,"msg_type":522,"payload":"yPguEPnLaOBl6kJA+hAjG1aSXsAvlZNkMmIxwAECWwQPBg==","lat":37.83123402707128,"tow":271513800,"h_accuracy":513,"crc":17143,"lon":-122.28650549339719} -{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"yPguEAAAAAAGAAAAHAAAAPEAygIPAg==","n":0,"d":28,"tow":271513800,"h_accuracy":241,"crc":36800,"e":6} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"yPguEJsAhwBMAEgAcgAG","tow":271513800,"crc":12373,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"yPguEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271513800,"h_accuracy":0,"crc":35980,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"yPguEP//","tow":271513800,"crc":39802} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":237,"states":[{"cn0":214,"mesid":{"sat":5,"code":0}},{"cn0":181,"mesid":{"sat":21,"code":0}},{"cn0":189,"mesid":{"sat":2,"code":0}},{"cn0":167,"mesid":{"sat":31,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":218,"mesid":{"sat":25,"code":0}},{"cn0":207,"mesid":{"sat":12,"code":0}},{"cn0":213,"mesid":{"sat":29,"code":0}},{"cn0":206,"mesid":{"sat":18,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":206,"mesid":{"sat":131,"code":2}},{"cn0":205,"mesid":{"sat":25,"code":1}},{"cn0":188,"mesid":{"sat":12,"code":1}},{"cn0":153,"mesid":{"sat":31,"code":1}},{"cn0":197,"mesid":{"sat":18,"code":1}},{"cn0":196,"mesid":{"sat":29,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":195,"mesid":{"sat":5,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":213,"mesid":{"sat":11,"code":3}},{"cn0":179,"mesid":{"sat":9,"code":3}},{"cn0":173,"mesid":{"sat":20,"code":3}},{"cn0":208,"mesid":{"sat":5,"code":3}},{"cn0":208,"mesid":{"sat":10,"code":3}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":181,"mesid":{"sat":4,"code":3}},{"cn0":202,"mesid":{"sat":21,"code":3}},{"cn0":171,"mesid":{"sat":9,"code":4}},{"cn0":205,"mesid":{"sat":20,"code":4}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":199,"mesid":{"sat":11,"code":4}},{"cn0":195,"mesid":{"sat":5,"code":4}},{"cn0":188,"mesid":{"sat":0,"code":4}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":176,"mesid":{"sat":4,"code":4}},{"cn0":200,"mesid":{"sat":35,"code":12}},{"cn0":169,"mesid":{"sat":26,"code":12}},{"cn0":157,"mesid":{"sat":34,"code":12}},{"cn0":189,"mesid":{"sat":24,"code":12}},{"cn0":157,"mesid":{"sat":25,"code":12}},{"cn0":184,"mesid":{"sat":12,"code":12}},{"cn0":184,"mesid":{"sat":19,"code":12}},{"cn0":191,"mesid":{"sat":22,"code":12}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":210,"mesid":{"sat":12,"code":13}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":196,"mesid":{"sat":12,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":193,"mesid":{"sat":25,"code":14}},{"cn0":191,"mesid":{"sat":11,"code":14}},{"cn0":206,"mesid":{"sat":24,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":161,"mesid":{"sat":31,"code":14}},{"cn0":154,"mesid":{"sat":33,"code":14}},{"cn0":201,"mesid":{"sat":25,"code":20}},{"cn0":215,"mesid":{"sat":24,"code":20}},{"cn0":194,"mesid":{"sat":11,"code":20}},{"cn0":173,"mesid":{"sat":31,"code":20}},{"cn0":206,"mesid":{"sat":12,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":169,"mesid":{"sat":33,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}}],"preamble":85,"sender":22963,"msg_type":97,"payload":"BQDWFQC1AgC9HwCnAAAAAAAAGQDaDADPHQDVEgDOAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwLOGQHNDAG8HwGZEgHFHQHEAAAABQHDAAAAAAAAAAAAAAAACwPVCQOzFAOtBQPQCgPQAAAABAO1FQPKCQSrFATNAAAACwTHBQTDAAS8AAAABASwIwzIGgypIgydGAy9GQydDAy4Ewy4Fgy/AAAADA3SAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADA7EAAAAGQ7BCw6/GA7OAAAAHw6hIQ6aGRTJGBTXCxTCHxStDBTOAAAAIRSpAAAA","crc":59629} -{"length":136,"preamble":85,"sender":22963,"msg_type":151,"payload":"AgAaHgUALDUMAFEtFQB9GRkAbUYaAKEBHQChNx8AlQ4EAxYWBQMyIQYDTggJA18OCgNxKQsDmCUMA6oDEwMiBxQDCzEVA5UlDAyUKRMMIyAUDA8CFgxDIxgMgiMZDJ0OGgxnFR0MLAAiDI4RIwwiLQsOizIMDg88GA5sNhkOlykfDlURIQ4fDw==","crc":41336,"azel":[{"el":30,"az":26,"sid":{"sat":2,"code":0}},{"el":53,"az":44,"sid":{"sat":5,"code":0}},{"el":45,"az":81,"sid":{"sat":12,"code":0}},{"el":25,"az":125,"sid":{"sat":21,"code":0}},{"el":70,"az":109,"sid":{"sat":25,"code":0}},{"el":1,"az":161,"sid":{"sat":26,"code":0}},{"el":55,"az":161,"sid":{"sat":29,"code":0}},{"el":14,"az":149,"sid":{"sat":31,"code":0}},{"el":22,"az":22,"sid":{"sat":4,"code":3}},{"el":33,"az":50,"sid":{"sat":5,"code":3}},{"el":8,"az":78,"sid":{"sat":6,"code":3}},{"el":14,"az":95,"sid":{"sat":9,"code":3}},{"el":41,"az":113,"sid":{"sat":10,"code":3}},{"el":37,"az":152,"sid":{"sat":11,"code":3}},{"el":3,"az":170,"sid":{"sat":12,"code":3}},{"el":7,"az":34,"sid":{"sat":19,"code":3}},{"el":49,"az":11,"sid":{"sat":20,"code":3}},{"el":37,"az":149,"sid":{"sat":21,"code":3}},{"el":41,"az":148,"sid":{"sat":12,"code":12}},{"el":32,"az":35,"sid":{"sat":19,"code":12}},{"el":2,"az":15,"sid":{"sat":20,"code":12}},{"el":35,"az":67,"sid":{"sat":22,"code":12}},{"el":35,"az":130,"sid":{"sat":24,"code":12}},{"el":14,"az":157,"sid":{"sat":25,"code":12}},{"el":21,"az":103,"sid":{"sat":26,"code":12}},{"el":0,"az":44,"sid":{"sat":29,"code":12}},{"el":17,"az":142,"sid":{"sat":34,"code":12}},{"el":45,"az":34,"sid":{"sat":35,"code":12}},{"el":50,"az":139,"sid":{"sat":11,"code":14}},{"el":60,"az":15,"sid":{"sat":12,"code":14}},{"el":54,"az":108,"sid":{"sat":24,"code":14}},{"el":41,"az":151,"sid":{"sat":25,"code":14}},{"el":17,"az":85,"sid":{"sat":31,"code":14}},{"el":15,"az":31,"sid":{"sat":33,"code":14}}]} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"Mggs+S4QAAAAAAE=","wn":2098,"tow":271513900,"crc":13846} -{"length":16,"flags":17,"ns":899999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"ESz5LhDkBwMZAxg3/uikNQ==","day":25,"tow":271513900,"year":2020,"crc":14938,"minutes":24,"month":3,"seconds":55} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.37803749253321,"preamble":85,"sender":22963,"msg_type":522,"payload":"LPkuEKtwcOBl6kJANIsLG1aSXsCMF6sQx2AxwAECWwQPBg==","lat":37.83123403063049,"tow":271513900,"h_accuracy":513,"crc":56521,"lon":-122.2865054714901} -{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"LPkuEAgAAAAAAAAA7P////EAygIPAg==","n":8,"d":-20,"tow":271513900,"h_accuracy":241,"crc":33963,"e":0} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"LPkuEJsAhwBMAEgAcgAG","tow":271513900,"crc":13193,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"LPkuEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271513900,"h_accuracy":0,"crc":64345,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"LPkuEP//","tow":271513900,"crc":48306} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":249,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":40,"i":110564030},"flags":15,"cn0":213,"P":1051981639,"D":{"f":106,"i":-183},"lock":15,"sid":{"sat":5,"code":0}},{"L":{"f":208,"i":121826913},"flags":15,"cn0":181,"P":1159144569,"D":{"f":240,"i":2173},"lock":15,"sid":{"sat":21,"code":0}},{"L":{"f":59,"i":123335848},"flags":15,"cn0":189,"P":1173501199,"D":{"f":164,"i":-2481},"lock":15,"sid":{"sat":2,"code":0}},{"L":{"f":41,"i":128737984},"flags":15,"cn0":167,"P":1224901214,"D":{"f":168,"i":-395},"lock":15,"sid":{"sat":31,"code":0}},{"L":{"f":21,"i":107822176},"flags":15,"cn0":218,"P":1025893814,"D":{"f":112,"i":-1126},"lock":15,"sid":{"sat":25,"code":0}},{"L":{"f":245,"i":114095779},"flags":15,"cn0":207,"P":1085585144,"D":{"f":41,"i":-2968},"lock":15,"sid":{"sat":12,"code":0}},{"L":{"f":11,"i":110762393},"flags":15,"cn0":213,"P":1053869056,"D":{"f":206,"i":1483},"lock":15,"sid":{"sat":29,"code":0}},{"L":{"f":142,"i":84017300},"flags":15,"cn0":205,"P":1025893878,"D":{"f":153,"i":-878},"lock":15,"sid":{"sat":25,"code":1}},{"L":{"f":47,"i":88905834},"flags":15,"cn0":188,"P":1085585071,"D":{"f":179,"i":-2314},"lock":15,"sid":{"sat":12,"code":1}},{"L":{"f":193,"i":100315314},"flags":15,"cn0":154,"P":1224901127,"D":{"f":253,"i":-309},"lock":15,"sid":{"sat":31,"code":1}},{"L":{"f":10,"i":86308360},"flags":15,"cn0":195,"P":1053868974,"D":{"f":90,"i":1156},"lock":15,"sid":{"sat":29,"code":1}},{"L":{"f":253,"i":86153818},"flags":15,"cn0":195,"P":1051981570,"D":{"f":245,"i":-143},"lock":15,"sid":{"sat":5,"code":1}},{"L":{"f":50,"i":112937604},"flags":15,"cn0":213,"P":1056736315,"D":{"f":213,"i":1166},"lock":15,"sid":{"sat":11,"code":3}},{"L":{"f":22,"i":123333117},"flags":15,"cn0":179,"P":1154816289,"D":{"f":231,"i":-4409},"lock":15,"sid":{"sat":9,"code":3}}],"payload":"kPkuEAAAAAAyCEBH97M+vhKXBihJ/2rVDw8FAHkkF0Vh7kIH0H0I8LUPDxUADzXyRaj0WQc7T/akvQ8PAgBeggJJwGKsByl1/qinDw8fALblJT1gPG0GFZr7cNoPDxkA+La0QKP2zAb1aPQpzw8PDAAAxNA+mRmaBgvLBc7VDw8dAPblJT2UAAIFjpL8mc0PDxkBr7a0QGqYTAUv9vazvA8PDAEHggJJsrD6BcHL/v2aDw8fAa7D0D4I9iQFCoQEWsMPDx0BAvezPlqaIgX9cf/1ww8PBQE7hPw+hEq7BjKOBNXVDw8LAyEZ1UT96VkHFsfu57MPDwkD","header":{"n_obs":64,"t":{"ns_residual":0,"wn":2098,"tow":271514000}},"crc":8480} -{"length":249,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":20,"i":109770313},"flags":15,"cn0":173,"P":1026379757,"D":{"f":14,"i":-1210},"lock":15,"sid":{"sat":20,"code":3}},{"L":{"f":234,"i":114860787},"flags":15,"cn0":208,"P":1074353946,"D":{"f":86,"i":2199},"lock":15,"sid":{"sat":5,"code":3}},{"L":{"f":203,"i":111602884},"flags":15,"cn0":208,"P":1046820510,"D":{"f":171,"i":-3044},"lock":15,"sid":{"sat":10,"code":3}},{"L":{"f":209,"i":120438224},"flags":15,"cn0":181,"P":1124549120,"D":{"f":209,"i":-1316},"lock":15,"sid":{"sat":4,"code":3}},{"L":{"f":133,"i":113420244},"flags":15,"cn0":202,"P":1059763753,"D":{"f":159,"i":1622},"lock":15,"sid":{"sat":21,"code":3}},{"L":{"f":100,"i":95925767},"flags":15,"cn0":171,"P":1154816374,"D":{"f":126,"i":-3428},"lock":15,"sid":{"sat":9,"code":4}},{"L":{"f":230,"i":85376945},"flags":15,"cn0":205,"P":1026380122,"D":{"f":73,"i":-941},"lock":15,"sid":{"sat":20,"code":4}},{"L":{"f":40,"i":87840369},"flags":15,"cn0":199,"P":1056736599,"D":{"f":109,"i":908},"lock":15,"sid":{"sat":11,"code":4}},{"L":{"f":42,"i":89336172},"flags":15,"cn0":195,"P":1074354258,"D":{"f":183,"i":1709},"lock":15,"sid":{"sat":5,"code":4}},{"L":{"f":18,"i":93674165},"flags":15,"cn0":176,"P":1124549375,"D":{"f":86,"i":-1023},"lock":15,"sid":{"sat":4,"code":4}},{"L":{"f":248,"i":121579542},"flags":15,"cn0":200,"P":1167403371,"D":{"f":105,"i":-1500},"lock":15,"sid":{"sat":35,"code":12}},{"L":{"f":106,"i":129211116},"flags":15,"cn0":170,"P":1240681861,"D":{"f":3,"i":-3008},"lock":15,"sid":{"sat":26,"code":12}},{"L":{"f":246,"i":132946603},"flags":15,"cn0":158,"P":1276549633,"D":{"f":210,"i":2247},"lock":15,"sid":{"sat":34,"code":12}},{"L":{"f":46,"i":125150974},"flags":15,"cn0":189,"P":1201696452,"D":{"f":121,"i":-1303},"lock":15,"sid":{"sat":24,"code":12}}],"payload":"kPkuEAAAAAAyCEHtTy09SfaKBhRG+w6tDw8UAxpXCUDzotgG6pcIVtAPDwUDnjZlPsTspgbLHPSr0A8PCgMAQgdD0L0tB9Hc+tG1Dw8EAym2Kj/Up8IGhVYGn8oPDxUDdhnVRAe2twVknPJ+qw8PCQRaUS09sb8WBeZT/EnNDw8UBFeF/D5xVjwFKIwDbccPDwsEUlgJQGwpUwUqrQa3ww8PBQT/QgdDtVqVBRIB/FawDw8EBGsplUUWKD8H+CT6acgPDyMMhU3zSeyaswdqQPQDqg8PGgwBmhZMq5rsB/bHCNKeDw8iDMRuoEf+pnUHLun6eb0PDxgM","header":{"n_obs":65,"t":{"ns_residual":0,"wn":2098,"tow":271514000}},"crc":49216} -{"length":249,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":106,"i":134672511},"flags":15,"cn0":157,"P":1293121963,"D":{"f":30,"i":1326},"lock":15,"sid":{"sat":25,"code":12}},{"L":{"f":247,"i":121100380},"flags":15,"cn0":184,"P":1162802719,"D":{"f":41,"i":1612},"lock":15,"sid":{"sat":12,"code":12}},{"L":{"f":145,"i":124514874},"flags":15,"cn0":184,"P":1195588588,"D":{"f":38,"i":-289},"lock":15,"sid":{"sat":19,"code":12}},{"L":{"f":14,"i":124705016},"flags":15,"cn0":191,"P":1197414317,"D":{"f":29,"i":2387},"lock":15,"sid":{"sat":22,"code":12}},{"L":{"f":220,"i":93642504},"flags":15,"cn0":210,"P":1162802656,"D":{"f":8,"i":1246},"lock":15,"sid":{"sat":12,"code":13}},{"L":{"f":253,"i":116425890},"flags":15,"cn0":196,"P":1107755483,"D":{"f":158,"i":-1028},"lock":15,"sid":{"sat":12,"code":14}},{"L":{"f":219,"i":132475026},"flags":15,"cn0":193,"P":1260457896,"D":{"f":185,"i":1089},"lock":15,"sid":{"sat":25,"code":14}},{"L":{"f":7,"i":125422738},"flags":15,"cn0":190,"P":1193357622,"D":{"f":243,"i":1047},"lock":15,"sid":{"sat":11,"code":14}},{"L":{"f":96,"i":118413668},"flags":15,"cn0":206,"P":1126668469,"D":{"f":207,"i":-1745},"lock":15,"sid":{"sat":24,"code":14}},{"L":{"f":123,"i":143320988},"flags":15,"cn0":161,"P":1363653860,"D":{"f":139,"i":-3175},"lock":15,"sid":{"sat":31,"code":14}},{"L":{"f":119,"i":144523903},"flags":15,"cn0":153,"P":1375099205,"D":{"f":176,"i":-2145},"lock":15,"sid":{"sat":33,"code":14}},{"L":{"f":42,"i":101506837},"flags":15,"cn0":200,"P":1260457865,"D":{"f":174,"i":833},"lock":15,"sid":{"sat":25,"code":20}},{"L":{"f":167,"i":90732614},"flags":15,"cn0":215,"P":1126669005,"D":{"f":133,"i":-1337},"lock":15,"sid":{"sat":24,"code":20}},{"L":{"f":194,"i":96103114},"flags":15,"cn0":194,"P":1193357425,"D":{"f":42,"i":801},"lock":15,"sid":{"sat":11,"code":20}}],"payload":"kPkuEAAAAAAyCEKreRNNf/AGCGouBR6dDw8ZDB/2TkVc2DcH90wGKbgPDwwM7DtDRzryaweR3/4muA8PEwytF19H+NhuBw5TCR2/Dw8WDOD1TkUI35QF3N4ECNIPDwwN2wEHQqKE8Ab9/PuexA8PDA6oDyFLkmjlB9tBBLnBDw8ZDjYxIUeSzHkHBxcE874PDwsOtZgnQ2TZDgdgL/nPzg8PGA7ktEdRnOeKCHuZ84uhDw8fDkVZ9lF/Qp0Id5/3sJkPDyEOiQ8hSxXfDAYqQQOuyA8PGRTNmidDRnhoBafH+oXXDw8YFHEwIUfKaroFwiEDKsIPDwsU","header":{"n_obs":66,"t":{"ns_residual":0,"wn":2098,"tow":271514000}},"crc":36103} -{"length":62,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":72,"i":109817422},"flags":15,"cn0":173,"P":1363653916,"D":{"f":26,"i":-2432},"lock":15,"sid":{"sat":31,"code":20}},{"L":{"f":141,"i":89209479},"flags":15,"cn0":206,"P":1107755338,"D":{"f":102,"i":-788},"lock":15,"sid":{"sat":12,"code":20}},{"L":{"f":94,"i":110739165},"flags":15,"cn0":169,"P":1375099165,"D":{"f":77,"i":-1641},"lock":15,"sid":{"sat":33,"code":20}}],"payload":"kPkuEAAAAAAyCEMctUdRTq6LBkiA9hqtDw8fFEoBB0KHOlEFjez8Zs4PDwwUHVn2Ud2+mQZel/lNqQ8PIRQ=","header":{"n_obs":67,"t":{"ns_residual":0,"wn":2098,"tow":271514000}},"crc":43274} -{"length":9,"l2ca_bias":0,"preamble":85,"l2p_bias":0,"sender":22963,"msg_type":117,"payload":"/wAAAAAAAAAA","l1ca_bias":0,"mask":255,"crc":49809,"l1p_bias":0} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgiQ+S4QAAAAAAE=","wn":2098,"tow":271514000,"crc":51382} -{"length":16,"flags":17,"ns":999999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EZD5LhDkBwMZAxg3/smaOw==","day":25,"tow":271514000,"year":2020,"crc":30595,"minutes":24,"month":3,"seconds":55} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.371896662934383,"preamble":85,"sender":22963,"msg_type":522,"payload":"kPkuEPYhaOBl6kJAug8JG1aSXsByy6SeNF8xwAECWwQPBg==","lat":37.83123402676203,"tow":271514000,"h_accuracy":513,"crc":53697,"lon":-122.28650546917825} -{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"kPkuEP/////5////+f////EAygIPAg==","n":-1,"d":-7,"tow":271514000,"h_accuracy":241,"crc":48875,"e":-7} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"kPkuEJsAhwBMAEgAcgAG","tow":271514000,"crc":2290,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"kPkuEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271514000,"h_accuracy":0,"crc":28613,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"kPkuEP//","tow":271514000,"crc":19709} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":4,"flags":2147616000,"preamble":85,"sender":22963,"msg_type":65535,"payload":"AAUCgA==","crc":40942} -{"length":24,"z":3890655.0240602265,"preamble":85,"sender":22963,"msg_type":72,"payload":"UO0a3iqORMHK1UJhIkRQwc9nFIPvrk1B","crc":2168,"x":-2694229.735196747,"y":-4264073.519704292} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"bWFpbgAAAAAAAAAAAAAAAAAAAAAAAAx1AAA=","name":"main\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":47991,"stack_free":29964,"cpu":0} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"aWRsZQAAAAAAAAAAAAAAAAAAAABIAXwAAAA=","name":"idle\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":35155,"stack_free":124,"cpu":328} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"cnBtc2cAAAAAAAAAAAAAAAAAAAABAAQOAAA=","name":"rpmsg\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":38839,"stack_free":3588,"cpu":1} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"U0JQAAAAAAAAAAAAAAAAAAAAAAAAAPz/AAA=","name":"SBP\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":51784,"stack_free":65532,"cpu":0} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"TkFQAAAAAAAAAAAAAAAAAAAAAAAAAASAAAA=","name":"NAP\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":33651,"stack_free":32772,"cpu":0} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"bWFuYWdlIFBWAAAAAAAAAAAAAAAAACwEAAA=","name":"manage PV\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":61814,"stack_free":1068,"cpu":0} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"SU1VAAAAAAAAAAAAAAAAAAAAAAAAAPQHAAA=","name":"IMU\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":14252,"stack_free":2036,"cpu":0} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"SU1VIGF1eAAAAAAAAAAAAAAAAAAAAEwIAAA=","name":"IMU aux\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":18976,"stack_free":2124,"cpu":0} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"bmRiAAAAAAAAAAAAAAAAAAAAAAAAAFAMAAA=","name":"ndb\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":26120,"stack_free":3152,"cpu":0} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"TkFQIFRyYWNraW5nAAAAAAAAAAAlAdR3AAA=","name":"NAP Tracking\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":26625,"stack_free":30676,"cpu":293} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"ZGVjb2RlAAAAAAAAAAAAAAAAAAAJANQGAAA=","name":"decode\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":55602,"stack_free":1748,"cpu":9} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"bWFuYWdlIGFjcQAAAAAAAAAAAADLAKR3AAA=","name":"manage acq\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":38636,"stack_free":30628,"cpu":203} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"c3lzdGVtIG1vbml0b3IAAAAAAAAAACwGAAA=","name":"system monitor\u0000\u0000\u0000\u0000\u0000\u0000","crc":58531,"stack_free":1580,"cpu":0} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"V2F0Y2hkb2cAAAAAAAAAAAAAAAAAAOQDAAA=","name":"Watchdog\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":44438,"stack_free":996,"cpu":0} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"c3RhcmxpbmcAAAAAAAAAAAAAAACYAPz/AAA=","name":"starling\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":28732,"stack_free":65532,"cpu":152} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"bWVfY2FsY19wdnQAAAAAAAAAAAAJAIwjAAA=","name":"me_calc_pvt\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":57561,"stack_free":9100,"cpu":9} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"UFBTAAAAAAAAAAAAAAAAAAAAAAAAAEgHAAA=","name":"PPS\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":38576,"stack_free":1864,"cpu":0} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"c3BlY3RydW0gYW5hbHl6ZXIAAAAAANQPAAA=","name":"spectrum analyzer\u0000\u0000\u0000","crc":50933,"stack_free":4052,"cpu":0} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"Mgj0+S4QAAAAAAE=","wn":2098,"tow":271514100,"crc":44156} -{"length":16,"flags":17,"ns":99999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EfT5LhDkBwMZAxg4/uD1BQ==","day":25,"tow":271514100,"year":2020,"crc":59915,"minutes":24,"month":3,"seconds":56} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.37164272117505,"preamble":85,"sender":22963,"msg_type":522,"payload":"9PkuEPcWW+Bl6kJA1DMBG1aSXsBIPjX6I18xwAECWwQPBg==","lat":37.831234020688434,"tow":271514100,"h_accuracy":513,"crc":14225,"lon":-122.28650546185901} -{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"9PkuEAIAAAD8////EwAAAPEAygIPAg==","n":2,"d":19,"tow":271514100,"h_accuracy":241,"crc":31130,"e":-4} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"9PkuEJsAhwBMAEgAcgAG","tow":271514100,"crc":9309,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"9PkuEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271514100,"h_accuracy":0,"crc":30579,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"9PkuEP//","tow":271514100,"crc":5444} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MghY+i4QAAAAAAE=","wn":2098,"tow":271514200,"crc":51543} -{"length":16,"flags":17,"ns":199999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EVj6LhDkBwMZAxg4/sHrCw==","day":25,"tow":271514200,"year":2020,"crc":25117,"minutes":24,"month":3,"seconds":56} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.37034784410003,"preamble":85,"sender":22963,"msg_type":522,"payload":"WPouEHSMSOBl6kJA4x7kGlaSXsDCjcYdz14xwAECWwQPBg==","lat":37.83123401205458,"tow":271514200,"h_accuracy":513,"crc":48947,"lon":-122.28650543477447} -{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"WPouEAAAAAAKAAAAAQAAAPEAygIPAg==","n":0,"d":1,"tow":271514200,"h_accuracy":241,"crc":14781,"e":10} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"WPouEJsAhwBMAEgAcgAG","tow":271514200,"crc":56335,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"WPouEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271514200,"h_accuracy":0,"crc":12434,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"WPouEP//","tow":271514200,"crc":4445} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"Mgi8+i4QAAAAAAE=","wn":2098,"tow":271514300,"crc":4655} -{"length":16,"flags":17,"ns":299999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"Ebz6LhDkBwMZAxg4/qLhEQ==","day":25,"tow":271514300,"year":2020,"crc":33835,"minutes":24,"month":3,"seconds":56} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.368136465362124,"preamble":85,"sender":22963,"msg_type":522,"payload":"vPouEEKxQuBl6kJAkBrmGlaSXsADMv8wPl4xwAECWwQPBg==","lat":37.83123400932756,"tow":271514300,"h_accuracy":513,"crc":50773,"lon":-122.28650543662138} -{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"vPouEAMAAAD5/////v////EAygIPAg==","n":3,"d":-2,"tow":271514300,"h_accuracy":241,"crc":28854,"e":-7} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"vPouEJsAhwBMAEgAcgAG","tow":271514300,"crc":42162,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"vPouEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271514300,"h_accuracy":0,"crc":37553,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"vPouEP//","tow":271514300,"crc":40132} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":237,"states":[{"cn0":214,"mesid":{"sat":5,"code":0}},{"cn0":181,"mesid":{"sat":21,"code":0}},{"cn0":189,"mesid":{"sat":2,"code":0}},{"cn0":167,"mesid":{"sat":31,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":218,"mesid":{"sat":25,"code":0}},{"cn0":207,"mesid":{"sat":12,"code":0}},{"cn0":213,"mesid":{"sat":29,"code":0}},{"cn0":206,"mesid":{"sat":18,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":206,"mesid":{"sat":131,"code":2}},{"cn0":205,"mesid":{"sat":25,"code":1}},{"cn0":188,"mesid":{"sat":12,"code":1}},{"cn0":154,"mesid":{"sat":31,"code":1}},{"cn0":197,"mesid":{"sat":18,"code":1}},{"cn0":196,"mesid":{"sat":29,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":195,"mesid":{"sat":5,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":213,"mesid":{"sat":100,"code":3}},{"cn0":179,"mesid":{"sat":98,"code":3}},{"cn0":173,"mesid":{"sat":102,"code":3}},{"cn0":208,"mesid":{"sat":101,"code":3}},{"cn0":208,"mesid":{"sat":93,"code":3}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":181,"mesid":{"sat":106,"code":3}},{"cn0":202,"mesid":{"sat":104,"code":3}},{"cn0":171,"mesid":{"sat":98,"code":4}},{"cn0":205,"mesid":{"sat":102,"code":4}},{"cn0":67,"mesid":{"sat":93,"code":4}},{"cn0":199,"mesid":{"sat":100,"code":4}},{"cn0":196,"mesid":{"sat":101,"code":4}},{"cn0":188,"mesid":{"sat":104,"code":4}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":175,"mesid":{"sat":106,"code":4}},{"cn0":200,"mesid":{"sat":35,"code":12}},{"cn0":170,"mesid":{"sat":26,"code":12}},{"cn0":157,"mesid":{"sat":34,"code":12}},{"cn0":189,"mesid":{"sat":24,"code":12}},{"cn0":158,"mesid":{"sat":25,"code":12}},{"cn0":185,"mesid":{"sat":12,"code":12}},{"cn0":184,"mesid":{"sat":19,"code":12}},{"cn0":191,"mesid":{"sat":22,"code":12}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":210,"mesid":{"sat":12,"code":13}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":196,"mesid":{"sat":12,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":193,"mesid":{"sat":25,"code":14}},{"cn0":190,"mesid":{"sat":11,"code":14}},{"cn0":206,"mesid":{"sat":24,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":160,"mesid":{"sat":31,"code":14}},{"cn0":154,"mesid":{"sat":33,"code":14}},{"cn0":201,"mesid":{"sat":25,"code":20}},{"cn0":215,"mesid":{"sat":24,"code":20}},{"cn0":194,"mesid":{"sat":11,"code":20}},{"cn0":173,"mesid":{"sat":31,"code":20}},{"cn0":206,"mesid":{"sat":12,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":169,"mesid":{"sat":33,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}}],"preamble":85,"sender":22963,"msg_type":97,"payload":"BQDWFQC1AgC9HwCnAAAAAAAAGQDaDADPHQDVEgDOAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwLOGQHNDAG8HwGaEgHFHQHEAAAABQHDAAAAAAAAAAAAAAAAZAPVYgOzZgOtZQPQXQPQAAAAagO1aAPKYgSrZgTNXQRDZATHZQTEaAS8AAAAagSvIwzIGgyqIgydGAy9GQyeDAy5Ewy4Fgy/AAAADA3SAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADA7EAAAAGQ7BCw6+GA7OAAAAHw6gIQ6aGRTJGBTXCxTCHxStDBTOAAAAIRSpAAAA","crc":51226} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"Mggg+y4QAAAAAAE=","wn":2098,"tow":271514400,"crc":3232} -{"length":16,"flags":17,"ns":399999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"ESD7LhDkBwMZAxg4/oPXFw==","day":25,"tow":271514400,"year":2020,"crc":10022,"minutes":24,"month":3,"seconds":56} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.36538563346552,"preamble":85,"sender":22963,"msg_type":522,"payload":"IPsuEABqJOBl6kJARVjhGlaSXsCkKbLpiV0xwAECWwQPBg==","lat":37.831233995228104,"tow":271514400,"h_accuracy":513,"crc":56297,"lon":-122.28650543218926} -{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"IPsuEPv///8FAAAA7P////EAygIPAg==","n":-5,"d":-20,"tow":271514400,"h_accuracy":241,"crc":28201,"e":5} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"IPsuEJsAhwBMAEgAcgAG","tow":271514400,"crc":31164,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"IPsuEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271514400,"h_accuracy":0,"crc":47478,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"IPsuEP//","tow":271514400,"crc":62418} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":51,"text":"GLO L2OF ME 1 [+1311ms] low CN0 too long, dropping","preamble":85,"sender":22963,"msg_type":1025,"payload":"BkdMTyBMMk9GIE1FIDEgWysxMzExbXNdIGxvdyBDTjAgdG9vIGxvbmcsIGRyb3BwaW5n","crc":11977,"level":6} -{"length":9,"l2ca_bias":0,"preamble":85,"l2p_bias":0,"sender":22963,"msg_type":117,"payload":"/wAAAAAAAAAA","l1ca_bias":0,"mask":255,"crc":49809,"l1p_bias":0} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgiE+y4QAAAAAAE=","wn":2098,"tow":271514500,"crc":34817} -{"length":16,"flags":17,"ns":499999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EYT7LhDkBwMZAxg4/mTNHQ==","day":25,"tow":271514500,"year":2020,"crc":7617,"minutes":24,"month":3,"seconds":56} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.366364351884705,"preamble":85,"sender":22963,"msg_type":522,"payload":"hPsuEJPtLuBl6kJAYi/qGlaSXsDaw90Nyl0xwAECWwQPBg==","lat":37.83123400012405,"tow":271514500,"h_accuracy":513,"crc":24487,"lon":-122.28650544042242} -{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"hPsuEAQAAAAGAAAAFgAAAPEAygIPAg==","n":4,"d":22,"tow":271514500,"h_accuracy":241,"crc":43301,"e":6} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"hPsuEJsAhwBMAEgAcgAG","tow":271514500,"crc":11016,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"hPsuEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271514500,"h_accuracy":0,"crc":52751,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"hPsuEP//","tow":271514500,"crc":5211} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"Mgjo+y4QAAAAAAE=","wn":2098,"tow":271514600,"crc":50484} -{"length":16,"flags":17,"ns":599999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"Eej7LhDkBwMZAxg4/kXDIw==","day":25,"tow":271514600,"year":2020,"crc":21327,"minutes":24,"month":3,"seconds":56} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.366709609626707,"preamble":85,"sender":22963,"msg_type":522,"payload":"6PsuEJYVAuBl6kJAzPvoGlaSXsDDeVSu4F0xwAECWwQPBg==","lat":37.83123397924207,"tow":271514600,"h_accuracy":513,"crc":59804,"lon":-122.28650543930343} -{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"6PsuEPT///8GAAAACgAAAPEAygIPAg==","n":-12,"d":10,"tow":271514600,"h_accuracy":241,"crc":45763,"e":6} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"6PsuEJsAhwBMAEgAcgAG","tow":271514600,"crc":8418,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"6PsuEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271514600,"h_accuracy":0,"crc":34842,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"6PsuEP//","tow":271514600,"crc":16544} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"message_type":3,"length":34,"data":[87,255,0,31,253,127,247,255,0,23,255,255,231,255,127,240,0,255,240,0,232,206,246,231,239,229,112],"preamble":85,"sender":22963,"msg_type":30583,"payload":"gwJp+y4QA1f/AB/9f/f/ABf//+f/f/AA//AA6M725+/lcA==","tow":271514473,"crc":34358,"sid":{"sat":131,"code":2}} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MghM/C4QAAAAAAE=","wn":2098,"tow":271514700,"crc":34445} -{"length":16,"flags":17,"ns":699999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EUz8LhDkBwMZAxg4/ia5KQ==","day":25,"tow":271514700,"year":2020,"crc":62750,"minutes":24,"month":3,"seconds":56} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.356952298039918,"preamble":85,"sender":22963,"msg_type":522,"payload":"TPwuECwIDOBl6kJAmPoEG1aSXsBBUM45YVsxwAECWwQPBg==","lat":37.831233983874284,"tow":271514700,"h_accuracy":513,"crc":11894,"lon":-122.28650546537608} -{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"TPwuEAoAAADv////8v////EAygIPAg==","n":10,"d":-14,"tow":271514700,"h_accuracy":241,"crc":16212,"e":-17} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"TPwuEJsAhwBMAEgAcgAG","tow":271514700,"crc":592,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"TPwuEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271514700,"h_accuracy":0,"crc":63203,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"TPwuEP//","tow":271514700,"crc":49405} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"Mgiw/C4QAAAAAAE=","wn":2098,"tow":271514800,"crc":10228} -{"length":16,"flags":17,"ns":799999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EbD8LhDkBwMZAxg4/gevLw==","day":25,"tow":271514800,"year":2020,"crc":40073,"minutes":24,"month":3,"seconds":56} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.343105016888877,"preamble":85,"sender":22963,"msg_type":522,"payload":"sPwuEAXECeBl6kJAnJYJG1aSXsCaofq61VcxwAECWwQPBg==","lat":37.83123398281899,"tow":271514800,"h_accuracy":513,"crc":45198,"lon":-122.28650546966895} -{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"sPwuEAsAAAD+////4/////EAygIPAg==","n":11,"d":-29,"tow":271514800,"h_accuracy":241,"crc":51430,"e":-2} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"sPwuEJsAhwBMAEgAcgAG","tow":271514800,"crc":4898,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"sPwuEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271514800,"h_accuracy":0,"crc":46885,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"sPwuEP//","tow":271514800,"crc":23202} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":237,"states":[{"cn0":213,"mesid":{"sat":5,"code":0}},{"cn0":180,"mesid":{"sat":21,"code":0}},{"cn0":189,"mesid":{"sat":2,"code":0}},{"cn0":167,"mesid":{"sat":31,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":218,"mesid":{"sat":25,"code":0}},{"cn0":207,"mesid":{"sat":12,"code":0}},{"cn0":213,"mesid":{"sat":29,"code":0}},{"cn0":206,"mesid":{"sat":18,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":205,"mesid":{"sat":131,"code":2}},{"cn0":205,"mesid":{"sat":25,"code":1}},{"cn0":188,"mesid":{"sat":12,"code":1}},{"cn0":154,"mesid":{"sat":31,"code":1}},{"cn0":197,"mesid":{"sat":18,"code":1}},{"cn0":196,"mesid":{"sat":29,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":195,"mesid":{"sat":5,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":213,"mesid":{"sat":11,"code":3}},{"cn0":179,"mesid":{"sat":9,"code":3}},{"cn0":174,"mesid":{"sat":20,"code":3}},{"cn0":208,"mesid":{"sat":5,"code":3}},{"cn0":207,"mesid":{"sat":10,"code":3}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":181,"mesid":{"sat":4,"code":3}},{"cn0":203,"mesid":{"sat":21,"code":3}},{"cn0":171,"mesid":{"sat":9,"code":4}},{"cn0":205,"mesid":{"sat":20,"code":4}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":199,"mesid":{"sat":11,"code":4}},{"cn0":195,"mesid":{"sat":5,"code":4}},{"cn0":188,"mesid":{"sat":0,"code":4}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":175,"mesid":{"sat":4,"code":4}},{"cn0":200,"mesid":{"sat":35,"code":12}},{"cn0":170,"mesid":{"sat":26,"code":12}},{"cn0":156,"mesid":{"sat":34,"code":12}},{"cn0":189,"mesid":{"sat":24,"code":12}},{"cn0":157,"mesid":{"sat":25,"code":12}},{"cn0":184,"mesid":{"sat":12,"code":12}},{"cn0":184,"mesid":{"sat":19,"code":12}},{"cn0":191,"mesid":{"sat":22,"code":12}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":210,"mesid":{"sat":12,"code":13}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":196,"mesid":{"sat":12,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":193,"mesid":{"sat":25,"code":14}},{"cn0":190,"mesid":{"sat":11,"code":14}},{"cn0":205,"mesid":{"sat":24,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":159,"mesid":{"sat":31,"code":14}},{"cn0":153,"mesid":{"sat":33,"code":14}},{"cn0":201,"mesid":{"sat":25,"code":20}},{"cn0":215,"mesid":{"sat":24,"code":20}},{"cn0":194,"mesid":{"sat":11,"code":20}},{"cn0":173,"mesid":{"sat":31,"code":20}},{"cn0":206,"mesid":{"sat":12,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":169,"mesid":{"sat":33,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}}],"preamble":85,"sender":22963,"msg_type":97,"payload":"BQDVFQC0AgC9HwCnAAAAAAAAGQDaDADPHQDVEgDOAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwLNGQHNDAG8HwGaEgHFHQHEAAAABQHDAAAAAAAAAAAAAAAACwPVCQOzFAOuBQPQCgPPAAAABAO1FQPLCQSrFATNAAAACwTHBQTDAAS8AAAABASvIwzIGgyqIgycGAy9GQydDAy4Ewy4Fgy/AAAADA3SAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADA7EAAAAGQ7BCw6+GA7NAAAAHw6fIQ6ZGRTJGBTXCxTCHxStDBTOAAAAIRSpAAAA","crc":17210} -{"length":136,"preamble":85,"sender":22963,"msg_type":151,"payload":"AgAaHgUALDUMAFEtFQB9GRkAbUYaAKEBHQChNx8AlQ4EAxYWBQMyIQYDTggJA18OCgNxKQsDmCUMA6oDEwMiBxQDCzEVA5UlDAyUKRMMIyAUDA8CFgxDIxgMgiMZDJ0OGgxnFR0MLAAiDI4RIwwiLQsOizIMDg88GA5sNhkOlykfDlURIQ4fDw==","crc":41336,"azel":[{"el":30,"az":26,"sid":{"sat":2,"code":0}},{"el":53,"az":44,"sid":{"sat":5,"code":0}},{"el":45,"az":81,"sid":{"sat":12,"code":0}},{"el":25,"az":125,"sid":{"sat":21,"code":0}},{"el":70,"az":109,"sid":{"sat":25,"code":0}},{"el":1,"az":161,"sid":{"sat":26,"code":0}},{"el":55,"az":161,"sid":{"sat":29,"code":0}},{"el":14,"az":149,"sid":{"sat":31,"code":0}},{"el":22,"az":22,"sid":{"sat":4,"code":3}},{"el":33,"az":50,"sid":{"sat":5,"code":3}},{"el":8,"az":78,"sid":{"sat":6,"code":3}},{"el":14,"az":95,"sid":{"sat":9,"code":3}},{"el":41,"az":113,"sid":{"sat":10,"code":3}},{"el":37,"az":152,"sid":{"sat":11,"code":3}},{"el":3,"az":170,"sid":{"sat":12,"code":3}},{"el":7,"az":34,"sid":{"sat":19,"code":3}},{"el":49,"az":11,"sid":{"sat":20,"code":3}},{"el":37,"az":149,"sid":{"sat":21,"code":3}},{"el":41,"az":148,"sid":{"sat":12,"code":12}},{"el":32,"az":35,"sid":{"sat":19,"code":12}},{"el":2,"az":15,"sid":{"sat":20,"code":12}},{"el":35,"az":67,"sid":{"sat":22,"code":12}},{"el":35,"az":130,"sid":{"sat":24,"code":12}},{"el":14,"az":157,"sid":{"sat":25,"code":12}},{"el":21,"az":103,"sid":{"sat":26,"code":12}},{"el":0,"az":44,"sid":{"sat":29,"code":12}},{"el":17,"az":142,"sid":{"sat":34,"code":12}},{"el":45,"az":34,"sid":{"sat":35,"code":12}},{"el":50,"az":139,"sid":{"sat":11,"code":14}},{"el":60,"az":15,"sid":{"sat":12,"code":14}},{"el":54,"az":108,"sid":{"sat":24,"code":14}},{"el":41,"az":151,"sid":{"sat":25,"code":14}},{"el":17,"az":85,"sid":{"sat":31,"code":14}},{"el":15,"az":31,"sid":{"sat":33,"code":14}}]} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MggU/S4QAAAAAAE=","wn":2098,"tow":271514900,"crc":58502} -{"length":16,"flags":17,"ns":899999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"ERT9LhDkBwMZAxg4/uikNQ==","day":25,"tow":271514900,"year":2020,"crc":22237,"minutes":24,"month":3,"seconds":56} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.332956034087463,"preamble":85,"sender":22963,"msg_type":522,"payload":"FP0uENy9699l6kJAsMwXG1aSXsBZaU2bPFUxwAECWwQPBg==","lat":37.83123396883795,"tow":271514900,"h_accuracy":513,"crc":17440,"lon":-122.2865054829042} -{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"FP0uEPv////+////EgAAAPEAygIPAg==","n":-5,"d":18,"tow":271514900,"h_accuracy":241,"crc":44417,"e":-2} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"FP0uEJsAhwBMAEgAcgAG","tow":271514900,"crc":15095,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"FP0uEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271514900,"h_accuracy":0,"crc":5546,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"FP0uEP//","tow":271514900,"crc":6010} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":249,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":127,"i":110564212},"flags":15,"cn0":214,"P":1051983376,"D":{"f":56,"i":-183},"lock":15,"sid":{"sat":5,"code":0}},{"L":{"f":210,"i":121824739},"flags":15,"cn0":180,"P":1159123874,"D":{"f":37,"i":2173},"lock":15,"sid":{"sat":21,"code":0}},{"L":{"f":35,"i":123338327},"flags":15,"cn0":189,"P":1173524783,"D":{"f":195,"i":-2480},"lock":15,"sid":{"sat":2,"code":0}},{"L":{"f":245,"i":128738378},"flags":15,"cn0":168,"P":1224904974,"D":{"f":10,"i":-397},"lock":15,"sid":{"sat":31,"code":0}},{"L":{"f":42,"i":107823302},"flags":15,"cn0":218,"P":1025904526,"D":{"f":204,"i":-1127},"lock":15,"sid":{"sat":25,"code":0}},{"L":{"f":186,"i":114098746},"flags":15,"cn0":207,"P":1085613370,"D":{"f":24,"i":-2967},"lock":15,"sid":{"sat":12,"code":0}},{"L":{"f":113,"i":110760908},"flags":15,"cn0":213,"P":1053854932,"D":{"f":24,"i":1485},"lock":15,"sid":{"sat":29,"code":0}},{"L":{"f":6,"i":84018178},"flags":15,"cn0":205,"P":1025904589,"D":{"f":111,"i":-878},"lock":15,"sid":{"sat":25,"code":1}},{"L":{"f":247,"i":88908145},"flags":15,"cn0":188,"P":1085613304,"D":{"f":39,"i":-2313},"lock":15,"sid":{"sat":12,"code":1}},{"L":{"f":102,"i":100315622},"flags":15,"cn0":154,"P":1224904892,"D":{"f":20,"i":-309},"lock":15,"sid":{"sat":31,"code":1}},{"L":{"f":52,"i":86307203},"flags":15,"cn0":196,"P":1053854845,"D":{"f":29,"i":1156},"lock":15,"sid":{"sat":29,"code":1}},{"L":{"f":19,"i":86153961},"flags":15,"cn0":195,"P":1051983315,"D":{"f":160,"i":-143},"lock":15,"sid":{"sat":5,"code":1}},{"L":{"f":16,"i":112936437},"flags":15,"cn0":213,"P":1056725401,"D":{"f":158,"i":1166},"lock":15,"sid":{"sat":11,"code":3}},{"L":{"f":92,"i":123337524},"flags":15,"cn0":180,"P":1154857613,"D":{"f":111,"i":-4409},"lock":15,"sid":{"sat":9,"code":3}}],"payload":"eP0uEAAAAAAyCEAQ/rM+dBOXBn9J/zjWDw8FAKLTFkXj5UIH0n0IJbQPDxUAL5HyRVf+WQcjUPbDvQ8PAgAOkQJJSmSsB/Vz/gqoDw8fAI4PJj3GQG0GKpn7zNoPDxkAOiW1QDoCzQa6afQYzw8PDADUjNA+zBOaBnHNBRjVDw8dAM0PJj0CBAIFBpL8b80PDxkB+CS1QHGhTAX39/YnvA8PDAG8kAJJ5rH6BWbL/hSaDw8fAX2M0D6D8SQFNIQEHcQPDx0B0/2zPumaIgUTcf+gww8PBQGZWfw+9UW7BhCOBJ7VDw8LA4261UQ0+1kHXMfub7QPDwkD","header":{"n_obs":64,"t":{"ns_residual":0,"wn":2098,"tow":271515000}},"crc":53832} -{"length":249,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":216,"i":109771522},"flags":15,"cn0":174,"P":1026391069,"D":{"f":238,"i":-1211},"lock":15,"sid":{"sat":20,"code":3}},{"L":{"f":233,"i":114858588},"flags":15,"cn0":208,"P":1074333383,"D":{"f":74,"i":2198},"lock":15,"sid":{"sat":5,"code":3}},{"L":{"f":7,"i":111605928},"flags":15,"cn0":207,"P":1046849035,"D":{"f":235,"i":-3044},"lock":15,"sid":{"sat":10,"code":3}},{"L":{"f":201,"i":120439539},"flags":15,"cn0":181,"P":1124561414,"D":{"f":33,"i":-1316},"lock":15,"sid":{"sat":4,"code":3}},{"L":{"f":99,"i":113418621},"flags":15,"cn0":203,"P":1059748581,"D":{"f":224,"i":1622},"lock":15,"sid":{"sat":21,"code":3}},{"L":{"f":71,"i":95929195},"flags":15,"cn0":171,"P":1154857639,"D":{"f":191,"i":-3430},"lock":15,"sid":{"sat":9,"code":4}},{"L":{"f":214,"i":85377886},"flags":15,"cn0":205,"P":1026391441,"D":{"f":52,"i":-940},"lock":15,"sid":{"sat":20,"code":4}},{"L":{"f":99,"i":87839461},"flags":15,"cn0":199,"P":1056725677,"D":{"f":83,"i":907},"lock":15,"sid":{"sat":11,"code":4}},{"L":{"f":214,"i":89334461},"flags":15,"cn0":195,"P":1074333680,"D":{"f":127,"i":1710},"lock":15,"sid":{"sat":5,"code":4}},{"L":{"f":213,"i":93675187},"flags":15,"cn0":175,"P":1124561647,"D":{"f":140,"i":-1024},"lock":15,"sid":{"sat":4,"code":4}},{"L":{"f":241,"i":121581041},"flags":15,"cn0":200,"P":1167417764,"D":{"f":152,"i":-1499},"lock":15,"sid":{"sat":35,"code":12}},{"L":{"f":48,"i":129214124},"flags":15,"cn0":170,"P":1240710737,"D":{"f":16,"i":-3006},"lock":15,"sid":{"sat":26,"code":12}},{"L":{"f":81,"i":132944355},"flags":15,"cn0":157,"P":1276528024,"D":{"f":239,"i":2247},"lock":15,"sid":{"sat":34,"code":12}},{"L":{"f":12,"i":125152276},"flags":15,"cn0":188,"P":1201708953,"D":{"f":195,"i":-1303},"lock":15,"sid":{"sat":24,"code":12}}],"payload":"eP0uEAAAAAAyCEEdfC09AvuKBthF++6uDw8UA8cGCUBcmtgG6ZYIStAPDwUDC6ZlPqj4pgYHHPTrzw8PCgMGcgdD88ItB8nc+iG1Dw8EA+V6Kj99ocIGY1YG4MsPDxUDp7rVRGvDtwVHmvK/qw8PCQSRfS09XsMWBdZU/DTNDw8UBK1a/D7lUjwFY4sDU8cPDwsE8AcJQL0iUwXWrgZ/ww8PBQTvcgdDs16VBdUA/IyvDw8EBKRhlUXxLT8H8SX6mMgPDyMMUb7zSaymswcwQvQQqg8PGgyYRRZM45HsB1HHCO+dDw8iDJmfoEcUrHUHDOn6w7wPDxgM","header":{"n_obs":65,"t":{"ns_residual":0,"wn":2098,"tow":271515000}},"crc":61055} -{"length":249,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":234,"i":134671185},"flags":15,"cn0":157,"P":1293109258,"D":{"f":227,"i":1325},"lock":15,"sid":{"sat":25,"code":12}},{"L":{"f":237,"i":121098768},"flags":15,"cn0":184,"P":1162787240,"D":{"f":59,"i":1611},"lock":15,"sid":{"sat":12,"code":12}},{"L":{"f":95,"i":124515163},"flags":15,"cn0":184,"P":1195591362,"D":{"f":82,"i":-288},"lock":15,"sid":{"sat":19,"code":12}},{"L":{"f":31,"i":124702628},"flags":15,"cn0":191,"P":1197391394,"D":{"f":164,"i":2387},"lock":15,"sid":{"sat":22,"code":12}},{"L":{"f":83,"i":93641258},"flags":15,"cn0":210,"P":1162787176,"D":{"f":108,"i":1246},"lock":15,"sid":{"sat":12,"code":13}},{"L":{"f":164,"i":116426917},"flags":15,"cn0":196,"P":1107765254,"D":{"f":190,"i":-1027},"lock":15,"sid":{"sat":12,"code":14}},{"L":{"f":45,"i":132473938},"flags":15,"cn0":193,"P":1260447540,"D":{"f":69,"i":1088},"lock":15,"sid":{"sat":25,"code":14}},{"L":{"f":114,"i":125421690},"flags":15,"cn0":190,"P":1193347650,"D":{"f":32,"i":1049},"lock":15,"sid":{"sat":11,"code":14}},{"L":{"f":41,"i":118415412},"flags":15,"cn0":205,"P":1126685057,"D":{"f":240,"i":-1746},"lock":15,"sid":{"sat":24,"code":14}},{"L":{"f":173,"i":143324160},"flags":15,"cn0":159,"P":1363684052,"D":{"f":171,"i":-3173},"lock":15,"sid":{"sat":31,"code":14}},{"L":{"f":74,"i":144526044},"flags":15,"cn0":154,"P":1375119592,"D":{"f":29,"i":-2139},"lock":15,"sid":{"sat":33,"code":14}},{"L":{"f":250,"i":101506002},"flags":15,"cn0":201,"P":1260447508,"D":{"f":92,"i":834},"lock":15,"sid":{"sat":25,"code":20}},{"L":{"f":202,"i":90733950},"flags":15,"cn0":215,"P":1126685598,"D":{"f":105,"i":-1338},"lock":15,"sid":{"sat":24,"code":20}},{"L":{"f":14,"i":96102312},"flags":15,"cn0":194,"P":1193347457,"D":{"f":127,"i":803},"lock":15,"sid":{"sat":11,"code":20}}],"payload":"eP0uEAAAAAAyCEIKSBNNUesGCOotBeOdDw8ZDKi5TkUQ0jcH7UsGO7gPDwwMwkZDR1vzawdf4P5SuA8PEwwivl5HpM9uBx9TCaS/Dw8WDGi5TkUq2pQFU94EbNIPDwwNBigHQqWI8Aak/fu+xA8PDA405yBLUmTlBy1ABEXBDw8ZDkIKIUd6yHkHchkEIL4PDwsOgdknQzTgDgcpLvnwzQ8PGA7UKkhRAPSKCK2b86ufDw8fDuio9lHcSp0ISqX3HZoPDyEOFOcgS9LbDAb6QgNcyQ8PGRSe2ydDfn1oBcrG+mnXDw8YFIEJIUeoZ7oFDiMDf8IPDwsU","header":{"n_obs":66,"t":{"ns_residual":0,"wn":2098,"tow":271515000}},"crc":10633} -{"length":62,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":247,"i":109819852},"flags":15,"cn0":173,"P":1363684097,"D":{"f":212,"i":-2431},"lock":15,"sid":{"sat":31,"code":20}},{"L":{"f":48,"i":89210266},"flags":15,"cn0":206,"P":1107765105,"D":{"f":12,"i":-788},"lock":15,"sid":{"sat":12,"code":20}},{"L":{"f":192,"i":110740805},"flags":15,"cn0":169,"P":1375119531,"D":{"f":127,"i":-1641},"lock":15,"sid":{"sat":33,"code":20}}],"payload":"eP0uEAAAAAAyCEMBK0hRzLeLBveB9tStDw8fFHEnB0KaPVEFMOz8DM4PDwwUq6j2UUXFmQbAl/l/qQ8PIRQ=","header":{"n_obs":67,"t":{"ns_residual":0,"wn":2098,"tow":271515000}},"crc":23433} -{"length":9,"l2ca_bias":0,"preamble":85,"l2p_bias":0,"sender":22963,"msg_type":117,"payload":"/wAAAAAAAAAA","l1ca_bias":0,"mask":255,"crc":49809,"l1p_bias":0} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"Mgh4/S4QAAAAAAE=","wn":2098,"tow":271515000,"crc":43443} -{"length":16,"flags":17,"ns":999999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EXj9LhDkBwMZAxg4/smaOw==","day":25,"tow":271515000,"year":2020,"crc":11157,"minutes":24,"month":3,"seconds":56} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.326489681489786,"preamble":85,"sender":22963,"msg_type":522,"payload":"eP0uEEOz2t9l6kJA9f4ZG1aSXsDneujTlFMxwAECWwQPBg==","lat":37.83123396090243,"tow":271515000,"h_accuracy":513,"crc":65118,"lon":-122.28650548494973} -{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"eP0uEPz///8QAAAAEwAAAPEAygIPAg==","n":-4,"d":19,"tow":271515000,"h_accuracy":241,"crc":58369,"e":16} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"eP0uEJsAhwBMAEgAcgAG","tow":271515000,"crc":12573,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"eP0uEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271515000,"h_accuracy":0,"crc":21439,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"eP0uEP//","tow":271515000,"crc":17281} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":4,"flags":2147616000,"preamble":85,"sender":22963,"msg_type":65535,"payload":"AAUCgA==","crc":40942} -{"length":24,"z":3890655.0240602265,"preamble":85,"sender":22963,"msg_type":72,"payload":"UO0a3iqORMHK1UJhIkRQwc9nFIPvrk1B","crc":2168,"x":-2694229.735196747,"y":-4264073.519704292} -{"cpu_vint":988,"length":10,"fe_temperature":5641,"preamble":85,"sender":22963,"cpu_vaux":1779,"msg_type":181,"payload":"7BbcA/MGXxUJFg==","dev_vin":5868,"crc":61152,"cpu_temperature":5471} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"Mgjc/S4QAAAAAAE=","wn":2098,"tow":271515100,"crc":11538} -{"length":16,"flags":17,"ns":99999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"Edz9LhDkBwMZAxg5/uD1BQ==","day":25,"tow":271515100,"year":2020,"crc":1966,"minutes":24,"month":3,"seconds":57} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.32148709908438,"preamble":85,"sender":22963,"msg_type":522,"payload":"3P0uEPPxv99l6kJAPZshG1aSXsBAp4D6TFIxwAECWwQPBg==","lat":37.831233948443604,"tow":271515100,"h_accuracy":513,"crc":30716,"lon":-122.28650549203753} -{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"3P0uEPr///8DAAAA/P////EAygIPAg==","n":-6,"d":-4,"tow":271515100,"h_accuracy":241,"crc":40025,"e":3} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"3P0uEJsAhwBMAEgAcgAG","tow":271515100,"crc":25513,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"3P0uEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271515100,"h_accuracy":0,"crc":9414,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"3P0uEP//","tow":271515100,"crc":41992} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MghA/i4QAAAAAAE=","wn":2098,"tow":271515200,"crc":48187} -{"length":16,"flags":17,"ns":199999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EUD+LhDkBwMZAxg5/sHrCw==","day":25,"tow":271515200,"year":2020,"crc":23590,"minutes":24,"month":3,"seconds":57} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.31556131170125,"preamble":85,"sender":22963,"msg_type":522,"payload":"QP4uEH+Yu99l6kJArEA4G1aSXsDFo0mgyFAxwAECWwQPBg==","lat":37.831233946418244,"tow":271515200,"h_accuracy":513,"crc":21345,"lon":-122.28650551312847} -{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"QP4uEAQAAADz////3P////EAygIPAg==","n":4,"d":-36,"tow":271515200,"h_accuracy":241,"crc":23600,"e":-13} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"QP4uEJsAhwBMAEgAcgAG","tow":271515200,"crc":18533,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"QP4uEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271515200,"h_accuracy":0,"crc":46284,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"QP4uEP//","tow":271515200,"crc":36765} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"Mgik/i4QAAAAAAE=","wn":2098,"tow":271515300,"crc":26435} -{"length":16,"flags":17,"ns":299999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EaT+LhDkBwMZAxg5/qLhEQ==","day":25,"tow":271515300,"year":2020,"crc":47632,"minutes":24,"month":3,"seconds":57} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.316956976073552,"preamble":85,"sender":22963,"msg_type":522,"payload":"pP4uEM+yvd9l6kJAqRwzG1aSXsCXeaYXJFExwAECWwQPBg==","lat":37.83123394739743,"tow":271515300,"h_accuracy":513,"crc":40351,"lon":-122.28650550834085} -{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"pP4uEAYAAAALAAAALAAAAPEAygIPAg==","n":6,"d":44,"tow":271515300,"h_accuracy":241,"crc":54643,"e":11} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"pP4uEJsAhwBMAEgAcgAG","tow":271515300,"crc":12504,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"pP4uEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271515300,"h_accuracy":0,"crc":5871,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"pP4uEP//","tow":271515300,"crc":516} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":237,"states":[{"cn0":213,"mesid":{"sat":5,"code":0}},{"cn0":180,"mesid":{"sat":21,"code":0}},{"cn0":189,"mesid":{"sat":2,"code":0}},{"cn0":167,"mesid":{"sat":31,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":217,"mesid":{"sat":25,"code":0}},{"cn0":206,"mesid":{"sat":12,"code":0}},{"cn0":213,"mesid":{"sat":29,"code":0}},{"cn0":206,"mesid":{"sat":18,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":205,"mesid":{"sat":131,"code":2}},{"cn0":205,"mesid":{"sat":25,"code":1}},{"cn0":188,"mesid":{"sat":12,"code":1}},{"cn0":152,"mesid":{"sat":31,"code":1}},{"cn0":196,"mesid":{"sat":18,"code":1}},{"cn0":195,"mesid":{"sat":29,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":194,"mesid":{"sat":5,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":213,"mesid":{"sat":100,"code":3}},{"cn0":180,"mesid":{"sat":98,"code":3}},{"cn0":173,"mesid":{"sat":102,"code":3}},{"cn0":208,"mesid":{"sat":101,"code":3}},{"cn0":207,"mesid":{"sat":93,"code":3}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":181,"mesid":{"sat":106,"code":3}},{"cn0":203,"mesid":{"sat":104,"code":3}},{"cn0":171,"mesid":{"sat":98,"code":4}},{"cn0":205,"mesid":{"sat":102,"code":4}},{"cn0":68,"mesid":{"sat":93,"code":4}},{"cn0":199,"mesid":{"sat":100,"code":4}},{"cn0":196,"mesid":{"sat":101,"code":4}},{"cn0":188,"mesid":{"sat":104,"code":4}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":175,"mesid":{"sat":106,"code":4}},{"cn0":200,"mesid":{"sat":35,"code":12}},{"cn0":170,"mesid":{"sat":26,"code":12}},{"cn0":156,"mesid":{"sat":34,"code":12}},{"cn0":189,"mesid":{"sat":24,"code":12}},{"cn0":158,"mesid":{"sat":25,"code":12}},{"cn0":185,"mesid":{"sat":12,"code":12}},{"cn0":184,"mesid":{"sat":19,"code":12}},{"cn0":191,"mesid":{"sat":22,"code":12}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":209,"mesid":{"sat":12,"code":13}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":195,"mesid":{"sat":12,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":192,"mesid":{"sat":25,"code":14}},{"cn0":189,"mesid":{"sat":11,"code":14}},{"cn0":205,"mesid":{"sat":24,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":159,"mesid":{"sat":31,"code":14}},{"cn0":153,"mesid":{"sat":33,"code":14}},{"cn0":201,"mesid":{"sat":25,"code":20}},{"cn0":215,"mesid":{"sat":24,"code":20}},{"cn0":194,"mesid":{"sat":11,"code":20}},{"cn0":174,"mesid":{"sat":31,"code":20}},{"cn0":207,"mesid":{"sat":12,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":169,"mesid":{"sat":33,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}}],"preamble":85,"sender":22963,"msg_type":97,"payload":"BQDVFQC0AgC9HwCnAAAAAAAAGQDZDADOHQDVEgDOAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwLNGQHNDAG8HwGYEgHEHQHDAAAABQHCAAAAAAAAAAAAAAAAZAPVYgO0ZgOtZQPQXQPPAAAAagO1aAPLYgSrZgTNXQREZATHZQTEaAS8AAAAagSvIwzIGgyqIgycGAy9GQyeDAy5Ewy4Fgy/AAAADA3RAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADA7DAAAAGQ7ACw69GA7NAAAAHw6fIQ6ZGRTJGBTXCxTCHxSuDBTPAAAAIRSpAAAA","crc":48972} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MggI/y4QAAAAAAE=","wn":2098,"tow":271515400,"crc":36302} -{"length":16,"flags":17,"ns":399999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EQj/LhDkBwMZAxg5/oPXFw==","day":25,"tow":271515400,"year":2020,"crc":51843,"minutes":24,"month":3,"seconds":57} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.31406256808885,"preamble":85,"sender":22963,"msg_type":522,"payload":"CP8uEJqjsd9l6kJAWONTG1aSXsDi1opnZlAxwAECWwQPBg==","lat":37.83123394178183,"tow":271515400,"h_accuracy":513,"crc":29665,"lon":-122.28650553886598} -{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"CP8uEP3////2////4f////EAygIPAg==","n":-3,"d":-31,"tow":271515400,"h_accuracy":241,"crc":36382,"e":-10} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"CP8uEJsAhwBMAEgAcgAG","tow":271515400,"crc":15944,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"CP8uEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271515400,"h_accuracy":0,"crc":60099,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"CP8uEP//","tow":271515400,"crc":17054} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":9,"l2ca_bias":0,"preamble":85,"l2p_bias":0,"sender":22963,"msg_type":117,"payload":"/wAAAAAAAAAA","l1ca_bias":0,"mask":255,"crc":49809,"l1p_bias":0} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"Mghs/y4QAAAAAAE=","wn":2098,"tow":271515500,"crc":59652} -{"length":16,"flags":17,"ns":499999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EWz/LhDkBwMZAxg5/mTNHQ==","day":25,"tow":271515500,"year":2020,"crc":36479,"minutes":24,"month":3,"seconds":57} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.31059541947166,"preamble":85,"sender":22963,"msg_type":522,"payload":"bP8uEPKMpt9l6kJAWlNmG1aSXsAO63Aug08xwAECWwQPBg==","lat":37.83123393661835,"tow":271515500,"h_accuracy":513,"crc":42205,"lon":-122.28650555603727} -{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"bP8uEP7////5////AQAAAPEAygIPAg==","n":-2,"d":1,"tow":271515500,"h_accuracy":241,"crc":8087,"e":-7} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"bP8uEJsAhwBMAEgAcgAG","tow":271515500,"crc":4839,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"bP8uEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271515500,"h_accuracy":0,"crc":62069,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"bP8uEP//","tow":271515500,"crc":6951} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgjQ/y4QAAAAAAE=","wn":2098,"tow":271515600,"crc":6052} -{"length":16,"flags":17,"ns":599999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EdD/LhDkBwMZAxg5/kXDIw==","day":25,"tow":271515600,"year":2020,"crc":61536,"minutes":24,"month":3,"seconds":57} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.305874425494007,"preamble":85,"sender":22963,"msg_type":522,"payload":"0P8uEJY1md9l6kJAzm9lG1aSXsD3LU7JTU4xwAECWwQPBg==","lat":37.831233930405844,"tow":271515600,"h_accuracy":513,"crc":49631,"lon":-122.28650555520946} -{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"0P8uEAAAAAAIAAAADAAAAPEAygIPAg==","n":0,"d":12,"tow":271515600,"h_accuracy":241,"crc":4415,"e":8} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"0P8uEJsAhwBMAEgAcgAG","tow":271515600,"crc":10652,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"0P8uEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271515600,"h_accuracy":0,"crc":26345,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"0P8uEP//","tow":271515600,"crc":60264} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":51,"text":"GLO L2OF ME 1 [+1202ms] low CN0 too long, dropping","preamble":85,"sender":22963,"msg_type":1025,"payload":"BkdMTyBMMk9GIE1FIDEgWysxMjAybXNdIGxvdyBDTjAgdG9vIGxvbmcsIGRyb3BwaW5n","crc":30729,"level":6} -{"message_type":4,"length":34,"data":[87,255,127,255,253,127,240,1,127,255,251,255,239,253,127,247,255,127,247,255,238,94,110,170,175,255,240],"preamble":85,"sender":22963,"msg_type":30583,"payload":"gwJN/y4QBFf/f//9f/ABf//7/+/9f/f/f/f/7l5uqq//8A==","tow":271515469,"crc":26208,"sid":{"sat":131,"code":2}} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"Mgg0AC8QAAAAAAE=","wn":2098,"tow":271515700,"crc":57586} -{"length":16,"flags":17,"ns":699999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"ETQALxDkBwMZAxg5/ia5KQ==","day":25,"tow":271515700,"year":2020,"crc":62921,"minutes":24,"month":3,"seconds":57} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.297006077723438,"preamble":85,"sender":22963,"msg_type":522,"payload":"NAAvEFSl1t9l6kJApq1/G1aSXsAQiR6XCEwxwAECWwQPBg==","lat":37.83123395901444,"tow":271515700,"h_accuracy":513,"crc":55611,"lon":-122.28650557964883} -{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"NAAvEAYAAAABAAAA+v////EAygIPAg==","n":6,"d":-6,"tow":271515700,"h_accuracy":241,"crc":35666,"e":1} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"NAAvEJsAhwBMAEgAcgAG","tow":271515700,"crc":43222,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"NAAvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271515700,"h_accuracy":0,"crc":39267,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"NAAvEP//","tow":271515700,"crc":19178} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgiYAC8QAAAAAAE=","wn":2098,"tow":271515800,"crc":19884} -{"length":16,"flags":17,"ns":799999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EZgALxDkBwMZAxg5/gevLw==","day":25,"tow":271515800,"year":2020,"crc":63709,"minutes":24,"month":3,"seconds":57} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.289040533489274,"preamble":85,"sender":22963,"msg_type":522,"payload":"mAAvEG94/99l6kJAWtaBG1aSXsAJjnaP/kkxwAECWwQPBg==","lat":37.83123397802489,"tow":271515800,"h_accuracy":513,"crc":41334,"lon":-122.28650558165955} -{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"mAAvEAoAAAAFAAAA+v////EAygIPAg==","n":10,"d":-6,"tow":271515800,"h_accuracy":241,"crc":24293,"e":5} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"mAAvEJsAhwBMAEgAcgAG","tow":271515800,"crc":56615,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"mAAvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271515800,"h_accuracy":0,"crc":45241,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"mAAvEP//","tow":271515800,"crc":40993} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":237,"states":[{"cn0":213,"mesid":{"sat":5,"code":0}},{"cn0":180,"mesid":{"sat":21,"code":0}},{"cn0":189,"mesid":{"sat":2,"code":0}},{"cn0":167,"mesid":{"sat":31,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":218,"mesid":{"sat":25,"code":0}},{"cn0":207,"mesid":{"sat":12,"code":0}},{"cn0":213,"mesid":{"sat":29,"code":0}},{"cn0":206,"mesid":{"sat":18,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":205,"mesid":{"sat":131,"code":2}},{"cn0":204,"mesid":{"sat":25,"code":1}},{"cn0":187,"mesid":{"sat":12,"code":1}},{"cn0":152,"mesid":{"sat":31,"code":1}},{"cn0":196,"mesid":{"sat":18,"code":1}},{"cn0":195,"mesid":{"sat":29,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":194,"mesid":{"sat":5,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":213,"mesid":{"sat":11,"code":3}},{"cn0":180,"mesid":{"sat":9,"code":3}},{"cn0":174,"mesid":{"sat":20,"code":3}},{"cn0":208,"mesid":{"sat":5,"code":3}},{"cn0":208,"mesid":{"sat":10,"code":3}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":181,"mesid":{"sat":4,"code":3}},{"cn0":203,"mesid":{"sat":21,"code":3}},{"cn0":171,"mesid":{"sat":9,"code":4}},{"cn0":205,"mesid":{"sat":20,"code":4}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":199,"mesid":{"sat":11,"code":4}},{"cn0":196,"mesid":{"sat":5,"code":4}},{"cn0":188,"mesid":{"sat":0,"code":4}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":176,"mesid":{"sat":4,"code":4}},{"cn0":200,"mesid":{"sat":35,"code":12}},{"cn0":170,"mesid":{"sat":26,"code":12}},{"cn0":156,"mesid":{"sat":34,"code":12}},{"cn0":189,"mesid":{"sat":24,"code":12}},{"cn0":158,"mesid":{"sat":25,"code":12}},{"cn0":185,"mesid":{"sat":12,"code":12}},{"cn0":184,"mesid":{"sat":19,"code":12}},{"cn0":191,"mesid":{"sat":22,"code":12}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":210,"mesid":{"sat":12,"code":13}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":195,"mesid":{"sat":12,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":192,"mesid":{"sat":25,"code":14}},{"cn0":190,"mesid":{"sat":11,"code":14}},{"cn0":205,"mesid":{"sat":24,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":159,"mesid":{"sat":31,"code":14}},{"cn0":154,"mesid":{"sat":33,"code":14}},{"cn0":200,"mesid":{"sat":25,"code":20}},{"cn0":215,"mesid":{"sat":24,"code":20}},{"cn0":194,"mesid":{"sat":11,"code":20}},{"cn0":174,"mesid":{"sat":31,"code":20}},{"cn0":207,"mesid":{"sat":12,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":169,"mesid":{"sat":33,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}}],"preamble":85,"sender":22963,"msg_type":97,"payload":"BQDVFQC0AgC9HwCnAAAAAAAAGQDaDADPHQDVEgDOAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwLNGQHMDAG7HwGYEgHEHQHDAAAABQHCAAAAAAAAAAAAAAAACwPVCQO0FAOuBQPQCgPQAAAABAO1FQPLCQSrFATNAAAACwTHBQTEAAS8AAAABASwIwzIGgyqIgycGAy9GQyeDAy5Ewy4Fgy/AAAADA3SAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADA7DAAAAGQ7ACw6+GA7NAAAAHw6fIQ6aGRTIGBTXCxTCHxSuDBTPAAAAIRSpAAAA","crc":7621} -{"length":136,"preamble":85,"sender":22963,"msg_type":151,"payload":"AgAaHgUALDUMAFEtFQB9GRkAbUYaAKEBHQChNx8AlQ4EAxYWBQMyIQYDTggJA18OCgNxKQsDmCUMA6oDEwMiBxQDCzEVA5UlDAyUKRMMIyAUDA8CFgxDIxgMgiMZDJ0OGgxnFR0MLAAiDI4RIwwiLQsOizIMDg88GA5sNhkOlykfDlURIQ4fDw==","crc":41336,"azel":[{"el":30,"az":26,"sid":{"sat":2,"code":0}},{"el":53,"az":44,"sid":{"sat":5,"code":0}},{"el":45,"az":81,"sid":{"sat":12,"code":0}},{"el":25,"az":125,"sid":{"sat":21,"code":0}},{"el":70,"az":109,"sid":{"sat":25,"code":0}},{"el":1,"az":161,"sid":{"sat":26,"code":0}},{"el":55,"az":161,"sid":{"sat":29,"code":0}},{"el":14,"az":149,"sid":{"sat":31,"code":0}},{"el":22,"az":22,"sid":{"sat":4,"code":3}},{"el":33,"az":50,"sid":{"sat":5,"code":3}},{"el":8,"az":78,"sid":{"sat":6,"code":3}},{"el":14,"az":95,"sid":{"sat":9,"code":3}},{"el":41,"az":113,"sid":{"sat":10,"code":3}},{"el":37,"az":152,"sid":{"sat":11,"code":3}},{"el":3,"az":170,"sid":{"sat":12,"code":3}},{"el":7,"az":34,"sid":{"sat":19,"code":3}},{"el":49,"az":11,"sid":{"sat":20,"code":3}},{"el":37,"az":149,"sid":{"sat":21,"code":3}},{"el":41,"az":148,"sid":{"sat":12,"code":12}},{"el":32,"az":35,"sid":{"sat":19,"code":12}},{"el":2,"az":15,"sid":{"sat":20,"code":12}},{"el":35,"az":67,"sid":{"sat":22,"code":12}},{"el":35,"az":130,"sid":{"sat":24,"code":12}},{"el":14,"az":157,"sid":{"sat":25,"code":12}},{"el":21,"az":103,"sid":{"sat":26,"code":12}},{"el":0,"az":44,"sid":{"sat":29,"code":12}},{"el":17,"az":142,"sid":{"sat":34,"code":12}},{"el":45,"az":34,"sid":{"sat":35,"code":12}},{"el":50,"az":139,"sid":{"sat":11,"code":14}},{"el":60,"az":15,"sid":{"sat":12,"code":14}},{"el":54,"az":108,"sid":{"sat":24,"code":14}},{"el":41,"az":151,"sid":{"sat":25,"code":14}},{"el":17,"az":85,"sid":{"sat":31,"code":14}},{"el":15,"az":31,"sid":{"sat":33,"code":14}}]} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"Mgj8AC8QAAAAAAE=","wn":2098,"tow":271515900,"crc":10598} -{"length":16,"flags":17,"ns":899999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EfwALxDkBwMZAxg5/uikNQ==","day":25,"tow":271515900,"year":2020,"crc":14323,"minutes":24,"month":3,"seconds":57} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.282143558045767,"preamble":85,"sender":22963,"msg_type":522,"payload":"/AAvEEA/999l6kJAvemgG1aSXsBqlWqPOkgxwAECWwQPBg==","lat":37.831233974195584,"tow":271515900,"h_accuracy":513,"crc":60559,"lon":-122.28650561060108} -{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"/AAvEO/////+////CQAAAPEAygIPAg==","n":-17,"d":9,"tow":271515900,"h_accuracy":241,"crc":32110,"e":-2} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"/AAvEJsAhwBMAEgAcgAG","tow":271515900,"crc":61832,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"/AAvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271515900,"h_accuracy":0,"crc":43023,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"/AAvEP//","tow":271515900,"crc":63896} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":249,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":234,"i":110564394},"flags":15,"cn0":213,"P":1051985109,"D":{"f":80,"i":-185},"lock":15,"sid":{"sat":5,"code":0}},{"L":{"f":119,"i":121822565},"flags":15,"cn0":180,"P":1159103173,"D":{"f":215,"i":2172},"lock":15,"sid":{"sat":21,"code":0}},{"L":{"f":123,"i":123340805},"flags":15,"cn0":189,"P":1173548370,"D":{"f":248,"i":-2479},"lock":15,"sid":{"sat":2,"code":0}},{"L":{"f":174,"i":128738773},"flags":15,"cn0":167,"P":1224908749,"D":{"f":115,"i":-398},"lock":15,"sid":{"sat":31,"code":0}},{"L":{"f":65,"i":107824428},"flags":15,"cn0":218,"P":1025915241,"D":{"f":52,"i":-1128},"lock":15,"sid":{"sat":25,"code":0}},{"L":{"f":69,"i":114101713},"flags":15,"cn0":207,"P":1085641597,"D":{"f":158,"i":-2968},"lock":15,"sid":{"sat":12,"code":0}},{"L":{"f":110,"i":110759423},"flags":15,"cn0":213,"P":1053840798,"D":{"f":165,"i":1482},"lock":15,"sid":{"sat":29,"code":0}},{"L":{"f":126,"i":84019055},"flags":15,"cn0":204,"P":1025915298,"D":{"f":231,"i":-880},"lock":15,"sid":{"sat":25,"code":1}},{"L":{"f":143,"i":88910457},"flags":15,"cn0":187,"P":1085641533,"D":{"f":58,"i":-2313},"lock":15,"sid":{"sat":12,"code":1}},{"L":{"f":251,"i":100315929},"flags":15,"cn0":152,"P":1224908628,"D":{"f":208,"i":-311},"lock":15,"sid":{"sat":31,"code":1}},{"L":{"f":16,"i":86306046},"flags":15,"cn0":195,"P":1053840720,"D":{"f":122,"i":1155},"lock":15,"sid":{"sat":29,"code":1}},{"L":{"f":56,"i":86154103},"flags":15,"cn0":194,"P":1051985046,"D":{"f":115,"i":-143},"lock":15,"sid":{"sat":5,"code":1}},{"L":{"f":44,"i":112935270},"flags":15,"cn0":213,"P":1056714481,"D":{"f":110,"i":1164},"lock":15,"sid":{"sat":11,"code":3}},{"L":{"f":27,"i":123341931},"flags":15,"cn0":180,"P":1154898833,"D":{"f":217,"i":-4409},"lock":15,"sid":{"sat":9,"code":3}}],"payload":"YAEvEAAAAAAyCEDVBLQ+KhSXBupH/1DVDw8FAMWCFkVl3UIHd3wI17QPDxUAUu3yRQUIWgd7Ufb4vQ8PAgDNnwJJ1WWsB65y/nOnDw8fAGk5Jj0sRW0GQZj7NNoPDxkAfZO1QNENzQZFaPSezw8PDACeVdA+/w2aBm7KBaXVDw8dAKI5Jj1vBwIFfpD858wPDxkBPZO1QHmqTAWP9/Y6uw8PDAFUnwJJGbP6BfvJ/tCYDw8fAVBV0D7+7CQFEIMEesMPDx0BlgS0PnebIgU4cf9zwg8PBQHxLvw+ZkG7BiyMBG7VDw8LA5Fb1kRrDFoHG8fu2bQPDwkD","header":{"n_obs":64,"t":{"ns_residual":0,"wn":2098,"tow":271516000}},"crc":56804} -{"length":249,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":41,"i":109772732},"flags":15,"cn0":174,"P":1026402372,"D":{"f":72,"i":-1212},"lock":15,"sid":{"sat":20,"code":3}},{"L":{"f":244,"i":114856389},"flags":15,"cn0":208,"P":1074312827,"D":{"f":62,"i":2196},"lock":15,"sid":{"sat":5,"code":3}},{"L":{"f":62,"i":111608971},"flags":15,"cn0":208,"P":1046877594,"D":{"f":39,"i":-3045},"lock":15,"sid":{"sat":10,"code":3}},{"L":{"f":247,"i":120440854},"flags":15,"cn0":181,"P":1124573679,"D":{"f":17,"i":-1318},"lock":15,"sid":{"sat":4,"code":3}},{"L":{"f":212,"i":113416997},"flags":15,"cn0":203,"P":1059733412,"D":{"f":158,"i":1620},"lock":15,"sid":{"sat":21,"code":3}},{"L":{"f":189,"i":95932622},"flags":15,"cn0":171,"P":1154898903,"D":{"f":100,"i":-3430},"lock":15,"sid":{"sat":9,"code":4}},{"L":{"f":105,"i":85378827},"flags":15,"cn0":205,"P":1026402756,"D":{"f":54,"i":-942},"lock":15,"sid":{"sat":20,"code":4}},{"L":{"f":205,"i":87838553},"flags":15,"cn0":199,"P":1056714740,"D":{"f":222,"i":905},"lock":15,"sid":{"sat":11,"code":4}},{"L":{"f":138,"i":89332751},"flags":15,"cn0":195,"P":1074313119,"D":{"f":208,"i":1708},"lock":15,"sid":{"sat":5,"code":4}},{"L":{"f":191,"i":93676210},"flags":15,"cn0":175,"P":1124573925,"D":{"f":56,"i":-1026},"lock":15,"sid":{"sat":4,"code":4}},{"L":{"f":110,"i":121582540},"flags":15,"cn0":200,"P":1167432150,"D":{"f":174,"i":-1501},"lock":15,"sid":{"sat":35,"code":12}},{"L":{"f":111,"i":129217131},"flags":15,"cn0":170,"P":1240739612,"D":{"f":47,"i":-3009},"lock":15,"sid":{"sat":26,"code":12}},{"L":{"f":17,"i":132942106},"flags":15,"cn0":157,"P":1276506432,"D":{"f":145,"i":2246},"lock":15,"sid":{"sat":34,"code":12}},{"L":{"f":200,"i":125153577},"flags":15,"cn0":188,"P":1201721447,"D":{"f":173,"i":-1305},"lock":15,"sid":{"sat":24,"code":12}}],"payload":"YAEvEAAAAAAyCEFEqC09vP+KBilE+0iuDw8UA3u2CEDFkdgG9JQIPtAPDwUDmhVmPosEpwY+G/Qn0A8PCgPvoQdDFsgtB/fa+hG1Dw8EA6Q/Kj8lm8IG1FQGnssPDxUD11vWRM7QtwW9mvJkqw8PCQTEqS09C8cWBWlS/DbNDw8UBPQv/D5ZTzwFzYkD3scPDwsEn7cIQA8cUwWKrAbQww8PBQTlogdDsmKVBb/++zivDw8EBNaZlUXMMz8HbiP6rsgPDyMMHC/0SWuyswdvP/Qvqg8PGgxA8RVMGonsBxHGCJGdDw8iDGfQoEcpsXUHyOf6rbwPDxgM","header":{"n_obs":65,"t":{"ns_residual":0,"wn":2098,"tow":271516000}},"crc":45110} -{"length":249,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":74,"i":134669860},"flags":15,"cn0":158,"P":1293096543,"D":{"f":49,"i":1323},"lock":15,"sid":{"sat":25,"code":12}},{"L":{"f":99,"i":121097156},"flags":15,"cn0":185,"P":1162771758,"D":{"f":201,"i":1610},"lock":15,"sid":{"sat":12,"code":12}},{"L":{"f":27,"i":124515452},"flags":15,"cn0":184,"P":1195594125,"D":{"f":174,"i":-292},"lock":15,"sid":{"sat":19,"code":12}},{"L":{"f":228,"i":124700239},"flags":15,"cn0":191,"P":1197368472,"D":{"f":214,"i":2386},"lock":15,"sid":{"sat":22,"code":12}},{"L":{"f":105,"i":93640011},"flags":15,"cn0":210,"P":1162771693,"D":{"f":182,"i":1245},"lock":15,"sid":{"sat":12,"code":13}},{"L":{"f":199,"i":116427943},"flags":15,"cn0":195,"P":1107775023,"D":{"f":130,"i":-1028},"lock":15,"sid":{"sat":12,"code":14}},{"L":{"f":80,"i":132472849},"flags":15,"cn0":192,"P":1260437170,"D":{"f":160,"i":1087},"lock":15,"sid":{"sat":25,"code":14}},{"L":{"f":101,"i":125420642},"flags":15,"cn0":190,"P":1193337672,"D":{"f":122,"i":1045},"lock":15,"sid":{"sat":11,"code":14}},{"L":{"f":186,"i":118417155},"flags":15,"cn0":205,"P":1126701644,"D":{"f":95,"i":-1746},"lock":15,"sid":{"sat":24,"code":14}},{"L":{"f":107,"i":143327332},"flags":15,"cn0":160,"P":1363714219,"D":{"f":218,"i":-3176},"lock":15,"sid":{"sat":31,"code":14}},{"L":{"f":121,"i":144528184},"flags":15,"cn0":154,"P":1375139947,"D":{"f":208,"i":-2147},"lock":15,"sid":{"sat":33,"code":14}},{"L":{"f":169,"i":101505168},"flags":15,"cn0":200,"P":1260437151,"D":{"f":237,"i":832},"lock":15,"sid":{"sat":25,"code":20}},{"L":{"f":200,"i":90735286},"flags":15,"cn0":215,"P":1126702187,"D":{"f":156,"i":-1338},"lock":15,"sid":{"sat":24,"code":20}},{"L":{"f":4,"i":96101509},"flags":15,"cn0":194,"P":1193337486,"D":{"f":111,"i":800},"lock":15,"sid":{"sat":11,"code":20}}],"payload":"YAEvEAAAAAAyCEJfFhNNJOYGCEorBTGeDw8ZDC59TkXEyzcHY0oGybkPDwwMjVFDR3z0awcb3P6uuA8PEwyYZF5HT8ZuB+RSCda/Dw8WDO18TkVL1ZQFad0EttIPDwwNL04HQqeM8AbH/PuCww8PDA6yviBLEWDlB1A/BKDADw8ZDkjjIEdixHkHZRUEer4PDwsOTBooQwPnDge6LvlfzQ8PGA6roEhRZACLCGuY89qgDw8fDmv49lE4U50IeZ330JoPDyEOn74gS5DYDAapQAPtyA8PGRRrHChDtoJoBcjG+pzXDw8YFI7iIEeFZLoFBCADb8IPDwsU","header":{"n_obs":66,"t":{"ns_residual":0,"wn":2098,"tow":271516000}},"crc":57059} -{"length":62,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":54,"i":109822283},"flags":15,"cn0":174,"P":1363714277,"D":{"f":207,"i":-2432},"lock":15,"sid":{"sat":31,"code":20}},{"L":{"f":119,"i":89211052},"flags":15,"cn0":207,"P":1107774869,"D":{"f":113,"i":-788},"lock":15,"sid":{"sat":12,"code":20}},{"L":{"f":161,"i":110742445},"flags":15,"cn0":169,"P":1375139892,"D":{"f":160,"i":-1642},"lock":15,"sid":{"sat":33,"code":20}}],"payload":"YAEvEAAAAAAyCEPloEhRS8GLBjaA9s+uDw8fFJVNB0KsQFEFd+z8cc8PDwwUNPj2Ua3LmQahlvmgqQ8PIRQ=","header":{"n_obs":67,"t":{"ns_residual":0,"wn":2098,"tow":271516000}},"crc":36713} -{"length":9,"l2ca_bias":0,"preamble":85,"l2p_bias":0,"sender":22963,"msg_type":117,"payload":"/wAAAAAAAAAA","l1ca_bias":0,"mask":255,"crc":49809,"l1p_bias":0} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MghgAS8QAAAAAAE=","wn":2098,"tow":271516000,"crc":14313} -{"length":16,"flags":17,"ns":999999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EWABLxDkBwMZAxg5/smaOw==","day":25,"tow":271516000,"year":2020,"crc":40031,"minutes":24,"month":3,"seconds":57} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.273646320046524,"preamble":85,"sender":22963,"msg_type":522,"payload":"YAEvEAybGeBl6kJAmiDCG1aSXsBERWuvDUYxwAECWwQPBg==","lat":37.831233990195045,"tow":271516000,"h_accuracy":513,"crc":47820,"lon":-122.28650564153432} -{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"YAEvEAwAAAAGAAAA/P////EAygIPAg==","n":12,"d":-4,"tow":271516000,"h_accuracy":241,"crc":37740,"e":6} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"YAEvEJsAhwBMAEgAcgAG","tow":271516000,"crc":11398,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"YAEvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271516000,"h_accuracy":0,"crc":33736,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"YAEvEP//","tow":271516000,"crc":38542} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":4,"flags":2147616000,"preamble":85,"sender":22963,"msg_type":65535,"payload":"AAUCgA==","crc":40942} -{"length":24,"z":3890655.0240602265,"preamble":85,"sender":22963,"msg_type":72,"payload":"UO0a3iqORMHK1UJhIkRQwc9nFIPvrk1B","crc":2168,"x":-2694229.735196747,"y":-4264073.519704292} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"bWFpbgAAAAAAAAAAAAAAAAAAAAAAAAx1AAA=","name":"main\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":47991,"stack_free":29964,"cpu":0} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"aWRsZQAAAAAAAAAAAAAAAAAAAACIAHwAAAA=","name":"idle\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":40242,"stack_free":124,"cpu":136} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"cnBtc2cAAAAAAAAAAAAAAAAAAAABAOwNAAA=","name":"rpmsg\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":53198,"stack_free":3564,"cpu":1} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"U0JQAAAAAAAAAAAAAAAAAAAAAAAAAPz/AAA=","name":"SBP\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":51784,"stack_free":65532,"cpu":0} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"TkFQAAAAAAAAAAAAAAAAAAAAAAAAAASAAAA=","name":"NAP\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":33651,"stack_free":32772,"cpu":0} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"bWFuYWdlIFBWAAAAAAAAAAAAAAAAACwEAAA=","name":"manage PV\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":61814,"stack_free":1068,"cpu":0} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"SU1VAAAAAAAAAAAAAAAAAAAAAAAAAPQHAAA=","name":"IMU\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":14252,"stack_free":2036,"cpu":0} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"SU1VIGF1eAAAAAAAAAAAAAAAAAAAAEwIAAA=","name":"IMU aux\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":18976,"stack_free":2124,"cpu":0} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"bmRiAAAAAAAAAAAAAAAAAAAAAAAAAFAMAAA=","name":"ndb\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":26120,"stack_free":3152,"cpu":0} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"TkFQIFRyYWNraW5nAAAAAAAAAAApAdR3AAA=","name":"NAP Tracking\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":25570,"stack_free":30676,"cpu":297} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"ZGVjb2RlAAAAAAAAAAAAAAAAAAAIANQGAAA=","name":"decode\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":40082,"stack_free":1748,"cpu":8} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"bWFuYWdlIGFjcQAAAAAAAAAAAACNAaR3AAA=","name":"manage acq\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":56140,"stack_free":30628,"cpu":397} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"c3lzdGVtIG1vbml0b3IAAAAAAAAAACwGAAA=","name":"system monitor\u0000\u0000\u0000\u0000\u0000\u0000","crc":58531,"stack_free":1580,"cpu":0} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"V2F0Y2hkb2cAAAAAAAAAAAAAAAAAAOQDAAA=","name":"Watchdog\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":44438,"stack_free":996,"cpu":0} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"c3RhcmxpbmcAAAAAAAAAAAAAAACWAPz/AAA=","name":"starling\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":61599,"stack_free":65532,"cpu":150} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"bWVfY2FsY19wdnQAAAAAAAAAAAAHAIwjAAA=","name":"me_calc_pvt\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":24698,"stack_free":9100,"cpu":7} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"UFBTAAAAAAAAAAAAAAAAAAAAAAAAAEgHAAA=","name":"PPS\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":38576,"stack_free":1864,"cpu":0} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"c3BlY3RydW0gYW5hbHl6ZXIAAAAAANQPAAA=","name":"spectrum analyzer\u0000\u0000\u0000","crc":50933,"stack_free":4052,"cpu":0} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgjEAS8QAAAAAAE=","wn":2098,"tow":271516100,"crc":45896} -{"length":16,"flags":17,"ns":99999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EcQBLxDkBwMZAxg6/uD1BQ==","day":25,"tow":271516100,"year":2020,"crc":62695,"minutes":24,"month":3,"seconds":58} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.26430002669535,"preamble":85,"sender":22963,"msg_type":522,"payload":"xAEvEIxNM+Bl6kJA9lXwG1aSXsAL/aIqqUMxwAECWwQPBg==","lat":37.83123400216127,"tow":271516100,"h_accuracy":513,"crc":53237,"lon":-122.28650568456928} -{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"xAEvEAcAAAD2////7v////EAygIPAg==","n":7,"d":-18,"tow":271516100,"h_accuracy":241,"crc":59882,"e":-10} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"xAEvEJsAhwBMAEgAcgAG","tow":271516100,"crc":32306,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"xAEvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271516100,"h_accuracy":0,"crc":62641,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"xAEvEP//","tow":271516100,"crc":28935} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MggoAi8QAAAAAAE=","wn":2098,"tow":271516200,"crc":35258} -{"length":16,"flags":17,"ns":199999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"ESgCLxDkBwMZAxg6/sHrCw==","day":25,"tow":271516200,"year":2020,"crc":22264,"minutes":24,"month":3,"seconds":58} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.258221800594605,"preamble":85,"sender":22963,"msg_type":522,"payload":"KAIvEMA+QuBl6kJAfoUgHFaSXsAGq+zSGkIxwAECWwQPBg==","lat":37.83123400911927,"tow":271516200,"h_accuracy":513,"crc":9750,"lon":-122.28650572944568} -{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"KAIvEAAAAAD4////AAAAAPEAygIPAg==","n":0,"d":0,"tow":271516200,"h_accuracy":241,"crc":16476,"e":-8} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"KAIvEJsAhwBMAEgAcgAG","tow":271516200,"crc":44137,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"KAIvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271516200,"h_accuracy":0,"crc":26122,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"KAIvEP//","tow":271516200,"crc":7950} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgiMAi8QAAAAAAE=","wn":2098,"tow":271516300,"crc":3355} -{"length":16,"flags":17,"ns":299999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EYwCLxDkBwMZAxg6/qLhEQ==","day":25,"tow":271516300,"year":2020,"crc":39623,"minutes":24,"month":3,"seconds":58} -{"length":200,"preamble":85,"sender":22963,"msg_type":189,"interfaces":[{"total_bytes":0,"interface_name":"can0\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","rx_bytes":0,"tx_bytes":0,"duration":983320850},{"total_bytes":0,"interface_name":"can1\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","rx_bytes":0,"tx_bytes":0,"duration":983320850},{"total_bytes":1273452680,"interface_name":"eth0\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","rx_bytes":539457013,"tx_bytes":733995667,"duration":983320850},{"total_bytes":0,"interface_name":"lo\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","rx_bytes":0,"tx_bytes":0,"duration":983320850},{"total_bytes":0,"interface_name":"sit0\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","rx_bytes":0,"tx_bytes":0,"duration":983320850}],"payload":"EkmcOgAAAAAAAAAAAAAAAAAAAAAAAAAAY2FuMAAAAAAAAAAAAAAAABJJnDoAAAAAAAAAAAAAAAAAAAAAAAAAAGNhbjEAAAAAAAAAAAAAAAASSZw6AAAAAIhY50sAAAAA9XUnIJPivytldGgwAAAAAAAAAAAAAAAAEkmcOgAAAAAAAAAAAAAAAAAAAAAAAAAAbG8AAAAAAAAAAAAAAAAAABJJnDoAAAAAAAAAAAAAAAAAAAAAAAAAAHNpdDAAAAAAAAAAAAAAAAA=","crc":45441} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.252497774741606,"preamble":85,"sender":22963,"msg_type":522,"payload":"jAIvEA8ZUeBl6kJAG11AHFaSXsD207Sxo0AxwAECWwQPBg==","lat":37.83123401603563,"tow":271516300,"h_accuracy":513,"crc":24554,"lon":-122.28650575910108} -{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"jAIvEAQAAAAFAAAACgAAAPEAygIPAg==","n":4,"d":10,"tow":271516300,"h_accuracy":241,"crc":34834,"e":5} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"jAIvEJsAhwBMAEgAcgAG","tow":271516300,"crc":65245,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"jAIvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271516300,"h_accuracy":0,"crc":4467,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"jAIvEP//","tow":271516300,"crc":63623} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":237,"states":[{"cn0":213,"mesid":{"sat":5,"code":0}},{"cn0":180,"mesid":{"sat":21,"code":0}},{"cn0":189,"mesid":{"sat":2,"code":0}},{"cn0":167,"mesid":{"sat":31,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":218,"mesid":{"sat":25,"code":0}},{"cn0":207,"mesid":{"sat":12,"code":0}},{"cn0":213,"mesid":{"sat":29,"code":0}},{"cn0":206,"mesid":{"sat":18,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":205,"mesid":{"sat":131,"code":2}},{"cn0":204,"mesid":{"sat":25,"code":1}},{"cn0":187,"mesid":{"sat":12,"code":1}},{"cn0":153,"mesid":{"sat":31,"code":1}},{"cn0":196,"mesid":{"sat":18,"code":1}},{"cn0":195,"mesid":{"sat":29,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":193,"mesid":{"sat":5,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":213,"mesid":{"sat":100,"code":3}},{"cn0":179,"mesid":{"sat":98,"code":3}},{"cn0":173,"mesid":{"sat":102,"code":3}},{"cn0":208,"mesid":{"sat":101,"code":3}},{"cn0":208,"mesid":{"sat":93,"code":3}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":181,"mesid":{"sat":106,"code":3}},{"cn0":203,"mesid":{"sat":104,"code":3}},{"cn0":171,"mesid":{"sat":98,"code":4}},{"cn0":205,"mesid":{"sat":102,"code":4}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":199,"mesid":{"sat":100,"code":4}},{"cn0":195,"mesid":{"sat":101,"code":4}},{"cn0":188,"mesid":{"sat":104,"code":4}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":175,"mesid":{"sat":106,"code":4}},{"cn0":200,"mesid":{"sat":35,"code":12}},{"cn0":170,"mesid":{"sat":26,"code":12}},{"cn0":156,"mesid":{"sat":34,"code":12}},{"cn0":188,"mesid":{"sat":24,"code":12}},{"cn0":158,"mesid":{"sat":25,"code":12}},{"cn0":185,"mesid":{"sat":12,"code":12}},{"cn0":184,"mesid":{"sat":19,"code":12}},{"cn0":191,"mesid":{"sat":22,"code":12}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":210,"mesid":{"sat":12,"code":13}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":195,"mesid":{"sat":12,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":192,"mesid":{"sat":25,"code":14}},{"cn0":190,"mesid":{"sat":11,"code":14}},{"cn0":205,"mesid":{"sat":24,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":160,"mesid":{"sat":31,"code":14}},{"cn0":153,"mesid":{"sat":33,"code":14}},{"cn0":201,"mesid":{"sat":25,"code":20}},{"cn0":215,"mesid":{"sat":24,"code":20}},{"cn0":194,"mesid":{"sat":11,"code":20}},{"cn0":174,"mesid":{"sat":31,"code":20}},{"cn0":206,"mesid":{"sat":12,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":169,"mesid":{"sat":33,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}}],"preamble":85,"sender":22963,"msg_type":97,"payload":"BQDVFQC0AgC9HwCnAAAAAAAAGQDaDADPHQDVEgDOAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwLNGQHMDAG7HwGZEgHEHQHDAAAABQHBAAAAAAAAAAAAAAAAZAPVYgOzZgOtZQPQXQPQAAAAagO1aAPLYgSrZgTNAAAAZATHZQTDaAS8AAAAagSvIwzIGgyqIgycGAy8GQyeDAy5Ewy4Fgy/AAAADA3SAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADA7DAAAAGQ7ACw6+GA7NAAAAHw6gIQ6ZGRTJGBTXCxTCHxSuDBTOAAAAIRSpAAAA","crc":38851} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgjwAi8QAAAAAAE=","wn":2098,"tow":271516400,"crc":5072} -{"length":16,"flags":17,"ns":399999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EfACLxDkBwMZAxg6/oPXFw==","day":25,"tow":271516400,"year":2020,"crc":41380,"minutes":24,"month":3,"seconds":58} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.248136187517797,"preamble":85,"sender":22963,"msg_type":522,"payload":"8AIvEHTUR+Bl6kJABJtUHFaSXsDTV2rahT8xwAECWwQPBg==","lat":37.831234011719886,"tow":271516400,"h_accuracy":513,"crc":40124,"lon":-122.28650577795275} -{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"8AIvEPv///8MAAAAEwAAAPEAygIPAg==","n":-5,"d":19,"tow":271516400,"h_accuracy":241,"crc":32114,"e":12} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"8AIvEJsAhwBMAEgAcgAG","tow":271516400,"crc":48061,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"8AIvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271516400,"h_accuracy":0,"crc":59936,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"8AIvEP//","tow":271516400,"crc":46840} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":9,"l2ca_bias":0,"preamble":85,"l2p_bias":0,"sender":22963,"msg_type":117,"payload":"/wAAAAAAAAAA","l1ca_bias":0,"mask":255,"crc":49809,"l1p_bias":0} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MghUAy8QAAAAAAE=","wn":2098,"tow":271516500,"crc":53410} -{"length":16,"flags":17,"ns":499999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EVQDLxDkBwMZAxg6/mTNHQ==","day":25,"tow":271516500,"year":2020,"crc":57378,"minutes":24,"month":3,"seconds":58} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.240841967587134,"preamble":85,"sender":22963,"msg_type":522,"payload":"VAMvEN/HceBl6kJAj92DHFaSXsCBSrbRpz0xwAECWwQPBg==","lat":37.83123403125477,"tow":271516500,"h_accuracy":513,"crc":10073,"lon":-122.286505821967} -{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"VAMvEAcAAAD5////+v////EAygIPAg==","n":7,"d":-6,"tow":271516500,"h_accuracy":241,"crc":63290,"e":-7} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"VAMvEJsAhwBMAEgAcgAG","tow":271516500,"crc":37480,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"VAMvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271516500,"h_accuracy":0,"crc":18607,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"VAMvEP//","tow":271516500,"crc":64288} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"Mgi4Ay8QAAAAAAE=","wn":2098,"tow":271516600,"crc":8741} -{"length":16,"flags":17,"ns":599999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EbgDLxDkBwMZAxg6/kXDIw==","day":25,"tow":271516600,"year":2020,"crc":64190,"minutes":24,"month":3,"seconds":58} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.23149303397283,"preamble":85,"sender":22963,"msg_type":522,"payload":"uAMvEEyCeeBl6kJAN5CpHFaSXsBFKqIgQzsxwAECWwQPBg==","lat":37.83123403485351,"tow":271516600,"h_accuracy":513,"crc":470,"lon":-122.28650585707588} -{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"uAMvEPz///8BAAAA8P////EAygIPAg==","n":-4,"d":-16,"tow":271516600,"h_accuracy":241,"crc":7656,"e":1} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"uAMvEJsAhwBMAEgAcgAG","tow":271516600,"crc":52624,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"uAMvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271516600,"h_accuracy":0,"crc":46127,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"uAMvEP//","tow":271516600,"crc":31739} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MggcBC8QAAAAAAE=","wn":2098,"tow":271516700,"crc":24988} -{"length":16,"flags":17,"ns":699999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"ERwELxDkBwMZAxg6/ia5KQ==","day":25,"tow":271516700,"year":2020,"crc":23791,"minutes":24,"month":3,"seconds":58} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.224312416022084,"preamble":85,"sender":22963,"msg_type":522,"payload":"HAQvEM3WmuBl6kJAuVfJHFaSXsDP5tqJbDkxwAECWwQPBg==","lat":37.83123405037404,"tow":271516700,"h_accuracy":513,"crc":47439,"lon":-122.28650588667269} -{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"HAQvEAsAAAD+////BwAAAPEAygIPAg==","n":11,"d":7,"tow":271516700,"h_accuracy":241,"crc":2560,"e":-2} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"HAQvEJsAhwBMAEgAcgAG","tow":271516700,"crc":61218,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"HAQvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271516700,"h_accuracy":0,"crc":51926,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"HAQvEP//","tow":271516700,"crc":64422} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"message_type":2,"length":34,"data":[151,255,0,7,255,0,47,254,0,7,255,127,255,254,127,247,255,255,224,2,229,231,85,238,110,229,112],"preamble":85,"sender":22963,"msg_type":30583,"payload":"gwJPAy8QApf/AAf/AC/+AAf/f//+f/f//+AC5edV7m7lcA==","tow":271516495,"crc":55020,"sid":{"sat":131,"code":2}} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgiABC8QAAAAAAE=","wn":2098,"tow":271516800,"crc":14528} -{"length":16,"flags":17,"ns":799999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EYAELxDkBwMZAxg6/gevLw==","day":25,"tow":271516800,"year":2020,"crc":33381,"minutes":24,"month":3,"seconds":58} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.21506424305122,"preamble":85,"sender":22963,"msg_type":522,"payload":"gAQvEGjvreBl6kJAV/HHHFaSXsCpcUJzDjcxwAECWwQPBg==","lat":37.831234059266365,"tow":271516800,"h_accuracy":513,"crc":26292,"lon":-122.2865058853689} -{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"gAQvEAEAAAD7////8v////EAygIPAg==","n":1,"d":-14,"tow":271516800,"h_accuracy":241,"crc":14111,"e":-5} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"gAQvEJsAhwBMAEgAcgAG","tow":271516800,"crc":18765,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"gAQvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271516800,"h_accuracy":0,"crc":13543,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"gAQvEP//","tow":271516800,"crc":16097} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":237,"states":[{"cn0":214,"mesid":{"sat":5,"code":0}},{"cn0":180,"mesid":{"sat":21,"code":0}},{"cn0":189,"mesid":{"sat":2,"code":0}},{"cn0":167,"mesid":{"sat":31,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":218,"mesid":{"sat":25,"code":0}},{"cn0":207,"mesid":{"sat":12,"code":0}},{"cn0":213,"mesid":{"sat":29,"code":0}},{"cn0":206,"mesid":{"sat":18,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":206,"mesid":{"sat":131,"code":2}},{"cn0":204,"mesid":{"sat":25,"code":1}},{"cn0":187,"mesid":{"sat":12,"code":1}},{"cn0":152,"mesid":{"sat":31,"code":1}},{"cn0":196,"mesid":{"sat":18,"code":1}},{"cn0":195,"mesid":{"sat":29,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":193,"mesid":{"sat":5,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":213,"mesid":{"sat":11,"code":3}},{"cn0":179,"mesid":{"sat":9,"code":3}},{"cn0":174,"mesid":{"sat":20,"code":3}},{"cn0":208,"mesid":{"sat":5,"code":3}},{"cn0":208,"mesid":{"sat":10,"code":3}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":181,"mesid":{"sat":4,"code":3}},{"cn0":203,"mesid":{"sat":21,"code":3}},{"cn0":171,"mesid":{"sat":9,"code":4}},{"cn0":205,"mesid":{"sat":20,"code":4}},{"cn0":73,"mesid":{"sat":10,"code":4}},{"cn0":199,"mesid":{"sat":11,"code":4}},{"cn0":195,"mesid":{"sat":5,"code":4}},{"cn0":188,"mesid":{"sat":0,"code":4}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":175,"mesid":{"sat":4,"code":4}},{"cn0":200,"mesid":{"sat":35,"code":12}},{"cn0":170,"mesid":{"sat":26,"code":12}},{"cn0":156,"mesid":{"sat":34,"code":12}},{"cn0":188,"mesid":{"sat":24,"code":12}},{"cn0":157,"mesid":{"sat":25,"code":12}},{"cn0":185,"mesid":{"sat":12,"code":12}},{"cn0":184,"mesid":{"sat":19,"code":12}},{"cn0":191,"mesid":{"sat":22,"code":12}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":210,"mesid":{"sat":12,"code":13}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":195,"mesid":{"sat":12,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":192,"mesid":{"sat":25,"code":14}},{"cn0":189,"mesid":{"sat":11,"code":14}},{"cn0":205,"mesid":{"sat":24,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":159,"mesid":{"sat":31,"code":14}},{"cn0":153,"mesid":{"sat":33,"code":14}},{"cn0":201,"mesid":{"sat":25,"code":20}},{"cn0":215,"mesid":{"sat":24,"code":20}},{"cn0":194,"mesid":{"sat":11,"code":20}},{"cn0":174,"mesid":{"sat":31,"code":20}},{"cn0":206,"mesid":{"sat":12,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":168,"mesid":{"sat":33,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}}],"preamble":85,"sender":22963,"msg_type":97,"payload":"BQDWFQC0AgC9HwCnAAAAAAAAGQDaDADPHQDVEgDOAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwLOGQHMDAG7HwGYEgHEHQHDAAAABQHBAAAAAAAAAAAAAAAACwPVCQOzFAOuBQPQCgPQAAAABAO1FQPLCQSrFATNCgRJCwTHBQTDAAS8AAAABASvIwzIGgyqIgycGAy8GQydDAy5Ewy4Fgy/AAAADA3SAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADA7DAAAAGQ7ACw69GA7NAAAAHw6fIQ6ZGRTJGBTXCxTCHxSuDBTOAAAAIRSoAAAA","crc":30994} -{"length":132,"preamble":85,"sender":22963,"msg_type":151,"payload":"AgAaHQUAKzUMAFEtFQB9GRkAbUYaAKEBHQChNx8AlQ4EAxUWBQMyIQYDTggJA18OCgNxKQsDmCUMA6oDEwMiBxQDDDEVA5UlDAyUKRMMIyAUDA8CFgxDJBgMgiMZDJ0OGgxnFSIMjhEjDCItCw6LMgwODzwYDmw2GQ6XKR8OVREhDiAP","crc":53239,"azel":[{"el":29,"az":26,"sid":{"sat":2,"code":0}},{"el":53,"az":43,"sid":{"sat":5,"code":0}},{"el":45,"az":81,"sid":{"sat":12,"code":0}},{"el":25,"az":125,"sid":{"sat":21,"code":0}},{"el":70,"az":109,"sid":{"sat":25,"code":0}},{"el":1,"az":161,"sid":{"sat":26,"code":0}},{"el":55,"az":161,"sid":{"sat":29,"code":0}},{"el":14,"az":149,"sid":{"sat":31,"code":0}},{"el":22,"az":21,"sid":{"sat":4,"code":3}},{"el":33,"az":50,"sid":{"sat":5,"code":3}},{"el":8,"az":78,"sid":{"sat":6,"code":3}},{"el":14,"az":95,"sid":{"sat":9,"code":3}},{"el":41,"az":113,"sid":{"sat":10,"code":3}},{"el":37,"az":152,"sid":{"sat":11,"code":3}},{"el":3,"az":170,"sid":{"sat":12,"code":3}},{"el":7,"az":34,"sid":{"sat":19,"code":3}},{"el":49,"az":12,"sid":{"sat":20,"code":3}},{"el":37,"az":149,"sid":{"sat":21,"code":3}},{"el":41,"az":148,"sid":{"sat":12,"code":12}},{"el":32,"az":35,"sid":{"sat":19,"code":12}},{"el":2,"az":15,"sid":{"sat":20,"code":12}},{"el":36,"az":67,"sid":{"sat":22,"code":12}},{"el":35,"az":130,"sid":{"sat":24,"code":12}},{"el":14,"az":157,"sid":{"sat":25,"code":12}},{"el":21,"az":103,"sid":{"sat":26,"code":12}},{"el":17,"az":142,"sid":{"sat":34,"code":12}},{"el":45,"az":34,"sid":{"sat":35,"code":12}},{"el":50,"az":139,"sid":{"sat":11,"code":14}},{"el":60,"az":15,"sid":{"sat":12,"code":14}},{"el":54,"az":108,"sid":{"sat":24,"code":14}},{"el":41,"az":151,"sid":{"sat":25,"code":14}},{"el":17,"az":85,"sid":{"sat":31,"code":14}},{"el":15,"az":32,"sid":{"sat":33,"code":14}}]} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgjkBC8QAAAAAAE=","wn":2098,"tow":271516900,"crc":23562} -{"length":16,"flags":17,"ns":899999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EeQELxDkBwMZAxg6/uikNQ==","day":25,"tow":271516900,"year":2020,"crc":19787,"minutes":24,"month":3,"seconds":58} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.20839451157116,"preamble":85,"sender":22963,"msg_type":522,"payload":"5AQvEKSQwuBl6kJAPIe3HFaSXsAx3btXWTUxwAECWwQPBg==","lat":37.831234068872874,"tow":271516900,"h_accuracy":513,"crc":28976,"lon":-122.28650587008173} -{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"5AQvEAEAAAAEAAAAAQAAAPEAygIPAg==","n":1,"d":1,"tow":271516900,"h_accuracy":241,"crc":13635,"e":4} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"5AQvEJsAhwBMAEgAcgAG","tow":271516900,"crc":26082,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"5AQvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271516900,"h_accuracy":0,"crc":11345,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"5AQvEP//","tow":271516900,"crc":26456} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":249,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":44,"i":110564579},"flags":15,"cn0":214,"P":1051986861,"D":{"f":151,"i":-185},"lock":15,"sid":{"sat":5,"code":0}},{"L":{"f":137,"i":121820392},"flags":15,"cn0":180,"P":1159082512,"D":{"f":0,"i":2172},"lock":15,"sid":{"sat":21,"code":0}},{"L":{"f":5,"i":123343285},"flags":15,"cn0":189,"P":1173571955,"D":{"f":102,"i":-2481},"lock":15,"sid":{"sat":2,"code":0}},{"L":{"f":25,"i":128739170},"flags":15,"cn0":167,"P":1224912551,"D":{"f":97,"i":-395},"lock":15,"sid":{"sat":31,"code":0}},{"L":{"f":33,"i":107825556},"flags":15,"cn0":218,"P":1025925979,"D":{"f":54,"i":-1128},"lock":15,"sid":{"sat":25,"code":0}},{"L":{"f":95,"i":114104681},"flags":15,"cn0":207,"P":1085669841,"D":{"f":55,"i":-2968},"lock":15,"sid":{"sat":12,"code":0}},{"L":{"f":200,"i":110757939},"flags":15,"cn0":213,"P":1053826681,"D":{"f":94,"i":1483},"lock":15,"sid":{"sat":29,"code":0}},{"L":{"f":90,"i":84019934},"flags":15,"cn0":204,"P":1025926025,"D":{"f":244,"i":-880},"lock":15,"sid":{"sat":25,"code":1}},{"L":{"f":93,"i":88912770},"flags":15,"cn0":187,"P":1085669765,"D":{"f":47,"i":-2312},"lock":15,"sid":{"sat":12,"code":1}},{"L":{"f":218,"i":100316238},"flags":15,"cn0":152,"P":1224912407,"D":{"f":219,"i":-309},"lock":15,"sid":{"sat":31,"code":1}},{"L":{"f":247,"i":86304889},"flags":15,"cn0":195,"P":1053826590,"D":{"f":219,"i":1156},"lock":15,"sid":{"sat":29,"code":1}},{"L":{"f":205,"i":86154246},"flags":15,"cn0":194,"P":1051986796,"D":{"f":158,"i":-145},"lock":15,"sid":{"sat":5,"code":1}},{"L":{"f":83,"i":112934105},"flags":15,"cn0":213,"P":1056703589,"D":{"f":41,"i":1165},"lock":15,"sid":{"sat":11,"code":3}},{"L":{"f":18,"i":123346339},"flags":15,"cn0":179,"P":1154940103,"D":{"f":137,"i":-4408},"lock":15,"sid":{"sat":9,"code":3}}],"payload":"SAUvEAAAAAAyCECtC7Q+4xSXBixH/5fWDw8FABAyFkXo1EIHiXwIALQPDxUAc0nzRbURWgcFT/ZmvQ8PAgCnrgJJYmesBxl1/mGnDw8fAFtjJj2USW0GIZj7NtoPDxkA0QG2QGkZzQZfaPQ3zw8PDAB5HtA+MwiaBsjLBV7VDw8dAIljJj3eCgIFWpD89MwPDxkBhQG2QIKzTAVd+PYvuw8PDAEXrgJJTrT6BdrL/tuYDw8fAR4e0D556CQF94QE28MPDx0BbAu0PgacIgXNb/+ewg8PBQFlBPw+2Ty7BlONBCnVDw8LA8f81kSjHVoHEsjuibMPDwkD","header":{"n_obs":64,"t":{"ns_residual":0,"wn":2098,"tow":271517000}},"crc":22822} -{"length":249,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":213,"i":109773942},"flags":15,"cn0":173,"P":1026413699,"D":{"f":219,"i":-1210},"lock":15,"sid":{"sat":20,"code":3}},{"L":{"f":219,"i":114854192},"flags":15,"cn0":208,"P":1074292259,"D":{"f":22,"i":2196},"lock":15,"sid":{"sat":5,"code":3}},{"L":{"f":58,"i":111612016},"flags":15,"cn0":207,"P":1046906165,"D":{"f":162,"i":-3045},"lock":15,"sid":{"sat":10,"code":3}},{"L":{"f":42,"i":120442172},"flags":15,"cn0":180,"P":1124586000,"D":{"f":5,"i":-1317},"lock":15,"sid":{"sat":4,"code":3}},{"L":{"f":171,"i":113415375},"flags":15,"cn0":203,"P":1059718260,"D":{"f":19,"i":1623},"lock":15,"sid":{"sat":21,"code":3}},{"L":{"f":41,"i":95936051},"flags":15,"cn0":171,"P":1154940191,"D":{"f":54,"i":-3429},"lock":15,"sid":{"sat":9,"code":4}},{"L":{"f":9,"i":85379769},"flags":15,"cn0":205,"P":1026414063,"D":{"f":74,"i":-942},"lock":15,"sid":{"sat":20,"code":4}},{"L":{"f":207,"i":87837647},"flags":15,"cn0":199,"P":1056703830,"D":{"f":5,"i":907},"lock":15,"sid":{"sat":11,"code":4}},{"L":{"f":175,"i":89331042},"flags":15,"cn0":195,"P":1074292561,"D":{"f":52,"i":1709},"lock":15,"sid":{"sat":5,"code":4}},{"L":{"f":62,"i":93677235},"flags":15,"cn0":175,"P":1124586241,"D":{"f":7,"i":-1025},"lock":15,"sid":{"sat":4,"code":4}},{"L":{"f":51,"i":121584040},"flags":15,"cn0":200,"P":1167446554,"D":{"f":158,"i":-1500},"lock":15,"sid":{"sat":35,"code":12}},{"L":{"f":227,"i":129220139},"flags":15,"cn0":170,"P":1240768504,"D":{"f":62,"i":-3008},"lock":15,"sid":{"sat":26,"code":12}},{"L":{"f":3,"i":132939858},"flags":15,"cn0":156,"P":1276484851,"D":{"f":209,"i":2248},"lock":15,"sid":{"sat":34,"code":12}},{"L":{"f":27,"i":125154881},"flags":15,"cn0":188,"P":1201733957,"D":{"f":71,"i":-1302},"lock":15,"sid":{"sat":24,"code":12}}],"payload":"SAUvEAAAAAAyCEGD1C09dgSLBtVG+9utDw8UAyNmCEAwidgG25QIFtAPDwUDNYVmPnAQpwY6G/Sizw8PCgMQ0gdDPM0tByrb+gW0Dw8EA3QEKj/PlMIGq1cGE8sPDxUDH/3WRDPetwUpm/I2qw8PCQTv1S09ucoWBQlS/ErNDw8UBFYF/D7PSzwFz4sDBccPDwsEUWcIQGIVUwWvrQY0ww8PBQQB0wdDs2aVBT7/+wevDw8EBBrSlUWoOT8HMyT6nsgPDyMM+J/0SSu+swfjQPQ+qg8PGgzznBVMUoDsBwPICNGcDw8iDEUBoUdBtnUHG+r6R7wPDxgM","header":{"n_obs":65,"t":{"ns_residual":0,"wn":2098,"tow":271517000}},"crc":39593} -{"length":249,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":76,"i":134668536},"flags":15,"cn0":157,"P":1293083793,"D":{"f":109,"i":1323},"lock":15,"sid":{"sat":25,"code":12}},{"L":{"f":19,"i":121095545},"flags":15,"cn0":185,"P":1162756286,"D":{"f":34,"i":1613},"lock":15,"sid":{"sat":12,"code":12}},{"L":{"f":137,"i":124515742},"flags":15,"cn0":184,"P":1195596914,"D":{"f":207,"i":-291},"lock":15,"sid":{"sat":19,"code":12}},{"L":{"f":35,"i":124697853},"flags":15,"cn0":191,"P":1197345564,"D":{"f":19,"i":2387},"lock":15,"sid":{"sat":22,"code":12}},{"L":{"f":114,"i":93638765},"flags":15,"cn0":210,"P":1162756223,"D":{"f":185,"i":1246},"lock":15,"sid":{"sat":12,"code":13}},{"L":{"f":47,"i":116428971},"flags":15,"cn0":195,"P":1107784796,"D":{"f":110,"i":-1028},"lock":15,"sid":{"sat":12,"code":14}},{"L":{"f":10,"i":132471762},"flags":15,"cn0":192,"P":1260426824,"D":{"f":45,"i":1087},"lock":15,"sid":{"sat":25,"code":14}},{"L":{"f":170,"i":125419595},"flags":15,"cn0":189,"P":1193327714,"D":{"f":57,"i":1048},"lock":15,"sid":{"sat":11,"code":14}},{"L":{"f":216,"i":118418900},"flags":15,"cn0":204,"P":1126718248,"D":{"f":57,"i":-1745},"lock":15,"sid":{"sat":24,"code":14}},{"L":{"f":69,"i":143330505},"flags":15,"cn0":159,"P":1363744397,"D":{"f":129,"i":-3173},"lock":15,"sid":{"sat":31,"code":14}},{"L":{"f":207,"i":144530325},"flags":15,"cn0":154,"P":1375160329,"D":{"f":250,"i":-2140},"lock":15,"sid":{"sat":33,"code":14}},{"L":{"f":142,"i":101504335},"flags":15,"cn0":200,"P":1260426805,"D":{"f":224,"i":832},"lock":15,"sid":{"sat":25,"code":20}},{"L":{"f":241,"i":90736623},"flags":15,"cn0":215,"P":1126718792,"D":{"f":77,"i":-1337},"lock":15,"sid":{"sat":24,"code":20}},{"L":{"f":249,"i":96100706},"flags":15,"cn0":193,"P":1193327525,"D":{"f":33,"i":803},"lock":15,"sid":{"sat":11,"code":20}}],"payload":"SAUvEAAAAAAyCEKR5BJN+OAGCEwrBW2dDw8ZDL5ATkV5xTcHE00GIrkPDwwMclxDR571aweJ3f7PuA8PEwwcC15H/bxuByNTCRO/Dw8WDH9ATkVt0JQFct4EudIPDwwNXHQHQquQ8AYv/Ptuww8PDA5IliBL0lvlBwo/BC3ADw8ZDmK8IEdLwHkHqhgEOb0PDwsOKFsoQ9TtDgfYL/k5zA8PGA6NFklRyQyLCEWb84GfDw8fDglI91GVW50Iz6T3+poPDyEONZYgS0/VDAaOQAPgyA8PGRRIXShD74doBfHH+k3XDw8YFKW7IEdiYboF+SMDIcEPDwsU","header":{"n_obs":66,"t":{"ns_residual":0,"wn":2098,"tow":271517000}},"crc":25537} -{"length":62,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":99,"i":109824714},"flags":15,"cn0":174,"P":1363744465,"D":{"f":83,"i":-2430},"lock":15,"sid":{"sat":31,"code":20}},{"L":{"f":176,"i":89211839},"flags":15,"cn0":206,"P":1107784643,"D":{"f":210,"i":-787},"lock":15,"sid":{"sat":12,"code":20}},{"L":{"f":101,"i":110744086},"flags":15,"cn0":169,"P":1375160272,"D":{"f":39,"i":-1639},"lock":15,"sid":{"sat":33,"code":20}}],"payload":"SAUvEAAAAAAyCEPRFklRysqLBmOC9lOuDw8fFMNzB0K/Q1EFsO380s4PDwwU0Ef3URbSmQZlmfknqQ8PIRQ=","header":{"n_obs":67,"t":{"ns_residual":0,"wn":2098,"tow":271517000}},"crc":2209} -{"length":9,"l2ca_bias":0,"preamble":85,"l2p_bias":0,"sender":22963,"msg_type":117,"payload":"/wAAAAAAAAAA","l1ca_bias":0,"mask":255,"crc":49809,"l1p_bias":0} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MghIBS8QAAAAAAE=","wn":2098,"tow":271517000,"crc":46727} -{"length":16,"flags":17,"ns":999999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EUgFLxDkBwMZAxg6/smaOw==","day":25,"tow":271517000,"year":2020,"crc":13689,"minutes":24,"month":3,"seconds":58} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.196869277824238,"preamble":85,"sender":22963,"msg_type":522,"payload":"SAUvEMxU4uBl6kJA+RujHFaSXsCd12UGZjIxwAECWwQPBg==","lat":37.83123408366518,"tow":271517000,"h_accuracy":513,"crc":59819,"lon":-122.28650585106506} -{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"SAUvEPr/////////8f////EAygIPAg==","n":-6,"d":-15,"tow":271517000,"h_accuracy":241,"crc":16617,"e":-1} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"SAUvEJsAhwBMAEgAcgAG","tow":271517000,"crc":27506,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"SAUvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271517000,"h_accuracy":0,"crc":53373,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"SAUvEP//","tow":271517000,"crc":10178} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":51,"text":"GLO L2OF ME 1 [+1341ms] low CN0 too long, dropping","preamble":85,"sender":22963,"msg_type":1025,"payload":"BkdMTyBMMk9GIE1FIDEgWysxMzQxbXNdIGxvdyBDTjAgdG9vIGxvbmcsIGRyb3BwaW5n","crc":694,"level":6} -{"length":4,"flags":2147616000,"preamble":85,"sender":22963,"msg_type":65535,"payload":"AAUCgA==","crc":40942} -{"length":24,"z":3890655.0240602265,"preamble":85,"sender":22963,"msg_type":72,"payload":"UO0a3iqORMHK1UJhIkRQwc9nFIPvrk1B","crc":2168,"x":-2694229.735196747,"y":-4264073.519704292} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgisBS8QAAAAAAE=","wn":2098,"tow":271517100,"crc":28159} -{"length":16,"flags":17,"ns":99999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EawFLxDkBwMZAxg7/uD1BQ==","day":25,"tow":271517100,"year":2020,"crc":13131,"minutes":24,"month":3,"seconds":59} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.18717393164276,"preamble":85,"sender":22963,"msg_type":522,"payload":"rAUvEMPzAOFl6kJAkAl9HFaSXsDEEXuh6i8xwAECWwQPBg==","lat":37.831234097924174,"tow":271517100,"h_accuracy":513,"crc":26122,"lon":-122.28650581560782} -{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"rAUvEAEAAAAJAAAACgAAAPEAygIPAg==","n":1,"d":10,"tow":271517100,"h_accuracy":241,"crc":64871,"e":9} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"rAUvEJsAhwBMAEgAcgAG","tow":271517100,"crc":5071,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"rAUvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271517100,"h_accuracy":0,"crc":29278,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"rAUvEP//","tow":271517100,"crc":43611} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MggQBi8QAAAAAAE=","wn":2098,"tow":271517200,"crc":23338} -{"length":16,"flags":17,"ns":199999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"ERAGLxDkBwMZAxg7/sHrCw==","day":25,"tow":271517200,"year":2020,"crc":62935,"minutes":24,"month":3,"seconds":59} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.173092531103435,"preamble":85,"sender":22963,"msg_type":522,"payload":"EAYvECTPPuFl6kJAWTRlHFaSXsBoRcjKTywxwAECWwQPBg==","lat":37.83123412672856,"tow":271517200,"h_accuracy":513,"crc":43760,"lon":-122.28650579341173} -{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"EAYvEA0AAAACAAAA5f////EAygIPAg==","n":13,"d":-27,"tow":271517200,"h_accuracy":241,"crc":9297,"e":2} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"EAYvEJsAhwBMAEgAcgAG","tow":271517200,"crc":42263,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"EAYvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271517200,"h_accuracy":0,"crc":35065,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"EAYvEP//","tow":271517200,"crc":46278} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"Mgh0Bi8QAAAAAAE=","wn":2098,"tow":271517300,"crc":16352} -{"length":16,"flags":17,"ns":299999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EXQGLxDkBwMZAxg7/qLhEQ==","day":25,"tow":271517300,"year":2020,"crc":18419,"minutes":24,"month":3,"seconds":59} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.16298699658093,"preamble":85,"sender":22963,"msg_type":522,"payload":"dAYvELP0Q+Fl6kJAeilAHFaSXsAF/QuEuSkxwAECWwQPBg==","lat":37.831234129125185,"tow":271517300,"h_accuracy":513,"crc":5562,"lon":-122.28650575891325} -{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"dAYvEPj///8FAAAAFwAAAPEAygIPAg==","n":-8,"d":23,"tow":271517300,"h_accuracy":241,"crc":14928,"e":5} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"dAYvEJsAhwBMAEgAcgAG","tow":271517300,"crc":35256,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"dAYvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271517300,"h_accuracy":0,"crc":36943,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"dAYvEP//","tow":271517300,"crc":60799} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":237,"states":[{"cn0":213,"mesid":{"sat":5,"code":0}},{"cn0":180,"mesid":{"sat":21,"code":0}},{"cn0":189,"mesid":{"sat":2,"code":0}},{"cn0":168,"mesid":{"sat":31,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":218,"mesid":{"sat":25,"code":0}},{"cn0":207,"mesid":{"sat":12,"code":0}},{"cn0":213,"mesid":{"sat":29,"code":0}},{"cn0":206,"mesid":{"sat":18,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":205,"mesid":{"sat":131,"code":2}},{"cn0":204,"mesid":{"sat":25,"code":1}},{"cn0":187,"mesid":{"sat":12,"code":1}},{"cn0":153,"mesid":{"sat":31,"code":1}},{"cn0":197,"mesid":{"sat":18,"code":1}},{"cn0":195,"mesid":{"sat":29,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":194,"mesid":{"sat":5,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":213,"mesid":{"sat":100,"code":3}},{"cn0":179,"mesid":{"sat":98,"code":3}},{"cn0":173,"mesid":{"sat":102,"code":3}},{"cn0":207,"mesid":{"sat":101,"code":3}},{"cn0":207,"mesid":{"sat":93,"code":3}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":180,"mesid":{"sat":106,"code":3}},{"cn0":203,"mesid":{"sat":104,"code":3}},{"cn0":171,"mesid":{"sat":98,"code":4}},{"cn0":205,"mesid":{"sat":102,"code":4}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":199,"mesid":{"sat":100,"code":4}},{"cn0":196,"mesid":{"sat":101,"code":4}},{"cn0":188,"mesid":{"sat":104,"code":4}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":175,"mesid":{"sat":106,"code":4}},{"cn0":199,"mesid":{"sat":35,"code":12}},{"cn0":170,"mesid":{"sat":26,"code":12}},{"cn0":155,"mesid":{"sat":34,"code":12}},{"cn0":188,"mesid":{"sat":24,"code":12}},{"cn0":157,"mesid":{"sat":25,"code":12}},{"cn0":185,"mesid":{"sat":12,"code":12}},{"cn0":184,"mesid":{"sat":19,"code":12}},{"cn0":191,"mesid":{"sat":22,"code":12}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":209,"mesid":{"sat":12,"code":13}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":195,"mesid":{"sat":12,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":192,"mesid":{"sat":25,"code":14}},{"cn0":189,"mesid":{"sat":11,"code":14}},{"cn0":204,"mesid":{"sat":24,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":159,"mesid":{"sat":31,"code":14}},{"cn0":154,"mesid":{"sat":33,"code":14}},{"cn0":200,"mesid":{"sat":25,"code":20}},{"cn0":215,"mesid":{"sat":24,"code":20}},{"cn0":193,"mesid":{"sat":11,"code":20}},{"cn0":174,"mesid":{"sat":31,"code":20}},{"cn0":206,"mesid":{"sat":12,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":169,"mesid":{"sat":33,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}}],"preamble":85,"sender":22963,"msg_type":97,"payload":"BQDVFQC0AgC9HwCoAAAAAAAAGQDaDADPHQDVEgDOAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwLNGQHMDAG7HwGZEgHFHQHDAAAABQHCAAAAAAAAAAAAAAAAZAPVYgOzZgOtZQPPXQPPAAAAagO0aAPLYgSrZgTNAAAAZATHZQTEaAS8AAAAagSvIwzHGgyqIgybGAy8GQydDAy5Ewy4Fgy/AAAADA3RAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADA7DAAAAGQ7ACw69GA7MAAAAHw6fIQ6aGRTIGBTXCxTBHxSuDBTOAAAAIRSpAAAA","crc":847} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgjYBi8QAAAAAAE=","wn":2098,"tow":271517400,"crc":37566} -{"length":16,"flags":17,"ns":399999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EdgGLxDkBwMZAxg7/oPXFw==","day":25,"tow":271517400,"year":2020,"crc":19457,"minutes":24,"month":3,"seconds":59} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.15550189117272,"preamble":85,"sender":22963,"msg_type":522,"payload":"2AYvEFldbuFl6kJAQ5sfHFaSXsCQDdH4zicxwAECWwQPBg==","lat":37.831234148873314,"tow":271517400,"h_accuracy":513,"crc":25589,"lon":-122.28650572859355} -{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"2AYvEAcAAAD/////FQAAAPEAygIPAg==","n":7,"d":21,"tow":271517400,"h_accuracy":241,"crc":18934,"e":-1} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"2AYvEJsAhwBMAEgAcgAG","tow":271517400,"crc":64585,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"2AYvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271517400,"h_accuracy":0,"crc":47509,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"2AYvEP//","tow":271517400,"crc":1972} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":9,"l2ca_bias":0,"preamble":85,"l2p_bias":0,"sender":22963,"msg_type":117,"payload":"/wAAAAAAAAAA","l1ca_bias":0,"mask":255,"crc":49809,"l1p_bias":0} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"Mgg8By8QAAAAAAE=","wn":2098,"tow":271517500,"crc":3605} -{"length":16,"flags":17,"ns":499999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"ETwHLxDkBwMZAxg7/mTNHQ==","day":25,"tow":271517500,"year":2020,"crc":10126,"minutes":24,"month":3,"seconds":59} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.143758765913297,"preamble":85,"sender":22963,"msg_type":522,"payload":"PAcvEDcXjuFl6kJAZC8SHFaSXsBmHN5fzSQxwAECWwQPBg==","lat":37.831234163646904,"tow":271517500,"h_accuracy":513,"crc":4015,"lon":-122.28650571609393} -{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"PAcvEAEAAAD1////5f////EAygIPAg==","n":1,"d":-27,"tow":271517500,"h_accuracy":241,"crc":42456,"e":-11} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"PAcvEJsAhwBMAEgAcgAG","tow":271517500,"crc":65429,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"PAcvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271517500,"h_accuracy":0,"crc":52800,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"PAcvEP//","tow":271517500,"crc":8316} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgigBy8QAAAAAAE=","wn":2098,"tow":271517600,"crc":22345} -{"length":16,"flags":17,"ns":599999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EaAHLxDkBwMZAxg7/kXDIw==","day":25,"tow":271517600,"year":2020,"crc":50309,"minutes":24,"month":3,"seconds":59} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.13693878404386,"preamble":85,"sender":22963,"msg_type":522,"payload":"oAcvEGhGtuFl6kJAwAcAHFaSXsC7BY9rDiMxwAECWwQPBg==","lat":37.831234182359196,"tow":271517600,"h_accuracy":513,"crc":13050,"lon":-122.28650569918591} -{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"oAcvEAMAAAD9////AgAAAPEAygIPAg==","n":3,"d":2,"tow":271517600,"h_accuracy":241,"crc":19995,"e":-3} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"oAcvEJsAhwBMAEgAcgAG","tow":271517600,"crc":23034,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"oAcvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271517600,"h_accuracy":0,"crc":12401,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"oAcvEP//","tow":271517600,"crc":58683} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MggECC8QAAAAAAE=","wn":2098,"tow":271517700,"crc":2602} -{"length":16,"flags":17,"ns":699999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EQQILxDkBwMZAxg7/ia5KQ==","day":25,"tow":271517700,"year":2020,"crc":35263,"minutes":24,"month":3,"seconds":59} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.127575054042886,"preamble":85,"sender":22963,"msg_type":522,"payload":"BAgvEDle5uFl6kJAz1ncG1aSXsBO5jzCqCAxwAECWwQPBg==","lat":37.83123420475426,"tow":271517700,"h_accuracy":513,"crc":20060,"lon":-122.28650566595682} -{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"BAgvEAAAAAAGAAAA6v////EAygIPAg==","n":0,"d":-22,"tow":271517700,"h_accuracy":241,"crc":30651,"e":6} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"BAgvEJsAhwBMAEgAcgAG","tow":271517700,"crc":36899,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"BAgvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271517700,"h_accuracy":0,"crc":33278,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"BAgvEP//","tow":271517700,"crc":26443} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"message_type":28,"length":34,"data":[83,49,75,190,0,32,74,228,24,189,98,25,146,80,214,168,204,60,1,100,66,87,31,228,10,128,48],"preamble":85,"sender":22963,"msg_type":30583,"payload":"gwIfBy8QHFMxS74AIErkGL1iGZJQ1qjMPAFkQlcf5AqAMA==","tow":271517471,"crc":11304,"sid":{"sat":131,"code":2}} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MghoCC8QAAAAAAE=","wn":2098,"tow":271517800,"crc":18207} -{"length":16,"flags":17,"ns":799999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EWgILxDkBwMZAxg7/gevLw==","day":25,"tow":271517800,"year":2020,"crc":64176,"minutes":24,"month":3,"seconds":59} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.117424736018553,"preamble":85,"sender":22963,"msg_type":522,"payload":"aAgvEN3d+OFl6kJAixa8G1aSXsDt8CiMDx4xwAECWwQPBg==","lat":37.83123421336834,"tow":271517800,"h_accuracy":513,"crc":33093,"lon":-122.28650563590979} -{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"aAgvEPz///8JAAAA/P////EAygIPAg==","n":-4,"d":-4,"tow":271517800,"h_accuracy":241,"crc":25145,"e":9} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"aAgvEJsAhwBMAEgAcgAG","tow":271517800,"crc":39881,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"aAgvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271517800,"h_accuracy":0,"crc":51179,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"aAgvEP//","tow":271517800,"crc":13232} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":237,"states":[{"cn0":213,"mesid":{"sat":5,"code":0}},{"cn0":181,"mesid":{"sat":21,"code":0}},{"cn0":189,"mesid":{"sat":2,"code":0}},{"cn0":168,"mesid":{"sat":31,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":218,"mesid":{"sat":25,"code":0}},{"cn0":207,"mesid":{"sat":12,"code":0}},{"cn0":213,"mesid":{"sat":29,"code":0}},{"cn0":206,"mesid":{"sat":18,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":205,"mesid":{"sat":131,"code":2}},{"cn0":203,"mesid":{"sat":25,"code":1}},{"cn0":187,"mesid":{"sat":12,"code":1}},{"cn0":152,"mesid":{"sat":31,"code":1}},{"cn0":196,"mesid":{"sat":18,"code":1}},{"cn0":194,"mesid":{"sat":29,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":193,"mesid":{"sat":5,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":213,"mesid":{"sat":11,"code":3}},{"cn0":179,"mesid":{"sat":9,"code":3}},{"cn0":173,"mesid":{"sat":20,"code":3}},{"cn0":208,"mesid":{"sat":5,"code":3}},{"cn0":208,"mesid":{"sat":10,"code":3}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":180,"mesid":{"sat":4,"code":3}},{"cn0":203,"mesid":{"sat":21,"code":3}},{"cn0":171,"mesid":{"sat":9,"code":4}},{"cn0":205,"mesid":{"sat":20,"code":4}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":199,"mesid":{"sat":11,"code":4}},{"cn0":196,"mesid":{"sat":5,"code":4}},{"cn0":188,"mesid":{"sat":0,"code":4}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":175,"mesid":{"sat":4,"code":4}},{"cn0":200,"mesid":{"sat":35,"code":12}},{"cn0":170,"mesid":{"sat":26,"code":12}},{"cn0":156,"mesid":{"sat":34,"code":12}},{"cn0":188,"mesid":{"sat":24,"code":12}},{"cn0":158,"mesid":{"sat":25,"code":12}},{"cn0":185,"mesid":{"sat":12,"code":12}},{"cn0":184,"mesid":{"sat":19,"code":12}},{"cn0":191,"mesid":{"sat":22,"code":12}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":209,"mesid":{"sat":12,"code":13}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":195,"mesid":{"sat":12,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":191,"mesid":{"sat":25,"code":14}},{"cn0":189,"mesid":{"sat":11,"code":14}},{"cn0":204,"mesid":{"sat":24,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":159,"mesid":{"sat":31,"code":14}},{"cn0":153,"mesid":{"sat":33,"code":14}},{"cn0":200,"mesid":{"sat":25,"code":20}},{"cn0":215,"mesid":{"sat":24,"code":20}},{"cn0":194,"mesid":{"sat":11,"code":20}},{"cn0":174,"mesid":{"sat":31,"code":20}},{"cn0":206,"mesid":{"sat":12,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":170,"mesid":{"sat":33,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}}],"preamble":85,"sender":22963,"msg_type":97,"payload":"BQDVFQC1AgC9HwCoAAAAAAAAGQDaDADPHQDVEgDOAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwLNGQHLDAG7HwGYEgHEHQHCAAAABQHBAAAAAAAAAAAAAAAACwPVCQOzFAOtBQPQCgPQAAAABAO0FQPLCQSrFATNAAAACwTHBQTEAAS8AAAABASvIwzIGgyqIgycGAy8GQyeDAy5Ewy4Fgy/AAAADA3RAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADA7DAAAAGQ6/Cw69GA7MAAAAHw6fIQ6ZGRTIGBTXCxTCHxSuDBTOAAAAIRSqAAAA","crc":13563} -{"length":132,"preamble":85,"sender":22963,"msg_type":151,"payload":"AgAaHQUAKzUMAFEtFQB9GRkAbUYaAKEBHQChNx8AlQ4EAxUWBQMyIQYDTggJA18OCgNxKQsDmCUMA6oDEwMiBxQDDDEVA5UlDAyUKRMMIyAUDA8CFgxDJBgMgiMZDJ0OGgxnFSIMjhEjDCItCw6LMgwODzwYDmw2GQ6XKR8OVREhDiAP","crc":53239,"azel":[{"el":29,"az":26,"sid":{"sat":2,"code":0}},{"el":53,"az":43,"sid":{"sat":5,"code":0}},{"el":45,"az":81,"sid":{"sat":12,"code":0}},{"el":25,"az":125,"sid":{"sat":21,"code":0}},{"el":70,"az":109,"sid":{"sat":25,"code":0}},{"el":1,"az":161,"sid":{"sat":26,"code":0}},{"el":55,"az":161,"sid":{"sat":29,"code":0}},{"el":14,"az":149,"sid":{"sat":31,"code":0}},{"el":22,"az":21,"sid":{"sat":4,"code":3}},{"el":33,"az":50,"sid":{"sat":5,"code":3}},{"el":8,"az":78,"sid":{"sat":6,"code":3}},{"el":14,"az":95,"sid":{"sat":9,"code":3}},{"el":41,"az":113,"sid":{"sat":10,"code":3}},{"el":37,"az":152,"sid":{"sat":11,"code":3}},{"el":3,"az":170,"sid":{"sat":12,"code":3}},{"el":7,"az":34,"sid":{"sat":19,"code":3}},{"el":49,"az":12,"sid":{"sat":20,"code":3}},{"el":37,"az":149,"sid":{"sat":21,"code":3}},{"el":41,"az":148,"sid":{"sat":12,"code":12}},{"el":32,"az":35,"sid":{"sat":19,"code":12}},{"el":2,"az":15,"sid":{"sat":20,"code":12}},{"el":36,"az":67,"sid":{"sat":22,"code":12}},{"el":35,"az":130,"sid":{"sat":24,"code":12}},{"el":14,"az":157,"sid":{"sat":25,"code":12}},{"el":21,"az":103,"sid":{"sat":26,"code":12}},{"el":17,"az":142,"sid":{"sat":34,"code":12}},{"el":45,"az":34,"sid":{"sat":35,"code":12}},{"el":50,"az":139,"sid":{"sat":11,"code":14}},{"el":60,"az":15,"sid":{"sat":12,"code":14}},{"el":54,"az":108,"sid":{"sat":24,"code":14}},{"el":41,"az":151,"sid":{"sat":25,"code":14}},{"el":17,"az":85,"sid":{"sat":31,"code":14}},{"el":15,"az":32,"sid":{"sat":33,"code":14}}]} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgjMCC8QAAAAAAE=","wn":2098,"tow":271517900,"crc":50110} -{"length":16,"flags":17,"ns":899999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EcwILxDkBwMZAxg7/uikNQ==","day":25,"tow":271517900,"year":2020,"crc":19333,"minutes":24,"month":3,"seconds":59} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.10475916134165,"preamble":85,"sender":22963,"msg_type":522,"payload":"zAgvED+4I+Jl6kJAuoSiG1aSXsA16xN/0RoxwAECWwQPBg==","lat":37.83123423332335,"tow":271517900,"h_accuracy":513,"crc":24335,"lon":-122.28650561209625} -{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"zAgvEAcAAAAEAAAACAAAAPEAygIPAg==","n":7,"d":8,"tow":271517900,"h_accuracy":241,"crc":35946,"e":4} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"zAgvEJsAhwBMAEgAcgAG","tow":271517900,"crc":51581,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"zAgvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271517900,"h_accuracy":0,"crc":45202,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"zAgvEP//","tow":271517900,"crc":54329} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":249,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":253,"i":110564762},"flags":15,"cn0":213,"P":1051988607,"D":{"f":60,"i":-186},"lock":15,"sid":{"sat":5,"code":0}},{"L":{"f":187,"i":121818218},"flags":15,"cn0":181,"P":1159061826,"D":{"f":32,"i":2172},"lock":15,"sid":{"sat":21,"code":0}},{"L":{"f":110,"i":123345763},"flags":15,"cn0":189,"P":1173595539,"D":{"f":110,"i":-2481},"lock":15,"sid":{"sat":2,"code":0}},{"L":{"f":230,"i":128739565},"flags":15,"cn0":168,"P":1224916309,"D":{"f":221,"i":-398},"lock":15,"sid":{"sat":31,"code":0}},{"L":{"f":124,"i":107826683},"flags":15,"cn0":218,"P":1025936705,"D":{"f":224,"i":-1130},"lock":15,"sid":{"sat":25,"code":0}},{"L":{"f":191,"i":114107648},"flags":15,"cn0":207,"P":1085698073,"D":{"f":198,"i":-2971},"lock":15,"sid":{"sat":12,"code":0}},{"L":{"f":52,"i":110756455},"flags":15,"cn0":213,"P":1053812550,"D":{"f":72,"i":1483},"lock":15,"sid":{"sat":29,"code":0}},{"L":{"f":209,"i":84020812},"flags":15,"cn0":204,"P":1025936749,"D":{"f":140,"i":-881},"lock":15,"sid":{"sat":25,"code":1}},{"L":{"f":155,"i":88915082},"flags":15,"cn0":187,"P":1085698001,"D":{"f":187,"i":-2314},"lock":15,"sid":{"sat":12,"code":1}},{"L":{"f":71,"i":100316547},"flags":15,"cn0":151,"P":1224916183,"D":{"f":76,"i":-310},"lock":15,"sid":{"sat":31,"code":1}},{"L":{"f":39,"i":86303733},"flags":15,"cn0":194,"P":1053812468,"D":{"f":20,"i":1156},"lock":15,"sid":{"sat":29,"code":1}},{"L":{"f":11,"i":86154390},"flags":15,"cn0":193,"P":1051988537,"D":{"f":169,"i":-146},"lock":15,"sid":{"sat":5,"code":1}},{"L":{"f":46,"i":112932940},"flags":15,"cn0":213,"P":1056692690,"D":{"f":83,"i":1163},"lock":15,"sid":{"sat":11,"code":3}},{"L":{"f":237,"i":123350745},"flags":15,"cn0":179,"P":1154981348,"D":{"f":133,"i":-4410},"lock":15,"sid":{"sat":9,"code":3}}],"payload":"MAkvEAAAAAAyCEB/ErQ+mhWXBv1G/zzVDw8FAELhFUVqzEIHu3wIILUPDxUAk6XzRWMbWgduT/ZuvQ8PAgBVvQJJ7WisB+Zy/t2oDw8fAEGNJj37TW0GfJb74NoPDxkAGXC2QAAlzQa/ZfTGzw8PDABG588+ZwKaBjTLBUjVDw8dAG2NJj1MDgIF0Y/8jMwPDxkB0W+2QIq8TAWb9va7uw8PDAHXvAJJg7X6BUfK/kyXDw8fAfTmzz714yQFJ4QEFMIPDx0BORK0PpacIgULbv+pwQ8PBQHS2fs+TDi7Bi6LBFPVDw8LA+Sd10TZLloH7cbuhbMPDwkD","header":{"n_obs":64,"t":{"ns_residual":0,"wn":2098,"tow":271518000}},"crc":54063} -{"length":249,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":130,"i":109775152},"flags":15,"cn0":174,"P":1026425017,"D":{"f":118,"i":-1211},"lock":15,"sid":{"sat":20,"code":3}},{"L":{"f":71,"i":114851995},"flags":15,"cn0":208,"P":1074271718,"D":{"f":45,"i":2195},"lock":15,"sid":{"sat":5,"code":3}},{"L":{"f":165,"i":111615060},"flags":15,"cn0":208,"P":1046934737,"D":{"f":43,"i":-3047},"lock":15,"sid":{"sat":10,"code":3}},{"L":{"f":7,"i":120443489},"flags":15,"cn0":180,"P":1124598266,"D":{"f":191,"i":-1320},"lock":15,"sid":{"sat":4,"code":3}},{"L":{"f":130,"i":113413752},"flags":15,"cn0":203,"P":1059703104,"D":{"f":100,"i":1621},"lock":15,"sid":{"sat":21,"code":3}},{"L":{"f":181,"i":95939478},"flags":15,"cn0":171,"P":1154981471,"D":{"f":106,"i":-3429},"lock":15,"sid":{"sat":9,"code":4}},{"L":{"f":229,"i":85380709},"flags":15,"cn0":205,"P":1026425379,"D":{"f":66,"i":-942},"lock":15,"sid":{"sat":20,"code":4}},{"L":{"f":149,"i":87836741},"flags":15,"cn0":199,"P":1056692948,"D":{"f":65,"i":905},"lock":15,"sid":{"sat":11,"code":4}},{"L":{"f":117,"i":89329333},"flags":15,"cn0":195,"P":1074271999,"D":{"f":230,"i":1706},"lock":15,"sid":{"sat":5,"code":4}},{"L":{"f":118,"i":93678259},"flags":15,"cn0":175,"P":1124598557,"D":{"f":172,"i":-1026},"lock":15,"sid":{"sat":4,"code":4}},{"L":{"f":247,"i":121585538},"flags":15,"cn0":200,"P":1167460944,"D":{"f":172,"i":-1501},"lock":15,"sid":{"sat":35,"code":12}},{"L":{"f":78,"i":129223147},"flags":15,"cn0":170,"P":1240797383,"D":{"f":111,"i":-3009},"lock":15,"sid":{"sat":26,"code":12}},{"L":{"f":208,"i":132937608},"flags":15,"cn0":156,"P":1276463243,"D":{"f":177,"i":2246},"lock":15,"sid":{"sat":34,"code":12}},{"L":{"f":195,"i":125156183},"flags":15,"cn0":188,"P":1201746472,"D":{"f":152,"i":-1305},"lock":15,"sid":{"sat":24,"code":12}}],"payload":"MAkvEAAAAAAyCEG5AC49MAmLBoJF+3auDw8UA+YVCECbgNgGR5MILdAPDwUD0fRmPlQcpwalGfQr0A8PCgP6AQhDYdItBwfY+r+0Dw8EA0DJKT94jsIGglUGZMsPDxUDX57XRJbrtwW1m/Jqqw8PCQQjAi49Zc4WBeVS/ELNDw8UBNTa+z5FSDwFlYkDQccPDwsE/xYIQLUOUwV1qgbmww8PBQQdAwhDs2qVBXb++6yvDw8EBFAKlkWCPz8H9yP6rMgPDyMMxxD1SevJswdOP/Rvqg8PGgyLSBVMiHfsB9DGCLGcDw8iDCgyoUdXu3UHw+f6mLwPDxgM","header":{"n_obs":65,"t":{"ns_residual":0,"wn":2098,"tow":271518000}},"crc":24468} -{"length":249,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":162,"i":134667211},"flags":15,"cn0":158,"P":1293071091,"D":{"f":84,"i":1324},"lock":15,"sid":{"sat":25,"code":12}},{"L":{"f":185,"i":121093932},"flags":15,"cn0":185,"P":1162740804,"D":{"f":77,"i":1610},"lock":15,"sid":{"sat":12,"code":12}},{"L":{"f":94,"i":124516032},"flags":15,"cn0":184,"P":1195599701,"D":{"f":190,"i":-292},"lock":15,"sid":{"sat":19,"code":12}},{"L":{"f":148,"i":124695465},"flags":15,"cn0":191,"P":1197322634,"D":{"f":47,"i":2386},"lock":15,"sid":{"sat":22,"code":12}},{"L":{"f":175,"i":93637518},"flags":15,"cn0":209,"P":1162740742,"D":{"f":122,"i":1244},"lock":15,"sid":{"sat":12,"code":13}},{"L":{"f":143,"i":116429997},"flags":15,"cn0":194,"P":1107794557,"D":{"f":160,"i":-1030},"lock":15,"sid":{"sat":12,"code":14}},{"L":{"f":18,"i":132470674},"flags":15,"cn0":191,"P":1260416468,"D":{"f":244,"i":1084},"lock":15,"sid":{"sat":25,"code":14}},{"L":{"f":244,"i":125418547},"flags":15,"cn0":189,"P":1193317740,"D":{"f":200,"i":1045},"lock":15,"sid":{"sat":11,"code":14}},{"L":{"f":55,"i":118420645},"flags":15,"cn0":204,"P":1126734848,"D":{"f":169,"i":-1747},"lock":15,"sid":{"sat":24,"code":14}},{"L":{"f":10,"i":143333677},"flags":15,"cn0":159,"P":1363774569,"D":{"f":157,"i":-3175},"lock":15,"sid":{"sat":31,"code":14}},{"L":{"f":241,"i":144532465},"flags":15,"cn0":153,"P":1375180737,"D":{"f":112,"i":-2140},"lock":15,"sid":{"sat":33,"code":14}},{"L":{"f":237,"i":101503501},"flags":15,"cn0":200,"P":1260416454,"D":{"f":167,"i":831},"lock":15,"sid":{"sat":25,"code":20}},{"L":{"f":139,"i":90737960},"flags":15,"cn0":215,"P":1126735388,"D":{"f":149,"i":-1339},"lock":15,"sid":{"sat":24,"code":20}},{"L":{"f":51,"i":96099904},"flags":15,"cn0":194,"P":1193317557,"D":{"f":148,"i":801},"lock":15,"sid":{"sat":11,"code":20}}],"payload":"MAkvEAAAAAAyCELzshJNy9sGCKIsBVSeDw8ZDEQETkUsvzcHuUoGTbkPDwwMVWdDR8D2awde3P6+uA8PEwyKsV1HqbNuB5RSCS+/Dw8WDAYETkWOy5QFr9wEetEPDwwNfZoHQq2U8AaP+vugwg8PDA7UbSBLklflBxI8BPS/Dw8ZDmyVIEczvHkH9BUEyL0PDwsOAJwoQ6X0Dgc3LfmpzA8PGA5pjElRLRmLCAqZ852fDw8fDsGX91HxY50I8aT3cJkPDyEOxm0gSw3SDAbtPwOnyA8PGRQcnihDKI1oBYvF+pXXDw8YFLWUIEdAXroFMyEDlMIPDwsU","header":{"n_obs":66,"t":{"ns_residual":0,"wn":2098,"tow":271518000}},"crc":16304} -{"length":62,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":184,"i":109827144},"flags":15,"cn0":174,"P":1363774649,"D":{"f":205,"i":-2433},"lock":15,"sid":{"sat":31,"code":20}},{"L":{"f":34,"i":89212626},"flags":15,"cn0":206,"P":1107794408,"D":{"f":133,"i":-789},"lock":15,"sid":{"sat":12,"code":20}},{"L":{"f":56,"i":110745726},"flags":15,"cn0":169,"P":1375180631,"D":{"f":42,"i":-1640},"lock":15,"sid":{"sat":33,"code":20}}],"payload":"MAkvEAAAAAAyCEO5jElRSNSLBrh/9s2uDw8fFOiZB0LSRlEFIuv8hc4PDwwUV5f3UX7YmQY4mPkqqQ8PIRQ=","header":{"n_obs":67,"t":{"ns_residual":0,"wn":2098,"tow":271518000}},"crc":37685} -{"length":9,"l2ca_bias":0,"preamble":85,"l2p_bias":0,"sender":22963,"msg_type":117,"payload":"/wAAAAAAAAAA","l1ca_bias":0,"mask":255,"crc":49809,"l1p_bias":0} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MggwCS8QAAAAAAE=","wn":2098,"tow":271518000,"crc":9492} -{"length":16,"flags":17,"ns":999999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"ETAJLxDkBwMZAxg7/smaOw==","day":25,"tow":271518000,"year":2020,"crc":22324,"minutes":24,"month":3,"seconds":59} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.09136842793551,"preamble":85,"sender":22963,"msg_type":522,"payload":"MAkvEJwmSOJl6kJAw7GlG1aSXsC13tnrYxcxwAECWwQPBg==","lat":37.831234250287906,"tow":271518000,"h_accuracy":513,"crc":58537,"lon":-122.28650561505405} -{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"MAkvEAEAAAD3////AwAAAPEAygIPAg==","n":1,"d":3,"tow":271518000,"h_accuracy":241,"crc":55399,"e":-9} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"MAkvEJsAhwBMAEgAcgAG","tow":271518000,"crc":41838,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"MAkvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271518000,"h_accuracy":0,"crc":9378,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"MAkvEP//","tow":271518000,"crc":58423} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":4,"flags":2147616000,"preamble":85,"sender":22963,"msg_type":65535,"payload":"AAUCgA==","crc":40942} -{"length":24,"z":3890655.0240602265,"preamble":85,"sender":22963,"msg_type":72,"payload":"UO0a3iqORMHK1UJhIkRQwc9nFIPvrk1B","crc":2168,"x":-2694229.735196747,"y":-4264073.519704292} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"bWFpbgAAAAAAAAAAAAAAAAAAAAAAAAx1AAA=","name":"main\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":47991,"stack_free":29964,"cpu":0} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"aWRsZQAAAAAAAAAAAAAAAAAAAAAZAHwAAAA=","name":"idle\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":5686,"stack_free":124,"cpu":25} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"cnBtc2cAAAAAAAAAAAAAAAAAAAABACwOAAA=","name":"rpmsg\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":9530,"stack_free":3628,"cpu":1} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"U0JQAAAAAAAAAAAAAAAAAAAAAAAAAPz/AAA=","name":"SBP\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":51784,"stack_free":65532,"cpu":0} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"TkFQAAAAAAAAAAAAAAAAAAAAAAAAAASAAAA=","name":"NAP\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":33651,"stack_free":32772,"cpu":0} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"bWFuYWdlIFBWAAAAAAAAAAAAAAAAACQEAAA=","name":"manage PV\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":29877,"stack_free":1060,"cpu":0} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"SU1VAAAAAAAAAAAAAAAAAAAAAAAAAPQHAAA=","name":"IMU\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":14252,"stack_free":2036,"cpu":0} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"SU1VIGF1eAAAAAAAAAAAAAAAAAAAAEwIAAA=","name":"IMU aux\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":18976,"stack_free":2124,"cpu":0} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"bmRiAAAAAAAAAAAAAAAAAAAAAAAAAFAMAAA=","name":"ndb\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":26120,"stack_free":3152,"cpu":0} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"TkFQIFRyYWNraW5nAAAAAAAAAAAvAdR3AAA=","name":"NAP Tracking\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":60931,"stack_free":30676,"cpu":303} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"ZGVjb2RlAAAAAAAAAAAAAAAAAAAIANQGAAA=","name":"decode\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":40082,"stack_free":1748,"cpu":8} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"bWFuYWdlIGFjcQAAAAAAAAAAAADyAaR3AAA=","name":"manage acq\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":23507,"stack_free":30628,"cpu":498} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"c3lzdGVtIG1vbml0b3IAAAAAAAAAACwGAAA=","name":"system monitor\u0000\u0000\u0000\u0000\u0000\u0000","crc":58531,"stack_free":1580,"cpu":0} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"V2F0Y2hkb2cAAAAAAAAAAAAAAAAAAOQDAAA=","name":"Watchdog\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":44438,"stack_free":996,"cpu":0} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"c3RhcmxpbmcAAAAAAAAAAAAAAACWAPz/AAA=","name":"starling\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":61599,"stack_free":65532,"cpu":150} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"bWVfY2FsY19wdnQAAAAAAAAAAAAKAIwjAAA=","name":"me_calc_pvt\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":11833,"stack_free":9100,"cpu":10} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"UFBTAAAAAAAAAAAAAAAAAAAAAAAAAEgHAAA=","name":"PPS\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":38576,"stack_free":1864,"cpu":0} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"c3BlY3RydW0gYW5hbHl6ZXIAAAAAANQPAAA=","name":"spectrum analyzer\u0000\u0000\u0000","crc":50933,"stack_free":4052,"cpu":0} -{"cpu_vint":988,"length":10,"fe_temperature":5641,"preamble":85,"sender":22963,"cpu_vaux":1780,"msg_type":181,"payload":"7BbcA/QGURUJFg==","dev_vin":5868,"crc":34043,"cpu_temperature":5457} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgiUCS8QAAAAAAE=","wn":2098,"tow":271518100,"crc":41397} -{"length":16,"flags":17,"ns":99999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EZQJLxDkBwMZAxkA/uD1BQ==","day":25,"tow":271518100,"year":2020,"crc":29935,"minutes":25,"month":3,"seconds":0} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.075819486441098,"preamble":85,"sender":22963,"msg_type":522,"payload":"lAkvEIMTYeJl6kJAh1eoG1aSXsD+qebnaBMxwAECWwQPBg==","lat":37.8312342618947,"tow":271518100,"h_accuracy":513,"crc":30374,"lon":-122.28650561751975} -{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"lAkvEAAAAAD+////9v////EAygIPAg==","n":0,"d":-10,"tow":271518100,"h_accuracy":241,"crc":35811,"e":-2} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"lAkvEJsAhwBMAEgAcgAG","tow":271518100,"crc":61914,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"lAkvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271518100,"h_accuracy":0,"crc":21467,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"lAkvEP//","tow":271518100,"crc":958} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"Mgj4CS8QAAAAAAE=","wn":2098,"tow":271518200,"crc":60544} -{"length":16,"flags":17,"ns":199999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EfgJLxDkBwMZAxkA/sHrCw==","day":25,"tow":271518200,"year":2020,"crc":3905,"minutes":25,"month":3,"seconds":0} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.063664144835034,"preamble":85,"sender":22963,"msg_type":522,"payload":"+AkvEEUEj+Jl6kJAnNSkG1aSXsCJ/htLTBAxwAECWwQPBg==","lat":37.831234283287394,"tow":271518200,"h_accuracy":513,"crc":44104,"lon":-122.2865056142495} -{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"+AkvEAUAAAD/////AwAAAPEAygIPAg==","n":5,"d":3,"tow":271518200,"h_accuracy":241,"crc":62151,"e":-1} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"+AkvEJsAhwBMAEgAcgAG","tow":271518200,"crc":64048,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"+AkvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271518200,"h_accuracy":0,"crc":5582,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"+AkvEP//","tow":271518200,"crc":22341} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MghcCi8QAAAAAAE=","wn":2098,"tow":271518300,"crc":41044} -{"length":16,"flags":17,"ns":299999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EVwKLxDkBwMZAxkA/qLhEQ==","day":25,"tow":271518300,"year":2020,"crc":20189,"minutes":25,"month":3,"seconds":0} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.05004004186135,"preamble":85,"sender":22963,"msg_type":522,"payload":"XAovEOyKveJl6kJAv8+WG1aSXsD0SJdszwwxwAECWwQPBg==","lat":37.831234304952744,"tow":271518300,"h_accuracy":513,"crc":58391,"lon":-122.2865056011933} -{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"XAovEAQAAAD+////9f////EAygIPAg==","n":4,"d":-11,"tow":271518300,"h_accuracy":241,"crc":38364,"e":-2} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"XAovEJsAhwBMAEgAcgAG","tow":271518300,"crc":9511,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"XAovEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271518300,"h_accuracy":0,"crc":3212,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"XAovEP//","tow":271518300,"crc":24094} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":237,"states":[{"cn0":213,"mesid":{"sat":5,"code":0}},{"cn0":180,"mesid":{"sat":21,"code":0}},{"cn0":188,"mesid":{"sat":2,"code":0}},{"cn0":168,"mesid":{"sat":31,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":218,"mesid":{"sat":25,"code":0}},{"cn0":207,"mesid":{"sat":12,"code":0}},{"cn0":213,"mesid":{"sat":29,"code":0}},{"cn0":206,"mesid":{"sat":18,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":205,"mesid":{"sat":131,"code":2}},{"cn0":203,"mesid":{"sat":25,"code":1}},{"cn0":187,"mesid":{"sat":12,"code":1}},{"cn0":152,"mesid":{"sat":31,"code":1}},{"cn0":196,"mesid":{"sat":18,"code":1}},{"cn0":195,"mesid":{"sat":29,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":193,"mesid":{"sat":5,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":213,"mesid":{"sat":100,"code":3}},{"cn0":178,"mesid":{"sat":98,"code":3}},{"cn0":173,"mesid":{"sat":102,"code":3}},{"cn0":208,"mesid":{"sat":101,"code":3}},{"cn0":208,"mesid":{"sat":93,"code":3}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":180,"mesid":{"sat":106,"code":3}},{"cn0":203,"mesid":{"sat":104,"code":3}},{"cn0":170,"mesid":{"sat":98,"code":4}},{"cn0":205,"mesid":{"sat":102,"code":4}},{"cn0":76,"mesid":{"sat":93,"code":4}},{"cn0":199,"mesid":{"sat":100,"code":4}},{"cn0":195,"mesid":{"sat":101,"code":4}},{"cn0":188,"mesid":{"sat":104,"code":4}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":175,"mesid":{"sat":106,"code":4}},{"cn0":200,"mesid":{"sat":35,"code":12}},{"cn0":170,"mesid":{"sat":26,"code":12}},{"cn0":156,"mesid":{"sat":34,"code":12}},{"cn0":188,"mesid":{"sat":24,"code":12}},{"cn0":158,"mesid":{"sat":25,"code":12}},{"cn0":185,"mesid":{"sat":12,"code":12}},{"cn0":185,"mesid":{"sat":19,"code":12}},{"cn0":191,"mesid":{"sat":22,"code":12}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":209,"mesid":{"sat":12,"code":13}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":194,"mesid":{"sat":12,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":191,"mesid":{"sat":25,"code":14}},{"cn0":188,"mesid":{"sat":11,"code":14}},{"cn0":204,"mesid":{"sat":24,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":158,"mesid":{"sat":31,"code":14}},{"cn0":154,"mesid":{"sat":33,"code":14}},{"cn0":201,"mesid":{"sat":25,"code":20}},{"cn0":215,"mesid":{"sat":24,"code":20}},{"cn0":194,"mesid":{"sat":11,"code":20}},{"cn0":174,"mesid":{"sat":31,"code":20}},{"cn0":206,"mesid":{"sat":12,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":169,"mesid":{"sat":33,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}}],"preamble":85,"sender":22963,"msg_type":97,"payload":"BQDVFQC0AgC8HwCoAAAAAAAAGQDaDADPHQDVEgDOAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwLNGQHLDAG7HwGYEgHEHQHDAAAABQHBAAAAAAAAAAAAAAAAZAPVYgOyZgOtZQPQXQPQAAAAagO0aAPLYgSqZgTNXQRMZATHZQTDaAS8AAAAagSvIwzIGgyqIgycGAy8GQyeDAy5Ewy5Fgy/AAAADA3RAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADA7CAAAAGQ6/Cw68GA7MAAAAHw6eIQ6aGRTJGBTXCxTCHxSuDBTOAAAAIRSpAAAA","crc":36601} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgjACi8QAAAAAAE=","wn":2098,"tow":271518400,"crc":63752} -{"length":16,"flags":17,"ns":399999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EcAKLxDkBwMZAxkA/oPXFw==","day":25,"tow":271518400,"year":2020,"crc":38577,"minutes":25,"month":3,"seconds":0} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.03741516153949,"preamble":85,"sender":22963,"msg_type":522,"payload":"wAovEJTxyeJl6kJA6vKEG1aSXsDJLz8KlAkxwAECWwQPBg==","lat":37.83123431072741,"tow":271518400,"h_accuracy":513,"crc":47221,"lon":-122.28650558455743} -{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"wAovEPn///8BAAAA6f////EAygIPAg==","n":-7,"d":-23,"tow":271518400,"h_accuracy":241,"crc":60020,"e":1} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"wAovEJsAhwBMAEgAcgAG","tow":271518400,"crc":33608,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"wAovEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271518400,"h_accuracy":0,"crc":62141,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"wAovEP//","tow":271518400,"crc":39769} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":9,"l2ca_bias":0,"preamble":85,"l2p_bias":0,"sender":22963,"msg_type":117,"payload":"/wAAAAAAAAAA","l1ca_bias":0,"mask":255,"crc":49809,"l1p_bias":0} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MggkCy8QAAAAAAE=","wn":2098,"tow":271518500,"crc":26019} -{"length":16,"flags":17,"ns":499999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"ESQLLxDkBwMZAxkA/mTNHQ==","day":25,"tow":271518500,"year":2020,"crc":64830,"minutes":25,"month":3,"seconds":0} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.02737604776153,"preamble":85,"sender":22963,"msg_type":522,"payload":"JAsvEIGC7eJl6kJA56VgG1aSXsBa1N0dAgcxwAECWwQPBg==","lat":37.831234327289174,"tow":271518500,"h_accuracy":513,"crc":50724,"lon":-122.28650555074965} -{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"JAsvEP3///8LAAAAEQAAAPEAygIPAg==","n":-3,"d":17,"tow":271518500,"h_accuracy":241,"crc":48210,"e":11} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"JAsvEJsAhwBMAEgAcgAG","tow":271518500,"crc":32916,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"JAsvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271518500,"h_accuracy":0,"crc":34152,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"JAsvEP//","tow":271518500,"crc":48273} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgiICy8QAAAAAAE=","wn":2098,"tow":271518600,"crc":51453} -{"length":16,"flags":17,"ns":599999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EYgLLxDkBwMZAxkA/kXDIw==","day":25,"tow":271518600,"year":2020,"crc":52651,"minutes":25,"month":3,"seconds":0} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.01340717795645,"preamble":85,"sender":22963,"msg_type":522,"payload":"iAsvEAZIBONl6kJA0nRMG1aSXsDH2h6nbgMxwAECWwQPBg==","lat":37.83123433789301,"tow":271518600,"h_accuracy":513,"crc":7575,"lon":-122.28650553194464} -{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"iAsvEAUAAAD+////8v////EAygIPAg==","n":5,"d":-14,"tow":271518600,"h_accuracy":241,"crc":55593,"e":-2} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"iAsvEJsAhwBMAEgAcgAG","tow":271518600,"crc":62821,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"iAsvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271518600,"h_accuracy":0,"crc":44210,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"iAsvEP//","tow":271518600,"crc":22106} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgjsCy8QAAAAAAE=","wn":2098,"tow":271518700,"crc":44087} -{"length":16,"flags":17,"ns":699999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EewLLxDkBwMZAxkA/ia5KQ==","day":25,"tow":271518700,"year":2020,"crc":26087,"minutes":25,"month":3,"seconds":0} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-16.998094817547297,"preamble":85,"sender":22963,"msg_type":522,"payload":"7AsvEK+2LONl6kJA1z08G1aSXsA4rFckg/8wwAECWwQPBg==","lat":37.83123435672075,"tow":271518700,"h_accuracy":513,"crc":9755,"lon":-122.28650551684346} -{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"7AsvEAUAAAAAAAAA2v////EAygIPAg==","n":5,"d":-38,"tow":271518700,"h_accuracy":241,"crc":58411,"e":0} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"7AsvEJsAhwBMAEgAcgAG","tow":271518700,"crc":55754,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"7AsvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271518700,"h_accuracy":0,"crc":46084,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"7AsvEP//","tow":271518700,"crc":4067} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"message_type":1,"length":34,"data":[255,255,255,255,0,0,0,0,0,0,0,0,0,0,0,0,40,64,0,0,0,0,0,0,0,0,16],"preamble":85,"sender":22963,"msg_type":30583,"payload":"gwINCy8QAf////8AAAAAAAAAAAAAAAAoQAAAAAAAAAAAEA==","tow":271518477,"crc":32160,"sid":{"sat":131,"code":2}} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MghQDC8QAAAAAAE=","wn":2098,"tow":271518800,"crc":38287} -{"length":16,"flags":17,"ns":799999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EVAMLxDkBwMZAxkA/gevLw==","day":25,"tow":271518800,"year":2020,"crc":22143,"minutes":25,"month":3,"seconds":0} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-16.99376208320342,"preamble":85,"sender":22963,"msg_type":522,"payload":"UAwvEGb3SuNl6kJASec4G1aSXsAQXR8xZ/4wwAECWwQPBg==","lat":37.8312343708083,"tow":271518800,"h_accuracy":513,"crc":21182,"lon":-122.28650551373461} -{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"UAwvEAwAAAD4////JQAAAPEAygIPAg==","n":12,"d":37,"tow":271518800,"h_accuracy":241,"crc":62971,"e":-8} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"UAwvEJsAhwBMAEgAcgAG","tow":271518800,"crc":37559,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"UAwvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271518800,"h_accuracy":0,"crc":10520,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"UAwvEP//","tow":271518800,"crc":39032} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":51,"text":"GLO L2OF ME 1 [+1452ms] low CN0 too long, dropping","preamble":85,"sender":22963,"msg_type":1025,"payload":"BkdMTyBMMk9GIE1FIDEgWysxNDUybXNdIGxvdyBDTjAgdG9vIGxvbmcsIGRyb3BwaW5n","crc":18653,"level":6} -{"length":237,"states":[{"cn0":213,"mesid":{"sat":5,"code":0}},{"cn0":181,"mesid":{"sat":21,"code":0}},{"cn0":188,"mesid":{"sat":2,"code":0}},{"cn0":168,"mesid":{"sat":31,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":219,"mesid":{"sat":25,"code":0}},{"cn0":208,"mesid":{"sat":12,"code":0}},{"cn0":213,"mesid":{"sat":29,"code":0}},{"cn0":206,"mesid":{"sat":18,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":205,"mesid":{"sat":131,"code":2}},{"cn0":204,"mesid":{"sat":25,"code":1}},{"cn0":187,"mesid":{"sat":12,"code":1}},{"cn0":152,"mesid":{"sat":31,"code":1}},{"cn0":197,"mesid":{"sat":18,"code":1}},{"cn0":194,"mesid":{"sat":29,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":193,"mesid":{"sat":5,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":213,"mesid":{"sat":11,"code":3}},{"cn0":178,"mesid":{"sat":9,"code":3}},{"cn0":174,"mesid":{"sat":20,"code":3}},{"cn0":208,"mesid":{"sat":5,"code":3}},{"cn0":208,"mesid":{"sat":10,"code":3}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":180,"mesid":{"sat":4,"code":3}},{"cn0":203,"mesid":{"sat":21,"code":3}},{"cn0":170,"mesid":{"sat":9,"code":4}},{"cn0":205,"mesid":{"sat":20,"code":4}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":199,"mesid":{"sat":11,"code":4}},{"cn0":196,"mesid":{"sat":5,"code":4}},{"cn0":189,"mesid":{"sat":0,"code":4}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":175,"mesid":{"sat":4,"code":4}},{"cn0":200,"mesid":{"sat":35,"code":12}},{"cn0":170,"mesid":{"sat":26,"code":12}},{"cn0":156,"mesid":{"sat":34,"code":12}},{"cn0":188,"mesid":{"sat":24,"code":12}},{"cn0":158,"mesid":{"sat":25,"code":12}},{"cn0":185,"mesid":{"sat":12,"code":12}},{"cn0":184,"mesid":{"sat":19,"code":12}},{"cn0":191,"mesid":{"sat":22,"code":12}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":209,"mesid":{"sat":12,"code":13}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":195,"mesid":{"sat":12,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":192,"mesid":{"sat":25,"code":14}},{"cn0":189,"mesid":{"sat":11,"code":14}},{"cn0":204,"mesid":{"sat":24,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":159,"mesid":{"sat":31,"code":14}},{"cn0":153,"mesid":{"sat":33,"code":14}},{"cn0":201,"mesid":{"sat":25,"code":20}},{"cn0":215,"mesid":{"sat":24,"code":20}},{"cn0":194,"mesid":{"sat":11,"code":20}},{"cn0":174,"mesid":{"sat":31,"code":20}},{"cn0":206,"mesid":{"sat":12,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":169,"mesid":{"sat":33,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}}],"preamble":85,"sender":22963,"msg_type":97,"payload":"BQDVFQC1AgC8HwCoAAAAAAAAGQDbDADQHQDVEgDOAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwLNGQHMDAG7HwGYEgHFHQHCAAAABQHBAAAAAAAAAAAAAAAACwPVCQOyFAOuBQPQCgPQAAAABAO0FQPLCQSqFATNAAAACwTHBQTEAAS9AAAABASvIwzIGgyqIgycGAy8GQyeDAy5Ewy4Fgy/AAAADA3RAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADA7DAAAAGQ7ACw69GA7MAAAAHw6fIQ6ZGRTJGBTXCxTCHxSuDBTOAAAAIRSpAAAA","crc":19038} -{"length":132,"preamble":85,"sender":22963,"msg_type":151,"payload":"AgAaHQUAKzUMAFEtFQB9GRkAbUYaAKEBHQChNx8AlQ4EAxUWBQMyIQYDTggJA18OCgNxKQsDmCUMA6oDEwMiBxQDDDEVA5UlDAyUKRMMIyAUDA8CFgxDJBgMgiMZDJ0OGgxnFSIMjhEjDCItCw6LMgwODzwYDmw2GQ6XKR8OVREhDiAP","crc":53239,"azel":[{"el":29,"az":26,"sid":{"sat":2,"code":0}},{"el":53,"az":43,"sid":{"sat":5,"code":0}},{"el":45,"az":81,"sid":{"sat":12,"code":0}},{"el":25,"az":125,"sid":{"sat":21,"code":0}},{"el":70,"az":109,"sid":{"sat":25,"code":0}},{"el":1,"az":161,"sid":{"sat":26,"code":0}},{"el":55,"az":161,"sid":{"sat":29,"code":0}},{"el":14,"az":149,"sid":{"sat":31,"code":0}},{"el":22,"az":21,"sid":{"sat":4,"code":3}},{"el":33,"az":50,"sid":{"sat":5,"code":3}},{"el":8,"az":78,"sid":{"sat":6,"code":3}},{"el":14,"az":95,"sid":{"sat":9,"code":3}},{"el":41,"az":113,"sid":{"sat":10,"code":3}},{"el":37,"az":152,"sid":{"sat":11,"code":3}},{"el":3,"az":170,"sid":{"sat":12,"code":3}},{"el":7,"az":34,"sid":{"sat":19,"code":3}},{"el":49,"az":12,"sid":{"sat":20,"code":3}},{"el":37,"az":149,"sid":{"sat":21,"code":3}},{"el":41,"az":148,"sid":{"sat":12,"code":12}},{"el":32,"az":35,"sid":{"sat":19,"code":12}},{"el":2,"az":15,"sid":{"sat":20,"code":12}},{"el":36,"az":67,"sid":{"sat":22,"code":12}},{"el":35,"az":130,"sid":{"sat":24,"code":12}},{"el":14,"az":157,"sid":{"sat":25,"code":12}},{"el":21,"az":103,"sid":{"sat":26,"code":12}},{"el":17,"az":142,"sid":{"sat":34,"code":12}},{"el":45,"az":34,"sid":{"sat":35,"code":12}},{"el":50,"az":139,"sid":{"sat":11,"code":14}},{"el":60,"az":15,"sid":{"sat":12,"code":14}},{"el":54,"az":108,"sid":{"sat":24,"code":14}},{"el":41,"az":151,"sid":{"sat":25,"code":14}},{"el":17,"az":85,"sid":{"sat":31,"code":14}},{"el":15,"az":32,"sid":{"sat":33,"code":14}}]} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"Mgi0DC8QAAAAAAE=","wn":2098,"tow":271518900,"crc":20215} -{"length":16,"flags":17,"ns":899999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EbQMLxDkBwMZAxkA/uikNQ==","day":25,"tow":271518900,"year":2020,"crc":52547,"minutes":25,"month":3,"seconds":0} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-16.987710978081008,"preamble":85,"sender":22963,"msg_type":522,"payload":"tAwvEJgXQeNl6kJAS5QuG1aSXsATwmyg2vwwwAECWwQPBg==","lat":37.83123436621025,"tow":271518900,"h_accuracy":513,"crc":21647,"lon":-122.28650550411946} -{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"tAwvEPH///8DAAAA/f////EAygIPAg==","n":-15,"d":-3,"tow":271518900,"h_accuracy":241,"crc":44540,"e":3} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"tAwvEJsAhwBMAEgAcgAG","tow":271518900,"crc":59914,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"tAwvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271518900,"h_accuracy":0,"crc":35643,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"tAwvEP//","tow":271518900,"crc":5601} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":249,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":124,"i":110564947},"flags":15,"cn0":214,"P":1051990363,"D":{"f":231,"i":-187},"lock":15,"sid":{"sat":5,"code":0}},{"L":{"f":49,"i":121816045},"flags":15,"cn0":181,"P":1159041145,"D":{"f":39,"i":2172},"lock":15,"sid":{"sat":21,"code":0}},{"L":{"f":222,"i":123348241},"flags":15,"cn0":188,"P":1173619115,"D":{"f":31,"i":-2480},"lock":15,"sid":{"sat":2,"code":0}},{"L":{"f":60,"i":128739962},"flags":15,"cn0":169,"P":1224920070,"D":{"f":18,"i":-397},"lock":15,"sid":{"sat":31,"code":0}},{"L":{"f":114,"i":107827811},"flags":15,"cn0":219,"P":1025947441,"D":{"f":30,"i":-1130},"lock":15,"sid":{"sat":25,"code":0}},{"L":{"f":127,"i":114110616},"flags":15,"cn0":208,"P":1085726317,"D":{"f":216,"i":-2970},"lock":15,"sid":{"sat":12,"code":0}},{"L":{"f":209,"i":110754970},"flags":15,"cn0":213,"P":1053798424,"D":{"f":210,"i":1482},"lock":15,"sid":{"sat":29,"code":0}},{"L":{"f":191,"i":84021691},"flags":15,"cn0":204,"P":1025947477,"D":{"f":143,"i":-881},"lock":15,"sid":{"sat":25,"code":1}},{"L":{"f":36,"i":88917395},"flags":15,"cn0":187,"P":1085726233,"D":{"f":250,"i":-2313},"lock":15,"sid":{"sat":12,"code":1}},{"L":{"f":33,"i":100316856},"flags":15,"cn0":152,"P":1224919961,"D":{"f":72,"i":-311},"lock":15,"sid":{"sat":31,"code":1}},{"L":{"f":128,"i":86302576},"flags":15,"cn0":194,"P":1053798343,"D":{"f":233,"i":1155},"lock":15,"sid":{"sat":29,"code":1}},{"L":{"f":205,"i":86154533},"flags":15,"cn0":193,"P":1051990297,"D":{"f":91,"i":-146},"lock":15,"sid":{"sat":5,"code":1}},{"L":{"f":229,"i":112931775},"flags":15,"cn0":213,"P":1056681789,"D":{"f":100,"i":1162},"lock":15,"sid":{"sat":11,"code":3}},{"L":{"f":208,"i":123355152},"flags":15,"cn0":178,"P":1155022597,"D":{"f":252,"i":-4409},"lock":15,"sid":{"sat":9,"code":3}}],"payload":"GA0vEAAAAAAyCEBbGbQ+UxaXBnxF/+fWDw8FAHmQFUXtw0IHMXwIJ7UPDxUAqwH0RRElWgfeUPYfvA8PAgAGzAJJemqsBzxz/hKpDw8fADG3Jj1jUm0Gcpb7HtsPDxkAbd62QJgwzQZ/ZvTY0A8PDAAYsM8+mvyZBtHKBdLVDw8dAFW3Jj27EQIFv4/8j8wPDxkBGd62QJPFTAUk9/b6uw8PDAGZywJJuLb6BSHJ/kiYDw8fAcevzz5w3yQFgIME6cIPDx0BGRm0PiWdIgXNbv9bwQ8PBQE9r/s+vzO7BuWKBGTVDw8LAwU/2EQQQFoH0Mfu/LIPDwkD","header":{"n_obs":64,"t":{"ns_residual":0,"wn":2098,"tow":271519000}},"crc":20463} -{"length":249,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":92,"i":109776362},"flags":15,"cn0":174,"P":1026436346,"D":{"f":206,"i":-1212},"lock":15,"sid":{"sat":20,"code":3}},{"L":{"f":99,"i":114849798},"flags":15,"cn0":208,"P":1074251156,"D":{"f":123,"i":2195},"lock":15,"sid":{"sat":5,"code":3}},{"L":{"f":159,"i":111618105},"flags":15,"cn0":208,"P":1046963294,"D":{"f":121,"i":-3048},"lock":15,"sid":{"sat":10,"code":3}},{"L":{"f":175,"i":120444806},"flags":15,"cn0":180,"P":1124610595,"D":{"f":161,"i":-1318},"lock":15,"sid":{"sat":4,"code":3}},{"L":{"f":134,"i":113412129},"flags":15,"cn0":203,"P":1059687935,"D":{"f":192,"i":1619},"lock":15,"sid":{"sat":21,"code":3}},{"L":{"f":79,"i":95942906},"flags":15,"cn0":170,"P":1155022716,"D":{"f":225,"i":-3429},"lock":15,"sid":{"sat":9,"code":4}},{"L":{"f":231,"i":85381650},"flags":15,"cn0":205,"P":1026436695,"D":{"f":185,"i":-943},"lock":15,"sid":{"sat":20,"code":4}},{"L":{"f":6,"i":87835836},"flags":15,"cn0":199,"P":1056682059,"D":{"f":55,"i":904},"lock":15,"sid":{"sat":11,"code":4}},{"L":{"f":197,"i":89327624},"flags":15,"cn0":196,"P":1074251455,"D":{"f":39,"i":1707},"lock":15,"sid":{"sat":5,"code":4}},{"L":{"f":78,"i":93679284},"flags":15,"cn0":175,"P":1124610849,"D":{"f":134,"i":-1027},"lock":15,"sid":{"sat":4,"code":4}},{"L":{"f":213,"i":121587037},"flags":15,"cn0":200,"P":1167475327,"D":{"f":15,"i":-1501},"lock":15,"sid":{"sat":35,"code":12}},{"L":{"f":191,"i":129226154},"flags":15,"cn0":170,"P":1240826255,"D":{"f":14,"i":-3009},"lock":15,"sid":{"sat":26,"code":12}},{"L":{"f":177,"i":132935359},"flags":15,"cn0":156,"P":1276441652,"D":{"f":107,"i":2247},"lock":15,"sid":{"sat":34,"code":12}},{"L":{"f":223,"i":125157486},"flags":15,"cn0":188,"P":1201758982,"D":{"f":177,"i":-1305},"lock":15,"sid":{"sat":24,"code":12}}],"payload":"GA0vEAAAAAAyCEH6LC496g2LBlxE+86uDw8UA5TFB0AGeNgGY5MIe9APDwUDXmRnPjkopwafGPR50A8PCgMjMghDhtctB6/a+qG0Dw8EA/+NKT8hiMIGhlMGwMsPDxUDfD/YRPr4twVPm/Lhqg8PCQRXLi49EtIWBedR/LnNDw8UBEuw+z68RDwFBogDN8cPDwsEv8YHQAgIUwXFqwYnxA8PBQQhMwhDtG6VBU79+4avDw8EBH9ClkVdRT8H1SP6D8gPDyMMj4H1SarVswe/P/QOqg8PGgw09BRMv27sB7HHCGucDw8iDAZjoUduwHUH3+f6sbwPDxgM","header":{"n_obs":65,"t":{"ns_residual":0,"wn":2098,"tow":271519000}},"crc":19072} -{"length":249,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":122,"i":134665887},"flags":15,"cn0":158,"P":1293058386,"D":{"f":2,"i":1324},"lock":15,"sid":{"sat":25,"code":12}},{"L":{"f":118,"i":121092320},"flags":15,"cn0":185,"P":1162725327,"D":{"f":139,"i":1610},"lock":15,"sid":{"sat":12,"code":12}},{"L":{"f":195,"i":124516322},"flags":15,"cn0":184,"P":1195602483,"D":{"f":149,"i":-292},"lock":15,"sid":{"sat":19,"code":12}},{"L":{"f":85,"i":124693078},"flags":15,"cn0":192,"P":1197299722,"D":{"f":196,"i":2384},"lock":15,"sid":{"sat":22,"code":12}},{"L":{"f":248,"i":93636271},"flags":15,"cn0":209,"P":1162725252,"D":{"f":30,"i":1246},"lock":15,"sid":{"sat":12,"code":13}},{"L":{"f":4,"i":116431024},"flags":15,"cn0":195,"P":1107804323,"D":{"f":3,"i":-1030},"lock":15,"sid":{"sat":12,"code":14}},{"L":{"f":138,"i":132469586},"flags":15,"cn0":192,"P":1260406119,"D":{"f":96,"i":1086},"lock":15,"sid":{"sat":25,"code":14}},{"L":{"f":97,"i":125417500},"flags":15,"cn0":189,"P":1193307772,"D":{"f":86,"i":1047},"lock":15,"sid":{"sat":11,"code":14}},{"L":{"f":249,"i":118422389},"flags":15,"cn0":204,"P":1126751450,"D":{"f":142,"i":-1747},"lock":15,"sid":{"sat":24,"code":14}},{"L":{"f":221,"i":143336848},"flags":15,"cn0":159,"P":1363804745,"D":{"f":97,"i":-3171},"lock":15,"sid":{"sat":31,"code":14}},{"L":{"f":254,"i":144534605},"flags":15,"cn0":153,"P":1375201078,"D":{"f":110,"i":-2146},"lock":15,"sid":{"sat":33,"code":14}},{"L":{"f":159,"i":101502668},"flags":15,"cn0":201,"P":1260406102,"D":{"f":153,"i":832},"lock":15,"sid":{"sat":25,"code":20}},{"L":{"f":112,"i":90739297},"flags":15,"cn0":215,"P":1126751991,"D":{"f":158,"i":-1339},"lock":15,"sid":{"sat":24,"code":20}},{"L":{"f":130,"i":96099101},"flags":15,"cn0":194,"P":1193307589,"D":{"f":32,"i":801},"lock":15,"sid":{"sat":11,"code":20}}],"payload":"GA0vEAAAAAAyCEJSgRJNn9YGCHosBQKeDw8ZDM/HTUXguDcHdkoGi7kPDwwMM3JDR+L3awfD3P6VuA8PEwwKWF1HVqpuB1VQCcTADw8WDITHTUWvxpQF+N4EHtEPDwwNo8AHQrCY8AYE+vsDww8PDA5nRSBLUlPlB4o+BGDADw8ZDnxuIEccuHkHYRcEVr0PDwsO2twoQ3X7Dgf5LfmOzA8PGA5JAkpRkCWLCN2d82GfDw8fDjbn91FNbJ0I/p73bpkPDyEOVkUgS8zODAafQAOZyQ8PGRT33ihDYZJoBXDF+p7XDw8YFMVtIEcdW7oFgiEDIMIPDwsU","header":{"n_obs":66,"t":{"ns_residual":0,"wn":2098,"tow":271519000}},"crc":60303} -{"length":62,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":15,"i":109829575},"flags":15,"cn0":175,"P":1363804830,"D":{"f":83,"i":-2434},"lock":15,"sid":{"sat":31,"code":20}},{"L":{"f":165,"i":89213412},"flags":15,"cn0":206,"P":1107804175,"D":{"f":222,"i":-789},"lock":15,"sid":{"sat":12,"code":20}},{"L":{"f":0,"i":110747366},"flags":15,"cn0":169,"P":1375200992,"D":{"f":199,"i":-1642},"lock":15,"sid":{"sat":33,"code":20}}],"payload":"GA0vEAAAAAAyCEOeAkpRx92LBg9+9lOvDw8fFA/AB0LkSVEFpev83s4PDwwU4Ob3UebemQYAlvnHqQ8PIRQ=","header":{"n_obs":67,"t":{"ns_residual":0,"wn":2098,"tow":271519000}},"crc":985} -{"length":9,"l2ca_bias":0,"preamble":85,"l2p_bias":0,"sender":22963,"msg_type":117,"payload":"/wAAAAAAAAAA","l1ca_bias":0,"mask":255,"crc":49809,"l1p_bias":0} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MggYDS8QAAAAAAE=","wn":2098,"tow":271519000,"crc":42106} -{"length":16,"flags":17,"ns":999999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"ERgNLxDkBwMZAxkA/smaOw==","day":25,"tow":271519000,"year":2020,"crc":46449,"minutes":25,"month":3,"seconds":0} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-16.982003178874866,"preamble":85,"sender":22963,"msg_type":522,"payload":"GA0vEAlje+Nl6kJAOgYwG1aSXsDp1XGPZPswwAECWwQPBg==","lat":37.831234393355835,"tow":271519000,"h_accuracy":513,"crc":43720,"lon":-122.28650550546527} -{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"GA0vEAIAAAD/////+f////EAygIPAg==","n":2,"d":-7,"tow":271519000,"h_accuracy":241,"crc":29372,"e":-1} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"GA0vEJsAhwBMAEgAcgAG","tow":271519000,"crc":58522,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"GA0vEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271519000,"h_accuracy":0,"crc":30487,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"GA0vEP//","tow":271519000,"crc":21883} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":4,"flags":2147616000,"preamble":85,"sender":22963,"msg_type":65535,"payload":"AAUCgA==","crc":40942} -{"length":24,"z":3890655.0240602265,"preamble":85,"sender":22963,"msg_type":72,"payload":"UO0a3iqORMHK1UJhIkRQwc9nFIPvrk1B","crc":2168,"x":-2694229.735196747,"y":-4264073.519704292} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"Mgh8DS8QAAAAAAE=","wn":2098,"tow":271519100,"crc":49328} -{"length":16,"flags":17,"ns":99999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EXwNLxDkBwMZAxkB/uD1BQ==","day":25,"tow":271519100,"year":2020,"crc":59217,"minutes":25,"month":3,"seconds":1} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-16.98119539271124,"preamble":85,"sender":22963,"msg_type":522,"payload":"fA0vECNhp+Nl6kJAdlAeG1aSXsA/rgqfL/swwAECWwQPBg==","lat":37.83123441384148,"tow":271519100,"h_accuracy":513,"crc":31500,"lon":-122.28650548897153} -{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"fA0vEPn///8AAAAABQAAAPEAygIPAg==","n":-7,"d":5,"tow":271519100,"h_accuracy":241,"crc":63831,"e":0} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"fA0vEJsAhwBMAEgAcgAG","tow":271519100,"crc":51253,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"fA0vEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271519100,"h_accuracy":0,"crc":28577,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"fA0vEP//","tow":271519100,"crc":3266} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgjgDS8QAAAAAAE=","wn":2098,"tow":271519200,"crc":39404} -{"length":16,"flags":17,"ns":199999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EeANLxDkBwMZAxkB/sHrCw==","day":25,"tow":271519200,"year":2020,"crc":12666,"minutes":25,"month":3,"seconds":1} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-16.98951384880922,"preamble":85,"sender":22963,"msg_type":522,"payload":"4A0vEPsA6eNl6kJA5VAKG1aSXsAfk5PHUP0wwAECWwQPBg==","lat":37.831234444400216,"tow":271519200,"h_accuracy":513,"crc":40204,"lon":-122.28650547034665} -{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"4A0vEAMAAAAJAAAAHwAAAPEAygIPAg==","n":3,"d":31,"tow":271519200,"h_accuracy":241,"crc":47116,"e":9} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"4A0vEJsAhwBMAEgAcgAG","tow":271519200,"crc":28250,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"4A0vEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271519200,"h_accuracy":0,"crc":37264,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"4A0vEP//","tow":271519200,"crc":51589} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MghEDi8QAAAAAAE=","wn":2098,"tow":271519300,"crc":54584} -{"length":16,"flags":17,"ns":299999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EUQOLxDkBwMZAxkB/qLhEQ==","day":25,"tow":271519300,"year":2020,"crc":28902,"minutes":25,"month":3,"seconds":1} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-16.994783041243867,"preamble":85,"sender":22963,"msg_type":522,"payload":"RA4vEMWLMORl6kJANekGG1aSXsABwvQZqv4wwAECWwQPBg==","lat":37.831234477714624,"tow":271519300,"h_accuracy":513,"crc":58601,"lon":-122.28650546717547} -{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"RA4vEAcAAAD9/////v////EAygIPAg==","n":7,"d":-2,"tow":271519300,"h_accuracy":241,"crc":26583,"e":-3} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"RA4vEJsAhwBMAEgAcgAG","tow":271519300,"crc":45389,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"RA4vEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271519300,"h_accuracy":0,"crc":35026,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"RA4vEP//","tow":271519300,"crc":49374} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":237,"states":[{"cn0":214,"mesid":{"sat":5,"code":0}},{"cn0":182,"mesid":{"sat":21,"code":0}},{"cn0":189,"mesid":{"sat":2,"code":0}},{"cn0":169,"mesid":{"sat":31,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":219,"mesid":{"sat":25,"code":0}},{"cn0":209,"mesid":{"sat":12,"code":0}},{"cn0":214,"mesid":{"sat":29,"code":0}},{"cn0":207,"mesid":{"sat":18,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":206,"mesid":{"sat":131,"code":2}},{"cn0":204,"mesid":{"sat":25,"code":1}},{"cn0":187,"mesid":{"sat":12,"code":1}},{"cn0":152,"mesid":{"sat":31,"code":1}},{"cn0":196,"mesid":{"sat":18,"code":1}},{"cn0":195,"mesid":{"sat":29,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":194,"mesid":{"sat":5,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":213,"mesid":{"sat":100,"code":3}},{"cn0":178,"mesid":{"sat":98,"code":3}},{"cn0":174,"mesid":{"sat":102,"code":3}},{"cn0":208,"mesid":{"sat":101,"code":3}},{"cn0":208,"mesid":{"sat":93,"code":3}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":180,"mesid":{"sat":106,"code":3}},{"cn0":203,"mesid":{"sat":104,"code":3}},{"cn0":171,"mesid":{"sat":98,"code":4}},{"cn0":205,"mesid":{"sat":102,"code":4}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":199,"mesid":{"sat":100,"code":4}},{"cn0":196,"mesid":{"sat":101,"code":4}},{"cn0":189,"mesid":{"sat":104,"code":4}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":176,"mesid":{"sat":106,"code":4}},{"cn0":200,"mesid":{"sat":35,"code":12}},{"cn0":171,"mesid":{"sat":26,"code":12}},{"cn0":156,"mesid":{"sat":34,"code":12}},{"cn0":189,"mesid":{"sat":24,"code":12}},{"cn0":158,"mesid":{"sat":25,"code":12}},{"cn0":185,"mesid":{"sat":12,"code":12}},{"cn0":184,"mesid":{"sat":19,"code":12}},{"cn0":191,"mesid":{"sat":22,"code":12}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":209,"mesid":{"sat":12,"code":13}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":195,"mesid":{"sat":12,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":192,"mesid":{"sat":25,"code":14}},{"cn0":189,"mesid":{"sat":11,"code":14}},{"cn0":204,"mesid":{"sat":24,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":158,"mesid":{"sat":31,"code":14}},{"cn0":153,"mesid":{"sat":33,"code":14}},{"cn0":201,"mesid":{"sat":25,"code":20}},{"cn0":215,"mesid":{"sat":24,"code":20}},{"cn0":194,"mesid":{"sat":11,"code":20}},{"cn0":174,"mesid":{"sat":31,"code":20}},{"cn0":207,"mesid":{"sat":12,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":169,"mesid":{"sat":33,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}}],"preamble":85,"sender":22963,"msg_type":97,"payload":"BQDWFQC2AgC9HwCpAAAAAAAAGQDbDADRHQDWEgDPAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwLOGQHMDAG7HwGYEgHEHQHDAAAABQHCAAAAAAAAAAAAAAAAZAPVYgOyZgOuZQPQXQPQAAAAagO0aAPLYgSrZgTNAAAAZATHZQTEaAS9AAAAagSwIwzIGgyrIgycGAy9GQyeDAy5Ewy4Fgy/AAAADA3RAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADA7DAAAAGQ7ACw69GA7MAAAAHw6eIQ6ZGRTJGBTXCxTCHxSuDBTPAAAAIRSpAAAA","crc":28077} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgioDi8QAAAAAAE=","wn":2098,"tow":271519400,"crc":10175} -{"length":16,"flags":17,"ns":399999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EagOLxDkBwMZAxkB/oPXFw==","day":25,"tow":271519400,"year":2020,"crc":20765,"minutes":25,"month":3,"seconds":1} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-16.99616583851909,"preamble":85,"sender":22963,"msg_type":522,"payload":"qA4vEHkjhORl6kJAnMj0GlaSXsD41HG5BP8wwAECWwQPBg==","lat":37.83123451664046,"tow":271519400,"h_accuracy":513,"crc":54219,"lon":-122.28650545029308} -{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"qA4vEAwAAAD7////7f////EAygIPAg==","n":12,"d":-19,"tow":271519400,"h_accuracy":241,"crc":17524,"e":-5} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"qA4vEJsAhwBMAEgAcgAG","tow":271519400,"crc":61109,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"qA4vEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271519400,"h_accuracy":0,"crc":29778,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"qA4vEP//","tow":271519400,"crc":16389} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":9,"l2ca_bias":0,"preamble":85,"l2p_bias":0,"sender":22963,"msg_type":117,"payload":"/wAAAAAAAAAA","l1ca_bias":0,"mask":255,"crc":49809,"l1p_bias":0} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MggMDy8QAAAAAAE=","wn":2098,"tow":271519500,"crc":58573} -{"length":16,"flags":17,"ns":499999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EQwPLxDkBwMZAxkB/mTNHQ==","day":25,"tow":271519500,"year":2020,"crc":4251,"minutes":25,"month":3,"seconds":1} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.000573225405976,"preamble":85,"sender":22963,"msg_type":522,"payload":"DA8vEIF7quRl6kJAPFbdGlaSXsA1XyCRJQAxwAECWwQPBg==","lat":37.831234534495714,"tow":271519500,"h_accuracy":513,"crc":37823,"lon":-122.28650542845656} -{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"DA8vEPr///8BAAAA+v////EAygIPAg==","n":-6,"d":-6,"tow":271519500,"h_accuracy":241,"crc":60223,"e":1} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"DA8vEJsAhwBMAEgAcgAG","tow":271519500,"crc":51040,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"DA8vEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271519500,"h_accuracy":0,"crc":55005,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"DA8vEP//","tow":271519500,"crc":3549} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MghwDy8QAAAAAAE=","wn":2098,"tow":271519600,"crc":64006} -{"length":16,"flags":17,"ns":599999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EXAPLxDkBwMZAxkB/kXDIw==","day":25,"tow":271519600,"year":2020,"crc":4255,"minutes":25,"month":3,"seconds":1} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.009044016522083,"preamble":85,"sender":22963,"msg_type":522,"payload":"cA8vEN0PzuRl6kJA8v/FGlaSXsDUL2u1UAIxwAECWwQPBg==","lat":37.83123455106372,"tow":271519600,"h_accuracy":513,"crc":11019,"lon":-122.28650540672223} -{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"cA8vEPz////+////CwAAAPEAygIPAg==","n":-4,"d":11,"tow":271519600,"h_accuracy":241,"crc":54504,"e":-2} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"cA8vEJsAhwBMAEgAcgAG","tow":271519600,"crc":33280,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"cA8vEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271519600,"h_accuracy":0,"crc":11662,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"cA8vEP//","tow":271519600,"crc":17314} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"message_type":26,"length":34,"data":[34,4,72,30,64,178,3,144,21,0,168,13,96,122,3,200,30,64,242,6,144,28,128,168,5,80,0],"preamble":85,"sender":22963,"msg_type":30583,"payload":"gwLvDi8QGiIESB5AsgOQFQCoDWB6A8geQPIGkByAqAVQAA==","tow":271519471,"crc":47744,"sid":{"sat":131,"code":2}} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgjUDy8QAAAAAAE=","wn":2098,"tow":271519700,"crc":32423} -{"length":16,"flags":17,"ns":699999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EdQPLxDkBwMZAxkB/ia5KQ==","day":25,"tow":271519700,"year":2020,"crc":50888,"minutes":25,"month":3,"seconds":1} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.017999272723337,"preamble":85,"sender":22963,"msg_type":522,"payload":"1A8vEMJ3DOVl6kJA2CysGlaSXsDSsq+ZmwQxwAECWwQPBg==","lat":37.831234580123706,"tow":271519700,"h_accuracy":513,"crc":3980,"lon":-122.28650538267118} -{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"1A8vEP////8EAAAAFwAAAPEAygIPAg==","n":-1,"d":23,"tow":271519700,"h_accuracy":241,"crc":31580,"e":4} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"1A8vEJsAhwBMAEgAcgAG","tow":271519700,"crc":53428,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"1A8vEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271519700,"h_accuracy":0,"crc":23287,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"1A8vEP//","tow":271519700,"crc":42027} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"Mgg4EC8QAAAAAAE=","wn":2098,"tow":271519800,"crc":26710} -{"length":16,"flags":17,"ns":799999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"ETgQLxDkBwMZAxkB/gevLw==","day":25,"tow":271519800,"year":2020,"crc":48207,"minutes":25,"month":3,"seconds":1} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.025168688926406,"preamble":85,"sender":22963,"msg_type":522,"payload":"OBAvEE9QVOVl6kJASOqAGlaSXsB20od0cQYxwAECWwQPBg==","lat":37.83123461357956,"tow":271519800,"h_accuracy":513,"crc":52258,"lon":-122.28650534238216} -{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"OBAvEP////8RAAAACgAAAPEAygIPAg==","n":-1,"d":10,"tow":271519800,"h_accuracy":241,"crc":37753,"e":17} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"OBAvEJsAhwBMAEgAcgAG","tow":271519800,"crc":53974,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"OBAvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271519800,"h_accuracy":0,"crc":61004,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"OBAvEP//","tow":271519800,"crc":17747} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":237,"states":[{"cn0":214,"mesid":{"sat":5,"code":0}},{"cn0":181,"mesid":{"sat":21,"code":0}},{"cn0":188,"mesid":{"sat":2,"code":0}},{"cn0":168,"mesid":{"sat":31,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":219,"mesid":{"sat":25,"code":0}},{"cn0":208,"mesid":{"sat":12,"code":0}},{"cn0":213,"mesid":{"sat":29,"code":0}},{"cn0":207,"mesid":{"sat":18,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":206,"mesid":{"sat":131,"code":2}},{"cn0":204,"mesid":{"sat":25,"code":1}},{"cn0":188,"mesid":{"sat":12,"code":1}},{"cn0":153,"mesid":{"sat":31,"code":1}},{"cn0":197,"mesid":{"sat":18,"code":1}},{"cn0":195,"mesid":{"sat":29,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":194,"mesid":{"sat":5,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":214,"mesid":{"sat":11,"code":3}},{"cn0":178,"mesid":{"sat":9,"code":3}},{"cn0":174,"mesid":{"sat":20,"code":3}},{"cn0":208,"mesid":{"sat":5,"code":3}},{"cn0":208,"mesid":{"sat":10,"code":3}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":180,"mesid":{"sat":4,"code":3}},{"cn0":203,"mesid":{"sat":21,"code":3}},{"cn0":171,"mesid":{"sat":9,"code":4}},{"cn0":205,"mesid":{"sat":20,"code":4}},{"cn0":73,"mesid":{"sat":10,"code":4}},{"cn0":199,"mesid":{"sat":11,"code":4}},{"cn0":196,"mesid":{"sat":5,"code":4}},{"cn0":189,"mesid":{"sat":0,"code":4}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":175,"mesid":{"sat":4,"code":4}},{"cn0":200,"mesid":{"sat":35,"code":12}},{"cn0":171,"mesid":{"sat":26,"code":12}},{"cn0":157,"mesid":{"sat":34,"code":12}},{"cn0":188,"mesid":{"sat":24,"code":12}},{"cn0":158,"mesid":{"sat":25,"code":12}},{"cn0":185,"mesid":{"sat":12,"code":12}},{"cn0":184,"mesid":{"sat":19,"code":12}},{"cn0":191,"mesid":{"sat":22,"code":12}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":210,"mesid":{"sat":12,"code":13}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":195,"mesid":{"sat":12,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":192,"mesid":{"sat":25,"code":14}},{"cn0":189,"mesid":{"sat":11,"code":14}},{"cn0":204,"mesid":{"sat":24,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":159,"mesid":{"sat":31,"code":14}},{"cn0":153,"mesid":{"sat":33,"code":14}},{"cn0":201,"mesid":{"sat":25,"code":20}},{"cn0":215,"mesid":{"sat":24,"code":20}},{"cn0":194,"mesid":{"sat":11,"code":20}},{"cn0":174,"mesid":{"sat":31,"code":20}},{"cn0":206,"mesid":{"sat":12,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":169,"mesid":{"sat":33,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}}],"preamble":85,"sender":22963,"msg_type":97,"payload":"BQDWFQC1AgC8HwCoAAAAAAAAGQDbDADQHQDVEgDPAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwLOGQHMDAG8HwGZEgHFHQHDAAAABQHCAAAAAAAAAAAAAAAACwPWCQOyFAOuBQPQCgPQAAAABAO0FQPLCQSrFATNCgRJCwTHBQTEAAS9AAAABASvIwzIGgyrIgydGAy8GQyeDAy5Ewy4Fgy/AAAADA3SAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADA7DAAAAGQ7ACw69GA7MAAAAHw6fIQ6ZGRTJGBTXCxTCHxSuDBTOAAAAIRSpAAAA","crc":47201} -{"length":132,"preamble":85,"sender":22963,"msg_type":151,"payload":"AgAaHQUAKzUMAFEtFQB9GRkAbUYaAKEBHQChNx8AlQ4EAxUWBQMyIQYDTggJA18OCgNxKQsDmCUMA6oDEwMiBxQDDDEVA5UlDAyUKRMMIyAUDA8CFgxDJBgMgiMZDJ0OGgxnFSIMjhEjDCItCw6LMgwODzwYDmw2GQ6XKR8OVREhDiAP","crc":53239,"azel":[{"el":29,"az":26,"sid":{"sat":2,"code":0}},{"el":53,"az":43,"sid":{"sat":5,"code":0}},{"el":45,"az":81,"sid":{"sat":12,"code":0}},{"el":25,"az":125,"sid":{"sat":21,"code":0}},{"el":70,"az":109,"sid":{"sat":25,"code":0}},{"el":1,"az":161,"sid":{"sat":26,"code":0}},{"el":55,"az":161,"sid":{"sat":29,"code":0}},{"el":14,"az":149,"sid":{"sat":31,"code":0}},{"el":22,"az":21,"sid":{"sat":4,"code":3}},{"el":33,"az":50,"sid":{"sat":5,"code":3}},{"el":8,"az":78,"sid":{"sat":6,"code":3}},{"el":14,"az":95,"sid":{"sat":9,"code":3}},{"el":41,"az":113,"sid":{"sat":10,"code":3}},{"el":37,"az":152,"sid":{"sat":11,"code":3}},{"el":3,"az":170,"sid":{"sat":12,"code":3}},{"el":7,"az":34,"sid":{"sat":19,"code":3}},{"el":49,"az":12,"sid":{"sat":20,"code":3}},{"el":37,"az":149,"sid":{"sat":21,"code":3}},{"el":41,"az":148,"sid":{"sat":12,"code":12}},{"el":32,"az":35,"sid":{"sat":19,"code":12}},{"el":2,"az":15,"sid":{"sat":20,"code":12}},{"el":36,"az":67,"sid":{"sat":22,"code":12}},{"el":35,"az":130,"sid":{"sat":24,"code":12}},{"el":14,"az":157,"sid":{"sat":25,"code":12}},{"el":21,"az":103,"sid":{"sat":26,"code":12}},{"el":17,"az":142,"sid":{"sat":34,"code":12}},{"el":45,"az":34,"sid":{"sat":35,"code":12}},{"el":50,"az":139,"sid":{"sat":11,"code":14}},{"el":60,"az":15,"sid":{"sat":12,"code":14}},{"el":54,"az":108,"sid":{"sat":24,"code":14}},{"el":41,"az":151,"sid":{"sat":25,"code":14}},{"el":17,"az":85,"sid":{"sat":31,"code":14}},{"el":15,"az":32,"sid":{"sat":33,"code":14}}]} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgicEC8QAAAAAAE=","wn":2098,"tow":271519900,"crc":60663} -{"length":16,"flags":17,"ns":899999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EZwQLxDkBwMZAxkB/uikNQ==","day":25,"tow":271519900,"year":2020,"crc":3450,"minutes":25,"month":3,"seconds":1} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.026357049242964,"preamble":85,"sender":22963,"msg_type":522,"payload":"nBAvEDzEoOVl6kJAlLNzGlaSXsCBhOhVvwYxwAECWwQPBg==","lat":37.831234649180686,"tow":271519900,"h_accuracy":513,"crc":17157,"lon":-122.28650533007595} -{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"nBAvEAUAAAD4////4P////EAygIPAg==","n":5,"d":-32,"tow":271519900,"h_accuracy":241,"crc":44501,"e":-8} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"nBAvEJsAhwBMAEgAcgAG","tow":271519900,"crc":32866,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"nBAvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271519900,"h_accuracy":0,"crc":39221,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"nBAvEP//","tow":271519900,"crc":41690} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":249,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":123,"i":110565132},"flags":15,"cn0":214,"P":1051992124,"D":{"f":205,"i":-186},"lock":15,"sid":{"sat":5,"code":0}},{"L":{"f":179,"i":121813871},"flags":15,"cn0":181,"P":1159020469,"D":{"f":229,"i":2173},"lock":15,"sid":{"sat":21,"code":0}},{"L":{"f":40,"i":123350720},"flags":15,"cn0":188,"P":1173642687,"D":{"f":14,"i":-2479},"lock":15,"sid":{"sat":2,"code":0}},{"L":{"f":235,"i":128740358},"flags":15,"cn0":168,"P":1224923820,"D":{"f":228,"i":-398},"lock":15,"sid":{"sat":31,"code":0}},{"L":{"f":217,"i":107828939},"flags":15,"cn0":219,"P":1025958183,"D":{"f":64,"i":-1128},"lock":15,"sid":{"sat":25,"code":0}},{"L":{"f":116,"i":114113584},"flags":15,"cn0":209,"P":1085754554,"D":{"f":152,"i":-2969},"lock":15,"sid":{"sat":12,"code":0}},{"L":{"f":117,"i":110753486},"flags":15,"cn0":213,"P":1053784301,"D":{"f":173,"i":1484},"lock":15,"sid":{"sat":29,"code":0}},{"L":{"f":7,"i":84022571},"flags":15,"cn0":204,"P":1025958216,"D":{"f":226,"i":-880},"lock":15,"sid":{"sat":25,"code":1}},{"L":{"f":212,"i":88919707},"flags":15,"cn0":188,"P":1085754478,"D":{"f":160,"i":-2313},"lock":15,"sid":{"sat":12,"code":1}},{"L":{"f":56,"i":100317165},"flags":15,"cn0":151,"P":1224923735,"D":{"f":216,"i":-310},"lock":15,"sid":{"sat":31,"code":1}},{"L":{"f":217,"i":86301419},"flags":15,"cn0":195,"P":1053784228,"D":{"f":169,"i":1156},"lock":15,"sid":{"sat":29,"code":1}},{"L":{"f":246,"i":86154677},"flags":15,"cn0":194,"P":1051992052,"D":{"f":26,"i":-144},"lock":15,"sid":{"sat":5,"code":1}},{"L":{"f":69,"i":112930612},"flags":15,"cn0":214,"P":1056670909,"D":{"f":202,"i":1163},"lock":15,"sid":{"sat":11,"code":3}},{"L":{"f":148,"i":123359559},"flags":15,"cn0":177,"P":1155063874,"D":{"f":29,"i":-4406},"lock":15,"sid":{"sat":9,"code":3}}],"payload":"ABEvEAAAAAAyCEA8ILQ+DBeXBntG/83WDw8FALU/FUVvu0IHs30I5bUPDxUAv130RcAuWgcoUfYOvA8PAgCs2gJJBmysB+ty/uSoDw8fACfhJj3LVm0G2Zj7QNsPDxkAuky3QDA8zQZ0Z/SY0Q8PDADteM8+zvaZBnXMBa3VDw8dAEjhJj0rFQIFB5D84swPDxkBbky3QJvOTAXU9/agvA8PDAFX2gJJ7bf6BTjK/tiXDw8fAaR4zz7r2iQF2YQEqcMPDx0B9B+0PrWdIgX2cP8awg8PBQG9hPs+NC+7BkWLBMrWDw8LA0Lg2ERHUVoHlMruHbEPDwkD","header":{"n_obs":64,"t":{"ns_residual":0,"wn":2098,"tow":271520000}},"crc":42657} -{"length":249,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":50,"i":109777572},"flags":15,"cn0":174,"P":1026447655,"D":{"f":233,"i":-1211},"lock":15,"sid":{"sat":20,"code":3}},{"L":{"f":254,"i":114847601},"flags":15,"cn0":208,"P":1074230624,"D":{"f":149,"i":2196},"lock":15,"sid":{"sat":5,"code":3}},{"L":{"f":2,"i":111621151},"flags":15,"cn0":208,"P":1046991858,"D":{"f":16,"i":-3046},"lock":15,"sid":{"sat":10,"code":3}},{"L":{"f":236,"i":120446124},"flags":15,"cn0":180,"P":1124622871,"D":{"f":72,"i":-1318},"lock":15,"sid":{"sat":4,"code":3}},{"L":{"f":145,"i":113410506},"flags":15,"cn0":203,"P":1059672758,"D":{"f":55,"i":1623},"lock":15,"sid":{"sat":21,"code":3}},{"L":{"f":199,"i":95946333},"flags":15,"cn0":171,"P":1155063992,"D":{"f":219,"i":-3427},"lock":15,"sid":{"sat":9,"code":4}},{"L":{"f":226,"i":85382591},"flags":15,"cn0":205,"P":1026447998,"D":{"f":139,"i":-942},"lock":15,"sid":{"sat":20,"code":4}},{"L":{"f":252,"i":87834930},"flags":15,"cn0":200,"P":1056671172,"D":{"f":158,"i":904},"lock":15,"sid":{"sat":11,"code":4}},{"L":{"f":117,"i":89325916},"flags":15,"cn0":196,"P":1074230918,"D":{"f":69,"i":1708},"lock":15,"sid":{"sat":5,"code":4}},{"L":{"f":154,"i":93680309},"flags":15,"cn0":175,"P":1124623177,"D":{"f":227,"i":-1026},"lock":15,"sid":{"sat":4,"code":4}},{"L":{"f":167,"i":121588536},"flags":15,"cn0":200,"P":1167489719,"D":{"f":246,"i":-1500},"lock":15,"sid":{"sat":35,"code":12}},{"L":{"f":23,"i":129229162},"flags":15,"cn0":171,"P":1240855145,"D":{"f":49,"i":-3007},"lock":15,"sid":{"sat":26,"code":12}},{"L":{"f":95,"i":132933110},"flags":15,"cn0":157,"P":1276420054,"D":{"f":186,"i":2249},"lock":15,"sid":{"sat":34,"code":12}},{"L":{"f":67,"i":125158790},"flags":15,"cn0":188,"P":1201771505,"D":{"f":46,"i":-1303},"lock":15,"sid":{"sat":24,"code":12}}],"payload":"ABEvEAAAAAAyCEEnWS49pBKLBjJF++muDw8UA2B1B0Bxb9gG/pQIldAPDwUD8tNnPh80pwYCGvQQ0A8PCgMXYghDrNwtB+za+ki0Dw8EA7ZSKT/KgcIGkVcGN8sPDxUDuODYRF0GuAXHnfLbqw8PCQR+Wi49v9UWBeJS/IvNDw8UBMSF+z4yQTwF/IgDnsgPDwsEhnYHQFwBUwV1rAZFxA8PBQRJYwhDtXKVBZr+++OvDw8EBLd6lkU4Sz8HpyT69sgPDyMMafL1SWrhswcXQfQxqw8PGgzWnxRM9mXsB1/JCLqdDw8iDPGToUeGxXUHQ+n6LrwPDxgM","header":{"n_obs":65,"t":{"ns_residual":0,"wn":2098,"tow":271520000}},"crc":57914} -{"length":249,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":145,"i":134664563},"flags":15,"cn0":158,"P":1293045673,"D":{"f":0,"i":1324},"lock":15,"sid":{"sat":25,"code":12}},{"L":{"f":24,"i":121090708},"flags":15,"cn0":184,"P":1162709848,"D":{"f":181,"i":1612},"lock":15,"sid":{"sat":12,"code":12}},{"L":{"f":127,"i":124516613},"flags":15,"cn0":184,"P":1195605278,"D":{"f":123,"i":-291},"lock":15,"sid":{"sat":19,"code":12}},{"L":{"f":55,"i":124690691},"flags":15,"cn0":192,"P":1197276800,"D":{"f":37,"i":2387},"lock":15,"sid":{"sat":22,"code":12}},{"L":{"f":52,"i":93635025},"flags":15,"cn0":210,"P":1162709762,"D":{"f":65,"i":1246},"lock":15,"sid":{"sat":12,"code":13}},{"L":{"f":103,"i":116432050},"flags":15,"cn0":195,"P":1107814092,"D":{"f":153,"i":-1027},"lock":15,"sid":{"sat":12,"code":14}},{"L":{"f":66,"i":132468499},"flags":15,"cn0":192,"P":1260395777,"D":{"f":34,"i":1087},"lock":15,"sid":{"sat":25,"code":14}},{"L":{"f":208,"i":125416452},"flags":15,"cn0":189,"P":1193297806,"D":{"f":119,"i":1047},"lock":15,"sid":{"sat":11,"code":14}},{"L":{"f":241,"i":118424134},"flags":15,"cn0":205,"P":1126768054,"D":{"f":231,"i":-1746},"lock":15,"sid":{"sat":24,"code":14}},{"L":{"f":139,"i":143340020},"flags":15,"cn0":159,"P":1363834938,"D":{"f":194,"i":-3174},"lock":15,"sid":{"sat":31,"code":14}},{"L":{"f":223,"i":144536745},"flags":15,"cn0":153,"P":1375221401,"D":{"f":237,"i":-2141},"lock":15,"sid":{"sat":33,"code":14}},{"L":{"f":131,"i":101501835},"flags":15,"cn0":201,"P":1260395759,"D":{"f":175,"i":831},"lock":15,"sid":{"sat":25,"code":20}},{"L":{"f":129,"i":90740634},"flags":15,"cn0":215,"P":1126768592,"D":{"f":185,"i":-1338},"lock":15,"sid":{"sat":24,"code":20}},{"L":{"f":214,"i":96098298},"flags":15,"cn0":194,"P":1193297618,"D":{"f":161,"i":802},"lock":15,"sid":{"sat":11,"code":20}}],"payload":"ABEvEAAAAAAyCEKpTxJNc9EGCJEsBQCeDw8ZDFiLTUWUsjcHGEwGtbgPDwwMHn1DRwX5awd/3f57uA8PEwyA/lxHA6FuBzdTCSXADw8WDAKLTUXRwZQFNN4EQdIPDwwNzOYHQrKc8AZn/fuZww8PDA4BHSBLE0/lB0I/BCLADw8ZDo5HIEcEtHkH0BcEd70PDwsOth0pQ0YCDwfxLvnnzQ8PGA46eEpR9DGLCIua88KfDw8fDpk2+FGpdJ0I36P37ZkPDyEO7xwgS4vLDAaDPwOvyQ8PGRTQHylDmpdoBYHG+rnXDw8YFNJGIEf6V7oF1iIDocIPDwsU","header":{"n_obs":66,"t":{"ns_residual":0,"wn":2098,"tow":271520000}},"crc":2411} -{"length":62,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":81,"i":109832005},"flags":15,"cn0":174,"P":1363835006,"D":{"f":210,"i":-2434},"lock":15,"sid":{"sat":31,"code":20}},{"L":{"f":26,"i":89214199},"flags":15,"cn0":206,"P":1107813938,"D":{"f":98,"i":-787},"lock":15,"sid":{"sat":12,"code":20}},{"L":{"f":163,"i":110749005},"flags":15,"cn0":169,"P":1375221356,"D":{"f":216,"i":-1642},"lock":15,"sid":{"sat":33,"code":20}}],"payload":"ABEvEAAAAAAyCEN+eEpRReeLBlF+9tKuDw8fFDLmB0L3TFEFGu38Ys4PDwwUbDb4UU3lmQajlvnYqQ8PIRQ=","header":{"n_obs":67,"t":{"ns_residual":0,"wn":2098,"tow":271520000}},"crc":50367} -{"length":9,"l2ca_bias":0,"preamble":85,"l2p_bias":0,"sender":22963,"msg_type":117,"payload":"/wAAAAAAAAAA","l1ca_bias":0,"mask":255,"crc":49809,"l1p_bias":0} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MggAES8QAAAAAAE=","wn":2098,"tow":271520000,"crc":62072} -{"length":16,"flags":17,"ns":999999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EQARLxDkBwMZAxkB/smaOw==","day":25,"tow":271520000,"year":2020,"crc":42710,"minutes":25,"month":3,"seconds":1} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.029275270561335,"preamble":85,"sender":22963,"msg_type":522,"payload":"ABEvEEnq6eVl6kJAimJdGlaSXsB6pImVfgcxwAECWwQPBg==","lat":37.831234683243174,"tow":271520000,"h_accuracy":513,"crc":48569,"lon":-122.28650530929204} -{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"ABEvEAAAAAD8////BwAAAPEAygIPAg==","n":0,"d":7,"tow":271520000,"h_accuracy":241,"crc":30203,"e":-4} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"ABEvEJsAhwBMAEgAcgAG","tow":271520000,"crc":23916,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"ABEvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271520000,"h_accuracy":0,"crc":45810,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"ABEvEP//","tow":271520000,"crc":52684} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":4,"flags":2147616000,"preamble":85,"sender":22963,"msg_type":65535,"payload":"AAUCgA==","crc":40942} -{"length":24,"z":3890655.0240602265,"preamble":85,"sender":22963,"msg_type":72,"payload":"UO0a3iqORMHK1UJhIkRQwc9nFIPvrk1B","crc":2168,"x":-2694229.735196747,"y":-4264073.519704292} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"bWFpbgAAAAAAAAAAAAAAAAAAAAAAAAx1AAA=","name":"main\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":47991,"stack_free":29964,"cpu":0} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"aWRsZQAAAAAAAAAAAAAAAAAAAAD9AHwAAAA=","name":"idle\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":39855,"stack_free":124,"cpu":253} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"cnBtc2cAAAAAAAAAAAAAAAAAAAABAPwNAAA=","name":"rpmsg\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":54377,"stack_free":3580,"cpu":1} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"U0JQAAAAAAAAAAAAAAAAAAAAAAAAAPz/AAA=","name":"SBP\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":51784,"stack_free":65532,"cpu":0} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"TkFQAAAAAAAAAAAAAAAAAAAAAAAAAASAAAA=","name":"NAP\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":33651,"stack_free":32772,"cpu":0} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"bWFuYWdlIFBWAAAAAAAAAAAAAAAAABQEAAA=","name":"manage PV\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":22620,"stack_free":1044,"cpu":0} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"SU1VAAAAAAAAAAAAAAAAAAAAAAAAAPQHAAA=","name":"IMU\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":14252,"stack_free":2036,"cpu":0} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"SU1VIGF1eAAAAAAAAAAAAAAAAAAAAEwIAAA=","name":"IMU aux\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":18976,"stack_free":2124,"cpu":0} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"bmRiAAAAAAAAAAAAAAAAAAAAAAAAAFAMAAA=","name":"ndb\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":26120,"stack_free":3152,"cpu":0} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"TkFQIFRyYWNraW5nAAAAAAAAAAAgAdR3AAA=","name":"NAP Tracking\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":11008,"stack_free":30676,"cpu":288} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"ZGVjb2RlAAAAAAAAAAAAAAAAAAAJANQGAAA=","name":"decode\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":55602,"stack_free":1748,"cpu":9} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"bWFuYWdlIGFjcQAAAAAAAAAAAAAeAaR3AAA=","name":"manage acq\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":56072,"stack_free":30628,"cpu":286} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"c3lzdGVtIG1vbml0b3IAAAAAAAAAACwGAAA=","name":"system monitor\u0000\u0000\u0000\u0000\u0000\u0000","crc":58531,"stack_free":1580,"cpu":0} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"V2F0Y2hkb2cAAAAAAAAAAAAAAAAAAOQDAAA=","name":"Watchdog\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":44438,"stack_free":996,"cpu":0} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"c3RhcmxpbmcAAAAAAAAAAAAAAACWAPz/AAA=","name":"starling\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":61599,"stack_free":65532,"cpu":150} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"bWVfY2FsY19wdnQAAAAAAAAAAAAJAIwjAAA=","name":"me_calc_pvt\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":57561,"stack_free":9100,"cpu":9} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"UFBTAAAAAAAAAAAAAAAAAAAAAAAAAEgHAAA=","name":"PPS\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":38576,"stack_free":1864,"cpu":0} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"c3BlY3RydW0gYW5hbHl6ZXIAAAAAANQPAAA=","name":"spectrum analyzer\u0000\u0000\u0000","crc":50933,"stack_free":4052,"cpu":0} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MghkES8QAAAAAAE=","wn":2098,"tow":271520100,"crc":38578} -{"length":16,"flags":17,"ns":99999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EWQRLxDkBwMZAxkC/uD1BQ==","day":25,"tow":271520100,"year":2020,"crc":45173,"minutes":25,"month":3,"seconds":2} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.03466077881481,"preamble":85,"sender":22963,"msg_type":522,"payload":"ZBEvEDwoKOZl6kJAPs87GlaSXsCodl+H3wgxwAECWwQPBg==","lat":37.83123471222686,"tow":271520100,"h_accuracy":513,"crc":27436,"lon":-122.28650527802253} -{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"ZBEvEPz///8IAAAAAAAAAPEAygIPAg==","n":-4,"d":0,"tow":271520100,"h_accuracy":241,"crc":5439,"e":8} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"ZBEvEJsAhwBMAEgAcgAG","tow":271520100,"crc":29123,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"ZBEvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271520100,"h_accuracy":0,"crc":43588,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"ZBEvEP//","tow":271520100,"crc":38005} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":51,"text":"GLO L2OF ME 1 [+1302ms] low CN0 too long, dropping","preamble":85,"sender":22963,"msg_type":1025,"payload":"BkdMTyBMMk9GIE1FIDEgWysxMzAybXNdIGxvdyBDTjAgdG9vIGxvbmcsIGRyb3BwaW5n","crc":62933,"level":6} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgjIES8QAAAAAAE=","wn":2098,"tow":271520200,"crc":15340} -{"length":16,"flags":17,"ns":199999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EcgRLxDkBwMZAxkC/sHrCw==","day":25,"tow":271520200,"year":2020,"crc":46528,"minutes":25,"month":3,"seconds":2} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.04008366058701,"preamble":85,"sender":22963,"msg_type":522,"payload":"yBEvEIbHeuZl6kJAbFk6GlaSXsA+UzvsQgoxwAECWwQPBg==","lat":37.83123475070083,"tow":271520200,"h_accuracy":513,"crc":11543,"lon":-122.28650527666258} -{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"yBEvEAgAAAD5////8/////EAygIPAg==","n":8,"d":-13,"tow":271520200,"h_accuracy":241,"crc":6335,"e":-7} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"yBEvEJsAhwBMAEgAcgAG","tow":271520200,"crc":1074,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"yBEvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271520200,"h_accuracy":0,"crc":33694,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"yBEvEP//","tow":271520200,"crc":32446} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MggsEi8QAAAAAAE=","wn":2098,"tow":271520300,"crc":10465} -{"length":16,"flags":17,"ns":299999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"ESwSLxDkBwMZAxkC/qLhEQ==","day":25,"tow":271520300,"year":2020,"crc":56917,"minutes":25,"month":3,"seconds":2} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.051366637710377,"preamble":85,"sender":22963,"msg_type":522,"payload":"LBIvENX20uZl6kJA4eg1GlaSXsBREi1dJg0xwAECWwQPBg==","lat":37.83123479176508,"tow":271520300,"h_accuracy":513,"crc":42052,"lon":-122.28650527252786} -{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"LBIvEAQAAAD4////IwAAAPEAygIPAg==","n":4,"d":35,"tow":271520300,"h_accuracy":241,"crc":4533,"e":-8} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"LBIvEJsAhwBMAEgAcgAG","tow":271520300,"crc":61740,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"LBIvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271520300,"h_accuracy":0,"crc":20358,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"LBIvEP//","tow":271520300,"crc":7669} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":237,"states":[{"cn0":214,"mesid":{"sat":5,"code":0}},{"cn0":181,"mesid":{"sat":21,"code":0}},{"cn0":187,"mesid":{"sat":2,"code":0}},{"cn0":168,"mesid":{"sat":31,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":219,"mesid":{"sat":25,"code":0}},{"cn0":208,"mesid":{"sat":12,"code":0}},{"cn0":213,"mesid":{"sat":29,"code":0}},{"cn0":206,"mesid":{"sat":18,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":206,"mesid":{"sat":131,"code":2}},{"cn0":204,"mesid":{"sat":25,"code":1}},{"cn0":187,"mesid":{"sat":12,"code":1}},{"cn0":152,"mesid":{"sat":31,"code":1}},{"cn0":197,"mesid":{"sat":18,"code":1}},{"cn0":195,"mesid":{"sat":29,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":194,"mesid":{"sat":5,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":214,"mesid":{"sat":100,"code":3}},{"cn0":177,"mesid":{"sat":98,"code":3}},{"cn0":174,"mesid":{"sat":102,"code":3}},{"cn0":208,"mesid":{"sat":101,"code":3}},{"cn0":208,"mesid":{"sat":93,"code":3}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":180,"mesid":{"sat":106,"code":3}},{"cn0":203,"mesid":{"sat":104,"code":3}},{"cn0":171,"mesid":{"sat":98,"code":4}},{"cn0":205,"mesid":{"sat":102,"code":4}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":199,"mesid":{"sat":100,"code":4}},{"cn0":196,"mesid":{"sat":101,"code":4}},{"cn0":189,"mesid":{"sat":104,"code":4}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":176,"mesid":{"sat":106,"code":4}},{"cn0":200,"mesid":{"sat":35,"code":12}},{"cn0":171,"mesid":{"sat":26,"code":12}},{"cn0":156,"mesid":{"sat":34,"code":12}},{"cn0":188,"mesid":{"sat":24,"code":12}},{"cn0":158,"mesid":{"sat":25,"code":12}},{"cn0":184,"mesid":{"sat":12,"code":12}},{"cn0":185,"mesid":{"sat":19,"code":12}},{"cn0":191,"mesid":{"sat":22,"code":12}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":210,"mesid":{"sat":12,"code":13}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":196,"mesid":{"sat":12,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":193,"mesid":{"sat":25,"code":14}},{"cn0":190,"mesid":{"sat":11,"code":14}},{"cn0":205,"mesid":{"sat":24,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":160,"mesid":{"sat":31,"code":14}},{"cn0":154,"mesid":{"sat":33,"code":14}},{"cn0":201,"mesid":{"sat":25,"code":20}},{"cn0":215,"mesid":{"sat":24,"code":20}},{"cn0":193,"mesid":{"sat":11,"code":20}},{"cn0":174,"mesid":{"sat":31,"code":20}},{"cn0":206,"mesid":{"sat":12,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":169,"mesid":{"sat":33,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}}],"preamble":85,"sender":22963,"msg_type":97,"payload":"BQDWFQC1AgC7HwCoAAAAAAAAGQDbDADQHQDVEgDOAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwLOGQHMDAG7HwGYEgHFHQHDAAAABQHCAAAAAAAAAAAAAAAAZAPWYgOxZgOuZQPQXQPQAAAAagO0aAPLYgSrZgTNAAAAZATHZQTEaAS9AAAAagSwIwzIGgyrIgycGAy8GQyeDAy4Ewy5Fgy/AAAADA3SAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADA7EAAAAGQ7BCw6+GA7NAAAAHw6gIQ6aGRTJGBTXCxTBHxSuDBTOAAAAIRSpAAAA","crc":33391} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgiQEi8QAAAAAAE=","wn":2098,"tow":271520400,"crc":54849} -{"length":16,"flags":17,"ns":399999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EZASLxDkBwMZAxkC/oPXFw==","day":25,"tow":271520400,"year":2020,"crc":39725,"minutes":25,"month":3,"seconds":2} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.05625299771816,"preamble":85,"sender":22963,"msg_type":522,"payload":"kBIvEC7AG+dl6kJANIouGlaSXsBggLGYZg4xwAECWwQPBg==","lat":37.83123482565894,"tow":271520400,"h_accuracy":513,"crc":15832,"lon":-122.28650526566418} -{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"kBIvEAAAAAABAAAA5v////EAygIPAg==","n":0,"d":-26,"tow":271520400,"h_accuracy":241,"crc":47655,"e":1} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"kBIvEJsAhwBMAEgAcgAG","tow":271520400,"crc":51799,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"kBIvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271520400,"h_accuracy":0,"crc":56090,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"kBIvEP//","tow":271520400,"crc":60858} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":9,"l2ca_bias":0,"preamble":85,"l2p_bias":0,"sender":22963,"msg_type":117,"payload":"/wAAAAAAAAAA","l1ca_bias":0,"mask":255,"crc":49809,"l1p_bias":0} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"Mgj0Ei8QAAAAAAE=","wn":2098,"tow":271520500,"crc":45707} -{"length":16,"flags":17,"ns":499999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EfQSLxDkBwMZAxkC/mTNHQ==","day":25,"tow":271520500,"year":2020,"crc":57297,"minutes":25,"month":3,"seconds":2} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.068101924393215,"preamble":85,"sender":22963,"msg_type":522,"payload":"9BIvENTYUudl6kJA+bMGGlaSXsBDELIgbxExwAECWwQPBg==","lat":37.831234851315145,"tow":271520500,"h_accuracy":513,"crc":61200,"lon":-122.28650522856323} -{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"9BIvEPb///8NAAAAHwAAAPEAygIPAg==","n":-10,"d":31,"tow":271520500,"h_accuracy":241,"crc":14616,"e":13} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"9BIvEJsAhwBMAEgAcgAG","tow":271520500,"crc":59128,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"9BIvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271520500,"h_accuracy":0,"crc":50092,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"9BIvEP//","tow":271520500,"crc":46083} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MghYEy8QAAAAAAE=","wn":2098,"tow":271520600,"crc":22534} -{"length":16,"flags":17,"ns":599999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EVgTLxDkBwMZAxkC/kXDIw==","day":25,"tow":271520600,"year":2020,"crc":37925,"minutes":25,"month":3,"seconds":2} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.074801701418377,"preamble":85,"sender":22963,"msg_type":522,"payload":"WBMvEEREsOdl6kJAUD7zGVaSXsDvRk00JhMxwAECWwQPBg==","lat":37.83123489481707,"tow":271520600,"h_accuracy":513,"crc":5235,"lon":-122.28650521044005} -{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"WBMvEAwAAAD8////+P////EAygIPAg==","n":12,"d":-8,"tow":271520600,"h_accuracy":241,"crc":10566,"e":-4} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"WBMvEJsAhwBMAEgAcgAG","tow":271520600,"crc":59496,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"WBMvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271520600,"h_accuracy":0,"crc":16256,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"WBMvEP//","tow":271520600,"crc":62617} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"message_type":3,"length":34,"data":[151,255,0,31,254,127,247,255,0,7,255,255,215,255,127,240,0,255,255,255,232,206,246,231,239,229,112],"preamble":85,"sender":22963,"msg_type":30583,"payload":"gwLcEi8QA5f/AB/+f/f/AAf//9f/f/AA////6M725+/lcA==","tow":271520476,"crc":60393,"sid":{"sat":131,"code":2}} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"Mgi8Ey8QAAAAAAE=","wn":2098,"tow":271520700,"crc":33662} -{"length":16,"flags":17,"ns":699999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EbwTLxDkBwMZAxkC/ia5KQ==","day":25,"tow":271520700,"year":2020,"crc":26747,"minutes":25,"month":3,"seconds":2} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.088445518669424,"preamble":85,"sender":22963,"msg_type":522,"payload":"vBMvEDCr8+dl6kJAG0vVGVaSXsC2KZJdpBYxwAECWwQPBg==","lat":37.83123492620359,"tow":271520700,"h_accuracy":513,"crc":43434,"lon":-122.28650518254692} -{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"vBMvEP3///8EAAAAFgAAAPEAygIPAg==","n":-3,"d":22,"tow":271520700,"h_accuracy":241,"crc":8974,"e":4} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"vBMvEJsAhwBMAEgAcgAG","tow":271520700,"crc":37077,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"vBMvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271520700,"h_accuracy":0,"crc":40355,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"vBMvEP//","tow":271520700,"crc":30976} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgggFC8QAAAAAAE=","wn":2098,"tow":271520800,"crc":7482} -{"length":16,"flags":17,"ns":799999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"ESAULxDkBwMZAxkC/gevLw==","day":25,"tow":271520800,"year":2020,"crc":50935,"minutes":25,"month":3,"seconds":2} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.09520787475111,"preamble":85,"sender":22963,"msg_type":522,"payload":"IBQvEJS6VOhl6kJA1F++GVaSXsCwYBSLXxgxwAECWwQPBg==","lat":37.83123497140073,"tow":271520800,"h_accuracy":513,"crc":18280,"lon":-122.28650516120189} -{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"IBQvEAIAAAD9////9P////EAygIPAg==","n":2,"d":-12,"tow":271520800,"h_accuracy":241,"crc":4416,"e":-3} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"IBQvEJsAhwBMAEgAcgAG","tow":271520800,"crc":18108,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"IBQvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271520800,"h_accuracy":0,"crc":27154,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"IBQvEP//","tow":271520800,"crc":56211} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":237,"states":[{"cn0":214,"mesid":{"sat":5,"code":0}},{"cn0":181,"mesid":{"sat":21,"code":0}},{"cn0":187,"mesid":{"sat":2,"code":0}},{"cn0":167,"mesid":{"sat":31,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":219,"mesid":{"sat":25,"code":0}},{"cn0":208,"mesid":{"sat":12,"code":0}},{"cn0":213,"mesid":{"sat":29,"code":0}},{"cn0":207,"mesid":{"sat":18,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":205,"mesid":{"sat":131,"code":2}},{"cn0":204,"mesid":{"sat":25,"code":1}},{"cn0":187,"mesid":{"sat":12,"code":1}},{"cn0":152,"mesid":{"sat":31,"code":1}},{"cn0":197,"mesid":{"sat":18,"code":1}},{"cn0":195,"mesid":{"sat":29,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":194,"mesid":{"sat":5,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":214,"mesid":{"sat":11,"code":3}},{"cn0":178,"mesid":{"sat":9,"code":3}},{"cn0":174,"mesid":{"sat":20,"code":3}},{"cn0":208,"mesid":{"sat":5,"code":3}},{"cn0":208,"mesid":{"sat":10,"code":3}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":181,"mesid":{"sat":4,"code":3}},{"cn0":203,"mesid":{"sat":21,"code":3}},{"cn0":171,"mesid":{"sat":9,"code":4}},{"cn0":205,"mesid":{"sat":20,"code":4}},{"cn0":79,"mesid":{"sat":10,"code":4}},{"cn0":200,"mesid":{"sat":11,"code":4}},{"cn0":196,"mesid":{"sat":5,"code":4}},{"cn0":189,"mesid":{"sat":0,"code":4}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":176,"mesid":{"sat":4,"code":4}},{"cn0":200,"mesid":{"sat":35,"code":12}},{"cn0":171,"mesid":{"sat":26,"code":12}},{"cn0":157,"mesid":{"sat":34,"code":12}},{"cn0":188,"mesid":{"sat":24,"code":12}},{"cn0":157,"mesid":{"sat":25,"code":12}},{"cn0":185,"mesid":{"sat":12,"code":12}},{"cn0":185,"mesid":{"sat":19,"code":12}},{"cn0":191,"mesid":{"sat":22,"code":12}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":210,"mesid":{"sat":12,"code":13}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":197,"mesid":{"sat":12,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":193,"mesid":{"sat":25,"code":14}},{"cn0":190,"mesid":{"sat":11,"code":14}},{"cn0":206,"mesid":{"sat":24,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":160,"mesid":{"sat":31,"code":14}},{"cn0":154,"mesid":{"sat":33,"code":14}},{"cn0":201,"mesid":{"sat":25,"code":20}},{"cn0":215,"mesid":{"sat":24,"code":20}},{"cn0":194,"mesid":{"sat":11,"code":20}},{"cn0":174,"mesid":{"sat":31,"code":20}},{"cn0":206,"mesid":{"sat":12,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":169,"mesid":{"sat":33,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}}],"preamble":85,"sender":22963,"msg_type":97,"payload":"BQDWFQC1AgC7HwCnAAAAAAAAGQDbDADQHQDVEgDPAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwLNGQHMDAG7HwGYEgHFHQHDAAAABQHCAAAAAAAAAAAAAAAACwPWCQOyFAOuBQPQCgPQAAAABAO1FQPLCQSrFATNCgRPCwTIBQTEAAS9AAAABASwIwzIGgyrIgydGAy8GQydDAy5Ewy5Fgy/AAAADA3SAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADA7FAAAAGQ7BCw6+GA7OAAAAHw6gIQ6aGRTJGBTXCxTCHxSuDBTOAAAAIRSpAAAA","crc":4402} -{"length":132,"preamble":85,"sender":22963,"msg_type":151,"payload":"AgAaHQUAKzUMAFEtFQB9GRkAbUYaAKEBHQChNx8AlQ4EAxUWBQMyIQYDTggJA18OCgNxKQsDmCUMA6oDEwMiBxQDDDEVA5UlDAyUKRMMIyAUDA8CFgxDJBgMgiMZDJ0OGgxnFSIMjhEjDCItCw6LMgwODzwYDmw2GQ6XKR8OVREhDiAP","crc":53239,"azel":[{"el":29,"az":26,"sid":{"sat":2,"code":0}},{"el":53,"az":43,"sid":{"sat":5,"code":0}},{"el":45,"az":81,"sid":{"sat":12,"code":0}},{"el":25,"az":125,"sid":{"sat":21,"code":0}},{"el":70,"az":109,"sid":{"sat":25,"code":0}},{"el":1,"az":161,"sid":{"sat":26,"code":0}},{"el":55,"az":161,"sid":{"sat":29,"code":0}},{"el":14,"az":149,"sid":{"sat":31,"code":0}},{"el":22,"az":21,"sid":{"sat":4,"code":3}},{"el":33,"az":50,"sid":{"sat":5,"code":3}},{"el":8,"az":78,"sid":{"sat":6,"code":3}},{"el":14,"az":95,"sid":{"sat":9,"code":3}},{"el":41,"az":113,"sid":{"sat":10,"code":3}},{"el":37,"az":152,"sid":{"sat":11,"code":3}},{"el":3,"az":170,"sid":{"sat":12,"code":3}},{"el":7,"az":34,"sid":{"sat":19,"code":3}},{"el":49,"az":12,"sid":{"sat":20,"code":3}},{"el":37,"az":149,"sid":{"sat":21,"code":3}},{"el":41,"az":148,"sid":{"sat":12,"code":12}},{"el":32,"az":35,"sid":{"sat":19,"code":12}},{"el":2,"az":15,"sid":{"sat":20,"code":12}},{"el":36,"az":67,"sid":{"sat":22,"code":12}},{"el":35,"az":130,"sid":{"sat":24,"code":12}},{"el":14,"az":157,"sid":{"sat":25,"code":12}},{"el":21,"az":103,"sid":{"sat":26,"code":12}},{"el":17,"az":142,"sid":{"sat":34,"code":12}},{"el":45,"az":34,"sid":{"sat":35,"code":12}},{"el":50,"az":139,"sid":{"sat":11,"code":14}},{"el":60,"az":15,"sid":{"sat":12,"code":14}},{"el":54,"az":108,"sid":{"sat":24,"code":14}},{"el":41,"az":151,"sid":{"sat":25,"code":14}},{"el":17,"az":85,"sid":{"sat":31,"code":14}},{"el":15,"az":32,"sid":{"sat":33,"code":14}}]} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgiEFC8QAAAAAAE=","wn":2098,"tow":271520900,"crc":39323} -{"length":16,"flags":17,"ns":899999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EYQULxDkBwMZAxkC/uikNQ==","day":25,"tow":271520900,"year":2020,"crc":30658,"minutes":25,"month":3,"seconds":2} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.102843223866874,"preamble":85,"sender":22963,"msg_type":522,"payload":"hBQvEHDqpehl6kJAWAqeGVaSXsCZH/vuUxoxwAECWwQPBg==","lat":37.83123500920635,"tow":271520900,"h_accuracy":513,"crc":33859,"lon":-122.28650513108857} -{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"hBQvEP7////6////EQAAAPEAygIPAg==","n":-2,"d":17,"tow":271520900,"h_accuracy":241,"crc":59836,"e":-6} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"hBQvEJsAhwBMAEgAcgAG","tow":271520900,"crc":5128,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"hBQvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271520900,"h_accuracy":0,"crc":7531,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"hBQvEP//","tow":271520900,"crc":15386} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":249,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":255,"i":110565317},"flags":15,"cn0":214,"P":1051993884,"D":{"f":216,"i":-186},"lock":15,"sid":{"sat":5,"code":0}},{"L":{"f":82,"i":121811698},"flags":15,"cn0":181,"P":1158999789,"D":{"f":243,"i":2173},"lock":15,"sid":{"sat":21,"code":0}},{"L":{"f":75,"i":123353198},"flags":15,"cn0":187,"P":1173666244,"D":{"f":167,"i":-2477},"lock":15,"sid":{"sat":2,"code":0}},{"L":{"f":245,"i":128740755},"flags":15,"cn0":167,"P":1224927602,"D":{"f":172,"i":-399},"lock":15,"sid":{"sat":31,"code":0}},{"L":{"f":179,"i":107830068},"flags":15,"cn0":218,"P":1025968930,"D":{"f":161,"i":-1129},"lock":15,"sid":{"sat":25,"code":0}},{"L":{"f":159,"i":114116552},"flags":15,"cn0":208,"P":1085782801,"D":{"f":108,"i":-2967},"lock":15,"sid":{"sat":12,"code":0}},{"L":{"f":34,"i":110752002},"flags":15,"cn0":213,"P":1053770178,"D":{"f":37,"i":1485},"lock":15,"sid":{"sat":29,"code":0}},{"L":{"f":165,"i":84023450},"flags":15,"cn0":204,"P":1025968957,"D":{"f":92,"i":-879},"lock":15,"sid":{"sat":25,"code":1}},{"L":{"f":177,"i":88922020},"flags":15,"cn0":187,"P":1085782715,"D":{"f":87,"i":-2311},"lock":15,"sid":{"sat":12,"code":1}},{"L":{"f":152,"i":100317474},"flags":15,"cn0":151,"P":1224927517,"D":{"f":35,"i":-309},"lock":15,"sid":{"sat":31,"code":1}},{"L":{"f":60,"i":86300263},"flags":15,"cn0":195,"P":1053770103,"D":{"f":150,"i":1156},"lock":15,"sid":{"sat":29,"code":1}},{"L":{"f":133,"i":86154822},"flags":15,"cn0":194,"P":1051993816,"D":{"f":105,"i":-145},"lock":15,"sid":{"sat":5,"code":1}},{"L":{"f":86,"i":112929449},"flags":15,"cn0":214,"P":1056660031,"D":{"f":227,"i":1163},"lock":15,"sid":{"sat":11,"code":3}},{"L":{"f":53,"i":123363966},"flags":15,"cn0":178,"P":1155105148,"D":{"f":91,"i":-4407},"lock":15,"sid":{"sat":9,"code":3}}],"payload":"6BQvEAAAAAAyCEAcJ7Q+xReXBv9G/9jWDw8FAO3uFEXyskIHUn0I87UPDxUAxLn0RW44WgdLU/anuw8PAgBy6QJJk22sB/Vx/qynDw8fACILJz00W20Gs5f7odoPDxkAEbu3QMhHzQafafRs0A8PDADCQc8+AvGZBiLNBSXVDw8dAD0LJz2aGAIFpZH8XMwPDxkBu7q3QKTXTAWx+fZXuw8PDAEd6QJJIrn6BZjL/iOXDw8fAXdBzz5n1iQFPIQElsMPDx0B2Ca0PkaeIgWFb/9pwg8PBQE/Wvs+qSq7BlaLBOPWDw8LA3yB2UR+YloHNcnuW7IPDwkD","header":{"n_obs":64,"t":{"ns_residual":0,"wn":2098,"tow":271521000}},"crc":3413} -{"length":249,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":14,"i":109778782},"flags":15,"cn0":174,"P":1026458998,"D":{"f":231,"i":-1210},"lock":15,"sid":{"sat":20,"code":3}},{"L":{"f":25,"i":114845406},"flags":15,"cn0":208,"P":1074210085,"D":{"f":147,"i":2196},"lock":15,"sid":{"sat":5,"code":3}},{"L":{"f":207,"i":111624196},"flags":15,"cn0":208,"P":1047020428,"D":{"f":32,"i":-3046},"lock":15,"sid":{"sat":10,"code":3}},{"L":{"f":202,"i":120447443},"flags":15,"cn0":181,"P":1124635160,"D":{"f":210,"i":-1319},"lock":15,"sid":{"sat":4,"code":3}},{"L":{"f":164,"i":113408883},"flags":15,"cn0":203,"P":1059657586,"D":{"f":80,"i":1623},"lock":15,"sid":{"sat":21,"code":3}},{"L":{"f":36,"i":95949761},"flags":15,"cn0":171,"P":1155105222,"D":{"f":183,"i":-3426},"lock":15,"sid":{"sat":9,"code":4}},{"L":{"f":224,"i":85383532},"flags":15,"cn0":205,"P":1026459299,"D":{"f":245,"i":-942},"lock":15,"sid":{"sat":20,"code":4}},{"L":{"f":123,"i":87834026},"flags":15,"cn0":200,"P":1056660282,"D":{"f":185,"i":904},"lock":15,"sid":{"sat":11,"code":4}},{"L":{"f":139,"i":89324208},"flags":15,"cn0":196,"P":1074210374,"D":{"f":102,"i":1709},"lock":15,"sid":{"sat":5,"code":4}},{"L":{"f":103,"i":93681335},"flags":15,"cn0":176,"P":1124635478,"D":{"f":5,"i":-1025},"lock":15,"sid":{"sat":4,"code":4}},{"L":{"f":111,"i":121590035},"flags":15,"cn0":200,"P":1167504104,"D":{"f":86,"i":-1498},"lock":15,"sid":{"sat":35,"code":12}},{"L":{"f":84,"i":129232169},"flags":15,"cn0":171,"P":1240884018,"D":{"f":145,"i":-3008},"lock":15,"sid":{"sat":26,"code":12}},{"L":{"f":235,"i":132930860},"flags":15,"cn0":156,"P":1276398458,"D":{"f":3,"i":2251},"lock":15,"sid":{"sat":34,"code":12}},{"L":{"f":238,"i":125160093},"flags":15,"cn0":188,"P":1201784017,"D":{"f":16,"i":-1303},"lock":15,"sid":{"sat":24,"code":12}}],"payload":"6BQvEAAAAAAyCEF2hS49XheLBg5G++euDw8UAyUlB0DeZtgGGZQIk9APDwUDjENoPgRApwbPGvQg0A8PCgMYkghD0+EtB8rZ+tK1Dw8EA3IXKT9ze8IGpFcGUMsPDxUDxoHZRMETuAUknvK3qw8PCQSjhi49bNkWBeBS/PXNDw8UBDpb+z6qPTwFe4gDucgPDwsERiYHQLD6UgWLrQZmxA8PBQRWkwhDt3aVBWf/+wWwDw8EBOiylkUTUT8Hbyb6VsgPDyMMMmP2SSntswdUQPSRqw8PGgx6SxRMLF3sB+vLCAOcDw8iDNHEoUedynUH7un6ELwPDxgM","header":{"n_obs":65,"t":{"ns_residual":0,"wn":2098,"tow":271521000}},"crc":51072} -{"length":249,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":249,"i":134663239},"flags":15,"cn0":158,"P":1293032957,"D":{"f":131,"i":1325},"lock":15,"sid":{"sat":25,"code":12}},{"L":{"f":171,"i":121089095},"flags":15,"cn0":185,"P":1162694361,"D":{"f":168,"i":1613},"lock":15,"sid":{"sat":12,"code":12}},{"L":{"f":156,"i":124516904},"flags":15,"cn0":184,"P":1195608074,"D":{"f":251,"i":-291},"lock":15,"sid":{"sat":19,"code":12}},{"L":{"f":66,"i":124688304},"flags":15,"cn0":191,"P":1197253886,"D":{"f":148,"i":2387},"lock":15,"sid":{"sat":22,"code":12}},{"L":{"f":93,"i":93633778},"flags":15,"cn0":209,"P":1162694281,"D":{"f":11,"i":1247},"lock":15,"sid":{"sat":12,"code":13}},{"L":{"f":182,"i":116433076},"flags":15,"cn0":197,"P":1107823863,"D":{"f":220,"i":-1028},"lock":15,"sid":{"sat":12,"code":14}},{"L":{"f":62,"i":132467412},"flags":15,"cn0":194,"P":1260385444,"D":{"f":45,"i":1087},"lock":15,"sid":{"sat":25,"code":14}},{"L":{"f":51,"i":125415405},"flags":15,"cn0":191,"P":1193287831,"D":{"f":69,"i":1049},"lock":15,"sid":{"sat":11,"code":14}},{"L":{"f":34,"i":118425880},"flags":15,"cn0":206,"P":1126784661,"D":{"f":79,"i":-1745},"lock":15,"sid":{"sat":24,"code":14}},{"L":{"f":21,"i":143343192},"flags":15,"cn0":160,"P":1363865101,"D":{"f":6,"i":-3172},"lock":15,"sid":{"sat":31,"code":14}},{"L":{"f":114,"i":144538885},"flags":15,"cn0":155,"P":1375241784,"D":{"f":7,"i":-2141},"lock":15,"sid":{"sat":33,"code":14}},{"L":{"f":154,"i":101501002},"flags":15,"cn0":201,"P":1260385419,"D":{"f":147,"i":834},"lock":15,"sid":{"sat":25,"code":20}},{"L":{"f":183,"i":90741971},"flags":15,"cn0":215,"P":1126785197,"D":{"f":66,"i":-1337},"lock":15,"sid":{"sat":24,"code":20}},{"L":{"f":28,"i":96097496},"flags":15,"cn0":194,"P":1193287652,"D":{"f":213,"i":802},"lock":15,"sid":{"sat":11,"code":20}}],"payload":"6BQvEAAAAAAyCEL9HRJNR8wGCPktBYOeDw8ZDNlOTUVHrDcHq00GqLkPDwwMCohDRyj6awec3f77uA8PEwz+pFxHsJduB0JTCZS/Dw8WDIlOTUXyvJQFXd8EC9EPDwwN9wwIQrSg8Aa2/PvcxQ8PDA6k9B9L1ErlBz4/BC3CDw8ZDpcgIEftr3kHMxkERb8PDwsOlV4pQxgJDwciL/lPzg8PGA4N7kpRWD6LCBWc8wagDw8fDjiG+FEFfZ0IcqP3B5sPDyEOi/QfS0rIDAaaQgOTyQ8PGRStYClD05xoBbfH+kLXDw8YFOQfIEfYVLoFHCID1cIPDwsU","header":{"n_obs":66,"t":{"ns_residual":0,"wn":2098,"tow":271521000}},"crc":53130} -{"length":62,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":118,"i":109834435},"flags":15,"cn0":174,"P":1363865182,"D":{"f":105,"i":-2432},"lock":15,"sid":{"sat":31,"code":20}},{"L":{"f":125,"i":89214985},"flags":15,"cn0":207,"P":1107823702,"D":{"f":60,"i":-786},"lock":15,"sid":{"sat":12,"code":20}},{"L":{"f":18,"i":110750645},"flags":15,"cn0":169,"P":1375241719,"D":{"f":247,"i":-1639},"lock":15,"sid":{"sat":33,"code":20}}],"payload":"6BQvEAAAAAAyCENe7kpRw/CLBnaA9mmuDw8fFFYMCEIJUFEFfe78PM8PDwwU94X4UbXrmQYSmfn3qQ8PIRQ=","header":{"n_obs":67,"t":{"ns_residual":0,"wn":2098,"tow":271521000}},"crc":51661} -{"length":9,"l2ca_bias":0,"preamble":85,"l2p_bias":0,"sender":22963,"msg_type":117,"payload":"/wAAAAAAAAAA","l1ca_bias":0,"mask":255,"crc":49809,"l1p_bias":0} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgjoFC8QAAAAAAE=","wn":2098,"tow":271521000,"crc":54446} -{"length":16,"flags":17,"ns":999999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EegULxDkBwMZAxkC/smaOw==","day":25,"tow":271521000,"year":2020,"crc":2698,"minutes":25,"month":3,"seconds":2} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.110500710310962,"preamble":85,"sender":22963,"msg_type":522,"payload":"6BQvEAWr5+hl6kJAExlyGVaSXsBp+EjGSRwxwAECWwQPBg==","lat":37.83123503982464,"tow":271521000,"h_accuracy":513,"crc":39240,"lon":-122.28650509016397} -{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"6BQvEPz///8FAAAAAQAAAPEAygIPAg==","n":-4,"d":1,"tow":271521000,"h_accuracy":241,"crc":59119,"e":5} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"6BQvEJsAhwBMAEgAcgAG","tow":271521000,"crc":8162,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"6BQvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271521000,"h_accuracy":0,"crc":23422,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"6BQvEP//","tow":271521000,"crc":26849} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":4,"flags":2147616000,"preamble":85,"sender":22963,"msg_type":65535,"payload":"AAUCgA==","crc":40942} -{"length":24,"z":3890655.0240602265,"preamble":85,"sender":22963,"msg_type":72,"payload":"UO0a3iqORMHK1UJhIkRQwc9nFIPvrk1B","crc":2168,"x":-2694229.735196747,"y":-4264073.519704292} -{"cpu_vint":988,"length":10,"fe_temperature":5641,"preamble":85,"sender":22963,"cpu_vaux":1779,"msg_type":181,"payload":"4xbcA/MGUBUJFg==","dev_vin":5859,"crc":27839,"cpu_temperature":5456} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MghMFS8QAAAAAAE=","wn":2098,"tow":271521100,"crc":6108} -{"length":16,"flags":17,"ns":99999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EUwVLxDkBwMZAxkD/uD1BQ==","day":25,"tow":271521100,"year":2020,"crc":24016,"minutes":25,"month":3,"seconds":3} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.117857039168342,"preamble":85,"sender":22963,"msg_type":522,"payload":"TBUvEAEnZOll6kJAV0dPGVaSXsDY1ADhKx4xwAECWwQPBg==","lat":37.83123509779217,"tow":271521100,"h_accuracy":513,"crc":41122,"lon":-122.286505057736} -{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"TBUvEBEAAAD8////BwAAAPEAygIPAg==","n":17,"d":7,"tow":271521100,"h_accuracy":241,"crc":15414,"e":-4} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"TBUvEJsAhwBMAEgAcgAG","tow":271521100,"crc":13879,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"TBUvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271521100,"h_accuracy":0,"crc":63985,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"TBUvEP//","tow":271521100,"crc":9529} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgiwFS8QAAAAAAE=","wn":2098,"tow":271521200,"crc":46757} -{"length":16,"flags":17,"ns":199999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EbAVLxDkBwMZAxkD/sHrCw==","day":25,"tow":271521200,"year":2020,"crc":15590,"minutes":25,"month":3,"seconds":3} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.121547822258968,"preamble":85,"sender":22963,"msg_type":522,"payload":"sBUvEEpDxull6kJAmk0iGVaSXsCWgBHCHR8xwAECWwQPBg==","lat":37.83123514347842,"tow":271521200,"h_accuracy":513,"crc":44056,"lon":-122.28650501584926} -{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"sBUvEPz///8FAAAA8v////EAygIPAg==","n":-4,"d":-14,"tow":271521200,"h_accuracy":241,"crc":13023,"e":5} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"sBUvEJsAhwBMAEgAcgAG","tow":271521200,"crc":10053,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"sBUvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271521200,"h_accuracy":0,"crc":47159,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"sBUvEP//","tow":271521200,"crc":48998} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MggUFi8QAAAAAAE=","wn":2098,"tow":271521300,"crc":64113} -{"length":16,"flags":17,"ns":299999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"ERQWLxDkBwMZAxkD/qLhEQ==","day":25,"tow":271521300,"year":2020,"crc":32122,"minutes":25,"month":3,"seconds":3} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.129901369031778,"preamble":85,"sender":22963,"msg_type":522,"payload":"FBYvEEr+KOpl6kJA+o7nGFaSXsB2slM3QSExwAECWwQPBg==","lat":37.83123518945338,"tow":271521300,"h_accuracy":513,"crc":25012,"lon":-122.28650496113906} -{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"FBYvEPf///8IAAAAGAAAAPEAygIPAg==","n":-9,"d":24,"tow":271521300,"h_accuracy":241,"crc":12750,"e":8} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"FBYvEJsAhwBMAEgAcgAG","tow":271521300,"crc":63570,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"FBYvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271521300,"h_accuracy":0,"crc":41333,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"FBYvEP//","tow":271521300,"crc":46653} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":237,"states":[{"cn0":214,"mesid":{"sat":5,"code":0}},{"cn0":182,"mesid":{"sat":21,"code":0}},{"cn0":187,"mesid":{"sat":2,"code":0}},{"cn0":167,"mesid":{"sat":31,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":219,"mesid":{"sat":25,"code":0}},{"cn0":208,"mesid":{"sat":12,"code":0}},{"cn0":213,"mesid":{"sat":29,"code":0}},{"cn0":207,"mesid":{"sat":18,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":205,"mesid":{"sat":131,"code":2}},{"cn0":204,"mesid":{"sat":25,"code":1}},{"cn0":188,"mesid":{"sat":12,"code":1}},{"cn0":153,"mesid":{"sat":31,"code":1}},{"cn0":197,"mesid":{"sat":18,"code":1}},{"cn0":195,"mesid":{"sat":29,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":194,"mesid":{"sat":5,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":214,"mesid":{"sat":100,"code":3}},{"cn0":177,"mesid":{"sat":98,"code":3}},{"cn0":174,"mesid":{"sat":102,"code":3}},{"cn0":208,"mesid":{"sat":101,"code":3}},{"cn0":208,"mesid":{"sat":93,"code":3}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":180,"mesid":{"sat":106,"code":3}},{"cn0":203,"mesid":{"sat":104,"code":3}},{"cn0":171,"mesid":{"sat":98,"code":4}},{"cn0":204,"mesid":{"sat":102,"code":4}},{"cn0":66,"mesid":{"sat":93,"code":4}},{"cn0":200,"mesid":{"sat":100,"code":4}},{"cn0":196,"mesid":{"sat":101,"code":4}},{"cn0":189,"mesid":{"sat":104,"code":4}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":175,"mesid":{"sat":106,"code":4}},{"cn0":199,"mesid":{"sat":35,"code":12}},{"cn0":171,"mesid":{"sat":26,"code":12}},{"cn0":155,"mesid":{"sat":34,"code":12}},{"cn0":188,"mesid":{"sat":24,"code":12}},{"cn0":157,"mesid":{"sat":25,"code":12}},{"cn0":184,"mesid":{"sat":12,"code":12}},{"cn0":184,"mesid":{"sat":19,"code":12}},{"cn0":191,"mesid":{"sat":22,"code":12}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":209,"mesid":{"sat":12,"code":13}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":196,"mesid":{"sat":12,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":194,"mesid":{"sat":25,"code":14}},{"cn0":191,"mesid":{"sat":11,"code":14}},{"cn0":206,"mesid":{"sat":24,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":161,"mesid":{"sat":31,"code":14}},{"cn0":154,"mesid":{"sat":33,"code":14}},{"cn0":200,"mesid":{"sat":25,"code":20}},{"cn0":215,"mesid":{"sat":24,"code":20}},{"cn0":194,"mesid":{"sat":11,"code":20}},{"cn0":174,"mesid":{"sat":31,"code":20}},{"cn0":206,"mesid":{"sat":12,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":169,"mesid":{"sat":33,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}}],"preamble":85,"sender":22963,"msg_type":97,"payload":"BQDWFQC2AgC7HwCnAAAAAAAAGQDbDADQHQDVEgDPAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwLNGQHMDAG8HwGZEgHFHQHDAAAABQHCAAAAAAAAAAAAAAAAZAPWYgOxZgOuZQPQXQPQAAAAagO0aAPLYgSrZgTMXQRCZATIZQTEaAS9AAAAagSvIwzHGgyrIgybGAy8GQydDAy4Ewy4Fgy/AAAADA3RAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADA7EAAAAGQ7CCw6/GA7OAAAAHw6hIQ6aGRTIGBTXCxTCHxSuDBTOAAAAIRSpAAAA","crc":22968} -{"length":51,"text":"GLO L2OF ME 1 [+1204ms] low CN0 too long, dropping","preamble":85,"sender":22963,"msg_type":1025,"payload":"BkdMTyBMMk9GIE1FIDEgWysxMjA0bXNdIGxvdyBDTjAgdG9vIGxvbmcsIGRyb3BwaW5n","crc":27804,"level":6} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"Mgh4Fi8QAAAAAAE=","wn":2098,"tow":271521400,"crc":46916} -{"length":16,"flags":17,"ns":399999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EXgWLxDkBwMZAxkD/oPXFw==","day":25,"tow":271521400,"year":2020,"crc":2195,"minutes":25,"month":3,"seconds":3} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.1341741890337,"preamble":85,"sender":22963,"msg_type":522,"payload":"eBYvEK79tOpl6kJAeoK5GFaSXsD43Vk9WSIxwAECWwQPBg==","lat":37.83123525464485,"tow":271521400,"h_accuracy":513,"crc":19298,"lon":-122.28650491825275} -{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"eBYvEA4AAAAEAAAA7v////EAygIPAg==","n":14,"d":-18,"tow":271521400,"h_accuracy":241,"crc":47961,"e":4} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"eBYvEJsAhwBMAEgAcgAG","tow":271521400,"crc":62392,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"eBYvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271521400,"h_accuracy":0,"crc":59232,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"eBYvEP//","tow":271521400,"crc":58054} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":9,"l2ca_bias":0,"preamble":85,"l2p_bias":0,"sender":22963,"msg_type":117,"payload":"/wAAAAAAAAAA","l1ca_bias":0,"mask":255,"crc":49809,"l1p_bias":0} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgjcFi8QAAAAAAE=","wn":2098,"tow":271521500,"crc":13285} -{"length":16,"flags":17,"ns":499999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EdwWLxDkBwMZAxkD/mTNHQ==","day":25,"tow":271521500,"year":2020,"crc":12916,"minutes":25,"month":3,"seconds":3} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.143107065850316,"preamble":85,"sender":22963,"msg_type":522,"payload":"3BYvEO9cI+tl6kJA57OPGFaSXsBUpyeqoiQxwAECWwQPBg==","lat":37.83123530604086,"tow":271521500,"h_accuracy":513,"crc":640,"lon":-122.28650487931701} -{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"3BYvEPf///8EAAAABgAAAPEAygIPAg==","n":-9,"d":6,"tow":271521500,"h_accuracy":241,"crc":47886,"e":4} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"3BYvEJsAhwBMAEgAcgAG","tow":271521500,"crc":41228,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"3BYvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271521500,"h_accuracy":0,"crc":36889,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"3BYvEP//","tow":271521500,"crc":1359} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MghAFy8QAAAAAAE=","wn":2098,"tow":271521600,"crc":11626} -{"length":16,"flags":17,"ns":599999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EUAXLxDkBwMZAxkD/kXDIw==","day":25,"tow":271521600,"year":2020,"crc":43550,"minutes":25,"month":3,"seconds":3} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.146820229763307,"preamble":85,"sender":22963,"msg_type":522,"payload":"QBcvEAMMretl6kJAQ65vGFaSXsCAObUCliUxwAECWwQPBg==","lat":37.83123537015492,"tow":271521600,"h_accuracy":513,"crc":54157,"lon":-122.28650484949416} -{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"QBcvEAEAAAD5////9v////EAygIPAg==","n":1,"d":-10,"tow":271521600,"h_accuracy":241,"crc":58321,"e":-7} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"QBcvEJsAhwBMAEgAcgAG","tow":271521600,"crc":31746,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"QBcvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271521600,"h_accuracy":0,"crc":48094,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"QBcvEP//","tow":271521600,"crc":27225} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"message_type":4,"length":34,"data":[151,255,127,255,254,127,240,0,127,255,252,255,223,252,127,247,255,127,247,255,238,94,110,170,175,255,240],"preamble":85,"sender":22963,"msg_type":30583,"payload":"gwLFFi8QBJf/f//+f/AAf//8/9/8f/f/f/f/7l5uqq//8A==","tow":271521477,"crc":21060,"sid":{"sat":131,"code":2}} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgikFy8QAAAAAAE=","wn":2098,"tow":271521700,"crc":62994} -{"length":16,"flags":17,"ns":699999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EaQXLxDkBwMZAxkD/ia5KQ==","day":25,"tow":271521700,"year":2020,"crc":22080,"minutes":25,"month":3,"seconds":3} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.15562542837971,"preamble":85,"sender":22963,"msg_type":522,"payload":"pBcvEDO4JOxl6kJA3bM8GFaSXsAdUW0R1ycxwAECWwQPBg==","lat":37.83123542588182,"tow":271521700,"h_accuracy":513,"crc":32745,"lon":-122.28650480201709} -{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"pBcvEAcAAAD8////BQAAAPEAygIPAg==","n":7,"d":5,"tow":271521700,"h_accuracy":241,"crc":61611,"e":-4} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"pBcvEJsAhwBMAEgAcgAG","tow":271521700,"crc":1215,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"pBcvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271521700,"h_accuracy":0,"crc":6653,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"pBcvEP//","tow":271521700,"crc":59328} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MggIGC8QAAAAAAE=","wn":2098,"tow":271521800,"crc":33422} -{"length":16,"flags":17,"ns":799999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EQgYLxDkBwMZAxkD/gevLw==","day":25,"tow":271521800,"year":2020,"crc":49209,"minutes":25,"month":3,"seconds":3} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.163755445051937,"preamble":85,"sender":22963,"msg_type":522,"payload":"CBgvEDSEhexl6kJAhsMOGFaSXsA9Cnng6ykxwAECWwQPBg==","lat":37.831235470956386,"tow":271521800,"h_accuracy":513,"crc":48045,"lon":-122.28650475923322} -{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"CBgvEAcAAAD6//////////EAygIPAg==","n":7,"d":-1,"tow":271521800,"h_accuracy":241,"crc":1687,"e":-6} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"CBgvEJsAhwBMAEgAcgAG","tow":271521800,"crc":59939,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"CBgvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271521800,"h_accuracy":0,"crc":63185,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"CBgvEP//","tow":271521800,"crc":26866} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":237,"states":[{"cn0":214,"mesid":{"sat":5,"code":0}},{"cn0":181,"mesid":{"sat":21,"code":0}},{"cn0":188,"mesid":{"sat":2,"code":0}},{"cn0":168,"mesid":{"sat":31,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":219,"mesid":{"sat":25,"code":0}},{"cn0":208,"mesid":{"sat":12,"code":0}},{"cn0":213,"mesid":{"sat":29,"code":0}},{"cn0":207,"mesid":{"sat":18,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":205,"mesid":{"sat":131,"code":2}},{"cn0":205,"mesid":{"sat":25,"code":1}},{"cn0":187,"mesid":{"sat":12,"code":1}},{"cn0":152,"mesid":{"sat":31,"code":1}},{"cn0":197,"mesid":{"sat":18,"code":1}},{"cn0":195,"mesid":{"sat":29,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":194,"mesid":{"sat":5,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":214,"mesid":{"sat":11,"code":3}},{"cn0":177,"mesid":{"sat":9,"code":3}},{"cn0":174,"mesid":{"sat":20,"code":3}},{"cn0":208,"mesid":{"sat":5,"code":3}},{"cn0":208,"mesid":{"sat":10,"code":3}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":181,"mesid":{"sat":4,"code":3}},{"cn0":203,"mesid":{"sat":21,"code":3}},{"cn0":170,"mesid":{"sat":9,"code":4}},{"cn0":204,"mesid":{"sat":20,"code":4}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":200,"mesid":{"sat":11,"code":4}},{"cn0":196,"mesid":{"sat":5,"code":4}},{"cn0":189,"mesid":{"sat":0,"code":4}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":175,"mesid":{"sat":4,"code":4}},{"cn0":200,"mesid":{"sat":35,"code":12}},{"cn0":171,"mesid":{"sat":26,"code":12}},{"cn0":157,"mesid":{"sat":34,"code":12}},{"cn0":188,"mesid":{"sat":24,"code":12}},{"cn0":157,"mesid":{"sat":25,"code":12}},{"cn0":185,"mesid":{"sat":12,"code":12}},{"cn0":184,"mesid":{"sat":19,"code":12}},{"cn0":192,"mesid":{"sat":22,"code":12}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":209,"mesid":{"sat":12,"code":13}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":197,"mesid":{"sat":12,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":194,"mesid":{"sat":25,"code":14}},{"cn0":190,"mesid":{"sat":11,"code":14}},{"cn0":206,"mesid":{"sat":24,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":161,"mesid":{"sat":31,"code":14}},{"cn0":155,"mesid":{"sat":33,"code":14}},{"cn0":201,"mesid":{"sat":25,"code":20}},{"cn0":215,"mesid":{"sat":24,"code":20}},{"cn0":194,"mesid":{"sat":11,"code":20}},{"cn0":174,"mesid":{"sat":31,"code":20}},{"cn0":206,"mesid":{"sat":12,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":168,"mesid":{"sat":33,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}}],"preamble":85,"sender":22963,"msg_type":97,"payload":"BQDWFQC1AgC8HwCoAAAAAAAAGQDbDADQHQDVEgDPAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwLNGQHNDAG7HwGYEgHFHQHDAAAABQHCAAAAAAAAAAAAAAAACwPWCQOxFAOuBQPQCgPQAAAABAO1FQPLCQSqFATMAAAACwTIBQTEAAS9AAAABASvIwzIGgyrIgydGAy8GQydDAy5Ewy4FgzAAAAADA3RAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADA7FAAAAGQ7CCw6+GA7OAAAAHw6hIQ6bGRTJGBTXCxTCHxSuDBTOAAAAIRSoAAAA","crc":13321} -{"length":128,"preamble":85,"sender":22963,"msg_type":151,"payload":"AgAaHQUAKzUMAFEtFQB9GRkAbUYaAKEBHQChNx8AlQ4EAxUWBQMyIQkDXw4KA3EpCwOYJQwDqgMTAyIHFAMMMRUDlSUMDJQpEwwjIBQMDwIWDEMkGAyCIxkMnQ4aDGcVIgyOESMMIi0LDosyDA4PPBgObDYZDpcpHw5VESEOIA8=","crc":34187,"azel":[{"el":29,"az":26,"sid":{"sat":2,"code":0}},{"el":53,"az":43,"sid":{"sat":5,"code":0}},{"el":45,"az":81,"sid":{"sat":12,"code":0}},{"el":25,"az":125,"sid":{"sat":21,"code":0}},{"el":70,"az":109,"sid":{"sat":25,"code":0}},{"el":1,"az":161,"sid":{"sat":26,"code":0}},{"el":55,"az":161,"sid":{"sat":29,"code":0}},{"el":14,"az":149,"sid":{"sat":31,"code":0}},{"el":22,"az":21,"sid":{"sat":4,"code":3}},{"el":33,"az":50,"sid":{"sat":5,"code":3}},{"el":14,"az":95,"sid":{"sat":9,"code":3}},{"el":41,"az":113,"sid":{"sat":10,"code":3}},{"el":37,"az":152,"sid":{"sat":11,"code":3}},{"el":3,"az":170,"sid":{"sat":12,"code":3}},{"el":7,"az":34,"sid":{"sat":19,"code":3}},{"el":49,"az":12,"sid":{"sat":20,"code":3}},{"el":37,"az":149,"sid":{"sat":21,"code":3}},{"el":41,"az":148,"sid":{"sat":12,"code":12}},{"el":32,"az":35,"sid":{"sat":19,"code":12}},{"el":2,"az":15,"sid":{"sat":20,"code":12}},{"el":36,"az":67,"sid":{"sat":22,"code":12}},{"el":35,"az":130,"sid":{"sat":24,"code":12}},{"el":14,"az":157,"sid":{"sat":25,"code":12}},{"el":21,"az":103,"sid":{"sat":26,"code":12}},{"el":17,"az":142,"sid":{"sat":34,"code":12}},{"el":45,"az":34,"sid":{"sat":35,"code":12}},{"el":50,"az":139,"sid":{"sat":11,"code":14}},{"el":60,"az":15,"sid":{"sat":12,"code":14}},{"el":54,"az":108,"sid":{"sat":24,"code":14}},{"el":41,"az":151,"sid":{"sat":25,"code":14}},{"el":17,"az":85,"sid":{"sat":31,"code":14}},{"el":15,"az":32,"sid":{"sat":33,"code":14}}]} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MghsGC8QAAAAAAE=","wn":2098,"tow":271521900,"crc":58948} -{"length":16,"flags":17,"ns":899999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EWwYLxDkBwMZAxkD/uikNQ==","day":25,"tow":271521900,"year":2020,"crc":3863,"minutes":25,"month":3,"seconds":3} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.173558900590212,"preamble":85,"sender":22963,"msg_type":522,"payload":"bBgvELwt3uxl6kJAhj3bF1aSXsD19ilbbiwxwAECWwQPBg==","lat":37.831235512242955,"tow":271521900,"h_accuracy":513,"crc":26032,"lon":-122.28650471124828} -{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"bBgvEAQAAAAGAAAAHwAAAPEAygIPAg==","n":4,"d":31,"tow":271521900,"h_accuracy":241,"crc":44099,"e":6} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"bBgvEJsAhwBMAEgAcgAG","tow":271521900,"crc":50828,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"bBgvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271521900,"h_accuracy":0,"crc":61031,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"bBgvEP//","tow":271521900,"crc":12619} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":249,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":24,"i":110565504},"flags":15,"cn0":214,"P":1051995663,"D":{"f":95,"i":-187},"lock":15,"sid":{"sat":5,"code":0}},{"L":{"f":28,"i":121809525},"flags":15,"cn0":181,"P":1158979128,"D":{"f":112,"i":2173},"lock":15,"sid":{"sat":21,"code":0}},{"L":{"f":95,"i":123355676},"flags":15,"cn0":188,"P":1173689818,"D":{"f":110,"i":-2479},"lock":15,"sid":{"sat":2,"code":0}},{"L":{"f":117,"i":128741153},"flags":15,"cn0":167,"P":1224931380,"D":{"f":12,"i":-397},"lock":15,"sid":{"sat":31,"code":0}},{"L":{"f":21,"i":107831198},"flags":15,"cn0":219,"P":1025979675,"D":{"f":118,"i":-1130},"lock":15,"sid":{"sat":25,"code":0}},{"L":{"f":25,"i":114119521},"flags":15,"cn0":208,"P":1085811049,"D":{"f":116,"i":-2969},"lock":15,"sid":{"sat":12,"code":0}},{"L":{"f":234,"i":110750517},"flags":15,"cn0":213,"P":1053756052,"D":{"f":32,"i":1484},"lock":15,"sid":{"sat":29,"code":0}},{"L":{"f":175,"i":84024330},"flags":15,"cn0":205,"P":1025979709,"D":{"f":42,"i":-880},"lock":15,"sid":{"sat":25,"code":1}},{"L":{"f":201,"i":88924333},"flags":15,"cn0":188,"P":1085810963,"D":{"f":46,"i":-2313},"lock":15,"sid":{"sat":12,"code":1}},{"L":{"f":79,"i":100317784},"flags":15,"cn0":152,"P":1224931289,"D":{"f":106,"i":-312},"lock":15,"sid":{"sat":31,"code":1}},{"L":{"f":180,"i":86299106},"flags":15,"cn0":195,"P":1053755974,"D":{"f":26,"i":1158},"lock":15,"sid":{"sat":29,"code":1}},{"L":{"f":137,"i":86154967},"flags":15,"cn0":194,"P":1051995581,"D":{"f":252,"i":-147},"lock":15,"sid":{"sat":5,"code":1}},{"L":{"f":41,"i":112928287},"flags":15,"cn0":214,"P":1056649153,"D":{"f":23,"i":1162},"lock":15,"sid":{"sat":11,"code":3}},{"L":{"f":204,"i":123368372},"flags":15,"cn0":177,"P":1155146379,"D":{"f":34,"i":-4405},"lock":15,"sid":{"sat":9,"code":3}}],"payload":"0BgvEAAAAAAyCEAPLrQ+gBiXBhhF/1/WDw8FADieFEV1qkIHHH0IcLUPDxUA2hX1RRxCWgdfUfZuvA8PAgA0+AJJIW+sB3Vz/gynDw8fABs1Jz2eX20GFZb7dtsPDxkAaSm4QGFTzQYZZ/R00A8PDACUCs8+NeuZBurMBSDVDw8dAD01Jz0KHAIFr5D8Ks0PDxkBEym4QK3gTAXJ9/YuvA8PDAHZ9wJJWLr6BU/I/mqYDw8fAUYKzz7i0SQFtIYEGsMPDx0BvS20PteeIgWJbf/8wg8PBQHBL/s+Hya7BimKBBfWDw8LA4si2kS0c1oHzMvuIrEPDwkD","header":{"n_obs":64,"t":{"ns_residual":0,"wn":2098,"tow":271522000}},"crc":43496} -{"length":249,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":249,"i":109779991},"flags":15,"cn0":174,"P":1026470268,"D":{"f":62,"i":-1210},"lock":15,"sid":{"sat":20,"code":3}},{"L":{"f":208,"i":114843210},"flags":15,"cn0":208,"P":1074189547,"D":{"f":163,"i":2193},"lock":15,"sid":{"sat":5,"code":3}},{"L":{"f":25,"i":111627243},"flags":15,"cn0":208,"P":1047049006,"D":{"f":188,"i":-3048},"lock":15,"sid":{"sat":10,"code":3}},{"L":{"f":102,"i":120448763},"flags":15,"cn0":180,"P":1124647501,"D":{"f":122,"i":-1321},"lock":15,"sid":{"sat":4,"code":3}},{"L":{"f":208,"i":113407260},"flags":15,"cn0":202,"P":1059642431,"D":{"f":46,"i":1622},"lock":15,"sid":{"sat":21,"code":3}},{"L":{"f":130,"i":95953188},"flags":15,"cn0":170,"P":1155146495,"D":{"f":152,"i":-3427},"lock":15,"sid":{"sat":9,"code":4}},{"L":{"f":237,"i":85384473},"flags":15,"cn0":204,"P":1026470606,"D":{"f":69,"i":-942},"lock":15,"sid":{"sat":20,"code":4}},{"L":{"f":145,"i":87833122},"flags":15,"cn0":199,"P":1056649415,"D":{"f":5,"i":902},"lock":15,"sid":{"sat":11,"code":4}},{"L":{"f":25,"i":89322501},"flags":15,"cn0":195,"P":1074189842,"D":{"f":155,"i":1706},"lock":15,"sid":{"sat":5,"code":4}},{"L":{"f":196,"i":93682361},"flags":15,"cn0":175,"P":1124647807,"D":{"f":205,"i":-1028},"lock":15,"sid":{"sat":4,"code":4}},{"L":{"f":64,"i":121591534},"flags":15,"cn0":199,"P":1167518497,"D":{"f":87,"i":-1499},"lock":15,"sid":{"sat":35,"code":12}},{"L":{"f":137,"i":129235176},"flags":15,"cn0":171,"P":1240912887,"D":{"f":255,"i":-3009},"lock":15,"sid":{"sat":26,"code":12}},{"L":{"f":106,"i":132928611},"flags":15,"cn0":157,"P":1276376879,"D":{"f":219,"i":2250},"lock":15,"sid":{"sat":34,"code":12}},{"L":{"f":248,"i":125161397},"flags":15,"cn0":188,"P":1201796535,"D":{"f":153,"i":-1305},"lock":15,"sid":{"sat":24,"code":12}}],"payload":"0BgvEAAAAAAyCEF8sS49FxyLBvlG+z6uDw8UA+vUBkBKXtgG0JEIo9APDwUDLrNoPutLpwYZGPS80A8PCgNNwghD++YtB2bX+nq0Dw8EAz/cKD8cdcIG0FYGLsoPDxUD/yLaRCQhuAWCnfKYqg8PCQTOsi49Gd0WBe1S/EXMDw8UBMcw+z4iOjwFkYYDBccPDwsEEtYGQAX0UgUZqgabww8PBQR/wwhDuXqVBcT8+82vDw8EBCHrlkXuVj8HQCX6V8cPDyMM99P2Sej4sweJP/T/qw8PGgwv9xNMY1TsB2rKCNudDw8iDLf1oUe1z3UH+Of6mbwPDxgM","header":{"n_obs":65,"t":{"ns_residual":0,"wn":2098,"tow":271522000}},"crc":62809} -{"length":249,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":206,"i":134661916},"flags":15,"cn0":157,"P":1293020232,"D":{"f":34,"i":1323},"lock":15,"sid":{"sat":25,"code":12}},{"L":{"f":58,"i":121087483},"flags":15,"cn0":184,"P":1162678881,"D":{"f":67,"i":1612},"lock":15,"sid":{"sat":12,"code":12}},{"L":{"f":43,"i":124517196},"flags":15,"cn0":184,"P":1195610878,"D":{"f":212,"i":-293},"lock":15,"sid":{"sat":19,"code":12}},{"L":{"f":134,"i":124685917},"flags":15,"cn0":192,"P":1197230970,"D":{"f":1,"i":2385},"lock":15,"sid":{"sat":22,"code":12}},{"L":{"f":130,"i":93632531},"flags":15,"cn0":209,"P":1162678795,"D":{"f":162,"i":1246},"lock":15,"sid":{"sat":12,"code":13}},{"L":{"f":12,"i":116434103},"flags":15,"cn0":197,"P":1107833625,"D":{"f":107,"i":-1027},"lock":15,"sid":{"sat":12,"code":14}},{"L":{"f":145,"i":132466325},"flags":15,"cn0":193,"P":1260375091,"D":{"f":209,"i":1086},"lock":15,"sid":{"sat":25,"code":14}},{"L":{"f":176,"i":125414357},"flags":15,"cn0":190,"P":1193277868,"D":{"f":81,"i":1046},"lock":15,"sid":{"sat":11,"code":14}},{"L":{"f":159,"i":118427625},"flags":15,"cn0":206,"P":1126801265,"D":{"f":232,"i":-1748},"lock":15,"sid":{"sat":24,"code":14}},{"L":{"f":157,"i":143346363},"flags":15,"cn0":161,"P":1363895277,"D":{"f":10,"i":-3171},"lock":15,"sid":{"sat":31,"code":14}},{"L":{"f":236,"i":144541024},"flags":15,"cn0":155,"P":1375262121,"D":{"f":43,"i":-2139},"lock":15,"sid":{"sat":33,"code":14}},{"L":{"f":243,"i":101500169},"flags":15,"cn0":201,"P":1260375079,"D":{"f":220,"i":830},"lock":15,"sid":{"sat":25,"code":20}},{"L":{"f":41,"i":90743309},"flags":15,"cn0":215,"P":1126801807,"D":{"f":47,"i":-1338},"lock":15,"sid":{"sat":24,"code":20}},{"L":{"f":119,"i":96096693},"flags":15,"cn0":194,"P":1193277686,"D":{"f":182,"i":801},"lock":15,"sid":{"sat":11,"code":20}}],"payload":"0BgvEAAAAAAyCEJI7BFNHMcGCM4rBSKdDw8ZDGESTUX7pTcHOkwGQ7gPDwwM/pJDR0z7awcr2/7UuA8PEwx6S1xHXY5uB4ZRCQHADw8WDAsSTUUTuJQFgt4EotEPDwwNGTMIQrek8AYM/ftrxQ8PDA4zzB9LlUblB5E+BNHBDw8ZDqz5H0fVq3kHsBYEUb4PDwsOcZ8pQ+kPDwefLPnozg8PGA7tY0tRu0qLCJ2d8wqhDw8fDqnV+FFghZ0I7KX3K5sPDyEOJ8wfSwnFDAbzPgPcyQ8PGRSPoSlDDaJoBSnG+i/XDw8YFPb4H0e1UboFdyEDtsIPDwsU","header":{"n_obs":66,"t":{"ns_residual":0,"wn":2098,"tow":271522000}},"crc":2173} -{"length":62,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":143,"i":109836865},"flags":15,"cn0":174,"P":1363895358,"D":{"f":189,"i":-2432},"lock":15,"sid":{"sat":31,"code":20}},{"L":{"f":228,"i":89215771},"flags":15,"cn0":206,"P":1107833468,"D":{"f":24,"i":-787},"lock":15,"sid":{"sat":12,"code":20}},{"L":{"f":103,"i":110752284},"flags":15,"cn0":168,"P":1375262069,"D":{"f":243,"i":-1639},"lock":15,"sid":{"sat":33,"code":20}}],"payload":"0BgvEAAAAAAyCEM+ZEtRQfqLBo+A9r2uDw8fFHwyCEIbU1EF5O38GM4PDwwUddX4URzymQZnmfnzqA8PIRQ=","header":{"n_obs":67,"t":{"ns_residual":0,"wn":2098,"tow":271522000}},"crc":54639} -{"length":9,"l2ca_bias":0,"preamble":85,"l2p_bias":0,"sender":22963,"msg_type":117,"payload":"/wAAAAAAAAAA","l1ca_bias":0,"mask":255,"crc":49809,"l1p_bias":0} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgjQGC8QAAAAAAE=","wn":2098,"tow":271522000,"crc":6372} -{"length":16,"flags":17,"ns":999999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EdAYLxDkBwMZAxkD/smaOw==","day":25,"tow":271522000,"year":2020,"crc":17102,"minutes":25,"month":3,"seconds":3} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.182923755829705,"preamble":85,"sender":22963,"msg_type":522,"payload":"0BgvEM7fKe1l6kJAXgqdF1aSXsA481wX1C4xwAECWwQPBg==","lat":37.83123554749146,"tow":271522000,"h_accuracy":513,"crc":17074,"lon":-122.28650465332018} -{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"0BgvEO7///8OAAAAAgAAAPEAygIPAg==","n":-18,"d":2,"tow":271522000,"h_accuracy":241,"crc":4817,"e":14} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"0BgvEJsAhwBMAEgAcgAG","tow":271522000,"crc":65015,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"0BgvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271522000,"h_accuracy":0,"crc":31483,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"0BgvEP//","tow":271522000,"crc":49412} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":4,"flags":2147616000,"preamble":85,"sender":22963,"msg_type":65535,"payload":"AAUCgA==","crc":40942} -{"length":24,"z":3890655.0240602265,"preamble":85,"sender":22963,"msg_type":72,"payload":"UO0a3iqORMHK1UJhIkRQwc9nFIPvrk1B","crc":2168,"x":-2694229.735196747,"y":-4264073.519704292} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"bWFpbgAAAAAAAAAAAAAAAAAAAAAAAAx1AAA=","name":"main\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":47991,"stack_free":29964,"cpu":0} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"aWRsZQAAAAAAAAAAAAAAAAAAAABmAXwAAAA=","name":"idle\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":15608,"stack_free":124,"cpu":358} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"cnBtc2cAAAAAAAAAAAAAAAAAAAABANwNAAA=","name":"rpmsg\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":58151,"stack_free":3548,"cpu":1} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"U0JQAAAAAAAAAAAAAAAAAAAAAAAAAPz/AAA=","name":"SBP\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":51784,"stack_free":65532,"cpu":0} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"TkFQAAAAAAAAAAAAAAAAAAAAAAAAAASAAAA=","name":"NAP\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":33651,"stack_free":32772,"cpu":0} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"bWFuYWdlIFBWAAAAAAAAAAAAAAAAABQEAAA=","name":"manage PV\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":22620,"stack_free":1044,"cpu":0} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"SU1VAAAAAAAAAAAAAAAAAAAAAAAAAPQHAAA=","name":"IMU\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":14252,"stack_free":2036,"cpu":0} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"SU1VIGF1eAAAAAAAAAAAAAAAAAAAAEwIAAA=","name":"IMU aux\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":18976,"stack_free":2124,"cpu":0} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"bmRiAAAAAAAAAAAAAAAAAAAAAAAAAFAMAAA=","name":"ndb\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":26120,"stack_free":3152,"cpu":0} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"TkFQIFRyYWNraW5nAAAAAAAAAAAcAdR3AAA=","name":"NAP Tracking\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":3951,"stack_free":30676,"cpu":284} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"ZGVjb2RlAAAAAAAAAAAAAAAAAAAHANQGAAA=","name":"decode\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":22929,"stack_free":1748,"cpu":7} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"bWFuYWdlIGFjcQAAAAAAAAAAAAC7AKR3AAA=","name":"manage acq\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":54128,"stack_free":30628,"cpu":187} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"c3lzdGVtIG1vbml0b3IAAAAAAAAAACwGAAA=","name":"system monitor\u0000\u0000\u0000\u0000\u0000\u0000","crc":58531,"stack_free":1580,"cpu":0} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"V2F0Y2hkb2cAAAAAAAAAAAAAAAAAAOQDAAA=","name":"Watchdog\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":44438,"stack_free":996,"cpu":0} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"c3RhcmxpbmcAAAAAAAAAAAAAAACWAPz/AAA=","name":"starling\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":61599,"stack_free":65532,"cpu":150} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"bWVfY2FsY19wdnQAAAAAAAAAAAAJAIwjAAA=","name":"me_calc_pvt\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":57561,"stack_free":9100,"cpu":9} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"UFBTAAAAAAAAAAAAAAAAAAAAAAAAAEgHAAA=","name":"PPS\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":38576,"stack_free":1864,"cpu":0} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"c3BlY3RydW0gYW5hbHl6ZXIAAAAAANQPAAA=","name":"spectrum analyzer\u0000\u0000\u0000","crc":50933,"stack_free":4052,"cpu":0} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"Mgg0GS8QAAAAAAE=","wn":2098,"tow":271522100,"crc":33871} -{"length":16,"flags":17,"ns":99999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"ETQZLxDkBwMZAxkE/uD1BQ==","day":25,"tow":271522100,"year":2020,"crc":61976,"minutes":25,"month":3,"seconds":4} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.18987767239187,"preamble":85,"sender":22963,"msg_type":522,"payload":"NBkvEH2ajO1l6kJAw+hmF1aSXsDnKbnSmzAxwAECWwQPBg==","lat":37.83123559346584,"tow":271522100,"h_accuracy":513,"crc":63322,"lon":-122.2865046029065} -{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"NBkvEAMAAAAOAAAADAAAAPEAygIPAg==","n":3,"d":12,"tow":271522100,"h_accuracy":241,"crc":29165,"e":14} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"NBkvEJsAhwBMAEgAcgAG","tow":271522100,"crc":65067,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"NBkvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271522100,"h_accuracy":0,"crc":3374,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"NBkvEP//","tow":271522100,"crc":59084} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgiYGS8QAAAAAAE=","wn":2098,"tow":271522200,"crc":10513} -{"length":16,"flags":17,"ns":199999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EZgZLxDkBwMZAxkE/sHrCw==","day":25,"tow":271522200,"year":2020,"crc":63405,"minutes":25,"month":3,"seconds":4} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.194233999232754,"preamble":85,"sender":22963,"msg_type":522,"payload":"mBkvEG+p2+1l6kJA13VmF1aSXsDZecJRuTExwAECWwQPBg==","lat":37.83123563028027,"tow":271522200,"h_accuracy":513,"crc":58580,"lon":-122.28650460248842} -{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"mBkvEAQAAADw////9/////EAygIPAg==","n":4,"d":-9,"tow":271522200,"h_accuracy":241,"crc":33570,"e":-16} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"mBkvEJsAhwBMAEgAcgAG","tow":271522200,"crc":35802,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"mBkvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271522200,"h_accuracy":0,"crc":9460,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"mBkvEP//","tow":271522200,"crc":3079} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"Mgj8GS8QAAAAAAE=","wn":2098,"tow":271522300,"crc":19931} -{"length":16,"flags":17,"ns":299999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EfwZLxDkBwMZAxkE/qLhEQ==","day":25,"tow":271522300,"year":2020,"crc":17801,"minutes":25,"month":3,"seconds":4} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.196105420808436,"preamble":85,"sender":22963,"msg_type":522,"payload":"/BkvEBuIMe5l6kJAPrNmF1aSXsDI8AD3MzIxwAECWwQPBg==","lat":37.831235670266516,"tow":271522300,"h_accuracy":513,"crc":37402,"lon":-122.2865046027118} -{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"/BkvEAkAAADu////7v////EAygIPAg==","n":9,"d":-18,"tow":271522300,"h_accuracy":241,"crc":64782,"e":-18} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"/BkvEJsAhwBMAEgAcgAG","tow":271522300,"crc":42869,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"/BkvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271522300,"h_accuracy":0,"crc":15426,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"/BkvEP//","tow":271522300,"crc":21950} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":237,"states":[{"cn0":214,"mesid":{"sat":5,"code":0}},{"cn0":181,"mesid":{"sat":21,"code":0}},{"cn0":187,"mesid":{"sat":2,"code":0}},{"cn0":167,"mesid":{"sat":31,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":218,"mesid":{"sat":25,"code":0}},{"cn0":208,"mesid":{"sat":12,"code":0}},{"cn0":213,"mesid":{"sat":29,"code":0}},{"cn0":206,"mesid":{"sat":18,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":205,"mesid":{"sat":131,"code":2}},{"cn0":205,"mesid":{"sat":25,"code":1}},{"cn0":187,"mesid":{"sat":12,"code":1}},{"cn0":153,"mesid":{"sat":31,"code":1}},{"cn0":197,"mesid":{"sat":18,"code":1}},{"cn0":195,"mesid":{"sat":29,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":194,"mesid":{"sat":5,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":213,"mesid":{"sat":100,"code":3}},{"cn0":177,"mesid":{"sat":98,"code":3}},{"cn0":173,"mesid":{"sat":102,"code":3}},{"cn0":207,"mesid":{"sat":101,"code":3}},{"cn0":207,"mesid":{"sat":93,"code":3}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":180,"mesid":{"sat":106,"code":3}},{"cn0":202,"mesid":{"sat":104,"code":3}},{"cn0":170,"mesid":{"sat":98,"code":4}},{"cn0":204,"mesid":{"sat":102,"code":4}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":199,"mesid":{"sat":100,"code":4}},{"cn0":195,"mesid":{"sat":101,"code":4}},{"cn0":189,"mesid":{"sat":104,"code":4}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":175,"mesid":{"sat":106,"code":4}},{"cn0":199,"mesid":{"sat":35,"code":12}},{"cn0":170,"mesid":{"sat":26,"code":12}},{"cn0":157,"mesid":{"sat":34,"code":12}},{"cn0":187,"mesid":{"sat":24,"code":12}},{"cn0":157,"mesid":{"sat":25,"code":12}},{"cn0":184,"mesid":{"sat":12,"code":12}},{"cn0":184,"mesid":{"sat":19,"code":12}},{"cn0":192,"mesid":{"sat":22,"code":12}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":208,"mesid":{"sat":12,"code":13}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":196,"mesid":{"sat":12,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":193,"mesid":{"sat":25,"code":14}},{"cn0":190,"mesid":{"sat":11,"code":14}},{"cn0":205,"mesid":{"sat":24,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":161,"mesid":{"sat":31,"code":14}},{"cn0":154,"mesid":{"sat":33,"code":14}},{"cn0":201,"mesid":{"sat":25,"code":20}},{"cn0":215,"mesid":{"sat":24,"code":20}},{"cn0":194,"mesid":{"sat":11,"code":20}},{"cn0":174,"mesid":{"sat":31,"code":20}},{"cn0":206,"mesid":{"sat":12,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":168,"mesid":{"sat":33,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}}],"preamble":85,"sender":22963,"msg_type":97,"payload":"BQDWFQC1AgC7HwCnAAAAAAAAGQDaDADQHQDVEgDOAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwLNGQHNDAG7HwGZEgHFHQHDAAAABQHCAAAAAAAAAAAAAAAAZAPVYgOxZgOtZQPPXQPPAAAAagO0aAPKYgSqZgTMAAAAZATHZQTDaAS9AAAAagSvIwzHGgyqIgydGAy7GQydDAy4Ewy4FgzAAAAADA3QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADA7EAAAAGQ7BCw6+GA7NAAAAHw6hIQ6aGRTJGBTXCxTCHxSuDBTOAAAAIRSoAAAA","crc":22082} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MghgGi8QAAAAAAE=","wn":2098,"tow":271522400,"crc":56562} -{"length":16,"flags":17,"ns":399999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EWAaLxDkBwMZAxkE/oPXFw==","day":25,"tow":271522400,"year":2020,"crc":4166,"minutes":25,"month":3,"seconds":4} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.20131708701916,"preamble":85,"sender":22963,"msg_type":522,"payload":"YBovEEsSXu5l6kJAtD07F1aSXsCP30CEiTMxwAECWwQPBg==","lat":37.831235691006974,"tow":271522400,"h_accuracy":513,"crc":11962,"lon":-122.28650456223733} -{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"YBovEPv///8OAAAAGQAAAPEAygIPAg==","n":-5,"d":25,"tow":271522400,"h_accuracy":241,"crc":22809,"e":14} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"YBovEJsAhwBMAEgAcgAG","tow":271522400,"crc":36025,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"YBovEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271522400,"h_accuracy":0,"crc":44104,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"YBovEP//","tow":271522400,"crc":32299} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":9,"l2ca_bias":0,"preamble":85,"l2p_bias":0,"sender":22963,"msg_type":117,"payload":"/wAAAAAAAAAA","l1ca_bias":0,"mask":255,"crc":49809,"l1p_bias":0} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgjEGi8QAAAAAAE=","wn":2098,"tow":271522500,"crc":22611} -{"length":16,"flags":17,"ns":499999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EcQaLxDkBwMZAxkE/mTNHQ==","day":25,"tow":271522500,"year":2020,"crc":10913,"minutes":25,"month":3,"seconds":4} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.2057619724538,"preamble":85,"sender":22963,"msg_type":522,"payload":"xBovENyUm+5l6kJAnn8UF1aSXsAUcw7RrDQxwAECWwQPBg==","lat":37.83123571964981,"tow":271522500,"h_accuracy":513,"crc":9265,"lon":-122.28650452615554} -{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"xBovEAIAAAAFAAAAAwAAAPEAygIPAg==","n":2,"d":3,"tow":271522500,"h_accuracy":241,"crc":26554,"e":5} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"xBovEJsAhwBMAEgAcgAG","tow":271522500,"crc":56845,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"xBovEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271522500,"h_accuracy":0,"crc":56113,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"xBovEP//","tow":271522500,"crc":39330} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MggoGy8QAAAAAAE=","wn":2098,"tow":271522600,"crc":60679} -{"length":16,"flags":17,"ns":599999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"ESgbLxDkBwMZAxkE/kXDIw==","day":25,"tow":271522600,"year":2020,"crc":19292,"minutes":25,"month":3,"seconds":4} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.204817504448357,"preamble":85,"sender":22963,"msg_type":522,"payload":"KBsvECPtr+5l6kJAkFHfFlaSXsAIQYPrbjQxwAECWwQPBg==","lat":37.83123572912361,"tow":271522600,"h_accuracy":513,"crc":10473,"lon":-122.2865044766279} -{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"KBsvEPf///8RAAAA8f////EAygIPAg==","n":-9,"d":-15,"tow":271522600,"h_accuracy":241,"crc":815,"e":17} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"KBsvEJsAhwBMAEgAcgAG","tow":271522600,"crc":64148,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"KBsvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271522600,"h_accuracy":0,"crc":62023,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"KBsvEP//","tow":271522600,"crc":45864} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgiMGy8QAAAAAAE=","wn":2098,"tow":271522700,"crc":27046} -{"length":16,"flags":17,"ns":699999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EYwbLxDkBwMZAxkE/ia5KQ==","day":25,"tow":271522700,"year":2020,"crc":40203,"minutes":25,"month":3,"seconds":4} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.20880591863644,"preamble":85,"sender":22963,"msg_type":522,"payload":"jBsvEKii0O5l6kJAtIbDFlaSXsA3wf9NdDUxwAECWwQPBg==","lat":37.831235744354956,"tow":271522700,"h_accuracy":513,"crc":20436,"lon":-122.28650445074419} -{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"jBsvEAEAAAD8////EgAAAPEAygIPAg==","n":1,"d":18,"tow":271522700,"h_accuracy":241,"crc":58592,"e":-4} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"jBsvEJsAhwBMAEgAcgAG","tow":271522700,"crc":43040,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"jBsvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271522700,"h_accuracy":0,"crc":34110,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"jBsvEP//","tow":271522700,"crc":21665} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"message_type":2,"length":34,"data":[23,255,0,23,255,0,31,254,255,247,255,127,255,255,127,247,255,255,208,1,229,231,85,238,110,229,112],"preamble":85,"sender":22963,"msg_type":30583,"payload":"gwKzGi8QAhf/ABf/AB/+//f/f///f/f//9AB5edV7m7lcA==","tow":271522483,"crc":35215,"sid":{"sat":131,"code":2}} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgjwGy8QAAAAAAE=","wn":2098,"tow":271522800,"crc":30573} -{"length":16,"flags":17,"ns":799999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EfAbLxDkBwMZAxkE/gevLw==","day":25,"tow":271522800,"year":2020,"crc":41102,"minutes":25,"month":3,"seconds":4} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.20962281004414,"preamble":85,"sender":22963,"msg_type":522,"payload":"8BsvEJJ03O5l6kJAVUujFlaSXsCdoinXqTUxwAECWwQPBg==","lat":37.83123574985906,"tow":271522800,"h_accuracy":513,"crc":54508,"lon":-122.28650442072588} -{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"8BsvEA0AAAD6/////P////EAygIPAg==","n":13,"d":-4,"tow":271522800,"h_accuracy":241,"crc":16072,"e":-6} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"8BsvEJsAhwBMAEgAcgAG","tow":271522800,"crc":60736,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"8BsvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271522800,"h_accuracy":0,"crc":32365,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"8BsvEP//","tow":271522800,"crc":6878} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":237,"states":[{"cn0":213,"mesid":{"sat":5,"code":0}},{"cn0":181,"mesid":{"sat":21,"code":0}},{"cn0":187,"mesid":{"sat":2,"code":0}},{"cn0":166,"mesid":{"sat":31,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":218,"mesid":{"sat":25,"code":0}},{"cn0":207,"mesid":{"sat":12,"code":0}},{"cn0":212,"mesid":{"sat":29,"code":0}},{"cn0":206,"mesid":{"sat":18,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":204,"mesid":{"sat":131,"code":2}},{"cn0":204,"mesid":{"sat":25,"code":1}},{"cn0":187,"mesid":{"sat":12,"code":1}},{"cn0":153,"mesid":{"sat":31,"code":1}},{"cn0":197,"mesid":{"sat":18,"code":1}},{"cn0":195,"mesid":{"sat":29,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":194,"mesid":{"sat":5,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":213,"mesid":{"sat":11,"code":3}},{"cn0":176,"mesid":{"sat":9,"code":3}},{"cn0":172,"mesid":{"sat":20,"code":3}},{"cn0":207,"mesid":{"sat":5,"code":3}},{"cn0":207,"mesid":{"sat":10,"code":3}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":180,"mesid":{"sat":4,"code":3}},{"cn0":202,"mesid":{"sat":21,"code":3}},{"cn0":170,"mesid":{"sat":9,"code":4}},{"cn0":204,"mesid":{"sat":20,"code":4}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":199,"mesid":{"sat":11,"code":4}},{"cn0":195,"mesid":{"sat":5,"code":4}},{"cn0":188,"mesid":{"sat":0,"code":4}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":174,"mesid":{"sat":4,"code":4}},{"cn0":199,"mesid":{"sat":35,"code":12}},{"cn0":170,"mesid":{"sat":26,"code":12}},{"cn0":156,"mesid":{"sat":34,"code":12}},{"cn0":187,"mesid":{"sat":24,"code":12}},{"cn0":157,"mesid":{"sat":25,"code":12}},{"cn0":183,"mesid":{"sat":12,"code":12}},{"cn0":184,"mesid":{"sat":19,"code":12}},{"cn0":191,"mesid":{"sat":22,"code":12}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":208,"mesid":{"sat":12,"code":13}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":196,"mesid":{"sat":12,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":193,"mesid":{"sat":25,"code":14}},{"cn0":190,"mesid":{"sat":11,"code":14}},{"cn0":205,"mesid":{"sat":24,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":159,"mesid":{"sat":31,"code":14}},{"cn0":154,"mesid":{"sat":33,"code":14}},{"cn0":200,"mesid":{"sat":25,"code":20}},{"cn0":215,"mesid":{"sat":24,"code":20}},{"cn0":193,"mesid":{"sat":11,"code":20}},{"cn0":174,"mesid":{"sat":31,"code":20}},{"cn0":206,"mesid":{"sat":12,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":168,"mesid":{"sat":33,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}}],"preamble":85,"sender":22963,"msg_type":97,"payload":"BQDVFQC1AgC7HwCmAAAAAAAAGQDaDADPHQDUEgDOAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwLMGQHMDAG7HwGZEgHFHQHDAAAABQHCAAAAAAAAAAAAAAAACwPVCQOwFAOsBQPPCgPPAAAABAO0FQPKCQSqFATMAAAACwTHBQTDAAS8AAAABASuIwzHGgyqIgycGAy7GQydDAy3Ewy4Fgy/AAAADA3QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADA7EAAAAGQ7BCw6+GA7NAAAAHw6fIQ6aGRTIGBTXCxTBHxSuDBTOAAAAIRSoAAAA","crc":52250} -{"length":128,"preamble":85,"sender":22963,"msg_type":151,"payload":"AgAaHQUAKzUMAFEtFQB9GRkAbUYaAKEBHQChNx8AlQ4EAxUWBQMyIQkDXw4KA3EpCwOYJQwDqgMTAyIHFAMMMRUDlSUMDJQpEwwjIBQMDwIWDEMkGAyCIxkMnQ4aDGcVIgyOESMMIi0LDosyDA4PPBgObDYZDpcpHw5VESEOIA8=","crc":34187,"azel":[{"el":29,"az":26,"sid":{"sat":2,"code":0}},{"el":53,"az":43,"sid":{"sat":5,"code":0}},{"el":45,"az":81,"sid":{"sat":12,"code":0}},{"el":25,"az":125,"sid":{"sat":21,"code":0}},{"el":70,"az":109,"sid":{"sat":25,"code":0}},{"el":1,"az":161,"sid":{"sat":26,"code":0}},{"el":55,"az":161,"sid":{"sat":29,"code":0}},{"el":14,"az":149,"sid":{"sat":31,"code":0}},{"el":22,"az":21,"sid":{"sat":4,"code":3}},{"el":33,"az":50,"sid":{"sat":5,"code":3}},{"el":14,"az":95,"sid":{"sat":9,"code":3}},{"el":41,"az":113,"sid":{"sat":10,"code":3}},{"el":37,"az":152,"sid":{"sat":11,"code":3}},{"el":3,"az":170,"sid":{"sat":12,"code":3}},{"el":7,"az":34,"sid":{"sat":19,"code":3}},{"el":49,"az":12,"sid":{"sat":20,"code":3}},{"el":37,"az":149,"sid":{"sat":21,"code":3}},{"el":41,"az":148,"sid":{"sat":12,"code":12}},{"el":32,"az":35,"sid":{"sat":19,"code":12}},{"el":2,"az":15,"sid":{"sat":20,"code":12}},{"el":36,"az":67,"sid":{"sat":22,"code":12}},{"el":35,"az":130,"sid":{"sat":24,"code":12}},{"el":14,"az":157,"sid":{"sat":25,"code":12}},{"el":21,"az":103,"sid":{"sat":26,"code":12}},{"el":17,"az":142,"sid":{"sat":34,"code":12}},{"el":45,"az":34,"sid":{"sat":35,"code":12}},{"el":50,"az":139,"sid":{"sat":11,"code":14}},{"el":60,"az":15,"sid":{"sat":12,"code":14}},{"el":54,"az":108,"sid":{"sat":24,"code":14}},{"el":41,"az":151,"sid":{"sat":25,"code":14}},{"el":17,"az":85,"sid":{"sat":31,"code":14}},{"el":15,"az":32,"sid":{"sat":33,"code":14}}]} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MghUHC8QAAAAAAE=","wn":2098,"tow":271522900,"crc":13524} -{"length":16,"flags":17,"ns":899999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EVQcLxDkBwMZAxkE/uikNQ==","day":25,"tow":271522900,"year":2020,"crc":25021,"minutes":25,"month":3,"seconds":4} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.21362443832571,"preamble":85,"sender":22963,"msg_type":522,"payload":"VBwvEHmRze5l6kJArZB6FlaSXsA8PFgXsDYxwAECWwQPBg==","lat":37.831235742926715,"tow":271522900,"h_accuracy":513,"crc":45854,"lon":-122.28650438279392} -{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"VBwvEP////8CAAAADAAAAPEAygIPAg==","n":-1,"d":12,"tow":271522900,"h_accuracy":241,"crc":17738,"e":2} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"VBwvEJsAhwBMAEgAcgAG","tow":271522900,"crc":53234,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"VBwvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271522900,"h_accuracy":0,"crc":148,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"VBwvEP//","tow":271522900,"crc":39555} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":249,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":8,"i":110565691},"flags":15,"cn0":213,"P":1051997442,"D":{"f":233,"i":-187},"lock":15,"sid":{"sat":5,"code":0}},{"L":{"f":75,"i":121807352},"flags":15,"cn0":181,"P":1158958445,"D":{"f":60,"i":2174},"lock":15,"sid":{"sat":21,"code":0}},{"L":{"f":157,"i":123358154},"flags":15,"cn0":187,"P":1173713404,"D":{"f":253,"i":-2478},"lock":15,"sid":{"sat":2,"code":0}},{"L":{"f":158,"i":128741551},"flags":15,"cn0":167,"P":1224935185,"D":{"f":18,"i":-397},"lock":15,"sid":{"sat":31,"code":0}},{"L":{"f":58,"i":107832328},"flags":15,"cn0":218,"P":1025990424,"D":{"f":212,"i":-1131},"lock":15,"sid":{"sat":25,"code":0}},{"L":{"f":29,"i":114122490},"flags":15,"cn0":208,"P":1085839301,"D":{"f":163,"i":-2969},"lock":15,"sid":{"sat":12,"code":0}},{"L":{"f":11,"i":110749034},"flags":15,"cn0":213,"P":1053741935,"D":{"f":218,"i":1484},"lock":15,"sid":{"sat":29,"code":0}},{"L":{"f":82,"i":84025211},"flags":15,"cn0":204,"P":1025990462,"D":{"f":41,"i":-880},"lock":15,"sid":{"sat":25,"code":1}},{"L":{"f":78,"i":88926647},"flags":15,"cn0":187,"P":1085839202,"D":{"f":169,"i":-2315},"lock":15,"sid":{"sat":12,"code":1}},{"L":{"f":148,"i":100318094},"flags":15,"cn0":153,"P":1224935081,"D":{"f":250,"i":-312},"lock":15,"sid":{"sat":31,"code":1}},{"L":{"f":113,"i":86297950},"flags":15,"cn0":195,"P":1053741868,"D":{"f":249,"i":1155},"lock":15,"sid":{"sat":29,"code":1}},{"L":{"f":51,"i":86155113},"flags":15,"cn0":194,"P":1051997358,"D":{"f":13,"i":-145},"lock":15,"sid":{"sat":5,"code":1}},{"L":{"f":250,"i":112927125},"flags":15,"cn0":213,"P":1056638289,"D":{"f":73,"i":1161},"lock":15,"sid":{"sat":11,"code":3}},{"L":{"f":159,"i":123372779},"flags":15,"cn0":176,"P":1155187636,"D":{"f":13,"i":-4408},"lock":15,"sid":{"sat":9,"code":3}}],"payload":"uBwvEAAAAAAyCEACNbQ+OxmXBghF/+nVDw8FAG1NFEX4oUIHS34IPLUPDxUA/HH1RcpLWgedUvb9uw8PAgARBwNJr3CsB55z/hKnDw8fABhfJz0IZG0GOpX71NoPDxkAxZe4QPpezQYdZ/Sj0A8PDABv084+auWZBgvMBdrVDw8dAD5fJz17HwIFUpD8KcwPDxkBYpe4QLfpTAVO9fapuw8PDAGpBgNJjrv6BZTI/vqZDw8fASzTzj5ezSQFcYME+cMPDx0BrjS0PmmfIgUzb/8Nwg8PBQFRBfs+lSG7BvqJBEnVDw8LA7TD2kTrhFoHn8juDbAPDwkD","header":{"n_obs":64,"t":{"ns_residual":0,"wn":2098,"tow":271523000}},"crc":62077} -{"length":249,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":52,"i":109781202},"flags":15,"cn0":172,"P":1026481619,"D":{"f":250,"i":-1210},"lock":15,"sid":{"sat":20,"code":3}},{"L":{"f":87,"i":114841016},"flags":15,"cn0":207,"P":1074169004,"D":{"f":58,"i":2195},"lock":15,"sid":{"sat":5,"code":3}},{"L":{"f":32,"i":111630290},"flags":15,"cn0":207,"P":1047077571,"D":{"f":148,"i":-3048},"lock":15,"sid":{"sat":10,"code":3}},{"L":{"f":253,"i":120450083},"flags":15,"cn0":181,"P":1124659837,"D":{"f":96,"i":-1322},"lock":15,"sid":{"sat":4,"code":3}},{"L":{"f":83,"i":113405638},"flags":15,"cn0":202,"P":1059627246,"D":{"f":117,"i":1623},"lock":15,"sid":{"sat":21,"code":3}},{"L":{"f":5,"i":95956616},"flags":15,"cn0":170,"P":1155187703,"D":{"f":136,"i":-3428},"lock":15,"sid":{"sat":9,"code":4}},{"L":{"f":55,"i":85385415},"flags":15,"cn0":204,"P":1026481918,"D":{"f":247,"i":-942},"lock":15,"sid":{"sat":20,"code":4}},{"L":{"f":108,"i":87832219},"flags":15,"cn0":199,"P":1056638573,"D":{"f":102,"i":903},"lock":15,"sid":{"sat":11,"code":4}},{"L":{"f":73,"i":89320794},"flags":15,"cn0":194,"P":1074169287,"D":{"f":219,"i":1706},"lock":15,"sid":{"sat":5,"code":4}},{"L":{"f":227,"i":93683388},"flags":15,"cn0":174,"P":1124660109,"D":{"f":17,"i":-1027},"lock":15,"sid":{"sat":4,"code":4}},{"L":{"f":85,"i":121593033},"flags":15,"cn0":199,"P":1167532897,"D":{"f":207,"i":-1500},"lock":15,"sid":{"sat":35,"code":12}},{"L":{"f":246,"i":129238183},"flags":15,"cn0":171,"P":1240941764,"D":{"f":58,"i":-3006},"lock":15,"sid":{"sat":26,"code":12}},{"L":{"f":9,"i":132926362},"flags":15,"cn0":156,"P":1276355287,"D":{"f":140,"i":2248},"lock":15,"sid":{"sat":34,"code":12}},{"L":{"f":152,"i":125162702},"flags":15,"cn0":187,"P":1201809067,"D":{"f":211,"i":-1305},"lock":15,"sid":{"sat":24,"code":12}}],"payload":"uBwvEAAAAAAyCEHT3S490iCLBjRG+/qsDw8UA6yEBkC4VdgGV5MIOs8PDwUDwyJpPtJXpwYgGPSUzw8PCgN98ghDI+wtB/3W+mC1Dw8EA+6gKD/GbsIGU1cGdcoPDxUD98PaRIguuAUFnPKIqg8PCQT+3i49x+AWBTdS/PfMDw8UBG0G+z6bNjwFbIcDZscPDwsEx4UGQFrtUgVJqgbbwg8PBQSN8whDvH6VBeP9+xGuDw8EBGEjl0XJXD8HVST6z8cPDyMMxET3SacEtAf2QvQ6qw8PGgzXohNMmkvsBwnICIycDw8iDKsmokfO1HUHmOf607sPDxgM","header":{"n_obs":65,"t":{"ns_residual":0,"wn":2098,"tow":271523000}},"crc":21509} -{"length":249,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":50,"i":134660594},"flags":15,"cn0":158,"P":1293007566,"D":{"f":176,"i":1321},"lock":15,"sid":{"sat":25,"code":12}},{"L":{"f":5,"i":121085871},"flags":15,"cn0":184,"P":1162663395,"D":{"f":213,"i":1612},"lock":15,"sid":{"sat":12,"code":12}},{"L":{"f":103,"i":124517488},"flags":15,"cn0":184,"P":1195613679,"D":{"f":117,"i":-293},"lock":15,"sid":{"sat":19,"code":12}},{"L":{"f":62,"i":124683531},"flags":15,"cn0":191,"P":1197208063,"D":{"f":194,"i":2386},"lock":15,"sid":{"sat":22,"code":12}},{"L":{"f":218,"i":93631284},"flags":15,"cn0":208,"P":1162663316,"D":{"f":118,"i":1246},"lock":15,"sid":{"sat":12,"code":13}},{"L":{"f":157,"i":116435129},"flags":15,"cn0":196,"P":1107843396,"D":{"f":73,"i":-1026},"lock":15,"sid":{"sat":12,"code":14}},{"L":{"f":123,"i":132465239},"flags":15,"cn0":193,"P":1260364757,"D":{"f":130,"i":1086},"lock":15,"sid":{"sat":25,"code":14}},{"L":{"f":109,"i":125413310},"flags":15,"cn0":190,"P":1193267905,"D":{"f":167,"i":1046},"lock":15,"sid":{"sat":11,"code":14}},{"L":{"f":165,"i":118429371},"flags":15,"cn0":205,"P":1126817880,"D":{"f":249,"i":-1747},"lock":15,"sid":{"sat":24,"code":14}},{"L":{"f":73,"i":143349535},"flags":15,"cn0":160,"P":1363925466,"D":{"f":149,"i":-3172},"lock":15,"sid":{"sat":31,"code":14}},{"L":{"f":136,"i":144543164},"flags":15,"cn0":154,"P":1375282491,"D":{"f":114,"i":-2136},"lock":15,"sid":{"sat":33,"code":14}},{"L":{"f":191,"i":101499337},"flags":15,"cn0":200,"P":1260364747,"D":{"f":98,"i":832},"lock":15,"sid":{"sat":25,"code":20}},{"L":{"f":6,"i":90744647},"flags":15,"cn0":215,"P":1126818420,"D":{"f":250,"i":-1339},"lock":15,"sid":{"sat":24,"code":20}},{"L":{"f":6,"i":96095891},"flags":15,"cn0":193,"P":1193267722,"D":{"f":47,"i":803},"lock":15,"sid":{"sat":11,"code":20}}],"payload":"uBwvEAAAAAAyCELOuhFN8sEGCDIpBbCeDw8ZDOPVTEWvnzcHBUwG1bgPDwwM751DR3D8awdn2/51uA8PEwz/8VtHC4VuBz5SCcK/Dw8WDJTVTEU0s5QF2t4EdtAPDwwNRFkIQrmo8Aad/vtJxA8PDA7Vox9LV0LlB3s+BILBDw8ZDsHSH0e+p3kHbRYEp74PDwsOWOApQ7sWDwelLfn5zQ8PGA7a2UtRH1eLCEmc85WgDw8fDjsl+VG8jZ0IiKj3cpoPDyEOy6MfS8nBDAa/QANiyA8PGRR04ilDR6doBQbF+vrXDw8YFArSH0eTTroFBiMDL8EPDwsU","header":{"n_obs":66,"t":{"ns_residual":0,"wn":2098,"tow":271523000}},"crc":31837} -{"length":62,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":209,"i":109839295},"flags":15,"cn0":174,"P":1363925546,"D":{"f":142,"i":-2430},"lock":15,"sid":{"sat":31,"code":20}},{"L":{"f":124,"i":89216558},"flags":15,"cn0":206,"P":1107843236,"D":{"f":12,"i":-786},"lock":15,"sid":{"sat":12,"code":20}},{"L":{"f":206,"i":110753923},"flags":15,"cn0":169,"P":1375282430,"D":{"f":221,"i":-1641},"lock":15,"sid":{"sat":33,"code":20}}],"payload":"uBwvEAAAAAAyCEMq2ktRvwOMBtGC9o6uDw8fFKRYCEIuVlEFfO78DM4PDwwU/iT5UYP4mQbOl/ndqQ8PIRQ=","header":{"n_obs":67,"t":{"ns_residual":0,"wn":2098,"tow":271523000}},"crc":17267} -{"length":9,"l2ca_bias":0,"preamble":85,"l2p_bias":0,"sender":22963,"msg_type":117,"payload":"/wAAAAAAAAAA","l1ca_bias":0,"mask":255,"crc":49809,"l1p_bias":0} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"Mgi4HC8QAAAAAAE=","wn":2098,"tow":271523000,"crc":50771} -{"length":16,"flags":17,"ns":999999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EbgcLxDkBwMZAxkE/smaOw==","day":25,"tow":271523000,"year":2020,"crc":18663,"minutes":25,"month":3,"seconds":4} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.215534864913376,"preamble":85,"sender":22963,"msg_type":522,"payload":"uBwvEEoCrO5l6kJAJ3dfFlaSXsBj8/tKLTcxwAECWwQPBg==","lat":37.83123572729944,"tow":271523000,"h_accuracy":513,"crc":6366,"lon":-122.28650435755536} -{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"uBwvEPv////6////8f////EAygIPAg==","n":-5,"d":-15,"tow":271523000,"h_accuracy":241,"crc":6773,"e":-6} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"uBwvEJsAhwBMAEgAcgAG","tow":271523000,"crc":36874,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"uBwvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271523000,"h_accuracy":0,"crc":64532,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"uBwvEP//","tow":271523000,"crc":6744} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":4,"flags":2147616000,"preamble":85,"sender":22963,"msg_type":65535,"payload":"AAUCgA==","crc":40942} -{"length":24,"z":3890655.0240602265,"preamble":85,"sender":22963,"msg_type":72,"payload":"UO0a3iqORMHK1UJhIkRQwc9nFIPvrk1B","crc":2168,"x":-2694229.735196747,"y":-4264073.519704292} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MggcHS8QAAAAAAE=","wn":2098,"tow":271523100,"crc":1313} -{"length":16,"flags":17,"ns":99999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"ERwdLxDkBwMZAxkF/uD1BQ==","day":25,"tow":271523100,"year":2020,"crc":8125,"minutes":25,"month":3,"seconds":5} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.216968234147515,"preamble":85,"sender":22963,"msg_type":522,"payload":"HB0vEMx8fu5l6kJAs0cuFlaSXsA47+06izcxwAECWwQPBg==","lat":37.831235706101864,"tow":271523100,"h_accuracy":513,"crc":19138,"lon":-122.28650431174792} -{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"HB0vEPn///8QAAAAAAAAAPEAygIPAg==","n":-7,"d":0,"tow":271523100,"h_accuracy":241,"crc":52458,"e":16} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"HB0vEJsAhwBMAEgAcgAG","tow":271523100,"crc":47583,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"HB0vEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271523100,"h_accuracy":0,"crc":24219,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"HB0vEP//","tow":271523100,"crc":22400} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgiAHS8QAAAAAAE=","wn":2098,"tow":271523200,"crc":23677} -{"length":16,"flags":17,"ns":199999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EYAdLxDkBwMZAxkF/sHrCw==","day":25,"tow":271523200,"year":2020,"crc":51606,"minutes":25,"month":3,"seconds":5} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.216038200941558,"preamble":85,"sender":22963,"msg_type":522,"payload":"gB0vECq4fu5l6kJA9bIiFlaSXsANu49HTjcxwAECWwQPBg==","lat":37.83123570620985,"tow":271523200,"h_accuracy":513,"crc":29817,"lon":-122.28650430096225} -{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"gB0vEA0AAAD8////BAAAAPEAygIPAg==","n":13,"d":4,"tow":271523200,"h_accuracy":241,"crc":10133,"e":-4} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"gB0vEJsAhwBMAEgAcgAG","tow":271523200,"crc":8112,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"gB0vEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271523200,"h_accuracy":0,"crc":41130,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"gB0vEP//","tow":271523200,"crc":37575} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgjkHS8QAAAAAAE=","wn":2098,"tow":271523300,"crc":14519} -{"length":16,"flags":17,"ns":299999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EeQdLxDkBwMZAxkF/qLhEQ==","day":25,"tow":271523300,"year":2020,"crc":31666,"minutes":25,"month":3,"seconds":5} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.21552081877759,"preamble":85,"sender":22963,"msg_type":522,"payload":"5B0vEG8XVu5l6kJAoWMGFlaSXsDEQVRfLDcxwAECWwQPBg==","lat":37.831235687291034,"tow":271523300,"h_accuracy":513,"crc":10686,"lon":-122.28650427459662} -{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"5B0vEPj///8GAAAAAAAAAPEAygIPAg==","n":-8,"d":0,"tow":271523300,"h_accuracy":241,"crc":6092,"e":6} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"5B0vEJsAhwBMAEgAcgAG","tow":271523300,"crc":13087,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"5B0vEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271523300,"h_accuracy":0,"crc":47132,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"5B0vEP//","tow":271523300,"crc":52094} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":237,"states":[{"cn0":213,"mesid":{"sat":5,"code":0}},{"cn0":181,"mesid":{"sat":21,"code":0}},{"cn0":186,"mesid":{"sat":2,"code":0}},{"cn0":166,"mesid":{"sat":31,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":218,"mesid":{"sat":25,"code":0}},{"cn0":208,"mesid":{"sat":12,"code":0}},{"cn0":213,"mesid":{"sat":29,"code":0}},{"cn0":206,"mesid":{"sat":18,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":205,"mesid":{"sat":131,"code":2}},{"cn0":204,"mesid":{"sat":25,"code":1}},{"cn0":187,"mesid":{"sat":12,"code":1}},{"cn0":152,"mesid":{"sat":31,"code":1}},{"cn0":197,"mesid":{"sat":18,"code":1}},{"cn0":195,"mesid":{"sat":29,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":194,"mesid":{"sat":5,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":213,"mesid":{"sat":100,"code":3}},{"cn0":176,"mesid":{"sat":98,"code":3}},{"cn0":173,"mesid":{"sat":102,"code":3}},{"cn0":207,"mesid":{"sat":101,"code":3}},{"cn0":207,"mesid":{"sat":93,"code":3}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":181,"mesid":{"sat":106,"code":3}},{"cn0":202,"mesid":{"sat":104,"code":3}},{"cn0":170,"mesid":{"sat":98,"code":4}},{"cn0":204,"mesid":{"sat":102,"code":4}},{"cn0":83,"mesid":{"sat":93,"code":4}},{"cn0":200,"mesid":{"sat":100,"code":4}},{"cn0":195,"mesid":{"sat":101,"code":4}},{"cn0":189,"mesid":{"sat":104,"code":4}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":174,"mesid":{"sat":106,"code":4}},{"cn0":199,"mesid":{"sat":35,"code":12}},{"cn0":171,"mesid":{"sat":26,"code":12}},{"cn0":156,"mesid":{"sat":34,"code":12}},{"cn0":187,"mesid":{"sat":24,"code":12}},{"cn0":158,"mesid":{"sat":25,"code":12}},{"cn0":184,"mesid":{"sat":12,"code":12}},{"cn0":183,"mesid":{"sat":19,"code":12}},{"cn0":192,"mesid":{"sat":22,"code":12}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":208,"mesid":{"sat":12,"code":13}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":197,"mesid":{"sat":12,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":193,"mesid":{"sat":25,"code":14}},{"cn0":190,"mesid":{"sat":11,"code":14}},{"cn0":205,"mesid":{"sat":24,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":160,"mesid":{"sat":31,"code":14}},{"cn0":154,"mesid":{"sat":33,"code":14}},{"cn0":200,"mesid":{"sat":25,"code":20}},{"cn0":215,"mesid":{"sat":24,"code":20}},{"cn0":193,"mesid":{"sat":11,"code":20}},{"cn0":174,"mesid":{"sat":31,"code":20}},{"cn0":206,"mesid":{"sat":12,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":168,"mesid":{"sat":33,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}}],"preamble":85,"sender":22963,"msg_type":97,"payload":"BQDVFQC1AgC6HwCmAAAAAAAAGQDaDADQHQDVEgDOAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwLNGQHMDAG7HwGYEgHFHQHDAAAABQHCAAAAAAAAAAAAAAAAZAPVYgOwZgOtZQPPXQPPAAAAagO1aAPKYgSqZgTMXQRTZATIZQTDaAS9AAAAagSuIwzHGgyrIgycGAy7GQyeDAy4Ewy3FgzAAAAADA3QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADA7FAAAAGQ7BCw6+GA7NAAAAHw6gIQ6aGRTIGBTXCxTBHxSuDBTOAAAAIRSoAAAA","crc":44062} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MghIHi8QAAAAAAE=","wn":2098,"tow":271523400,"crc":23964} -{"length":16,"flags":17,"ns":399999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EUgeLxDkBwMZAxkF/oPXFw==","day":25,"tow":271523400,"year":2020,"crc":64995,"minutes":25,"month":3,"seconds":5} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.219468160026842,"preamble":85,"sender":22963,"msg_type":522,"payload":"SB4vEAJqQ+5l6kJAuT/nFVaSXsAe1LkQLzgxwAECWwQPBg==","lat":37.83123567859367,"tow":271523400,"h_accuracy":513,"crc":45474,"lon":-122.286504245595} -{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"SB4vEAgAAAAEAAAAGAAAAPEAygIPAg==","n":8,"d":24,"tow":271523400,"h_accuracy":241,"crc":22057,"e":4} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"SB4vEJsAhwBMAEgAcgAG","tow":271523400,"crc":52045,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"SB4vEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271523400,"h_accuracy":0,"crc":65533,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"SB4vEP//","tow":271523400,"crc":53095} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":9,"l2ca_bias":0,"preamble":85,"l2p_bias":0,"sender":22963,"msg_type":117,"payload":"/wAAAAAAAAAA","l1ca_bias":0,"mask":255,"crc":49809,"l1p_bias":0} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgisHi8QAAAAAAE=","wn":2098,"tow":271523500,"crc":34532} -{"length":16,"flags":17,"ns":499999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EaweLxDkBwMZAxkF/mTNHQ==","day":25,"tow":271523500,"year":2020,"crc":60685,"minutes":25,"month":3,"seconds":5} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.21646376745587,"preamble":85,"sender":22963,"msg_type":522,"payload":"rB4vEJmfI+5l6kJASRrgFVaSXsDu/WErajcxwAECWwQPBg==","lat":37.83123566378999,"tow":271523500,"h_accuracy":513,"crc":1747,"lon":-122.28650423893954} -{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"rB4vEAAAAAD/////5/////EAygIPAg==","n":0,"d":-25,"tow":271523500,"h_accuracy":241,"crc":1364,"e":-1} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"rB4vEJsAhwBMAEgAcgAG","tow":271523500,"crc":46064,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"rB4vEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271523500,"h_accuracy":0,"crc":24030,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"rB4vEP//","tow":271523500,"crc":17150} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MggQHy8QAAAAAAE=","wn":2098,"tow":271523600,"crc":16279} -{"length":16,"flags":17,"ns":599999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"ERAfLxDkBwMZAxkF/kXDIw==","day":25,"tow":271523600,"year":2020,"crc":59507,"minutes":25,"month":3,"seconds":5} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.2222249625184,"preamble":85,"sender":22963,"msg_type":522,"payload":"EB8vEHpx6e1l6kJAUC7RFVaSXsARXzK84zgxwAECWwQPBg==","lat":37.83123563669774,"tow":271523600,"h_accuracy":513,"crc":28050,"lon":-122.28650422504256} -{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"EB8vEPf////8////HQAAAPEAygIPAg==","n":-9,"d":29,"tow":271523600,"h_accuracy":241,"crc":1316,"e":-4} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"EB8vEJsAhwBMAEgAcgAG","tow":271523600,"crc":62442,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"EB8vEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271523600,"h_accuracy":0,"crc":7348,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"EB8vEP//","tow":271523600,"crc":6368} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"Mgh0Hy8QAAAAAAE=","wn":2098,"tow":271523700,"crc":23389} -{"length":16,"flags":17,"ns":699999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EXQfLxDkBwMZAxkF/ia5KQ==","day":25,"tow":271523700,"year":2020,"crc":16447,"minutes":25,"month":3,"seconds":5} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.222607913061974,"preamble":85,"sender":22963,"msg_type":522,"payload":"dB8vEPl5xe1l6kJAvGWzFVaSXsCXbgrV/DgxwAECWwQPBg==","lat":37.83123561994939,"tow":271523700,"h_accuracy":513,"crc":57843,"lon":-122.28650419730451} -{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"dB8vEAIAAAAJAAAA8f////EAygIPAg==","n":2,"d":-15,"tow":271523700,"h_accuracy":241,"crc":63099,"e":9} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"dB8vEJsAhwBMAEgAcgAG","tow":271523700,"crc":57157,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"dB8vEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271523700,"h_accuracy":0,"crc":1026,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"dB8vEP//","tow":271523700,"crc":16729} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"message_type":63,"length":34,"data":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"preamble":85,"sender":22963,"msg_type":30583,"payload":"gwKTHi8QPwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA==","tow":271523475,"crc":58793,"sid":{"sat":131,"code":2}} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgjYHy8QAAAAAAE=","wn":2098,"tow":271523800,"crc":62979} -{"length":16,"flags":17,"ns":799999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EdgfLxDkBwMZAxkF/gevLw==","day":25,"tow":271523800,"year":2020,"crc":19755,"minutes":25,"month":3,"seconds":5} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.227271329084864,"preamble":85,"sender":22963,"msg_type":522,"payload":"2B8vEEN6kO1l6kJA+eioFVaSXsDqvC10LjoxwAECWwQPBg==","lat":37.83123559526987,"tow":271523800,"h_accuracy":513,"crc":26048,"lon":-122.2865041875374} -{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"2B8vEPn////+/////f////EAygIPAg==","n":-7,"d":-3,"tow":271523800,"h_accuracy":241,"crc":8481,"e":-2} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"2B8vEJsAhwBMAEgAcgAG","tow":271523800,"crc":43700,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"2B8vEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271523800,"h_accuracy":0,"crc":11736,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"2B8vEP//","tow":271523800,"crc":43922} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":237,"states":[{"cn0":213,"mesid":{"sat":5,"code":0}},{"cn0":180,"mesid":{"sat":21,"code":0}},{"cn0":186,"mesid":{"sat":2,"code":0}},{"cn0":165,"mesid":{"sat":31,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":218,"mesid":{"sat":25,"code":0}},{"cn0":207,"mesid":{"sat":12,"code":0}},{"cn0":212,"mesid":{"sat":29,"code":0}},{"cn0":206,"mesid":{"sat":18,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":205,"mesid":{"sat":131,"code":2}},{"cn0":204,"mesid":{"sat":25,"code":1}},{"cn0":187,"mesid":{"sat":12,"code":1}},{"cn0":152,"mesid":{"sat":31,"code":1}},{"cn0":197,"mesid":{"sat":18,"code":1}},{"cn0":195,"mesid":{"sat":29,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":194,"mesid":{"sat":5,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":213,"mesid":{"sat":11,"code":3}},{"cn0":176,"mesid":{"sat":9,"code":3}},{"cn0":173,"mesid":{"sat":20,"code":3}},{"cn0":208,"mesid":{"sat":5,"code":3}},{"cn0":208,"mesid":{"sat":10,"code":3}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":182,"mesid":{"sat":4,"code":3}},{"cn0":203,"mesid":{"sat":21,"code":3}},{"cn0":170,"mesid":{"sat":9,"code":4}},{"cn0":204,"mesid":{"sat":20,"code":4}},{"cn0":69,"mesid":{"sat":10,"code":4}},{"cn0":200,"mesid":{"sat":11,"code":4}},{"cn0":195,"mesid":{"sat":5,"code":4}},{"cn0":188,"mesid":{"sat":0,"code":4}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":175,"mesid":{"sat":4,"code":4}},{"cn0":199,"mesid":{"sat":35,"code":12}},{"cn0":171,"mesid":{"sat":26,"code":12}},{"cn0":157,"mesid":{"sat":34,"code":12}},{"cn0":187,"mesid":{"sat":24,"code":12}},{"cn0":158,"mesid":{"sat":25,"code":12}},{"cn0":184,"mesid":{"sat":12,"code":12}},{"cn0":184,"mesid":{"sat":19,"code":12}},{"cn0":192,"mesid":{"sat":22,"code":12}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":208,"mesid":{"sat":12,"code":13}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":196,"mesid":{"sat":12,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":192,"mesid":{"sat":25,"code":14}},{"cn0":189,"mesid":{"sat":11,"code":14}},{"cn0":205,"mesid":{"sat":24,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":159,"mesid":{"sat":31,"code":14}},{"cn0":154,"mesid":{"sat":33,"code":14}},{"cn0":201,"mesid":{"sat":25,"code":20}},{"cn0":215,"mesid":{"sat":24,"code":20}},{"cn0":193,"mesid":{"sat":11,"code":20}},{"cn0":174,"mesid":{"sat":31,"code":20}},{"cn0":206,"mesid":{"sat":12,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":169,"mesid":{"sat":33,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}}],"preamble":85,"sender":22963,"msg_type":97,"payload":"BQDVFQC0AgC6HwClAAAAAAAAGQDaDADPHQDUEgDOAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwLNGQHMDAG7HwGYEgHFHQHDAAAABQHCAAAAAAAAAAAAAAAACwPVCQOwFAOtBQPQCgPQAAAABAO2FQPLCQSqFATMCgRFCwTIBQTDAAS8AAAABASvIwzHGgyrIgydGAy7GQyeDAy4Ewy4FgzAAAAADA3QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADA7EAAAAGQ7ACw69GA7NAAAAHw6fIQ6aGRTJGBTXCxTBHxSuDBTOAAAAIRSpAAAA","crc":54534} -{"length":128,"preamble":85,"sender":22963,"msg_type":151,"payload":"AgAaHQUAKzUMAFEtFQB9GRkAbUYaAKEBHQChNx8AlQ4EAxUWBQMyIQkDXw4KA3EpCwOYJQwDqgMTAyIHFAMMMRUDlSUMDJQpEwwjIBQMDwIWDEMkGAyCIxkMnQ4aDGcVIgyOESMMIi0LDosyDA4PPBgObDYZDpcpHw5VESEOIA8=","crc":34187,"azel":[{"el":29,"az":26,"sid":{"sat":2,"code":0}},{"el":53,"az":43,"sid":{"sat":5,"code":0}},{"el":45,"az":81,"sid":{"sat":12,"code":0}},{"el":25,"az":125,"sid":{"sat":21,"code":0}},{"el":70,"az":109,"sid":{"sat":25,"code":0}},{"el":1,"az":161,"sid":{"sat":26,"code":0}},{"el":55,"az":161,"sid":{"sat":29,"code":0}},{"el":14,"az":149,"sid":{"sat":31,"code":0}},{"el":22,"az":21,"sid":{"sat":4,"code":3}},{"el":33,"az":50,"sid":{"sat":5,"code":3}},{"el":14,"az":95,"sid":{"sat":9,"code":3}},{"el":41,"az":113,"sid":{"sat":10,"code":3}},{"el":37,"az":152,"sid":{"sat":11,"code":3}},{"el":3,"az":170,"sid":{"sat":12,"code":3}},{"el":7,"az":34,"sid":{"sat":19,"code":3}},{"el":49,"az":12,"sid":{"sat":20,"code":3}},{"el":37,"az":149,"sid":{"sat":21,"code":3}},{"el":41,"az":148,"sid":{"sat":12,"code":12}},{"el":32,"az":35,"sid":{"sat":19,"code":12}},{"el":2,"az":15,"sid":{"sat":20,"code":12}},{"el":36,"az":67,"sid":{"sat":22,"code":12}},{"el":35,"az":130,"sid":{"sat":24,"code":12}},{"el":14,"az":157,"sid":{"sat":25,"code":12}},{"el":21,"az":103,"sid":{"sat":26,"code":12}},{"el":17,"az":142,"sid":{"sat":34,"code":12}},{"el":45,"az":34,"sid":{"sat":35,"code":12}},{"el":50,"az":139,"sid":{"sat":11,"code":14}},{"el":60,"az":15,"sid":{"sat":12,"code":14}},{"el":54,"az":108,"sid":{"sat":24,"code":14}},{"el":41,"az":151,"sid":{"sat":25,"code":14}},{"el":17,"az":85,"sid":{"sat":31,"code":14}},{"el":15,"az":32,"sid":{"sat":33,"code":14}}]} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"Mgg8IC8QAAAAAAE=","wn":2098,"tow":271523900,"crc":45669} -{"length":16,"flags":17,"ns":899999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"ETwgLxDkBwMZAxkF/uikNQ==","day":25,"tow":271523900,"year":2020,"crc":5698,"minutes":25,"month":3,"seconds":5} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.23245259429677,"preamble":85,"sender":22963,"msg_type":522,"payload":"PCAvENQFeO1l6kJAeKmZFVaSXsD/X2IDgjsxwAECWwQPBg==","lat":37.831235583882204,"tow":271523900,"h_accuracy":513,"crc":61107,"lon":-122.28650417333654} -{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"PCAvEAQAAAAFAAAACgAAAPEAygIPAg==","n":4,"d":10,"tow":271523900,"h_accuracy":241,"crc":21274,"e":5} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"PCAvEJsAhwBMAEgAcgAG","tow":271523900,"crc":4700,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"PCAvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271523900,"h_accuracy":0,"crc":51835,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"PCAvEP//","tow":271523900,"crc":20252} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":249,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":100,"i":110565878},"flags":15,"cn0":213,"P":1051999222,"D":{"f":92,"i":-188},"lock":15,"sid":{"sat":5,"code":0}},{"L":{"f":119,"i":121805179},"flags":15,"cn0":180,"P":1158937768,"D":{"f":135,"i":2171},"lock":15,"sid":{"sat":21,"code":0}},{"L":{"f":158,"i":123360632},"flags":15,"cn0":186,"P":1173736995,"D":{"f":92,"i":-2478},"lock":15,"sid":{"sat":2,"code":0}},{"L":{"f":7,"i":128741950},"flags":15,"cn0":165,"P":1224938948,"D":{"f":132,"i":-401},"lock":15,"sid":{"sat":31,"code":0}},{"L":{"f":188,"i":107833458},"flags":15,"cn0":218,"P":1026001182,"D":{"f":5,"i":-1132},"lock":15,"sid":{"sat":25,"code":0}},{"L":{"f":69,"i":114125459},"flags":15,"cn0":208,"P":1085867553,"D":{"f":173,"i":-2972},"lock":15,"sid":{"sat":12,"code":0}},{"L":{"f":33,"i":110747550},"flags":15,"cn0":212,"P":1053727813,"D":{"f":215,"i":1483},"lock":15,"sid":{"sat":29,"code":0}},{"L":{"f":58,"i":84026092},"flags":15,"cn0":204,"P":1026001210,"D":{"f":136,"i":-882},"lock":15,"sid":{"sat":25,"code":1}},{"L":{"f":234,"i":88928960},"flags":15,"cn0":187,"P":1085867455,"D":{"f":26,"i":-2314},"lock":15,"sid":{"sat":12,"code":1}},{"L":{"f":5,"i":100318405},"flags":15,"cn0":153,"P":1224938886,"D":{"f":192,"i":-313},"lock":15,"sid":{"sat":31,"code":1}},{"L":{"f":34,"i":86296794},"flags":15,"cn0":195,"P":1053727746,"D":{"f":44,"i":1155},"lock":15,"sid":{"sat":29,"code":1}},{"L":{"f":46,"i":86155259},"flags":15,"cn0":194,"P":1051999145,"D":{"f":210,"i":-148},"lock":15,"sid":{"sat":5,"code":1}},{"L":{"f":101,"i":112925965},"flags":15,"cn0":213,"P":1056627427,"D":{"f":80,"i":1159},"lock":15,"sid":{"sat":11,"code":3}},{"L":{"f":67,"i":123377186},"flags":15,"cn0":177,"P":1155228888,"D":{"f":102,"i":-4409},"lock":15,"sid":{"sat":9,"code":3}}],"payload":"oCAvEAAAAAAyCED2O7Q+9hmXBmRE/1zVDw8FAKj8E0V7mUIHd3sIh7QPDxUAI871RXhVWgeeUvZcug8PAgDEFQNJPnKsBwdv/oSlDw8fAB6JJz1yaG0GvJT7BdoPDxkAIQa5QJNqzQZFZPSt0A8PDABFnM4+nt+ZBiHLBdfUDw8dADqJJz3sIgIFOo78iMwPDxkBvwW5QMDyTAXq9vYauw8PDAGGFQNJxbz6BQXH/sCZDw8fAQKczj7ayCQFIoMELMMPDx0BqTu0PvufIgUubP/Swg8PBQHj2vo+DR27BmWHBFDVDw8LA9hk20QilloHQ8fuZrEPDwkD","header":{"n_obs":64,"t":{"ns_residual":0,"wn":2098,"tow":271524000}},"crc":57299} -{"length":249,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":82,"i":109782412},"flags":15,"cn0":173,"P":1026492912,"D":{"f":117,"i":-1212},"lock":15,"sid":{"sat":20,"code":3}},{"L":{"f":70,"i":114838822},"flags":15,"cn0":208,"P":1074148483,"D":{"f":156,"i":2192},"lock":15,"sid":{"sat":5,"code":3}},{"L":{"f":123,"i":111633337},"flags":15,"cn0":208,"P":1047106166,"D":{"f":53,"i":-3050},"lock":15,"sid":{"sat":10,"code":3}},{"L":{"f":26,"i":120451405},"flags":15,"cn0":182,"P":1124672221,"D":{"f":232,"i":-1324},"lock":15,"sid":{"sat":4,"code":3}},{"L":{"f":190,"i":113404015},"flags":15,"cn0":202,"P":1059612090,"D":{"f":73,"i":1621},"lock":15,"sid":{"sat":21,"code":3}},{"L":{"f":102,"i":95960043},"flags":15,"cn0":170,"P":1155229014,"D":{"f":53,"i":-3429},"lock":15,"sid":{"sat":9,"code":4}},{"L":{"f":108,"i":85386356},"flags":15,"cn0":204,"P":1026493250,"D":{"f":196,"i":-943},"lock":15,"sid":{"sat":20,"code":4}},{"L":{"f":190,"i":87831316},"flags":15,"cn0":200,"P":1056627714,"D":{"f":21,"i":901},"lock":15,"sid":{"sat":11,"code":4}},{"L":{"f":200,"i":89319087},"flags":15,"cn0":195,"P":1074148782,"D":{"f":74,"i":1705},"lock":15,"sid":{"sat":5,"code":4}},{"L":{"f":108,"i":93684416},"flags":15,"cn0":175,"P":1124672433,"D":{"f":135,"i":-1028},"lock":15,"sid":{"sat":4,"code":4}},{"L":{"f":71,"i":121594532},"flags":15,"cn0":199,"P":1167547284,"D":{"f":5,"i":-1500},"lock":15,"sid":{"sat":35,"code":12}},{"L":{"f":50,"i":129241191},"flags":15,"cn0":171,"P":1240970643,"D":{"f":69,"i":-3007},"lock":15,"sid":{"sat":26,"code":12}},{"L":{"f":107,"i":132924112},"flags":15,"cn0":156,"P":1276333682,"D":{"f":171,"i":2249},"lock":15,"sid":{"sat":34,"code":12}},{"L":{"f":112,"i":125164007},"flags":15,"cn0":187,"P":1201821593,"D":{"f":209,"i":-1308},"lock":15,"sid":{"sat":24,"code":12}}],"payload":"oCAvEAAAAAAyCEHwCS89jCWLBlJE+3WtDw8UA4M0BkAmTdgGRpAInNAPDwUDdpJpPrljpwZ7FvQ10A8PCgPdIglDTfEtBxrU+ui2Dw8EA7plKD9vaMIGvlUGScoPDxUDVmXbROs7uAVmm/I1qg8PCQRCCy89dOQWBWxR/MTMDw8UBALc+j4UMzwFvoUDFcgPDwsErjUGQK/mUgXIqQZKww8PBQSxIwlDwIKVBWz8+4evDw8EBJRbl0WkYj8HRyT6BccPDyMMk7X3SWcQtAcyQfRFqw8PGgxyThNM0ELsB2vJCKucDw8iDJlXokfn2XUHcOT60bsPDxgM","header":{"n_obs":65,"t":{"ns_residual":0,"wn":2098,"tow":271524000}},"crc":10131} -{"length":249,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":210,"i":134659271},"flags":15,"cn0":158,"P":1292994863,"D":{"f":133,"i":1320},"lock":15,"sid":{"sat":25,"code":12}},{"L":{"f":168,"i":121084258},"flags":15,"cn0":184,"P":1162647905,"D":{"f":109,"i":1610},"lock":15,"sid":{"sat":12,"code":12}},{"L":{"f":236,"i":124517780},"flags":15,"cn0":184,"P":1195616484,"D":{"f":210,"i":-295},"lock":15,"sid":{"sat":19,"code":12}},{"L":{"f":6,"i":124681145},"flags":15,"cn0":192,"P":1197185148,"D":{"f":67,"i":2384},"lock":15,"sid":{"sat":22,"code":12}},{"L":{"f":22,"i":93630038},"flags":15,"cn0":208,"P":1162647839,"D":{"f":249,"i":1245},"lock":15,"sid":{"sat":12,"code":13}},{"L":{"f":6,"i":116436156},"flags":15,"cn0":196,"P":1107853164,"D":{"f":55,"i":-1027},"lock":15,"sid":{"sat":12,"code":14}},{"L":{"f":144,"i":132464153},"flags":15,"cn0":192,"P":1260354427,"D":{"f":23,"i":1084},"lock":15,"sid":{"sat":25,"code":14}},{"L":{"f":31,"i":125412263},"flags":15,"cn0":189,"P":1193257947,"D":{"f":217,"i":1046},"lock":15,"sid":{"sat":11,"code":14}},{"L":{"f":207,"i":118431117},"flags":15,"cn0":204,"P":1126834494,"D":{"f":159,"i":-1748},"lock":15,"sid":{"sat":24,"code":14}},{"L":{"f":196,"i":143352706},"flags":15,"cn0":159,"P":1363955629,"D":{"f":177,"i":-3173},"lock":15,"sid":{"sat":31,"code":14}},{"L":{"f":198,"i":144545303},"flags":15,"cn0":153,"P":1375302856,"D":{"f":187,"i":-2142},"lock":15,"sid":{"sat":33,"code":14}},{"L":{"f":173,"i":101498505},"flags":15,"cn0":201,"P":1260354414,"D":{"f":71,"i":831},"lock":15,"sid":{"sat":25,"code":20}},{"L":{"f":254,"i":90745984},"flags":15,"cn0":215,"P":1126835034,"D":{"f":201,"i":-1340},"lock":15,"sid":{"sat":24,"code":20}},{"L":{"f":136,"i":96095088},"flags":15,"cn0":194,"P":1193257759,"D":{"f":232,"i":801},"lock":15,"sid":{"sat":11,"code":20}}],"payload":"oCAvEAAAAAAyCEIviRFNx7wGCNIoBYWeDw8ZDGGZTEVimTcHqEoGbbgPDwwM5KhDR5T9awfs2f7SuA8PEwx8mFtHuXtuBwZQCUPADw8WDB+ZTEVWrpQFFt0E+dAPDwwNbH8IQrys8AYG/fs3xA8PDA57ex9LGT7lB5A8BBfADw8ZDturH0eno3kHHxYE2b0PDwsOPiEqQ40dDwfPLPmfzA8PGA6tT0xRgmOLCMSb87GfDw8fDsh0+VEXlp0IxqL3u5kPDyEObnsfS4m+DAatPwNHyQ8PGRRaIypDgKxoBf7E+snXDw8YFB+rH0dwS7oFiCED6MIPDwsU","header":{"n_obs":66,"t":{"ns_residual":0,"wn":2098,"tow":271524000}},"crc":7312} -{"length":62,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":235,"i":109841725},"flags":15,"cn0":174,"P":1363955724,"D":{"f":136,"i":-2433},"lock":15,"sid":{"sat":31,"code":20}},{"L":{"f":245,"i":89217344},"flags":15,"cn0":206,"P":1107853004,"D":{"f":2,"i":-787},"lock":15,"sid":{"sat":12,"code":20}},{"L":{"f":4,"i":110755563},"flags":15,"cn0":169,"P":1375302784,"D":{"f":202,"i":-1642},"lock":15,"sid":{"sat":33,"code":20}}],"payload":"oCAvEAAAAAAyCEMMUExRPQ2MBut/9oiuDw8fFMx+CEJAWVEF9e38As4PDwwUgHT5Uev+mQYElvnKqQ8PIRQ=","header":{"n_obs":67,"t":{"ns_residual":0,"wn":2098,"tow":271524000}},"crc":60117} -{"length":9,"l2ca_bias":0,"preamble":85,"l2p_bias":0,"sender":22963,"msg_type":117,"payload":"/wAAAAAAAAAA","l1ca_bias":0,"mask":255,"crc":49809,"l1p_bias":0} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgigIC8QAAAAAAE=","wn":2098,"tow":271524000,"crc":60217} -{"length":16,"flags":17,"ns":999999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EaAgLxDkBwMZAxkF/smaOw==","day":25,"tow":271524000,"year":2020,"crc":50831,"minutes":25,"month":3,"seconds":5} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.232199419751563,"preamble":85,"sender":22963,"msg_type":522,"payload":"oCAvEFzPe+1l6kJAYWaeFVaSXsCv+9FrcTsxwAECWwQPBg==","lat":37.83123558564577,"tow":271524000,"h_accuracy":513,"crc":62576,"lon":-122.28650417774908} -{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"oCAvEAwAAAACAAAACgAAAPEAygIPAg==","n":12,"d":10,"tow":271524000,"h_accuracy":241,"crc":11330,"e":2} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"oCAvEJsAhwBMAEgAcgAG","tow":271524000,"crc":46131,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"oCAvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271524000,"h_accuracy":0,"crc":13386,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"oCAvEP//","tow":271524000,"crc":35419} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":4,"flags":2147616000,"preamble":85,"sender":22963,"msg_type":65535,"payload":"AAUCgA==","crc":40942} -{"length":24,"z":3890655.0240602265,"preamble":85,"sender":22963,"msg_type":72,"payload":"UO0a3iqORMHK1UJhIkRQwc9nFIPvrk1B","crc":2168,"x":-2694229.735196747,"y":-4264073.519704292} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"bWFpbgAAAAAAAAAAAAAAAAAAAAAAAAx1AAA=","name":"main\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":47991,"stack_free":29964,"cpu":0} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"aWRsZQAAAAAAAAAAAAAAAAAAAABGAXwAAAA=","name":"idle\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":2544,"stack_free":124,"cpu":326} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"cnBtc2cAAAAAAAAAAAAAAAAAAAABANwNAAA=","name":"rpmsg\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":58151,"stack_free":3548,"cpu":1} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"U0JQAAAAAAAAAAAAAAAAAAAAAAAAAPz/AAA=","name":"SBP\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":51784,"stack_free":65532,"cpu":0} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"TkFQAAAAAAAAAAAAAAAAAAAAAAAAAASAAAA=","name":"NAP\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":33651,"stack_free":32772,"cpu":0} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"bWFuYWdlIFBWAAAAAAAAAAAAAAAAABQEAAA=","name":"manage PV\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":22620,"stack_free":1044,"cpu":0} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"SU1VAAAAAAAAAAAAAAAAAAAAAAAAAPQHAAA=","name":"IMU\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":14252,"stack_free":2036,"cpu":0} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"SU1VIGF1eAAAAAAAAAAAAAAAAAAAAEwIAAA=","name":"IMU aux\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":18976,"stack_free":2124,"cpu":0} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"bmRiAAAAAAAAAAAAAAAAAAAAAAAAAFAMAAA=","name":"ndb\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":26120,"stack_free":3152,"cpu":0} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"TkFQIFRyYWNraW5nAAAAAAAAAAApAdR3AAA=","name":"NAP Tracking\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":25570,"stack_free":30676,"cpu":297} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"ZGVjb2RlAAAAAAAAAAAAAAAAAAAIANQGAAA=","name":"decode\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":40082,"stack_free":1748,"cpu":8} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"bWFuYWdlIGFjcQAAAAAAAAAAAADLAKR3AAA=","name":"manage acq\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":38636,"stack_free":30628,"cpu":203} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"c3lzdGVtIG1vbml0b3IAAAAAAAAAACwGAAA=","name":"system monitor\u0000\u0000\u0000\u0000\u0000\u0000","crc":58531,"stack_free":1580,"cpu":0} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"V2F0Y2hkb2cAAAAAAAAAAAAAAAAAAOQDAAA=","name":"Watchdog\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":44438,"stack_free":996,"cpu":0} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"c3RhcmxpbmcAAAAAAAAAAAAAAACYAPz/AAA=","name":"starling\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":28732,"stack_free":65532,"cpu":152} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"bWVfY2FsY19wdnQAAAAAAAAAAAAJAIwjAAA=","name":"me_calc_pvt\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":57561,"stack_free":9100,"cpu":9} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"UFBTAAAAAAAAAAAAAAAAAAAAAAAAAEgHAAA=","name":"PPS\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":38576,"stack_free":1864,"cpu":0} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"c3BlY3RydW0gYW5hbHl6ZXIAAAAAANQPAAA=","name":"spectrum analyzer\u0000\u0000\u0000","crc":50933,"stack_free":4052,"cpu":0} -{"length":51,"text":"GLO L2OF ME 1 [+1490ms] low CN0 too long, dropping","preamble":85,"sender":22963,"msg_type":1025,"payload":"BkdMTyBMMk9GIE1FIDEgWysxNDkwbXNdIGxvdyBDTjAgdG9vIGxvbmcsIGRyb3BwaW5n","crc":56293,"level":6} -{"cpu_vint":989,"length":10,"fe_temperature":5641,"preamble":85,"sender":22963,"cpu_vaux":1779,"msg_type":181,"payload":"6hbdA/MGRRUJFg==","dev_vin":5866,"crc":43392,"cpu_temperature":5445} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MggEIS8QAAAAAAE=","wn":2098,"tow":271524100,"crc":10315} -{"length":16,"flags":17,"ns":99999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EQQhLxDkBwMZAxkG/uD1BQ==","day":25,"tow":271524100,"year":2020,"crc":54614,"minutes":25,"month":3,"seconds":6} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.236095339410056,"preamble":85,"sender":22963,"msg_type":522,"payload":"BCEvEGBHR+1l6kJA64GOFVaSXsAUgYG+cDwxwAECWwQPBg==","lat":37.83123556118403,"tow":271524100,"h_accuracy":513,"crc":20208,"lon":-122.2865041629481} -{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"BCEvEPv///8GAAAACgAAAPEAygIPAg==","n":-5,"d":10,"tow":271524100,"h_accuracy":241,"crc":44454,"e":6} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"BCEvEJsAhwBMAEgAcgAG","tow":271524100,"crc":40422,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"BCEvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271524100,"h_accuracy":0,"crc":38597,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"BCEvEP//","tow":271524100,"crc":51075} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MghoIS8QAAAAAAE=","wn":2098,"tow":271524200,"crc":25982} -{"length":16,"flags":17,"ns":199999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EWghLxDkBwMZAxkG/sHrCw==","day":25,"tow":271524200,"year":2020,"crc":44792,"minutes":25,"month":3,"seconds":6} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.237315995219863,"preamble":85,"sender":22963,"msg_type":522,"payload":"aCEvEBpvGu1l6kJA6deBFVaSXsB5Sba9wDwxwAECWwQPBg==","lat":37.831235540301535,"tow":271524200,"h_accuracy":513,"crc":25736,"lon":-122.28650415115375} -{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"aCEvEPz///8FAAAA+P////EAygIPAg==","n":-4,"d":-8,"tow":271524200,"h_accuracy":241,"crc":52985,"e":5} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"aCEvEJsAhwBMAEgAcgAG","tow":271524200,"crc":38412,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"aCEvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271524200,"h_accuracy":0,"crc":53456,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"aCEvEP//","tow":271524200,"crc":37752} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgjMIS8QAAAAAAE=","wn":2098,"tow":271524300,"crc":57823} -{"length":16,"flags":17,"ns":299999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EcwhLxDkBwMZAxkG/qLhEQ==","day":25,"tow":271524300,"year":2020,"crc":25287,"minutes":25,"month":3,"seconds":6} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.240072067185107,"preamble":85,"sender":22963,"msg_type":522,"payload":"zCEvEMAYA+1l6kJARyKCFVaSXsA/Pu1cdT0xwAECWwQPBg==","lat":37.83123552943425,"tow":271524300,"h_accuracy":513,"crc":4043,"lon":-122.2865041514243} -{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"zCEvEP7////1////6f////EAygIPAg==","n":-2,"d":-23,"tow":271524300,"h_accuracy":241,"crc":1262,"e":-11} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"zCEvEJsAhwBMAEgAcgAG","tow":271524300,"crc":50360,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"zCEvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271524300,"h_accuracy":0,"crc":42921,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"zCEvEP//","tow":271524300,"crc":29937} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":237,"states":[{"cn0":213,"mesid":{"sat":5,"code":0}},{"cn0":180,"mesid":{"sat":21,"code":0}},{"cn0":186,"mesid":{"sat":2,"code":0}},{"cn0":165,"mesid":{"sat":31,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":218,"mesid":{"sat":25,"code":0}},{"cn0":208,"mesid":{"sat":12,"code":0}},{"cn0":212,"mesid":{"sat":29,"code":0}},{"cn0":206,"mesid":{"sat":18,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":205,"mesid":{"sat":131,"code":2}},{"cn0":204,"mesid":{"sat":25,"code":1}},{"cn0":187,"mesid":{"sat":12,"code":1}},{"cn0":153,"mesid":{"sat":31,"code":1}},{"cn0":197,"mesid":{"sat":18,"code":1}},{"cn0":195,"mesid":{"sat":29,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":194,"mesid":{"sat":5,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":213,"mesid":{"sat":100,"code":3}},{"cn0":177,"mesid":{"sat":98,"code":3}},{"cn0":173,"mesid":{"sat":102,"code":3}},{"cn0":208,"mesid":{"sat":101,"code":3}},{"cn0":208,"mesid":{"sat":93,"code":3}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":182,"mesid":{"sat":106,"code":3}},{"cn0":202,"mesid":{"sat":104,"code":3}},{"cn0":170,"mesid":{"sat":98,"code":4}},{"cn0":204,"mesid":{"sat":102,"code":4}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":200,"mesid":{"sat":100,"code":4}},{"cn0":195,"mesid":{"sat":101,"code":4}},{"cn0":188,"mesid":{"sat":104,"code":4}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":175,"mesid":{"sat":106,"code":4}},{"cn0":199,"mesid":{"sat":35,"code":12}},{"cn0":171,"mesid":{"sat":26,"code":12}},{"cn0":157,"mesid":{"sat":34,"code":12}},{"cn0":188,"mesid":{"sat":24,"code":12}},{"cn0":159,"mesid":{"sat":25,"code":12}},{"cn0":184,"mesid":{"sat":12,"code":12}},{"cn0":184,"mesid":{"sat":19,"code":12}},{"cn0":192,"mesid":{"sat":22,"code":12}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":208,"mesid":{"sat":12,"code":13}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":195,"mesid":{"sat":12,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":191,"mesid":{"sat":25,"code":14}},{"cn0":188,"mesid":{"sat":11,"code":14}},{"cn0":204,"mesid":{"sat":24,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":159,"mesid":{"sat":31,"code":14}},{"cn0":151,"mesid":{"sat":33,"code":14}},{"cn0":201,"mesid":{"sat":25,"code":20}},{"cn0":215,"mesid":{"sat":24,"code":20}},{"cn0":194,"mesid":{"sat":11,"code":20}},{"cn0":174,"mesid":{"sat":31,"code":20}},{"cn0":206,"mesid":{"sat":12,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":169,"mesid":{"sat":33,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}}],"preamble":85,"sender":22963,"msg_type":97,"payload":"BQDVFQC0AgC6HwClAAAAAAAAGQDaDADQHQDUEgDOAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwLNGQHMDAG7HwGZEgHFHQHDAAAABQHCAAAAAAAAAAAAAAAAZAPVYgOxZgOtZQPQXQPQAAAAagO2aAPKYgSqZgTMAAAAZATIZQTDaAS8AAAAagSvIwzHGgyrIgydGAy8GQyfDAy4Ewy4FgzAAAAADA3QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADA7DAAAAGQ6/Cw68GA7MAAAAHw6fIQ6XGRTJGBTXCxTCHxSuDBTOAAAAIRSpAAAA","crc":2959} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MggwIi8QAAAAAAE=","wn":2098,"tow":271524400,"crc":35027} -{"length":16,"flags":17,"ns":399999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"ETAiLxDkBwMZAxkG/oPXFw==","day":25,"tow":271524400,"year":2020,"crc":32789,"minutes":25,"month":3,"seconds":6} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.24831418378895,"preamble":85,"sender":22963,"msg_type":522,"payload":"MCIvEB/z9exl6kJAYmV2FVaSXsCogbKEkT8xwAECWwQPBg==","lat":37.83123552331221,"tow":271524400,"h_accuracy":513,"crc":24576,"lon":-122.28650414049255} -{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"MCIvEAgAAAD8////FQAAAPEAygIPAg==","n":8,"d":21,"tow":271524400,"h_accuracy":241,"crc":62510,"e":-4} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"MCIvEJsAhwBMAEgAcgAG","tow":271524400,"crc":22633,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"MCIvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271524400,"h_accuracy":0,"crc":34900,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"MCIvEP//","tow":271524400,"crc":124} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":9,"l2ca_bias":0,"preamble":85,"l2p_bias":0,"sender":22963,"msg_type":117,"payload":"/wAAAAAAAAAA","l1ca_bias":0,"mask":255,"crc":49809,"l1p_bias":0} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgiUIi8QAAAAAAE=","wn":2098,"tow":271524500,"crc":3186} -{"length":16,"flags":17,"ns":499999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EZQiLxDkBwMZAxkG/mTNHQ==","day":25,"tow":271524500,"year":2020,"crc":47858,"minutes":25,"month":3,"seconds":6} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.256784350944105,"preamble":85,"sender":22963,"msg_type":522,"payload":"lCIvEJ7o+Oxl6kJAKqdhFVaSXsD1bYWevEExwAECWwQPBg==","lat":37.831235524690086,"tow":271524500,"h_accuracy":513,"crc":48494,"lon":-122.28650412117409} -{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"lCIvEAEAAAADAAAAFwAAAPEAygIPAg==","n":1,"d":23,"tow":271524500,"h_accuracy":241,"crc":28944,"e":3} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"lCIvEJsAhwBMAEgAcgAG","tow":271524500,"crc":2781,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"lCIvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271524500,"h_accuracy":0,"crc":65325,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"lCIvEP//","tow":271524500,"crc":59381} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"Mgj4Ii8QAAAAAAE=","wn":2098,"tow":271524600,"crc":16711} -{"length":16,"flags":17,"ns":599999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EfgiLxDkBwMZAxkG/kXDIw==","day":25,"tow":271524600,"year":2020,"crc":62588,"minutes":25,"month":3,"seconds":6} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.26014891570164,"preamble":85,"sender":22963,"msg_type":522,"payload":"+CIvENhC2Oxl6kJA2iBLFVaSXsBGB40emUIxwAECWwQPBg==","lat":37.831235509487385,"tow":271524600,"h_accuracy":513,"crc":58806,"lon":-122.28650410019637} -{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"+CIvEPT///8GAAAA7v////EAygIPAg==","n":-12,"d":-18,"tow":271524600,"h_accuracy":241,"crc":15604,"e":6} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"+CIvEJsAhwBMAEgAcgAG","tow":271524600,"crc":311,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"+CIvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271524600,"h_accuracy":0,"crc":47416,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"+CIvEP//","tow":271524600,"crc":45838} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"message_type":26,"length":34,"data":[35,3,216,30,128,244,6,160,52,129,100,7,32,42,0,208,34,192,246,7,160,53,1,168,11,48,0],"preamble":85,"sender":22963,"msg_type":30583,"payload":"gwJ1Ii8QGiMD2B6A9AagNIFkByAqANAiwPYHoDUBqAswAA==","tow":271524469,"crc":49271,"sid":{"sat":131,"code":2}} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MghcIy8QAAAAAAE=","wn":2098,"tow":271524700,"crc":33333} -{"length":16,"flags":17,"ns":699999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EVwjLxDkBwMZAxkG/ia5KQ==","day":25,"tow":271524700,"year":2020,"crc":22858,"minutes":25,"month":3,"seconds":6} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.268872786058115,"preamble":85,"sender":22963,"msg_type":522,"payload":"XCMvEBqG1exl6kJAC68tFVaSXsBt587Y1EQxwAECWwQPBg==","lat":37.83123550821274,"tow":271524700,"h_accuracy":513,"crc":18634,"lon":-122.28650407277398} -{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"XCMvEP7///8OAAAAHAAAAPEAygIPAg==","n":-2,"d":28,"tow":271524700,"h_accuracy":241,"crc":11264,"e":14} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"XCMvEJsAhwBMAEgAcgAG","tow":271524700,"crc":10466,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"XCMvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271524700,"h_accuracy":0,"crc":7095,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"XCMvEP//","tow":271524700,"crc":65238} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgjAIy8QAAAAAAE=","wn":2098,"tow":271524800,"crc":56169} -{"length":16,"flags":17,"ns":799999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EcAjLxDkBwMZAxkG/gevLw==","day":25,"tow":271524800,"year":2020,"crc":34752,"minutes":25,"month":3,"seconds":6} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.27523152348569,"preamble":85,"sender":22963,"msg_type":522,"payload":"wCMvEFAC4+xl6kJAx9AZFVaSXsAFM7iSdUYxwAECWwQPBg==","lat":37.83123551449228,"tow":271524800,"h_accuracy":513,"crc":52464,"lon":-122.28650405427025} -{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"wCMvEAYAAAD/////AQAAAPEAygIPAg==","n":6,"d":1,"tow":271524800,"h_accuracy":241,"crc":56439,"e":-1} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"wCMvEJsAhwBMAEgAcgAG","tow":271524800,"crc":36493,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"wCMvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271524800,"h_accuracy":0,"crc":58758,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"wCMvEP//","tow":271524800,"crc":15249} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":237,"states":[{"cn0":213,"mesid":{"sat":5,"code":0}},{"cn0":181,"mesid":{"sat":21,"code":0}},{"cn0":186,"mesid":{"sat":2,"code":0}},{"cn0":166,"mesid":{"sat":31,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":218,"mesid":{"sat":25,"code":0}},{"cn0":208,"mesid":{"sat":12,"code":0}},{"cn0":213,"mesid":{"sat":29,"code":0}},{"cn0":206,"mesid":{"sat":18,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":205,"mesid":{"sat":131,"code":2}},{"cn0":205,"mesid":{"sat":25,"code":1}},{"cn0":187,"mesid":{"sat":12,"code":1}},{"cn0":153,"mesid":{"sat":31,"code":1}},{"cn0":197,"mesid":{"sat":18,"code":1}},{"cn0":195,"mesid":{"sat":29,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":194,"mesid":{"sat":5,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":214,"mesid":{"sat":11,"code":3}},{"cn0":178,"mesid":{"sat":9,"code":3}},{"cn0":173,"mesid":{"sat":20,"code":3}},{"cn0":208,"mesid":{"sat":5,"code":3}},{"cn0":208,"mesid":{"sat":10,"code":3}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":182,"mesid":{"sat":4,"code":3}},{"cn0":203,"mesid":{"sat":21,"code":3}},{"cn0":170,"mesid":{"sat":9,"code":4}},{"cn0":205,"mesid":{"sat":20,"code":4}},{"cn0":78,"mesid":{"sat":10,"code":4}},{"cn0":200,"mesid":{"sat":11,"code":4}},{"cn0":195,"mesid":{"sat":5,"code":4}},{"cn0":189,"mesid":{"sat":0,"code":4}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":175,"mesid":{"sat":4,"code":4}},{"cn0":200,"mesid":{"sat":35,"code":12}},{"cn0":171,"mesid":{"sat":26,"code":12}},{"cn0":158,"mesid":{"sat":34,"code":12}},{"cn0":188,"mesid":{"sat":24,"code":12}},{"cn0":159,"mesid":{"sat":25,"code":12}},{"cn0":184,"mesid":{"sat":12,"code":12}},{"cn0":185,"mesid":{"sat":19,"code":12}},{"cn0":192,"mesid":{"sat":22,"code":12}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":208,"mesid":{"sat":12,"code":13}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":195,"mesid":{"sat":12,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":192,"mesid":{"sat":25,"code":14}},{"cn0":189,"mesid":{"sat":11,"code":14}},{"cn0":204,"mesid":{"sat":24,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":159,"mesid":{"sat":31,"code":14}},{"cn0":153,"mesid":{"sat":33,"code":14}},{"cn0":201,"mesid":{"sat":25,"code":20}},{"cn0":215,"mesid":{"sat":24,"code":20}},{"cn0":194,"mesid":{"sat":11,"code":20}},{"cn0":175,"mesid":{"sat":31,"code":20}},{"cn0":206,"mesid":{"sat":12,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":169,"mesid":{"sat":33,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}}],"preamble":85,"sender":22963,"msg_type":97,"payload":"BQDVFQC1AgC6HwCmAAAAAAAAGQDaDADQHQDVEgDOAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwLNGQHNDAG7HwGZEgHFHQHDAAAABQHCAAAAAAAAAAAAAAAACwPWCQOyFAOtBQPQCgPQAAAABAO2FQPLCQSqFATNCgROCwTIBQTDAAS9AAAABASvIwzIGgyrIgyeGAy8GQyfDAy4Ewy5FgzAAAAADA3QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADA7DAAAAGQ7ACw69GA7MAAAAHw6fIQ6ZGRTJGBTXCxTCHxSvDBTOAAAAIRSpAAAA","crc":4344} -{"length":128,"preamble":85,"sender":22963,"msg_type":151,"payload":"AgAaHQUAKzUMAFEtFQB9GRkAbUYaAKEBHQChNx8AlQ4EAxUWBQMyIQkDXw4KA3EpCwOYJQwDqgMTAyIHFAMMMRUDlSUMDJQpEwwjIBQMDwIWDEMkGAyCIxkMnQ4aDGcVIgyOESMMIi0LDosyDA4PPBgObDYZDpcpHw5VESEOIA8=","crc":34187,"azel":[{"el":29,"az":26,"sid":{"sat":2,"code":0}},{"el":53,"az":43,"sid":{"sat":5,"code":0}},{"el":45,"az":81,"sid":{"sat":12,"code":0}},{"el":25,"az":125,"sid":{"sat":21,"code":0}},{"el":70,"az":109,"sid":{"sat":25,"code":0}},{"el":1,"az":161,"sid":{"sat":26,"code":0}},{"el":55,"az":161,"sid":{"sat":29,"code":0}},{"el":14,"az":149,"sid":{"sat":31,"code":0}},{"el":22,"az":21,"sid":{"sat":4,"code":3}},{"el":33,"az":50,"sid":{"sat":5,"code":3}},{"el":14,"az":95,"sid":{"sat":9,"code":3}},{"el":41,"az":113,"sid":{"sat":10,"code":3}},{"el":37,"az":152,"sid":{"sat":11,"code":3}},{"el":3,"az":170,"sid":{"sat":12,"code":3}},{"el":7,"az":34,"sid":{"sat":19,"code":3}},{"el":49,"az":12,"sid":{"sat":20,"code":3}},{"el":37,"az":149,"sid":{"sat":21,"code":3}},{"el":41,"az":148,"sid":{"sat":12,"code":12}},{"el":32,"az":35,"sid":{"sat":19,"code":12}},{"el":2,"az":15,"sid":{"sat":20,"code":12}},{"el":36,"az":67,"sid":{"sat":22,"code":12}},{"el":35,"az":130,"sid":{"sat":24,"code":12}},{"el":14,"az":157,"sid":{"sat":25,"code":12}},{"el":21,"az":103,"sid":{"sat":26,"code":12}},{"el":17,"az":142,"sid":{"sat":34,"code":12}},{"el":45,"az":34,"sid":{"sat":35,"code":12}},{"el":50,"az":139,"sid":{"sat":11,"code":14}},{"el":60,"az":15,"sid":{"sat":12,"code":14}},{"el":54,"az":108,"sid":{"sat":24,"code":14}},{"el":41,"az":151,"sid":{"sat":25,"code":14}},{"el":17,"az":85,"sid":{"sat":31,"code":14}},{"el":15,"az":32,"sid":{"sat":33,"code":14}}]} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MggkJC8QAAAAAAE=","wn":2098,"tow":271524900,"crc":50953} -{"length":16,"flags":17,"ns":899999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"ESQkLxDkBwMZAxkG/uikNQ==","day":25,"tow":271524900,"year":2020,"crc":27898,"minutes":25,"month":3,"seconds":6} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.282588290216808,"preamble":85,"sender":22963,"msg_type":522,"payload":"JCQvEH+y7+xl6kJA6ugbFVaSXsC4tsi0V0gxwAECWwQPBg==","lat":37.83123552040069,"tow":271524900,"h_accuracy":513,"crc":13774,"lon":-122.2865040562207} -{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"JCQvEAsAAADy////9f////EAygIPAg==","n":11,"d":-11,"tow":271524900,"h_accuracy":241,"crc":49153,"e":-14} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"JCQvEJsAhwBMAEgAcgAG","tow":271524900,"crc":34358,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"JCQvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271524900,"h_accuracy":0,"crc":20005,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"JCQvEP//","tow":271524900,"crc":53724} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":249,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":89,"i":110566066},"flags":15,"cn0":213,"P":1052001008,"D":{"f":153,"i":-189},"lock":15,"sid":{"sat":5,"code":0}},{"L":{"f":216,"i":121803006},"flags":15,"cn0":182,"P":1158917102,"D":{"f":244,"i":2172},"lock":15,"sid":{"sat":21,"code":0}},{"L":{"f":145,"i":123363110},"flags":15,"cn0":186,"P":1173760565,"D":{"f":21,"i":-2477},"lock":15,"sid":{"sat":2,"code":0}},{"L":{"f":229,"i":128742348},"flags":15,"cn0":166,"P":1224942723,"D":{"f":150,"i":-398},"lock":15,"sid":{"sat":31,"code":0}},{"L":{"f":200,"i":107834589},"flags":15,"cn0":218,"P":1026011943,"D":{"f":93,"i":-1132},"lock":15,"sid":{"sat":25,"code":0}},{"L":{"f":180,"i":114128428},"flags":15,"cn0":209,"P":1085895807,"D":{"f":122,"i":-2970},"lock":15,"sid":{"sat":12,"code":0}},{"L":{"f":83,"i":110746066},"flags":15,"cn0":213,"P":1053713701,"D":{"f":122,"i":1483},"lock":15,"sid":{"sat":29,"code":0}},{"L":{"f":144,"i":84026973},"flags":15,"cn0":204,"P":1026011979,"D":{"f":94,"i":-881},"lock":15,"sid":{"sat":25,"code":1}},{"L":{"f":200,"i":88931274},"flags":15,"cn0":187,"P":1085895705,"D":{"f":174,"i":-2315},"lock":15,"sid":{"sat":12,"code":1}},{"L":{"f":214,"i":100318715},"flags":15,"cn0":153,"P":1224942670,"D":{"f":138,"i":-312},"lock":15,"sid":{"sat":31,"code":1}},{"L":{"f":237,"i":86295637},"flags":15,"cn0":195,"P":1053713631,"D":{"f":170,"i":1154},"lock":15,"sid":{"sat":29,"code":1}},{"L":{"f":166,"i":86155405},"flags":15,"cn0":194,"P":1052000940,"D":{"f":241,"i":-147},"lock":15,"sid":{"sat":5,"code":1}},{"L":{"f":162,"i":112924805},"flags":15,"cn0":214,"P":1056616579,"D":{"f":166,"i":1158},"lock":15,"sid":{"sat":11,"code":3}},{"L":{"f":207,"i":123381592},"flags":15,"cn0":178,"P":1155270170,"D":{"f":42,"i":-4406},"lock":15,"sid":{"sat":9,"code":3}}],"payload":"iCQvEAAAAAAyCEDwQrQ+shqXBllD/5nVDw8FAO6rE0X+kEIH2HwI9LYPDxUANSr2RSZfWgeRU/YVug8PAgCDJANJzHOsB+Vy/pamDw8fACezJz3dbG0GyJT7XdoPDxkAf3S5QCx2zQa0ZvR60Q8PDAAlZc4+0tmZBlPLBXrVDw8dAEuzJz1dJgIFkI/8XswPDxkBGXS5QMr7TAXI9fauuw8PDAFOJANJ+736BdbI/oqZDw8fAd9kzj5VxCQF7YIEqsMPDx0BrEK0Po2gIgWmbf/xwg8PBQGDsPo+hRi7BqKGBKbWDw8LAxoG3ERYp1oHz8ruKrIPDwkD","header":{"n_obs":64,"t":{"ns_residual":0,"wn":2098,"tow":271525000}},"crc":20005} -{"length":249,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":143,"i":109783622},"flags":15,"cn0":173,"P":1026504214,"D":{"f":4,"i":-1210},"lock":15,"sid":{"sat":20,"code":3}},{"L":{"f":206,"i":114836628},"flags":15,"cn0":208,"P":1074127970,"D":{"f":118,"i":2192},"lock":15,"sid":{"sat":5,"code":3}},{"L":{"f":79,"i":111636385},"flags":15,"cn0":208,"P":1047134745,"D":{"f":151,"i":-3049},"lock":15,"sid":{"sat":10,"code":3}},{"L":{"f":235,"i":120452726},"flags":15,"cn0":182,"P":1124684575,"D":{"f":186,"i":-1324},"lock":15,"sid":{"sat":4,"code":3}},{"L":{"f":62,"i":113402393},"flags":15,"cn0":203,"P":1059596940,"D":{"f":3,"i":1621},"lock":15,"sid":{"sat":21,"code":3}},{"L":{"f":182,"i":95963470},"flags":15,"cn0":170,"P":1155270265,"D":{"f":153,"i":-3429},"lock":15,"sid":{"sat":9,"code":4}},{"L":{"f":182,"i":85387297},"flags":15,"cn0":205,"P":1026504556,"D":{"f":245,"i":-942},"lock":15,"sid":{"sat":20,"code":4}},{"L":{"f":181,"i":87830414},"flags":15,"cn0":200,"P":1056616854,"D":{"f":121,"i":901},"lock":15,"sid":{"sat":11,"code":4}},{"L":{"f":194,"i":89317381},"flags":15,"cn0":195,"P":1074128282,"D":{"f":126,"i":1706},"lock":15,"sid":{"sat":5,"code":4}},{"L":{"f":128,"i":93685444},"flags":15,"cn0":175,"P":1124684777,"D":{"f":9,"i":-1028},"lock":15,"sid":{"sat":4,"code":4}},{"L":{"f":67,"i":121596031},"flags":15,"cn0":200,"P":1167561683,"D":{"f":42,"i":-1499},"lock":15,"sid":{"sat":35,"code":12}},{"L":{"f":98,"i":129244198},"flags":15,"cn0":172,"P":1240999524,"D":{"f":216,"i":-3008},"lock":15,"sid":{"sat":26,"code":12}},{"L":{"f":200,"i":132921862},"flags":15,"cn0":157,"P":1276312083,"D":{"f":218,"i":2248},"lock":15,"sid":{"sat":34,"code":12}},{"L":{"f":164,"i":125165312},"flags":15,"cn0":188,"P":1201834129,"D":{"f":76,"i":-1305},"lock":15,"sid":{"sat":24,"code":12}}],"payload":"iCQvEAAAAAAyCEEWNi89RiqLBo9G+wStDw8UA2LkBUCURNgGzpAIdtAPDwUDGQJqPqFvpwZPF/SX0A8PCgMfUwlDdvYtB+vU+rq2Dw8EA4wqKD8ZYsIGPlUGA8sPDxUDeQbcRE5JuAW2m/KZqg8PCQRsNy89IegWBbZS/PXNDw8UBJax+j6OLzwFtYUDecgPDwsEmuUFQAXgUgXCqgZ+ww8PBQTpUwlDxIaVBYD8+wmvDw8EBNOTl0V/aD8HQyX6KsgPDyMMZCb4SSYctAdiQPTYrA8PGgwT+hJMBjrsB8jICNqdDw8iDJGIokcA33UHpOf6TLwPDxgM","header":{"n_obs":65,"t":{"ns_residual":0,"wn":2098,"tow":271525000}},"crc":7191} -{"length":249,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":221,"i":134657949},"flags":15,"cn0":159,"P":1292982166,"D":{"f":253,"i":1319},"lock":15,"sid":{"sat":25,"code":12}},{"L":{"f":79,"i":121082646},"flags":15,"cn0":184,"P":1162632421,"D":{"f":73,"i":1612},"lock":15,"sid":{"sat":12,"code":12}},{"L":{"f":237,"i":124518073},"flags":15,"cn0":185,"P":1195619305,"D":{"f":59,"i":-294},"lock":15,"sid":{"sat":19,"code":12}},{"L":{"f":16,"i":124678759},"flags":15,"cn0":192,"P":1197162237,"D":{"f":242,"i":2384},"lock":15,"sid":{"sat":22,"code":12}},{"L":{"f":77,"i":93628791},"flags":15,"cn0":208,"P":1162632355,"D":{"f":215,"i":1246},"lock":15,"sid":{"sat":12,"code":13}},{"L":{"f":118,"i":116437182},"flags":15,"cn0":196,"P":1107862927,"D":{"f":243,"i":-1027},"lock":15,"sid":{"sat":12,"code":14}},{"L":{"f":253,"i":132463067},"flags":15,"cn0":192,"P":1260344096,"D":{"f":140,"i":1084},"lock":15,"sid":{"sat":25,"code":14}},{"L":{"f":214,"i":125411215},"flags":15,"cn0":189,"P":1193247980,"D":{"f":73,"i":1047},"lock":15,"sid":{"sat":11,"code":14}},{"L":{"f":68,"i":118432864},"flags":15,"cn0":204,"P":1126851113,"D":{"f":205,"i":-1748},"lock":15,"sid":{"sat":24,"code":14}},{"L":{"f":46,"i":143355878},"flags":15,"cn0":159,"P":1363985800,"D":{"f":219,"i":-3171},"lock":15,"sid":{"sat":31,"code":14}},{"L":{"f":233,"i":144547442},"flags":15,"cn0":154,"P":1375323188,"D":{"f":157,"i":-2142},"lock":15,"sid":{"sat":33,"code":14}},{"L":{"f":226,"i":101497673},"flags":15,"cn0":201,"P":1260344085,"D":{"f":106,"i":831},"lock":15,"sid":{"sat":25,"code":20}},{"L":{"f":50,"i":90747323},"flags":15,"cn0":215,"P":1126851653,"D":{"f":186,"i":-1338},"lock":15,"sid":{"sat":24,"code":20}},{"L":{"f":19,"i":96094286},"flags":15,"cn0":194,"P":1193247791,"D":{"f":27,"i":803},"lock":15,"sid":{"sat":11,"code":20}}],"payload":"iCQvEAAAAAAyCEKWVxFNnbcGCN0nBf2fDw8ZDOVcTEUWkzcHT0wGSbgPDwwM6bNDR7n+awft2v47uQ8PEwz9PltHZ3JuBxBQCfLADw8WDKNcTEV3qZQFTd4E19APDwwNj6UIQr6w8AZ2/fvzxA8PDA4gUx9L2znlB/08BIzADw8ZDuyEH0ePn3kH1hcESb0PDwsOKWIqQ2AkDwdELPnNzA8PGA6IxUxR5m+LCC6d89ufDw8fDjTE+VFynp0I6aL3nZoPDyEOFVMfS0m7DAbiPwNqyQ8PGRRFZCpDu7FoBTLG+rrXDw8YFC+EH0dOSLoFEyMDG8IPDwsU","header":{"n_obs":66,"t":{"ns_residual":0,"wn":2098,"tow":271525000}},"crc":17479} -{"length":62,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":243,"i":109844155},"flags":15,"cn0":175,"P":1363985895,"D":{"f":189,"i":-2430},"lock":15,"sid":{"sat":31,"code":20}},{"L":{"f":114,"i":89218131},"flags":15,"cn0":206,"P":1107862770,"D":{"f":6,"i":-786},"lock":15,"sid":{"sat":12,"code":20}},{"L":{"f":23,"i":110757202},"flags":15,"cn0":169,"P":1375323136,"D":{"f":41,"i":-1640},"lock":15,"sid":{"sat":33,"code":20}}],"payload":"iCQvEAAAAAAyCEPnxUxRuxaMBvOC9r2vDw8fFPKkCEJTXFEFcu78Bs4PDwwUAMT5UVIFmgYXmPkpqQ8PIRQ=","header":{"n_obs":67,"t":{"ns_residual":0,"wn":2098,"tow":271525000}},"crc":35835} -{"length":9,"l2ca_bias":0,"preamble":85,"l2p_bias":0,"sender":22963,"msg_type":117,"payload":"/wAAAAAAAAAA","l1ca_bias":0,"mask":255,"crc":49809,"l1p_bias":0} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgiIJC8QAAAAAAE=","wn":2098,"tow":271525000,"crc":27223} -{"length":16,"flags":17,"ns":999999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EYgkLxDkBwMZAxkG/smaOw==","day":25,"tow":271525000,"year":2020,"crc":28585,"minutes":25,"month":3,"seconds":6} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.294068763572596,"preamble":85,"sender":22963,"msg_type":522,"payload":"iCQvELSAy+xl6kJAEjISFVaSXsDIUSoXSEsxwAECWwQPBg==","lat":37.83123550354631,"tow":271525000,"h_accuracy":513,"crc":59790,"lon":-122.28650404717362} -{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"iCQvEPP///8BAAAAKAAAAPEAygIPAg==","n":-13,"d":40,"tow":271525000,"h_accuracy":241,"crc":14962,"e":1} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"iCQvEJsAhwBMAEgAcgAG","tow":271525000,"crc":62407,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"iCQvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271525000,"h_accuracy":0,"crc":26623,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"iCQvEP//","tow":271525000,"crc":15127} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":4,"flags":2147616000,"preamble":85,"sender":22963,"msg_type":65535,"payload":"AAUCgA==","crc":40942} -{"length":24,"z":3890655.0240602265,"preamble":85,"sender":22963,"msg_type":72,"payload":"UO0a3iqORMHK1UJhIkRQwc9nFIPvrk1B","crc":2168,"x":-2694229.735196747,"y":-4264073.519704292} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgjsJC8QAAAAAAE=","wn":2098,"tow":271525100,"crc":3741} -{"length":16,"flags":17,"ns":99999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EewkLxDkBwMZAxkH/uD1BQ==","day":25,"tow":271525100,"year":2020,"crc":15753,"minutes":25,"month":3,"seconds":7} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.30327695192358,"preamble":85,"sender":22963,"msg_type":522,"payload":"7CQvEBxQqOxl6kJAY4f+FFaSXsBwJO6Oo00xwAECWwQPBg==","lat":37.83123548715977,"tow":271525100,"h_accuracy":513,"crc":35021,"lon":-122.28650402885755} -{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"7CQvEPT///8AAAAAAwAAAPEAygIPAg==","n":-12,"d":3,"tow":271525100,"h_accuracy":241,"crc":27641,"e":0} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"7CQvEJsAhwBMAEgAcgAG","tow":271525100,"crc":57192,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"7CQvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271525100,"h_accuracy":0,"crc":32585,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"7CQvEP//","tow":271525100,"crc":25262} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MghQJS8QAAAAAAE=","wn":2098,"tow":271525200,"crc":47086} -{"length":16,"flags":17,"ns":199999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EVAlLxDkBwMZAxkH/sHrCw==","day":25,"tow":271525200,"year":2020,"crc":3543,"minutes":25,"month":3,"seconds":7} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.309922768722167,"preamble":85,"sender":22963,"msg_type":522,"payload":"UCUvEPLuouxl6kJAUZbeFFaSXsCO8jsZV08xwAECWwQPBg==","lat":37.83123548465473,"tow":271525200,"h_accuracy":513,"crc":37009,"lon":-122.28650399910954} -{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"UCUvEAoAAAADAAAA/P////EAygIPAg==","n":10,"d":-4,"tow":271525200,"h_accuracy":241,"crc":43175,"e":3} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"UCUvEJsAhwBMAEgAcgAG","tow":271525200,"crc":40818,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"UCUvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271525200,"h_accuracy":0,"crc":15907,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"UCUvEP//","tow":271525200,"crc":14512} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"Mgi0JS8QAAAAAAE=","wn":2098,"tow":271525300,"crc":27798} -{"length":16,"flags":17,"ns":299999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EbQlLxDkBwMZAxkH/qLhEQ==","day":25,"tow":271525300,"year":2020,"crc":60385,"minutes":25,"month":3,"seconds":7} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.3141553544929,"preamble":85,"sender":22963,"msg_type":522,"payload":"tCUvEIRWkuxl6kJAdDPHFFaSXsAJaT18bFAxwAECWwQPBg==","lat":37.83123547692688,"tow":271525300,"h_accuracy":513,"crc":55355,"lon":-122.28650397732946} -{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"tCUvEAUAAAADAAAAAwAAAPEAygIPAg==","n":5,"d":3,"tow":271525300,"h_accuracy":241,"crc":56121,"e":3} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"tCUvEJsAhwBMAEgAcgAG","tow":271525300,"crc":59343,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"tCUvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271525300,"h_accuracy":0,"crc":39936,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"tCUvEP//","tow":271525300,"crc":46377} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":237,"states":[{"cn0":214,"mesid":{"sat":5,"code":0}},{"cn0":181,"mesid":{"sat":21,"code":0}},{"cn0":187,"mesid":{"sat":2,"code":0}},{"cn0":166,"mesid":{"sat":31,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":218,"mesid":{"sat":25,"code":0}},{"cn0":209,"mesid":{"sat":12,"code":0}},{"cn0":213,"mesid":{"sat":29,"code":0}},{"cn0":206,"mesid":{"sat":18,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":206,"mesid":{"sat":131,"code":2}},{"cn0":204,"mesid":{"sat":25,"code":1}},{"cn0":187,"mesid":{"sat":12,"code":1}},{"cn0":153,"mesid":{"sat":31,"code":1}},{"cn0":197,"mesid":{"sat":18,"code":1}},{"cn0":195,"mesid":{"sat":29,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":194,"mesid":{"sat":5,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":214,"mesid":{"sat":100,"code":3}},{"cn0":178,"mesid":{"sat":98,"code":3}},{"cn0":174,"mesid":{"sat":102,"code":3}},{"cn0":208,"mesid":{"sat":101,"code":3}},{"cn0":208,"mesid":{"sat":93,"code":3}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":182,"mesid":{"sat":106,"code":3}},{"cn0":203,"mesid":{"sat":104,"code":3}},{"cn0":170,"mesid":{"sat":98,"code":4}},{"cn0":205,"mesid":{"sat":102,"code":4}},{"cn0":67,"mesid":{"sat":93,"code":4}},{"cn0":201,"mesid":{"sat":100,"code":4}},{"cn0":195,"mesid":{"sat":101,"code":4}},{"cn0":189,"mesid":{"sat":104,"code":4}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":175,"mesid":{"sat":106,"code":4}},{"cn0":200,"mesid":{"sat":35,"code":12}},{"cn0":172,"mesid":{"sat":26,"code":12}},{"cn0":158,"mesid":{"sat":34,"code":12}},{"cn0":188,"mesid":{"sat":24,"code":12}},{"cn0":159,"mesid":{"sat":25,"code":12}},{"cn0":184,"mesid":{"sat":12,"code":12}},{"cn0":185,"mesid":{"sat":19,"code":12}},{"cn0":192,"mesid":{"sat":22,"code":12}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":209,"mesid":{"sat":12,"code":13}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":196,"mesid":{"sat":12,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":192,"mesid":{"sat":25,"code":14}},{"cn0":190,"mesid":{"sat":11,"code":14}},{"cn0":205,"mesid":{"sat":24,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":160,"mesid":{"sat":31,"code":14}},{"cn0":153,"mesid":{"sat":33,"code":14}},{"cn0":201,"mesid":{"sat":25,"code":20}},{"cn0":215,"mesid":{"sat":24,"code":20}},{"cn0":194,"mesid":{"sat":11,"code":20}},{"cn0":175,"mesid":{"sat":31,"code":20}},{"cn0":206,"mesid":{"sat":12,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":169,"mesid":{"sat":33,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}}],"preamble":85,"sender":22963,"msg_type":97,"payload":"BQDWFQC1AgC7HwCmAAAAAAAAGQDaDADRHQDVEgDOAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwLOGQHMDAG7HwGZEgHFHQHDAAAABQHCAAAAAAAAAAAAAAAAZAPWYgOyZgOuZQPQXQPQAAAAagO2aAPLYgSqZgTNXQRDZATJZQTDaAS9AAAAagSvIwzIGgysIgyeGAy8GQyfDAy4Ewy5FgzAAAAADA3RAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADA7EAAAAGQ7ACw6+GA7NAAAAHw6gIQ6ZGRTJGBTXCxTCHxSvDBTOAAAAIRSpAAAA","crc":31571} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MggYJi8QAAAAAAE=","wn":2098,"tow":271525400,"crc":2493} -{"length":16,"flags":17,"ns":399999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"ERgmLxDkBwMZAxkH/oPXFw==","day":25,"tow":271525400,"year":2020,"crc":28080,"minutes":25,"month":3,"seconds":7} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.318663073738396,"preamble":85,"sender":22963,"msg_type":522,"payload":"GCYvEI3gUexl6kJAqB6fFFaSXsA1Jjjnk1ExwAECWwQPBg==","lat":37.83123544690998,"tow":271525400,"h_accuracy":513,"crc":42041,"lon":-122.2865039400009} -{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"GCYvEPb///8LAAAA/v////EAygIPAg==","n":-10,"d":-2,"tow":271525400,"h_accuracy":241,"crc":22359,"e":11} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"GCYvEJsAhwBMAEgAcgAG","tow":271525400,"crc":8093,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"GCYvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271525400,"h_accuracy":0,"crc":56289,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"GCYvEP//","tow":271525400,"crc":45360} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":9,"l2ca_bias":0,"preamble":85,"l2p_bias":0,"sender":22963,"msg_type":117,"payload":"/wAAAAAAAAAA","l1ca_bias":0,"mask":255,"crc":49809,"l1p_bias":0} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"Mgh8Ji8QAAAAAAE=","wn":2098,"tow":271525500,"crc":28023} -{"length":16,"flags":17,"ns":499999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EXwmLxDkBwMZAxkH/mTNHQ==","day":25,"tow":271525500,"year":2020,"crc":10572,"minutes":25,"month":3,"seconds":7} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.323980403823903,"preamble":85,"sender":22963,"msg_type":522,"payload":"fCYvEA2NLuxl6kJAJWGJFFaSXsDy9zZh8FIxwAECWwQPBg==","lat":37.83123543045995,"tow":271525500,"h_accuracy":513,"crc":30880,"lon":-122.28650391975368} -{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"fCYvEAMAAAABAAAAAwAAAPEAygIPAg==","n":3,"d":3,"tow":271525500,"h_accuracy":241,"crc":29256,"e":1} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"fCYvEJsAhwBMAEgAcgAG","tow":271525500,"crc":13106,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"fCYvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271525500,"h_accuracy":0,"crc":50007,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"fCYvEP//","tow":271525500,"crc":59529} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":51,"text":"GLO L2OF ME 1 [+1449ms] low CN0 too long, dropping","preamble":85,"sender":22963,"msg_type":1025,"payload":"BkdMTyBMMk9GIE1FIDEgWysxNDQ5bXNdIGxvdyBDTjAgdG9vIGxvbmcsIGRyb3BwaW5n","crc":41485,"level":6} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgjgJi8QAAAAAAE=","wn":2098,"tow":271525600,"crc":13355} -{"length":16,"flags":17,"ns":599999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EeAmLxDkBwMZAxkH/kXDIw==","day":25,"tow":271525600,"year":2020,"crc":51783,"minutes":25,"month":3,"seconds":7} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.32606019610572,"preamble":85,"sender":22963,"msg_type":522,"payload":"4CYvEIWo9etl6kJAl3d2FFaSXsApzVaueFMxwAECWwQPBg==","lat":37.83123540396722,"tow":271525600,"h_accuracy":513,"crc":61784,"lon":-122.28650390214021} -{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"4CYvEPf////+////+f////EAygIPAg==","n":-9,"d":-7,"tow":271525600,"h_accuracy":241,"crc":27937,"e":-2} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"4CYvEJsAhwBMAEgAcgAG","tow":271525600,"crc":38237,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"4CYvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271525600,"h_accuracy":0,"crc":15718,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"4CYvEP//","tow":271525600,"crc":11726} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"message_type":28,"length":34,"data":[66,52,201,3,200,33,253,144,247,198,184,125,233,109,22,228,44,242,16,59,122,127,95,111,233,59,16],"preamble":85,"sender":22963,"msg_type":30583,"payload":"gwJiJi8QHEI0yQPIIf2Q98a4feltFuQs8hA7en9fb+k7EA==","tow":271525474,"crc":38650,"sid":{"sat":131,"code":2}} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MghEJy8QAAAAAAE=","wn":2098,"tow":271525700,"crc":63321} -{"length":16,"flags":17,"ns":699999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EUQnLxDkBwMZAxkH/ia5KQ==","day":25,"tow":271525700,"year":2020,"crc":26481,"minutes":25,"month":3,"seconds":7} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.331911056545444,"preamble":85,"sender":22963,"msg_type":522,"payload":"RCcvEGBl4+tl6kJA7ldyFFaSXsAiC30f+FQxwAECWwQPBg==","lat":37.83123539546318,"tow":271525700,"h_accuracy":513,"crc":58556,"lon":-122.28650389829974} -{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"RCcvEAQAAAD7////DAAAAPEAygIPAg==","n":4,"d":12,"tow":271525700,"h_accuracy":241,"crc":9157,"e":-5} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"RCcvEJsAhwBMAEgAcgAG","tow":271525700,"crc":48264,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"RCcvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271525700,"h_accuracy":0,"crc":40937,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"RCcvEP//","tow":271525700,"crc":24598} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgioJy8QAAAAAAE=","wn":2098,"tow":271525800,"crc":1502} -{"length":16,"flags":17,"ns":799999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EagnLxDkBwMZAxkH/gevLw==","day":25,"tow":271525800,"year":2020,"crc":16492,"minutes":25,"month":3,"seconds":7} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.33807732871493,"preamble":85,"sender":22963,"msg_type":522,"payload":"qCcvEJxL2etl6kJAP4FyFFaSXsCEWV48jFYxwAECWwQPBg==","lat":37.8312353907597,"tow":271525800,"h_accuracy":513,"crc":9585,"lon":-122.28650389845005} -{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"qCcvEAQAAAD7////DQAAAPEAygIPAg==","n":4,"d":13,"tow":271525800,"h_accuracy":241,"crc":45056,"e":-5} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"qCcvEJsAhwBMAEgAcgAG","tow":271525800,"crc":58224,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"qCcvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271525800,"h_accuracy":0,"crc":25449,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"qCcvEP//","tow":271525800,"crc":57549} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":237,"states":[{"cn0":214,"mesid":{"sat":5,"code":0}},{"cn0":182,"mesid":{"sat":21,"code":0}},{"cn0":187,"mesid":{"sat":2,"code":0}},{"cn0":165,"mesid":{"sat":31,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":219,"mesid":{"sat":25,"code":0}},{"cn0":209,"mesid":{"sat":12,"code":0}},{"cn0":214,"mesid":{"sat":29,"code":0}},{"cn0":206,"mesid":{"sat":18,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":206,"mesid":{"sat":131,"code":2}},{"cn0":204,"mesid":{"sat":25,"code":1}},{"cn0":187,"mesid":{"sat":12,"code":1}},{"cn0":152,"mesid":{"sat":31,"code":1}},{"cn0":197,"mesid":{"sat":18,"code":1}},{"cn0":195,"mesid":{"sat":29,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":194,"mesid":{"sat":5,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":214,"mesid":{"sat":11,"code":3}},{"cn0":177,"mesid":{"sat":9,"code":3}},{"cn0":174,"mesid":{"sat":20,"code":3}},{"cn0":208,"mesid":{"sat":5,"code":3}},{"cn0":208,"mesid":{"sat":10,"code":3}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":183,"mesid":{"sat":4,"code":3}},{"cn0":203,"mesid":{"sat":21,"code":3}},{"cn0":171,"mesid":{"sat":9,"code":4}},{"cn0":205,"mesid":{"sat":20,"code":4}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":201,"mesid":{"sat":11,"code":4}},{"cn0":195,"mesid":{"sat":5,"code":4}},{"cn0":188,"mesid":{"sat":0,"code":4}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":175,"mesid":{"sat":4,"code":4}},{"cn0":200,"mesid":{"sat":35,"code":12}},{"cn0":172,"mesid":{"sat":26,"code":12}},{"cn0":158,"mesid":{"sat":34,"code":12}},{"cn0":188,"mesid":{"sat":24,"code":12}},{"cn0":159,"mesid":{"sat":25,"code":12}},{"cn0":185,"mesid":{"sat":12,"code":12}},{"cn0":185,"mesid":{"sat":19,"code":12}},{"cn0":192,"mesid":{"sat":22,"code":12}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":208,"mesid":{"sat":12,"code":13}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":196,"mesid":{"sat":12,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":193,"mesid":{"sat":25,"code":14}},{"cn0":190,"mesid":{"sat":11,"code":14}},{"cn0":206,"mesid":{"sat":24,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":160,"mesid":{"sat":31,"code":14}},{"cn0":153,"mesid":{"sat":33,"code":14}},{"cn0":201,"mesid":{"sat":25,"code":20}},{"cn0":215,"mesid":{"sat":24,"code":20}},{"cn0":193,"mesid":{"sat":11,"code":20}},{"cn0":175,"mesid":{"sat":31,"code":20}},{"cn0":206,"mesid":{"sat":12,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":168,"mesid":{"sat":33,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}}],"preamble":85,"sender":22963,"msg_type":97,"payload":"BQDWFQC2AgC7HwClAAAAAAAAGQDbDADRHQDWEgDOAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwLOGQHMDAG7HwGYEgHFHQHDAAAABQHCAAAAAAAAAAAAAAAACwPWCQOxFAOuBQPQCgPQAAAABAO3FQPLCQSrFATNAAAACwTJBQTDAAS8AAAABASvIwzIGgysIgyeGAy8GQyfDAy5Ewy5FgzAAAAADA3QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADA7EAAAAGQ7BCw6+GA7OAAAAHw6gIQ6ZGRTJGBTXCxTBHxSvDBTOAAAAIRSoAAAA","crc":63332} -{"length":128,"preamble":85,"sender":22963,"msg_type":151,"payload":"AgAaHQUAKzUMAFEtFQB9GRkAbUYaAKEBHQChNx8AlQ4EAxUWBQMyIQkDXw4KA3EpCwOYJQwDqgMTAyIHFAMMMRUDlSUMDJQpEwwjIBQMDwIWDEMkGAyCIxkMnQ4aDGcVIgyOESMMIi0LDosyDA4PPBgObDYZDpcpHw5VESEOIA8=","crc":34187,"azel":[{"el":29,"az":26,"sid":{"sat":2,"code":0}},{"el":53,"az":43,"sid":{"sat":5,"code":0}},{"el":45,"az":81,"sid":{"sat":12,"code":0}},{"el":25,"az":125,"sid":{"sat":21,"code":0}},{"el":70,"az":109,"sid":{"sat":25,"code":0}},{"el":1,"az":161,"sid":{"sat":26,"code":0}},{"el":55,"az":161,"sid":{"sat":29,"code":0}},{"el":14,"az":149,"sid":{"sat":31,"code":0}},{"el":22,"az":21,"sid":{"sat":4,"code":3}},{"el":33,"az":50,"sid":{"sat":5,"code":3}},{"el":14,"az":95,"sid":{"sat":9,"code":3}},{"el":41,"az":113,"sid":{"sat":10,"code":3}},{"el":37,"az":152,"sid":{"sat":11,"code":3}},{"el":3,"az":170,"sid":{"sat":12,"code":3}},{"el":7,"az":34,"sid":{"sat":19,"code":3}},{"el":49,"az":12,"sid":{"sat":20,"code":3}},{"el":37,"az":149,"sid":{"sat":21,"code":3}},{"el":41,"az":148,"sid":{"sat":12,"code":12}},{"el":32,"az":35,"sid":{"sat":19,"code":12}},{"el":2,"az":15,"sid":{"sat":20,"code":12}},{"el":36,"az":67,"sid":{"sat":22,"code":12}},{"el":35,"az":130,"sid":{"sat":24,"code":12}},{"el":14,"az":157,"sid":{"sat":25,"code":12}},{"el":21,"az":103,"sid":{"sat":26,"code":12}},{"el":17,"az":142,"sid":{"sat":34,"code":12}},{"el":45,"az":34,"sid":{"sat":35,"code":12}},{"el":50,"az":139,"sid":{"sat":11,"code":14}},{"el":60,"az":15,"sid":{"sat":12,"code":14}},{"el":54,"az":108,"sid":{"sat":24,"code":14}},{"el":41,"az":151,"sid":{"sat":25,"code":14}},{"el":17,"az":85,"sid":{"sat":31,"code":14}},{"el":15,"az":32,"sid":{"sat":33,"code":14}}]} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MggMKC8QAAAAAAE=","wn":2098,"tow":271525900,"crc":22717} -{"length":16,"flags":17,"ns":899999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EQwoLxDkBwMZAxkH/uikNQ==","day":25,"tow":271525900,"year":2020,"crc":27188,"minutes":25,"month":3,"seconds":7} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.346337066425992,"preamble":85,"sender":22963,"msg_type":522,"payload":"DCgvEMbj2Otl6kJAs+NqFFaSXsA1scWLqVgxwAECWwQPBg==","lat":37.831235390570825,"tow":271525900,"h_accuracy":513,"crc":6655,"lon":-122.28650389135764} -{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"DCgvEAIAAAAFAAAABwAAAPEAygIPAg==","n":2,"d":7,"tow":271525900,"h_accuracy":241,"crc":50008,"e":5} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"DCgvEJsAhwBMAEgAcgAG","tow":271525900,"crc":10921,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"DCgvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271525900,"h_accuracy":0,"crc":53990,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"DCgvEP//","tow":271525900,"crc":25277} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":249,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":217,"i":110566254},"flags":15,"cn0":214,"P":1052002802,"D":{"f":187,"i":-189},"lock":15,"sid":{"sat":5,"code":0}},{"L":{"f":80,"i":121800834},"flags":15,"cn0":181,"P":1158896423,"D":{"f":140,"i":2171},"lock":15,"sid":{"sat":21,"code":0}},{"L":{"f":101,"i":123365588},"flags":15,"cn0":187,"P":1173784131,"D":{"f":143,"i":-2478},"lock":15,"sid":{"sat":2,"code":0}},{"L":{"f":38,"i":128742748},"flags":15,"cn0":165,"P":1224946524,"D":{"f":240,"i":-400},"lock":15,"sid":{"sat":31,"code":0}},{"L":{"f":74,"i":107835721},"flags":15,"cn0":219,"P":1026022706,"D":{"f":108,"i":-1132},"lock":15,"sid":{"sat":25,"code":0}},{"L":{"f":105,"i":114131398},"flags":15,"cn0":209,"P":1085924060,"D":{"f":132,"i":-2971},"lock":15,"sid":{"sat":12,"code":0}},{"L":{"f":150,"i":110744582},"flags":15,"cn0":214,"P":1053699581,"D":{"f":79,"i":1483},"lock":15,"sid":{"sat":29,"code":0}},{"L":{"f":66,"i":84027855},"flags":15,"cn0":204,"P":1026022747,"D":{"f":150,"i":-883},"lock":15,"sid":{"sat":25,"code":1}},{"L":{"f":211,"i":88933588},"flags":15,"cn0":187,"P":1085923957,"D":{"f":200,"i":-2313},"lock":15,"sid":{"sat":12,"code":1}},{"L":{"f":236,"i":100319026},"flags":15,"cn0":152,"P":1224946471,"D":{"f":92,"i":-312},"lock":15,"sid":{"sat":31,"code":1}},{"L":{"f":198,"i":86294481},"flags":15,"cn0":195,"P":1053699508,"D":{"f":10,"i":1155},"lock":15,"sid":{"sat":29,"code":1}},{"L":{"f":135,"i":86155552},"flags":15,"cn0":194,"P":1052002735,"D":{"f":74,"i":-147},"lock":15,"sid":{"sat":5,"code":1}},{"L":{"f":141,"i":112923646},"flags":15,"cn0":214,"P":1056605730,"D":{"f":14,"i":1158},"lock":15,"sid":{"sat":11,"code":3}},{"L":{"f":75,"i":123385999},"flags":15,"cn0":178,"P":1155311429,"D":{"f":205,"i":-4408},"lock":15,"sid":{"sat":9,"code":3}}],"payload":"cCgvEAAAAAAyCEDySbQ+bhuXBtlD/7vWDw8FACdbE0WCiEIHUHsIjLUPDxUAQ4b2RdRoWgdlUvaPuw8PAgBcMwNJXHWsByZw/vClDw8fADLdJz1JcW0GSpT7bNsPDxkA3OK5QMaBzQZpZfSE0Q8PDAD9Lc4+BtSZBpbLBU/WDw8dAFvdJz3PKQIFQo38lswPDxkBdeK5QNQETQXT9/bIuw8PDAEnMwNJMr/6BezI/lyYDw8fAbQtzj7RvyQFxoMECsMPDx0Br0m0PiChIgWHbf9Kwg8PBQEihvo+/hO7Bo2GBA7WDw8LA0Wn3ESPuFoHS8juzbIPDwkD","header":{"n_obs":64,"t":{"ns_residual":0,"wn":2098,"tow":271526000}},"crc":62956} -{"length":249,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":202,"i":109784832},"flags":15,"cn0":174,"P":1026515521,"D":{"f":79,"i":-1210},"lock":15,"sid":{"sat":20,"code":3}},{"L":{"f":218,"i":114834435},"flags":15,"cn0":208,"P":1074107456,"D":{"f":159,"i":2192},"lock":15,"sid":{"sat":5,"code":3}},{"L":{"f":149,"i":111639433},"flags":15,"cn0":208,"P":1047163341,"D":{"f":108,"i":-3049},"lock":15,"sid":{"sat":10,"code":3}},{"L":{"f":99,"i":120454049},"flags":15,"cn0":183,"P":1124696928,"D":{"f":152,"i":-1324},"lock":15,"sid":{"sat":4,"code":3}},{"L":{"f":205,"i":113400770},"flags":15,"cn0":203,"P":1059581772,"D":{"f":241,"i":1621},"lock":15,"sid":{"sat":21,"code":3}},{"L":{"f":253,"i":95966897},"flags":15,"cn0":172,"P":1155311535,"D":{"f":10,"i":-3427},"lock":15,"sid":{"sat":9,"code":4}},{"L":{"f":4,"i":85388239},"flags":15,"cn0":205,"P":1026515893,"D":{"f":161,"i":-942},"lock":15,"sid":{"sat":20,"code":4}},{"L":{"f":51,"i":87829513},"flags":15,"cn0":201,"P":1056606025,"D":{"f":200,"i":901},"lock":15,"sid":{"sat":11,"code":4}},{"L":{"f":31,"i":89315676},"flags":15,"cn0":195,"P":1074107747,"D":{"f":17,"i":1704},"lock":15,"sid":{"sat":5,"code":4}},{"L":{"f":25,"i":93686473},"flags":15,"cn0":175,"P":1124697121,"D":{"f":9,"i":-1029},"lock":15,"sid":{"sat":4,"code":4}},{"L":{"f":59,"i":121597530},"flags":15,"cn0":200,"P":1167576073,"D":{"f":157,"i":-1500},"lock":15,"sid":{"sat":35,"code":12}},{"L":{"f":135,"i":129247205},"flags":15,"cn0":172,"P":1241028404,"D":{"f":75,"i":-3007},"lock":15,"sid":{"sat":26,"code":12}},{"L":{"f":4,"i":132919613},"flags":15,"cn0":158,"P":1276290497,"D":{"f":23,"i":2252},"lock":15,"sid":{"sat":34,"code":12}},{"L":{"f":38,"i":125166618},"flags":15,"cn0":188,"P":1201846668,"D":{"f":44,"i":-1307},"lock":15,"sid":{"sat":24,"code":12}}],"payload":"cCgvEAAAAAAyCEFBYi89AC+LBspG+0+uDw8UA0CUBUADPNgG2pAIn9APDwUDzXFqPol7pwaVF/Rs0A8PCgNggwlDofstB2PU+pi3Dw8EA0zvJz/CW8IGzVUG8csPDxUDr6fcRLFWuAX9nfIKrA8PCQS1Yy89z+sWBQRS/KHNDw8UBEmH+j4JLDwFM4UDyMkPDwsEY5UFQFzZUgUfqAYRww8PBQQhhAlDyYqVBRn7+wmvDw8EBAnMl0Vabj8HOyT6ncgPDyMMNJf4SeUntAeHQfRLrA8PGgzBpRJMPTHsBwTMCBeeDw8iDIy5okca5HUHJuX6LLwPDxgM","header":{"n_obs":65,"t":{"ns_residual":0,"wn":2098,"tow":271526000}},"crc":27044} -{"length":249,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":50,"i":134656628},"flags":15,"cn0":159,"P":1292969459,"D":{"f":235,"i":1321},"lock":15,"sid":{"sat":25,"code":12}},{"L":{"f":228,"i":121081033},"flags":15,"cn0":184,"P":1162616944,"D":{"f":150,"i":1611},"lock":15,"sid":{"sat":12,"code":12}},{"L":{"f":80,"i":124518367},"flags":15,"cn0":185,"P":1195622120,"D":{"f":183,"i":-294},"lock":15,"sid":{"sat":19,"code":12}},{"L":{"f":67,"i":124676373},"flags":15,"cn0":192,"P":1197139326,"D":{"f":194,"i":2385},"lock":15,"sid":{"sat":22,"code":12}},{"L":{"f":123,"i":93627544},"flags":15,"cn0":208,"P":1162616875,"D":{"f":44,"i":1247},"lock":15,"sid":{"sat":12,"code":13}},{"L":{"f":214,"i":116438208},"flags":15,"cn0":196,"P":1107872704,"D":{"f":217,"i":-1029},"lock":15,"sid":{"sat":12,"code":14}},{"L":{"f":182,"i":132461982},"flags":15,"cn0":193,"P":1260333773,"D":{"f":215,"i":1084},"lock":15,"sid":{"sat":25,"code":14}},{"L":{"f":153,"i":125410168},"flags":15,"cn0":191,"P":1193238012,"D":{"f":179,"i":1047},"lock":15,"sid":{"sat":11,"code":14}},{"L":{"f":250,"i":118434610},"flags":15,"cn0":205,"P":1126867725,"D":{"f":79,"i":-1748},"lock":15,"sid":{"sat":24,"code":14}},{"L":{"f":127,"i":143359049},"flags":15,"cn0":160,"P":1364015974,"D":{"f":113,"i":-3174},"lock":15,"sid":{"sat":31,"code":14}},{"L":{"f":229,"i":144549581},"flags":15,"cn0":154,"P":1375343521,"D":{"f":233,"i":-2140},"lock":15,"sid":{"sat":33,"code":14}},{"L":{"f":75,"i":101496842},"flags":15,"cn0":201,"P":1260333760,"D":{"f":27,"i":831},"lock":15,"sid":{"sat":25,"code":20}},{"L":{"f":146,"i":90748661},"flags":15,"cn0":215,"P":1126868271,"D":{"f":75,"i":-1339},"lock":15,"sid":{"sat":24,"code":20}},{"L":{"f":164,"i":96093483},"flags":15,"cn0":194,"P":1193237831,"D":{"f":165,"i":803},"lock":15,"sid":{"sat":11,"code":20}}],"payload":"cCgvEAAAAAAyCELzJRFNdLIGCDIpBeufDw8ZDHAgTEXJjDcH5EsGlrgPDwwM6L5DR9//awdQ2v63uQ8PEwx+5VpHFWluB0NRCcLADw8WDCsgTEWYpJQFe98ELNAPDwwNwMsIQsC08AbW+/vZxA8PDA7NKh9LnjXlB7Y8BNfBDw8ZDvxdH0d4m3kHmRcEs78PDwsODaMqQzIrDwf6LPlPzQ8PGA5mO01RSXyLCH+a83GgDw8fDqET+lHNpp0I5aT36ZoPDyEOwCofSwq4DAZLPwMbyQ8PGRQvpSpD9bZoBZLF+kvXDw8YFEddH0crRboFpCMDpcIPDwsU","header":{"n_obs":66,"t":{"ns_residual":0,"wn":2098,"tow":271526000}},"crc":22451} -{"length":62,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":233,"i":109846585},"flags":15,"cn0":175,"P":1364016068,"D":{"f":250,"i":-2431},"lock":15,"sid":{"sat":31,"code":20}},{"L":{"f":227,"i":89218917},"flags":15,"cn0":206,"P":1107872537,"D":{"f":47,"i":-786},"lock":15,"sid":{"sat":12,"code":20}},{"L":{"f":2,"i":110758841},"flags":15,"cn0":168,"P":1375343483,"D":{"f":49,"i":-1639},"lock":15,"sid":{"sat":33,"code":20}}],"payload":"cCgvEAAAAAAyCEPEO01ROSCMBumB9vqvDw8fFBnLCEJlX1EF4+78L84PDwwUexP6UbkLmgYCmfkxqA8PIRQ=","header":{"n_obs":67,"t":{"ns_residual":0,"wn":2098,"tow":271526000}},"crc":2370} -{"length":9,"l2ca_bias":0,"preamble":85,"l2p_bias":0,"sender":22963,"msg_type":117,"payload":"/wAAAAAAAAAA","l1ca_bias":0,"mask":255,"crc":49809,"l1p_bias":0} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MghwKC8QAAAAAAE=","wn":2098,"tow":271526000,"crc":18038} -{"length":16,"flags":17,"ns":999999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EXAoLxDkBwMZAxkH/smaOw==","day":25,"tow":271526000,"year":2020,"crc":23030,"minutes":25,"month":3,"seconds":7} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.358330799109996,"preamble":85,"sender":22963,"msg_type":522,"payload":"cCgvECeJ0Otl6kJA40RjFFaSXsC1UzeRu1sxwAECWwQPBg==","lat":37.831235386680696,"tow":271526000,"h_accuracy":513,"crc":5258,"lon":-122.28650388426063} -{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"cCgvEPv///8IAAAABgAAAPEAygIPAg==","n":-5,"d":6,"tow":271526000,"h_accuracy":241,"crc":5540,"e":8} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"cCgvEJsAhwBMAEgAcgAG","tow":271526000,"crc":28617,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"cCgvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271526000,"h_accuracy":0,"crc":10677,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"cCgvEP//","tow":271526000,"crc":11458} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":4,"flags":2147616000,"preamble":85,"sender":22963,"msg_type":65535,"payload":"AAUCgA==","crc":40942} -{"length":24,"z":3890655.0240602265,"preamble":85,"sender":22963,"msg_type":72,"payload":"UO0a3iqORMHK1UJhIkRQwc9nFIPvrk1B","crc":2168,"x":-2694229.735196747,"y":-4264073.519704292} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"bWFpbgAAAAAAAAAAAAAAAAAAAAAAAAx1AAA=","name":"main\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":47991,"stack_free":29964,"cpu":0} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"aWRsZQAAAAAAAAAAAAAAAAAAAAABAXwAAAA=","name":"idle\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":43937,"stack_free":124,"cpu":257} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"cnBtc2cAAAAAAAAAAAAAAAAAAAABANwNAAA=","name":"rpmsg\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":58151,"stack_free":3548,"cpu":1} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"U0JQAAAAAAAAAAAAAAAAAAAAAAAAAPz/AAA=","name":"SBP\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":51784,"stack_free":65532,"cpu":0} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"TkFQAAAAAAAAAAAAAAAAAAAAAAAAAASAAAA=","name":"NAP\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":33651,"stack_free":32772,"cpu":0} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"bWFuYWdlIFBWAAAAAAAAAAAAAAAAABQEAAA=","name":"manage PV\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":22620,"stack_free":1044,"cpu":0} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"SU1VAAAAAAAAAAAAAAAAAAAAAAAAAPQHAAA=","name":"IMU\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":14252,"stack_free":2036,"cpu":0} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"SU1VIGF1eAAAAAAAAAAAAAAAAAAAAEwIAAA=","name":"IMU aux\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":18976,"stack_free":2124,"cpu":0} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"bmRiAAAAAAAAAAAAAAAAAAAAAAAAAFAMAAA=","name":"ndb\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":26120,"stack_free":3152,"cpu":0} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"TkFQIFRyYWNraW5nAAAAAAAAAAAfAdR3AAA=","name":"NAP Tracking\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":49551,"stack_free":30676,"cpu":287} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"ZGVjb2RlAAAAAAAAAAAAAAAAAAAIANQGAAA=","name":"decode\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":40082,"stack_free":1748,"cpu":8} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"bWFuYWdlIGFjcQAAAAAAAAAAAAAdAaR3AAA=","name":"manage acq\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":5608,"stack_free":30628,"cpu":285} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"c3lzdGVtIG1vbml0b3IAAAAAAAAAACwGAAA=","name":"system monitor\u0000\u0000\u0000\u0000\u0000\u0000","crc":58531,"stack_free":1580,"cpu":0} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"V2F0Y2hkb2cAAAAAAAAAAAAAAAAAAOQDAAA=","name":"Watchdog\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":44438,"stack_free":996,"cpu":0} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"c3RhcmxpbmcAAAAAAAAAAAAAAACVAPz/AAA=","name":"starling\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":15999,"stack_free":65532,"cpu":149} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"bWVfY2FsY19wdnQAAAAAAAAAAAAJAIwjAAA=","name":"me_calc_pvt\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":57561,"stack_free":9100,"cpu":9} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"UFBTAAAAAAAAAAAAAAAAAAAAAAAAAEgHAAA=","name":"PPS\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":38576,"stack_free":1864,"cpu":0} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"c3BlY3RydW0gYW5hbHl6ZXIAAAAAANQPAAA=","name":"spectrum analyzer\u0000\u0000\u0000","crc":50933,"stack_free":4052,"cpu":0} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgjUKC8QAAAAAAE=","wn":2098,"tow":271526100,"crc":49879} -{"length":16,"flags":17,"ns":99999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EdQoLxDkBwMZAxkI/uD1BQ==","day":25,"tow":271526100,"year":2020,"crc":47717,"minutes":25,"month":3,"seconds":8} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.3689912887542,"preamble":85,"sender":22963,"msg_type":522,"payload":"1CgvEEnUzutl6kJA6IRnFFaSXsBLtY02dl4xwAECWwQPBg==","lat":37.83123538588604,"tow":271526100,"h_accuracy":513,"crc":9344,"lon":-122.28650388821882} -{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"1CgvEPv///8BAAAA+v////EAygIPAg==","n":-5,"d":-6,"tow":271526100,"h_accuracy":241,"crc":37663,"e":1} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"1CgvEJsAhwBMAEgAcgAG","tow":271526100,"crc":15741,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"1CgvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271526100,"h_accuracy":0,"crc":24268,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"1CgvEP//","tow":271526100,"crc":52043} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"Mgg4KS8QAAAAAAE=","wn":2098,"tow":271526200,"crc":30595} -{"length":16,"flags":17,"ns":199999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"ETgpLxDkBwMZAxkI/sHrCw==","day":25,"tow":271526200,"year":2020,"crc":61112,"minutes":25,"month":3,"seconds":8} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.384027432884572,"preamble":85,"sender":22963,"msg_type":522,"payload":"OCkvEJWPwetl6kJA5SFjFFaSXsCOATGfT2IxwAECWwQPBg==","lat":37.83123537970747,"tow":271526200,"h_accuracy":513,"crc":36493,"lon":-122.28650388413332} -{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"OCkvEPf///8DAAAAFgAAAPEAygIPAg==","n":-9,"d":22,"tow":271526200,"h_accuracy":241,"crc":47165,"e":3} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"OCkvEJsAhwBMAEgAcgAG","tow":271526200,"crc":6628,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"OCkvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271526200,"h_accuracy":0,"crc":30650,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"OCkvEP//","tow":271526200,"crc":57793} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgicKS8QAAAAAAE=","wn":2098,"tow":271526300,"crc":62242} -{"length":16,"flags":17,"ns":299999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EZwpLxDkBwMZAxkI/qLhEQ==","day":25,"tow":271526300,"year":2020,"crc":8839,"minutes":25,"month":3,"seconds":8} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.396733803151225,"preamble":85,"sender":22963,"msg_type":522,"payload":"nCkvEJMw2+tl6kJALhNuFFaSXsCRwLVYkGUxwAECWwQPBg==","lat":37.83123539164185,"tow":271526300,"h_accuracy":513,"crc":51239,"lon":-122.28650389432434} -{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"nCkvEA0AAADu/////P////EAygIPAg==","n":13,"d":-4,"tow":271526300,"h_accuracy":241,"crc":31540,"e":-18} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"nCkvEJsAhwBMAEgAcgAG","tow":271526300,"crc":19280,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"nCkvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271526300,"h_accuracy":0,"crc":195,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"nCkvEP//","tow":271526300,"crc":1608} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":237,"states":[{"cn0":214,"mesid":{"sat":5,"code":0}},{"cn0":181,"mesid":{"sat":21,"code":0}},{"cn0":187,"mesid":{"sat":2,"code":0}},{"cn0":165,"mesid":{"sat":31,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":218,"mesid":{"sat":25,"code":0}},{"cn0":209,"mesid":{"sat":12,"code":0}},{"cn0":213,"mesid":{"sat":29,"code":0}},{"cn0":206,"mesid":{"sat":18,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":205,"mesid":{"sat":131,"code":2}},{"cn0":204,"mesid":{"sat":25,"code":1}},{"cn0":187,"mesid":{"sat":12,"code":1}},{"cn0":152,"mesid":{"sat":31,"code":1}},{"cn0":197,"mesid":{"sat":18,"code":1}},{"cn0":195,"mesid":{"sat":29,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":194,"mesid":{"sat":5,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":213,"mesid":{"sat":100,"code":3}},{"cn0":178,"mesid":{"sat":98,"code":3}},{"cn0":174,"mesid":{"sat":102,"code":3}},{"cn0":207,"mesid":{"sat":101,"code":3}},{"cn0":208,"mesid":{"sat":93,"code":3}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":183,"mesid":{"sat":106,"code":3}},{"cn0":203,"mesid":{"sat":104,"code":3}},{"cn0":171,"mesid":{"sat":98,"code":4}},{"cn0":205,"mesid":{"sat":102,"code":4}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":201,"mesid":{"sat":100,"code":4}},{"cn0":195,"mesid":{"sat":101,"code":4}},{"cn0":188,"mesid":{"sat":104,"code":4}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":175,"mesid":{"sat":106,"code":4}},{"cn0":200,"mesid":{"sat":35,"code":12}},{"cn0":172,"mesid":{"sat":26,"code":12}},{"cn0":158,"mesid":{"sat":34,"code":12}},{"cn0":188,"mesid":{"sat":24,"code":12}},{"cn0":159,"mesid":{"sat":25,"code":12}},{"cn0":184,"mesid":{"sat":12,"code":12}},{"cn0":185,"mesid":{"sat":19,"code":12}},{"cn0":192,"mesid":{"sat":22,"code":12}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":208,"mesid":{"sat":12,"code":13}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":196,"mesid":{"sat":12,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":193,"mesid":{"sat":25,"code":14}},{"cn0":190,"mesid":{"sat":11,"code":14}},{"cn0":205,"mesid":{"sat":24,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":159,"mesid":{"sat":31,"code":14}},{"cn0":153,"mesid":{"sat":33,"code":14}},{"cn0":201,"mesid":{"sat":25,"code":20}},{"cn0":215,"mesid":{"sat":24,"code":20}},{"cn0":194,"mesid":{"sat":11,"code":20}},{"cn0":175,"mesid":{"sat":31,"code":20}},{"cn0":206,"mesid":{"sat":12,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":168,"mesid":{"sat":33,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}}],"preamble":85,"sender":22963,"msg_type":97,"payload":"BQDWFQC1AgC7HwClAAAAAAAAGQDaDADRHQDVEgDOAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwLNGQHMDAG7HwGYEgHFHQHDAAAABQHCAAAAAAAAAAAAAAAAZAPVYgOyZgOuZQPPXQPQAAAAagO3aAPLYgSrZgTNAAAAZATJZQTDaAS8AAAAagSvIwzIGgysIgyeGAy8GQyfDAy4Ewy5FgzAAAAADA3QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADA7EAAAAGQ7BCw6+GA7NAAAAHw6fIQ6ZGRTJGBTXCxTCHxSvDBTOAAAAIRSoAAAA","crc":47831} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MggAKi8QAAAAAAE=","wn":2098,"tow":271526400,"crc":25099} -{"length":16,"flags":17,"ns":399999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EQAqLxDkBwMZAxkI/oPXFw==","day":25,"tow":271526400,"year":2020,"crc":30536,"minutes":25,"month":3,"seconds":8} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.409479337415522,"preamble":85,"sender":22963,"msg_type":522,"payload":"ACovEHiC5+tl6kJAZ2dWFFaSXsBhlkqj02gxwAECWwQPBg==","lat":37.83123539737875,"tow":271526400,"h_accuracy":513,"crc":23064,"lon":-122.286503872279} -{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"ACovEAQAAAAJAAAACAAAAPEAygIPAg==","n":4,"d":8,"tow":271526400,"h_accuracy":241,"crc":49644,"e":9} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"ACovEJsAhwBMAEgAcgAG","tow":271526400,"crc":24732,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"ACovEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271526400,"h_accuracy":0,"crc":37065,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"ACovEP//","tow":271526400,"crc":11741} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":9,"l2ca_bias":0,"preamble":85,"l2p_bias":0,"sender":22963,"msg_type":117,"payload":"/wAAAAAAAAAA","l1ca_bias":0,"mask":255,"crc":49809,"l1p_bias":0} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MghkKi8QAAAAAAE=","wn":2098,"tow":271526500,"crc":1729} -{"length":16,"flags":17,"ns":499999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EWQqLxDkBwMZAxkI/mTNHQ==","day":25,"tow":271526500,"year":2020,"crc":13236,"minutes":25,"month":3,"seconds":8} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.420461704490428,"preamble":85,"sender":22963,"msg_type":522,"payload":"ZCovEH161utl6kJAwFFGFFaSXsC+AdZgo2sxwAECWwQPBg==","lat":37.83123538944799,"tow":271526500,"h_accuracy":513,"crc":38759,"lon":-122.28650385729907} -{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"ZCovEPT////+////GwAAAPEAygIPAg==","n":-12,"d":27,"tow":271526500,"h_accuracy":241,"crc":5344,"e":-2} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"ZCovEJsAhwBMAEgAcgAG","tow":271526500,"crc":19507,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"ZCovEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271526500,"h_accuracy":0,"crc":34943,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"ZCovEP//","tow":271526500,"crc":29796} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgjIKi8QAAAAAAE=","wn":2098,"tow":271526600,"crc":43935} -{"length":16,"flags":17,"ns":599999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EcgqLxDkBwMZAxkI/kXDIw==","day":25,"tow":271526600,"year":2020,"crc":801,"minutes":25,"month":3,"seconds":8} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.426516021953287,"preamble":85,"sender":22963,"msg_type":522,"payload":"yCovEL9J3Otl6kJAb1EkFFaSXsBngm0nMG0xwAECWwQPBg==","lat":37.831235392153296,"tow":271526600,"h_accuracy":513,"crc":30978,"lon":-122.28650382563295} -{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"yCovEAIAAAAIAAAAAQAAAPEAygIPAg==","n":2,"d":1,"tow":271526600,"h_accuracy":241,"crc":44555,"e":8} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"yCovEJsAhwBMAEgAcgAG","tow":271526600,"crc":14786,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"yCovEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271526600,"h_accuracy":0,"crc":41381,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"yCovEP//","tow":271526600,"crc":40623} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"message_type":3,"length":34,"data":[23,255,0,15,253,127,247,255,0,23,255,255,231,255,127,240,0,255,240,0,232,206,246,231,239,229,112],"preamble":85,"sender":22963,"msg_type":30583,"payload":"gwJHKi8QAxf/AA/9f/f/ABf//+f/f/AA//AA6M725+/lcA==","tow":271526471,"crc":11616,"sid":{"sat":131,"code":2}} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MggsKy8QAAAAAAE=","wn":2098,"tow":271526700,"crc":14132} -{"length":16,"flags":17,"ns":699999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"ESwrLxDkBwMZAxkI/ia5KQ==","day":25,"tow":271526700,"year":2020,"crc":33822,"minutes":25,"month":3,"seconds":8} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.429499730688164,"preamble":85,"sender":22963,"msg_type":522,"payload":"LCsvEPy9Aexl6kJACfEZFFaSXsBM8sCx820xwAECWwQPBg==","lat":37.8312354095942,"tow":271526700,"h_accuracy":513,"crc":11857,"lon":-122.28650381596903} -{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"LCsvEBAAAADz////+/////EAygIPAg==","n":16,"d":-5,"tow":271526700,"h_accuracy":241,"crc":6435,"e":-13} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"LCsvEJsAhwBMAEgAcgAG","tow":271526700,"crc":14878,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"LCsvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271526700,"h_accuracy":0,"crc":54896,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"LCsvEP//","tow":271526700,"crc":47463} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgiQKy8QAAAAAAE=","wn":2098,"tow":271526800,"crc":51604} -{"length":16,"flags":17,"ns":799999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EZArLxDkBwMZAxkI/gevLw==","day":25,"tow":271526800,"year":2020,"crc":51072,"minutes":25,"month":3,"seconds":8} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.43490116359639,"preamble":85,"sender":22963,"msg_type":522,"payload":"kCsvEB8M9+tl6kJAAjL1E1aSXsCLo8KuVW8xwAECWwQPBg==","lat":37.831235404614056,"tow":271526800,"h_accuracy":513,"crc":62822,"lon":-122.28650378174646} -{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"kCsvEPT///8QAAAAAwAAAPEAygIPAg==","n":-12,"d":3,"tow":271526800,"h_accuracy":241,"crc":37035,"e":16} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"kCsvEJsAhwBMAEgAcgAG","tow":271526800,"crc":357,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"kCsvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271526800,"h_accuracy":0,"crc":17132,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"kCsvEP//","tow":271526800,"crc":18728} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":237,"states":[{"cn0":214,"mesid":{"sat":5,"code":0}},{"cn0":181,"mesid":{"sat":21,"code":0}},{"cn0":187,"mesid":{"sat":2,"code":0}},{"cn0":165,"mesid":{"sat":31,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":218,"mesid":{"sat":25,"code":0}},{"cn0":209,"mesid":{"sat":12,"code":0}},{"cn0":213,"mesid":{"sat":29,"code":0}},{"cn0":207,"mesid":{"sat":18,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":206,"mesid":{"sat":131,"code":2}},{"cn0":204,"mesid":{"sat":25,"code":1}},{"cn0":187,"mesid":{"sat":12,"code":1}},{"cn0":152,"mesid":{"sat":31,"code":1}},{"cn0":197,"mesid":{"sat":18,"code":1}},{"cn0":195,"mesid":{"sat":29,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":194,"mesid":{"sat":5,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":213,"mesid":{"sat":11,"code":3}},{"cn0":178,"mesid":{"sat":9,"code":3}},{"cn0":173,"mesid":{"sat":20,"code":3}},{"cn0":207,"mesid":{"sat":5,"code":3}},{"cn0":208,"mesid":{"sat":10,"code":3}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":183,"mesid":{"sat":4,"code":3}},{"cn0":203,"mesid":{"sat":21,"code":3}},{"cn0":171,"mesid":{"sat":9,"code":4}},{"cn0":205,"mesid":{"sat":20,"code":4}},{"cn0":88,"mesid":{"sat":10,"code":4}},{"cn0":201,"mesid":{"sat":11,"code":4}},{"cn0":195,"mesid":{"sat":5,"code":4}},{"cn0":189,"mesid":{"sat":0,"code":4}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":175,"mesid":{"sat":4,"code":4}},{"cn0":200,"mesid":{"sat":35,"code":12}},{"cn0":172,"mesid":{"sat":26,"code":12}},{"cn0":158,"mesid":{"sat":34,"code":12}},{"cn0":188,"mesid":{"sat":24,"code":12}},{"cn0":158,"mesid":{"sat":25,"code":12}},{"cn0":184,"mesid":{"sat":12,"code":12}},{"cn0":185,"mesid":{"sat":19,"code":12}},{"cn0":192,"mesid":{"sat":22,"code":12}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":208,"mesid":{"sat":12,"code":13}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":196,"mesid":{"sat":12,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":193,"mesid":{"sat":25,"code":14}},{"cn0":190,"mesid":{"sat":11,"code":14}},{"cn0":205,"mesid":{"sat":24,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":160,"mesid":{"sat":31,"code":14}},{"cn0":153,"mesid":{"sat":33,"code":14}},{"cn0":201,"mesid":{"sat":25,"code":20}},{"cn0":215,"mesid":{"sat":24,"code":20}},{"cn0":193,"mesid":{"sat":11,"code":20}},{"cn0":174,"mesid":{"sat":31,"code":20}},{"cn0":206,"mesid":{"sat":12,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":169,"mesid":{"sat":33,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}}],"preamble":85,"sender":22963,"msg_type":97,"payload":"BQDWFQC1AgC7HwClAAAAAAAAGQDaDADRHQDVEgDPAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwLOGQHMDAG7HwGYEgHFHQHDAAAABQHCAAAAAAAAAAAAAAAACwPVCQOyFAOtBQPPCgPQAAAABAO3FQPLCQSrFATNCgRYCwTJBQTDAAS9AAAABASvIwzIGgysIgyeGAy8GQyeDAy4Ewy5FgzAAAAADA3QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADA7EAAAAGQ7BCw6+GA7NAAAAHw6gIQ6ZGRTJGBTXCxTBHxSuDBTOAAAAIRSpAAAA","crc":36424} -{"length":128,"preamble":85,"sender":22963,"msg_type":151,"payload":"AgAaHQUAKzUMAFEtFQB9GRkAbUYaAKEBHQChNx8AlQ4EAxUWBQMyIQkDXw4KA3EpCwOYJQwDqgMTAyIHFAMMMRUDlSUMDJQpEwwjIBQMDwIWDEMkGAyCIxkMnQ4aDGcVIgyOESMMIi0LDosyDA4PPBgObDYZDpcpHw5VESEOIA8=","crc":34187,"azel":[{"el":29,"az":26,"sid":{"sat":2,"code":0}},{"el":53,"az":43,"sid":{"sat":5,"code":0}},{"el":45,"az":81,"sid":{"sat":12,"code":0}},{"el":25,"az":125,"sid":{"sat":21,"code":0}},{"el":70,"az":109,"sid":{"sat":25,"code":0}},{"el":1,"az":161,"sid":{"sat":26,"code":0}},{"el":55,"az":161,"sid":{"sat":29,"code":0}},{"el":14,"az":149,"sid":{"sat":31,"code":0}},{"el":22,"az":21,"sid":{"sat":4,"code":3}},{"el":33,"az":50,"sid":{"sat":5,"code":3}},{"el":14,"az":95,"sid":{"sat":9,"code":3}},{"el":41,"az":113,"sid":{"sat":10,"code":3}},{"el":37,"az":152,"sid":{"sat":11,"code":3}},{"el":3,"az":170,"sid":{"sat":12,"code":3}},{"el":7,"az":34,"sid":{"sat":19,"code":3}},{"el":49,"az":12,"sid":{"sat":20,"code":3}},{"el":37,"az":149,"sid":{"sat":21,"code":3}},{"el":41,"az":148,"sid":{"sat":12,"code":12}},{"el":32,"az":35,"sid":{"sat":19,"code":12}},{"el":2,"az":15,"sid":{"sat":20,"code":12}},{"el":36,"az":67,"sid":{"sat":22,"code":12}},{"el":35,"az":130,"sid":{"sat":24,"code":12}},{"el":14,"az":157,"sid":{"sat":25,"code":12}},{"el":21,"az":103,"sid":{"sat":26,"code":12}},{"el":17,"az":142,"sid":{"sat":34,"code":12}},{"el":45,"az":34,"sid":{"sat":35,"code":12}},{"el":50,"az":139,"sid":{"sat":11,"code":14}},{"el":60,"az":15,"sid":{"sat":12,"code":14}},{"el":54,"az":108,"sid":{"sat":24,"code":14}},{"el":41,"az":151,"sid":{"sat":25,"code":14}},{"el":17,"az":85,"sid":{"sat":31,"code":14}},{"el":15,"az":32,"sid":{"sat":33,"code":14}}]} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"Mgj0Ky8QAAAAAAE=","wn":2098,"tow":271526900,"crc":44382} -{"length":16,"flags":17,"ns":899999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EfQrLxDkBwMZAxkI/uikNQ==","day":25,"tow":271526900,"year":2020,"crc":2222,"minutes":25,"month":3,"seconds":8} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.4445425736161,"preamble":85,"sender":22963,"msg_type":522,"payload":"9CsvEHUrDexl6kJArXTiE1aSXsBfXMeKzXExwAECWwQPBg==","lat":37.831235414915604,"tow":271526900,"h_accuracy":513,"crc":11107,"lon":-122.28650376429387} -{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"9CsvEAEAAAD+////CQAAAPEAygIPAg==","n":1,"d":9,"tow":271526900,"h_accuracy":241,"crc":41556,"e":-2} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"9CsvEJsAhwBMAEgAcgAG","tow":271526900,"crc":11722,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"9CsvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271526900,"h_accuracy":0,"crc":23130,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"9CsvEP//","tow":271526900,"crc":4241} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":249,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":41,"i":110566444},"flags":15,"cn0":214,"P":1052004604,"D":{"f":20,"i":-190},"lock":15,"sid":{"sat":5,"code":0}},{"L":{"f":46,"i":121798662},"flags":15,"cn0":181,"P":1158875762,"D":{"f":229,"i":2171},"lock":15,"sid":{"sat":21,"code":0}},{"L":{"f":95,"i":123368066},"flags":15,"cn0":187,"P":1173807699,"D":{"f":35,"i":-2477},"lock":15,"sid":{"sat":2,"code":0}},{"L":{"f":5,"i":128743148},"flags":15,"cn0":164,"P":1224950312,"D":{"f":215,"i":-400},"lock":15,"sid":{"sat":31,"code":0}},{"L":{"f":141,"i":107836853},"flags":15,"cn0":218,"P":1026033479,"D":{"f":252,"i":-1134},"lock":15,"sid":{"sat":25,"code":0}},{"L":{"f":160,"i":114134368},"flags":15,"cn0":209,"P":1085952324,"D":{"f":39,"i":-2970},"lock":15,"sid":{"sat":12,"code":0}},{"L":{"f":44,"i":110743099},"flags":15,"cn0":213,"P":1053685471,"D":{"f":126,"i":1482},"lock":15,"sid":{"sat":29,"code":0}},{"L":{"f":138,"i":84028737},"flags":15,"cn0":204,"P":1026033524,"D":{"f":211,"i":-884},"lock":15,"sid":{"sat":25,"code":1}},{"L":{"f":71,"i":88935903},"flags":15,"cn0":187,"P":1085952218,"D":{"f":88,"i":-2315},"lock":15,"sid":{"sat":12,"code":1}},{"L":{"f":140,"i":100319338},"flags":15,"cn0":152,"P":1224950275,"D":{"f":130,"i":-313},"lock":15,"sid":{"sat":31,"code":1}},{"L":{"f":221,"i":86293325},"flags":15,"cn0":195,"P":1053685398,"D":{"f":151,"i":1155},"lock":15,"sid":{"sat":29,"code":1}},{"L":{"f":12,"i":86155700},"flags":15,"cn0":194,"P":1052004537,"D":{"f":120,"i":-149},"lock":15,"sid":{"sat":5,"code":1}},{"L":{"f":107,"i":112922488},"flags":15,"cn0":213,"P":1056594887,"D":{"f":205,"i":1157},"lock":15,"sid":{"sat":11,"code":3}},{"L":{"f":233,"i":123390405},"flags":15,"cn0":178,"P":1155352710,"D":{"f":203,"i":-4409},"lock":15,"sid":{"sat":9,"code":3}}],"payload":"WCwvEAAAAAAyCED8ULQ+LByXBilC/xTWDw8FAHIKE0UGgEIHLnsI5bUPDxUAU+L2RYJyWgdfU/Yjuw8PAgAoQgNJ7HasBwVw/tekDw8fAEcHKD21dW0GjZL7/NoPDxkARFG6QGCNzQagZvQn0Q8PDADf9s0+O86ZBizKBX7VDw8dAHQHKD1BLQIFioz808wPDxkB2lC6QN8NTQVH9fZYuw8PDAEDQgNJasD6BYzH/oKYDw8fAZb2zT5NuyQF3YMEl8MPDx0BuVC0PrShIgUMa/94wg8PBQHHW/o+eA+7BmuFBM3VDw8LA4ZI3UTFyVoH6cfuy7IPDwkD","header":{"n_obs":64,"t":{"ns_residual":0,"wn":2098,"tow":271527000}},"crc":36286} -{"length":249,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":87,"i":109786043},"flags":15,"cn0":174,"P":1026526836,"D":{"f":39,"i":-1211},"lock":15,"sid":{"sat":20,"code":3}},{"L":{"f":173,"i":114832243},"flags":15,"cn0":208,"P":1074086948,"D":{"f":193,"i":2191},"lock":15,"sid":{"sat":5,"code":3}},{"L":{"f":142,"i":111642482},"flags":15,"cn0":208,"P":1047191949,"D":{"f":25,"i":-3049},"lock":15,"sid":{"sat":10,"code":3}},{"L":{"f":205,"i":120455372},"flags":15,"cn0":183,"P":1124709291,"D":{"f":100,"i":-1325},"lock":15,"sid":{"sat":4,"code":3}},{"L":{"f":174,"i":113399148},"flags":15,"cn0":203,"P":1059566641,"D":{"f":66,"i":1621},"lock":15,"sid":{"sat":21,"code":3}},{"L":{"f":96,"i":95970325},"flags":15,"cn0":171,"P":1155352793,"D":{"f":91,"i":-3428},"lock":15,"sid":{"sat":9,"code":4}},{"L":{"f":143,"i":85389180},"flags":15,"cn0":205,"P":1026527198,"D":{"f":69,"i":-942},"lock":15,"sid":{"sat":20,"code":4}},{"L":{"f":110,"i":87828612},"flags":15,"cn0":201,"P":1056595200,"D":{"f":86,"i":900},"lock":15,"sid":{"sat":11,"code":4}},{"L":{"f":25,"i":89313971},"flags":15,"cn0":195,"P":1074087259,"D":{"f":26,"i":1705},"lock":15,"sid":{"sat":5,"code":4}},{"L":{"f":110,"i":93687502},"flags":15,"cn0":175,"P":1124709488,"D":{"f":93,"i":-1031},"lock":15,"sid":{"sat":4,"code":4}},{"L":{"f":112,"i":121599029},"flags":15,"cn0":200,"P":1167590468,"D":{"f":71,"i":-1500},"lock":15,"sid":{"sat":35,"code":12}},{"L":{"f":213,"i":129250212},"flags":15,"cn0":172,"P":1241057280,"D":{"f":65,"i":-3007},"lock":15,"sid":{"sat":26,"code":12}},{"L":{"f":103,"i":132917363},"flags":15,"cn0":158,"P":1276268889,"D":{"f":46,"i":2249},"lock":15,"sid":{"sat":34,"code":12}},{"L":{"f":59,"i":125167924},"flags":15,"cn0":188,"P":1201859205,"D":{"f":50,"i":-1307},"lock":15,"sid":{"sat":24,"code":12}}],"payload":"WCwvEAAAAAAyCEF0ji89uzOLBldF+yeuDw8UAyREBUBzM9gGrY8IwdAPDwUDjeFqPnKHpwaOF/QZ0A8PCgOrswlDzAAuB83T+mS3Dw8EAzG0Jz9sVcIGrlUGQssPDxUD2UjdRBVkuAVgnPJbqw8PCQTejy89fO8WBY9S/EXNDw8UBABd+j6EKDwFboQDVskPDwsEW0UFQLPSUgUZqQYaww8PBQRwtAlDzo6VBW75+12vDw8EBEQEmEU1dD8HcCT6R8gPDyMMAAj5SaQztAfVQfRBrA8PGgxZURJMcyjsB2fJCC6eDw8iDIXqokc06XUHO+X6MrwPDxgM","header":{"n_obs":65,"t":{"ns_residual":0,"wn":2098,"tow":271527000}},"crc":64094} -{"length":249,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":46,"i":134655307},"flags":15,"cn0":158,"P":1292956811,"D":{"f":41,"i":1319},"lock":15,"sid":{"sat":25,"code":12}},{"L":{"f":179,"i":121079421},"flags":15,"cn0":184,"P":1162601464,"D":{"f":142,"i":1611},"lock":15,"sid":{"sat":12,"code":12}},{"L":{"f":95,"i":124518661},"flags":15,"cn0":185,"P":1195624939,"D":{"f":158,"i":-295},"lock":15,"sid":{"sat":19,"code":12}},{"L":{"f":233,"i":124673987},"flags":15,"cn0":192,"P":1197116420,"D":{"f":152,"i":2385},"lock":15,"sid":{"sat":22,"code":12}},{"L":{"f":212,"i":93626297},"flags":15,"cn0":208,"P":1162601394,"D":{"f":79,"i":1246},"lock":15,"sid":{"sat":12,"code":13}},{"L":{"f":115,"i":116439235},"flags":15,"cn0":196,"P":1107882461,"D":{"f":126,"i":-1027},"lock":15,"sid":{"sat":12,"code":14}},{"L":{"f":253,"i":132460897},"flags":15,"cn0":193,"P":1260323462,"D":{"f":142,"i":1084},"lock":15,"sid":{"sat":25,"code":14}},{"L":{"f":156,"i":125409121},"flags":15,"cn0":190,"P":1193228052,"D":{"f":184,"i":1045},"lock":15,"sid":{"sat":11,"code":14}},{"L":{"f":50,"i":118436358},"flags":15,"cn0":205,"P":1126884350,"D":{"f":134,"i":-1748},"lock":15,"sid":{"sat":24,"code":14}},{"L":{"f":250,"i":143362220},"flags":15,"cn0":160,"P":1364046130,"D":{"f":166,"i":-3173},"lock":15,"sid":{"sat":31,"code":14}},{"L":{"f":231,"i":144551720},"flags":15,"cn0":153,"P":1375363883,"D":{"f":247,"i":-2141},"lock":15,"sid":{"sat":33,"code":14}},{"L":{"f":39,"i":101496011},"flags":15,"cn0":201,"P":1260323440,"D":{"f":48,"i":830},"lock":15,"sid":{"sat":25,"code":20}},{"L":{"f":90,"i":90750000},"flags":15,"cn0":215,"P":1126884896,"D":{"f":74,"i":-1339},"lock":15,"sid":{"sat":24,"code":20}},{"L":{"f":104,"i":96092681},"flags":15,"cn0":193,"P":1193227868,"D":{"f":99,"i":801},"lock":15,"sid":{"sat":11,"code":20}}],"payload":"WCwvEAAAAAAyCEKL9BBNS60GCC4nBSmeDw8ZDPjjS0V9hjcHs0sGjrgPDwwM68lDRwUBbAdf2f6euQ8PEwwEjFpHw19uB+lRCZjADw8WDLLjS0W5n5QF1N4ET9APDwwN3fEIQsO48AZz/ft+xA8PDA6GAh9LYTHlB/08BI7BDw8ZDhQ3H0dhl3kHnBUEuL4PDwsO/uMqQwYyDwcyLPmGzQ8PGA4ysU1RrIiLCPqb86agDw8fDitj+lEor50I56P395kPDyEOcAIfS8u0DAYnPgMwyQ8PGRQg5ipDMLxoBVrF+krXDw8YFFw2H0cJQroFaCEDY8EPDwsU","header":{"n_obs":66,"t":{"ns_residual":0,"wn":2098,"tow":271527000}},"crc":7988} -{"length":62,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":6,"i":109849016},"flags":15,"cn0":174,"P":1364046245,"D":{"f":80,"i":-2429},"lock":15,"sid":{"sat":31,"code":20}},{"L":{"f":131,"i":89219704},"flags":15,"cn0":206,"P":1107882303,"D":{"f":26,"i":-787},"lock":15,"sid":{"sat":12,"code":20}},{"L":{"f":1,"i":110760480},"flags":15,"cn0":169,"P":1375363834,"D":{"f":218,"i":-1639},"lock":15,"sid":{"sat":33,"code":20}}],"payload":"WCwvEAAAAAAyCEOlsU1RuCmMBgaD9lCuDw8fFD/xCEJ4YlEFg+38Gs4PDwwU+mL6USASmgYBmfnaqQ8PIRQ=","header":{"n_obs":67,"t":{"ns_residual":0,"wn":2098,"tow":271527000}},"crc":43485} -{"length":9,"l2ca_bias":0,"preamble":85,"l2p_bias":0,"sender":22963,"msg_type":117,"payload":"/wAAAAAAAAAA","l1ca_bias":0,"mask":255,"crc":49809,"l1p_bias":0} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MghYLC8QAAAAAAE=","wn":2098,"tow":271527000,"crc":50968} -{"length":16,"flags":17,"ns":999999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EVgsLxDkBwMZAxkI/smaOw==","day":25,"tow":271527000,"year":2020,"crc":31739,"minutes":25,"month":3,"seconds":8} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.457220713556822,"preamble":85,"sender":22963,"msg_type":522,"payload":"WCwvEJfrEOxl6kJAMwLNE1aSXsDEx6tqDHUxwAECWwQPBg==","lat":37.831235416662075,"tow":271527000,"h_accuracy":513,"crc":50094,"lon":-122.28650374431963} -{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"WCwvEP3////6////EQAAAPEAygIPAg==","n":-3,"d":17,"tow":271527000,"h_accuracy":241,"crc":36517,"e":-6} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"WCwvEJsAhwBMAEgAcgAG","tow":271527000,"crc":10301,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"WCwvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271527000,"h_accuracy":0,"crc":31232,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"WCwvEP//","tow":271527000,"crc":40334} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":4,"flags":2147616000,"preamble":85,"sender":22963,"msg_type":65535,"payload":"AAUCgA==","crc":40942} -{"length":24,"z":3890655.0240602265,"preamble":85,"sender":22963,"msg_type":72,"payload":"UO0a3iqORMHK1UJhIkRQwc9nFIPvrk1B","crc":2168,"x":-2694229.735196747,"y":-4264073.519704292} -{"length":152,"af0":-5.076638772152363e-4,"w":0.10354153367476945,"dn":3.2908513628827244e-9,"c_us":1.1920929e-6,"c_uc":-8.121133e-7,"ecc":9.008531924337149e-5,"sqrta":5440.607664108276,"preamble":85,"toc":{"wn":2098,"tow":270600},"sender":22963,"bgd_e1e5a":1.3969839e-9,"msg_type":149,"omegadot":-5.960248268264261e-9,"payload":"GQ4IIQQAMggUrkdAQDgAAAEAAADAMAAAwDAAAIrBALShQwAAWrUAAKA1AADgMgAA4LKKbhefqEQsPueMGSXuj/0/AAAAAIadFz8AAOCPm0C1QIEMVy/PG/0//nAUvlyZOb5WK+mssoG6P8U92ZNjcu8/GZRKcC+LyL3////fl6JAv////////3O9AAAAAAghBAAyCEMAQwA=","inc":0.9827134978931374,"inc_dot":-4.464471677451059e-11,"iode":67,"crc":52895,"common":{"health_bits":0,"fit_interval":14400,"valid":1,"sid":{"sat":25,"code":14},"toe":{"wn":2098,"tow":270600},"ura":3.12},"c_rs":-17.25,"m0":1.847639222069853,"af2":0,"c_rc":323.40625,"bgd_e1e5b":1.3969839e-9,"af1":-1.13686837721616e-12,"c_is":-2.6077032e-8,"c_ic":2.6077032e-8,"omega0":1.8192893838138675,"iodc":67} -{"cpu_vint":987,"length":10,"fe_temperature":5641,"preamble":85,"sender":22963,"cpu_vaux":1779,"msg_type":181,"payload":"5hbbA/MGTxUJFg==","dev_vin":5862,"crc":42654,"cpu_temperature":5455} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"Mgi8LC8QAAAAAAE=","wn":2098,"tow":271527100,"crc":7264} -{"length":16,"flags":17,"ns":99999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EbwsLxDkBwMZAxkJ/uD1BQ==","day":25,"tow":271527100,"year":2020,"crc":32201,"minutes":25,"month":3,"seconds":9} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.466236550805093,"preamble":85,"sender":22963,"msg_type":522,"payload":"vCwvED0qFexl6kJAVEmxE1aSXsBg6FFHW3cxwAECWwQPBg==","lat":37.83123541863868,"tow":271527100,"h_accuracy":513,"crc":23482,"lon":-122.28650371850136} -{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"vCwvEAQAAAAFAAAAAgAAAPEAygIPAg==","n":4,"d":2,"tow":271527100,"h_accuracy":241,"crc":2825,"e":5} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"vCwvEJsAhwBMAEgAcgAG","tow":271527100,"crc":20608,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"vCwvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271527100,"h_accuracy":0,"crc":55331,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"vCwvEP//","tow":271527100,"crc":4119} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgggLS8QAAAAAAE=","wn":2098,"tow":271527200,"crc":751} -{"length":16,"flags":17,"ns":199999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"ESAtLxDkBwMZAxkJ/sHrCw==","day":25,"tow":271527200,"year":2020,"crc":53379,"minutes":25,"month":3,"seconds":9} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.47467253577704,"preamble":85,"sender":22963,"msg_type":522,"payload":"IC0vELpkGOxl6kJA4HemE1aSXsDGeKkjhHkxwAECWwQPBg==","lat":37.83123542014205,"tow":271527200,"h_accuracy":513,"crc":61571,"lon":-122.28650370842615} -{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"IC0vEP7////7////FQAAAPEAygIPAg==","n":-2,"d":21,"tow":271527200,"h_accuracy":241,"crc":53607,"e":-5} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"IC0vEJsAhwBMAEgAcgAG","tow":271527200,"crc":36238,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"IC0vEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271527200,"h_accuracy":0,"crc":62436,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"IC0vEP//","tow":271527200,"crc":32513} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgiELS8QAAAAAAE=","wn":2098,"tow":271527300,"crc":34382} -{"length":16,"flags":17,"ns":299999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EYQtLxDkBwMZAxkJ/qLhEQ==","day":25,"tow":271527300,"year":2020,"crc":7356,"minutes":25,"month":3,"seconds":9} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.476398941894153,"preamble":85,"sender":22963,"msg_type":522,"payload":"hC0vEBozCOxl6kJA8NaQE1aSXsDOSPNH9XkxwAECWwQPBg==","lat":37.8312354126012,"tow":271527300,"h_accuracy":513,"crc":37051,"lon":-122.28650368828289} -{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"hC0vEP////8CAAAA6f////EAygIPAg==","n":-1,"d":-23,"tow":271527300,"h_accuracy":241,"crc":4371,"e":2} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"hC0vEJsAhwBMAEgAcgAG","tow":271527300,"crc":57146,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"hC0vEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271527300,"h_accuracy":0,"crc":33949,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"hC0vEP//","tow":271527300,"crc":39048} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":237,"states":[{"cn0":213,"mesid":{"sat":5,"code":0}},{"cn0":181,"mesid":{"sat":21,"code":0}},{"cn0":187,"mesid":{"sat":2,"code":0}},{"cn0":165,"mesid":{"sat":31,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":218,"mesid":{"sat":25,"code":0}},{"cn0":208,"mesid":{"sat":12,"code":0}},{"cn0":213,"mesid":{"sat":29,"code":0}},{"cn0":206,"mesid":{"sat":18,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":206,"mesid":{"sat":131,"code":2}},{"cn0":204,"mesid":{"sat":25,"code":1}},{"cn0":187,"mesid":{"sat":12,"code":1}},{"cn0":153,"mesid":{"sat":31,"code":1}},{"cn0":197,"mesid":{"sat":18,"code":1}},{"cn0":194,"mesid":{"sat":29,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":194,"mesid":{"sat":5,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":213,"mesid":{"sat":100,"code":3}},{"cn0":178,"mesid":{"sat":98,"code":3}},{"cn0":174,"mesid":{"sat":102,"code":3}},{"cn0":208,"mesid":{"sat":101,"code":3}},{"cn0":208,"mesid":{"sat":93,"code":3}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":182,"mesid":{"sat":106,"code":3}},{"cn0":203,"mesid":{"sat":104,"code":3}},{"cn0":170,"mesid":{"sat":98,"code":4}},{"cn0":204,"mesid":{"sat":102,"code":4}},{"cn0":70,"mesid":{"sat":93,"code":4}},{"cn0":201,"mesid":{"sat":100,"code":4}},{"cn0":195,"mesid":{"sat":101,"code":4}},{"cn0":188,"mesid":{"sat":104,"code":4}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":175,"mesid":{"sat":106,"code":4}},{"cn0":200,"mesid":{"sat":35,"code":12}},{"cn0":172,"mesid":{"sat":26,"code":12}},{"cn0":158,"mesid":{"sat":34,"code":12}},{"cn0":188,"mesid":{"sat":24,"code":12}},{"cn0":159,"mesid":{"sat":25,"code":12}},{"cn0":184,"mesid":{"sat":12,"code":12}},{"cn0":185,"mesid":{"sat":19,"code":12}},{"cn0":192,"mesid":{"sat":22,"code":12}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":209,"mesid":{"sat":12,"code":13}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":196,"mesid":{"sat":12,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":192,"mesid":{"sat":25,"code":14}},{"cn0":190,"mesid":{"sat":11,"code":14}},{"cn0":205,"mesid":{"sat":24,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":159,"mesid":{"sat":31,"code":14}},{"cn0":153,"mesid":{"sat":33,"code":14}},{"cn0":201,"mesid":{"sat":25,"code":20}},{"cn0":215,"mesid":{"sat":24,"code":20}},{"cn0":194,"mesid":{"sat":11,"code":20}},{"cn0":174,"mesid":{"sat":31,"code":20}},{"cn0":206,"mesid":{"sat":12,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":169,"mesid":{"sat":33,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}}],"preamble":85,"sender":22963,"msg_type":97,"payload":"BQDVFQC1AgC7HwClAAAAAAAAGQDaDADQHQDVEgDOAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwLOGQHMDAG7HwGZEgHFHQHCAAAABQHCAAAAAAAAAAAAAAAAZAPVYgOyZgOuZQPQXQPQAAAAagO2aAPLYgSqZgTMXQRGZATJZQTDaAS8AAAAagSvIwzIGgysIgyeGAy8GQyfDAy4Ewy5FgzAAAAADA3RAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADA7EAAAAGQ7ACw6+GA7NAAAAHw6fIQ6ZGRTJGBTXCxTCHxSuDBTOAAAAIRSpAAAA","crc":18446} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgjoLS8QAAAAAAE=","wn":2098,"tow":271527400,"crc":52091} -{"length":16,"flags":17,"ns":399999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EegtLxDkBwMZAxkJ/oPXFw==","day":25,"tow":271527400,"year":2020,"crc":26965,"minutes":25,"month":3,"seconds":9} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.482086601781674,"preamble":85,"sender":22963,"msg_type":522,"payload":"6C0vEHkF8etl6kJA87pyE1aSXsD4fQwHansxwAECWwQPBg==","lat":37.831235401807994,"tow":271527400,"h_accuracy":513,"crc":6761,"lon":-122.2865036602414} -{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"6C0vEPz///8CAAAA/P////EAygIPAg==","n":-4,"d":-4,"tow":271527400,"h_accuracy":241,"crc":402,"e":2} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"6C0vEJsAhwBMAEgAcgAG","tow":271527400,"crc":54480,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"6C0vEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271527400,"h_accuracy":0,"crc":49800,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"6C0vEP//","tow":271527400,"crc":52339} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":9,"l2ca_bias":0,"preamble":85,"l2p_bias":0,"sender":22963,"msg_type":117,"payload":"/wAAAAAAAAAA","l1ca_bias":0,"mask":255,"crc":49809,"l1p_bias":0} -{"length":51,"text":"GLO L2OF ME 1 [+1330ms] low CN0 too long, dropping","preamble":85,"sender":22963,"msg_type":1025,"payload":"BkdMTyBMMk9GIE1FIDEgWysxMzMwbXNdIGxvdyBDTjAgdG9vIGxvbmcsIGRyb3BwaW5n","crc":4716,"level":6} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MghMLi8QAAAAAAE=","wn":2098,"tow":271527500,"crc":34735} -{"length":16,"flags":17,"ns":499999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EUwuLxDkBwMZAxkJ/mTNHQ==","day":25,"tow":271527500,"year":2020,"crc":56849,"minutes":25,"month":3,"seconds":9} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.489967312405426,"preamble":85,"sender":22963,"msg_type":522,"payload":"TC4vECbc8utl6kJAtU1CE1aSXsDs425/bn0xwAECWwQPBg==","lat":37.83123540266415,"tow":271527500,"h_accuracy":513,"crc":29561,"lon":-122.28650361514049} -{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"TC4vEP////8PAAAAGwAAAPEAygIPAg==","n":-1,"d":27,"tow":271527500,"h_accuracy":241,"crc":31703,"e":15} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"TC4vEJsAhwBMAEgAcgAG","tow":271527500,"crc":3015,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"TC4vEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271527500,"h_accuracy":0,"crc":56266,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"TC4vEP//","tow":271527500,"crc":50472} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgiwLi8QAAAAAAE=","wn":2098,"tow":271527600,"crc":9942} -{"length":16,"flags":17,"ns":599999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EbAuLxDkBwMZAxkJ/kXDIw==","day":25,"tow":271527600,"year":2020,"crc":35335,"minutes":25,"month":3,"seconds":9} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.493422902391874,"preamble":85,"sender":22963,"msg_type":522,"payload":"sC4vEE9k4utl6kJATyUgE1aSXsDZ3pz2UH4xwAECWwQPBg==","lat":37.83123539499558,"tow":271527600,"h_accuracy":513,"crc":44465,"lon":-122.28650358332855} -{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"sC4vEP3///8DAAAA+/////EAygIPAg==","n":-3,"d":-5,"tow":271527600,"h_accuracy":241,"crc":52924,"e":3} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"sC4vEJsAhwBMAEgAcgAG","tow":271527600,"crc":6837,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"sC4vEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271527600,"h_accuracy":0,"crc":39436,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"sC4vEP//","tow":271527600,"crc":24439} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MggULy8QAAAAAAE=","wn":2098,"tow":271527700,"crc":58788} -{"length":16,"flags":17,"ns":699999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"ERQvLxDkBwMZAxkJ/ia5KQ==","day":25,"tow":271527700,"year":2020,"crc":10033,"minutes":25,"month":3,"seconds":9} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.49329548252506,"preamble":85,"sender":22963,"msg_type":522,"payload":"FC8vEHAoyutl6kJAWSIJE1aSXsCttdycSH4xwAECWwQPBg==","lat":37.831235383710805,"tow":271527700,"h_accuracy":513,"crc":54096,"lon":-122.28650356189736} -{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"FC8vEAEAAAD3////4f////EAygIPAg==","n":1,"d":-31,"tow":271527700,"h_accuracy":241,"crc":2284,"e":-9} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"FC8vEJsAhwBMAEgAcgAG","tow":271527700,"crc":13152,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"FC8vEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271527700,"h_accuracy":0,"crc":14467,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"FC8vEP//","tow":271527700,"crc":4783} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"message_type":4,"length":34,"data":[23,255,127,255,253,127,240,1,127,255,254,255,239,251,127,247,255,127,247,255,238,94,110,170,175,255,240],"preamble":85,"sender":22963,"msg_type":30583,"payload":"gwI/Li8QBBf/f//9f/ABf//+/+/7f/f/f/f/7l5uqq//8A==","tow":271527487,"crc":44433,"sid":{"sat":131,"code":2}} -{"length":92,"gamma":-9.094947e-13,"vel":[-2222.8660583496094,-1659.963607788086,-1670.3033447265625],"iod":100,"preamble":85,"sender":22963,"d_tau":2.7939677e-9,"msg_type":139,"payload":"CwNGIgQAMggAAABAYAkAAAEAAACAqwDmlTcAAEAxAACAR+eDbcEAAAA4HE4XQQAAUAGIVHNBAAAAbLtdocAAAAC82u+ZwAAAAKA2GZrAAAB6tQCAOzYAAPq1CGQ=","pos":[-1.5474490234375e7,381831.0546875,2.026918408203125e7],"crc":50097,"common":{"health_bits":0,"fit_interval":2400,"valid":1,"sid":{"sat":11,"code":3},"toe":{"wn":2098,"tow":270918},"ura":2},"tau":1.7869286e-5,"fcn":8,"acc":[-9.313226e-7,2.7939677e-6,-1.8626451e-6]} -{"length":92,"gamma":0,"vel":[2992.52986907959,-1104.3386459350586,-178.58600616455078],"iod":100,"preamble":85,"sender":22963,"d_tau":4.656613e-9,"msg_type":139,"payload":"FANGIgQAMggAAIBAYAkAAAEAAAAAAECe1TkAAKAxAAAAuA7SQcEAAEBAz29jwQAA4GdQM3ZBAAAASw9hp0AAAADGWkGRwAAAAJDAUmbAAAB6NQAAAIAAAPq1CmQ=","pos":[-2335773.4375,-1.01904580078125e7,2.32788544921875e7],"crc":33330,"common":{"health_bits":0,"fit_interval":2400,"valid":1,"sid":{"sat":20,"code":3},"toe":{"wn":2098,"tow":270918},"ura":4},"tau":4.074443e-4,"fcn":10,"acc":[9.313226e-7,0,-1.8626451e-6]} -{"length":92,"gamma":9.094947e-13,"vel":[-301.24950408935547,848.7043380737305,3434.189796447754],"iod":100,"preamble":85,"sender":22963,"d_tau":2.7939677e-9,"msg_type":139,"payload":"BQNGIgQAMggAAIBAYAkAAAEAAACAKwC7RrgAAEAxAACAPjXzWEEAADCIaLR2wQAAAJfDqlhBAAAA+P3TcsAAAAB8ooWKQAAAAC1h1KpAAAB6NgAA+rUAAHq1CWQ=","pos":[6540500.9765625,-2.380762451171875e7,6466318.359375],"crc":53984,"common":{"health_bits":0,"fit_interval":2400,"valid":1,"sid":{"sat":5,"code":3},"toe":{"wn":2098,"tow":270918},"ura":4},"tau":-4.7381036e-5,"fcn":9,"acc":[3.7252903e-6,-1.8626451e-6,-9.313226e-7]} -{"length":92,"gamma":0,"vel":[-696.5875625610352,-328.67431640625,-3462.845802307129],"iod":100,"preamble":85,"sender":22963,"d_tau":0,"msg_type":139,"payload":"CgNGIgQAMggAAOBAYAkAAAEAAAAAAADEbTgAAAAAAAAAFwhFdMEAACB48+dowQAAwO6k8VRBAAAAVLPEhcAAAAAAyop0wAAAAA2xDavAAAAAAACAOzYAAACAAWQ=","pos":[-2.12542734375e7,-1.305794775390625e7,5490323.73046875],"crc":45853,"common":{"health_bits":0,"fit_interval":2400,"valid":1,"sid":{"sat":10,"code":3},"toe":{"wn":2098,"tow":270918},"ura":7},"tau":5.6687742e-5,"fcn":1,"acc":[0,2.7939677e-6,0]} -{"length":92,"gamma":-2.728484e-12,"vel":[2159.489631652832,-671.0147857666016,2543.1900024414063],"iod":100,"preamble":85,"sender":22963,"d_tau":9.313226e-10,"msg_type":139,"payload":"FQNGIgQAMggAAIBAYAkAAAEAAABArIAU7jgAAIAwAAAwUcqXcsEAAAA0nRoUwQAAgBD6ZG9BAAAAsfreoEAAAABIHviEwAAAAEhh3qNAAAB6tQCAOzYAAPq1DGQ=","pos":[-1.949610107421875e7,-329383.30078125,1.6459728515625e7],"crc":11629,"common":{"health_bits":0,"fit_interval":2400,"valid":1,"sid":{"sat":21,"code":3},"toe":{"wn":2098,"tow":270918},"ura":4},"tau":1.1352543e-4,"fcn":12,"acc":[-9.313226e-7,2.7939677e-6,-1.8626451e-6]} -{"length":92,"gamma":1.8189894e-12,"vel":[809.9918365478516,769.8259353637695,-3324.6536254882813],"iod":100,"preamble":85,"sender":22963,"d_tau":-3.7252903e-9,"msg_type":139,"payload":"CQNGIgQAMggAAABAYAkAAAEAAAAALICvAbkAAICxAACga9onb8EAAIA6nfZwwQAAgLft6F7BAAAASO9PiUAAAACEmw6IQAAAAKhO+anAAAD6NQAA+jUAAHo1BmQ=","pos":[-1.633454736328125e7,-1.778734765625e7,-8102838.8671875],"crc":34365,"common":{"health_bits":0,"fit_interval":2400,"valid":1,"sid":{"sat":9,"code":3},"toe":{"wn":2098,"tow":270918},"ura":2},"tau":-1.2367778e-4,"fcn":6,"acc":[1.8626451e-6,1.8626451e-6,9.313226e-7]} -{"length":92,"gamma":1.8189894e-12,"vel":[-479.2194366455078,2705.232620239258,1765.4428482055664],"iod":100,"preamble":85,"sender":22963,"d_tau":-2.7939677e-9,"msg_type":139,"payload":"BANGIgQAMggAAKBAYAkAAAEAAAAALAAiNbgAAECxAAAgdUE8ZUEAAGA4CTplwQAAUEpjK3NBAAAA0ILzfcAAAAAadyKlQAAAAHrFlZtAAAD6NQAA+rUAAPq1DmQ=","pos":[1.113345166015625e7,-1.112890576171875e7,2.010066064453125e7],"crc":64387,"common":{"health_bits":0,"fit_interval":2400,"valid":1,"sid":{"sat":4,"code":3},"toe":{"wn":2098,"tow":270918},"ura":5},"tau":-4.3185428e-5,"fcn":14,"acc":[1.8626451e-6,-1.8626451e-6,-1.8626451e-6]} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"Mgh4Ly8QAAAAAAE=","wn":2098,"tow":271527800,"crc":43153} -{"length":16,"flags":17,"ns":799999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EXgvLxDkBwMZAxkJ/gevLw==","day":25,"tow":271527800,"year":2020,"crc":21566,"minutes":25,"month":3,"seconds":9} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.4923759555231,"preamble":85,"sender":22963,"msg_type":522,"payload":"eC8vEOfX5Otl6kJAmE8EE1aSXsD4TsJZDH4xwAECWwQPBg==","lat":37.83123539613717,"tow":271527800,"h_accuracy":513,"crc":8830,"lon":-122.28650355740535} -{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"eC8vEA8AAAD2/////P////EAygIPAg==","n":15,"d":-4,"tow":271527800,"h_accuracy":241,"crc":55486,"e":-10} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"eC8vEJsAhwBMAEgAcgAG","tow":271527800,"crc":14474,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"eC8vEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271527800,"h_accuracy":0,"crc":32406,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"eC8vEP//","tow":271527800,"crc":18004} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":237,"states":[{"cn0":212,"mesid":{"sat":5,"code":0}},{"cn0":180,"mesid":{"sat":21,"code":0}},{"cn0":186,"mesid":{"sat":2,"code":0}},{"cn0":162,"mesid":{"sat":31,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":217,"mesid":{"sat":25,"code":0}},{"cn0":207,"mesid":{"sat":12,"code":0}},{"cn0":212,"mesid":{"sat":29,"code":0}},{"cn0":205,"mesid":{"sat":18,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":204,"mesid":{"sat":131,"code":2}},{"cn0":204,"mesid":{"sat":25,"code":1}},{"cn0":186,"mesid":{"sat":12,"code":1}},{"cn0":151,"mesid":{"sat":31,"code":1}},{"cn0":196,"mesid":{"sat":18,"code":1}},{"cn0":194,"mesid":{"sat":29,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":193,"mesid":{"sat":5,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":213,"mesid":{"sat":11,"code":3}},{"cn0":179,"mesid":{"sat":9,"code":3}},{"cn0":174,"mesid":{"sat":20,"code":3}},{"cn0":208,"mesid":{"sat":5,"code":3}},{"cn0":208,"mesid":{"sat":10,"code":3}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":182,"mesid":{"sat":4,"code":3}},{"cn0":203,"mesid":{"sat":21,"code":3}},{"cn0":170,"mesid":{"sat":9,"code":4}},{"cn0":205,"mesid":{"sat":20,"code":4}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":201,"mesid":{"sat":11,"code":4}},{"cn0":195,"mesid":{"sat":5,"code":4}},{"cn0":188,"mesid":{"sat":0,"code":4}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":175,"mesid":{"sat":4,"code":4}},{"cn0":200,"mesid":{"sat":35,"code":12}},{"cn0":172,"mesid":{"sat":26,"code":12}},{"cn0":159,"mesid":{"sat":34,"code":12}},{"cn0":188,"mesid":{"sat":24,"code":12}},{"cn0":158,"mesid":{"sat":25,"code":12}},{"cn0":184,"mesid":{"sat":12,"code":12}},{"cn0":185,"mesid":{"sat":19,"code":12}},{"cn0":192,"mesid":{"sat":22,"code":12}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":209,"mesid":{"sat":12,"code":13}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":195,"mesid":{"sat":12,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":192,"mesid":{"sat":25,"code":14}},{"cn0":189,"mesid":{"sat":11,"code":14}},{"cn0":204,"mesid":{"sat":24,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":158,"mesid":{"sat":31,"code":14}},{"cn0":152,"mesid":{"sat":33,"code":14}},{"cn0":201,"mesid":{"sat":25,"code":20}},{"cn0":215,"mesid":{"sat":24,"code":20}},{"cn0":194,"mesid":{"sat":11,"code":20}},{"cn0":175,"mesid":{"sat":31,"code":20}},{"cn0":206,"mesid":{"sat":12,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":169,"mesid":{"sat":33,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}}],"preamble":85,"sender":22963,"msg_type":97,"payload":"BQDUFQC0AgC6HwCiAAAAAAAAGQDZDADPHQDUEgDNAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwLMGQHMDAG6HwGXEgHEHQHCAAAABQHBAAAAAAAAAAAAAAAACwPVCQOzFAOuBQPQCgPQAAAABAO2FQPLCQSqFATNAAAACwTJBQTDAAS8AAAABASvIwzIGgysIgyfGAy8GQyeDAy4Ewy5FgzAAAAADA3RAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADA7DAAAAGQ7ACw69GA7MAAAAHw6eIQ6YGRTJGBTXCxTCHxSvDBTOAAAAIRSpAAAA","crc":45824} -{"length":128,"preamble":85,"sender":22963,"msg_type":151,"payload":"AgAaHQUAKzUMAFEtFQB9GRkAbUYaAKEBHQChNx8AlQ4EAxUWBQMyIQkDXw4KA3EpCwOYJQwDqgMTAyIHFAMMMRUDlSUMDJQpEwwjIBQMDwIWDEMkGAyCIxkMnQ4aDGcVIgyOESMMIi0LDosyDA4PPBgObDYZDpcpHw5VESEOIA8=","crc":34187,"azel":[{"el":29,"az":26,"sid":{"sat":2,"code":0}},{"el":53,"az":43,"sid":{"sat":5,"code":0}},{"el":45,"az":81,"sid":{"sat":12,"code":0}},{"el":25,"az":125,"sid":{"sat":21,"code":0}},{"el":70,"az":109,"sid":{"sat":25,"code":0}},{"el":1,"az":161,"sid":{"sat":26,"code":0}},{"el":55,"az":161,"sid":{"sat":29,"code":0}},{"el":14,"az":149,"sid":{"sat":31,"code":0}},{"el":22,"az":21,"sid":{"sat":4,"code":3}},{"el":33,"az":50,"sid":{"sat":5,"code":3}},{"el":14,"az":95,"sid":{"sat":9,"code":3}},{"el":41,"az":113,"sid":{"sat":10,"code":3}},{"el":37,"az":152,"sid":{"sat":11,"code":3}},{"el":3,"az":170,"sid":{"sat":12,"code":3}},{"el":7,"az":34,"sid":{"sat":19,"code":3}},{"el":49,"az":12,"sid":{"sat":20,"code":3}},{"el":37,"az":149,"sid":{"sat":21,"code":3}},{"el":41,"az":148,"sid":{"sat":12,"code":12}},{"el":32,"az":35,"sid":{"sat":19,"code":12}},{"el":2,"az":15,"sid":{"sat":20,"code":12}},{"el":36,"az":67,"sid":{"sat":22,"code":12}},{"el":35,"az":130,"sid":{"sat":24,"code":12}},{"el":14,"az":157,"sid":{"sat":25,"code":12}},{"el":21,"az":103,"sid":{"sat":26,"code":12}},{"el":17,"az":142,"sid":{"sat":34,"code":12}},{"el":45,"az":34,"sid":{"sat":35,"code":12}},{"el":50,"az":139,"sid":{"sat":11,"code":14}},{"el":60,"az":15,"sid":{"sat":12,"code":14}},{"el":54,"az":108,"sid":{"sat":24,"code":14}},{"el":41,"az":151,"sid":{"sat":25,"code":14}},{"el":17,"az":85,"sid":{"sat":31,"code":14}},{"el":15,"az":32,"sid":{"sat":33,"code":14}}]} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgjcLy8QAAAAAAE=","wn":2098,"tow":271527900,"crc":11312} -{"length":16,"flags":17,"ns":899999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EdwvLxDkBwMZAxkJ/uikNQ==","day":25,"tow":271527900,"year":2020,"crc":58635,"minutes":25,"month":3,"seconds":9} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.497015451736722,"preamble":85,"sender":22963,"msg_type":522,"payload":"3C8vEJ7kuetl6kJA79vzElaSXsDe0JZnPH8xwAECWwQPBg==","lat":37.83123537613686,"tow":271527900,"h_accuracy":513,"crc":59898,"lon":-122.28650354208342} -{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"3C8vEPL///8HAAAAJgAAAPEAygIPAg==","n":-14,"d":38,"tow":271527900,"h_accuracy":241,"crc":38592,"e":7} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"3C8vEJsAhwBMAEgAcgAG","tow":271527900,"crc":27198,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"3C8vEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271527900,"h_accuracy":0,"crc":2543,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"3C8vEP//","tow":271527900,"crc":41437} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":249,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":174,"i":110566634},"flags":15,"cn0":212,"P":1052006413,"D":{"f":133,"i":-192},"lock":15,"sid":{"sat":5,"code":0}},{"L":{"f":215,"i":121796490},"flags":15,"cn0":179,"P":1158855102,"D":{"f":25,"i":2171},"lock":15,"sid":{"sat":21,"code":0}},{"L":{"f":224,"i":123370544},"flags":15,"cn0":186,"P":1173831300,"D":{"f":157,"i":-2478},"lock":15,"sid":{"sat":2,"code":0}},{"L":{"f":253,"i":128743548},"flags":15,"cn0":163,"P":1224954123,"D":{"f":85,"i":-401},"lock":15,"sid":{"sat":31,"code":0}},{"L":{"f":243,"i":107837986},"flags":15,"cn0":216,"P":1026044262,"D":{"f":85,"i":-1134},"lock":15,"sid":{"sat":25,"code":0}},{"L":{"f":190,"i":114137339},"flags":15,"cn0":207,"P":1085980598,"D":{"f":186,"i":-2972},"lock":15,"sid":{"sat":12,"code":0}},{"L":{"f":123,"i":110741616},"flags":15,"cn0":212,"P":1053671371,"D":{"f":212,"i":1482},"lock":15,"sid":{"sat":29,"code":0}},{"L":{"f":182,"i":84029620},"flags":15,"cn0":204,"P":1026044314,"D":{"f":83,"i":-883},"lock":15,"sid":{"sat":25,"code":1}},{"L":{"f":112,"i":88938218},"flags":15,"cn0":186,"P":1085980485,"D":{"f":195,"i":-2317},"lock":15,"sid":{"sat":12,"code":1}},{"L":{"f":252,"i":100319650},"flags":15,"cn0":152,"P":1224954090,"D":{"f":57,"i":-312},"lock":15,"sid":{"sat":31,"code":1}},{"L":{"f":134,"i":86292170},"flags":15,"cn0":194,"P":1053671294,"D":{"f":176,"i":1155},"lock":15,"sid":{"sat":29,"code":1}},{"L":{"f":127,"i":86155848},"flags":15,"cn0":193,"P":1052006346,"D":{"f":91,"i":-150},"lock":15,"sid":{"sat":5,"code":1}},{"L":{"f":174,"i":112921331},"flags":15,"cn0":213,"P":1056584066,"D":{"f":159,"i":1156},"lock":15,"sid":{"sat":11,"code":3}},{"L":{"f":43,"i":123394813},"flags":15,"cn0":179,"P":1155394040,"D":{"f":21,"i":-4406},"lock":15,"sid":{"sat":9,"code":3}}],"payload":"QDAvEAAAAAAyCEANWLQ+6hyXBq5A/4XUDw8FAL65EkWKd0IH13sIGbMPDxUAhD73RTB8WgfgUvadug8PAgALUQNJfHisB/1v/lWjDw8fAGYxKD0iem0G85L7VdgPDxkAtr+6QPuYzQa+ZPS6zw8PDADLv80+cMiZBnvKBdTUDw8dAJoxKD20MAIFto38U8wPDxkBRb+6QOoWTQVw8/bDug8PDAHqUANJosH6BfzI/jmYDw8fAX6/zT7KtiQFhoMEsMIPDx0Byle0PkiiIgV/av9bwQ8PBQGCMfo+8wq7Bq6EBJ/VDw8LA/jp3UT92loHK8ruFbMPDwkD","header":{"n_obs":64,"t":{"ns_residual":0,"wn":2098,"tow":271528000}},"crc":59163} -{"length":249,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":151,"i":109787254},"flags":15,"cn0":174,"P":1026538184,"D":{"f":48,"i":-1211},"lock":15,"sid":{"sat":20,"code":3}},{"L":{"f":181,"i":114830052},"flags":15,"cn0":208,"P":1074066458,"D":{"f":105,"i":2190},"lock":15,"sid":{"sat":5,"code":3}},{"L":{"f":170,"i":111645532},"flags":15,"cn0":208,"P":1047220559,"D":{"f":228,"i":-3052},"lock":15,"sid":{"sat":10,"code":3}},{"L":{"f":153,"i":120456697},"flags":15,"cn0":183,"P":1124721652,"D":{"f":200,"i":-1326},"lock":15,"sid":{"sat":4,"code":3}},{"L":{"f":68,"i":113397527},"flags":15,"cn0":203,"P":1059551494,"D":{"f":108,"i":1620},"lock":15,"sid":{"sat":21,"code":3}},{"L":{"f":54,"i":95973753},"flags":15,"cn0":171,"P":1155394032,"D":{"f":72,"i":-3428},"lock":15,"sid":{"sat":9,"code":4}},{"L":{"f":163,"i":85390122},"flags":15,"cn0":204,"P":1026538520,"D":{"f":52,"i":-942},"lock":15,"sid":{"sat":20,"code":4}},{"L":{"f":191,"i":87827712},"flags":15,"cn0":201,"P":1056584385,"D":{"f":221,"i":899},"lock":15,"sid":{"sat":11,"code":4}},{"L":{"f":3,"i":89312267},"flags":15,"cn0":195,"P":1074066770,"D":{"f":126,"i":1704},"lock":15,"sid":{"sat":5,"code":4}},{"L":{"f":207,"i":93688532},"flags":15,"cn0":175,"P":1124721855,"D":{"f":97,"i":-1032},"lock":15,"sid":{"sat":4,"code":4}},{"L":{"f":74,"i":121600529},"flags":15,"cn0":200,"P":1167604876,"D":{"f":68,"i":-1500},"lock":15,"sid":{"sat":35,"code":12}},{"L":{"f":188,"i":129253220},"flags":15,"cn0":172,"P":1241086155,"D":{"f":37,"i":-3007},"lock":15,"sid":{"sat":26,"code":12}},{"L":{"f":75,"i":132915114},"flags":15,"cn0":158,"P":1276247287,"D":{"f":165,"i":2248},"lock":15,"sid":{"sat":34,"code":12}},{"L":{"f":75,"i":125169231},"flags":15,"cn0":188,"P":1201871760,"D":{"f":137,"i":-1308},"lock":15,"sid":{"sat":24,"code":12}}],"payload":"QDAvEAAAAAAyCEHIui89djiLBpdF+zCuDw8UAxr0BEDkKtgGtY4IadAPDwUDT1FrPlyTpwaqFPTk0A8PCgP04wlD+QUuB5nS+si3Dw8EAwZ5Jz8XT8IGRFQGbMsPDxUD8OndRHlxuAU2nPJIqw8PCQQYvC89KvMWBaNS/DTMDw8UBMEy+j4AJTwFv4MD3ckPDwsEUvUEQAvMUgUDqAZ+ww8PBQS/5AlD1JKVBc/4+2GvDw8EBIw8mEURej8HSiT6RMgPDyMMy3j5SWQ/tAe8QfQlrA8PGgz3/BFMqh/sB0vICKWeDw8iDJAbo0dP7nUHS+T6ibwPDxgM","header":{"n_obs":65,"t":{"ns_residual":0,"wn":2098,"tow":271528000}},"crc":7483} -{"length":249,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":28,"i":134653987},"flags":15,"cn0":159,"P":1292944152,"D":{"f":230,"i":1319},"lock":15,"sid":{"sat":25,"code":12}},{"L":{"f":27,"i":121077810},"flags":15,"cn0":184,"P":1162585975,"D":{"f":167,"i":1611},"lock":15,"sid":{"sat":12,"code":12}},{"L":{"f":122,"i":124518956},"flags":15,"cn0":185,"P":1195627776,"D":{"f":93,"i":-297},"lock":15,"sid":{"sat":19,"code":12}},{"L":{"f":100,"i":124671603},"flags":15,"cn0":192,"P":1197093531,"D":{"f":84,"i":2383},"lock":15,"sid":{"sat":22,"code":12}},{"L":{"f":165,"i":93625051},"flags":15,"cn0":209,"P":1162585919,"D":{"f":78,"i":1246},"lock":15,"sid":{"sat":12,"code":13}},{"L":{"f":175,"i":116440262},"flags":15,"cn0":195,"P":1107892238,"D":{"f":215,"i":-1029},"lock":15,"sid":{"sat":12,"code":14}},{"L":{"f":58,"i":132459814},"flags":15,"cn0":192,"P":1260313143,"D":{"f":134,"i":1082},"lock":15,"sid":{"sat":25,"code":14}},{"L":{"f":76,"i":125408075},"flags":15,"cn0":189,"P":1193218108,"D":{"f":28,"i":1046},"lock":15,"sid":{"sat":11,"code":14}},{"L":{"f":82,"i":118438106},"flags":15,"cn0":204,"P":1126900983,"D":{"f":190,"i":-1750},"lock":15,"sid":{"sat":24,"code":14}},{"L":{"f":7,"i":143365393},"flags":15,"cn0":158,"P":1364076332,"D":{"f":181,"i":-3172},"lock":15,"sid":{"sat":31,"code":14}},{"L":{"f":103,"i":144553860},"flags":15,"cn0":152,"P":1375384256,"D":{"f":48,"i":-2141},"lock":15,"sid":{"sat":33,"code":14}},{"L":{"f":192,"i":101495180},"flags":15,"cn0":201,"P":1260313125,"D":{"f":85,"i":830},"lock":15,"sid":{"sat":25,"code":20}},{"L":{"f":214,"i":90751339},"flags":15,"cn0":215,"P":1126901527,"D":{"f":242,"i":-1341},"lock":15,"sid":{"sat":24,"code":20}},{"L":{"f":180,"i":96091879},"flags":15,"cn0":194,"P":1193217913,"D":{"f":46,"i":802},"lock":15,"sid":{"sat":11,"code":20}}],"payload":"QDAvEAAAAAAyCEIYwxBNI6gGCBwnBeafDw8ZDHenS0UygDcHG0sGp7gPDwwMANVDRywCbAd61/5duQ8PEwybMlpHc1ZuB2RPCVTADw8WDD+nS0XbmpQFpd4ETtEPDwwNDhgJQsa88Aav+/vXww8PDA432h5LJi3lBzo6BIbADw8ZDjwQH0dLk3kHTBYEHL0PDwsO9yQrQ9o4DwdSKvm+zA8PGA4sJ05REZWLCAec87WeDw8fDsCy+lGEt50IZ6P3MJgPDyEOJdoeS4yxDAbAPgNVyQ8PGRQXJytDa8FoBdbD+vLXDw8YFHkPH0fnProFtCIDLsIPDwsU","header":{"n_obs":66,"t":{"ns_residual":0,"wn":2098,"tow":271528000}},"crc":12965} -{"length":62,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":142,"i":109851446},"flags":15,"cn0":175,"P":1364076426,"D":{"f":134,"i":-2431},"lock":15,"sid":{"sat":31,"code":20}},{"L":{"f":158,"i":89220491},"flags":15,"cn0":206,"P":1107892075,"D":{"f":53,"i":-787},"lock":15,"sid":{"sat":12,"code":20}},{"L":{"f":94,"i":110762119},"flags":15,"cn0":169,"P":1375384191,"D":{"f":174,"i":-1638},"lock":15,"sid":{"sat":33,"code":20}}],"payload":"QDAvEAAAAAAyCEOKJ05RNjOMBo6B9oavDw8fFGsXCUKLZVEFnu38Nc4PDwwUf7L6UYcYmgZemvmuqQ8PIRQ=","header":{"n_obs":67,"t":{"ns_residual":0,"wn":2098,"tow":271528000}},"crc":29409} -{"length":9,"l2ca_bias":0,"preamble":85,"l2p_bias":0,"sender":22963,"msg_type":117,"payload":"/wAAAAAAAAAA","l1ca_bias":0,"mask":255,"crc":49809,"l1p_bias":0} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MghAMC8QAAAAAAE=","wn":2098,"tow":271528000,"crc":37146} -{"length":16,"flags":17,"ns":999999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EUAwLxDkBwMZAxkJ/smaOw==","day":25,"tow":271528000,"year":2020,"crc":26716,"minutes":25,"month":3,"seconds":9} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.498315857420504,"preamble":85,"sender":22963,"msg_type":522,"payload":"QDAvECoBwOtl6kJAQpvlElaSXsADs8agkX8xwAECWwQPBg==","lat":37.831235378982754,"tow":271528000,"h_accuracy":513,"crc":22240,"lon":-122.28650352880962} -{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"QDAvEAAAAAAJAAAAAQAAAPEAygIPAg==","n":0,"d":1,"tow":271528000,"h_accuracy":241,"crc":15209,"e":9} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"QDAvEJsAhwBMAEgAcgAG","tow":271528000,"crc":37323,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"QDAvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271528000,"h_accuracy":0,"crc":49125,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"QDAvEP//","tow":271528000,"crc":1337} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":4,"flags":2147616000,"preamble":85,"sender":22963,"msg_type":65535,"payload":"AAUCgA==","crc":40942} -{"length":24,"z":3890655.0240602265,"preamble":85,"sender":22963,"msg_type":72,"payload":"UO0a3iqORMHK1UJhIkRQwc9nFIPvrk1B","crc":2168,"x":-2694229.735196747,"y":-4264073.519704292} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"bWFpbgAAAAAAAAAAAAAAAAAAAAAAAAx1AAA=","name":"main\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":47991,"stack_free":29964,"cpu":0} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"aWRsZQAAAAAAAAAAAAAAAAAAAAAbAHwAAAA=","name":"idle\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":40310,"stack_free":124,"cpu":27} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"cnBtc2cAAAAAAAAAAAAAAAAAAAABAOQNAAA=","name":"rpmsg\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":18957,"stack_free":3556,"cpu":1} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"U0JQAAAAAAAAAAAAAAAAAAAAAAAAAPz/AAA=","name":"SBP\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":51784,"stack_free":65532,"cpu":0} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"TkFQAAAAAAAAAAAAAAAAAAAAAAAAAASAAAA=","name":"NAP\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":33651,"stack_free":32772,"cpu":0} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"bWFuYWdlIFBWAAAAAAAAAAAAAAAAAOwDAAA=","name":"manage PV\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":51010,"stack_free":1004,"cpu":0} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"SU1VAAAAAAAAAAAAAAAAAAAAAAAAAPQHAAA=","name":"IMU\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":14252,"stack_free":2036,"cpu":0} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"SU1VIGF1eAAAAAAAAAAAAAAAAAAAAEwIAAA=","name":"IMU aux\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":18976,"stack_free":2124,"cpu":0} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"bmRiAAAAAAAAAAAAAAAAAAAAAAAAAFAMAAA=","name":"ndb\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":26120,"stack_free":3152,"cpu":0} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"TkFQIFRyYWNraW5nAAAAAAAAAAAuAdR3AAA=","name":"NAP Tracking\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":43939,"stack_free":30676,"cpu":302} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"ZGVjb2RlAAAAAAAAAAAAAAAAAAAJANQGAAA=","name":"decode\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":55602,"stack_free":1748,"cpu":9} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"bWFuYWdlIGFjcQAAAAAAAAAAAADzAaR3AAA=","name":"manage acq\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":7795,"stack_free":30628,"cpu":499} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"c3lzdGVtIG1vbml0b3IAAAAAAAAAACwGAAA=","name":"system monitor\u0000\u0000\u0000\u0000\u0000\u0000","crc":58531,"stack_free":1580,"cpu":0} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"V2F0Y2hkb2cAAAAAAAAAAAAAAAAAAOQDAAA=","name":"Watchdog\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":44438,"stack_free":996,"cpu":0} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"c3RhcmxpbmcAAAAAAAAAAAAAAACVAPz/AAA=","name":"starling\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":15999,"stack_free":65532,"cpu":149} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"bWVfY2FsY19wdnQAAAAAAAAAAAAHAIwjAAA=","name":"me_calc_pvt\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":24698,"stack_free":9100,"cpu":7} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"UFBTAAAAAAAAAAAAAAAAAAAAAAAAAEgHAAA=","name":"PPS\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":38576,"stack_free":1864,"cpu":0} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"c3BlY3RydW0gYW5hbHl6ZXIAAAAAANQPAAA=","name":"spectrum analyzer\u0000\u0000\u0000","crc":50933,"stack_free":4052,"cpu":0} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgikMC8QAAAAAAE=","wn":2098,"tow":271528100,"crc":19042} -{"length":16,"flags":17,"ns":99999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EaQwLxDkBwMZAxkK/uD1BQ==","day":25,"tow":271528100,"year":2020,"crc":10989,"minutes":25,"month":3,"seconds":10} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.50208066592448,"preamble":85,"sender":22963,"msg_type":522,"payload":"pDAvEGmFpetl6kJAtsHcElaSXsB8GchbiIAxwAECWwQPBg==","lat":37.83123536665045,"tow":271528100,"h_accuracy":513,"crc":27134,"lon":-122.2865035205676} -{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"pDAvEP3///8AAAAAAAAAAPEAygIPAg==","n":-3,"d":0,"tow":271528100,"h_accuracy":241,"crc":47591,"e":0} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"pDAvEJsAhwBMAEgAcgAG","tow":271528100,"crc":59766,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"pDAvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271528100,"h_accuracy":0,"crc":7622,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"pDAvEP//","tow":271528100,"crc":34976} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MggIMS8QAAAAAAE=","wn":2098,"tow":271528200,"crc":41199} -{"length":16,"flags":17,"ns":199999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EQgxLxDkBwMZAxkK/sHrCw==","day":25,"tow":271528200,"year":2020,"crc":21561,"minutes":25,"month":3,"seconds":10} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.5073098327424,"preamble":85,"sender":22963,"msg_type":522,"payload":"CDEvEN3gnOtl6kJAKxXSElaSXsBekaQO34ExwAECWwQPBg==","lat":37.831235362625854,"tow":271528200,"h_accuracy":513,"crc":26313,"lon":-122.28650351062667} -{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"CDEvEAUAAAABAAAACAAAAPEAywIPAg==","n":5,"d":8,"tow":271528200,"h_accuracy":241,"crc":56609,"e":1} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"CDEvEJsAhwBMAEgAcgAG","tow":271528200,"crc":59366,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"CDEvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271528200,"h_accuracy":0,"crc":57834,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"CDEvEP//","tow":271528200,"crc":51258} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MghsMS8QAAAAAAE=","wn":2098,"tow":271528300,"crc":50213} -{"length":16,"flags":17,"ns":299999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EWwxLxDkBwMZAxkK/qLhEQ==","day":25,"tow":271528300,"year":2020,"crc":58909,"minutes":25,"month":3,"seconds":10} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.513536378650866,"preamble":85,"sender":22963,"msg_type":522,"payload":"bDEvEC0Hhutl6kJAF/rPElaSXsCbnL8ed4MxwAECWwQPBg==","lat":37.831235351985335,"tow":271528300,"h_accuracy":513,"crc":60846,"lon":-122.28650350866552} -{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"bDEvEP////8GAAAA/v////EAywIPAg==","n":-1,"d":-2,"tow":271528300,"h_accuracy":241,"crc":28591,"e":6} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"bDEvEJsAhwBMAEgAcgAG","tow":271528300,"crc":52041,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"bDEvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271528300,"h_accuracy":0,"crc":63836,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"bDEvEP//","tow":271528300,"crc":37251} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":237,"states":[{"cn0":212,"mesid":{"sat":5,"code":0}},{"cn0":179,"mesid":{"sat":21,"code":0}},{"cn0":185,"mesid":{"sat":2,"code":0}},{"cn0":162,"mesid":{"sat":31,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":216,"mesid":{"sat":25,"code":0}},{"cn0":206,"mesid":{"sat":12,"code":0}},{"cn0":212,"mesid":{"sat":29,"code":0}},{"cn0":204,"mesid":{"sat":18,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":203,"mesid":{"sat":131,"code":2}},{"cn0":204,"mesid":{"sat":25,"code":1}},{"cn0":186,"mesid":{"sat":12,"code":1}},{"cn0":151,"mesid":{"sat":31,"code":1}},{"cn0":196,"mesid":{"sat":18,"code":1}},{"cn0":194,"mesid":{"sat":29,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":193,"mesid":{"sat":5,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":214,"mesid":{"sat":100,"code":3}},{"cn0":179,"mesid":{"sat":98,"code":3}},{"cn0":174,"mesid":{"sat":102,"code":3}},{"cn0":208,"mesid":{"sat":101,"code":3}},{"cn0":208,"mesid":{"sat":93,"code":3}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":182,"mesid":{"sat":106,"code":3}},{"cn0":203,"mesid":{"sat":104,"code":3}},{"cn0":171,"mesid":{"sat":98,"code":4}},{"cn0":205,"mesid":{"sat":102,"code":4}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":201,"mesid":{"sat":100,"code":4}},{"cn0":196,"mesid":{"sat":101,"code":4}},{"cn0":188,"mesid":{"sat":104,"code":4}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":175,"mesid":{"sat":106,"code":4}},{"cn0":200,"mesid":{"sat":35,"code":12}},{"cn0":172,"mesid":{"sat":26,"code":12}},{"cn0":159,"mesid":{"sat":34,"code":12}},{"cn0":188,"mesid":{"sat":24,"code":12}},{"cn0":159,"mesid":{"sat":25,"code":12}},{"cn0":185,"mesid":{"sat":12,"code":12}},{"cn0":185,"mesid":{"sat":19,"code":12}},{"cn0":192,"mesid":{"sat":22,"code":12}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":209,"mesid":{"sat":12,"code":13}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":195,"mesid":{"sat":12,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":192,"mesid":{"sat":25,"code":14}},{"cn0":189,"mesid":{"sat":11,"code":14}},{"cn0":204,"mesid":{"sat":24,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":157,"mesid":{"sat":31,"code":14}},{"cn0":153,"mesid":{"sat":33,"code":14}},{"cn0":201,"mesid":{"sat":25,"code":20}},{"cn0":215,"mesid":{"sat":24,"code":20}},{"cn0":194,"mesid":{"sat":11,"code":20}},{"cn0":175,"mesid":{"sat":31,"code":20}},{"cn0":206,"mesid":{"sat":12,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":169,"mesid":{"sat":33,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}}],"preamble":85,"sender":22963,"msg_type":97,"payload":"BQDUFQCzAgC5HwCiAAAAAAAAGQDYDADOHQDUEgDMAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwLLGQHMDAG6HwGXEgHEHQHCAAAABQHBAAAAAAAAAAAAAAAAZAPWYgOzZgOuZQPQXQPQAAAAagO2aAPLYgSrZgTNAAAAZATJZQTEaAS8AAAAagSvIwzIGgysIgyfGAy8GQyfDAy5Ewy5FgzAAAAADA3RAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADA7DAAAAGQ7ACw69GA7MAAAAHw6dIQ6ZGRTJGBTXCxTCHxSvDBTOAAAAIRSpAAAA","crc":21854} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgjQMS8QAAAAAAE=","wn":2098,"tow":271528400,"crc":14981} -{"length":16,"flags":17,"ns":399999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EdAxLxDkBwMZAxkK/oPXFw==","day":25,"tow":271528400,"year":2020,"crc":41829,"minutes":25,"month":3,"seconds":10} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.5179741030323,"preamble":85,"sender":22963,"msg_type":522,"payload":"0DEvEJ9naetl6kJAg8jaElaSXsDcsmjzmYQxwAECWwQPBg==","lat":37.83123533865659,"tow":271528400,"h_accuracy":513,"crc":6251,"lon":-122.2865035187297} -{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"0DEvEAIAAAD6////BQAAAPEAywIPAg==","n":2,"d":5,"tow":271528400,"h_accuracy":241,"crc":63955,"e":-6} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"0DEvEJsAhwBMAEgAcgAG","tow":271528400,"crc":61490,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"0DEvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271528400,"h_accuracy":0,"crc":28096,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"0DEvEP//","tow":271528400,"crc":25036} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":9,"l2ca_bias":0,"preamble":85,"l2p_bias":0,"sender":22963,"msg_type":117,"payload":"/wAAAAAAAAAA","l1ca_bias":0,"mask":255,"crc":49809,"l1p_bias":0} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"Mgg0Mi8QAAAAAAE=","wn":2098,"tow":271528500,"crc":10632} -{"length":16,"flags":17,"ns":499999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"ETQyLxDkBwMZAxkK/mTNHQ==","day":25,"tow":271528500,"year":2020,"crc":15912,"minutes":25,"month":3,"seconds":10} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.521637712947758,"preamble":85,"sender":22963,"msg_type":522,"payload":"NDIvEJpgRutl6kJAkCDWElaSXsCKeJUMioUxwAECWwQPBg==","lat":37.83123532234568,"tow":271528500,"h_accuracy":513,"crc":793,"lon":-122.28650351439342} -{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"NDIvEPv////5/////f////EAywIPAg==","n":-5,"d":-3,"tow":271528500,"h_accuracy":241,"crc":23504,"e":-7} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"NDIvEJsAhwBMAEgAcgAG","tow":271528500,"crc":1324,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"NDIvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271528500,"h_accuracy":0,"crc":41432,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"NDIvEP//","tow":271528500,"crc":647} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgiYMi8QAAAAAAE=","wn":2098,"tow":271528600,"crc":34006} -{"length":16,"flags":17,"ns":599999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EZgyLxDkBwMZAxkK/kXDIw==","day":25,"tow":271528600,"year":2020,"crc":3773,"minutes":25,"month":3,"seconds":10} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.525909606481804,"preamble":85,"sender":22963,"msg_type":522,"payload":"mDIvELKkS+tl6kJAe0i3ElaSXsDYfRADooYxwAECWwQPBg==","lat":37.831235324797845,"tow":271528600,"h_accuracy":513,"crc":59203,"lon":-122.28650348566764} -{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"mDIvEAoAAAANAAAA/f////EAywIPAg==","n":10,"d":-3,"tow":271528600,"h_accuracy":241,"crc":59259,"e":13} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"mDIvEJsAhwBMAEgAcgAG","tow":271528600,"crc":28893,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"mDIvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271528600,"h_accuracy":0,"crc":34818,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"mDIvEP//","tow":271528600,"crc":59468} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"Mgj8Mi8QAAAAAAE=","wn":2098,"tow":271528700,"crc":57372} -{"length":16,"flags":17,"ns":699999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EfwyLxDkBwMZAxkK/ia5KQ==","day":25,"tow":271528700,"year":2020,"crc":42737,"minutes":25,"month":3,"seconds":10} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.530555189128012,"preamble":85,"sender":22963,"msg_type":522,"payload":"/DIvECbBROtl6kJACbu0ElaSXsAlBwJ30ocxwAECWwQPBg==","lat":37.83123532158997,"tow":271528700,"h_accuracy":513,"crc":56626,"lon":-122.28650348329042} -{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"/DIvEAMAAAD3////FQAAAPEAywIPAg==","n":3,"d":21,"tow":271528700,"h_accuracy":241,"crc":3503,"e":-9} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"/DIvEJsAhwBMAEgAcgAG","tow":271528700,"crc":23666,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"/DIvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271528700,"h_accuracy":0,"crc":37044,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"/DIvEP//","tow":271528700,"crc":45557} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"message_type":2,"length":34,"data":[87,255,0,7,255,0,47,255,0,7,255,127,255,254,127,247,255,255,224,2,229,231,85,238,110,229,112],"preamble":85,"sender":22963,"msg_type":30583,"payload":"gwIZMi8QAlf/AAf/AC//AAf/f//+f/f//+AC5edV7m7lcA==","tow":271528473,"crc":62134,"sid":{"sat":131,"code":2}} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MghgMy8QAAAAAAE=","wn":2098,"tow":271528800,"crc":65171} -{"length":16,"flags":17,"ns":799999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EWAzLxDkBwMZAxkK/gevLw==","day":25,"tow":271528800,"year":2020,"crc":794,"minutes":25,"month":3,"seconds":10} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.536757654311355,"preamble":85,"sender":22963,"msg_type":522,"payload":"YDMvEH0/c+tl6kJA2HupElaSXsAbJRvzaIkxwAECWwQPBg==","lat":37.8312353432402,"tow":271528800,"h_accuracy":513,"crc":60714,"lon":-122.28650347281598} -{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"YDMvEAIAAAALAAAAAwAAAPEAywIPAg==","n":2,"d":3,"tow":271528800,"h_accuracy":241,"crc":37184,"e":11} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"YDMvEJsAhwBMAEgAcgAG","tow":271528800,"crc":33148,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"YDMvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271528800,"h_accuracy":0,"crc":47987,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"YDMvEP//","tow":271528800,"crc":57059} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":237,"states":[{"cn0":212,"mesid":{"sat":5,"code":0}},{"cn0":179,"mesid":{"sat":21,"code":0}},{"cn0":186,"mesid":{"sat":2,"code":0}},{"cn0":163,"mesid":{"sat":31,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":217,"mesid":{"sat":25,"code":0}},{"cn0":207,"mesid":{"sat":12,"code":0}},{"cn0":212,"mesid":{"sat":29,"code":0}},{"cn0":205,"mesid":{"sat":18,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":204,"mesid":{"sat":131,"code":2}},{"cn0":204,"mesid":{"sat":25,"code":1}},{"cn0":186,"mesid":{"sat":12,"code":1}},{"cn0":152,"mesid":{"sat":31,"code":1}},{"cn0":196,"mesid":{"sat":18,"code":1}},{"cn0":194,"mesid":{"sat":29,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":193,"mesid":{"sat":5,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":213,"mesid":{"sat":11,"code":3}},{"cn0":179,"mesid":{"sat":9,"code":3}},{"cn0":173,"mesid":{"sat":20,"code":3}},{"cn0":208,"mesid":{"sat":5,"code":3}},{"cn0":208,"mesid":{"sat":10,"code":3}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":182,"mesid":{"sat":4,"code":3}},{"cn0":203,"mesid":{"sat":21,"code":3}},{"cn0":170,"mesid":{"sat":9,"code":4}},{"cn0":205,"mesid":{"sat":20,"code":4}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":201,"mesid":{"sat":11,"code":4}},{"cn0":195,"mesid":{"sat":5,"code":4}},{"cn0":188,"mesid":{"sat":0,"code":4}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":175,"mesid":{"sat":4,"code":4}},{"cn0":200,"mesid":{"sat":35,"code":12}},{"cn0":172,"mesid":{"sat":26,"code":12}},{"cn0":159,"mesid":{"sat":34,"code":12}},{"cn0":188,"mesid":{"sat":24,"code":12}},{"cn0":160,"mesid":{"sat":25,"code":12}},{"cn0":185,"mesid":{"sat":12,"code":12}},{"cn0":185,"mesid":{"sat":19,"code":12}},{"cn0":192,"mesid":{"sat":22,"code":12}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":209,"mesid":{"sat":12,"code":13}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":195,"mesid":{"sat":12,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":191,"mesid":{"sat":25,"code":14}},{"cn0":189,"mesid":{"sat":11,"code":14}},{"cn0":204,"mesid":{"sat":24,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":157,"mesid":{"sat":31,"code":14}},{"cn0":151,"mesid":{"sat":33,"code":14}},{"cn0":201,"mesid":{"sat":25,"code":20}},{"cn0":215,"mesid":{"sat":24,"code":20}},{"cn0":194,"mesid":{"sat":11,"code":20}},{"cn0":175,"mesid":{"sat":31,"code":20}},{"cn0":206,"mesid":{"sat":12,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":169,"mesid":{"sat":33,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}}],"preamble":85,"sender":22963,"msg_type":97,"payload":"BQDUFQCzAgC6HwCjAAAAAAAAGQDZDADPHQDUEgDNAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwLMGQHMDAG6HwGYEgHEHQHCAAAABQHBAAAAAAAAAAAAAAAACwPVCQOzFAOtBQPQCgPQAAAABAO2FQPLCQSqFATNAAAACwTJBQTDAAS8AAAABASvIwzIGgysIgyfGAy8GQygDAy5Ewy5FgzAAAAADA3RAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADA7DAAAAGQ6/Cw69GA7MAAAAHw6dIQ6XGRTJGBTXCxTCHxSvDBTOAAAAIRSpAAAA","crc":2603} -{"length":128,"preamble":85,"sender":22963,"msg_type":151,"payload":"AgAaHQUAKzUMAFEtFQB9GRkAbUYaAKEBHQChNx8AlQ4EAxUWBQMyIQkDXw4KA3EpCwOYJQwDqgMTAyIHFAMMMRUDlSUMDJQpEwwjIBQMDwIWDEMkGAyCIxkMnQ4aDGcVIgyOESMMIi0LDosyDA4PPBgObDYZDpcpHw5VESEOIA8=","crc":34187,"azel":[{"el":29,"az":26,"sid":{"sat":2,"code":0}},{"el":53,"az":43,"sid":{"sat":5,"code":0}},{"el":45,"az":81,"sid":{"sat":12,"code":0}},{"el":25,"az":125,"sid":{"sat":21,"code":0}},{"el":70,"az":109,"sid":{"sat":25,"code":0}},{"el":1,"az":161,"sid":{"sat":26,"code":0}},{"el":55,"az":161,"sid":{"sat":29,"code":0}},{"el":14,"az":149,"sid":{"sat":31,"code":0}},{"el":22,"az":21,"sid":{"sat":4,"code":3}},{"el":33,"az":50,"sid":{"sat":5,"code":3}},{"el":14,"az":95,"sid":{"sat":9,"code":3}},{"el":41,"az":113,"sid":{"sat":10,"code":3}},{"el":37,"az":152,"sid":{"sat":11,"code":3}},{"el":3,"az":170,"sid":{"sat":12,"code":3}},{"el":7,"az":34,"sid":{"sat":19,"code":3}},{"el":49,"az":12,"sid":{"sat":20,"code":3}},{"el":37,"az":149,"sid":{"sat":21,"code":3}},{"el":41,"az":148,"sid":{"sat":12,"code":12}},{"el":32,"az":35,"sid":{"sat":19,"code":12}},{"el":2,"az":15,"sid":{"sat":20,"code":12}},{"el":36,"az":67,"sid":{"sat":22,"code":12}},{"el":35,"az":130,"sid":{"sat":24,"code":12}},{"el":14,"az":157,"sid":{"sat":25,"code":12}},{"el":21,"az":103,"sid":{"sat":26,"code":12}},{"el":17,"az":142,"sid":{"sat":34,"code":12}},{"el":45,"az":34,"sid":{"sat":35,"code":12}},{"el":50,"az":139,"sid":{"sat":11,"code":14}},{"el":60,"az":15,"sid":{"sat":12,"code":14}},{"el":54,"az":108,"sid":{"sat":24,"code":14}},{"el":41,"az":151,"sid":{"sat":25,"code":14}},{"el":17,"az":85,"sid":{"sat":31,"code":14}},{"el":15,"az":32,"sid":{"sat":33,"code":14}}]} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgjEMy8QAAAAAAE=","wn":2098,"tow":271528900,"crc":31282} -{"length":16,"flags":17,"ns":899999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EcQzLxDkBwMZAxkK/uikNQ==","day":25,"tow":271528900,"year":2020,"crc":45615,"minutes":25,"month":3,"seconds":10} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.543721877462104,"preamble":85,"sender":22963,"msg_type":522,"payload":"xDMvEL4Bh+tl6kJAIqepElaSXsDI0WFbMYsxwAECWwQPBg==","lat":37.83123535244111,"tow":271528900,"h_accuracy":513,"crc":56878,"lon":-122.28650347297346} -{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"xDMvEPX///8HAAAACQAAAPEAywIPAg==","n":-11,"d":9,"tow":271528900,"h_accuracy":241,"crc":47864,"e":7} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"xDMvEJsAhwBMAEgAcgAG","tow":271528900,"crc":54216,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"xDMvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271528900,"h_accuracy":0,"crc":52234,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"xDMvEP//","tow":271528900,"crc":14698} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":249,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":51,"i":110566826},"flags":15,"cn0":212,"P":1052008240,"D":{"f":188,"i":-193},"lock":15,"sid":{"sat":5,"code":0}},{"L":{"f":20,"i":121794320},"flags":15,"cn0":179,"P":1158834445,"D":{"f":30,"i":2170},"lock":15,"sid":{"sat":21,"code":0}},{"L":{"f":193,"i":123373023},"flags":15,"cn0":185,"P":1173854871,"D":{"f":188,"i":-2478},"lock":15,"sid":{"sat":2,"code":0}},{"L":{"f":210,"i":128743950},"flags":15,"cn0":163,"P":1224957926,"D":{"f":137,"i":-403},"lock":15,"sid":{"sat":31,"code":0}},{"L":{"f":76,"i":107839121},"flags":15,"cn0":217,"P":1026055053,"D":{"f":234,"i":-1135},"lock":15,"sid":{"sat":25,"code":0}},{"L":{"f":152,"i":114140311},"flags":15,"cn0":207,"P":1086008871,"D":{"f":52,"i":-2971},"lock":15,"sid":{"sat":12,"code":0}},{"L":{"f":84,"i":110740134},"flags":15,"cn0":212,"P":1053657268,"D":{"f":153,"i":1482},"lock":15,"sid":{"sat":29,"code":0}},{"L":{"f":158,"i":84030504},"flags":15,"cn0":204,"P":1026055106,"D":{"f":198,"i":-884},"lock":15,"sid":{"sat":25,"code":1}},{"L":{"f":45,"i":88940534},"flags":15,"cn0":186,"P":1086008762,"D":{"f":189,"i":-2316},"lock":15,"sid":{"sat":12,"code":1}},{"L":{"f":27,"i":100319964},"flags":15,"cn0":152,"P":1224957915,"D":{"f":215,"i":-314},"lock":15,"sid":{"sat":31,"code":1}},{"L":{"f":155,"i":86291015},"flags":15,"cn0":194,"P":1053657193,"D":{"f":234,"i":1154},"lock":15,"sid":{"sat":29,"code":1}},{"L":{"f":191,"i":86155997},"flags":15,"cn0":193,"P":1052008171,"D":{"f":77,"i":-149},"lock":15,"sid":{"sat":5,"code":1}},{"L":{"f":39,"i":112920176},"flags":15,"cn0":213,"P":1056573261,"D":{"f":191,"i":1155},"lock":15,"sid":{"sat":11,"code":3}},{"L":{"f":187,"i":123399220},"flags":15,"cn0":180,"P":1155435289,"D":{"f":32,"i":-4409},"lock":15,"sid":{"sat":9,"code":3}}],"payload":"KDQvEAAAAAAyCEAwX7Q+qh2XBjM//7zUDw8FAA1pEkUQb0IHFHoIHrMPDxUAl5r3Rd+FWgfBUva8uQ8PAgDmXwNJDnqsB9Jt/omjDw8fAI1bKD2Rfm0GTJH76tkPDxkAJy67QJekzQaYZfQ0zw8PDAC0iM0+psKZBlTKBZnUDw8dAMJbKD0oNAIFnoz8xswPDxkBui27QPYfTQUt9Pa9ug8PDAHbXwNJ3ML6BRvG/teYDw8fAWmIzT5HsiQFm4IE6sIPDx0B6160Pt2iIgW/a/9NwQ8PBQFNB/o+cAa7BieDBL/VDw8LAxmL3kQ07FoHu8fuILQPDwkD","header":{"n_obs":64,"t":{"ns_residual":0,"wn":2098,"tow":271529000}},"crc":58446} -{"length":249,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":88,"i":109788466},"flags":15,"cn0":174,"P":1026549523,"D":{"f":172,"i":-1212},"lock":15,"sid":{"sat":20,"code":3}},{"L":{"f":200,"i":114827862},"flags":15,"cn0":208,"P":1074045994,"D":{"f":189,"i":2190},"lock":15,"sid":{"sat":5,"code":3}},{"L":{"f":176,"i":111648583},"flags":15,"cn0":208,"P":1047249177,"D":{"f":122,"i":-3051},"lock":15,"sid":{"sat":10,"code":3}},{"L":{"f":135,"i":120458023},"flags":15,"cn0":182,"P":1124734008,"D":{"f":86,"i":-1326},"lock":15,"sid":{"sat":4,"code":3}},{"L":{"f":94,"i":113395906},"flags":15,"cn0":203,"P":1059536353,"D":{"f":139,"i":1621},"lock":15,"sid":{"sat":21,"code":3}},{"L":{"f":92,"i":95977181},"flags":15,"cn0":170,"P":1155435320,"D":{"f":145,"i":-3430},"lock":15,"sid":{"sat":9,"code":4}},{"L":{"f":28,"i":85391065},"flags":15,"cn0":205,"P":1026549856,"D":{"f":185,"i":-943},"lock":15,"sid":{"sat":20,"code":4}},{"L":{"f":1,"i":87826814},"flags":15,"cn0":201,"P":1056573580,"D":{"f":163,"i":898},"lock":15,"sid":{"sat":11,"code":4}},{"L":{"f":188,"i":89310563},"flags":15,"cn0":195,"P":1074046248,"D":{"f":92,"i":1703},"lock":15,"sid":{"sat":5,"code":4}},{"L":{"f":25,"i":93689564},"flags":15,"cn0":175,"P":1124734243,"D":{"f":99,"i":-1030},"lock":15,"sid":{"sat":4,"code":4}},{"L":{"f":151,"i":121602029},"flags":15,"cn0":200,"P":1167619282,"D":{"f":145,"i":-1501},"lock":15,"sid":{"sat":35,"code":12}},{"L":{"f":3,"i":129256229},"flags":15,"cn0":172,"P":1241115046,"D":{"f":83,"i":-3008},"lock":15,"sid":{"sat":26,"code":12}},{"L":{"f":149,"i":132912865},"flags":15,"cn0":159,"P":1276225710,"D":{"f":29,"i":2249},"lock":15,"sid":{"sat":34,"code":12}},{"L":{"f":34,"i":125170539},"flags":15,"cn0":188,"P":1201884317,"D":{"f":153,"i":-1308},"lock":15,"sid":{"sat":24,"code":12}}],"payload":"KDQvEAAAAAAyCEET5y89Mj2LBlhE+6yuDw8UAyqkBEBWItgGyI4IvdAPDwUDGcFrPkefpwawFfR60A8PCgM4FApDJwsuB4fS+la2Dw8EA+E9Jz/CSMIGXlUGi8sPDxUDOIveRN1+uAVcmvKRqg8PCQRg6C892fYWBRxR/LnNDw8UBIwI+j5+ITwFAYIDo8kPDwsEKKUEQGPFUgW8pwZcww8PBQQjFQpD3JaVBRn6+2OvDw8EBNJ0mEXtfz8HlyP6kcgPDyMMpun5SSVLtAcDQPRTrA8PGgyuqBFM4RbsB5XJCB2fDw8iDJ1Mo0dr83UHIuT6mbwPDxgM","header":{"n_obs":65,"t":{"ns_residual":0,"wn":2098,"tow":271529000}},"crc":35527} -{"length":249,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":223,"i":134652667},"flags":15,"cn0":159,"P":1292931494,"D":{"f":106,"i":1319},"lock":15,"sid":{"sat":25,"code":12}},{"L":{"f":239,"i":121076198},"flags":15,"cn0":185,"P":1162570522,"D":{"f":103,"i":1612},"lock":15,"sid":{"sat":12,"code":12}},{"L":{"f":119,"i":124519252},"flags":15,"cn0":185,"P":1195630624,"D":{"f":56,"i":-296},"lock":15,"sid":{"sat":19,"code":12}},{"L":{"f":136,"i":124669219},"flags":15,"cn0":192,"P":1197070641,"D":{"f":112,"i":2384},"lock":15,"sid":{"sat":22,"code":12}},{"L":{"f":200,"i":93623805},"flags":15,"cn0":209,"P":1162570455,"D":{"f":72,"i":1246},"lock":15,"sid":{"sat":12,"code":13}},{"L":{"f":89,"i":116441290},"flags":15,"cn0":195,"P":1107902017,"D":{"f":255,"i":-1028},"lock":15,"sid":{"sat":12,"code":14}},{"L":{"f":59,"i":132458731},"flags":15,"cn0":191,"P":1260302842,"D":{"f":207,"i":1082},"lock":15,"sid":{"sat":25,"code":14}},{"L":{"f":125,"i":125407029},"flags":15,"cn0":189,"P":1193208155,"D":{"f":188,"i":1046},"lock":15,"sid":{"sat":11,"code":14}},{"L":{"f":46,"i":118439855},"flags":15,"cn0":204,"P":1126917627,"D":{"f":186,"i":-1749},"lock":15,"sid":{"sat":24,"code":14}},{"L":{"f":111,"i":143368565},"flags":15,"cn0":157,"P":1364106503,"D":{"f":68,"i":-3171},"lock":15,"sid":{"sat":31,"code":14}},{"L":{"f":41,"i":144556000},"flags":15,"cn0":151,"P":1375404599,"D":{"f":162,"i":-2138},"lock":15,"sid":{"sat":33,"code":14}},{"L":{"f":235,"i":101494350},"flags":15,"cn0":201,"P":1260302822,"D":{"f":238,"i":829},"lock":15,"sid":{"sat":25,"code":20}},{"L":{"f":219,"i":90752679},"flags":15,"cn0":215,"P":1126918166,"D":{"f":30,"i":-1340},"lock":15,"sid":{"sat":24,"code":20}},{"L":{"f":93,"i":96091078},"flags":15,"cn0":194,"P":1193207963,"D":{"f":172,"i":800},"lock":15,"sid":{"sat":11,"code":20}}],"payload":"KDQvEAAAAAAyCEKmkRBN+6IGCN8nBWqfDw8ZDBprS0XmeTcH70wGZ7kPDwwMIOBDR1QDbAd32P44uQ8PEwwx2VlHI01uB4hQCXDADw8WDNdqS0X9lZQFyN4ESNEPDwwNQT4JQsrA8AZZ/Pv/ww8PDA76sR5L6yjlBzs6BM+/Dw8ZDlvpHkc1j3kHfRYEvL0PDwsO+2UrQ68/DwcuK/m6zA8PGA4HnU5RdaGLCG+d80SdDw8fDjcC+1Hgv50IKab3opcPDyEO5rEeS06uDAbrPQPuyQ8PGRQWaCtDp8ZoBdvE+h7XDw8YFJvoHkfGO7oFXSADrMIPDwsU","header":{"n_obs":66,"t":{"ns_residual":0,"wn":2098,"tow":271529000}},"crc":40959} -{"length":62,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":88,"i":109853877},"flags":15,"cn0":174,"P":1364106608,"D":{"f":69,"i":-2432},"lock":15,"sid":{"sat":31,"code":20}},{"L":{"f":11,"i":89221279},"flags":15,"cn0":206,"P":1107901853,"D":{"f":135,"i":-788},"lock":15,"sid":{"sat":12,"code":20}},{"L":{"f":240,"i":110763758},"flags":15,"cn0":169,"P":1375404553,"D":{"f":58,"i":-1639},"lock":15,"sid":{"sat":33,"code":20}}],"payload":"KDQvEAAAAAAyCENwnU5RtTyMBliA9kWuDw8fFJ09CUKfaFEFC+z8h84PDwwUCQL7Ue4emgbwmfk6qQ8PIRQ=","header":{"n_obs":67,"t":{"ns_residual":0,"wn":2098,"tow":271529000}},"crc":27298} -{"length":9,"l2ca_bias":0,"preamble":85,"l2p_bias":0,"sender":22963,"msg_type":117,"payload":"/wAAAAAAAAAA","l1ca_bias":0,"mask":255,"crc":49809,"l1p_bias":0} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MggoNC8QAAAAAAE=","wn":2098,"tow":271529000,"crc":20397} -{"length":16,"flags":17,"ns":999999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"ESg0LxDkBwMZAxkK/smaOw==","day":25,"tow":271529000,"year":2020,"crc":60275,"minutes":25,"month":3,"seconds":10} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.55468374792116,"preamble":85,"sender":22963,"msg_type":522,"payload":"KDQvEPeSs+tl6kJAYby4ElaSXsCw8QzB/40xwAECWwQPBg==","lat":37.83123537319437,"tow":271529000,"h_accuracy":513,"crc":43633,"lon":-122.2865034870206} -{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"KDQvEPz///8BAAAACAAAAPEAywIPAg==","n":-4,"d":8,"tow":271529000,"h_accuracy":241,"crc":10884,"e":1} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"KDQvEJsAhwBMAEgAcgAG","tow":271529000,"crc":64566,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"KDQvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271529000,"h_accuracy":0,"crc":14602,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"KDQvEP//","tow":271529000,"crc":56933} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":4,"flags":2147616000,"preamble":85,"sender":22963,"msg_type":65535,"payload":"AAUCgA==","crc":40942} -{"length":24,"z":3890655.0240602265,"preamble":85,"sender":22963,"msg_type":72,"payload":"UO0a3iqORMHK1UJhIkRQwc9nFIPvrk1B","crc":2168,"x":-2694229.735196747,"y":-4264073.519704292} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgiMNC8QAAAAAAE=","wn":2098,"tow":271529100,"crc":51980} -{"length":16,"flags":17,"ns":99999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EYw0LxDkBwMZAxkL/uD1BQ==","day":25,"tow":271529100,"year":2020,"crc":51016,"minutes":25,"month":3,"seconds":11} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.564098609516677,"preamble":85,"sender":22963,"msg_type":522,"payload":"jDQvEEtQ7etl6kJAHiDnElaSXsDclzfEaJAxwAECWwQPBg==","lat":37.83123540008145,"tow":271529100,"h_accuracy":513,"crc":12009,"lon":-122.28650353022428} -{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"jDQvEAkAAADx////+f////EAywIPAg==","n":9,"d":-7,"tow":271529100,"h_accuracy":241,"crc":11389,"e":-15} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"jDQvEJsAhwBMAEgAcgAG","tow":271529100,"crc":44674,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"jDQvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271529100,"h_accuracy":0,"crc":20083,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"jDQvEP//","tow":271529100,"crc":14828} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgjwNC8QAAAAAAE=","wn":2098,"tow":271529200,"crc":54727} -{"length":16,"flags":17,"ns":199999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EfA0LxDkBwMZAxkL/sHrCw==","day":25,"tow":271529200,"year":2020,"crc":62060,"minutes":25,"month":3,"seconds":11} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.575478339370594,"preamble":85,"sender":22963,"msg_type":522,"payload":"8DQvECBaQuxl6kJAcfUPE1aSXsAxJ2eMUpMxwAECWwQPBg==","lat":37.83123543968054,"tow":271529200,"h_accuracy":513,"crc":58412,"lon":-122.28650356825325} -{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"8DQvEBYAAAD3////BwAAAPEAywIPAg==","n":22,"d":7,"tow":271529200,"h_accuracy":241,"crc":36942,"e":-9} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"8DQvEJsAhwBMAEgAcgAG","tow":271529200,"crc":60386,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"8DQvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271529200,"h_accuracy":0,"crc":46368,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"8DQvEP//","tow":271529200,"crc":30611} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MghUNS8QAAAAAAE=","wn":2098,"tow":271529300,"crc":5813} -{"length":16,"flags":17,"ns":299999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EVQ1LxDkBwMZAxkL/qLhEQ==","day":25,"tow":271529300,"year":2020,"crc":17714,"minutes":25,"month":3,"seconds":11} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.583475233542902,"preamble":85,"sender":22963,"msg_type":522,"payload":"VDUvEMnSUOxl6kJArAEUE1aSXsC9FwaiXpUxwAECWwQPBg==","lat":37.83123544641928,"tow":271529300,"h_accuracy":513,"crc":11336,"lon":-122.28650357202304} -{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"VDUvEPL///8OAAAAFAAAAPEAywIPAg==","n":-14,"d":20,"tow":271529300,"h_accuracy":241,"crc":7471,"e":14} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"VDUvEJsAhwBMAEgAcgAG","tow":271529300,"crc":49719,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"VDUvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271529300,"h_accuracy":0,"crc":6063,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"VDUvEP//","tow":271529300,"crc":14923} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":237,"states":[{"cn0":212,"mesid":{"sat":5,"code":0}},{"cn0":179,"mesid":{"sat":21,"code":0}},{"cn0":185,"mesid":{"sat":2,"code":0}},{"cn0":162,"mesid":{"sat":31,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":217,"mesid":{"sat":25,"code":0}},{"cn0":207,"mesid":{"sat":12,"code":0}},{"cn0":212,"mesid":{"sat":29,"code":0}},{"cn0":205,"mesid":{"sat":18,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":204,"mesid":{"sat":131,"code":2}},{"cn0":204,"mesid":{"sat":25,"code":1}},{"cn0":186,"mesid":{"sat":12,"code":1}},{"cn0":152,"mesid":{"sat":31,"code":1}},{"cn0":196,"mesid":{"sat":18,"code":1}},{"cn0":194,"mesid":{"sat":29,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":193,"mesid":{"sat":5,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":213,"mesid":{"sat":100,"code":3}},{"cn0":180,"mesid":{"sat":98,"code":3}},{"cn0":174,"mesid":{"sat":102,"code":3}},{"cn0":208,"mesid":{"sat":101,"code":3}},{"cn0":208,"mesid":{"sat":93,"code":3}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":182,"mesid":{"sat":106,"code":3}},{"cn0":203,"mesid":{"sat":104,"code":3}},{"cn0":170,"mesid":{"sat":98,"code":4}},{"cn0":205,"mesid":{"sat":102,"code":4}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":201,"mesid":{"sat":100,"code":4}},{"cn0":195,"mesid":{"sat":101,"code":4}},{"cn0":188,"mesid":{"sat":104,"code":4}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":175,"mesid":{"sat":106,"code":4}},{"cn0":200,"mesid":{"sat":35,"code":12}},{"cn0":172,"mesid":{"sat":26,"code":12}},{"cn0":159,"mesid":{"sat":34,"code":12}},{"cn0":187,"mesid":{"sat":24,"code":12}},{"cn0":160,"mesid":{"sat":25,"code":12}},{"cn0":185,"mesid":{"sat":12,"code":12}},{"cn0":185,"mesid":{"sat":19,"code":12}},{"cn0":192,"mesid":{"sat":22,"code":12}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":209,"mesid":{"sat":12,"code":13}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":195,"mesid":{"sat":12,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":192,"mesid":{"sat":25,"code":14}},{"cn0":189,"mesid":{"sat":11,"code":14}},{"cn0":204,"mesid":{"sat":24,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":157,"mesid":{"sat":31,"code":14}},{"cn0":152,"mesid":{"sat":33,"code":14}},{"cn0":201,"mesid":{"sat":25,"code":20}},{"cn0":215,"mesid":{"sat":24,"code":20}},{"cn0":193,"mesid":{"sat":11,"code":20}},{"cn0":175,"mesid":{"sat":31,"code":20}},{"cn0":206,"mesid":{"sat":12,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":168,"mesid":{"sat":33,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}}],"preamble":85,"sender":22963,"msg_type":97,"payload":"BQDUFQCzAgC5HwCiAAAAAAAAGQDZDADPHQDUEgDNAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwLMGQHMDAG6HwGYEgHEHQHCAAAABQHBAAAAAAAAAAAAAAAAZAPVYgO0ZgOuZQPQXQPQAAAAagO2aAPLYgSqZgTNAAAAZATJZQTDaAS8AAAAagSvIwzIGgysIgyfGAy7GQygDAy5Ewy5FgzAAAAADA3RAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADA7DAAAAGQ7ACw69GA7MAAAAHw6dIQ6YGRTJGBTXCxTBHxSvDBTOAAAAIRSoAAAA","crc":50922} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"Mgi4NS8QAAAAAAE=","wn":2098,"tow":271529400,"crc":58418} -{"length":16,"flags":17,"ns":399999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"Ebg1LxDkBwMZAxkL/oPXFw==","day":25,"tow":271529400,"year":2020,"crc":25801,"minutes":25,"month":3,"seconds":11} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.590293795106795,"preamble":85,"sender":22963,"msg_type":522,"payload":"uDUvENWqgexl6kJA4uErE1aSXsDyA4F+HZcxwAECWwQPBg==","lat":37.83123546916401,"tow":271529400,"h_accuracy":513,"crc":63595,"lon":-122.28650359425913} -{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"uDUvEAEAAAADAAAADwAAAPEAywIPAg==","n":1,"d":15,"tow":271529400,"h_accuracy":241,"crc":52603,"e":3} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"uDUvEJsAhwBMAEgAcgAG","tow":271529400,"crc":40399,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"uDUvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271529400,"h_accuracy":0,"crc":60207,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"uDUvEP//","tow":271529400,"crc":47760} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":9,"l2ca_bias":0,"preamble":85,"l2p_bias":0,"sender":22963,"msg_type":117,"payload":"/wAAAAAAAAAA","l1ca_bias":0,"mask":255,"crc":49809,"l1p_bias":0} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MggcNi8QAAAAAAE=","wn":2098,"tow":271529500,"crc":43238} -{"length":16,"flags":17,"ns":499999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"ERw2LxDkBwMZAxkL/mTNHQ==","day":25,"tow":271529500,"year":2020,"crc":54157,"minutes":25,"month":3,"seconds":11} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.59454618286365,"preamble":85,"sender":22963,"msg_type":522,"payload":"HDYvEEeFn+xl6kJA+iI+E1aSXsBrXLstNJgxwAECWwQPBg==","lat":37.831235483065534,"tow":271529500,"h_accuracy":513,"crc":7811,"lon":-122.28650361125975} -{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"HDYvEPn///8MAAAA/f////EAywIPAg==","n":-7,"d":-3,"tow":271529500,"h_accuracy":241,"crc":51228,"e":12} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"HDYvEJsAhwBMAEgAcgAG","tow":271529500,"crc":17112,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"HDYvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271529500,"h_accuracy":0,"crc":62061,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"HDYvEP//","tow":271529500,"crc":46027} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgiANi8QAAAAAAE=","wn":2098,"tow":271529600,"crc":61882} -{"length":16,"flags":17,"ns":599999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EYA2LxDkBwMZAxkL/kXDIw==","day":25,"tow":271529600,"year":2020,"crc":12422,"minutes":25,"month":3,"seconds":11} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.604180674776938,"preamble":85,"sender":22963,"msg_type":522,"payload":"gDYvEA390uxl6kJA4JlrE1aSXsDLCq+Vq5oxwAECWwQPBg==","lat":37.831235507032126,"tow":271529600,"h_accuracy":513,"crc":15348,"lon":-122.28650365360181} -{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"gDYvEAkAAAD2////AwAAAPEAywIPAg==","n":9,"d":3,"tow":271529600,"h_accuracy":241,"crc":3107,"e":-10} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"gDYvEJsAhwBMAEgAcgAG","tow":271529600,"crc":58551,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"gDYvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271529600,"h_accuracy":0,"crc":3164,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"gDYvEP//","tow":271529600,"crc":30348} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"message_type":63,"length":34,"data":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"preamble":85,"sender":22963,"msg_type":30583,"payload":"gwIFNi8QPwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA==","tow":271529477,"crc":22219,"sid":{"sat":131,"code":2}} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgjkNi8QAAAAAAE=","wn":2098,"tow":271529700,"crc":38256} -{"length":16,"flags":17,"ns":699999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EeQ2LxDkBwMZAxkL/ia5KQ==","day":25,"tow":271529700,"year":2020,"crc":39114,"minutes":25,"month":3,"seconds":11} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.610274759375642,"preamble":85,"sender":22963,"msg_type":522,"payload":"5DYvEJK/5Oxl6kJAEwmPE1aSXsC4F3X3OpwxwAECWwQPBg==","lat":37.8312355153022,"tow":271529700,"h_accuracy":513,"crc":29085,"lon":-122.28650368660264} -{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"5DYvEAIAAAD/////9f////EAywIPAg==","n":2,"d":-11,"tow":271529700,"h_accuracy":241,"crc":32907,"e":-1} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"5DYvEJsAhwBMAEgAcgAG","tow":271529700,"crc":51224,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"5DYvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271529700,"h_accuracy":0,"crc":5354,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"5DYvEP//","tow":271529700,"crc":12085} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MghINy8QAAAAAAE=","wn":2098,"tow":271529800,"crc":32765} -{"length":16,"flags":17,"ns":799999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EUg3LxDkBwMZAxkL/gevLw==","day":25,"tow":271529800,"year":2020,"crc":61119,"minutes":25,"month":3,"seconds":11} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.61518050052195,"preamble":85,"sender":22963,"msg_type":522,"payload":"SDcvEDXB9uxl6kJAypOqE1aSXsDy4CJ4fJ0xwAECWwQPBg==","lat":37.83123552368708,"tow":271529800,"h_accuracy":513,"crc":58008,"lon":-122.286503712253} -{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"SDcvEAQAAAD/////+P////EAywIPAg==","n":4,"d":-8,"tow":271529800,"h_accuracy":241,"crc":62584,"e":-1} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"SDcvEJsAhwBMAEgAcgAG","tow":271529800,"crc":50824,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"SDcvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271529800,"h_accuracy":0,"crc":59590,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"SDcvEP//","tow":271529800,"crc":28591} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":237,"states":[{"cn0":212,"mesid":{"sat":5,"code":0}},{"cn0":179,"mesid":{"sat":21,"code":0}},{"cn0":185,"mesid":{"sat":2,"code":0}},{"cn0":162,"mesid":{"sat":31,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":216,"mesid":{"sat":25,"code":0}},{"cn0":206,"mesid":{"sat":12,"code":0}},{"cn0":211,"mesid":{"sat":29,"code":0}},{"cn0":205,"mesid":{"sat":18,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":204,"mesid":{"sat":131,"code":2}},{"cn0":204,"mesid":{"sat":25,"code":1}},{"cn0":186,"mesid":{"sat":12,"code":1}},{"cn0":153,"mesid":{"sat":31,"code":1}},{"cn0":196,"mesid":{"sat":18,"code":1}},{"cn0":194,"mesid":{"sat":29,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":193,"mesid":{"sat":5,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":213,"mesid":{"sat":11,"code":3}},{"cn0":179,"mesid":{"sat":9,"code":3}},{"cn0":173,"mesid":{"sat":20,"code":3}},{"cn0":208,"mesid":{"sat":5,"code":3}},{"cn0":208,"mesid":{"sat":10,"code":3}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":182,"mesid":{"sat":4,"code":3}},{"cn0":203,"mesid":{"sat":21,"code":3}},{"cn0":171,"mesid":{"sat":9,"code":4}},{"cn0":205,"mesid":{"sat":20,"code":4}},{"cn0":77,"mesid":{"sat":10,"code":4}},{"cn0":201,"mesid":{"sat":11,"code":4}},{"cn0":195,"mesid":{"sat":5,"code":4}},{"cn0":188,"mesid":{"sat":0,"code":4}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":175,"mesid":{"sat":4,"code":4}},{"cn0":200,"mesid":{"sat":35,"code":12}},{"cn0":172,"mesid":{"sat":26,"code":12}},{"cn0":160,"mesid":{"sat":34,"code":12}},{"cn0":188,"mesid":{"sat":24,"code":12}},{"cn0":160,"mesid":{"sat":25,"code":12}},{"cn0":185,"mesid":{"sat":12,"code":12}},{"cn0":184,"mesid":{"sat":19,"code":12}},{"cn0":193,"mesid":{"sat":22,"code":12}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":209,"mesid":{"sat":12,"code":13}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":194,"mesid":{"sat":12,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":191,"mesid":{"sat":25,"code":14}},{"cn0":188,"mesid":{"sat":11,"code":14}},{"cn0":203,"mesid":{"sat":24,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":157,"mesid":{"sat":31,"code":14}},{"cn0":150,"mesid":{"sat":33,"code":14}},{"cn0":201,"mesid":{"sat":25,"code":20}},{"cn0":215,"mesid":{"sat":24,"code":20}},{"cn0":194,"mesid":{"sat":11,"code":20}},{"cn0":175,"mesid":{"sat":31,"code":20}},{"cn0":206,"mesid":{"sat":12,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":169,"mesid":{"sat":33,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}}],"preamble":85,"sender":22963,"msg_type":97,"payload":"BQDUFQCzAgC5HwCiAAAAAAAAGQDYDADOHQDTEgDNAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwLMGQHMDAG6HwGZEgHEHQHCAAAABQHBAAAAAAAAAAAAAAAACwPVCQOzFAOtBQPQCgPQAAAABAO2FQPLCQSrFATNCgRNCwTJBQTDAAS8AAAABASvIwzIGgysIgygGAy8GQygDAy5Ewy4FgzBAAAADA3RAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADA7CAAAAGQ6/Cw68GA7LAAAAHw6dIQ6WGRTJGBTXCxTCHxSvDBTOAAAAIRSpAAAA","crc":58530} -{"length":128,"preamble":85,"sender":22963,"msg_type":151,"payload":"AgAaHQUAKzUMAFEtFQB9GRkAbUYaAKEBHQChNx8AlQ4EAxUWBQMyIQkDXw4KA3EpCwOYJQwDqgMTAyIHFAMMMRUDlSUMDJQpEwwjIBQMDwIWDEMkGAyCIxkMnQ4aDGcVIgyOESMMIi0LDosyDA4PPBgObDYZDpcpHw5VESEOIA8=","crc":34187,"azel":[{"el":29,"az":26,"sid":{"sat":2,"code":0}},{"el":53,"az":43,"sid":{"sat":5,"code":0}},{"el":45,"az":81,"sid":{"sat":12,"code":0}},{"el":25,"az":125,"sid":{"sat":21,"code":0}},{"el":70,"az":109,"sid":{"sat":25,"code":0}},{"el":1,"az":161,"sid":{"sat":26,"code":0}},{"el":55,"az":161,"sid":{"sat":29,"code":0}},{"el":14,"az":149,"sid":{"sat":31,"code":0}},{"el":22,"az":21,"sid":{"sat":4,"code":3}},{"el":33,"az":50,"sid":{"sat":5,"code":3}},{"el":14,"az":95,"sid":{"sat":9,"code":3}},{"el":41,"az":113,"sid":{"sat":10,"code":3}},{"el":37,"az":152,"sid":{"sat":11,"code":3}},{"el":3,"az":170,"sid":{"sat":12,"code":3}},{"el":7,"az":34,"sid":{"sat":19,"code":3}},{"el":49,"az":12,"sid":{"sat":20,"code":3}},{"el":37,"az":149,"sid":{"sat":21,"code":3}},{"el":41,"az":148,"sid":{"sat":12,"code":12}},{"el":32,"az":35,"sid":{"sat":19,"code":12}},{"el":2,"az":15,"sid":{"sat":20,"code":12}},{"el":36,"az":67,"sid":{"sat":22,"code":12}},{"el":35,"az":130,"sid":{"sat":24,"code":12}},{"el":14,"az":157,"sid":{"sat":25,"code":12}},{"el":21,"az":103,"sid":{"sat":26,"code":12}},{"el":17,"az":142,"sid":{"sat":34,"code":12}},{"el":45,"az":34,"sid":{"sat":35,"code":12}},{"el":50,"az":139,"sid":{"sat":11,"code":14}},{"el":60,"az":15,"sid":{"sat":12,"code":14}},{"el":54,"az":108,"sid":{"sat":24,"code":14}},{"el":41,"az":151,"sid":{"sat":25,"code":14}},{"el":17,"az":85,"sid":{"sat":31,"code":14}},{"el":15,"az":32,"sid":{"sat":33,"code":14}}]} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgisNy8QAAAAAAE=","wn":2098,"tow":271529900,"crc":42117} -{"length":16,"flags":17,"ns":899999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"Eaw3LxDkBwMZAxkL/uikNQ==","day":25,"tow":271529900,"year":2020,"crc":30083,"minutes":25,"month":3,"seconds":11} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.62269848703441,"preamble":85,"sender":22963,"msg_type":522,"payload":"rDcvEEIfAO1l6kJAXsbQE1aSXsDbFAUraZ8xwAECWwQPBg==","lat":37.831235528049106,"tow":271529900,"h_accuracy":513,"crc":60238,"lon":-122.28650374782725} -{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"rDcvEAMAAAD9////GQAAAPEAywIPAg==","n":3,"d":25,"tow":271529900,"h_accuracy":241,"crc":11561,"e":-3} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"rDcvEJsAhwBMAEgAcgAG","tow":271529900,"crc":48693,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"rDcvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271529900,"h_accuracy":0,"crc":19173,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"rDcvEP//","tow":271529900,"crc":57910} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":249,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":221,"i":110567018},"flags":15,"cn0":212,"P":1052010073,"D":{"f":83,"i":-193},"lock":15,"sid":{"sat":5,"code":0}},{"L":{"f":1,"i":121792150},"flags":15,"cn0":178,"P":1158813776,"D":{"f":169,"i":2169},"lock":15,"sid":{"sat":21,"code":0}},{"L":{"f":25,"i":123375503},"flags":15,"cn0":185,"P":1173878476,"D":{"f":147,"i":-2480},"lock":15,"sid":{"sat":2,"code":0}},{"L":{"f":155,"i":128744353},"flags":15,"cn0":162,"P":1224961757,"D":{"f":19,"i":-403},"lock":15,"sid":{"sat":31,"code":0}},{"L":{"f":181,"i":107840256},"flags":15,"cn0":216,"P":1026065854,"D":{"f":114,"i":-1136},"lock":15,"sid":{"sat":25,"code":0}},{"L":{"f":74,"i":114143284},"flags":15,"cn0":206,"P":1086037158,"D":{"f":222,"i":-2973},"lock":15,"sid":{"sat":12,"code":0}},{"L":{"f":210,"i":110738652},"flags":15,"cn0":211,"P":1053643172,"D":{"f":93,"i":1481},"lock":15,"sid":{"sat":29,"code":0}},{"L":{"f":93,"i":84031389},"flags":15,"cn0":204,"P":1026065907,"D":{"f":83,"i":-885},"lock":15,"sid":{"sat":25,"code":1}},{"L":{"f":142,"i":88942850},"flags":15,"cn0":186,"P":1086037037,"D":{"f":82,"i":-2319},"lock":15,"sid":{"sat":12,"code":1}},{"L":{"f":249,"i":100320277},"flags":15,"cn0":153,"P":1224961760,"D":{"f":7,"i":-314},"lock":15,"sid":{"sat":31,"code":1}},{"L":{"f":44,"i":86289861},"flags":15,"cn0":193,"P":1053643092,"D":{"f":67,"i":1155},"lock":15,"sid":{"sat":29,"code":1}},{"L":{"f":224,"i":86156147},"flags":15,"cn0":193,"P":1052009999,"D":{"f":153,"i":-151},"lock":15,"sid":{"sat":5,"code":1}},{"L":{"f":233,"i":112919021},"flags":15,"cn0":213,"P":1056562462,"D":{"f":145,"i":1154},"lock":15,"sid":{"sat":11,"code":3}},{"L":{"f":212,"i":123403628},"flags":15,"cn0":179,"P":1155476594,"D":{"f":204,"i":-4408},"lock":15,"sid":{"sat":9,"code":3}}],"payload":"EDgvEAAAAAAyCEBZZrQ+ah6XBt0//1PUDw8FAFAYEkWWZkIHAXkIqbIPDxUAzPb3RY+PWgcZUPaTuQ8PAgDdbgNJoXusB5tt/hOiDw8fAL6FKD0Ag20GtZD7ctgPDxkAppy7QDSwzQZKY/Tezg8PDACkUc0+3LyZBtLJBV3TDw8dAPOFKD2dNwIFXYv8U8wPDxkBLZy7QAIpTQWO8fZSug8PDAHgbgNJFcT6BfnG/geZDw8fAVRRzT7FrSQFLIMEQ8EPDx0BD2a0PnOjIgXgaf+ZwQ8PBQEe3fk+7QG7BumCBJHVDw8LA3Is30Rs/VoH1MjuzLMPDwkD","header":{"n_obs":64,"t":{"ns_residual":0,"wn":2098,"tow":271530000}},"crc":5309} -{"length":249,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":181,"i":109789678},"flags":15,"cn0":174,"P":1026560826,"D":{"f":35,"i":-1212},"lock":15,"sid":{"sat":20,"code":3}},{"L":{"f":0,"i":114825674},"flags":15,"cn0":208,"P":1074025529,"D":{"f":88,"i":2188},"lock":15,"sid":{"sat":5,"code":3}},{"L":{"f":194,"i":111651635},"flags":15,"cn0":208,"P":1047277803,"D":{"f":254,"i":-3053},"lock":15,"sid":{"sat":10,"code":3}},{"L":{"f":177,"i":120459350},"flags":15,"cn0":182,"P":1124746402,"D":{"f":196,"i":-1328},"lock":15,"sid":{"sat":4,"code":3}},{"L":{"f":29,"i":113394286},"flags":15,"cn0":203,"P":1059521220,"D":{"f":145,"i":1620},"lock":15,"sid":{"sat":21,"code":3}},{"L":{"f":218,"i":95980609},"flags":15,"cn0":170,"P":1155476619,"D":{"f":100,"i":-3427},"lock":15,"sid":{"sat":9,"code":4}},{"L":{"f":15,"i":85392008},"flags":15,"cn0":205,"P":1026561199,"D":{"f":96,"i":-944},"lock":15,"sid":{"sat":20,"code":4}},{"L":{"f":67,"i":87825916},"flags":15,"cn0":201,"P":1056562773,"D":{"f":88,"i":897},"lock":15,"sid":{"sat":11,"code":4}},{"L":{"f":91,"i":89308861},"flags":15,"cn0":195,"P":1074025812,"D":{"f":176,"i":1701},"lock":15,"sid":{"sat":5,"code":4}},{"L":{"f":83,"i":93690596},"flags":15,"cn0":175,"P":1124746626,"D":{"f":57,"i":-1034},"lock":15,"sid":{"sat":4,"code":4}},{"L":{"f":116,"i":121603530},"flags":15,"cn0":200,"P":1167633701,"D":{"f":216,"i":-1502},"lock":15,"sid":{"sat":35,"code":12}},{"L":{"f":205,"i":129259237},"flags":15,"cn0":173,"P":1241143949,"D":{"f":211,"i":-3010},"lock":15,"sid":{"sat":26,"code":12}},{"L":{"f":72,"i":132910617},"flags":15,"cn0":161,"P":1276204145,"D":{"f":50,"i":2249},"lock":15,"sid":{"sat":34,"code":12}},{"L":{"f":225,"i":125171847},"flags":15,"cn0":188,"P":1201896879,"D":{"f":189,"i":-1309},"lock":15,"sid":{"sat":24,"code":12}}],"payload":"EDgvEAAAAAAyCEE6EzA97kGLBrVE+yOuDw8UAzlUBEDKGdgGAIwIWNAPDwUD6zBsPjOrpwbCE/T+0A8PCgOiRApDVhAuB7HQ+sS2Dw8EA8QCJz9uQsIGHVQGkcsPDxUDiyzfREGMuAXanfJkqg8PCQSvFDA9iPoWBQ9Q/GDNDw8UBFXe+T78HTwFQ4EDWMkPDwsEVFUEQL2+UgVbpQawww8PBQSCRQpD5JqVBVP2+zmvDw8EBCWtmEXKhT8HdCL62MgPDyMMjVr6SeVWtAfNPvTTrQ8PGgxxVBFMGQ7sB0jJCDKhDw8iDK99o0eH+HUH4eP6vbwPDxgM","header":{"n_obs":65,"t":{"ns_residual":0,"wn":2098,"tow":271530000}},"crc":58534} -{"length":249,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":133,"i":134651349},"flags":15,"cn0":160,"P":1292918830,"D":{"f":61,"i":1318},"lock":15,"sid":{"sat":25,"code":12}},{"L":{"f":74,"i":121074588},"flags":15,"cn0":185,"P":1162555059,"D":{"f":84,"i":1610},"lock":15,"sid":{"sat":12,"code":12}},{"L":{"f":103,"i":124519549},"flags":15,"cn0":184,"P":1195633478,"D":{"f":57,"i":-298},"lock":15,"sid":{"sat":19,"code":12}},{"L":{"f":101,"i":124666836},"flags":15,"cn0":193,"P":1197047762,"D":{"f":32,"i":2382},"lock":15,"sid":{"sat":22,"code":12}},{"L":{"f":85,"i":93622560},"flags":15,"cn0":209,"P":1162554986,"D":{"f":167,"i":1244},"lock":15,"sid":{"sat":12,"code":13}},{"L":{"f":139,"i":116442318},"flags":15,"cn0":194,"P":1107911800,"D":{"f":125,"i":-1028},"lock":15,"sid":{"sat":12,"code":14}},{"L":{"f":27,"i":132457649},"flags":15,"cn0":191,"P":1260292551,"D":{"f":167,"i":1081},"lock":15,"sid":{"sat":25,"code":14}},{"L":{"f":66,"i":125405984},"flags":15,"cn0":188,"P":1193198212,"D":{"f":228,"i":1044},"lock":15,"sid":{"sat":11,"code":14}},{"L":{"f":222,"i":118441604},"flags":15,"cn0":203,"P":1126934269,"D":{"f":242,"i":-1751},"lock":15,"sid":{"sat":24,"code":14}},{"L":{"f":85,"i":143371738},"flags":15,"cn0":157,"P":1364136694,"D":{"f":184,"i":-3175},"lock":15,"sid":{"sat":31,"code":14}},{"L":{"f":88,"i":144558140},"flags":15,"cn0":150,"P":1375424955,"D":{"f":17,"i":-2144},"lock":15,"sid":{"sat":33,"code":14}},{"L":{"f":195,"i":101493521},"flags":15,"cn0":201,"P":1260292527,"D":{"f":37,"i":828},"lock":15,"sid":{"sat":25,"code":20}},{"L":{"f":138,"i":90754020},"flags":15,"cn0":215,"P":1126934815,"D":{"f":172,"i":-1342},"lock":15,"sid":{"sat":24,"code":20}},{"L":{"f":123,"i":96090277},"flags":15,"cn0":194,"P":1193198013,"D":{"f":171,"i":799},"lock":15,"sid":{"sat":11,"code":20}}],"payload":"EDgvEAAAAAAyCEIuYBBN1Z0GCIUmBT2gDw8ZDLMuS0WcczcHSkoGVLkPDwwMRutDR30EbAdn1v45uA8PEwzSf1lH1ENuB2VOCSDBDw8WDGouS0UgkZQFVdwEp9EPDwwNeGQJQs7E8AaL/Pt9wg8PDA7HiR5LsSTlBxs5BKe/Dw8ZDoTCHkcgi3kHQhQE5LwPDwsO/aYrQ4RGDwfeKfnyyw8PGA72Ek9R2q2LCFWZ87idDw8fDrtR+1E8yJ0IWKD3EZYPDyEOr4keSxGrDAbDPAMlyQ8PGRQfqStD5MtoBYrC+qzXDw8YFL3BHkelOLoFex8Dq8IPDwsU","header":{"n_obs":66,"t":{"ns_residual":0,"wn":2098,"tow":271530000}},"crc":62356} -{"length":62,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":142,"i":109856308},"flags":15,"cn0":175,"P":1364136798,"D":{"f":150,"i":-2432},"lock":15,"sid":{"sat":31,"code":20}},{"L":{"f":229,"i":89222066},"flags":15,"cn0":206,"P":1107911636,"D":{"f":247,"i":-789},"lock":15,"sid":{"sat":12,"code":20}},{"L":{"f":207,"i":110765398},"flags":15,"cn0":169,"P":1375424915,"D":{"f":105,"i":-1641},"lock":15,"sid":{"sat":33,"code":20}}],"payload":"EDgvEAAAAAAyCENeE09RNEaMBo6A9pavDw8fFNRjCUKya1EF5ev8984PDwwUk1H7UVYlmgbPl/lpqQ8PIRQ=","header":{"n_obs":67,"t":{"ns_residual":0,"wn":2098,"tow":271530000}},"crc":12805} -{"length":9,"l2ca_bias":0,"preamble":85,"l2p_bias":0,"sender":22963,"msg_type":117,"payload":"/wAAAAAAAAAA","l1ca_bias":0,"mask":255,"crc":49809,"l1p_bias":0} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MggQOC8QAAAAAAE=","wn":2098,"tow":271530000,"crc":33767} -{"length":16,"flags":17,"ns":999999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"ERA4LxDkBwMZAxkL/smaOw==","day":25,"tow":271530000,"year":2020,"crc":41783,"minutes":25,"month":3,"seconds":11} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.629623655072756,"preamble":85,"sender":22963,"msg_type":522,"payload":"EDgvENBQCe1l6kJAmnTwE1aSXsBSUw8EL6ExwAECWwQPBg==","lat":37.8312355323302,"tow":271530000,"h_accuracy":513,"crc":33161,"lon":-122.28650377733211} -{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"EDgvEAQAAAABAAAA/P////EAywIPAg==","n":4,"d":-4,"tow":271530000,"h_accuracy":241,"crc":65526,"e":1} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"EDgvEJsAhwBMAEgAcgAG","tow":271530000,"crc":7715,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"EDgvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271530000,"h_accuracy":0,"crc":6287,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"EDgvEP//","tow":271530000,"crc":30592} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":4,"flags":2147616000,"preamble":85,"sender":22963,"msg_type":65535,"payload":"AAUCgA==","crc":40942} -{"length":24,"z":3890655.0240602265,"preamble":85,"sender":22963,"msg_type":72,"payload":"UO0a3iqORMHK1UJhIkRQwc9nFIPvrk1B","crc":2168,"x":-2694229.735196747,"y":-4264073.519704292} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"bWFpbgAAAAAAAAAAAAAAAAAAAAAAAAx1AAA=","name":"main\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":47991,"stack_free":29964,"cpu":0} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"aWRsZQAAAAAAAAAAAAAAAAAAAACKAHwAAAA=","name":"idle\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":5746,"stack_free":124,"cpu":138} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"cnBtc2cAAAAAAAAAAAAAAAAAAAABACQOAAA=","name":"rpmsg\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":41209,"stack_free":3620,"cpu":1} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"U0JQAAAAAAAAAAAAAAAAAAAAAAAAAPz/AAA=","name":"SBP\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":51784,"stack_free":65532,"cpu":0} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"TkFQAAAAAAAAAAAAAAAAAAAAAAAAAASAAAA=","name":"NAP\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":33651,"stack_free":32772,"cpu":0} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"bWFuYWdlIFBWAAAAAAAAAAAAAAAAACQEAAA=","name":"manage PV\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":29877,"stack_free":1060,"cpu":0} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"SU1VAAAAAAAAAAAAAAAAAAAAAAAAAPQHAAA=","name":"IMU\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":14252,"stack_free":2036,"cpu":0} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"SU1VIGF1eAAAAAAAAAAAAAAAAAAAAEwIAAA=","name":"IMU aux\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":18976,"stack_free":2124,"cpu":0} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"bmRiAAAAAAAAAAAAAAAAAAAAAAAAAFAMAAA=","name":"ndb\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":26120,"stack_free":3152,"cpu":0} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"TkFQIFRyYWNraW5nAAAAAAAAAAAmAdR3AAA=","name":"NAP Tracking\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":42721,"stack_free":30676,"cpu":294} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"ZGVjb2RlAAAAAAAAAAAAAAAAAAAIANQGAAA=","name":"decode\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":40082,"stack_free":1748,"cpu":8} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"bWFuYWdlIGFjcQAAAAAAAAAAAACLAaR3AAA=","name":"manage acq\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":22189,"stack_free":30628,"cpu":395} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"c3lzdGVtIG1vbml0b3IAAAAAAAAAACwGAAA=","name":"system monitor\u0000\u0000\u0000\u0000\u0000\u0000","crc":58531,"stack_free":1580,"cpu":0} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"V2F0Y2hkb2cAAAAAAAAAAAAAAAAAAOQDAAA=","name":"Watchdog\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":44438,"stack_free":996,"cpu":0} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"c3RhcmxpbmcAAAAAAAAAAAAAAACXAPz/AAA=","name":"starling\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":46399,"stack_free":65532,"cpu":151} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"bWVfY2FsY19wdnQAAAAAAAAAAAAJAIwjAAA=","name":"me_calc_pvt\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":57561,"stack_free":9100,"cpu":9} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"UFBTAAAAAAAAAAAAAAAAAAAAAAAAAEgHAAA=","name":"PPS\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":38576,"stack_free":1864,"cpu":0} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"c3BlY3RydW0gYW5hbHl6ZXIAAAAAANQPAAA=","name":"spectrum analyzer\u0000\u0000\u0000","crc":50933,"stack_free":4052,"cpu":0} -{"cpu_vint":989,"length":10,"fe_temperature":5641,"preamble":85,"sender":22963,"cpu_vaux":1779,"msg_type":181,"payload":"8BbdA/MGSxUJFg==","dev_vin":5872,"crc":2957,"cpu_temperature":5451} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"Mgh0OC8QAAAAAAE=","wn":2098,"tow":271530100,"crc":59181} -{"length":16,"flags":17,"ns":99999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EXQ4LxDkBwMZAxkM/uD1BQ==","day":25,"tow":271530100,"year":2020,"crc":15506,"minutes":25,"month":3,"seconds":12} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.637863656550522,"preamble":85,"sender":22963,"msg_type":522,"payload":"dDgvEJ1E++xl6kJAmsv8E1aSXsAEMVgIS6MxwAECWwQPBg==","lat":37.83123552578875,"tow":271530100,"h_accuracy":513,"crc":15752,"lon":-122.28650378882449} -{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"dDgvEPr///8KAAAABQAAAPEAywIPAg==","n":-6,"d":5,"tow":271530100,"h_accuracy":241,"crc":64928,"e":10} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"dDgvEJsAhwBMAEgAcgAG","tow":271530100,"crc":12940,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"dDgvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271530100,"h_accuracy":0,"crc":57,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"dDgvEP//","tow":271530100,"crc":11833} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgjYOC8QAAAAAAE=","wn":2098,"tow":271530200,"crc":19059} -{"length":16,"flags":17,"ns":199999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"Edg4LxDkBwMZAxkM/sHrCw==","day":25,"tow":271530200,"year":2020,"crc":14631,"minutes":25,"month":3,"seconds":12} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.646582468682222,"preamble":85,"sender":22963,"msg_type":522,"payload":"2DgvEOb6CO1l6kJAq38MFFaSXsA3KL1thqUxwAECWwQPBg==","lat":37.83123553217392,"tow":271530200,"h_accuracy":513,"crc":41772,"lon":-122.2865038034494} -{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"2DgvEAcAAAABAAAA//////EAywIPAg==","n":7,"d":-1,"tow":271530200,"h_accuracy":241,"crc":32551,"e":1} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"2DgvEJsAhwBMAEgAcgAG","tow":271530200,"crc":18301,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"2DgvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271530200,"h_accuracy":0,"crc":10723,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"2DgvEP//","tow":271530200,"crc":50418} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"Mgg8OS8QAAAAAAE=","wn":2098,"tow":271530300,"crc":55000} -{"length":16,"flags":17,"ns":299999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"ETw5LxDkBwMZAxkM/qLhEQ==","day":25,"tow":271530300,"year":2020,"crc":42096,"minutes":25,"month":3,"seconds":12} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.658642633705263,"preamble":85,"sender":22963,"msg_type":522,"payload":"PDkvEAJu/uxl6kJAnfgXFFaSXsDyg7vNnKgxwAECWwQPBg==","lat":37.83123552726103,"tow":271530300,"h_accuracy":513,"crc":29944,"lon":-122.28650381413395} -{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"PDkvEPn///8FAAAAEwAAAPEAywIPAg==","n":-7,"d":19,"tow":271530300,"h_accuracy":241,"crc":57241,"e":5} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"PDkvEJsAhwBMAEgAcgAG","tow":271530300,"crc":17569,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"PDkvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271530300,"h_accuracy":0,"crc":24118,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"PDkvEP//","tow":271530300,"crc":58170} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":51,"text":"GLO L2OF ME 1 [+1341ms] low CN0 too long, dropping","preamble":85,"sender":22963,"msg_type":1025,"payload":"BkdMTyBMMk9GIE1FIDEgWysxMzQxbXNdIGxvdyBDTjAgdG9vIGxvbmcsIGRyb3BwaW5n","crc":694,"level":6} -{"length":237,"states":[{"cn0":212,"mesid":{"sat":5,"code":0}},{"cn0":178,"mesid":{"sat":21,"code":0}},{"cn0":185,"mesid":{"sat":2,"code":0}},{"cn0":161,"mesid":{"sat":31,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":216,"mesid":{"sat":25,"code":0}},{"cn0":206,"mesid":{"sat":12,"code":0}},{"cn0":211,"mesid":{"sat":29,"code":0}},{"cn0":205,"mesid":{"sat":18,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":203,"mesid":{"sat":131,"code":2}},{"cn0":204,"mesid":{"sat":25,"code":1}},{"cn0":186,"mesid":{"sat":12,"code":1}},{"cn0":152,"mesid":{"sat":31,"code":1}},{"cn0":196,"mesid":{"sat":18,"code":1}},{"cn0":194,"mesid":{"sat":29,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":193,"mesid":{"sat":5,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":213,"mesid":{"sat":100,"code":3}},{"cn0":179,"mesid":{"sat":98,"code":3}},{"cn0":174,"mesid":{"sat":102,"code":3}},{"cn0":208,"mesid":{"sat":101,"code":3}},{"cn0":208,"mesid":{"sat":93,"code":3}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":182,"mesid":{"sat":106,"code":3}},{"cn0":203,"mesid":{"sat":104,"code":3}},{"cn0":171,"mesid":{"sat":98,"code":4}},{"cn0":205,"mesid":{"sat":102,"code":4}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":201,"mesid":{"sat":100,"code":4}},{"cn0":195,"mesid":{"sat":101,"code":4}},{"cn0":188,"mesid":{"sat":104,"code":4}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":175,"mesid":{"sat":106,"code":4}},{"cn0":200,"mesid":{"sat":35,"code":12}},{"cn0":173,"mesid":{"sat":26,"code":12}},{"cn0":159,"mesid":{"sat":34,"code":12}},{"cn0":188,"mesid":{"sat":24,"code":12}},{"cn0":161,"mesid":{"sat":25,"code":12}},{"cn0":185,"mesid":{"sat":12,"code":12}},{"cn0":185,"mesid":{"sat":19,"code":12}},{"cn0":193,"mesid":{"sat":22,"code":12}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":209,"mesid":{"sat":12,"code":13}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":194,"mesid":{"sat":12,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":191,"mesid":{"sat":25,"code":14}},{"cn0":188,"mesid":{"sat":11,"code":14}},{"cn0":203,"mesid":{"sat":24,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":157,"mesid":{"sat":31,"code":14}},{"cn0":151,"mesid":{"sat":33,"code":14}},{"cn0":201,"mesid":{"sat":25,"code":20}},{"cn0":215,"mesid":{"sat":24,"code":20}},{"cn0":194,"mesid":{"sat":11,"code":20}},{"cn0":174,"mesid":{"sat":31,"code":20}},{"cn0":206,"mesid":{"sat":12,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":169,"mesid":{"sat":33,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}}],"preamble":85,"sender":22963,"msg_type":97,"payload":"BQDUFQCyAgC5HwChAAAAAAAAGQDYDADOHQDTEgDNAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwLLGQHMDAG6HwGYEgHEHQHCAAAABQHBAAAAAAAAAAAAAAAAZAPVYgOzZgOuZQPQXQPQAAAAagO2aAPLYgSrZgTNAAAAZATJZQTDaAS8AAAAagSvIwzIGgytIgyfGAy8GQyhDAy5Ewy5FgzBAAAADA3RAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADA7CAAAAGQ6/Cw68GA7LAAAAHw6dIQ6XGRTJGBTXCxTCHxSuDBTOAAAAIRSpAAAA","crc":57044} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgigOS8QAAAAAAE=","wn":2098,"tow":271530400,"crc":36740} -{"length":16,"flags":17,"ns":399999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EaA5LxDkBwMZAxkM/oPXFw==","day":25,"tow":271530400,"year":2020,"crc":31772,"minutes":25,"month":3,"seconds":12} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.669500899051567,"preamble":85,"sender":22963,"msg_type":522,"payload":"oDkvENkbBe1l6kJA88cvFFaSXsCvETJpZKsxwAECWwQPBg==","lat":37.83123553037121,"tow":271530400,"h_accuracy":513,"crc":3110,"lon":-122.28650383630865} -{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"oDkvEP/////7/////f////EAywIPAg==","n":-1,"d":-3,"tow":271530400,"h_accuracy":241,"crc":23658,"e":-5} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"oDkvEJsAhwBMAEgAcgAG","tow":271530400,"crc":58062,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"oDkvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271530400,"h_accuracy":0,"crc":40967,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"oDkvEP//","tow":271530400,"crc":9853} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":9,"l2ca_bias":0,"preamble":85,"l2p_bias":0,"sender":22963,"msg_type":117,"payload":"/wAAAAAAAAAA","l1ca_bias":0,"mask":255,"crc":49809,"l1p_bias":0} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MggEOi8QAAAAAAE=","wn":2098,"tow":271530500,"crc":50000} -{"length":16,"flags":17,"ns":499999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EQQ6LxDkBwMZAxkM/mTNHQ==","day":25,"tow":271530500,"year":2020,"crc":52056,"minutes":25,"month":3,"seconds":12} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.67623559707129,"preamble":85,"sender":22963,"msg_type":522,"payload":"BDovEDKkFe1l6kJAXShHFFaSXsDuz63GHa0xwAECWwQPBg==","lat":37.831235538069805,"tow":271530500,"h_accuracy":513,"crc":38475,"lon":-122.28650385807983} -{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"BDovEAwAAAD2////7/////EAywIPAg==","n":12,"d":-17,"tow":271530500,"h_accuracy":241,"crc":19698,"e":-10} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"BDovEJsAhwBMAEgAcgAG","tow":271530500,"crc":15833,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"BDovEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271530500,"h_accuracy":0,"crc":47429,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"BDovEP//","tow":271530500,"crc":12070} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MghoOi8QAAAAAAE=","wn":2098,"tow":271530600,"crc":36453} -{"length":16,"flags":17,"ns":599999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EWg6LxDkBwMZAxkM/kXDIw==","day":25,"tow":271530600,"year":2020,"crc":34262,"minutes":25,"month":3,"seconds":12} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.68472751543139,"preamble":85,"sender":22963,"msg_type":522,"payload":"aDovEFfn9uxl6kJAxilJFFaSXsD8cm1NSq8xwAECWwQPBg==","lat":37.83123552375644,"tow":271530600,"h_accuracy":513,"crc":39928,"lon":-122.2865038599476} -{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"aDovEAEAAAADAAAAAAAAAPEAywIPAg==","n":1,"d":0,"tow":271530600,"h_accuracy":241,"crc":36789,"e":3} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"aDovEJsAhwBMAEgAcgAG","tow":271530600,"crc":13875,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"aDovEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271530600,"h_accuracy":0,"crc":65360,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"aDovEP//","tow":271530600,"crc":31709} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"message_type":63,"length":34,"data":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"preamble":85,"sender":22963,"msg_type":30583,"payload":"gwLpOS8QPwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA==","tow":271530473,"crc":40642,"sid":{"sat":131,"code":2}} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgjMOi8QAAAAAAE=","wn":2098,"tow":271530700,"crc":2756} -{"length":16,"flags":17,"ns":699999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"Ecw6LxDkBwMZAxkM/ia5KQ==","day":25,"tow":271530700,"year":2020,"crc":21377,"minutes":25,"month":3,"seconds":12} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.6948379307105,"preamble":85,"sender":22963,"msg_type":522,"payload":"zDovEDI73Oxl6kJApsFQFFaSXsACbAzm4LExwAECWwQPBg==","lat":37.83123551133612,"tow":271530700,"h_accuracy":513,"crc":32625,"lon":-122.28650386701938} -{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"zDovEP3///8JAAAAFAAAAPEAywIPAg==","n":-3,"d":20,"tow":271530700,"h_accuracy":241,"crc":62229,"e":9} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"zDovEJsAhwBMAEgAcgAG","tow":271530700,"crc":25735,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"zDovEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271530700,"h_accuracy":0,"crc":34857,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"zDovEP//","tow":271530700,"crc":40020} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MggwOy8QAAAAAAE=","wn":2098,"tow":271530800,"crc":60526} -{"length":16,"flags":17,"ns":799999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"ETA7LxDkBwMZAxkM/gevLw==","day":25,"tow":271530800,"year":2020,"crc":16759,"minutes":25,"month":3,"seconds":12} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.704538097071996,"preamble":85,"sender":22963,"msg_type":522,"payload":"MDsvEDIB0exl6kJAODFaFFaSXsDWtdWbXLQxwAECWwQPBg==","lat":37.83123550610834,"tow":271530800,"h_accuracy":513,"crc":14435,"lon":-122.28650387580717} -{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"MDsvEAIAAAAHAAAA/f////EAywIPAg==","n":2,"d":-3,"tow":271530800,"h_accuracy":241,"crc":40870,"e":7} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"MDsvEJsAhwBMAEgAcgAG","tow":271530800,"crc":3732,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"MDsvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271530800,"h_accuracy":0,"crc":7193,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"MDsvEP//","tow":271530800,"crc":44122} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":237,"states":[{"cn0":212,"mesid":{"sat":5,"code":0}},{"cn0":178,"mesid":{"sat":21,"code":0}},{"cn0":185,"mesid":{"sat":2,"code":0}},{"cn0":163,"mesid":{"sat":31,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":216,"mesid":{"sat":25,"code":0}},{"cn0":206,"mesid":{"sat":12,"code":0}},{"cn0":211,"mesid":{"sat":29,"code":0}},{"cn0":205,"mesid":{"sat":18,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":204,"mesid":{"sat":131,"code":2}},{"cn0":204,"mesid":{"sat":25,"code":1}},{"cn0":187,"mesid":{"sat":12,"code":1}},{"cn0":153,"mesid":{"sat":31,"code":1}},{"cn0":196,"mesid":{"sat":18,"code":1}},{"cn0":194,"mesid":{"sat":29,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":193,"mesid":{"sat":5,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":213,"mesid":{"sat":11,"code":3}},{"cn0":179,"mesid":{"sat":9,"code":3}},{"cn0":174,"mesid":{"sat":20,"code":3}},{"cn0":209,"mesid":{"sat":5,"code":3}},{"cn0":208,"mesid":{"sat":10,"code":3}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":182,"mesid":{"sat":4,"code":3}},{"cn0":203,"mesid":{"sat":21,"code":3}},{"cn0":171,"mesid":{"sat":9,"code":4}},{"cn0":205,"mesid":{"sat":20,"code":4}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":201,"mesid":{"sat":11,"code":4}},{"cn0":195,"mesid":{"sat":5,"code":4}},{"cn0":188,"mesid":{"sat":0,"code":4}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":175,"mesid":{"sat":4,"code":4}},{"cn0":200,"mesid":{"sat":35,"code":12}},{"cn0":172,"mesid":{"sat":26,"code":12}},{"cn0":159,"mesid":{"sat":34,"code":12}},{"cn0":188,"mesid":{"sat":24,"code":12}},{"cn0":161,"mesid":{"sat":25,"code":12}},{"cn0":184,"mesid":{"sat":12,"code":12}},{"cn0":185,"mesid":{"sat":19,"code":12}},{"cn0":193,"mesid":{"sat":22,"code":12}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":209,"mesid":{"sat":12,"code":13}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":194,"mesid":{"sat":12,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":191,"mesid":{"sat":25,"code":14}},{"cn0":188,"mesid":{"sat":11,"code":14}},{"cn0":203,"mesid":{"sat":24,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":157,"mesid":{"sat":31,"code":14}},{"cn0":152,"mesid":{"sat":33,"code":14}},{"cn0":201,"mesid":{"sat":25,"code":20}},{"cn0":215,"mesid":{"sat":24,"code":20}},{"cn0":194,"mesid":{"sat":11,"code":20}},{"cn0":174,"mesid":{"sat":31,"code":20}},{"cn0":206,"mesid":{"sat":12,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":169,"mesid":{"sat":33,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}}],"preamble":85,"sender":22963,"msg_type":97,"payload":"BQDUFQCyAgC5HwCjAAAAAAAAGQDYDADOHQDTEgDNAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwLMGQHMDAG7HwGZEgHEHQHCAAAABQHBAAAAAAAAAAAAAAAACwPVCQOzFAOuBQPRCgPQAAAABAO2FQPLCQSrFATNAAAACwTJBQTDAAS8AAAABASvIwzIGgysIgyfGAy8GQyhDAy4Ewy5FgzBAAAADA3RAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADA7CAAAAGQ6/Cw68GA7LAAAAHw6dIQ6YGRTJGBTXCxTCHxSuDBTOAAAAIRSpAAAA","crc":38053} -{"length":128,"preamble":85,"sender":22963,"msg_type":151,"payload":"AgAaHQUAKzUMAFEtFQB9GRkAbUYaAKEBHQChNx8AlQ4EAxUWBQMyIQkDXw4KA3EpCwOYJQwDqgMTAyIHFAMMMRUDlSUMDJQpEwwjIBQMDwIWDEMkGAyCIxkMnQ4aDGcVIgyOESMMIi0LDosyDA4PPBgObDYZDpcpHw5VESEOIA8=","crc":34187,"azel":[{"el":29,"az":26,"sid":{"sat":2,"code":0}},{"el":53,"az":43,"sid":{"sat":5,"code":0}},{"el":45,"az":81,"sid":{"sat":12,"code":0}},{"el":25,"az":125,"sid":{"sat":21,"code":0}},{"el":70,"az":109,"sid":{"sat":25,"code":0}},{"el":1,"az":161,"sid":{"sat":26,"code":0}},{"el":55,"az":161,"sid":{"sat":29,"code":0}},{"el":14,"az":149,"sid":{"sat":31,"code":0}},{"el":22,"az":21,"sid":{"sat":4,"code":3}},{"el":33,"az":50,"sid":{"sat":5,"code":3}},{"el":14,"az":95,"sid":{"sat":9,"code":3}},{"el":41,"az":113,"sid":{"sat":10,"code":3}},{"el":37,"az":152,"sid":{"sat":11,"code":3}},{"el":3,"az":170,"sid":{"sat":12,"code":3}},{"el":7,"az":34,"sid":{"sat":19,"code":3}},{"el":49,"az":12,"sid":{"sat":20,"code":3}},{"el":37,"az":149,"sid":{"sat":21,"code":3}},{"el":41,"az":148,"sid":{"sat":12,"code":12}},{"el":32,"az":35,"sid":{"sat":19,"code":12}},{"el":2,"az":15,"sid":{"sat":20,"code":12}},{"el":36,"az":67,"sid":{"sat":22,"code":12}},{"el":35,"az":130,"sid":{"sat":24,"code":12}},{"el":14,"az":157,"sid":{"sat":25,"code":12}},{"el":21,"az":103,"sid":{"sat":26,"code":12}},{"el":17,"az":142,"sid":{"sat":34,"code":12}},{"el":45,"az":34,"sid":{"sat":35,"code":12}},{"el":50,"az":139,"sid":{"sat":11,"code":14}},{"el":60,"az":15,"sid":{"sat":12,"code":14}},{"el":54,"az":108,"sid":{"sat":24,"code":14}},{"el":41,"az":151,"sid":{"sat":25,"code":14}},{"el":17,"az":85,"sid":{"sat":31,"code":14}},{"el":15,"az":32,"sid":{"sat":33,"code":14}}]} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgiUOy8QAAAAAAE=","wn":2098,"tow":271530900,"crc":26831} -{"length":16,"flags":17,"ns":899999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EZQ7LxDkBwMZAxkM/uikNQ==","day":25,"tow":271530900,"year":2020,"crc":61506,"minutes":25,"month":3,"seconds":12} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.7126035093981,"preamble":85,"sender":22963,"msg_type":522,"payload":"lDsvEAOsyOxl6kJA7s9xFFaSXsAy4f8ubbYxwAECWwQPBg==","lat":37.831235502228104,"tow":271530900,"h_accuracy":513,"crc":51994,"lon":-122.28650389780498} -{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"lDsvEAMAAAACAAAAEwAAAPEAywIPAg==","n":3,"d":19,"tow":271530900,"h_accuracy":241,"crc":46590,"e":2} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"lDsvEJsAhwBMAEgAcgAG","tow":271530900,"crc":23584,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"lDsvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271530900,"h_accuracy":0,"crc":27488,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"lDsvEP//","tow":271530900,"crc":19411} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":249,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":152,"i":110567212},"flags":15,"cn0":212,"P":1052011916,"D":{"f":151,"i":-193},"lock":15,"sid":{"sat":5,"code":0}},{"L":{"f":146,"i":121789980},"flags":15,"cn0":178,"P":1158793121,"D":{"f":14,"i":2170},"lock":15,"sid":{"sat":21,"code":0}},{"L":{"f":221,"i":123377982},"flags":15,"cn0":185,"P":1173902062,"D":{"f":196,"i":-2477},"lock":15,"sid":{"sat":2,"code":0}},{"L":{"f":81,"i":128744757},"flags":15,"cn0":162,"P":1224965601,"D":{"f":71,"i":-401},"lock":15,"sid":{"sat":31,"code":0}},{"L":{"f":32,"i":107841393},"flags":15,"cn0":216,"P":1026076672,"D":{"f":144,"i":-1136},"lock":15,"sid":{"sat":25,"code":0}},{"L":{"f":199,"i":114146257},"flags":15,"cn0":206,"P":1086065441,"D":{"f":121,"i":-2972},"lock":15,"sid":{"sat":12,"code":0}},{"L":{"f":234,"i":110737171},"flags":15,"cn0":212,"P":1053629083,"D":{"f":21,"i":1483},"lock":15,"sid":{"sat":29,"code":0}},{"L":{"f":226,"i":84032274},"flags":15,"cn0":204,"P":1026076726,"D":{"f":230,"i":-886},"lock":15,"sid":{"sat":25,"code":1}},{"L":{"f":143,"i":88945167},"flags":15,"cn0":187,"P":1086065334,"D":{"f":143,"i":-2317},"lock":15,"sid":{"sat":12,"code":1}},{"L":{"f":141,"i":100320592},"flags":15,"cn0":153,"P":1224965606,"D":{"f":206,"i":-315},"lock":15,"sid":{"sat":31,"code":1}},{"L":{"f":59,"i":86288707},"flags":15,"cn0":194,"P":1053629002,"D":{"f":52,"i":1154},"lock":15,"sid":{"sat":29,"code":1}},{"L":{"f":214,"i":86156298},"flags":15,"cn0":193,"P":1052011850,"D":{"f":214,"i":-151},"lock":15,"sid":{"sat":5,"code":1}},{"L":{"f":239,"i":112917868},"flags":15,"cn0":213,"P":1056551672,"D":{"f":8,"i":1154},"lock":15,"sid":{"sat":11,"code":3}},{"L":{"f":100,"i":123408037},"flags":15,"cn0":179,"P":1155517874,"D":{"f":116,"i":-4406},"lock":15,"sid":{"sat":9,"code":3}}],"payload":"+DsvEAAAAAAyCECMbbQ+LB+XBpg//5fUDw8FAKHHEUUcXkIHknoIDrIPDxUA7lL4RT6ZWgfdU/bEuQ8PAgDhfQNJNX2sB1Fv/keiDw8fAACwKD1xh20GIJD7kNgPDxkAIQu8QNG7zQbHZPR5zg8PDACbGs0+E7eZBurLBRXUDw8dADawKD0SOwIF4or85swPDxkBtgq8QA8yTQWP8/aPuw8PDAHmfQNJUMX6BY3F/s6ZDw8fAUoazT5DqSQFO4IENMIPDx0BSm20PgqkIgXWaf/WwQ8PBQH4svk+bP26Bu+CBAjVDw8LA7LN30SlDlsHZMrudLMPDwkD","header":{"n_obs":64,"t":{"ns_residual":0,"wn":2098,"tow":271531000}},"crc":20468} -{"length":249,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":161,"i":109790891},"flags":15,"cn0":173,"P":1026572166,"D":{"f":133,"i":-1212},"lock":15,"sid":{"sat":20,"code":3}},{"L":{"f":82,"i":114823486},"flags":15,"cn0":209,"P":1074005086,"D":{"f":64,"i":2189},"lock":15,"sid":{"sat":5,"code":3}},{"L":{"f":207,"i":111654688},"flags":15,"cn0":208,"P":1047306443,"D":{"f":230,"i":-3053},"lock":15,"sid":{"sat":10,"code":3}},{"L":{"f":14,"i":120460679},"flags":15,"cn0":182,"P":1124758788,"D":{"f":11,"i":-1328},"lock":15,"sid":{"sat":4,"code":3}},{"L":{"f":113,"i":113392666},"flags":15,"cn0":203,"P":1059506077,"D":{"f":119,"i":1621},"lock":15,"sid":{"sat":21,"code":3}},{"L":{"f":190,"i":95984038},"flags":15,"cn0":171,"P":1155517893,"D":{"f":56,"i":-3426},"lock":15,"sid":{"sat":9,"code":4}},{"L":{"f":115,"i":85392951},"flags":15,"cn0":205,"P":1026572531,"D":{"f":233,"i":-943},"lock":15,"sid":{"sat":20,"code":4}},{"L":{"f":128,"i":87825019},"flags":15,"cn0":201,"P":1056551958,"D":{"f":125,"i":897},"lock":15,"sid":{"sat":11,"code":4}},{"L":{"f":212,"i":89307159},"flags":15,"cn0":196,"P":1074005360,"D":{"f":251,"i":1702},"lock":15,"sid":{"sat":5,"code":4}},{"L":{"f":129,"i":93691629},"flags":15,"cn0":175,"P":1124759028,"D":{"f":104,"i":-1032},"lock":15,"sid":{"sat":4,"code":4}},{"L":{"f":213,"i":121605031},"flags":15,"cn0":200,"P":1167648113,"D":{"f":78,"i":-1499},"lock":15,"sid":{"sat":35,"code":12}},{"L":{"f":11,"i":129262247},"flags":15,"cn0":172,"P":1241172844,"D":{"f":17,"i":-3008},"lock":15,"sid":{"sat":26,"code":12}},{"L":{"f":111,"i":132908369},"flags":15,"cn0":159,"P":1276182555,"D":{"f":205,"i":2249},"lock":15,"sid":{"sat":34,"code":12}},{"L":{"f":115,"i":125173157},"flags":15,"cn0":188,"P":1201909452,"D":{"f":197,"i":-1310},"lock":15,"sid":{"sat":24,"code":12}}],"payload":"+DsvEAAAAAAyCEGGPzA9q0aLBqFE+4WtDw8UA14EBEA+EdgGUo0IQNEPDwUDy6BsPiC3pwbPE/Tm0A8PCgMEdQpDhxUuBw7Q+gu2Dw8EA53HJj8aPMIGcVUGd8sPDxUDxc3fRKaZuAW+nvI4qw8PCQTzQDA9N/4WBXNR/OnNDw8UBBa0+T57GjwFgIEDfckPDwsEcAUEQBe4UgXUpgb7xA8PBQT0dQpD7Z6VBYH4+2ivDw8EBHHlmEWniz8H1SX6TsgPDyMMbMv6SaditAcLQPQRrA8PGgwbABFMUQXsB2/JCM2fDw8iDMyuo0el/XUHc+L6xbwPDxgM","header":{"n_obs":65,"t":{"ns_residual":0,"wn":2098,"tow":271531000}},"crc":30296} -{"length":249,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":9,"i":134650032},"flags":15,"cn0":161,"P":1292906192,"D":{"f":11,"i":1319},"lock":15,"sid":{"sat":25,"code":12}},{"L":{"f":26,"i":121072978},"flags":15,"cn0":184,"P":1162539607,"D":{"f":9,"i":1612},"lock":15,"sid":{"sat":12,"code":12}},{"L":{"f":75,"i":124519847},"flags":15,"cn0":185,"P":1195636334,"D":{"f":211,"i":-298},"lock":15,"sid":{"sat":19,"code":12}},{"L":{"f":0,"i":124664454},"flags":15,"cn0":193,"P":1197024875,"D":{"f":70,"i":2383},"lock":15,"sid":{"sat":22,"code":12}},{"L":{"f":65,"i":93621315},"flags":15,"cn0":208,"P":1162539523,"D":{"f":57,"i":1246},"lock":15,"sid":{"sat":12,"code":13}},{"L":{"f":65,"i":116443347},"flags":15,"cn0":194,"P":1107921584,"D":{"f":198,"i":-1028},"lock":15,"sid":{"sat":12,"code":14}},{"L":{"f":213,"i":132456567},"flags":15,"cn0":191,"P":1260282267,"D":{"f":22,"i":1083},"lock":15,"sid":{"sat":25,"code":14}},{"L":{"f":157,"i":125404939},"flags":15,"cn0":188,"P":1193188278,"D":{"f":146,"i":1045},"lock":15,"sid":{"sat":11,"code":14}},{"L":{"f":87,"i":118443355},"flags":15,"cn0":203,"P":1126950920,"D":{"f":153,"i":-1750},"lock":15,"sid":{"sat":24,"code":14}},{"L":{"f":165,"i":143374911},"flags":15,"cn0":157,"P":1364166909,"D":{"f":110,"i":-3175},"lock":15,"sid":{"sat":31,"code":14}},{"L":{"f":227,"i":144560280},"flags":15,"cn0":152,"P":1375445329,"D":{"f":89,"i":-2140},"lock":15,"sid":{"sat":33,"code":14}},{"L":{"f":62,"i":101492693},"flags":15,"cn0":201,"P":1260282237,"D":{"f":232,"i":828},"lock":15,"sid":{"sat":25,"code":20}},{"L":{"f":208,"i":90755361},"flags":15,"cn0":215,"P":1126951472,"D":{"f":8,"i":-1340},"lock":15,"sid":{"sat":24,"code":20}},{"L":{"f":9,"i":96089477},"flags":15,"cn0":194,"P":1193188076,"D":{"f":236,"i":800},"lock":15,"sid":{"sat":11,"code":20}}],"payload":"+DsvEAAAAAAyCELQLhBNsJgGCAknBQuhDw8ZDFfySkVSbTcHGkwGCbgPDwwMbvZDR6cFbAdL1v7TuQ8PEwxrJllHhjpuBwBPCUbBDw8WDAPySkVDjJQFQd4EOdAPDwwNsIoJQtPI8AZB/PvGwg8PDA6bYR5LdyDlB9U7BBa/Dw8ZDrabHkcLh3kHnRUEkrwPDwsOCOgrQ1tNDwdXKvmZyw8PGA79iE9RP7qLCKWZ826dDw8fDlGh+1GY0J0I46T3WZgPDyEOfWEeS9WnDAY+PAPoyQ8PGRQw6itDIdFoBdDE+gjXDw8YFOyaHkeFNboFCSAD7MIPDwsU","header":{"n_obs":66,"t":{"ns_residual":0,"wn":2098,"tow":271531000}},"crc":9078} -{"length":62,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":17,"i":109858740},"flags":15,"cn0":174,"P":1364166990,"D":{"f":129,"i":-2433},"lock":15,"sid":{"sat":31,"code":20}},{"L":{"f":31,"i":89222855},"flags":15,"cn0":206,"P":1107921424,"D":{"f":154,"i":-787},"lock":15,"sid":{"sat":12,"code":20}},{"L":{"f":246,"i":110767038},"flags":15,"cn0":169,"P":1375445287,"D":{"f":170,"i":-1639},"lock":15,"sid":{"sat":33,"code":20}}],"payload":"+DsvEAAAAAAyCENOiU9RtE+MBhF/9oGuDw8fFBCKCULHblEFH+38ms4PDwwUJ6H7Ub4rmgb2mfmqqQ8PIRQ=","header":{"n_obs":67,"t":{"ns_residual":0,"wn":2098,"tow":271531000}},"crc":42991} -{"length":9,"l2ca_bias":0,"preamble":85,"l2p_bias":0,"sender":22963,"msg_type":117,"payload":"/wAAAAAAAAAA","l1ca_bias":0,"mask":255,"crc":49809,"l1p_bias":0} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"Mgj4Oy8QAAAAAAE=","wn":2098,"tow":271531000,"crc":9722} -{"length":16,"flags":17,"ns":999999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"Efg7LxDkBwMZAxkM/smaOw==","day":25,"tow":271531000,"year":2020,"crc":36106,"minutes":25,"month":3,"seconds":12} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.72322591967462,"preamble":85,"sender":22963,"msg_type":522,"payload":"+DsvEPgI0Oxl6kJAHlSbFFaSXsA8n3hVJbkxwAECWwQPBg==","lat":37.83123550565682,"tow":271531000,"h_accuracy":513,"crc":17790,"lon":-122.2865039364701} -{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"+DsvEP/////8////DQAAAPEAywIPAg==","n":-1,"d":13,"tow":271531000,"h_accuracy":241,"crc":10152,"e":-4} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"+DsvEJsAhwBMAEgAcgAG","tow":271531000,"crc":22474,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"+DsvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271531000,"h_accuracy":0,"crc":11637,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"+DsvEP//","tow":271531000,"crc":7976} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":4,"flags":2147616000,"preamble":85,"sender":22963,"msg_type":65535,"payload":"AAUCgA==","crc":40942} -{"length":24,"z":3890655.0240602265,"preamble":85,"sender":22963,"msg_type":72,"payload":"UO0a3iqORMHK1UJhIkRQwc9nFIPvrk1B","crc":2168,"x":-2694229.735196747,"y":-4264073.519704292} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MghcPC8QAAAAAAE=","wn":2098,"tow":271531100,"crc":26179} -{"length":16,"flags":17,"ns":99999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EVw8LxDkBwMZAxkN/uD1BQ==","day":25,"tow":271531100,"year":2020,"crc":53559,"minutes":25,"month":3,"seconds":13} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.73432727722361,"preamble":85,"sender":22963,"msg_type":522,"payload":"XDwvEE4b5exl6kJAecu2FFaSXsBzPFjf/LsxwAECWwQPBg==","lat":37.83123551546906,"tow":271531100,"h_accuracy":513,"crc":35494,"lon":-122.28650396205002} -{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"XDwvEAUAAAAHAAAA+/////EAywIPAg==","n":5,"d":-5,"tow":271531100,"h_accuracy":241,"crc":21337,"e":7} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"XDwvEJsAhwBMAEgAcgAG","tow":271531100,"crc":30072,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"XDwvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271531100,"h_accuracy":0,"crc":21388,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"XDwvEP//","tow":271531100,"crc":40821} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgjAPC8QAAAAAAE=","wn":2098,"tow":271531200,"crc":16159} -{"length":16,"flags":17,"ns":199999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EcA8LxDkBwMZAxkN/sHrCw==","day":25,"tow":271531200,"year":2020,"crc":1820,"minutes":25,"month":3,"seconds":13} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.744869640000353,"preamble":85,"sender":22963,"msg_type":522,"payload":"wDwvEJ+36uxl6kJArK7qFFaSXsC2ldfGr74xwAECWwQPBg==","lat":37.831235518081705,"tow":271531200,"h_accuracy":513,"crc":38079,"lon":-122.28650401037402} -{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"wDwvEAAAAAD2////AgAAAPEAywIPAg==","n":0,"d":2,"tow":271531200,"h_accuracy":241,"crc":50137,"e":-10} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"wDwvEJsAhwBMAEgAcgAG","tow":271531200,"crc":54039,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"wDwvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271531200,"h_accuracy":0,"crc":44477,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"wDwvEP//","tow":271531200,"crc":23090} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MggkPS8QAAAAAAE=","wn":2098,"tow":271531300,"crc":41908} -{"length":16,"flags":17,"ns":299999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"ESQ9LxDkBwMZAxkN/qLhEQ==","day":25,"tow":271531300,"year":2020,"crc":39499,"minutes":25,"month":3,"seconds":13} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.75665505044879,"preamble":85,"sender":22963,"msg_type":522,"payload":"JD0vEAnD1+xl6kJA+yAKFVaSXsDhBzgltMExwAECWwQPBg==","lat":37.8312355092549,"tow":271531300,"h_accuracy":513,"crc":2883,"lon":-122.28650403966087} -{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"JD0vEPr///8DAAAAEQAAAPEAywIPAg==","n":-6,"d":17,"tow":271531300,"h_accuracy":241,"crc":36440,"e":3} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"JD0vEJsAhwBMAEgAcgAG","tow":271531300,"crc":53451,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"JD0vEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271531300,"h_accuracy":0,"crc":55912,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"JD0vEP//","tow":271531300,"crc":32250} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":237,"states":[{"cn0":212,"mesid":{"sat":5,"code":0}},{"cn0":178,"mesid":{"sat":21,"code":0}},{"cn0":185,"mesid":{"sat":2,"code":0}},{"cn0":162,"mesid":{"sat":31,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":217,"mesid":{"sat":25,"code":0}},{"cn0":207,"mesid":{"sat":12,"code":0}},{"cn0":212,"mesid":{"sat":29,"code":0}},{"cn0":205,"mesid":{"sat":18,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":204,"mesid":{"sat":131,"code":2}},{"cn0":204,"mesid":{"sat":25,"code":1}},{"cn0":187,"mesid":{"sat":12,"code":1}},{"cn0":152,"mesid":{"sat":31,"code":1}},{"cn0":196,"mesid":{"sat":18,"code":1}},{"cn0":194,"mesid":{"sat":29,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":193,"mesid":{"sat":5,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":213,"mesid":{"sat":100,"code":3}},{"cn0":179,"mesid":{"sat":98,"code":3}},{"cn0":173,"mesid":{"sat":102,"code":3}},{"cn0":209,"mesid":{"sat":101,"code":3}},{"cn0":208,"mesid":{"sat":93,"code":3}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":182,"mesid":{"sat":106,"code":3}},{"cn0":203,"mesid":{"sat":104,"code":3}},{"cn0":171,"mesid":{"sat":98,"code":4}},{"cn0":205,"mesid":{"sat":102,"code":4}},{"cn0":72,"mesid":{"sat":93,"code":4}},{"cn0":201,"mesid":{"sat":100,"code":4}},{"cn0":196,"mesid":{"sat":101,"code":4}},{"cn0":188,"mesid":{"sat":104,"code":4}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":174,"mesid":{"sat":106,"code":4}},{"cn0":200,"mesid":{"sat":35,"code":12}},{"cn0":172,"mesid":{"sat":26,"code":12}},{"cn0":158,"mesid":{"sat":34,"code":12}},{"cn0":188,"mesid":{"sat":24,"code":12}},{"cn0":161,"mesid":{"sat":25,"code":12}},{"cn0":185,"mesid":{"sat":12,"code":12}},{"cn0":185,"mesid":{"sat":19,"code":12}},{"cn0":193,"mesid":{"sat":22,"code":12}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":208,"mesid":{"sat":12,"code":13}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":195,"mesid":{"sat":12,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":192,"mesid":{"sat":25,"code":14}},{"cn0":189,"mesid":{"sat":11,"code":14}},{"cn0":204,"mesid":{"sat":24,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":158,"mesid":{"sat":31,"code":14}},{"cn0":152,"mesid":{"sat":33,"code":14}},{"cn0":201,"mesid":{"sat":25,"code":20}},{"cn0":215,"mesid":{"sat":24,"code":20}},{"cn0":194,"mesid":{"sat":11,"code":20}},{"cn0":175,"mesid":{"sat":31,"code":20}},{"cn0":206,"mesid":{"sat":12,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":169,"mesid":{"sat":33,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}}],"preamble":85,"sender":22963,"msg_type":97,"payload":"BQDUFQCyAgC5HwCiAAAAAAAAGQDZDADPHQDUEgDNAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwLMGQHMDAG7HwGYEgHEHQHCAAAABQHBAAAAAAAAAAAAAAAAZAPVYgOzZgOtZQPRXQPQAAAAagO2aAPLYgSrZgTNXQRIZATJZQTEaAS8AAAAagSuIwzIGgysIgyeGAy8GQyhDAy5Ewy5FgzBAAAADA3QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADA7DAAAAGQ7ACw69GA7MAAAAHw6eIQ6YGRTJGBTXCxTCHxSvDBTOAAAAIRSpAAAA","crc":49321} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgiIPS8QAAAAAAE=","wn":2098,"tow":271531400,"crc":3818} -{"length":16,"flags":17,"ns":399999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EYg9LxDkBwMZAxkN/oPXFw==","day":25,"tow":271531400,"year":2020,"crc":37305,"minutes":25,"month":3,"seconds":13} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.76307443161369,"preamble":85,"sender":22963,"msg_type":522,"payload":"iD0vEPGs3Oxl6kJABA8wFVaSXsDQMZDYWMMxwAECWwQPBg==","lat":37.83123551154302,"tow":271531400,"h_accuracy":513,"crc":21368,"lon":-122.28650407498577} -{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"iD0vEAEAAAAHAAAA//////EAywIPAg==","n":1,"d":-1,"tow":271531400,"h_accuracy":241,"crc":44789,"e":7} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"iD0vEJsAhwBMAEgAcgAG","tow":271531400,"crc":42298,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"iD0vEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271531400,"h_accuracy":0,"crc":62386,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"iD0vEP//","tow":271531400,"crc":38705} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":9,"l2ca_bias":0,"preamble":85,"l2p_bias":0,"sender":22963,"msg_type":117,"payload":"/wAAAAAAAAAA","l1ca_bias":0,"mask":255,"crc":49809,"l1p_bias":0} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgjsPS8QAAAAAAE=","wn":2098,"tow":271531500,"crc":27168} -{"length":16,"flags":17,"ns":499999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"Eew9LxDkBwMZAxkN/mTNHQ==","day":25,"tow":271531500,"year":2020,"crc":54597,"minutes":25,"month":3,"seconds":13} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.766344803515597,"preamble":85,"sender":22963,"msg_type":522,"payload":"7D0vEDL8Fe1l6kJAXxlmFVaSXsAdj0wsL8QxwAECWwQPBg==","lat":37.831235538229876,"tow":271531500,"h_accuracy":513,"crc":22142,"lon":-122.28650412531486} -{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"7D0vEAwAAAD7////+f////EAywIPAg==","n":12,"d":-7,"tow":271531500,"h_accuracy":241,"crc":37941,"e":-5} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"7D0vEJsAhwBMAEgAcgAG","tow":271531500,"crc":35221,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"7D0vEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271531500,"h_accuracy":0,"crc":60164,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"7D0vEP//","tow":271531500,"crc":52872} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MghQPi8QAAAAAAE=","wn":2098,"tow":271531600,"crc":23797} -{"length":16,"flags":17,"ns":599999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EVA+LxDkBwMZAxkN/kXDIw==","day":25,"tow":271531600,"year":2020,"crc":9977,"minutes":25,"month":3,"seconds":13} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.773675000479376,"preamble":85,"sender":22963,"msg_type":522,"payload":"UD4vEFYQFO1l6kJAqaGIFVaSXsCtypiQD8YxwAECWwQPBg==","lat":37.83123553733519,"tow":271531600,"h_accuracy":513,"crc":3153,"lon":-122.28650415747565} -{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"UD4vEP3///8KAAAABgAAAPEAywIPAg==","n":-3,"d":6,"tow":271531600,"h_accuracy":241,"crc":44320,"e":10} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"UD4vEJsAhwBMAEgAcgAG","tow":271531600,"crc":16205,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"UD4vEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271531600,"h_accuracy":0,"crc":4515,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"UD4vEP//","tow":271531600,"crc":53269} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":51,"text":"GLO L2OF ME 1 [+1321ms] low CN0 too long, dropping","preamble":85,"sender":22963,"msg_type":1025,"payload":"BkdMTyBMMk9GIE1FIDEgWysxMzIxbXNdIGxvdyBDTjAgdG9vIGxvbmcsIGRyb3BwaW5n","crc":50435,"level":6} -{"message_type":25,"length":34,"data":[152,47,255,0,8,1,0,64,32,0,31,226,248,102,139,126,79,233,252,255,232,16,0,8,0,190,80],"preamble":85,"sender":22963,"msg_type":30583,"payload":"gwLNPS8QGZgv/wAIAQBAIAAf4vhmi35P6fz/6BAACAC+UA==","tow":271531469,"crc":23581,"sid":{"sat":131,"code":2}} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"Mgi0Pi8QAAAAAAE=","wn":2098,"tow":271531700,"crc":34701} -{"length":16,"flags":17,"ns":699999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EbQ+LxDkBwMZAxkN/ia5KQ==","day":25,"tow":271531700,"year":2020,"crc":55975,"minutes":25,"month":3,"seconds":13} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.781947244932006,"preamble":85,"sender":22963,"msg_type":522,"payload":"tD4vELiTD+1l6kJAAjHAFVaSXsAmLtSxLcgxwAECWwQPBg==","lat":37.83123553524587,"tow":271531700,"h_accuracy":513,"crc":8086,"lon":-122.28650420921988} -{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"tD4vEPn////6////DgAAAPEAywIPAg==","n":-7,"d":14,"tow":271531700,"h_accuracy":241,"crc":785,"e":-6} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"tD4vEJsAhwBMAEgAcgAG","tow":271531700,"crc":18416,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"tD4vEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271531700,"h_accuracy":0,"crc":45952,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"tD4vEP//","tow":271531700,"crc":23948} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MggYPy8QAAAAAAE=","wn":2098,"tow":271531800,"crc":27904} -{"length":16,"flags":17,"ns":799999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"ERg/LxDkBwMZAxkN/gevLw==","day":25,"tow":271531800,"year":2020,"crc":44242,"minutes":25,"month":3,"seconds":13} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.789546854119468,"preamble":85,"sender":22963,"msg_type":522,"payload":"GD8vEDtWM+1l6kJAIyDyFVaSXsBRGh2+H8oxwAECWwQPBg==","lat":37.83123555189783,"tow":271531800,"h_accuracy":513,"crc":4915,"lon":-122.28650425572464} -{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"GD8vEAgAAAD+////+f////EAywIPAg==","n":8,"d":-7,"tow":271531800,"h_accuracy":241,"crc":18174,"e":-2} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"GD8vEJsAhwBMAEgAcgAG","tow":271531800,"crc":18784,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"GD8vEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271531800,"h_accuracy":0,"crc":20396,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"GD8vEP//","tow":271531800,"crc":7446} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":237,"states":[{"cn0":212,"mesid":{"sat":5,"code":0}},{"cn0":178,"mesid":{"sat":21,"code":0}},{"cn0":185,"mesid":{"sat":2,"code":0}},{"cn0":163,"mesid":{"sat":31,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":216,"mesid":{"sat":25,"code":0}},{"cn0":207,"mesid":{"sat":12,"code":0}},{"cn0":212,"mesid":{"sat":29,"code":0}},{"cn0":205,"mesid":{"sat":18,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":204,"mesid":{"sat":131,"code":2}},{"cn0":204,"mesid":{"sat":25,"code":1}},{"cn0":186,"mesid":{"sat":12,"code":1}},{"cn0":151,"mesid":{"sat":31,"code":1}},{"cn0":196,"mesid":{"sat":18,"code":1}},{"cn0":193,"mesid":{"sat":29,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":193,"mesid":{"sat":5,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":213,"mesid":{"sat":11,"code":3}},{"cn0":179,"mesid":{"sat":9,"code":3}},{"cn0":173,"mesid":{"sat":20,"code":3}},{"cn0":209,"mesid":{"sat":5,"code":3}},{"cn0":208,"mesid":{"sat":10,"code":3}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":182,"mesid":{"sat":4,"code":3}},{"cn0":203,"mesid":{"sat":21,"code":3}},{"cn0":172,"mesid":{"sat":9,"code":4}},{"cn0":205,"mesid":{"sat":20,"code":4}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":201,"mesid":{"sat":11,"code":4}},{"cn0":196,"mesid":{"sat":5,"code":4}},{"cn0":188,"mesid":{"sat":0,"code":4}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":174,"mesid":{"sat":4,"code":4}},{"cn0":200,"mesid":{"sat":35,"code":12}},{"cn0":172,"mesid":{"sat":26,"code":12}},{"cn0":160,"mesid":{"sat":34,"code":12}},{"cn0":188,"mesid":{"sat":24,"code":12}},{"cn0":161,"mesid":{"sat":25,"code":12}},{"cn0":184,"mesid":{"sat":12,"code":12}},{"cn0":185,"mesid":{"sat":19,"code":12}},{"cn0":193,"mesid":{"sat":22,"code":12}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":207,"mesid":{"sat":12,"code":13}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":195,"mesid":{"sat":12,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":192,"mesid":{"sat":25,"code":14}},{"cn0":189,"mesid":{"sat":11,"code":14}},{"cn0":204,"mesid":{"sat":24,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":159,"mesid":{"sat":31,"code":14}},{"cn0":151,"mesid":{"sat":33,"code":14}},{"cn0":201,"mesid":{"sat":25,"code":20}},{"cn0":215,"mesid":{"sat":24,"code":20}},{"cn0":194,"mesid":{"sat":11,"code":20}},{"cn0":175,"mesid":{"sat":31,"code":20}},{"cn0":206,"mesid":{"sat":12,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":169,"mesid":{"sat":33,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}}],"preamble":85,"sender":22963,"msg_type":97,"payload":"BQDUFQCyAgC5HwCjAAAAAAAAGQDYDADPHQDUEgDNAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwLMGQHMDAG6HwGXEgHEHQHBAAAABQHBAAAAAAAAAAAAAAAACwPVCQOzFAOtBQPRCgPQAAAABAO2FQPLCQSsFATNAAAACwTJBQTEAAS8AAAABASuIwzIGgysIgygGAy8GQyhDAy4Ewy5FgzBAAAADA3PAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADA7DAAAAGQ7ACw69GA7MAAAAHw6fIQ6XGRTJGBTXCxTCHxSvDBTOAAAAIRSpAAAA","crc":20513} -{"length":128,"preamble":85,"sender":22963,"msg_type":151,"payload":"AgAaHQUAKzUMAFEtFQB9GRkAbUYaAKEBHQChNx8AlQ4EAxUWBQMyIQkDXw4KA3EpCwOYJQwDqgMTAyIHFAMMMRUDlSUMDJQpEwwjIBQMDwIWDEMkGAyCIxkMnQ4aDGcVIgyOESMMIi0LDosyDA4PPBgObDYZDpcpHw5VESEOIA8=","crc":34187,"azel":[{"el":29,"az":26,"sid":{"sat":2,"code":0}},{"el":53,"az":43,"sid":{"sat":5,"code":0}},{"el":45,"az":81,"sid":{"sat":12,"code":0}},{"el":25,"az":125,"sid":{"sat":21,"code":0}},{"el":70,"az":109,"sid":{"sat":25,"code":0}},{"el":1,"az":161,"sid":{"sat":26,"code":0}},{"el":55,"az":161,"sid":{"sat":29,"code":0}},{"el":14,"az":149,"sid":{"sat":31,"code":0}},{"el":22,"az":21,"sid":{"sat":4,"code":3}},{"el":33,"az":50,"sid":{"sat":5,"code":3}},{"el":14,"az":95,"sid":{"sat":9,"code":3}},{"el":41,"az":113,"sid":{"sat":10,"code":3}},{"el":37,"az":152,"sid":{"sat":11,"code":3}},{"el":3,"az":170,"sid":{"sat":12,"code":3}},{"el":7,"az":34,"sid":{"sat":19,"code":3}},{"el":49,"az":12,"sid":{"sat":20,"code":3}},{"el":37,"az":149,"sid":{"sat":21,"code":3}},{"el":41,"az":148,"sid":{"sat":12,"code":12}},{"el":32,"az":35,"sid":{"sat":19,"code":12}},{"el":2,"az":15,"sid":{"sat":20,"code":12}},{"el":36,"az":67,"sid":{"sat":22,"code":12}},{"el":35,"az":130,"sid":{"sat":24,"code":12}},{"el":14,"az":157,"sid":{"sat":25,"code":12}},{"el":21,"az":103,"sid":{"sat":26,"code":12}},{"el":17,"az":142,"sid":{"sat":34,"code":12}},{"el":45,"az":34,"sid":{"sat":35,"code":12}},{"el":50,"az":139,"sid":{"sat":11,"code":14}},{"el":60,"az":15,"sid":{"sat":12,"code":14}},{"el":54,"az":108,"sid":{"sat":24,"code":14}},{"el":41,"az":151,"sid":{"sat":25,"code":14}},{"el":17,"az":85,"sid":{"sat":31,"code":14}},{"el":15,"az":32,"sid":{"sat":33,"code":14}}]} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"Mgh8Py8QAAAAAAE=","wn":2098,"tow":271531900,"crc":2506} -{"length":16,"flags":17,"ns":899999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EXw/LxDkBwMZAxkN/uikNQ==","day":25,"tow":271531900,"year":2020,"crc":25596,"minutes":25,"month":3,"seconds":13} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.799950782963364,"preamble":85,"sender":22963,"msg_type":522,"payload":"fD8vENkHUO1l6kJAo4sgFlaSXsC8PBOTycwxwAECWwQPBg==","lat":37.831235565259426,"tow":271531900,"h_accuracy":513,"crc":60001,"lon":-122.28650429895656} -{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"fD8vEAIAAAAAAAAABgAAAPEAywIPAg==","n":2,"d":6,"tow":271531900,"h_accuracy":241,"crc":55697,"e":0} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"fD8vEJsAhwBMAEgAcgAG","tow":271531900,"crc":26063,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"fD8vEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271531900,"h_accuracy":0,"crc":22298,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"fD8vEP//","tow":271531900,"crc":17583} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":249,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":112,"i":110567406},"flags":15,"cn0":212,"P":1052013769,"D":{"f":224,"i":-193},"lock":15,"sid":{"sat":5,"code":0}},{"L":{"f":219,"i":121787810},"flags":15,"cn0":178,"P":1158772470,"D":{"f":19,"i":2169},"lock":15,"sid":{"sat":21,"code":0}},{"L":{"f":20,"i":123380462},"flags":15,"cn0":186,"P":1173925659,"D":{"f":146,"i":-2478},"lock":15,"sid":{"sat":2,"code":0}},{"L":{"f":2,"i":128745161},"flags":15,"cn0":163,"P":1224969437,"D":{"f":167,"i":-402},"lock":15,"sid":{"sat":31,"code":0}},{"L":{"f":151,"i":107842529},"flags":15,"cn0":217,"P":1026087488,"D":{"f":68,"i":-1136},"lock":15,"sid":{"sat":25,"code":0}},{"L":{"f":18,"i":114149231},"flags":15,"cn0":207,"P":1086093734,"D":{"f":100,"i":-2973},"lock":15,"sid":{"sat":12,"code":0}},{"L":{"f":163,"i":110735690},"flags":15,"cn0":212,"P":1053614993,"D":{"f":78,"i":1481},"lock":15,"sid":{"sat":29,"code":0}},{"L":{"f":112,"i":84033160},"flags":15,"cn0":204,"P":1026087542,"D":{"f":235,"i":-886},"lock":15,"sid":{"sat":25,"code":1}},{"L":{"f":103,"i":88947484},"flags":15,"cn0":186,"P":1086093637,"D":{"f":182,"i":-2316},"lock":15,"sid":{"sat":12,"code":1}},{"L":{"f":21,"i":100320907},"flags":15,"cn0":151,"P":1224969463,"D":{"f":165,"i":-315},"lock":15,"sid":{"sat":31,"code":1}},{"L":{"f":252,"i":86287552},"flags":15,"cn0":193,"P":1053614905,"D":{"f":112,"i":1155},"lock":15,"sid":{"sat":29,"code":1}},{"L":{"f":224,"i":86156449},"flags":15,"cn0":193,"P":1052013684,"D":{"f":153,"i":-151},"lock":15,"sid":{"sat":5,"code":1}},{"L":{"f":63,"i":112916716},"flags":15,"cn0":213,"P":1056540877,"D":{"f":39,"i":1153},"lock":15,"sid":{"sat":11,"code":3}},{"L":{"f":107,"i":123412445},"flags":15,"cn0":179,"P":1155559118,"D":{"f":167,"i":-4409},"lock":15,"sid":{"sat":9,"code":3}}],"payload":"4D8vEAAAAAAyCEDJdLQ+7h+XBnA//+DUDw8FAPZ2EUWiVUIH23kIE7IPDxUAG6/4Re6iWgcUUvaSug8PAgDdjANJyX6sBwJu/qejDw8fAEDaKD3hi20Gl5D7RNkPDxkApnm8QG/HzQYSY/Rkzw8PDACR48w+SrGZBqPJBU7UDw8dAHbaKD2IPgIFcIr868wPDxkBRXm8QBw7TQVn9Pa2ug8PDAH3jANJi8b6BRXF/qWXDw8fATnjzD7ApCQF/IMEcMEPDx0BdHS0PqGkIgXgaf+ZwQ8PBQHNiPk+7Pi6Bj+BBCfVDw8LA85u4ETdH1sHa8fup7MPDwkD","header":{"n_obs":64,"t":{"ns_residual":0,"wn":2098,"tow":271532000}},"crc":30651} -{"length":249,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":42,"i":109792104},"flags":15,"cn0":174,"P":1026583535,"D":{"f":21,"i":-1211},"lock":15,"sid":{"sat":20,"code":3}},{"L":{"f":191,"i":114821298},"flags":15,"cn0":209,"P":1073984634,"D":{"f":124,"i":2188},"lock":15,"sid":{"sat":5,"code":3}},{"L":{"f":219,"i":111657741},"flags":15,"cn0":208,"P":1047335079,"D":{"f":244,"i":-3054},"lock":15,"sid":{"sat":10,"code":3}},{"L":{"f":172,"i":120462007},"flags":15,"cn0":182,"P":1124771240,"D":{"f":200,"i":-1329},"lock":15,"sid":{"sat":4,"code":3}},{"L":{"f":96,"i":113391046},"flags":15,"cn0":203,"P":1059490934,"D":{"f":130,"i":1621},"lock":15,"sid":{"sat":21,"code":3}},{"L":{"f":53,"i":95987467},"flags":15,"cn0":172,"P":1155559189,"D":{"f":245,"i":-3429},"lock":15,"sid":{"sat":9,"code":4}},{"L":{"f":134,"i":85393894},"flags":15,"cn0":205,"P":1026583861,"D":{"f":148,"i":-943},"lock":15,"sid":{"sat":20,"code":4}},{"L":{"f":245,"i":87824122},"flags":15,"cn0":201,"P":1056541181,"D":{"f":231,"i":896},"lock":15,"sid":{"sat":11,"code":4}},{"L":{"f":96,"i":89305458},"flags":15,"cn0":195,"P":1073984873,"D":{"f":6,"i":1701},"lock":15,"sid":{"sat":5,"code":4}},{"L":{"f":220,"i":93692662},"flags":15,"cn0":174,"P":1124771444,"D":{"f":197,"i":-1034},"lock":15,"sid":{"sat":4,"code":4}},{"L":{"f":198,"i":121606532},"flags":15,"cn0":200,"P":1167662526,"D":{"f":238,"i":-1502},"lock":15,"sid":{"sat":35,"code":12}},{"L":{"f":200,"i":129265255},"flags":15,"cn0":172,"P":1241201723,"D":{"f":206,"i":-3009},"lock":15,"sid":{"sat":26,"code":12}},{"L":{"f":6,"i":132906121},"flags":15,"cn0":160,"P":1276160947,"D":{"f":78,"i":2250},"lock":15,"sid":{"sat":34,"code":12}},{"L":{"f":238,"i":125174466},"flags":15,"cn0":188,"P":1201922030,"D":{"f":59,"i":-1309},"lock":15,"sid":{"sat":24,"code":12}}],"payload":"4D8vEAAAAAAyCEHvazA9aEuLBipF+xWuDw8UA3q0A0CyCNgGv4wIfNEPDwUDpxBtPg3DpwbbEvT00A8PCgOopQpDtxouB6zP+si2Dw8EA3aMJj/GNcIGYFUGgssPDxUDFW/gRAunuAU1m/L1rA8PCQQ1bTA95gEXBYZR/JTNDw8UBP2J+T76FjwF9YAD58kPDwsEabUDQHKxUgVgpQYGww8PBQR0pgpD9qKVBdz2+8WuDw8EBL4dmUWEkT8HxiL67sgPDyMMOzz7SWdutAfIP/TOrA8PGgyzqxBMifzrBwbKCE6gDw8iDO7fo0fCAnYH7uP6O7wPDxgM","header":{"n_obs":65,"t":{"ns_residual":0,"wn":2098,"tow":271532000}},"crc":42590} -{"length":249,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":120,"i":134648714},"flags":15,"cn0":161,"P":1292893544,"D":{"f":164,"i":1317},"lock":15,"sid":{"sat":25,"code":12}},{"L":{"f":116,"i":121071367},"flags":15,"cn0":184,"P":1162524132,"D":{"f":153,"i":1611},"lock":15,"sid":{"sat":12,"code":12}},{"L":{"f":40,"i":124520145},"flags":15,"cn0":185,"P":1195639187,"D":{"f":233,"i":-299},"lock":15,"sid":{"sat":19,"code":12}},{"L":{"f":91,"i":124662071},"flags":15,"cn0":193,"P":1197001998,"D":{"f":154,"i":2382},"lock":15,"sid":{"sat":22,"code":12}},{"L":{"f":201,"i":93620069},"flags":15,"cn0":207,"P":1162524070,"D":{"f":75,"i":1246},"lock":15,"sid":{"sat":12,"code":13}},{"L":{"f":124,"i":116444375},"flags":15,"cn0":195,"P":1107931367,"D":{"f":90,"i":-1028},"lock":15,"sid":{"sat":12,"code":14}},{"L":{"f":106,"i":132455486},"flags":15,"cn0":192,"P":1260271976,"D":{"f":166,"i":1082},"lock":15,"sid":{"sat":25,"code":14}},{"L":{"f":131,"i":125403894},"flags":15,"cn0":189,"P":1193178329,"D":{"f":201,"i":1047},"lock":15,"sid":{"sat":11,"code":14}},{"L":{"f":160,"i":118445105},"flags":15,"cn0":204,"P":1126967578,"D":{"f":119,"i":-1750},"lock":15,"sid":{"sat":24,"code":14}},{"L":{"f":114,"i":143378084},"flags":15,"cn0":159,"P":1364197099,"D":{"f":160,"i":-3174},"lock":15,"sid":{"sat":31,"code":14}},{"L":{"f":198,"i":144562420},"flags":15,"cn0":152,"P":1375465665,"D":{"f":124,"i":-2141},"lock":15,"sid":{"sat":33,"code":14}},{"L":{"f":157,"i":101491864},"flags":15,"cn0":201,"P":1260271947,"D":{"f":237,"i":828},"lock":15,"sid":{"sat":25,"code":20}},{"L":{"f":239,"i":90756702},"flags":15,"cn0":215,"P":1126968124,"D":{"f":19,"i":-1341},"lock":15,"sid":{"sat":24,"code":20}},{"L":{"f":62,"i":96088676},"flags":15,"cn0":193,"P":1193178131,"D":{"f":16,"i":802},"lock":15,"sid":{"sat":11,"code":20}}],"payload":"4D8vEAAAAAAyCEJo/Q9NipMGCHglBaShDw8ZDOS1SkUHZzcHdEsGmbgPDwwMkwFER9EGbAco1f7puQ8PEwwOzVhHNzFuB1tOCZrBDw8WDKa1SkVlh5QFyd4ES88PDwwN57AJQtfM8AZ8/Ptaww8PDA5oOR5LPhzlB2o6BKbADw8ZDtl0Hkf2gnkHgxcEyb0PDwsOGiksQzFUDwegKvl3zA8PGA7r/k9RpMaLCHKa86CfDw8fDsHw+1H02J0IxqP3fJgPDyEOSzkeS5ikDAadPAPtyQ8PGRQ8KyxDXtZoBe/D+hPXDw8YFBN0HkdkMroFPiIDEMEPDwsU","header":{"n_obs":66,"t":{"ns_residual":0,"wn":2098,"tow":271532000}},"crc":51370} -{"length":62,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":47,"i":109861171},"flags":15,"cn0":175,"P":1364197179,"D":{"f":35,"i":-2431},"lock":15,"sid":{"sat":31,"code":20}},{"L":{"f":252,"i":89223642},"flags":15,"cn0":206,"P":1107931207,"D":{"f":49,"i":-789},"lock":15,"sid":{"sat":12,"code":20}},{"L":{"f":155,"i":110768678},"flags":15,"cn0":169,"P":1375465643,"D":{"f":159,"i":-1639},"lock":15,"sid":{"sat":33,"code":20}}],"payload":"4D8vEAAAAAAyCEM7/09RM1mMBi+B9iOvDw8fFEewCULacVEF/Ov8Mc4PDwwUq/D7USYymgabmfmfqQ8PIRQ=","header":{"n_obs":67,"t":{"ns_residual":0,"wn":2098,"tow":271532000}},"crc":26500} -{"length":9,"l2ca_bias":0,"preamble":85,"l2p_bias":0,"sender":22963,"msg_type":117,"payload":"/wAAAAAAAAAA","l1ca_bias":0,"mask":255,"crc":49809,"l1p_bias":0} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgjgPy8QAAAAAAE=","wn":2098,"tow":271532000,"crc":20630} -{"length":16,"flags":17,"ns":999999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EeA/LxDkBwMZAxkN/smaOw==","day":25,"tow":271532000,"year":2020,"crc":45873,"minutes":25,"month":3,"seconds":13} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.807651702029755,"preamble":85,"sender":22963,"msg_type":522,"payload":"4D8vEEdLY+1l6kJA2xFGFlaSXsDLxg5Dws4xwAECWwQPBg==","lat":37.831235574229645,"tow":271532000,"h_accuracy":513,"crc":23503,"lon":-122.28650433390378} -{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"4D8vEPf////8////+v////EAywIPAg==","n":-9,"d":-6,"tow":271532000,"h_accuracy":241,"crc":51413,"e":-4} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"4D8vEJsAhwBMAEgAcgAG","tow":271532000,"crc":50080,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"4D8vEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271532000,"h_accuracy":0,"crc":43307,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"4D8vEP//","tow":271532000,"crc":33256} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":4,"flags":2147616000,"preamble":85,"sender":22963,"msg_type":65535,"payload":"AAUCgA==","crc":40942} -{"length":24,"z":3890655.0240602265,"preamble":85,"sender":22963,"msg_type":72,"payload":"UO0a3iqORMHK1UJhIkRQwc9nFIPvrk1B","crc":2168,"x":-2694229.735196747,"y":-4264073.519704292} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"bWFpbgAAAAAAAAAAAAAAAAAAAAAAAAx1AAA=","name":"main\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":47991,"stack_free":29964,"cpu":0} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"aWRsZQAAAAAAAAAAAAAAAAAAAABlAXwAAAA=","name":"idle\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":61976,"stack_free":124,"cpu":357} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"cnBtc2cAAAAAAAAAAAAAAAAAAAABAAwOAAA=","name":"rpmsg\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":4724,"stack_free":3596,"cpu":1} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"U0JQAAAAAAAAAAAAAAAAAAAAAAAAAPz/AAA=","name":"SBP\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":51784,"stack_free":65532,"cpu":0} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"TkFQAAAAAAAAAAAAAAAAAAAAAAAAAASAAAA=","name":"NAP\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":33651,"stack_free":32772,"cpu":0} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"bWFuYWdlIFBWAAAAAAAAAAAAAAAAACQEAAA=","name":"manage PV\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":29877,"stack_free":1060,"cpu":0} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"SU1VAAAAAAAAAAAAAAAAAAAAAAAAAPQHAAA=","name":"IMU\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":14252,"stack_free":2036,"cpu":0} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"SU1VIGF1eAAAAAAAAAAAAAAAAAAAAEwIAAA=","name":"IMU aux\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":18976,"stack_free":2124,"cpu":0} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"bmRiAAAAAAAAAAAAAAAAAAAAAAAAAFAMAAA=","name":"ndb\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":26120,"stack_free":3152,"cpu":0} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"TkFQIFRyYWNraW5nAAAAAAAAAAAcAdR3AAA=","name":"NAP Tracking\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":3951,"stack_free":30676,"cpu":284} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"ZGVjb2RlAAAAAAAAAAAAAAAAAAAIANQGAAA=","name":"decode\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":40082,"stack_free":1748,"cpu":8} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"bWFuYWdlIGFjcQAAAAAAAAAAAAC9AKR3AAA=","name":"manage acq\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":24209,"stack_free":30628,"cpu":189} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"c3lzdGVtIG1vbml0b3IAAAAAAAAAACwGAAA=","name":"system monitor\u0000\u0000\u0000\u0000\u0000\u0000","crc":58531,"stack_free":1580,"cpu":0} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"V2F0Y2hkb2cAAAAAAAAAAAAAAAAAAOQDAAA=","name":"Watchdog\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":44438,"stack_free":996,"cpu":0} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"c3RhcmxpbmcAAAAAAAAAAAAAAACVAPz/AAA=","name":"starling\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":15999,"stack_free":65532,"cpu":149} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"bWVfY2FsY19wdnQAAAAAAAAAAAAJAIwjAAA=","name":"me_calc_pvt\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":57561,"stack_free":9100,"cpu":9} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"UFBTAAAAAAAAAAAAAAAAAAAAAAAAAEgHAAA=","name":"PPS\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":38576,"stack_free":1864,"cpu":0} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"c3BlY3RydW0gYW5hbHl6ZXIAAAAAANQPAAA=","name":"spectrum analyzer\u0000\u0000\u0000","crc":50933,"stack_free":4052,"cpu":0} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MghEQC8QAAAAAAE=","wn":2098,"tow":271532100,"crc":48633} -{"length":16,"flags":17,"ns":99999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EURALxDkBwMZAxkO/uD1BQ==","day":25,"tow":271532100,"year":2020,"crc":12387,"minutes":25,"month":3,"seconds":14} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.81561338943416,"preamble":85,"sender":22963,"msg_type":522,"payload":"REAvEHAic+1l6kJAAQ57FlaSXsCnzAEKzNAxwAECWwQPBg==","lat":37.83123558160594,"tow":271532100,"h_accuracy":513,"crc":5160,"lon":-122.28650438324986} -{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"REAvEAEAAAD6////DAAAAPEAywIPAg==","n":1,"d":12,"tow":271532100,"h_accuracy":241,"crc":12747,"e":-6} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"REAvEJsAhwBMAEgAcgAG","tow":271532100,"crc":31486,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"REAvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271532100,"h_accuracy":0,"crc":32932,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"REAvEP//","tow":271532100,"crc":7710} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgioQC8QAAAAAAE=","wn":2098,"tow":271532200,"crc":20350} -{"length":16,"flags":17,"ns":199999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EahALxDkBwMZAxkO/sHrCw==","day":25,"tow":271532200,"year":2020,"crc":8159,"minutes":25,"month":3,"seconds":14} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.826844517567505,"preamble":85,"sender":22963,"msg_type":522,"payload":"qEAvEKPKfu1l6kJAAbKpFlaSXsBP1BEVrNMxwAECWwQPBg==","lat":37.831235587034165,"tow":271532200,"h_accuracy":513,"crc":3495,"lon":-122.28650442668733} -{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"qEAvEP////8EAAAAIQAAAPEAywIPAg==","n":-1,"d":33,"tow":271532200,"h_accuracy":241,"crc":62751,"e":4} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"qEAvEJsAhwBMAEgAcgAG","tow":271532200,"crc":9478,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"qEAvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271532200,"h_accuracy":0,"crc":31780,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"qEAvEP//","tow":271532200,"crc":40645} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MggMQS8QAAAAAAE=","wn":2098,"tow":271532300,"crc":35852} -{"length":16,"flags":17,"ns":299999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EQxBLxDkBwMZAxkO/qLhEQ==","day":25,"tow":271532300,"year":2020,"crc":43137,"minutes":25,"month":3,"seconds":14} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.83749533982504,"preamble":85,"sender":22963,"msg_type":522,"payload":"DEEvEDdSje1l6kJA1tPVFlaSXsDYGTcYZtYxwAECWwQPBg==","lat":37.83123559380004,"tow":271532300,"h_accuracy":513,"crc":15450,"lon":-122.2865044677886} -{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"DEEvEAMAAAAKAAAA9/////EAywIPAg==","n":3,"d":-9,"tow":271532300,"h_accuracy":241,"crc":21579,"e":10} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"DEEvEJsAhwBMAEgAcgAG","tow":271532300,"crc":3283,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"DEEvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271532300,"h_accuracy":0,"crc":57003,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"DEEvEP//","tow":271532300,"crc":54045} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":237,"states":[{"cn0":213,"mesid":{"sat":5,"code":0}},{"cn0":179,"mesid":{"sat":21,"code":0}},{"cn0":186,"mesid":{"sat":2,"code":0}},{"cn0":164,"mesid":{"sat":31,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":217,"mesid":{"sat":25,"code":0}},{"cn0":207,"mesid":{"sat":12,"code":0}},{"cn0":212,"mesid":{"sat":29,"code":0}},{"cn0":206,"mesid":{"sat":18,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":204,"mesid":{"sat":131,"code":2}},{"cn0":203,"mesid":{"sat":25,"code":1}},{"cn0":187,"mesid":{"sat":12,"code":1}},{"cn0":151,"mesid":{"sat":31,"code":1}},{"cn0":196,"mesid":{"sat":18,"code":1}},{"cn0":193,"mesid":{"sat":29,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":192,"mesid":{"sat":5,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":213,"mesid":{"sat":100,"code":3}},{"cn0":179,"mesid":{"sat":98,"code":3}},{"cn0":173,"mesid":{"sat":102,"code":3}},{"cn0":209,"mesid":{"sat":101,"code":3}},{"cn0":208,"mesid":{"sat":93,"code":3}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":182,"mesid":{"sat":106,"code":3}},{"cn0":203,"mesid":{"sat":104,"code":3}},{"cn0":172,"mesid":{"sat":98,"code":4}},{"cn0":205,"mesid":{"sat":102,"code":4}},{"cn0":83,"mesid":{"sat":93,"code":4}},{"cn0":201,"mesid":{"sat":100,"code":4}},{"cn0":195,"mesid":{"sat":101,"code":4}},{"cn0":188,"mesid":{"sat":104,"code":4}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":175,"mesid":{"sat":106,"code":4}},{"cn0":200,"mesid":{"sat":35,"code":12}},{"cn0":173,"mesid":{"sat":26,"code":12}},{"cn0":159,"mesid":{"sat":34,"code":12}},{"cn0":188,"mesid":{"sat":24,"code":12}},{"cn0":161,"mesid":{"sat":25,"code":12}},{"cn0":185,"mesid":{"sat":12,"code":12}},{"cn0":185,"mesid":{"sat":19,"code":12}},{"cn0":193,"mesid":{"sat":22,"code":12}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":207,"mesid":{"sat":12,"code":13}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":194,"mesid":{"sat":12,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":191,"mesid":{"sat":25,"code":14}},{"cn0":188,"mesid":{"sat":11,"code":14}},{"cn0":203,"mesid":{"sat":24,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":158,"mesid":{"sat":31,"code":14}},{"cn0":151,"mesid":{"sat":33,"code":14}},{"cn0":201,"mesid":{"sat":25,"code":20}},{"cn0":215,"mesid":{"sat":24,"code":20}},{"cn0":194,"mesid":{"sat":11,"code":20}},{"cn0":175,"mesid":{"sat":31,"code":20}},{"cn0":206,"mesid":{"sat":12,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":170,"mesid":{"sat":33,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}}],"preamble":85,"sender":22963,"msg_type":97,"payload":"BQDVFQCzAgC6HwCkAAAAAAAAGQDZDADPHQDUEgDOAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwLMGQHLDAG7HwGXEgHEHQHBAAAABQHAAAAAAAAAAAAAAAAAZAPVYgOzZgOtZQPRXQPQAAAAagO2aAPLYgSsZgTNXQRTZATJZQTDaAS8AAAAagSvIwzIGgytIgyfGAy8GQyhDAy5Ewy5FgzBAAAADA3PAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADA7CAAAAGQ6/Cw68GA7LAAAAHw6eIQ6XGRTJGBTXCxTCHxSvDBTOAAAAIRSqAAAA","crc":32415} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MghwQS8QAAAAAAE=","wn":2098,"tow":271532400,"crc":37575} -{"length":16,"flags":17,"ns":399999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EXBBLxDkBwMZAxkO/oPXFw==","day":25,"tow":271532400,"year":2020,"crc":37858,"minutes":25,"month":3,"seconds":14} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.850109908095327,"preamble":85,"sender":22963,"msg_type":522,"payload":"cEEvEAQHk+1l6kJAH7sIF1aSXsBmRo3NoNkxwAECWwQPBg==","lat":37.83123559645722,"tow":271532400,"h_accuracy":513,"crc":12989,"lon":-122.28650451519614} -{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"cEEvEAYAAAD6////+/////EAywIPAg==","n":6,"d":-5,"tow":271532400,"h_accuracy":241,"crc":65038,"e":-6} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"cEEvEJsAhwBMAEgAcgAG","tow":271532400,"crc":18867,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"cEEvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271532400,"h_accuracy":0,"crc":9720,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"cEEvEP//","tow":271532400,"crc":40290} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":9,"l2ca_bias":0,"preamble":85,"l2p_bias":0,"sender":22963,"msg_type":117,"payload":"/wAAAAAAAAAA","l1ca_bias":0,"mask":255,"crc":49809,"l1p_bias":0} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgjUQS8QAAAAAAE=","wn":2098,"tow":271532500,"crc":5734} -{"length":16,"flags":17,"ns":499999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EdRBLxDkBwMZAxkO/mTNHQ==","day":25,"tow":271532500,"year":2020,"crc":43269,"minutes":25,"month":3,"seconds":14} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.86162557262341,"preamble":85,"sender":22963,"msg_type":522,"payload":"1EEvEE/Jj+1l6kJAfVc+F1aSXsCY0Fd+k9wxwAECWwQPBg==","lat":37.83123559494799,"tow":271532500,"h_accuracy":513,"crc":3224,"lon":-122.2865045651251} -{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"1EEvEP7/////////9/////EAywIPAg==","n":-2,"d":-9,"tow":271532500,"h_accuracy":241,"crc":14265,"e":-1} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"1EEvEJsAhwBMAEgAcgAG","tow":271532500,"crc":6919,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"1EEvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271532500,"h_accuracy":0,"crc":21121,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"1EEvEP//","tow":271532500,"crc":31467} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"Mgg4Qi8QAAAAAAE=","wn":2098,"tow":271532600,"crc":11412} -{"length":16,"flags":17,"ns":599999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EThCLxDkBwMZAxkO/kXDIw==","day":25,"tow":271532600,"year":2020,"crc":15930,"minutes":25,"month":3,"seconds":14} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.877730227165625,"preamble":85,"sender":22963,"msg_type":522,"payload":"OEIvEMhym+1l6kJAp/uIF1aSXsATY5ztsuAxwAECWwQPBg==","lat":37.831235600378534,"tow":271532600,"h_accuracy":513,"crc":24264,"lon":-122.2865046346402} -{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"OEIvEAQAAAD1////HQAAAPEAywIPAg==","n":4,"d":29,"tow":271532600,"h_accuracy":241,"crc":4477,"e":-11} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"OEIvEJsAhwBMAEgAcgAG","tow":271532600,"crc":51548,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"OEIvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271532600,"h_accuracy":0,"crc":49210,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"OEIvEP//","tow":271532600,"crc":5346} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":147,"af0":-9.23714367672801e-4,"w":-5.725038031956664e-2,"dn":3.576934707973788e-9,"c_us":1.2642704e-5,"c_uc":1.5250407e-6,"ecc":7.52994092181325e-4,"sqrta":5282.620655059814,"preamble":85,"toc":{"wn":2098,"tow":270014},"sender":22963,"msg_type":137,"omegadot":-6.592417457791331e-9,"payload":"Iwy+HgQAMggAAABAMCoAAAEAwwCGscMAhrEAgPlBANjTQgCwzDUAHFQ3AABIsgAAOjMUuSw6w7kuPn/O4GKYQgBAAAAAgJKsSD8AAEDjnqK0QJ1VR5JSigbAf+7mjHBQPL5w7E/+60+tv7WNXBae1O4/TfYYl9sb7T0AAACArUROvwAGni0AAAAAvh4EADIIh4cA","inc":0.963454288172605,"inc_dot":2.1179453637827823e-10,"iode":135,"crc":30051,"tgd2":-3.9e-9,"common":{"health_bits":0,"fit_interval":10800,"valid":1,"sid":{"sat":35,"code":12},"toe":{"wn":2098,"tow":270014},"ura":2},"c_rs":31.1875,"m0":2.03251721619182,"af2":0,"c_rc":105.921875,"af1":1.7965185e-11,"c_is":4.33065e-8,"c_ic":-1.1641532e-8,"tgd1":-3.9e-9,"omega0":-2.817540304948763,"iodc":135} -{"length":147,"af0":6.189986597746611e-4,"w":0.32445982545408203,"dn":4.235176412097173e-9,"c_us":3.1171367e-6,"c_uc":3.4985133e-6,"ecc":6.687664426863194e-4,"sqrta":5282.61806678772,"preamble":85,"toc":{"wn":2098,"tow":270014},"sender":22963,"msg_type":137,"omegadot":-7.279231780650402e-9,"payload":"Ggy+HgQAMggAAABAMCoAAAEAjyjOsY8ozrEACItCAAKUQwDIajYAMFE2AACGMwAAADHP95QuoDAyPiLf2/NWewdAAAAAAAXqRT8AAKA5nqK0QPup189o9PU//N6OmJlDP77QO8wk88PUP5/Et3R4h+4/gsMdrMKq/D0AAACAiUhEPwAwdy0AAAAAvh4EADIIh4cA","inc":0.9540369300504102,"inc_dot":4.1716023354102695e-10,"iode":135,"crc":36026,"tgd2":-6.0e-9,"common":{"health_bits":0,"fit_interval":10800,"valid":1,"sid":{"sat":26,"code":12},"toe":{"wn":2098,"tow":270014},"ura":2},"c_rs":69.515625,"m0":2.935224442622613,"af2":0,"c_rc":296.01563,"af1":1.4050983e-11,"c_is":1.8626451e-9,"c_ic":6.239861e-8,"tgd1":-6.0e-9,"omega0":1.372170268902322,"iodc":135} -{"length":147,"af0":-5.756265018135309e-4,"w":0.17131749839288932,"dn":3.5805062853157493e-9,"c_us":1.34021975e-5,"c_uc":1.5008263e-6,"ecc":5.672440165653825e-4,"sqrta":5282.627738952637,"preamble":85,"toc":{"wn":2098,"tow":270014},"sender":22963,"msg_type":137,"omegadot":-6.595989035133292e-9,"payload":"Igy+HgQAMggAAABAMCoAAAEAWdkAslnZALIAAPZBAAi9QgBwyTUA2mA3AABwMgAAKDJjDrfYncEuPsrGdL5ZIcw/AAAAQGOWQj8AAICzoKK0QIU/AkIEigbAJhks3F1UPL4vPWpWu+3FP6YFBUkK1O4/ejptkv007T0AAACAtNxCvwCgC64AAAAAvh4EADIIh4cA","inc":0.9633838106312183,"inc_dot":2.125088518466704e-10,"iode":135,"crc":62150,"tgd2":-7.5e-9,"common":{"health_bits":0,"fit_interval":10800,"valid":1,"sid":{"sat":34,"code":12},"toe":{"wn":2098,"tow":270014},"ura":2},"c_rs":30.75,"m0":0.21976777839295486,"af2":0,"c_rc":94.515625,"af1":-3.174705e-11,"c_is":9.778887e-9,"c_ic":1.3969839e-8,"tgd1":-7.5e-9,"omega0":-2.8173909336982796,"iodc":135} -{"length":147,"af0":-8.866871939972043e-4,"w":0.5946314748905823,"dn":4.351609833445096e-9,"c_us":3.0193478e-6,"c_uc":3.3127144e-6,"ecc":5.869971355423331e-4,"sqrta":5282.613315582275,"preamble":85,"toc":{"wn":2098,"tow":270014},"sender":22963,"msg_type":137,"omegadot":-7.331733967577227e-9,"payload":"GAy+HgQAMggAAABAMCoAAAEA/+bbMf/m2zEA+IVCAKiTQwBQXjYAoEo2AABYMwAAjLIVM8pGpbAyPiifS3+Dnf4/AAAAwBY8Qz8AAEACnaK0QCg91PljXPY/lGvUpVN9P742eTqWOAfjP+Iz0JJ5fe4/ndgi/RFG+D0AAABAEg5NvwAkli0AAAAAvh4EADIIh4cA","inc":0.9528167598197081,"inc_dot":3.532289991199278e-10,"iode":135,"crc":37866,"tgd2":6.4e-9,"common":{"health_bits":0,"fit_interval":10800,"valid":1,"sid":{"sat":24,"code":12},"toe":{"wn":2098,"tow":270014},"ura":2},"c_rs":66.984375,"m0":1.9134554836727578,"af2":0,"c_rc":295.3125,"af1":1.7069013e-11,"c_is":-1.6298145e-8,"c_ic":5.029142e-8,"tgd1":6.4e-9,"omega0":1.397556281943091,"iodc":135} -{"length":147,"af0":-5.598061252385378e-4,"w":0.4555162837044739,"dn":4.254820087477957e-9,"c_us":3.4887344e-6,"c_uc":3.5273843e-6,"ecc":4.072687588632107e-4,"sqrta":5282.618574142456,"preamble":85,"toc":{"wn":2098,"tow":270014},"sender":22963,"msg_type":137,"omegadot":-7.227086751457774e-9,"payload":"GQy+HgQAMggAAABAMCoAAAEAP+2krz/tpK8AcI5CAByQQwC4bDYAIGo2AACUsgAAtLNlYpFiOUYyPjyioq2B4/M/AAAAANawOj8AAOBanqK0QNMn20Uo8vU/daM2E0QKP75XmFPFLSfdPykqFKcEh+4/DQoOoigw+j0AAACA/ldCvwCgZK0AAAAAvh4EADIIh4cA","inc":0.9539817107445902,"inc_dot":3.8108730238722235e-10,"iode":135,"crc":4271,"tgd2":-3.0e-10,"common":{"health_bits":0,"fit_interval":10800,"valid":1,"sid":{"sat":25,"code":12},"toe":{"wn":2098,"tow":270014},"ura":2},"c_rs":71.21875,"m0":1.2430435927036703,"af2":0,"c_rc":288.21875,"af1":-1.2995827e-11,"c_is":-8.381903e-8,"c_ic":-1.7229468e-8,"tgd1":-3.0e-10,"omega0":1.37162043845682,"iodc":135} -{"length":147,"af0":3.375648520886898e-4,"w":-1.9081863131506556,"dn":3.0797711419728383e-9,"c_us":1.3451092e-5,"c_uc":1.7820857e-6,"ecc":1.1259819148108363e-3,"sqrta":5282.626808166504,"preamble":85,"toc":{"wn":2098,"tow":270014},"sender":22963,"msg_type":137,"omegadot":-6.337763993309523e-9,"payload":"DAy+HgQAMggAAABAMCoAAAEAzy4XMV9wCbAAABtCAMjSQgAw7zUArGE3AACoMgAAALJoI1sFfXQqPnhZ35WZjwVAAAAA4LVyUj8AAIB2oKK0QPC50DJHWwbA+Cbw+HE4O76Vghpf7of+v3czuyPlpO8/MRP6+nc/8D0AAAAAZh82PwCo3iwAAAAAvh4EADIIh4cA","inc":0.9888787935138755,"inc_dot":2.3643842003780805e-10,"iode":135,"crc":42543,"tgd2":-5.0e-10,"common":{"health_bits":0,"fit_interval":10800,"valid":1,"sid":{"sat":12,"code":12},"toe":{"wn":2098,"tow":270014},"ura":2},"c_rs":38.75,"m0":2.695117159727655,"af2":0,"c_rc":105.390625,"af1":6.3282712e-12,"c_is":-7.450581e-9,"c_ic":1.9557774e-8,"tgd1":2.2e-9,"omega0":-2.794569394106695,"iodc":135} -{"length":147,"af0":3.618638729676604e-4,"w":-1.2494646693101417,"dn":3.988380417767678e-9,"c_us":6.2091276e-6,"c_uc":-4.3381006e-6,"ecc":9.270192822441459e-4,"sqrta":5282.625810623169,"preamble":85,"toc":{"wn":2098,"tow":270014},"sender":22963,"msg_type":137,"omegadot":-7.019935265624045e-9,"payload":"Ewy+HgQAMggAAABAMCoAAAEAUbI+MlGyPjIAILLCAMhnQwCQkbYAWNA2AAB4sgAAhbO3JwNJRSExPsX1sYGVhf4/AAAAwGZgTj8AACA1oKK0QLpUxzpa1+a/nPmKHYAmPr66HEOqzv3zv9CGs83N0u4/GoYZD6w0Bb4AAACAEbc3PwD8SC0AAAAAvh4EADIIh4cA","inc":0.9632329003909152,"inc_dot":-6.171685646908344e-10,"iode":135,"crc":22496,"tgd2":1.11e-8,"common":{"health_bits":0,"fit_interval":10800,"valid":1,"sid":{"sat":19,"code":12},"toe":{"wn":2098,"tow":270014},"ura":2},"c_rs":-89.0625,"m0":1.9076132837502524,"af2":0,"c_rc":231.78125,"af1":1.1424639e-11,"c_is":-6.193295e-8,"c_ic":-1.44355e-8,"tgd1":1.11e-8,"omega0":-0.7137881420154806,"iodc":135} -{"length":147,"af0":-8.595683611929417e-4,"w":-0.4481241952228889,"dn":3.9401641236512066e-9,"c_us":6.60168e-6,"c_uc":-4.6142377e-6,"ecc":6.332750199362636e-4,"sqrta":5282.624731063843,"preamble":85,"toc":{"wn":2098,"tow":270014},"sender":22963,"msg_type":137,"omegadot":-6.962790028152671e-9,"payload":"Fgy+HgQAMggAAABAMCoAAAEA5fp/MuX6fzIAKLXCAChjQwDUmrYAhN02AADksgAAgDLoZ92aQewwPiTcBIFHTtQ/AAAAwEvARD8AAGDun6K0QNF2psYWw+a/K084KavnPb4H1cEaEa7cv5y4HRYKze4/0Nr8rnXhBb4AAAAAlSpMvwDsfy0AAAAAvh4EADIIh4cA","inc":0.962529223628525,"inc_dot":-6.36812240071619e-10,"iode":135,"crc":61525,"tgd2":1.49e-8,"common":{"health_bits":0,"fit_interval":10800,"valid":1,"sid":{"sat":22,"code":12},"toe":{"wn":2098,"tow":270014},"ura":2},"c_rs":-90.578125,"m0":0.31727779006490864,"af2":0,"c_rc":227.15625,"af1":1.4547474e-11,"c_is":1.4901161e-8,"c_ic":-2.6542693e-8,"tgd1":1.49e-8,"omega0":-0.711314571369906,"iodc":135} -{"message_type":3,"length":34,"data":[87,255,0,31,254,127,247,255,0,7,255,255,215,255,127,240,0,255,255,255,232,206,246,231,239,229,112],"preamble":85,"sender":22963,"msg_type":30583,"payload":"gwK3QS8QA1f/AB/+f/f/AAf//9f/f/AA////6M725+/lcA==","tow":271532471,"crc":13409,"sid":{"sat":131,"code":2}} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgicQi8QAAAAAAE=","wn":2098,"tow":271532700,"crc":43061} -{"length":16,"flags":17,"ns":699999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EZxCLxDkBwMZAxkO/ia5KQ==","day":25,"tow":271532700,"year":2020,"crc":59501,"minutes":25,"month":3,"seconds":14} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.891267188563717,"preamble":85,"sender":22963,"msg_type":522,"payload":"nEIvEBTcq+1l6kJAEGzLF1aSXsAI4SIWKuQxwAECWwQPBg==","lat":37.83123560802065,"tow":271532700,"h_accuracy":513,"crc":30569,"lon":-122.28650469651643} -{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"nEIvEP7///8CAAAA9f////EAywIPAg==","n":-2,"d":-11,"tow":271532700,"h_accuracy":241,"crc":55200,"e":2} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"nEIvEJsAhwBMAEgAcgAG","tow":271532700,"crc":39912,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"nEIvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271532700,"h_accuracy":0,"crc":46915,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"nEIvEP//","tow":271532700,"crc":62315} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MggAQy8QAAAAAAE=","wn":2098,"tow":271532800,"crc":46778} -{"length":16,"flags":17,"ns":799999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EQBDLxDkBwMZAxkO/gevLw==","day":25,"tow":271532800,"year":2020,"crc":19846,"minutes":25,"month":3,"seconds":14} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.901494761190733,"preamble":85,"sender":22963,"msg_type":522,"payload":"AEMvEMPo1e1l6kJA6o8JGFaSXsBc1FRcyOYxwAECWwQPBg==","lat":37.831235627601494,"tow":271532800,"h_accuracy":513,"crc":38433,"lon":-122.28650475438886} -{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"AEMvEAMAAAAFAAAAAAAAAPEAywIPAg==","n":3,"d":0,"tow":271532800,"h_accuracy":241,"crc":5957,"e":5} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"AEMvEJsAhwBMAEgAcgAG","tow":271532800,"crc":18150,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"AEMvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271532800,"h_accuracy":0,"crc":40068,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"AEMvEP//","tow":271532800,"crc":40061} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":237,"states":[{"cn0":212,"mesid":{"sat":5,"code":0}},{"cn0":178,"mesid":{"sat":21,"code":0}},{"cn0":185,"mesid":{"sat":2,"code":0}},{"cn0":162,"mesid":{"sat":31,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":216,"mesid":{"sat":25,"code":0}},{"cn0":206,"mesid":{"sat":12,"code":0}},{"cn0":211,"mesid":{"sat":29,"code":0}},{"cn0":205,"mesid":{"sat":18,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":203,"mesid":{"sat":131,"code":2}},{"cn0":204,"mesid":{"sat":25,"code":1}},{"cn0":187,"mesid":{"sat":12,"code":1}},{"cn0":151,"mesid":{"sat":31,"code":1}},{"cn0":196,"mesid":{"sat":18,"code":1}},{"cn0":193,"mesid":{"sat":29,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":193,"mesid":{"sat":5,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":213,"mesid":{"sat":11,"code":3}},{"cn0":179,"mesid":{"sat":9,"code":3}},{"cn0":173,"mesid":{"sat":20,"code":3}},{"cn0":209,"mesid":{"sat":5,"code":3}},{"cn0":207,"mesid":{"sat":10,"code":3}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":182,"mesid":{"sat":4,"code":3}},{"cn0":203,"mesid":{"sat":21,"code":3}},{"cn0":172,"mesid":{"sat":9,"code":4}},{"cn0":205,"mesid":{"sat":20,"code":4}},{"cn0":65,"mesid":{"sat":10,"code":4}},{"cn0":201,"mesid":{"sat":11,"code":4}},{"cn0":195,"mesid":{"sat":5,"code":4}},{"cn0":188,"mesid":{"sat":0,"code":4}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":174,"mesid":{"sat":4,"code":4}},{"cn0":200,"mesid":{"sat":35,"code":12}},{"cn0":173,"mesid":{"sat":26,"code":12}},{"cn0":160,"mesid":{"sat":34,"code":12}},{"cn0":188,"mesid":{"sat":24,"code":12}},{"cn0":161,"mesid":{"sat":25,"code":12}},{"cn0":185,"mesid":{"sat":12,"code":12}},{"cn0":185,"mesid":{"sat":19,"code":12}},{"cn0":193,"mesid":{"sat":22,"code":12}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":207,"mesid":{"sat":12,"code":13}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":193,"mesid":{"sat":12,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":190,"mesid":{"sat":25,"code":14}},{"cn0":187,"mesid":{"sat":11,"code":14}},{"cn0":202,"mesid":{"sat":24,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":156,"mesid":{"sat":31,"code":14}},{"cn0":149,"mesid":{"sat":33,"code":14}},{"cn0":201,"mesid":{"sat":25,"code":20}},{"cn0":215,"mesid":{"sat":24,"code":20}},{"cn0":194,"mesid":{"sat":11,"code":20}},{"cn0":174,"mesid":{"sat":31,"code":20}},{"cn0":206,"mesid":{"sat":12,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":169,"mesid":{"sat":33,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}}],"preamble":85,"sender":22963,"msg_type":97,"payload":"BQDUFQCyAgC5HwCiAAAAAAAAGQDYDADOHQDTEgDNAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwLLGQHMDAG7HwGXEgHEHQHBAAAABQHBAAAAAAAAAAAAAAAACwPVCQOzFAOtBQPRCgPPAAAABAO2FQPLCQSsFATNCgRBCwTJBQTDAAS8AAAABASuIwzIGgytIgygGAy8GQyhDAy5Ewy5FgzBAAAADA3PAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADA7BAAAAGQ6+Cw67GA7KAAAAHw6cIQ6VGRTJGBTXCxTCHxSuDBTOAAAAIRSpAAAA","crc":44876} -{"length":128,"preamble":85,"sender":22963,"msg_type":151,"payload":"AgAaHQUAKzUMAFEtFQB9GRkAbUYaAKEBHQChNx8AlQ4EAxUWBQMyIQkDXw4KA3EpCwOYJQwDqgMTAyIHFAMMMRUDlSUMDJQpEwwjIBQMDwIWDEMkGAyCIxkMnQ4aDGcVIgyOESMMIi0LDosyDA4PPBgObDYZDpcpHw5VESEOIA8=","crc":34187,"azel":[{"el":29,"az":26,"sid":{"sat":2,"code":0}},{"el":53,"az":43,"sid":{"sat":5,"code":0}},{"el":45,"az":81,"sid":{"sat":12,"code":0}},{"el":25,"az":125,"sid":{"sat":21,"code":0}},{"el":70,"az":109,"sid":{"sat":25,"code":0}},{"el":1,"az":161,"sid":{"sat":26,"code":0}},{"el":55,"az":161,"sid":{"sat":29,"code":0}},{"el":14,"az":149,"sid":{"sat":31,"code":0}},{"el":22,"az":21,"sid":{"sat":4,"code":3}},{"el":33,"az":50,"sid":{"sat":5,"code":3}},{"el":14,"az":95,"sid":{"sat":9,"code":3}},{"el":41,"az":113,"sid":{"sat":10,"code":3}},{"el":37,"az":152,"sid":{"sat":11,"code":3}},{"el":3,"az":170,"sid":{"sat":12,"code":3}},{"el":7,"az":34,"sid":{"sat":19,"code":3}},{"el":49,"az":12,"sid":{"sat":20,"code":3}},{"el":37,"az":149,"sid":{"sat":21,"code":3}},{"el":41,"az":148,"sid":{"sat":12,"code":12}},{"el":32,"az":35,"sid":{"sat":19,"code":12}},{"el":2,"az":15,"sid":{"sat":20,"code":12}},{"el":36,"az":67,"sid":{"sat":22,"code":12}},{"el":35,"az":130,"sid":{"sat":24,"code":12}},{"el":14,"az":157,"sid":{"sat":25,"code":12}},{"el":21,"az":103,"sid":{"sat":26,"code":12}},{"el":17,"az":142,"sid":{"sat":34,"code":12}},{"el":45,"az":34,"sid":{"sat":35,"code":12}},{"el":50,"az":139,"sid":{"sat":11,"code":14}},{"el":60,"az":15,"sid":{"sat":12,"code":14}},{"el":54,"az":108,"sid":{"sat":24,"code":14}},{"el":41,"az":151,"sid":{"sat":25,"code":14}},{"el":17,"az":85,"sid":{"sat":31,"code":14}},{"el":15,"az":32,"sid":{"sat":33,"code":14}}]} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MghkQy8QAAAAAAE=","wn":2098,"tow":271532900,"crc":53872} -{"length":16,"flags":17,"ns":899999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EWRDLxDkBwMZAxkO/uikNQ==","day":25,"tow":271532900,"year":2020,"crc":33448,"minutes":25,"month":3,"seconds":14} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.913825628873305,"preamble":85,"sender":22963,"msg_type":522,"payload":"ZEMvEFbl4O1l6kJAXJpMGFaSXsDqQfZ58OkxwAECWwQPBg==","lat":37.83123563271754,"tow":271532900,"h_accuracy":513,"crc":48802,"lon":-122.28650481682547} -{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"ZEMvEPH////8////KwAAAPEAywIPAg==","n":-15,"d":43,"tow":271532900,"h_accuracy":241,"crc":13782,"e":-4} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"ZEMvEJsAhwBMAEgAcgAG","tow":271532900,"crc":27209,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"ZEMvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271532900,"h_accuracy":0,"crc":33842,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"ZEMvEP//","tow":271532900,"crc":50628} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":51,"text":"GLO L2OF ME 1 [+1248ms] low CN0 too long, dropping","preamble":85,"sender":22963,"msg_type":1025,"payload":"BkdMTyBMMk9GIE1FIDEgWysxMjQ4bXNdIGxvdyBDTjAgdG9vIGxvbmcsIGRyb3BwaW5n","crc":12431,"level":6} -{"length":249,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":182,"i":110567601},"flags":15,"cn0":211,"P":1052015625,"D":{"f":195,"i":-195},"lock":15,"sid":{"sat":5,"code":0}},{"L":{"f":37,"i":121785642},"flags":15,"cn0":178,"P":1158751841,"D":{"f":114,"i":2169},"lock":15,"sid":{"sat":21,"code":0}},{"L":{"f":15,"i":123382942},"flags":15,"cn0":185,"P":1173949258,"D":{"f":214,"i":-2479},"lock":15,"sid":{"sat":2,"code":0}},{"L":{"f":235,"i":128745565},"flags":15,"cn0":162,"P":1224973274,"D":{"f":121,"i":-405},"lock":15,"sid":{"sat":31,"code":0}},{"L":{"f":109,"i":107843667},"flags":15,"cn0":216,"P":1026098311,"D":{"f":200,"i":-1137},"lock":15,"sid":{"sat":25,"code":0}},{"L":{"f":125,"i":114152205},"flags":15,"cn0":206,"P":1086122023,"D":{"f":90,"i":-2974},"lock":15,"sid":{"sat":12,"code":0}},{"L":{"f":76,"i":110734210},"flags":15,"cn0":211,"P":1053600902,"D":{"f":111,"i":1481},"lock":15,"sid":{"sat":29,"code":0}},{"L":{"f":15,"i":84034047},"flags":15,"cn0":204,"P":1026098367,"D":{"f":10,"i":-886},"lock":15,"sid":{"sat":25,"code":1}},{"L":{"f":37,"i":88949802},"flags":15,"cn0":187,"P":1086121944,"D":{"f":97,"i":-2317},"lock":15,"sid":{"sat":12,"code":1}},{"L":{"f":164,"i":100321222},"flags":15,"cn0":152,"P":1224973266,"D":{"f":109,"i":-316},"lock":15,"sid":{"sat":31,"code":1}},{"L":{"f":123,"i":86286399},"flags":15,"cn0":193,"P":1053600813,"D":{"f":14,"i":1155},"lock":15,"sid":{"sat":29,"code":1}},{"L":{"f":11,"i":86156602},"flags":15,"cn0":193,"P":1052015547,"D":{"f":174,"i":-154},"lock":15,"sid":{"sat":5,"code":1}},{"L":{"f":39,"i":112915565},"flags":15,"cn0":213,"P":1056530102,"D":{"f":224,"i":1151},"lock":15,"sid":{"sat":11,"code":3}},{"L":{"f":63,"i":123416854},"flags":15,"cn0":179,"P":1155600380,"D":{"f":186,"i":-4407},"lock":15,"sid":{"sat":9,"code":3}}],"payload":"yEMvEAAAAAAyCEAJfLQ+sSCXBrY9/8PTDw8FAGEmEUUqTUIHJXkIcrIPDxUASgv5RZ6sWgcPUfbWuQ8PAgDamwNJXYCsB+tr/nmiDw8fAIcEKT1TkG0GbY/7yNgPDxkAJ+i8QA3TzQZ9YvRazg8PDACGrMw+gquZBkzJBW/TDw8dAL8EKT3/QQIFD4r8CswPDxkB2Oe8QCpETQUl8/Zhuw8PDAHSmwNJxsf6BaTE/m2YDw8fAS2szD4/oCQFe4MEDsEPDx0Bu3u0PjqlIgULZv+uwQ8PBQG2Xvk+bfS6Bid/BODVDw8LA/wP4UQWMVsHP8nuurMPDwkD","header":{"n_obs":64,"t":{"ns_residual":0,"wn":2098,"tow":271533000}},"crc":36836} -{"length":249,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":166,"i":109793317},"flags":15,"cn0":174,"P":1026594879,"D":{"f":213,"i":-1213},"lock":15,"sid":{"sat":20,"code":3}},{"L":{"f":147,"i":114819112},"flags":15,"cn0":209,"P":1073964187,"D":{"f":98,"i":2187},"lock":15,"sid":{"sat":5,"code":3}},{"L":{"f":61,"i":111660796},"flags":15,"cn0":207,"P":1047363734,"D":{"f":80,"i":-3054},"lock":15,"sid":{"sat":10,"code":3}},{"L":{"f":215,"i":120463337},"flags":15,"cn0":182,"P":1124783646,"D":{"f":128,"i":-1330},"lock":15,"sid":{"sat":4,"code":3}},{"L":{"f":63,"i":113389427},"flags":15,"cn0":202,"P":1059475798,"D":{"f":209,"i":1619},"lock":15,"sid":{"sat":21,"code":3}},{"L":{"f":71,"i":95990896},"flags":15,"cn0":171,"P":1155600484,"D":{"f":173,"i":-3431},"lock":15,"sid":{"sat":9,"code":4}},{"L":{"f":87,"i":85394838},"flags":15,"cn0":205,"P":1026595227,"D":{"f":80,"i":-943},"lock":15,"sid":{"sat":20,"code":4}},{"L":{"f":172,"i":87823227},"flags":15,"cn0":201,"P":1056530405,"D":{"f":130,"i":896},"lock":15,"sid":{"sat":11,"code":4}},{"L":{"f":7,"i":89303758},"flags":15,"cn0":195,"P":1073964405,"D":{"f":127,"i":1701},"lock":15,"sid":{"sat":5,"code":4}},{"L":{"f":118,"i":93693697},"flags":15,"cn0":174,"P":1124783878,"D":{"f":70,"i":-1035},"lock":15,"sid":{"sat":4,"code":4}},{"L":{"f":143,"i":121608034},"flags":15,"cn0":200,"P":1167676946,"D":{"f":155,"i":-1501},"lock":15,"sid":{"sat":35,"code":12}},{"L":{"f":80,"i":129268265},"flags":15,"cn0":173,"P":1241230636,"D":{"f":129,"i":-3009},"lock":15,"sid":{"sat":26,"code":12}},{"L":{"f":96,"i":132903873},"flags":15,"cn0":160,"P":1276139362,"D":{"f":36,"i":2249},"lock":15,"sid":{"sat":34,"code":12}},{"L":{"f":153,"i":125175777},"flags":15,"cn0":188,"P":1201934617,"D":{"f":178,"i":-1311},"lock":15,"sid":{"sat":24,"code":12}}],"payload":"yEMvEAAAAAAyCEE/mDA9JVCLBqZD+9WuDw8UA5tkA0AoANgGk4sIYtEPDwUDloBtPvzOpwY9EvRQzw8PCgMe1gpD6R8uB9fO+oC2Dw8EA1ZRJj9zL8IGP1MG0coPDxUDZBDhRHC0uAVHmfKtqw8PCQSbmTA9lgUXBVdR/FDNDw8UBOVf+T57EzwFrIADgskPDwsEdWUDQM6qUgUHpQZ/ww8PBQQG1wpDAaeVBXb1+0auDw8EBBJWmUVilz8HjyP6m8gPDyMMLK37SSl6tAdQP/SBrQ8PGgxiVxBMwfPrB2DJCCSgDw8iDBkRpEfhB3YHmeH6srwPDxgM","header":{"n_obs":65,"t":{"ns_residual":0,"wn":2098,"tow":271533000}},"crc":52465} -{"length":249,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":28,"i":134647398},"flags":15,"cn0":161,"P":1292880925,"D":{"f":209,"i":1316},"lock":15,"sid":{"sat":25,"code":12}},{"L":{"f":161,"i":121069757},"flags":15,"cn0":184,"P":1162508671,"D":{"f":72,"i":1611},"lock":15,"sid":{"sat":12,"code":12}},{"L":{"f":80,"i":124520444},"flags":15,"cn0":185,"P":1195642065,"D":{"f":122,"i":-299},"lock":15,"sid":{"sat":19,"code":12}},{"L":{"f":193,"i":124659689},"flags":15,"cn0":193,"P":1196979131,"D":{"f":23,"i":2383},"lock":15,"sid":{"sat":22,"code":12}},{"L":{"f":247,"i":93618824},"flags":15,"cn0":208,"P":1162508614,"D":{"f":146,"i":1245},"lock":15,"sid":{"sat":12,"code":13}},{"L":{"f":142,"i":116445404},"flags":15,"cn0":193,"P":1107941160,"D":{"f":201,"i":-1029},"lock":15,"sid":{"sat":12,"code":14}},{"L":{"f":41,"i":132454406},"flags":15,"cn0":189,"P":1260261706,"D":{"f":223,"i":1081},"lock":15,"sid":{"sat":25,"code":14}},{"L":{"f":87,"i":125402850},"flags":15,"cn0":187,"P":1193168390,"D":{"f":43,"i":1045},"lock":15,"sid":{"sat":11,"code":14}},{"L":{"f":13,"i":118446857},"flags":15,"cn0":201,"P":1126984239,"D":{"f":179,"i":-1751},"lock":15,"sid":{"sat":24,"code":14}},{"L":{"f":10,"i":143381258},"flags":15,"cn0":156,"P":1364227273,"D":{"f":241,"i":-3172},"lock":15,"sid":{"sat":31,"code":14}},{"L":{"f":79,"i":144564561},"flags":15,"cn0":149,"P":1375486062,"D":{"f":197,"i":-2140},"lock":15,"sid":{"sat":33,"code":14}},{"L":{"f":230,"i":101491036},"flags":15,"cn0":201,"P":1260261665,"D":{"f":223,"i":828},"lock":15,"sid":{"sat":25,"code":20}},{"L":{"f":239,"i":90758044},"flags":15,"cn0":215,"P":1126984789,"D":{"f":247,"i":-1342},"lock":15,"sid":{"sat":24,"code":20}},{"L":{"f":43,"i":96087876},"flags":15,"cn0":194,"P":1193168195,"D":{"f":69,"i":801},"lock":15,"sid":{"sat":11,"code":20}}],"payload":"yEMvEAAAAAAyCEIdzA9NZo4GCBwkBdGhDw8ZDH95SkW9YDcHoUsGSLgPDwwM0QxER/wHbAdQ1f56uQ8PEwy7c1hH6SduB8FPCRfBDw8WDEZ5SkWIgpQF990EktAPDwwNKNcJQtzQ8AaO+/vJwQ8PDA5KER5LBhjlByk5BN+9Dw8ZDgZOHkfifnkHVxUEK7sPDwsOL2osQwlbDwcNKfmzyQ8PGA7JdFBRCtOLCAqc8/GcDw8fDm5A/FFR4Z0IT6T3xZUPDyEOIREeS1yhDAbmPAPfyQ8PGRRVbCxDnNtoBe/C+vfXDw8YFENNHkdEL7oFKyEDRcIPDwsU","header":{"n_obs":66,"t":{"ns_residual":0,"wn":2098,"tow":271533000}},"crc":63018} -{"length":62,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":223,"i":109863602},"flags":15,"cn0":174,"P":1364227369,"D":{"f":188,"i":-2431},"lock":15,"sid":{"sat":31,"code":20}},{"L":{"f":127,"i":89224431},"flags":15,"cn0":206,"P":1107940998,"D":{"f":164,"i":-789},"lock":15,"sid":{"sat":12,"code":20}},{"L":{"f":204,"i":110770318},"flags":15,"cn0":169,"P":1375486007,"D":{"f":224,"i":-1639},"lock":15,"sid":{"sat":33,"code":20}}],"payload":"yEMvEAAAAAAyCEMpdVBRsmKMBt+B9ryuDw8fFIbWCULvdFEFf+v8pM4PDwwUN0D8UY44mgbMmfngqQ8PIRQ=","header":{"n_obs":67,"t":{"ns_residual":0,"wn":2098,"tow":271533000}},"crc":35905} -{"length":9,"l2ca_bias":0,"preamble":85,"l2p_bias":0,"sender":22963,"msg_type":117,"payload":"/wAAAAAAAAAA","l1ca_bias":0,"mask":255,"crc":49809,"l1p_bias":0} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgjIQy8QAAAAAAE=","wn":2098,"tow":271533000,"crc":32558} -{"length":16,"flags":17,"ns":999999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EchDLxDkBwMZAxkO/smaOw==","day":25,"tow":271533000,"year":2020,"crc":33275,"minutes":25,"month":3,"seconds":14} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.92275684426247,"preamble":85,"sender":22963,"msg_type":522,"payload":"yEMvELvrAu5l6kJAhByFGFaSXsB5ROTKOewxwAECWwQPBg==","lat":37.83123564856165,"tow":271533000,"h_accuracy":513,"crc":45032,"lon":-122.28650486945304} -{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"yEMvEAEAAAAHAAAA+v////EAywIPAg==","n":1,"d":-6,"tow":271533000,"h_accuracy":241,"crc":13023,"e":7} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"yEMvEJsAhwBMAEgAcgAG","tow":271533000,"crc":8120,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"yEMvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271533000,"h_accuracy":0,"crc":44520,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"yEMvEP//","tow":271533000,"crc":12047} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":4,"flags":2147616000,"preamble":85,"sender":22963,"msg_type":65535,"payload":"AAUCgA==","crc":40942} -{"length":24,"z":3890655.0240602265,"preamble":85,"sender":22963,"msg_type":72,"payload":"UO0a3iqORMHK1UJhIkRQwc9nFIPvrk1B","crc":2168,"x":-2694229.735196747,"y":-4264073.519704292} -{"cpu_vint":988,"length":10,"fe_temperature":5641,"preamble":85,"sender":22963,"cpu_vaux":1779,"msg_type":181,"payload":"6BbcA/MGPBUJFg==","dev_vin":5864,"crc":33243,"cpu_temperature":5436} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MggsRC8QAAAAAAE=","wn":2098,"tow":271533100,"crc":25422} -{"length":16,"flags":17,"ns":99999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"ESxELxDkBwMZAxkP/uD1BQ==","day":25,"tow":271533100,"year":2020,"crc":63439,"minutes":25,"month":3,"seconds":15} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.928863281537556,"preamble":85,"sender":22963,"msg_type":522,"payload":"LEQvEJXHKO5l6kJAvKLVGFaSXsC3qOj7ye0xwAECWwQPBg==","lat":37.83123566619103,"tow":271533100,"h_accuracy":513,"crc":28443,"lon":-122.28650494444713} -{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"LEQvEAUAAAD2////8P////EAywIPAg==","n":5,"d":-16,"tow":271533100,"h_accuracy":241,"crc":12421,"e":-10} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"LEQvEJsAhwBMAEgAcgAG","tow":271533100,"crc":5891,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"LEQvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271533100,"h_accuracy":0,"crc":1611,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"LEQvEP//","tow":271533100,"crc":50498} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgiQRC8QAAAAAAE=","wn":2098,"tow":271533200,"crc":40430} -{"length":16,"flags":17,"ns":199999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EZBELxDkBwMZAxkP/sHrCw==","day":25,"tow":271533200,"year":2020,"crc":48368,"minutes":25,"month":3,"seconds":15} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.93775064637113,"preamble":85,"sender":22963,"msg_type":522,"payload":"kEQvEG31Vu5l6kJAy2wkGVaSXsCE9yVtEPAxwAECWwQPBg==","lat":37.831235687694836,"tow":271533200,"h_accuracy":513,"crc":308,"lon":-122.28650501782538} -{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"kEQvEAsAAADy////+P////EAywIPAg==","n":11,"d":-8,"tow":271533200,"h_accuracy":241,"crc":57980,"e":-14} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"kEQvEJsAhwBMAEgAcgAG","tow":271533200,"crc":11384,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"kEQvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271533200,"h_accuracy":0,"crc":37591,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"kEQvEP//","tow":271533200,"crc":13581} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"Mgj0RC8QAAAAAAE=","wn":2098,"tow":271533300,"crc":63780} -{"length":16,"flags":17,"ns":299999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EfRELxDkBwMZAxkP/qLhEQ==","day":25,"tow":271533300,"year":2020,"crc":3796,"minutes":25,"month":3,"seconds":15} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.951878750012618,"preamble":85,"sender":22963,"msg_type":522,"payload":"9EQvEH/Xbu5l6kJAaPlmGVaSXsDCD2VTrvMxwAECWwQPBg==","lat":37.831235698816265,"tow":271533300,"h_accuracy":513,"crc":53557,"lon":-122.28650507980421} -{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"9EQvEAQAAAAHAAAAEgAAAPEAywIPAg==","n":4,"d":18,"tow":271533300,"h_accuracy":241,"crc":19883,"e":7} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"9EQvEJsAhwBMAEgAcgAG","tow":271533300,"crc":215,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"9EQvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271533300,"h_accuracy":0,"crc":35425,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"9EQvEP//","tow":271533300,"crc":27828} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":237,"states":[{"cn0":210,"mesid":{"sat":5,"code":0}},{"cn0":177,"mesid":{"sat":21,"code":0}},{"cn0":184,"mesid":{"sat":2,"code":0}},{"cn0":161,"mesid":{"sat":31,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":215,"mesid":{"sat":25,"code":0}},{"cn0":205,"mesid":{"sat":12,"code":0}},{"cn0":210,"mesid":{"sat":29,"code":0}},{"cn0":203,"mesid":{"sat":18,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":202,"mesid":{"sat":131,"code":2}},{"cn0":204,"mesid":{"sat":25,"code":1}},{"cn0":187,"mesid":{"sat":12,"code":1}},{"cn0":151,"mesid":{"sat":31,"code":1}},{"cn0":196,"mesid":{"sat":18,"code":1}},{"cn0":194,"mesid":{"sat":29,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":193,"mesid":{"sat":5,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":213,"mesid":{"sat":100,"code":3}},{"cn0":179,"mesid":{"sat":98,"code":3}},{"cn0":174,"mesid":{"sat":102,"code":3}},{"cn0":209,"mesid":{"sat":101,"code":3}},{"cn0":207,"mesid":{"sat":93,"code":3}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":182,"mesid":{"sat":106,"code":3}},{"cn0":203,"mesid":{"sat":104,"code":3}},{"cn0":172,"mesid":{"sat":98,"code":4}},{"cn0":205,"mesid":{"sat":102,"code":4}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":201,"mesid":{"sat":100,"code":4}},{"cn0":195,"mesid":{"sat":101,"code":4}},{"cn0":188,"mesid":{"sat":104,"code":4}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":174,"mesid":{"sat":106,"code":4}},{"cn0":200,"mesid":{"sat":35,"code":12}},{"cn0":173,"mesid":{"sat":26,"code":12}},{"cn0":160,"mesid":{"sat":34,"code":12}},{"cn0":188,"mesid":{"sat":24,"code":12}},{"cn0":161,"mesid":{"sat":25,"code":12}},{"cn0":184,"mesid":{"sat":12,"code":12}},{"cn0":185,"mesid":{"sat":19,"code":12}},{"cn0":192,"mesid":{"sat":22,"code":12}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":208,"mesid":{"sat":12,"code":13}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":193,"mesid":{"sat":12,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":190,"mesid":{"sat":25,"code":14}},{"cn0":187,"mesid":{"sat":11,"code":14}},{"cn0":202,"mesid":{"sat":24,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":156,"mesid":{"sat":31,"code":14}},{"cn0":150,"mesid":{"sat":33,"code":14}},{"cn0":201,"mesid":{"sat":25,"code":20}},{"cn0":215,"mesid":{"sat":24,"code":20}},{"cn0":193,"mesid":{"sat":11,"code":20}},{"cn0":175,"mesid":{"sat":31,"code":20}},{"cn0":206,"mesid":{"sat":12,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":169,"mesid":{"sat":33,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}}],"preamble":85,"sender":22963,"msg_type":97,"payload":"BQDSFQCxAgC4HwChAAAAAAAAGQDXDADNHQDSEgDLAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwLKGQHMDAG7HwGXEgHEHQHCAAAABQHBAAAAAAAAAAAAAAAAZAPVYgOzZgOuZQPRXQPPAAAAagO2aAPLYgSsZgTNAAAAZATJZQTDaAS8AAAAagSuIwzIGgytIgygGAy8GQyhDAy4Ewy5FgzAAAAADA3QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADA7BAAAAGQ6+Cw67GA7KAAAAHw6cIQ6WGRTJGBTXCxTBHxSvDBTOAAAAIRSpAAAA","crc":20365} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MghYRS8QAAAAAAE=","wn":2098,"tow":271533400,"crc":5033} -{"length":16,"flags":17,"ns":399999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EVhFLxDkBwMZAxkP/oPXFw==","day":25,"tow":271533400,"year":2020,"crc":32327,"minutes":25,"month":3,"seconds":15} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.959296623327806,"preamble":85,"sender":22963,"msg_type":522,"payload":"WEUvELV9a+5l6kJAjNzDGVaSXsAtW6h2lPUxwAECWwQPBg==","lat":37.831235697255956,"tow":271533400,"h_accuracy":513,"crc":49894,"lon":-122.28650516631222} -{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"WEUvEPf////3/////v////EAywIPAg==","n":-9,"d":-2,"tow":271533400,"h_accuracy":241,"crc":56398,"e":-9} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"WEUvEJsAhwBMAEgAcgAG","tow":271533400,"crc":3655,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"WEUvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271533400,"h_accuracy":0,"crc":30285,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"WEUvEP//","tow":271533400,"crc":11310} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":9,"l2ca_bias":0,"preamble":85,"l2p_bias":0,"sender":22963,"msg_type":117,"payload":"/wAAAAAAAAAA","l1ca_bias":0,"mask":255,"crc":49809,"l1p_bias":0} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"Mgi8RS8QAAAAAAE=","wn":2098,"tow":271533500,"crc":51409} -{"length":16,"flags":17,"ns":499999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EbxFLxDkBwMZAxkP/mTNHQ==","day":25,"tow":271533500,"year":2020,"crc":28329,"minutes":25,"month":3,"seconds":15} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.96692293888981,"preamble":85,"sender":22963,"msg_type":522,"payload":"vEUvEM+kVO5l6kJAjh0TGlaSXsCwSABDiPcxwAECWwQPBg==","lat":37.83123568661687,"tow":271533500,"h_accuracy":513,"crc":21420,"lon":-122.2865052401232} -{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"vEUvEPH///8FAAAABwAAAPEAywIPAg==","n":-15,"d":7,"tow":271533500,"h_accuracy":241,"crc":40205,"e":5} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"vEUvEJsAhwBMAEgAcgAG","tow":271533500,"crc":30458,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"vEUvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271533500,"h_accuracy":0,"crc":54382,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"vEUvEP//","tow":271533500,"crc":41399} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgggRi8QAAAAAAE=","wn":2098,"tow":271533600,"crc":23032} -{"length":16,"flags":17,"ns":599999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"ESBGLxDkBwMZAxkP/kXDIw==","day":25,"tow":271533600,"year":2020,"crc":1,"minutes":25,"month":3,"seconds":15} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.970811815803923,"preamble":85,"sender":22963,"msg_type":522,"payload":"IEYvEI9tPu5l6kJAMJ5hGlaSXsC/cocfh/gxwAECWwQPBg==","lat":37.831235676271824,"tow":271533600,"h_accuracy":513,"crc":9873,"lon":-122.28650531323433} -{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"IEYvEPz///8HAAAA//////EAywIPAg==","n":-4,"d":-1,"tow":271533600,"h_accuracy":241,"crc":50881,"e":7} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"IEYvEJsAhwBMAEgAcgAG","tow":271533600,"crc":23862,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"IEYvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271533600,"h_accuracy":0,"crc":17508,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"IEYvEP//","tow":271533600,"crc":35362} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgiERi8QAAAAAAE=","wn":2098,"tow":271533700,"crc":56665} -{"length":16,"flags":17,"ns":699999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EYRGLxDkBwMZAxkP/ia5KQ==","day":25,"tow":271533700,"year":2020,"crc":54870,"minutes":25,"month":3,"seconds":15} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.971254468249406,"preamble":85,"sender":22963,"msg_type":522,"payload":"hEYvEP0fT+5l6kJA7la+GlaSXsCeOQEipPgxwAECWwQPBg==","lat":37.831235684046966,"tow":271533700,"h_accuracy":513,"crc":42562,"lon":-122.2865053995881} -{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"hEYvEBAAAAD5////1/////EAywIPAg==","n":16,"d":-41,"tow":271533700,"h_accuracy":241,"crc":18720,"e":-7} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"hEYvEJsAhwBMAEgAcgAG","tow":271533700,"crc":3970,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"hEYvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271533700,"h_accuracy":0,"crc":13085,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"hEYvEP//","tow":271533700,"crc":28075} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"message_type":4,"length":34,"data":[87,255,127,255,254,127,240,0,127,255,253,255,239,252,127,247,255,127,247,255,238,94,110,170,175,255,240],"preamble":85,"sender":22963,"msg_type":30583,"payload":"gwKiRS8QBFf/f//+f/AAf//9/+/8f/f/f/f/7l5uqq//8A==","tow":271533474,"crc":53755,"sid":{"sat":131,"code":2}} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgjoRi8QAAAAAAE=","wn":2098,"tow":271533800,"crc":36972} -{"length":16,"flags":17,"ns":799999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EehGLxDkBwMZAxkP/gevLw==","day":25,"tow":271533800,"year":2020,"crc":42329,"minutes":25,"month":3,"seconds":15} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.98243622641579,"preamble":85,"sender":22963,"msg_type":522,"payload":"6EYvEO9uB+5l6kJAFDH9GlaSXsCJ3MbwgPsxwAECWwQPBg==","lat":37.831235650662954,"tow":271533800,"h_accuracy":513,"crc":35490,"lon":-122.28650545812371} -{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"6EYvEPn///8CAAAANgAAAPEAywIPAg==","n":-7,"d":54,"tow":271533800,"h_accuracy":241,"crc":32732,"e":2} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"6EYvEJsAhwBMAEgAcgAG","tow":271533800,"crc":1128,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"6EYvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271533800,"h_accuracy":0,"crc":29960,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"6EYvEP//","tow":271533800,"crc":14672} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":237,"states":[{"cn0":209,"mesid":{"sat":5,"code":0}},{"cn0":176,"mesid":{"sat":21,"code":0}},{"cn0":183,"mesid":{"sat":2,"code":0}},{"cn0":160,"mesid":{"sat":31,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":214,"mesid":{"sat":25,"code":0}},{"cn0":203,"mesid":{"sat":12,"code":0}},{"cn0":209,"mesid":{"sat":29,"code":0}},{"cn0":203,"mesid":{"sat":18,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":201,"mesid":{"sat":131,"code":2}},{"cn0":204,"mesid":{"sat":25,"code":1}},{"cn0":188,"mesid":{"sat":12,"code":1}},{"cn0":151,"mesid":{"sat":31,"code":1}},{"cn0":196,"mesid":{"sat":18,"code":1}},{"cn0":194,"mesid":{"sat":29,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":193,"mesid":{"sat":5,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":213,"mesid":{"sat":11,"code":3}},{"cn0":179,"mesid":{"sat":9,"code":3}},{"cn0":174,"mesid":{"sat":20,"code":3}},{"cn0":209,"mesid":{"sat":5,"code":3}},{"cn0":207,"mesid":{"sat":10,"code":3}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":181,"mesid":{"sat":4,"code":3}},{"cn0":203,"mesid":{"sat":21,"code":3}},{"cn0":172,"mesid":{"sat":9,"code":4}},{"cn0":205,"mesid":{"sat":20,"code":4}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":200,"mesid":{"sat":11,"code":4}},{"cn0":195,"mesid":{"sat":5,"code":4}},{"cn0":188,"mesid":{"sat":0,"code":4}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":173,"mesid":{"sat":4,"code":4}},{"cn0":200,"mesid":{"sat":35,"code":12}},{"cn0":172,"mesid":{"sat":26,"code":12}},{"cn0":161,"mesid":{"sat":34,"code":12}},{"cn0":188,"mesid":{"sat":24,"code":12}},{"cn0":161,"mesid":{"sat":25,"code":12}},{"cn0":185,"mesid":{"sat":12,"code":12}},{"cn0":185,"mesid":{"sat":19,"code":12}},{"cn0":193,"mesid":{"sat":22,"code":12}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":208,"mesid":{"sat":12,"code":13}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":193,"mesid":{"sat":12,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":190,"mesid":{"sat":25,"code":14}},{"cn0":188,"mesid":{"sat":11,"code":14}},{"cn0":202,"mesid":{"sat":24,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":157,"mesid":{"sat":31,"code":14}},{"cn0":150,"mesid":{"sat":33,"code":14}},{"cn0":201,"mesid":{"sat":25,"code":20}},{"cn0":215,"mesid":{"sat":24,"code":20}},{"cn0":194,"mesid":{"sat":11,"code":20}},{"cn0":175,"mesid":{"sat":31,"code":20}},{"cn0":206,"mesid":{"sat":12,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":169,"mesid":{"sat":33,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}}],"preamble":85,"sender":22963,"msg_type":97,"payload":"BQDRFQCwAgC3HwCgAAAAAAAAGQDWDADLHQDREgDLAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwLJGQHMDAG8HwGXEgHEHQHCAAAABQHBAAAAAAAAAAAAAAAACwPVCQOzFAOuBQPRCgPPAAAABAO1FQPLCQSsFATNAAAACwTIBQTDAAS8AAAABAStIwzIGgysIgyhGAy8GQyhDAy5Ewy5FgzBAAAADA3QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADA7BAAAAGQ6+Cw68GA7KAAAAHw6dIQ6WGRTJGBTXCxTCHxSvDBTOAAAAIRSpAAAA","crc":10447} -{"length":128,"preamble":85,"sender":22963,"msg_type":151,"payload":"AgAaHQUAKzUMAFEtFQB9GRkAbUYaAKEBHQChNx8AlQ4EAxUWBQMyIQkDXw4KA3EpCwOYJQwDqgMTAyIHFAMMMRUDlSUMDJQpEwwjIBQMDwIWDEMkGAyCIxkMnQ4aDGcVIgyOESMMIi0LDosyDA4PPBgObDYZDpcpHw5VESEOIA8=","crc":34187,"azel":[{"el":29,"az":26,"sid":{"sat":2,"code":0}},{"el":53,"az":43,"sid":{"sat":5,"code":0}},{"el":45,"az":81,"sid":{"sat":12,"code":0}},{"el":25,"az":125,"sid":{"sat":21,"code":0}},{"el":70,"az":109,"sid":{"sat":25,"code":0}},{"el":1,"az":161,"sid":{"sat":26,"code":0}},{"el":55,"az":161,"sid":{"sat":29,"code":0}},{"el":14,"az":149,"sid":{"sat":31,"code":0}},{"el":22,"az":21,"sid":{"sat":4,"code":3}},{"el":33,"az":50,"sid":{"sat":5,"code":3}},{"el":14,"az":95,"sid":{"sat":9,"code":3}},{"el":41,"az":113,"sid":{"sat":10,"code":3}},{"el":37,"az":152,"sid":{"sat":11,"code":3}},{"el":3,"az":170,"sid":{"sat":12,"code":3}},{"el":7,"az":34,"sid":{"sat":19,"code":3}},{"el":49,"az":12,"sid":{"sat":20,"code":3}},{"el":37,"az":149,"sid":{"sat":21,"code":3}},{"el":41,"az":148,"sid":{"sat":12,"code":12}},{"el":32,"az":35,"sid":{"sat":19,"code":12}},{"el":2,"az":15,"sid":{"sat":20,"code":12}},{"el":36,"az":67,"sid":{"sat":22,"code":12}},{"el":35,"az":130,"sid":{"sat":24,"code":12}},{"el":14,"az":157,"sid":{"sat":25,"code":12}},{"el":21,"az":103,"sid":{"sat":26,"code":12}},{"el":17,"az":142,"sid":{"sat":34,"code":12}},{"el":45,"az":34,"sid":{"sat":35,"code":12}},{"el":50,"az":139,"sid":{"sat":11,"code":14}},{"el":60,"az":15,"sid":{"sat":12,"code":14}},{"el":54,"az":108,"sid":{"sat":24,"code":14}},{"el":41,"az":151,"sid":{"sat":25,"code":14}},{"el":17,"az":85,"sid":{"sat":31,"code":14}},{"el":15,"az":32,"sid":{"sat":33,"code":14}}]} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MghMRy8QAAAAAAE=","wn":2098,"tow":271533900,"crc":21278} -{"length":16,"flags":17,"ns":899999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EUxHLxDkBwMZAxkP/uikNQ==","day":25,"tow":271533900,"year":2020,"crc":28429,"minutes":25,"month":3,"seconds":15} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.99290707820085,"preamble":85,"sender":22963,"msg_type":522,"payload":"TEcvEA9myO1l6kJAYAQ9G1aSXsDu1oQoL/4xwAECWwQPBg==","lat":37.83123562131015,"tow":271533900,"h_accuracy":513,"crc":55639,"lon":-122.28650551756573} -{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"TEcvEPz////+////FQAAAPEAywIPAg==","n":-4,"d":21,"tow":271533900,"h_accuracy":241,"crc":62775,"e":-2} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"TEcvEJsAhwBMAEgAcgAG","tow":271533900,"crc":11709,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"TEcvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271533900,"h_accuracy":0,"crc":55175,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"TEcvEP//","tow":271533900,"crc":29832} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":249,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":209,"i":110567796},"flags":15,"cn0":209,"P":1052017478,"D":{"f":99,"i":-194},"lock":15,"sid":{"sat":5,"code":0}},{"L":{"f":212,"i":121783472},"flags":15,"cn0":176,"P":1158731193,"D":{"f":136,"i":2170},"lock":15,"sid":{"sat":21,"code":0}},{"L":{"f":53,"i":123385421},"flags":15,"cn0":183,"P":1173972854,"D":{"f":31,"i":-2479},"lock":15,"sid":{"sat":2,"code":0}},{"L":{"f":139,"i":128745970},"flags":15,"cn0":160,"P":1224977138,"D":{"f":103,"i":-405},"lock":15,"sid":{"sat":31,"code":0}},{"L":{"f":1,"i":107844805},"flags":15,"cn0":214,"P":1026109127,"D":{"f":228,"i":-1137},"lock":15,"sid":{"sat":25,"code":0}},{"L":{"f":115,"i":114155179},"flags":15,"cn0":204,"P":1086150315,"D":{"f":188,"i":-2973},"lock":15,"sid":{"sat":12,"code":0}},{"L":{"f":78,"i":110732729},"flags":15,"cn0":209,"P":1053586806,"D":{"f":72,"i":1482},"lock":15,"sid":{"sat":29,"code":0}},{"L":{"f":124,"i":84034933},"flags":15,"cn0":204,"P":1026109184,"D":{"f":240,"i":-887},"lock":15,"sid":{"sat":25,"code":1}},{"L":{"f":129,"i":88952119},"flags":15,"cn0":187,"P":1086150237,"D":{"f":252,"i":-2316},"lock":15,"sid":{"sat":12,"code":1}},{"L":{"f":233,"i":100321537},"flags":15,"cn0":151,"P":1224977089,"D":{"f":19,"i":-315},"lock":15,"sid":{"sat":31,"code":1}},{"L":{"f":117,"i":86285245},"flags":15,"cn0":194,"P":1053586725,"D":{"f":184,"i":1153},"lock":15,"sid":{"sat":29,"code":1}},{"L":{"f":20,"i":86156754},"flags":15,"cn0":193,"P":1052017403,"D":{"f":58,"i":-153},"lock":15,"sid":{"sat":5,"code":1}},{"L":{"f":5,"i":112914414},"flags":15,"cn0":213,"P":1056519323,"D":{"f":75,"i":1152},"lock":15,"sid":{"sat":11,"code":3}},{"L":{"f":62,"i":123421262},"flags":15,"cn0":179,"P":1155641653,"D":{"f":159,"i":-4408},"lock":15,"sid":{"sat":9,"code":3}}],"payload":"sEcvEAAAAAAyCEBGg7Q+dCGXBtE+/2PRDw8FALnVEEWwREIH1HoIiLAPDxUAdmf5RU22Wgc1UfYftw8PAgDyqgNJ8oGsB4tr/megDw8fAMcuKT3FlG0GAY/75NYPDxkAq1a9QKvezQZzY/S8zA8PDAB2dcw+uaWZBk7KBUjRDw8dAAAvKT11RQIFfIn88MwPDxkBXVa9QDdNTQWB9Pb8uw8PDAHBqgNJAcn6BenF/hOXDw8fASV1zD69myQFdYEEuMIPDx0B+4K0PtKlIgUUZ/86wQ8PBQGbNPk+7u+6BgWABEvVDw8LAzWx4UROQlsHPsjun7MPDwkD","header":{"n_obs":64,"t":{"ns_residual":0,"wn":2098,"tow":271534000}},"crc":33625} -{"length":249,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":106,"i":109794530},"flags":15,"cn0":173,"P":1026606243,"D":{"f":87,"i":-1211},"lock":15,"sid":{"sat":20,"code":3}},{"L":{"f":49,"i":114816926},"flags":15,"cn0":209,"P":1073943718,"D":{"f":252,"i":2186},"lock":15,"sid":{"sat":5,"code":3}},{"L":{"f":85,"i":111663850},"flags":15,"cn0":207,"P":1047392383,"D":{"f":63,"i":-3053},"lock":15,"sid":{"sat":10,"code":3}},{"L":{"f":243,"i":120464667},"flags":15,"cn0":181,"P":1124796043,"D":{"f":143,"i":-1330},"lock":15,"sid":{"sat":4,"code":3}},{"L":{"f":109,"i":113387807},"flags":15,"cn0":202,"P":1059460655,"D":{"f":138,"i":1621},"lock":15,"sid":{"sat":21,"code":3}},{"L":{"f":188,"i":95994324},"flags":15,"cn0":172,"P":1155641737,"D":{"f":198,"i":-3427},"lock":15,"sid":{"sat":9,"code":4}},{"L":{"f":155,"i":85395781},"flags":15,"cn0":204,"P":1026606556,"D":{"f":72,"i":-943},"lock":15,"sid":{"sat":20,"code":4}},{"L":{"f":88,"i":87822332},"flags":15,"cn0":200,"P":1056519636,"D":{"f":31,"i":897},"lock":15,"sid":{"sat":11,"code":4}},{"L":{"f":129,"i":89302057},"flags":15,"cn0":195,"P":1073943960,"D":{"f":254,"i":1700},"lock":15,"sid":{"sat":5,"code":4}},{"L":{"f":246,"i":93694731},"flags":15,"cn0":173,"P":1124796228,"D":{"f":176,"i":-1034},"lock":15,"sid":{"sat":4,"code":4}},{"L":{"f":161,"i":121609535},"flags":15,"cn0":200,"P":1167691357,"D":{"f":29,"i":-1501},"lock":15,"sid":{"sat":35,"code":12}},{"L":{"f":18,"i":129271274},"flags":15,"cn0":173,"P":1241259508,"D":{"f":58,"i":-3007},"lock":15,"sid":{"sat":26,"code":12}},{"L":{"f":234,"i":132901624},"flags":15,"cn0":160,"P":1276117806,"D":{"f":96,"i":2250},"lock":15,"sid":{"sat":34,"code":12}},{"L":{"f":220,"i":125177087},"flags":15,"cn0":188,"P":1201947193,"D":{"f":254,"i":-1311},"lock":15,"sid":{"sat":24,"code":12}}],"payload":"sEcvEAAAAAAyCEGjxDA94lSLBmpF+1etDw8UA6YUA0Ce99cGMYoI/NEPDwUDf/BtPurapwZVE/Q/zw8PCgOLBgtDGyUuB/PO+o+1Dw8EAy8WJj8fKcIGbVUGisoPDxUDibHhRNTBuAW8nfLGrA8PCQTcxTA9RQkXBZtR/EjMDw8UBNQ1+T78DzwFWIEDH8gPDwsEmBUDQCmkUgWBpAb+ww8PBQREBwtDC6uVBfb2+7CtDw8EBF2OmUU/nT8HoSP6HcgPDyMM9B38SeqFtAcSQfQ6rQ8PGgwuAxBM+OrrB+rKCGCgDw8iDDlCpEf/DHYH3OH6/rwPDxgM","header":{"n_obs":65,"t":{"ns_residual":0,"wn":2098,"tow":271534000}},"crc":53857} -{"length":249,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":97,"i":134646081},"flags":15,"cn0":161,"P":1292868264,"D":{"f":53,"i":1317},"lock":15,"sid":{"sat":25,"code":12}},{"L":{"f":13,"i":121068147},"flags":15,"cn0":184,"P":1162493195,"D":{"f":61,"i":1612},"lock":15,"sid":{"sat":12,"code":12}},{"L":{"f":34,"i":124520743},"flags":15,"cn0":185,"P":1195644936,"D":{"f":157,"i":-299},"lock":15,"sid":{"sat":19,"code":12}},{"L":{"f":161,"i":124657307},"flags":15,"cn0":193,"P":1196956259,"D":{"f":23,"i":2383},"lock":15,"sid":{"sat":22,"code":12}},{"L":{"f":145,"i":93617579},"flags":15,"cn0":208,"P":1162493154,"D":{"f":13,"i":1246},"lock":15,"sid":{"sat":12,"code":13}},{"L":{"f":221,"i":116446432},"flags":15,"cn0":193,"P":1107950938,"D":{"f":38,"i":-1027},"lock":15,"sid":{"sat":12,"code":14}},{"L":{"f":122,"i":132453325},"flags":15,"cn0":190,"P":1260251414,"D":{"f":5,"i":1080},"lock":15,"sid":{"sat":25,"code":14}},{"L":{"f":110,"i":125401805},"flags":15,"cn0":187,"P":1193158455,"D":{"f":123,"i":1045},"lock":15,"sid":{"sat":11,"code":14}},{"L":{"f":0,"i":118448608},"flags":15,"cn0":202,"P":1127000898,"D":{"f":245,"i":-1751},"lock":15,"sid":{"sat":24,"code":14}},{"L":{"f":198,"i":143384430},"flags":15,"cn0":156,"P":1364257441,"D":{"f":225,"i":-3171},"lock":15,"sid":{"sat":31,"code":14}},{"L":{"f":10,"i":144566701},"flags":15,"cn0":150,"P":1375506415,"D":{"f":124,"i":-2138},"lock":15,"sid":{"sat":33,"code":14}},{"L":{"f":218,"i":101490208},"flags":15,"cn0":201,"P":1260251383,"D":{"f":25,"i":828},"lock":15,"sid":{"sat":25,"code":20}},{"L":{"f":146,"i":90759386},"flags":15,"cn0":215,"P":1127001447,"D":{"f":146,"i":-1342},"lock":15,"sid":{"sat":24,"code":20}},{"L":{"f":132,"i":96087075},"flags":15,"cn0":194,"P":1193158255,"D":{"f":204,"i":801},"lock":15,"sid":{"sat":11,"code":20}}],"payload":"sEcvEAAAAAAyCEKomg9NQYkGCGElBTWhDw8ZDAs9SkVzWjcHDUwGPbgPDwwMCBhERycJbAci1f6duQ8PEwxjGlhHmx5uB6FPCRfBDw8WDOI8SkWrfZQFkd4EDdAPDwwNWv0JQuDU8Abd/fsmwQ8PDA4W6R1LzRPlB3o4BAW+Dw8ZDjcnHkfNenkHbhUEe7sPDwsOQqssQ+BhDwcAKfn1yg8PGA6h6lBRbt+LCMad8+GcDw8fDu+P/FGt6Z0ICqb3fJYPDyEO9+gdSyCeDAbaPAMZyQ8PGRRnrSxD2uBoBZLC+pLXDw8YFG8mHkcjLLoFhCEDzMIPDwsU","header":{"n_obs":66,"t":{"ns_residual":0,"wn":2098,"tow":271534000}},"crc":28311} -{"length":62,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":237,"i":109866033},"flags":15,"cn0":174,"P":1364257556,"D":{"f":95,"i":-2429},"lock":15,"sid":{"sat":31,"code":20}},{"L":{"f":109,"i":89225219},"flags":15,"cn0":206,"P":1107950782,"D":{"f":191,"i":-787},"lock":15,"sid":{"sat":12,"code":20}},{"L":{"f":74,"i":110771958},"flags":15,"cn0":169,"P":1375506362,"D":{"f":141,"i":-1640},"lock":15,"sid":{"sat":33,"code":20}}],"payload":"sEcvEAAAAAAyCEMU61BRMWyMBu2D9l+uDw8fFL78CUIDeFEFbe38v84PDwwUuo/8UfY+mgZKmPmNqQ8PIRQ=","header":{"n_obs":67,"t":{"ns_residual":0,"wn":2098,"tow":271534000}},"crc":18208} -{"length":9,"l2ca_bias":0,"preamble":85,"l2p_bias":0,"sender":22963,"msg_type":117,"payload":"/wAAAAAAAAAA","l1ca_bias":0,"mask":255,"crc":49809,"l1p_bias":0} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgiwRy8QAAAAAAE=","wn":2098,"tow":271534000,"crc":62055} -{"length":16,"flags":17,"ns":999999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EbBHLxDkBwMZAxkP/smaOw==","day":25,"tow":271534000,"year":2020,"crc":2269,"minutes":25,"month":3,"seconds":15} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-18.000290034867643,"preamble":85,"sender":22963,"msg_type":522,"payload":"sEcvECm/mO1l6kJAOVt8G1aSXsBvRfoBEwAywAECWwQPBg==","lat":37.83123559912048,"tow":271534000,"h_accuracy":513,"crc":14448,"lon":-122.286505576555} -{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"sEcvEP3////0////6P////EAywIPAg==","n":-3,"d":-24,"tow":271534000,"h_accuracy":241,"crc":22500,"e":-12} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"sEcvEJsAhwBMAEgAcgAG","tow":271534000,"crc":15567,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"sEcvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271534000,"h_accuracy":0,"crc":38465,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"sEcvEP//","tow":271534000,"crc":61143} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":4,"flags":2147616000,"preamble":85,"sender":22963,"msg_type":65535,"payload":"AAUCgA==","crc":40942} -{"length":24,"z":3890655.0240602265,"preamble":85,"sender":22963,"msg_type":72,"payload":"UO0a3iqORMHK1UJhIkRQwc9nFIPvrk1B","crc":2168,"x":-2694229.735196747,"y":-4264073.519704292} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"bWFpbgAAAAAAAAAAAAAAAAAAAAAAAAx1AAA=","name":"main\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":47991,"stack_free":29964,"cpu":0} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"aWRsZQAAAAAAAAAAAAAAAAAAAABYAXwAAAA=","name":"idle\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":37847,"stack_free":124,"cpu":344} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"cnBtc2cAAAAAAAAAAAAAAAAAAAABAPwNAAA=","name":"rpmsg\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":54377,"stack_free":3580,"cpu":1} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"U0JQAAAAAAAAAAAAAAAAAAAAAAAAAPz/AAA=","name":"SBP\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":51784,"stack_free":65532,"cpu":0} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"TkFQAAAAAAAAAAAAAAAAAAAAAAAAAASAAAA=","name":"NAP\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":33651,"stack_free":32772,"cpu":0} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"bWFuYWdlIFBWAAAAAAAAAAAAAAAAACQEAAA=","name":"manage PV\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":29877,"stack_free":1060,"cpu":0} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"SU1VAAAAAAAAAAAAAAAAAAAAAAAAAPQHAAA=","name":"IMU\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":14252,"stack_free":2036,"cpu":0} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"SU1VIGF1eAAAAAAAAAAAAAAAAAAAAEwIAAA=","name":"IMU aux\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":18976,"stack_free":2124,"cpu":0} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"bmRiAAAAAAAAAAAAAAAAAAAAAAAAAFAMAAA=","name":"ndb\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":26120,"stack_free":3152,"cpu":0} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"TkFQIFRyYWNraW5nAAAAAAAAAAAjAdR3AAA=","name":"NAP Tracking\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":58848,"stack_free":30676,"cpu":291} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"ZGVjb2RlAAAAAAAAAAAAAAAAAAAIANQGAAA=","name":"decode\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":40082,"stack_free":1748,"cpu":8} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"bWFuYWdlIGFjcQAAAAAAAAAAAAC/AKR3AAA=","name":"manage acq\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":54737,"stack_free":30628,"cpu":191} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"c3lzdGVtIG1vbml0b3IAAAAAAAAAACwGAAA=","name":"system monitor\u0000\u0000\u0000\u0000\u0000\u0000","crc":58531,"stack_free":1580,"cpu":0} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"V2F0Y2hkb2cAAAAAAAAAAAAAAAAAAOQDAAA=","name":"Watchdog\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":44438,"stack_free":996,"cpu":0} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"c3RhcmxpbmcAAAAAAAAAAAAAAACXAPz/AAA=","name":"starling\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":46399,"stack_free":65532,"cpu":151} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"bWVfY2FsY19wdnQAAAAAAAAAAAAJAIwjAAA=","name":"me_calc_pvt\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":57561,"stack_free":9100,"cpu":9} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"UFBTAAAAAAAAAAAAAAAAAAAAAAAAAEgHAAA=","name":"PPS\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":38576,"stack_free":1864,"cpu":0} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"c3BlY3RydW0gYW5hbHl6ZXIAAAAAANQPAAA=","name":"spectrum analyzer\u0000\u0000\u0000","crc":50933,"stack_free":4052,"cpu":0} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MggUSC8QAAAAAAE=","wn":2098,"tow":271534100,"crc":44804} -{"length":16,"flags":17,"ns":99999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"ERRILxDkBwMZAxkQ/uD1BQ==","day":25,"tow":271534100,"year":2020,"crc":29817,"minutes":25,"month":3,"seconds":16} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-18.014385834061496,"preamble":85,"sender":22963,"msg_type":522,"payload":"FEgvEC5WaO1l6kJADcisG1aSXsDf0T7KrgMywAECWwQPBg==","lat":37.83123557657778,"tow":271534100,"h_accuracy":513,"crc":6502,"lon":-122.2865056216544} -{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"FEgvEAAAAAAFAAAAGwAAAPEAywIPAg==","n":0,"d":27,"tow":271534100,"h_accuracy":241,"crc":50031,"e":5} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"FEgvEJsAhwBMAEgAcgAG","tow":271534100,"crc":62742,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"FEgvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271534100,"h_accuracy":0,"crc":10190,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"FEgvEP//","tow":271534100,"crc":27815} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"Mgh4SC8QAAAAAAE=","wn":2098,"tow":271534200,"crc":57905} -{"length":16,"flags":17,"ns":199999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EXhILxDkBwMZAxkQ/sHrCw==","day":25,"tow":271534200,"year":2020,"crc":4055,"minutes":25,"month":3,"seconds":16} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-18.024862964142468,"preamble":85,"sender":22963,"msg_type":522,"payload":"eEgvEATAP+1l6kJAaGfmG1aSXsCf31FrXQYywAECWwQPBg==","lat":37.831235557678184,"tow":271534200,"h_accuracy":513,"crc":49970,"lon":-122.28650567531952} -{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"eEgvEAcAAAD+////9v////EAywIPAg==","n":7,"d":-10,"tow":271534200,"h_accuracy":241,"crc":16258,"e":-2} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"eEgvEJsAhwBMAEgAcgAG","tow":271534200,"crc":65276,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"eEgvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271534200,"h_accuracy":0,"crc":25051,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"eEgvEP//","tow":271534200,"crc":14428} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgjcSC8QAAAAAAE=","wn":2098,"tow":271534300,"crc":26256} -{"length":16,"flags":17,"ns":299999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EdxILxDkBwMZAxkQ/qLhEQ==","day":25,"tow":271534300,"year":2020,"crc":50152,"minutes":25,"month":3,"seconds":16} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-18.036257937859393,"preamble":85,"sender":22963,"msg_type":522,"payload":"3EgvEOOjAu1l6kJAq2QEHFaSXsCVU0EzSAkywAECWwQPBg==","lat":37.83123552922168,"tow":271534300,"h_accuracy":513,"crc":14337,"lon":-122.28650570324923} -{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"3EgvEPr///8DAAAACQAAAPEAywIPAg==","n":-6,"d":9,"tow":271534300,"h_accuracy":241,"crc":40015,"e":3} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"3EgvEJsAhwBMAEgAcgAG","tow":271534300,"crc":44104,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"3EgvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271534300,"h_accuracy":0,"crc":5794,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"3EgvEP//","tow":271534300,"crc":57301} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":237,"states":[{"cn0":209,"mesid":{"sat":5,"code":0}},{"cn0":175,"mesid":{"sat":21,"code":0}},{"cn0":182,"mesid":{"sat":2,"code":0}},{"cn0":160,"mesid":{"sat":31,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":213,"mesid":{"sat":25,"code":0}},{"cn0":203,"mesid":{"sat":12,"code":0}},{"cn0":208,"mesid":{"sat":29,"code":0}},{"cn0":202,"mesid":{"sat":18,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":200,"mesid":{"sat":131,"code":2}},{"cn0":204,"mesid":{"sat":25,"code":1}},{"cn0":187,"mesid":{"sat":12,"code":1}},{"cn0":151,"mesid":{"sat":31,"code":1}},{"cn0":196,"mesid":{"sat":18,"code":1}},{"cn0":194,"mesid":{"sat":29,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":193,"mesid":{"sat":5,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":212,"mesid":{"sat":100,"code":3}},{"cn0":178,"mesid":{"sat":98,"code":3}},{"cn0":173,"mesid":{"sat":102,"code":3}},{"cn0":208,"mesid":{"sat":101,"code":3}},{"cn0":206,"mesid":{"sat":93,"code":3}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":180,"mesid":{"sat":106,"code":3}},{"cn0":202,"mesid":{"sat":104,"code":3}},{"cn0":172,"mesid":{"sat":98,"code":4}},{"cn0":204,"mesid":{"sat":102,"code":4}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":200,"mesid":{"sat":100,"code":4}},{"cn0":194,"mesid":{"sat":101,"code":4}},{"cn0":188,"mesid":{"sat":104,"code":4}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":173,"mesid":{"sat":106,"code":4}},{"cn0":200,"mesid":{"sat":35,"code":12}},{"cn0":172,"mesid":{"sat":26,"code":12}},{"cn0":160,"mesid":{"sat":34,"code":12}},{"cn0":188,"mesid":{"sat":24,"code":12}},{"cn0":160,"mesid":{"sat":25,"code":12}},{"cn0":184,"mesid":{"sat":12,"code":12}},{"cn0":184,"mesid":{"sat":19,"code":12}},{"cn0":192,"mesid":{"sat":22,"code":12}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":208,"mesid":{"sat":12,"code":13}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":193,"mesid":{"sat":12,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":190,"mesid":{"sat":25,"code":14}},{"cn0":187,"mesid":{"sat":11,"code":14}},{"cn0":202,"mesid":{"sat":24,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":157,"mesid":{"sat":31,"code":14}},{"cn0":149,"mesid":{"sat":33,"code":14}},{"cn0":201,"mesid":{"sat":25,"code":20}},{"cn0":215,"mesid":{"sat":24,"code":20}},{"cn0":194,"mesid":{"sat":11,"code":20}},{"cn0":174,"mesid":{"sat":31,"code":20}},{"cn0":206,"mesid":{"sat":12,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":169,"mesid":{"sat":33,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}}],"preamble":85,"sender":22963,"msg_type":97,"payload":"BQDRFQCvAgC2HwCgAAAAAAAAGQDVDADLHQDQEgDKAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwLIGQHMDAG7HwGXEgHEHQHCAAAABQHBAAAAAAAAAAAAAAAAZAPUYgOyZgOtZQPQXQPOAAAAagO0aAPKYgSsZgTMAAAAZATIZQTCaAS8AAAAagStIwzIGgysIgygGAy8GQygDAy4Ewy4FgzAAAAADA3QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADA7BAAAAGQ6+Cw67GA7KAAAAHw6dIQ6VGRTJGBTXCxTCHxSuDBTOAAAAIRSpAAAA","crc":60593} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MghASS8QAAAAAAE=","wn":2098,"tow":271534400,"crc":30751} -{"length":16,"flags":17,"ns":399999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EUBJLxDkBwMZAxkQ/oPXFw==","day":25,"tow":271534400,"year":2020,"crc":24805,"minutes":25,"month":3,"seconds":16} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-18.042210788564386,"preamble":85,"sender":22963,"msg_type":522,"payload":"QEkvEMu5x+xl6kJAQk0aHFaSXsAjbIRTzgoywAECWwQPBg==","lat":37.83123550178751,"tow":271534400,"h_accuracy":513,"crc":56269,"lon":-122.28650572365316} -{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"QEkvEPH///8GAAAA9/////EAywIPAg==","n":-15,"d":-9,"tow":271534400,"h_accuracy":241,"crc":32531,"e":6} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"QEkvEJsAhwBMAEgAcgAG","tow":271534400,"crc":28998,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"QEkvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271534400,"h_accuracy":0,"crc":15717,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"QEkvEP//","tow":271534400,"crc":45251} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":9,"l2ca_bias":0,"preamble":85,"l2p_bias":0,"sender":22963,"msg_type":117,"payload":"/wAAAAAAAAAA","l1ca_bias":0,"mask":255,"crc":49809,"l1p_bias":0} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgikSS8QAAAAAAE=","wn":2098,"tow":271534500,"crc":41831} -{"length":16,"flags":17,"ns":499999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EaRJLxDkBwMZAxkQ/mTNHQ==","day":25,"tow":271534500,"year":2020,"crc":28683,"minutes":25,"month":3,"seconds":16} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-18.04795990818738,"preamble":85,"sender":22963,"msg_type":522,"payload":"pEkvEBehuOxl6kJAxcxCHFaSXsAYL70ZRwwywAECWwQPBg==","lat":37.83123549475766,"tow":271534500,"h_accuracy":513,"crc":17821,"lon":-122.28650576136995} -{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"pEkvEAUAAAAAAAAA7P////EAywIPAg==","n":5,"d":-20,"tow":271534500,"h_accuracy":241,"crc":26617,"e":0} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"pEkvEJsAhwBMAEgAcgAG","tow":271534500,"crc":2555,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"pEkvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271534500,"h_accuracy":0,"crc":40774,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"pEkvEP//","tow":271534500,"crc":15706} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MggISi8QAAAAAAE=","wn":2098,"tow":271534600,"crc":50764} -{"length":16,"flags":17,"ns":599999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EQhKLxDkBwMZAxkQ/kXDIw==","day":25,"tow":271534600,"year":2020,"crc":52541,"minutes":25,"month":3,"seconds":16} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-18.053781505367844,"preamble":85,"sender":22963,"msg_type":522,"payload":"CEovEGJUyexl6kJAqXCKHFaSXsA+r+6fxA0ywAECWwQPBg==","lat":37.83123550253437,"tow":271534600,"h_accuracy":513,"crc":34480,"lon":-122.28650582809009} -{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"CEovEBEAAADq////AQAAAPEAywIPAg==","n":17,"d":1,"tow":271534600,"h_accuracy":241,"crc":54779,"e":-22} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"CEovEJsAhwBMAEgAcgAG","tow":271534600,"crc":61865,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"CEovEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271534600,"h_accuracy":0,"crc":55463,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"CEovEP//","tow":271534600,"crc":14659} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MghsSi8QAAAAAAE=","wn":2098,"tow":271534700,"crc":41606} -{"length":16,"flags":17,"ns":699999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EWxKLxDkBwMZAxkQ/ia5KQ==","day":25,"tow":271534700,"year":2020,"crc":25969,"minutes":25,"month":3,"seconds":16} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-18.06075080805496,"preamble":85,"sender":22963,"msg_type":522,"payload":"bEovEPVQpuxl6kJAaUHFHFaSXsA3zW1djQ8ywAECWwQPBg==","lat":37.83123548622999,"tow":271534700,"h_accuracy":513,"crc":40244,"lon":-122.28650588286622} -{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"bEovEPT/////////GwAAAPEAywIPAg==","n":-12,"d":27,"tow":271534700,"h_accuracy":241,"crc":20827,"e":-1} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"bEovEJsAhwBMAEgAcgAG","tow":271534700,"crc":56582,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"bEovEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271534700,"h_accuracy":0,"crc":49169,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"bEovEP//","tow":271534700,"crc":24826} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"message_type":2,"length":34,"data":[151,255,0,7,255,0,31,254,255,247,255,127,255,255,127,247,255,255,208,1,229,231,85,238,110,229,112],"preamble":85,"sender":22963,"msg_type":30583,"payload":"gwKNSS8QApf/AAf/AB/+//f/f///f/f//9AB5edV7m7lcA==","tow":271534477,"crc":54460,"sid":{"sat":131,"code":2}} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgjQSi8QAAAAAAE=","wn":2098,"tow":271534800,"crc":23590} -{"length":16,"flags":17,"ns":799999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EdBKLxDkBwMZAxkQ/gevLw==","day":25,"tow":271534800,"year":2020,"crc":9967,"minutes":25,"month":3,"seconds":16} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-18.06753541249976,"preamble":85,"sender":22963,"msg_type":522,"payload":"0EovEAy6iOxl6kJAxq3THFaSXsAiAjQAShEywAECWwQPBg==","lat":37.83123547245131,"tow":271534800,"h_accuracy":513,"crc":12905,"lon":-122.28650589629896} -{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"0EovEP////8HAAAAEgAAAPEAywIPAg==","n":-1,"d":18,"tow":271534800,"h_accuracy":241,"crc":19521,"e":7} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"0EovEJsAhwBMAEgAcgAG","tow":271534800,"crc":59005,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"0EovEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271534800,"h_accuracy":0,"crc":21645,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"0EovEP//","tow":271534800,"crc":37045} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":237,"states":[{"cn0":208,"mesid":{"sat":5,"code":0}},{"cn0":175,"mesid":{"sat":21,"code":0}},{"cn0":182,"mesid":{"sat":2,"code":0}},{"cn0":159,"mesid":{"sat":31,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":213,"mesid":{"sat":25,"code":0}},{"cn0":203,"mesid":{"sat":12,"code":0}},{"cn0":208,"mesid":{"sat":29,"code":0}},{"cn0":202,"mesid":{"sat":18,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":200,"mesid":{"sat":131,"code":2}},{"cn0":203,"mesid":{"sat":25,"code":1}},{"cn0":187,"mesid":{"sat":12,"code":1}},{"cn0":151,"mesid":{"sat":31,"code":1}},{"cn0":196,"mesid":{"sat":18,"code":1}},{"cn0":193,"mesid":{"sat":29,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":193,"mesid":{"sat":5,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":211,"mesid":{"sat":11,"code":3}},{"cn0":177,"mesid":{"sat":9,"code":3}},{"cn0":172,"mesid":{"sat":20,"code":3}},{"cn0":207,"mesid":{"sat":5,"code":3}},{"cn0":205,"mesid":{"sat":10,"code":3}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":179,"mesid":{"sat":4,"code":3}},{"cn0":201,"mesid":{"sat":21,"code":3}},{"cn0":172,"mesid":{"sat":9,"code":4}},{"cn0":204,"mesid":{"sat":20,"code":4}},{"cn0":96,"mesid":{"sat":10,"code":4}},{"cn0":200,"mesid":{"sat":11,"code":4}},{"cn0":194,"mesid":{"sat":5,"code":4}},{"cn0":188,"mesid":{"sat":0,"code":4}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":172,"mesid":{"sat":4,"code":4}},{"cn0":200,"mesid":{"sat":35,"code":12}},{"cn0":171,"mesid":{"sat":26,"code":12}},{"cn0":159,"mesid":{"sat":34,"code":12}},{"cn0":188,"mesid":{"sat":24,"code":12}},{"cn0":160,"mesid":{"sat":25,"code":12}},{"cn0":183,"mesid":{"sat":12,"code":12}},{"cn0":184,"mesid":{"sat":19,"code":12}},{"cn0":192,"mesid":{"sat":22,"code":12}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":208,"mesid":{"sat":12,"code":13}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":193,"mesid":{"sat":12,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":189,"mesid":{"sat":25,"code":14}},{"cn0":187,"mesid":{"sat":11,"code":14}},{"cn0":201,"mesid":{"sat":24,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":156,"mesid":{"sat":31,"code":14}},{"cn0":150,"mesid":{"sat":33,"code":14}},{"cn0":200,"mesid":{"sat":25,"code":20}},{"cn0":215,"mesid":{"sat":24,"code":20}},{"cn0":193,"mesid":{"sat":11,"code":20}},{"cn0":174,"mesid":{"sat":31,"code":20}},{"cn0":206,"mesid":{"sat":12,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":169,"mesid":{"sat":33,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}}],"preamble":85,"sender":22963,"msg_type":97,"payload":"BQDQFQCvAgC2HwCfAAAAAAAAGQDVDADLHQDQEgDKAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwLIGQHLDAG7HwGXEgHEHQHBAAAABQHBAAAAAAAAAAAAAAAACwPTCQOxFAOsBQPPCgPNAAAABAOzFQPJCQSsFATMCgRgCwTIBQTCAAS8AAAABASsIwzIGgyrIgyfGAy8GQygDAy3Ewy4FgzAAAAADA3QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADA7BAAAAGQ69Cw67GA7JAAAAHw6cIQ6WGRTIGBTXCxTBHxSuDBTOAAAAIRSpAAAA","crc":3081} -{"length":128,"preamble":85,"sender":22963,"msg_type":151,"payload":"AgAaHQUAKzUMAFEtFQB9GRkAbUYaAKEBHQChNx8AlQ4EAxUWBQMyIQkDXw4KA3EpCwOYJQwDqgMTAyIHFAMMMRUDlSUMDJQpEwwjIBQMDwIWDEMkGAyCIxkMnQ4aDGcVIgyOESMMIi0LDosyDA4PPBgObDYZDpcpHw5VESEOIA8=","crc":34187,"azel":[{"el":29,"az":26,"sid":{"sat":2,"code":0}},{"el":53,"az":43,"sid":{"sat":5,"code":0}},{"el":45,"az":81,"sid":{"sat":12,"code":0}},{"el":25,"az":125,"sid":{"sat":21,"code":0}},{"el":70,"az":109,"sid":{"sat":25,"code":0}},{"el":1,"az":161,"sid":{"sat":26,"code":0}},{"el":55,"az":161,"sid":{"sat":29,"code":0}},{"el":14,"az":149,"sid":{"sat":31,"code":0}},{"el":22,"az":21,"sid":{"sat":4,"code":3}},{"el":33,"az":50,"sid":{"sat":5,"code":3}},{"el":14,"az":95,"sid":{"sat":9,"code":3}},{"el":41,"az":113,"sid":{"sat":10,"code":3}},{"el":37,"az":152,"sid":{"sat":11,"code":3}},{"el":3,"az":170,"sid":{"sat":12,"code":3}},{"el":7,"az":34,"sid":{"sat":19,"code":3}},{"el":49,"az":12,"sid":{"sat":20,"code":3}},{"el":37,"az":149,"sid":{"sat":21,"code":3}},{"el":41,"az":148,"sid":{"sat":12,"code":12}},{"el":32,"az":35,"sid":{"sat":19,"code":12}},{"el":2,"az":15,"sid":{"sat":20,"code":12}},{"el":36,"az":67,"sid":{"sat":22,"code":12}},{"el":35,"az":130,"sid":{"sat":24,"code":12}},{"el":14,"az":157,"sid":{"sat":25,"code":12}},{"el":21,"az":103,"sid":{"sat":26,"code":12}},{"el":17,"az":142,"sid":{"sat":34,"code":12}},{"el":45,"az":34,"sid":{"sat":35,"code":12}},{"el":50,"az":139,"sid":{"sat":11,"code":14}},{"el":60,"az":15,"sid":{"sat":12,"code":14}},{"el":54,"az":108,"sid":{"sat":24,"code":14}},{"el":41,"az":151,"sid":{"sat":25,"code":14}},{"el":17,"az":85,"sid":{"sat":31,"code":14}},{"el":15,"az":32,"sid":{"sat":33,"code":14}}]} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"Mgg0Sy8QAAAAAAE=","wn":2098,"tow":271534900,"crc":49293} -{"length":16,"flags":17,"ns":899999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"ETRLLxDkBwMZAxkQ/uikNQ==","day":25,"tow":271534900,"year":2020,"crc":50866,"minutes":25,"month":3,"seconds":16} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-18.069894517068292,"preamble":85,"sender":22963,"msg_type":522,"payload":"NEsvEHG3hexl6kJAE2jZHFaSXsBg+mib5BEywAECWwQPBg==","lat":37.83123547104959,"tow":271534900,"h_accuracy":513,"crc":13480,"lon":-122.28650590163333} -{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"NEsvEAkAAAALAAAA+f////EAywIPAg==","n":9,"d":-7,"tow":271534900,"h_accuracy":241,"crc":59905,"e":11} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"NEsvEJsAhwBMAEgAcgAG","tow":271534900,"crc":58785,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"NEsvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271534900,"h_accuracy":0,"crc":9048,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"NEsvEP//","tow":271534900,"crc":46973} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":249,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":193,"i":110567992},"flags":15,"cn0":209,"P":1052019346,"D":{"f":29,"i":-196},"lock":15,"sid":{"sat":5,"code":0}},{"L":{"f":234,"i":121781303},"flags":15,"cn0":175,"P":1158710563,"D":{"f":222,"i":2169},"lock":15,"sid":{"sat":21,"code":0}},{"L":{"f":132,"i":123387900},"flags":15,"cn0":182,"P":1173996437,"D":{"f":50,"i":-2480},"lock":15,"sid":{"sat":2,"code":0}},{"L":{"f":219,"i":128746375},"flags":15,"cn0":160,"P":1224980999,"D":{"f":99,"i":-406},"lock":15,"sid":{"sat":31,"code":0}},{"L":{"f":94,"i":107845943},"flags":15,"cn0":213,"P":1026119961,"D":{"f":209,"i":-1139},"lock":15,"sid":{"sat":25,"code":0}},{"L":{"f":245,"i":114158153},"flags":15,"cn0":203,"P":1086178620,"D":{"f":200,"i":-2975},"lock":15,"sid":{"sat":12,"code":0}},{"L":{"f":174,"i":110731248},"flags":15,"cn0":208,"P":1053572720,"D":{"f":27,"i":1480},"lock":15,"sid":{"sat":29,"code":0}},{"L":{"f":133,"i":84035820},"flags":15,"cn0":204,"P":1026120013,"D":{"f":247,"i":-888},"lock":15,"sid":{"sat":25,"code":1}},{"L":{"f":77,"i":88954437},"flags":15,"cn0":187,"P":1086178551,"D":{"f":245,"i":-2318},"lock":15,"sid":{"sat":12,"code":1}},{"L":{"f":182,"i":100321853},"flags":15,"cn0":150,"P":1224980938,"D":{"f":248,"i":-318},"lock":15,"sid":{"sat":31,"code":1}},{"L":{"f":185,"i":86284091},"flags":15,"cn0":193,"P":1053572640,"D":{"f":36,"i":1154},"lock":15,"sid":{"sat":29,"code":1}},{"L":{"f":194,"i":86156906},"flags":15,"cn0":193,"P":1052019271,"D":{"f":171,"i":-153},"lock":15,"sid":{"sat":5,"code":1}},{"L":{"f":229,"i":112913263},"flags":15,"cn0":211,"P":1056508578,"D":{"f":91,"i":1150},"lock":15,"sid":{"sat":11,"code":3}},{"L":{"f":116,"i":123425670},"flags":15,"cn0":178,"P":1155682949,"D":{"f":135,"i":-4408},"lock":15,"sid":{"sat":9,"code":3}}],"payload":"mEsvEAAAAAAyCECSirQ+OCKXBsE8/x3RDw8FACOFEEU3PEIH6nkI3q8PDxUAlcP5Rfy/WgeEUPYytg8PAgAHugNJh4OsB9tq/mOgDw8fABlZKT03mW0GXo370dUPDxkAPMW9QEnqzQb1YfTIyw8PDABwPsw+8J+ZBq7IBRvQDw8dAE1ZKT3sSAIFhYj898wPDxkB98S9QEVWTQVN8vb1uw8PDAHKuQNJPcr6BbbC/viWDw8fASA+zD47lyQFuYIEJMEPDx0BR4q0PmqmIgXCZ/+rwQ8PBQGiCvk+b+u6BuV+BFvTDw8LA4VS4kSGU1sHdMjuh7IPDwkD","header":{"n_obs":64,"t":{"ns_residual":0,"wn":2098,"tow":271535000}},"crc":3439} -{"length":249,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":136,"i":109795743},"flags":15,"cn0":172,"P":1026617598,"D":{"f":176,"i":-1214},"lock":15,"sid":{"sat":20,"code":3}},{"L":{"f":166,"i":114814740},"flags":15,"cn0":207,"P":1073923262,"D":{"f":57,"i":2185},"lock":15,"sid":{"sat":5,"code":3}},{"L":{"f":42,"i":111666905},"flags":15,"cn0":206,"P":1047421023,"D":{"f":193,"i":-3055},"lock":15,"sid":{"sat":10,"code":3}},{"L":{"f":2,"i":120465999},"flags":15,"cn0":179,"P":1124808427,"D":{"f":16,"i":-1332},"lock":15,"sid":{"sat":4,"code":3}},{"L":{"f":246,"i":113386187},"flags":15,"cn0":201,"P":1059445516,"D":{"f":242,"i":1618},"lock":15,"sid":{"sat":21,"code":3}},{"L":{"f":86,"i":95997753},"flags":15,"cn0":172,"P":1155683020,"D":{"f":95,"i":-3428},"lock":15,"sid":{"sat":9,"code":4}},{"L":{"f":32,"i":85396725},"flags":15,"cn0":204,"P":1026617894,"D":{"f":90,"i":-943},"lock":15,"sid":{"sat":20,"code":4}},{"L":{"f":208,"i":87821437},"flags":15,"cn0":200,"P":1056508887,"D":{"f":117,"i":893},"lock":15,"sid":{"sat":11,"code":4}},{"L":{"f":164,"i":89300357},"flags":15,"cn0":194,"P":1073923520,"D":{"f":75,"i":1699},"lock":15,"sid":{"sat":5,"code":4}},{"L":{"f":57,"i":93695767},"flags":15,"cn0":173,"P":1124808646,"D":{"f":185,"i":-1037},"lock":15,"sid":{"sat":4,"code":4}},{"L":{"f":248,"i":121611036},"flags":15,"cn0":200,"P":1167705782,"D":{"f":139,"i":-1501},"lock":15,"sid":{"sat":35,"code":12}},{"L":{"f":3,"i":129274283},"flags":15,"cn0":172,"P":1241288392,"D":{"f":98,"i":-3009},"lock":15,"sid":{"sat":26,"code":12}},{"L":{"f":155,"i":132899376},"flags":15,"cn0":160,"P":1276096193,"D":{"f":115,"i":2248},"lock":15,"sid":{"sat":34,"code":12}},{"L":{"f":181,"i":125178398},"flags":15,"cn0":188,"P":1201959784,"D":{"f":83,"i":-1311},"lock":15,"sid":{"sat":24,"code":12}}],"payload":"mEsvEAAAAAAyCEH+8DA9n1mLBohC+7CsDw8UA77EAkAU79cGpokIOc8PDwUDX2BuPtnmpwYqEfTBzg8PCgPrNgtDTyouBwLM+hCzDw8EAwzbJT/LIsIG9lIG8skPDxUDzFLiRDnPuAVWnPJfrA8PCQQm8jA99QwXBSBR/FrMDw8UBNcL+T59DDwF0H0DdcgPDwsEwMUCQIWdUgWkowZLwg8PBQTGNwtDF6+VBTnz+7mtDw8EBLbGmUUcoz8H+CP6i8gPDyMMyI78SauRtAcDP/RirA8PGgzBrg9MMOLrB5vICHOgDw8iDGhzpEceEnYHteH6U7wPDxgM","header":{"n_obs":65,"t":{"ns_residual":0,"wn":2098,"tow":271535000}},"crc":50129} -{"length":249,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":65,"i":134644765},"flags":15,"cn0":160,"P":1292855625,"D":{"f":206,"i":1317},"lock":15,"sid":{"sat":25,"code":12}},{"L":{"f":177,"i":121066536},"flags":15,"cn0":184,"P":1162477730,"D":{"f":179,"i":1609},"lock":15,"sid":{"sat":12,"code":12}},{"L":{"f":168,"i":124521042},"flags":15,"cn0":184,"P":1195647813,"D":{"f":233,"i":-300},"lock":15,"sid":{"sat":19,"code":12}},{"L":{"f":247,"i":124654925},"flags":15,"cn0":192,"P":1196933387,"D":{"f":120,"i":2381},"lock":15,"sid":{"sat":22,"code":12}},{"L":{"f":87,"i":93616334},"flags":15,"cn0":208,"P":1162477690,"D":{"f":47,"i":1245},"lock":15,"sid":{"sat":12,"code":13}},{"L":{"f":108,"i":116447461},"flags":15,"cn0":193,"P":1107960726,"D":{"f":226,"i":-1029},"lock":15,"sid":{"sat":12,"code":14}},{"L":{"f":102,"i":132452245},"flags":15,"cn0":190,"P":1260241138,"D":{"f":43,"i":1079},"lock":15,"sid":{"sat":25,"code":14}},{"L":{"f":221,"i":125400760},"flags":15,"cn0":187,"P":1193148509,"D":{"f":104,"i":1044},"lock":15,"sid":{"sat":11,"code":14}},{"L":{"f":127,"i":118450359},"flags":15,"cn0":201,"P":1127017564,"D":{"f":65,"i":-1752},"lock":15,"sid":{"sat":24,"code":14}},{"L":{"f":196,"i":143387603},"flags":15,"cn0":156,"P":1364287654,"D":{"f":22,"i":-3172},"lock":15,"sid":{"sat":31,"code":14}},{"L":{"f":208,"i":144568840},"flags":15,"cn0":150,"P":1375526755,"D":{"f":217,"i":-2144},"lock":15,"sid":{"sat":33,"code":14}},{"L":{"f":64,"i":101489381},"flags":15,"cn0":200,"P":1260241110,"D":{"f":51,"i":827},"lock":15,"sid":{"sat":25,"code":20}},{"L":{"f":160,"i":90760728},"flags":15,"cn0":215,"P":1127018114,"D":{"f":14,"i":-1342},"lock":15,"sid":{"sat":24,"code":20}},{"L":{"f":35,"i":96086275},"flags":15,"cn0":193,"P":1193148317,"D":{"f":218,"i":799},"lock":15,"sid":{"sat":11,"code":20}}],"payload":"mEsvEAAAAAAyCEJJaQ9NHYQGCEElBc6gDw8ZDKIASkUoVDcHsUkGs7gPDwwMRSNER1IKbAeo1P7puA8PEwwLwVdHTRVuB/dNCXjADw8WDHoASkXOeJQFV90EL9APDwwNliMKQuXY8AZs+/viwQ8PDA7ywB1LlQ/lB2Y3BCu+Dw8ZDl0AHke4dnkH3RQEaLsPDwsOXOwsQ7doDwd/KPlByQ8PGA6mYFFR0+uLCMSc8xacDw8fDmPf/FEI8p0I0KD32ZYPDyEO1sAdS+WaDAZAOwMzyA8PGRSC7ixDGOZoBaDC+g7XDw8YFJ3/HUcDKboFIx8D2sEPDwsU","header":{"n_obs":66,"t":{"ns_residual":0,"wn":2098,"tow":271535000}},"crc":922} -{"length":62,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":43,"i":109868465},"flags":15,"cn0":174,"P":1364287749,"D":{"f":70,"i":-2432},"lock":15,"sid":{"sat":31,"code":20}},{"L":{"f":138,"i":89226007},"flags":15,"cn0":206,"P":1107960571,"D":{"f":19,"i":-789},"lock":15,"sid":{"sat":12,"code":20}},{"L":{"f":226,"i":110773597},"flags":15,"cn0":169,"P":1375526728,"D":{"f":138,"i":-1639},"lock":15,"sid":{"sat":33,"code":20}}],"payload":"mEsvEAAAAAAyCEMFYVFRsXWMBiuA9kauDw8fFPsiCkIXe1EFiuv8E84PDwwUSN/8UV1FmgbimfmKqQ8PIRQ=","header":{"n_obs":67,"t":{"ns_residual":0,"wn":2098,"tow":271535000}},"crc":22115} -{"length":9,"l2ca_bias":0,"preamble":85,"l2p_bias":0,"sender":22963,"msg_type":117,"payload":"/wAAAAAAAAAA","l1ca_bias":0,"mask":255,"crc":49809,"l1p_bias":0} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgiYSy8QAAAAAAE=","wn":2098,"tow":271535000,"crc":28115} -{"length":16,"flags":17,"ns":999999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EZhLLxDkBwMZAxkQ/smaOw==","day":25,"tow":271535000,"year":2020,"crc":50657,"minutes":25,"month":3,"seconds":16} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-18.075031865333706,"preamble":85,"sender":22963,"msg_type":522,"payload":"mEsvEJjlZuxl6kJAd27tHFaSXsAixM9JNRMywAECWwQPBg==","lat":37.83123545669804,"tow":271535000,"h_accuracy":513,"crc":9117,"lon":-122.28650592028303} -{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"mEsvEPT///8AAAAA9f////EAywIPAg==","n":-12,"d":-11,"tow":271535000,"h_accuracy":241,"crc":40335,"e":0} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"mEsvEJsAhwBMAEgAcgAG","tow":271535000,"crc":36944,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"mEsvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271535000,"h_accuracy":0,"crc":2690,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"mEsvEP//","tow":271535000,"crc":23990} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":4,"flags":2147616000,"preamble":85,"sender":22963,"msg_type":65535,"payload":"AAUCgA==","crc":40942} -{"length":24,"z":3890655.0240602265,"preamble":85,"sender":22963,"msg_type":72,"payload":"UO0a3iqORMHK1UJhIkRQwc9nFIPvrk1B","crc":2168,"x":-2694229.735196747,"y":-4264073.519704292} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"Mgj8Sy8QAAAAAAE=","wn":2098,"tow":271535100,"crc":2329} -{"length":16,"flags":17,"ns":99999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EfxLLxDkBwMZAxkR/uD1BQ==","day":25,"tow":271535100,"year":2020,"crc":38849,"minutes":25,"month":3,"seconds":17} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-18.080454974249047,"preamble":85,"sender":22963,"msg_type":522,"payload":"/EsvEKzRVOxl6kJAj5L9HFaSXsA/M3uymBQywAECWwQPBg==","lat":37.8312354482799,"tow":271535100,"h_accuracy":513,"crc":54077,"lon":-122.2865059353155} -{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"/EsvEPz///8AAAAA/f////EAywIPAg==","n":-4,"d":-3,"tow":271535100,"h_accuracy":241,"crc":15901,"e":0} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"/EsvEJsAhwBMAEgAcgAG","tow":271535100,"crc":48383,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"/EsvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271535100,"h_accuracy":0,"crc":4660,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"/EsvEP//","tow":271535100,"crc":1039} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MghgTC8QAAAAAAE=","wn":2098,"tow":271535200,"crc":38749} -{"length":16,"flags":17,"ns":199999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EWBMLxDkBwMZAxkR/sHrCw==","day":25,"tow":271535200,"year":2020,"crc":12780,"minutes":25,"month":3,"seconds":17} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-18.084029885547135,"preamble":85,"sender":22963,"msg_type":522,"payload":"YEwvENZqaOxl6kJA6qcUHVaSXsDDT4r7ghUywAECWwQPBg==","lat":37.831235457406066,"tow":271535200,"h_accuracy":513,"crc":1580,"lon":-122.28650595681361} -{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"YEwvEAQAAAD9////BAAAAPEAywIPAg==","n":4,"d":4,"tow":271535200,"h_accuracy":241,"crc":28209,"e":-3} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"YEwvEJsAhwBMAEgAcgAG","tow":271535200,"crc":27286,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"YEwvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271535200,"h_accuracy":0,"crc":58757,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"YEwvEP//","tow":271535200,"crc":42652} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgjETC8QAAAAAAE=","wn":2098,"tow":271535300,"crc":5116} -{"length":16,"flags":17,"ns":299999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EcRMLxDkBwMZAxkR/qLhEQ==","day":25,"tow":271535300,"year":2020,"crc":64979,"minutes":25,"month":3,"seconds":17} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-18.086518493122483,"preamble":85,"sender":22963,"msg_type":522,"payload":"xEwvEKyYk+xl6kJAxEkkHVaSXsDUdXITJhYywAECWwQPBg==","lat":37.83123547751288,"tow":271535300,"h_accuracy":513,"crc":16107,"lon":-122.28650597137226} -{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"xEwvEAoAAAD1////EAAAAPEAywIPAg==","n":10,"d":16,"tow":271535300,"h_accuracy":241,"crc":14859,"e":-11} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"xEwvEJsAhwBMAEgAcgAG","tow":271535300,"crc":14370,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"xEwvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271535300,"h_accuracy":0,"crc":37628,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"xEwvEP//","tow":271535300,"crc":16661} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":237,"states":[{"cn0":210,"mesid":{"sat":5,"code":0}},{"cn0":176,"mesid":{"sat":21,"code":0}},{"cn0":184,"mesid":{"sat":2,"code":0}},{"cn0":161,"mesid":{"sat":31,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":214,"mesid":{"sat":25,"code":0}},{"cn0":204,"mesid":{"sat":12,"code":0}},{"cn0":209,"mesid":{"sat":29,"code":0}},{"cn0":202,"mesid":{"sat":18,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":201,"mesid":{"sat":131,"code":2}},{"cn0":204,"mesid":{"sat":25,"code":1}},{"cn0":188,"mesid":{"sat":12,"code":1}},{"cn0":151,"mesid":{"sat":31,"code":1}},{"cn0":196,"mesid":{"sat":18,"code":1}},{"cn0":194,"mesid":{"sat":29,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":194,"mesid":{"sat":5,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":212,"mesid":{"sat":100,"code":3}},{"cn0":178,"mesid":{"sat":98,"code":3}},{"cn0":173,"mesid":{"sat":102,"code":3}},{"cn0":208,"mesid":{"sat":101,"code":3}},{"cn0":207,"mesid":{"sat":93,"code":3}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":180,"mesid":{"sat":106,"code":3}},{"cn0":202,"mesid":{"sat":104,"code":3}},{"cn0":172,"mesid":{"sat":98,"code":4}},{"cn0":204,"mesid":{"sat":102,"code":4}},{"cn0":68,"mesid":{"sat":93,"code":4}},{"cn0":200,"mesid":{"sat":100,"code":4}},{"cn0":194,"mesid":{"sat":101,"code":4}},{"cn0":188,"mesid":{"sat":104,"code":4}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":173,"mesid":{"sat":106,"code":4}},{"cn0":200,"mesid":{"sat":35,"code":12}},{"cn0":172,"mesid":{"sat":26,"code":12}},{"cn0":160,"mesid":{"sat":34,"code":12}},{"cn0":188,"mesid":{"sat":24,"code":12}},{"cn0":160,"mesid":{"sat":25,"code":12}},{"cn0":184,"mesid":{"sat":12,"code":12}},{"cn0":184,"mesid":{"sat":19,"code":12}},{"cn0":192,"mesid":{"sat":22,"code":12}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":209,"mesid":{"sat":12,"code":13}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":193,"mesid":{"sat":12,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":190,"mesid":{"sat":25,"code":14}},{"cn0":187,"mesid":{"sat":11,"code":14}},{"cn0":202,"mesid":{"sat":24,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":156,"mesid":{"sat":31,"code":14}},{"cn0":150,"mesid":{"sat":33,"code":14}},{"cn0":201,"mesid":{"sat":25,"code":20}},{"cn0":215,"mesid":{"sat":24,"code":20}},{"cn0":193,"mesid":{"sat":11,"code":20}},{"cn0":174,"mesid":{"sat":31,"code":20}},{"cn0":206,"mesid":{"sat":12,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":170,"mesid":{"sat":33,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}}],"preamble":85,"sender":22963,"msg_type":97,"payload":"BQDSFQCwAgC4HwChAAAAAAAAGQDWDADMHQDREgDKAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwLJGQHMDAG8HwGXEgHEHQHCAAAABQHCAAAAAAAAAAAAAAAAZAPUYgOyZgOtZQPQXQPPAAAAagO0aAPKYgSsZgTMXQREZATIZQTCaAS8AAAAagStIwzIGgysIgygGAy8GQygDAy4Ewy4FgzAAAAADA3RAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADA7BAAAAGQ6+Cw67GA7KAAAAHw6cIQ6WGRTJGBTXCxTBHxSuDBTOAAAAIRSqAAAA","crc":14543} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MggoTS8QAAAAAAE=","wn":2098,"tow":271535400,"crc":42664} -{"length":16,"flags":17,"ns":399999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EShNLxDkBwMZAxkR/oPXFw==","day":25,"tow":271535400,"year":2020,"crc":42825,"minutes":25,"month":3,"seconds":17} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-18.090332640796753,"preamble":85,"sender":22963,"msg_type":522,"payload":"KE0vEHPssOxl6kJALdgxHVaSXsC++zkKIBcywAECWwQPBg==","lat":37.831235491169444,"tow":271535400,"h_accuracy":513,"crc":58164,"lon":-122.28650598399754} -{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"KE0vEP3//////////v////EAywIPAg==","n":-3,"d":-2,"tow":271535400,"h_accuracy":241,"crc":64462,"e":-1} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"KE0vEJsAhwBMAEgAcgAG","tow":271535400,"crc":7355,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"KE0vEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271535400,"h_accuracy":0,"crc":48010,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"KE0vEP//","tow":271535400,"crc":27551} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":9,"l2ca_bias":0,"preamble":85,"l2p_bias":0,"sender":22963,"msg_type":117,"payload":"/wAAAAAAAAAA","l1ca_bias":0,"mask":255,"crc":49809,"l1p_bias":0} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgiMTS8QAAAAAAE=","wn":2098,"tow":271535500,"crc":8713} -{"length":16,"flags":17,"ns":499999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EYxNLxDkBwMZAxkR/mTNHQ==","day":25,"tow":271535500,"year":2020,"crc":40366,"minutes":25,"month":3,"seconds":17} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-18.09381369548441,"preamble":85,"sender":22963,"msg_type":522,"payload":"jE0vEFII0exl6kJALb0pHVaSXsC/BaIsBBgywAECWwQPBg==","lat":37.8312355061213,"tow":271535500,"h_accuracy":513,"crc":1355,"lon":-122.28650597644874} -{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"jE0vEP7///8GAAAABQAAAPEAywIPAg==","n":-2,"d":5,"tow":271535500,"h_accuracy":241,"crc":55043,"e":6} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"jE0vEJsAhwBMAEgAcgAG","tow":271535500,"crc":19983,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"jE0vEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271535500,"h_accuracy":0,"crc":52467,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"jE0vEP//","tow":271535500,"crc":35862} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":51,"text":"GLO L2OF ME 1 [+1226ms] low CN0 too long, dropping","preamble":85,"sender":22963,"msg_type":1025,"payload":"BkdMTyBMMk9GIE1FIDEgWysxMjI2bXNdIGxvdyBDTjAgdG9vIGxvbmcsIGRyb3BwaW5n","crc":53859,"level":6} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgjwTS8QAAAAAAE=","wn":2098,"tow":271535600,"crc":15554} -{"length":16,"flags":17,"ns":599999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EfBNLxDkBwMZAxkR/kXDIw==","day":25,"tow":271535600,"year":2020,"crc":40362,"minutes":25,"month":3,"seconds":17} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-18.098291071825642,"preamble":85,"sender":22963,"msg_type":522,"payload":"8E0vELmY7uxl6kJAiHMbHVaSXsDc+oqaKRkywAECWwQPBg==","lat":37.831235519888146,"tow":271535600,"h_accuracy":513,"crc":58139,"lon":-122.2865059631423} -{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"8E0vEPz///8NAAAABgAAAPEAywIPAg==","n":-4,"d":6,"tow":271535600,"h_accuracy":241,"crc":2836,"e":13} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"8E0vEJsAhwBMAEgAcgAG","tow":271535600,"crc":2927,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"8E0vEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271535600,"h_accuracy":0,"crc":14240,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"8E0vEP//","tow":271535600,"crc":49769} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"message_type":28,"length":34,"data":[98,178,225,80,120,2,178,3,206,151,172,13,128,113,212,232,252,76,1,121,3,7,251,245,14,128,64],"preamble":85,"sender":22963,"msg_type":30583,"payload":"gwJvTS8QHGKy4VB4ArIDzpesDYBx1Oj8TAF5Awf79Q6AQA==","tow":271535471,"crc":64045,"sid":{"sat":131,"code":2}} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MghUTi8QAAAAAAE=","wn":2098,"tow":271535700,"crc":28694} -{"length":16,"flags":17,"ns":699999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EVROLxDkBwMZAxkR/ia5KQ==","day":25,"tow":271535700,"year":2020,"crc":50782,"minutes":25,"month":3,"seconds":17} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-18.104360950594252,"preamble":85,"sender":22963,"msg_type":522,"payload":"VE4vEGbzJe1l6kJA4h0WHVaSXsAjyDVmtxoywAECWwQPBg==","lat":37.831235545664455,"tow":271535700,"h_accuracy":513,"crc":6318,"lon":-122.2865059581741} -{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"VE4vEAUAAAADAAAA+v////EAywIPAg==","n":5,"d":-6,"tow":271535700,"h_accuracy":241,"crc":48343,"e":3} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"VE4vEJsAhwBMAEgAcgAG","tow":271535700,"crc":54392,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"VE4vEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271535700,"h_accuracy":0,"crc":12002,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"VE4vEP//","tow":271535700,"crc":52018} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"Mgi4Ti8QAAAAAAE=","wn":2098,"tow":271535800,"crc":33425} -{"length":16,"flags":17,"ns":799999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EbhOLxDkBwMZAxkR/gevLw==","day":25,"tow":271535800,"year":2020,"crc":57667,"minutes":25,"month":3,"seconds":17} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-18.113643642816438,"preamble":85,"sender":22963,"msg_type":522,"payload":"uE4vEJbtWu1l6kJAcqYUHVaSXsB/S/G/Fx0ywAECWwQPBg==","lat":37.83123557033393,"tow":271535800,"h_accuracy":513,"crc":24593,"lon":-122.28650595680827} -{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"uE4vEAQAAAD8////AAAAAPEAywIPAg==","n":4,"d":0,"tow":271535800,"h_accuracy":241,"crc":36738,"e":-4} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"uE4vEJsAhwBMAEgAcgAG","tow":271535800,"crc":35712,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"uE4vEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271535800,"h_accuracy":0,"crc":53858,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"uE4vEP//","tow":271535800,"crc":19433} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":237,"states":[{"cn0":210,"mesid":{"sat":5,"code":0}},{"cn0":177,"mesid":{"sat":21,"code":0}},{"cn0":184,"mesid":{"sat":2,"code":0}},{"cn0":161,"mesid":{"sat":31,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":215,"mesid":{"sat":25,"code":0}},{"cn0":204,"mesid":{"sat":12,"code":0}},{"cn0":209,"mesid":{"sat":29,"code":0}},{"cn0":204,"mesid":{"sat":18,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":202,"mesid":{"sat":131,"code":2}},{"cn0":204,"mesid":{"sat":25,"code":1}},{"cn0":188,"mesid":{"sat":12,"code":1}},{"cn0":150,"mesid":{"sat":31,"code":1}},{"cn0":197,"mesid":{"sat":18,"code":1}},{"cn0":194,"mesid":{"sat":29,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":194,"mesid":{"sat":5,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":212,"mesid":{"sat":11,"code":3}},{"cn0":178,"mesid":{"sat":9,"code":3}},{"cn0":173,"mesid":{"sat":20,"code":3}},{"cn0":208,"mesid":{"sat":5,"code":3}},{"cn0":207,"mesid":{"sat":10,"code":3}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":180,"mesid":{"sat":4,"code":3}},{"cn0":203,"mesid":{"sat":21,"code":3}},{"cn0":173,"mesid":{"sat":9,"code":4}},{"cn0":204,"mesid":{"sat":20,"code":4}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":200,"mesid":{"sat":11,"code":4}},{"cn0":194,"mesid":{"sat":5,"code":4}},{"cn0":188,"mesid":{"sat":0,"code":4}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":173,"mesid":{"sat":4,"code":4}},{"cn0":200,"mesid":{"sat":35,"code":12}},{"cn0":172,"mesid":{"sat":26,"code":12}},{"cn0":160,"mesid":{"sat":34,"code":12}},{"cn0":188,"mesid":{"sat":24,"code":12}},{"cn0":160,"mesid":{"sat":25,"code":12}},{"cn0":184,"mesid":{"sat":12,"code":12}},{"cn0":184,"mesid":{"sat":19,"code":12}},{"cn0":192,"mesid":{"sat":22,"code":12}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":209,"mesid":{"sat":12,"code":13}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":193,"mesid":{"sat":12,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":190,"mesid":{"sat":25,"code":14}},{"cn0":188,"mesid":{"sat":11,"code":14}},{"cn0":202,"mesid":{"sat":24,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":156,"mesid":{"sat":31,"code":14}},{"cn0":151,"mesid":{"sat":33,"code":14}},{"cn0":201,"mesid":{"sat":25,"code":20}},{"cn0":215,"mesid":{"sat":24,"code":20}},{"cn0":193,"mesid":{"sat":11,"code":20}},{"cn0":174,"mesid":{"sat":31,"code":20}},{"cn0":206,"mesid":{"sat":12,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":169,"mesid":{"sat":33,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}}],"preamble":85,"sender":22963,"msg_type":97,"payload":"BQDSFQCxAgC4HwChAAAAAAAAGQDXDADMHQDREgDMAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwLKGQHMDAG8HwGWEgHFHQHCAAAABQHCAAAAAAAAAAAAAAAACwPUCQOyFAOtBQPQCgPPAAAABAO0FQPLCQStFATMAAAACwTIBQTCAAS8AAAABAStIwzIGgysIgygGAy8GQygDAy4Ewy4FgzAAAAADA3RAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADA7BAAAAGQ6+Cw68GA7KAAAAHw6cIQ6XGRTJGBTXCxTBHxSuDBTOAAAAIRSpAAAA","crc":32469} -{"length":128,"preamble":85,"sender":22963,"msg_type":151,"payload":"AgAaHQUAKzUMAFEtFQB9GRkAbUYaAKEBHQChNx8AlQ4EAxUWBQMyIQkDXw4KA3EpCwOYJQwDqgMTAyIHFAMMMRUDlSUMDJQpEwwjIBQMDwIWDEMkGAyCIxkMnQ4aDGcVIgyOESMMIi0LDosyDA4PPBgObDYZDpcpHw5VESEOIA8=","crc":34187,"azel":[{"el":29,"az":26,"sid":{"sat":2,"code":0}},{"el":53,"az":43,"sid":{"sat":5,"code":0}},{"el":45,"az":81,"sid":{"sat":12,"code":0}},{"el":25,"az":125,"sid":{"sat":21,"code":0}},{"el":70,"az":109,"sid":{"sat":25,"code":0}},{"el":1,"az":161,"sid":{"sat":26,"code":0}},{"el":55,"az":161,"sid":{"sat":29,"code":0}},{"el":14,"az":149,"sid":{"sat":31,"code":0}},{"el":22,"az":21,"sid":{"sat":4,"code":3}},{"el":33,"az":50,"sid":{"sat":5,"code":3}},{"el":14,"az":95,"sid":{"sat":9,"code":3}},{"el":41,"az":113,"sid":{"sat":10,"code":3}},{"el":37,"az":152,"sid":{"sat":11,"code":3}},{"el":3,"az":170,"sid":{"sat":12,"code":3}},{"el":7,"az":34,"sid":{"sat":19,"code":3}},{"el":49,"az":12,"sid":{"sat":20,"code":3}},{"el":37,"az":149,"sid":{"sat":21,"code":3}},{"el":41,"az":148,"sid":{"sat":12,"code":12}},{"el":32,"az":35,"sid":{"sat":19,"code":12}},{"el":2,"az":15,"sid":{"sat":20,"code":12}},{"el":36,"az":67,"sid":{"sat":22,"code":12}},{"el":35,"az":130,"sid":{"sat":24,"code":12}},{"el":14,"az":157,"sid":{"sat":25,"code":12}},{"el":21,"az":103,"sid":{"sat":26,"code":12}},{"el":17,"az":142,"sid":{"sat":34,"code":12}},{"el":45,"az":34,"sid":{"sat":35,"code":12}},{"el":50,"az":139,"sid":{"sat":11,"code":14}},{"el":60,"az":15,"sid":{"sat":12,"code":14}},{"el":54,"az":108,"sid":{"sat":24,"code":14}},{"el":41,"az":151,"sid":{"sat":25,"code":14}},{"el":17,"az":85,"sid":{"sat":31,"code":14}},{"el":15,"az":32,"sid":{"sat":33,"code":14}}]} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MggcTy8QAAAAAAE=","wn":2098,"tow":271535900,"crc":16867} -{"length":16,"flags":17,"ns":899999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"ERxPLxDkBwMZAxkR/uikNQ==","day":25,"tow":271535900,"year":2020,"crc":11031,"minutes":25,"month":3,"seconds":17} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-18.120484342695722,"preamble":85,"sender":22963,"msg_type":522,"payload":"HE8vEPkCgO1l6kJAH2oPHVaSXsDljtcP2B4ywAECWwQPBg==","lat":37.8312355876023,"tow":271535900,"h_accuracy":513,"crc":2111,"lon":-122.2865059519322} -{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"HE8vEAEAAAD6////CgAAAPEAywIPAg==","n":1,"d":10,"tow":271535900,"h_accuracy":241,"crc":45629,"e":-6} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"HE8vEJsAhwBMAEgAcgAG","tow":271535900,"crc":41557,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"HE8vEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271535900,"h_accuracy":0,"crc":28909,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"HE8vEP//","tow":271535900,"crc":1585} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":249,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":228,"i":110568189},"flags":15,"cn0":211,"P":1052021219,"D":{"f":169,"i":-197},"lock":15,"sid":{"sat":5,"code":0}},{"L":{"f":197,"i":121779135},"flags":15,"cn0":177,"P":1158689947,"D":{"f":249,"i":2168},"lock":15,"sid":{"sat":21,"code":0}},{"L":{"f":93,"i":123390380},"flags":15,"cn0":184,"P":1174020021,"D":{"f":215,"i":-2482},"lock":15,"sid":{"sat":2,"code":0}},{"L":{"f":50,"i":128746782},"flags":15,"cn0":162,"P":1224984875,"D":{"f":80,"i":-406},"lock":15,"sid":{"sat":31,"code":0}},{"L":{"f":222,"i":107847082},"flags":15,"cn0":215,"P":1026130805,"D":{"f":187,"i":-1139},"lock":15,"sid":{"sat":25,"code":0}},{"L":{"f":89,"i":114161129},"flags":15,"cn0":205,"P":1086206930,"D":{"f":91,"i":-2975},"lock":15,"sid":{"sat":12,"code":0}},{"L":{"f":194,"i":110729768},"flags":15,"cn0":210,"P":1053558632,"D":{"f":68,"i":1482},"lock":15,"sid":{"sat":29,"code":0}},{"L":{"f":115,"i":84036708},"flags":15,"cn0":204,"P":1026130859,"D":{"f":243,"i":-888},"lock":15,"sid":{"sat":25,"code":1}},{"L":{"f":204,"i":88956755},"flags":15,"cn0":188,"P":1086206861,"D":{"f":2,"i":-2318},"lock":15,"sid":{"sat":12,"code":1}},{"L":{"f":88,"i":100322170},"flags":15,"cn0":150,"P":1224984793,"D":{"f":250,"i":-315},"lock":15,"sid":{"sat":31,"code":1}},{"L":{"f":139,"i":86282938},"flags":15,"cn0":194,"P":1053558557,"D":{"f":200,"i":1153},"lock":15,"sid":{"sat":29,"code":1}},{"L":{"f":97,"i":86157060},"flags":15,"cn0":194,"P":1052021147,"D":{"f":170,"i":-153},"lock":15,"sid":{"sat":5,"code":1}},{"L":{"f":50,"i":112912115},"flags":15,"cn0":212,"P":1056497813,"D":{"f":152,"i":1148},"lock":15,"sid":{"sat":11,"code":3}},{"L":{"f":62,"i":123430079},"flags":15,"cn0":178,"P":1155724199,"D":{"f":18,"i":-4406},"lock":15,"sid":{"sat":9,"code":3}}],"payload":"gE8vEAAAAAAyCEDjkbQ+/SKXBuQ7/6nTDw8FAJs0EEW/M0IHxXgI+bEPDxUAtR/6RazJWgddTvbXuA8PAgAryQNJHoWsBzJq/lCiDw8fAHWDKT2qnW0G3o37u9cPDxkA0jO+QOn1zQZZYfRbzQ8PDABoB8w+KJqZBsLKBUTSDw8dAKuDKT1kTAIFc4j888wPDxkBjTO+QFNfTQXM8vYCvA8PDAHZyANJesv6BVjF/vqWDw8fAR0HzD66kiQFi4EEyMIPDx0Bm5G0PgSnIgVhZ/+qwg8PBQGV4Pg+8+a6BjJ8BJjUDw8LA6fz4kS/ZFsHPsruErIPDwkD","header":{"n_obs":64,"t":{"ns_residual":0,"wn":2098,"tow":271536000}},"crc":44420} -{"length":249,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":76,"i":109796957},"flags":15,"cn0":173,"P":1026628930,"D":{"f":107,"i":-1214},"lock":15,"sid":{"sat":20,"code":3}},{"L":{"f":79,"i":114812556},"flags":15,"cn0":208,"P":1073902833,"D":{"f":172,"i":2184},"lock":15,"sid":{"sat":5,"code":3}},{"L":{"f":28,"i":111669961},"flags":15,"cn0":207,"P":1047449694,"D":{"f":73,"i":-3055},"lock":15,"sid":{"sat":10,"code":3}},{"L":{"f":101,"i":120467331},"flags":15,"cn0":180,"P":1124820890,"D":{"f":122,"i":-1332},"lock":15,"sid":{"sat":4,"code":3}},{"L":{"f":57,"i":113384569},"flags":15,"cn0":203,"P":1059430411,"D":{"f":86,"i":1619},"lock":15,"sid":{"sat":21,"code":3}},{"L":{"f":103,"i":96001182},"flags":15,"cn0":173,"P":1155724285,"D":{"f":83,"i":-3427},"lock":15,"sid":{"sat":9,"code":4}},{"L":{"f":47,"i":85397669},"flags":15,"cn0":204,"P":1026629231,"D":{"f":124,"i":-944},"lock":15,"sid":{"sat":20,"code":4}},{"L":{"f":94,"i":87820544},"flags":15,"cn0":200,"P":1056498129,"D":{"f":129,"i":893},"lock":15,"sid":{"sat":11,"code":4}},{"L":{"f":181,"i":89298658},"flags":15,"cn0":194,"P":1073903079,"D":{"f":134,"i":1699},"lock":15,"sid":{"sat":5,"code":4}},{"L":{"f":138,"i":93696803},"flags":15,"cn0":173,"P":1124821081,"D":{"f":182,"i":-1037},"lock":15,"sid":{"sat":4,"code":4}},{"L":{"f":241,"i":121612538},"flags":15,"cn0":200,"P":1167720203,"D":{"f":236,"i":-1502},"lock":15,"sid":{"sat":35,"code":12}},{"L":{"f":137,"i":129277292},"flags":15,"cn0":172,"P":1241317280,"D":{"f":31,"i":-3010},"lock":15,"sid":{"sat":26,"code":12}},{"L":{"f":214,"i":132897128},"flags":15,"cn0":160,"P":1276074627,"D":{"f":65,"i":2247},"lock":15,"sid":{"sat":34,"code":12}},{"L":{"f":138,"i":125179710},"flags":15,"cn0":188,"P":1201972378,"D":{"f":137,"i":-1311},"lock":15,"sid":{"sat":24,"code":12}}],"payload":"gE8vEAAAAAAyCEFCHTE9XV6LBkxC+2utDw8UA/F0AkCM5tcGT4gIrNAPDwUDXtBuPsnypwYcEfRJzw8PCgOaZwtDgy8uB2XM+nq0Dw8EAwugJT95HMIGOVMGVssPDxUD/fPiRJ7cuAVnnfJTrQ8PCQRvHjE9pRAXBS9Q/HzMDw8UBNHh+D4ACTwFXn0DgcgPDwsE53UCQOKWUgW1owaGwg8PBQRZaAtDI7OVBYrz+7atDw8EBAv/mUX6qD8H8SL67MgPDyMMoP/8SWydtAeJPvQfrA8PGgyDWg9MaNnrB9bHCEGgDw8iDJqkpEc+F3YHiuH6ibwPDxgM","header":{"n_obs":65,"t":{"ns_residual":0,"wn":2098,"tow":271536000}},"crc":28483} -{"length":249,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":37,"i":134643450},"flags":15,"cn0":160,"P":1292843003,"D":{"f":31,"i":1316},"lock":15,"sid":{"sat":25,"code":12}},{"L":{"f":246,"i":121064926},"flags":15,"cn0":184,"P":1162462277,"D":{"f":207,"i":1610},"lock":15,"sid":{"sat":12,"code":12}},{"L":{"f":57,"i":124521343},"flags":15,"cn0":185,"P":1195650696,"D":{"f":110,"i":-301},"lock":15,"sid":{"sat":19,"code":12}},{"L":{"f":32,"i":124652545},"flags":15,"cn0":192,"P":1196910525,"D":{"f":91,"i":2381},"lock":15,"sid":{"sat":22,"code":12}},{"L":{"f":149,"i":93615089},"flags":15,"cn0":209,"P":1162462233,"D":{"f":126,"i":1246},"lock":15,"sid":{"sat":12,"code":13}},{"L":{"f":154,"i":116448490},"flags":15,"cn0":193,"P":1107970518,"D":{"f":55,"i":-1029},"lock":15,"sid":{"sat":12,"code":14}},{"L":{"f":68,"i":132451166},"flags":15,"cn0":190,"P":1260230878,"D":{"f":192,"i":1078},"lock":15,"sid":{"sat":25,"code":14}},{"L":{"f":241,"i":125399716},"flags":15,"cn0":188,"P":1193138579,"D":{"f":71,"i":1044},"lock":15,"sid":{"sat":11,"code":14}},{"L":{"f":228,"i":118452111},"flags":15,"cn0":202,"P":1127034234,"D":{"f":217,"i":-1753},"lock":15,"sid":{"sat":24,"code":14}},{"L":{"f":61,"i":143390777},"flags":15,"cn0":156,"P":1364317841,"D":{"f":162,"i":-3173},"lock":15,"sid":{"sat":31,"code":14}},{"L":{"f":20,"i":144570981},"flags":15,"cn0":150,"P":1375547096,"D":{"f":80,"i":-2139},"lock":15,"sid":{"sat":33,"code":14}},{"L":{"f":98,"i":101488554},"flags":15,"cn0":201,"P":1260230839,"D":{"f":106,"i":828},"lock":15,"sid":{"sat":25,"code":20}},{"L":{"f":95,"i":90762071},"flags":15,"cn0":215,"P":1127034788,"D":{"f":114,"i":-1343},"lock":15,"sid":{"sat":24,"code":20}},{"L":{"f":64,"i":96085475},"flags":15,"cn0":193,"P":1193138385,"D":{"f":229,"i":799},"lock":15,"sid":{"sat":11,"code":20}}],"payload":"gE8vEAAAAAAyCEL7Nw9N+n4GCCUkBR+gDw8ZDEXESUXeTTcH9koGz7gPDwwMiC5ER38LbAc50/5uuQ8PEwy9Z1dHAQxuByBNCVvADw8WDBnESUXxc5QFld4EftEPDwwN1kkKQurc8Aaa+/s3wQ8PDA7emB1LXgvlB0Q2BMC+Dw8ZDpPZHUekcnkH8RQER7wPDwsOei0tQ49vDwfkJ/nZyg8PGA6R1lFROfiLCD2b86KcDw8fDtgu/VFl+p0IFKX3UJYPDyEOt5gdS6qXDAZiPANqyQ8PGRSkLy1DV+toBV/B+nLXDw8YFNHYHUfjJboFQB8D5cEPDwsU","header":{"n_obs":66,"t":{"ns_residual":0,"wn":2098,"tow":271536000}},"crc":33626} -{"length":62,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":207,"i":109870896},"flags":15,"cn0":174,"P":1364317946,"D":{"f":122,"i":-2430},"lock":15,"sid":{"sat":31,"code":20}},{"L":{"f":35,"i":89226796},"flags":15,"cn0":206,"P":1107970362,"D":{"f":148,"i":-788},"lock":15,"sid":{"sat":12,"code":20}},{"L":{"f":208,"i":110775237},"flags":15,"cn0":170,"P":1375547092,"D":{"f":44,"i":-1639},"lock":15,"sid":{"sat":33,"code":20}}],"payload":"gE8vEAAAAAAyCEP61lFRMH+MBs+C9nquDw8fFDpJCkIsflEFI+z8lM4PDwwU1C79UcVLmgbQmfksqg8PIRQ=","header":{"n_obs":67,"t":{"ns_residual":0,"wn":2098,"tow":271536000}},"crc":7828} -{"length":9,"l2ca_bias":0,"preamble":85,"l2p_bias":0,"sender":22963,"msg_type":117,"payload":"/wAAAAAAAAAA","l1ca_bias":0,"mask":255,"crc":49809,"l1p_bias":0} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgiATy8QAAAAAAE=","wn":2098,"tow":271536000,"crc":6335} -{"length":16,"flags":17,"ns":999999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EYBPLxDkBwMZAxkR/smaOw==","day":25,"tow":271536000,"year":2020,"crc":64474,"minutes":25,"month":3,"seconds":17} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-18.132584111302485,"preamble":85,"sender":22963,"msg_type":522,"payload":"gE8vEA2fmO1l6kJAWyPpHFaSXsBuA0YI8SEywAECWwQPBg==","lat":37.831235599062076,"tow":271536000,"h_accuracy":513,"crc":64674,"lon":-122.2865059162845} -{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"gE8vEPr///8RAAAAMwAAAPEAywIPAg==","n":-6,"d":51,"tow":271536000,"h_accuracy":241,"crc":3422,"e":17} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"gE8vEJsAhwBMAEgAcgAG","tow":271536000,"crc":1082,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"gE8vEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271536000,"h_accuracy":0,"crc":36572,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"gE8vEP//","tow":271536000,"crc":50038} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":4,"flags":2147616000,"preamble":85,"sender":22963,"msg_type":65535,"payload":"AAUCgA==","crc":40942} -{"length":24,"z":3890655.0240602265,"preamble":85,"sender":22963,"msg_type":72,"payload":"UO0a3iqORMHK1UJhIkRQwc9nFIPvrk1B","crc":2168,"x":-2694229.735196747,"y":-4264073.519704292} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"bWFpbgAAAAAAAAAAAAAAAAAAAAAAAAx1AAA=","name":"main\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":47991,"stack_free":29964,"cpu":0} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"aWRsZQAAAAAAAAAAAAAAAAAAAABkAXwAAAA=","name":"idle\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":47032,"stack_free":124,"cpu":356} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"cnBtc2cAAAAAAAAAAAAAAAAAAAABAOQNAAA=","name":"rpmsg\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":18957,"stack_free":3556,"cpu":1} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"U0JQAAAAAAAAAAAAAAAAAAAAAAAAAPz/AAA=","name":"SBP\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":51784,"stack_free":65532,"cpu":0} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"TkFQAAAAAAAAAAAAAAAAAAAAAAAAAASAAAA=","name":"NAP\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":33651,"stack_free":32772,"cpu":0} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"bWFuYWdlIFBWAAAAAAAAAAAAAAAAACwEAAA=","name":"manage PV\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":61814,"stack_free":1068,"cpu":0} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"SU1VAAAAAAAAAAAAAAAAAAAAAAAAAPQHAAA=","name":"IMU\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":14252,"stack_free":2036,"cpu":0} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"SU1VIGF1eAAAAAAAAAAAAAAAAAAAAEwIAAA=","name":"IMU aux\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":18976,"stack_free":2124,"cpu":0} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"bmRiAAAAAAAAAAAAAAAAAAAAAAAAAFAMAAA=","name":"ndb\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":26120,"stack_free":3152,"cpu":0} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"TkFQIFRyYWNraW5nAAAAAAAAAAAdAdR3AAA=","name":"NAP Tracking\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":19151,"stack_free":30676,"cpu":285} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"ZGVjb2RlAAAAAAAAAAAAAAAAAAAHANQGAAA=","name":"decode\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":22929,"stack_free":1748,"cpu":7} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"bWFuYWdlIGFjcQAAAAAAAAAAAAC9AKR3AAA=","name":"manage acq\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":24209,"stack_free":30628,"cpu":189} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"c3lzdGVtIG1vbml0b3IAAAAAAAAAACwGAAA=","name":"system monitor\u0000\u0000\u0000\u0000\u0000\u0000","crc":58531,"stack_free":1580,"cpu":0} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"V2F0Y2hkb2cAAAAAAAAAAAAAAAAAAOQDAAA=","name":"Watchdog\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":44438,"stack_free":996,"cpu":0} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"c3RhcmxpbmcAAAAAAAAAAAAAAACVAPz/AAA=","name":"starling\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":15999,"stack_free":65532,"cpu":149} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"bWVfY2FsY19wdnQAAAAAAAAAAAAJAIwjAAA=","name":"me_calc_pvt\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":57561,"stack_free":9100,"cpu":9} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"UFBTAAAAAAAAAAAAAAAAAAAAAAAAAEgHAAA=","name":"PPS\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":38576,"stack_free":1864,"cpu":0} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"c3BlY3RydW0gYW5hbHl6ZXIAAAAAANQPAAA=","name":"spectrum analyzer\u0000\u0000\u0000","crc":50933,"stack_free":4052,"cpu":0} -{"length":152,"af0":5.887670442461967e-3,"w":-0.44091143270237854,"dn":2.7565433925253817e-9,"c_us":1.0313466e-5,"c_uc":4.9471855e-6,"ecc":5.041392287239432e-4,"sqrta":5440.606742858887,"preamble":85,"toc":{"wn":2098,"tow":270600},"sender":22963,"bgd_e1e5a":-1.2805685e-8,"msg_type":149,"omegadot":-5.397724836905428e-9,"payload":"DA4IIQQAMggUrkdAQDgAAAEAAABcsgAAXLIAENRCALgCQwAApjYACC03AABAsgAAgDNL+3P5s60nPnUMqQwPaP4/AAAAwAaFQD8AAIBTm0C1QIrkGgU4CAPAN7MGedwuN77+6PiV5Dfcv4P9KHoHme8/6TII/sTfAj7///9/qx14P///////m7S9AAAAAAghBAAyCEMAQwA=","inc":0.9874303232135592,"inc_dot":5.493085951935782e-10,"iode":67,"crc":22055,"common":{"health_bits":0,"fit_interval":14400,"valid":1,"sid":{"sat":12,"code":14},"toe":{"wn":2098,"tow":270600},"ura":3.12},"c_rs":106.03125,"m0":1.9004049772782114,"af2":0,"c_rc":130.71875,"bgd_e1e5b":-1.2805685e-8,"af1":-1.874411736935144e-11,"c_is":5.9604645e-8,"c_ic":-1.1175871e-8,"omega0":-2.379013099559022,"iodc":67} -{"cpu_vint":988,"length":10,"fe_temperature":5641,"preamble":85,"sender":22963,"cpu_vaux":1780,"msg_type":181,"payload":"6hbcA/QGRhUJFg==","dev_vin":5866,"crc":48590,"cpu_temperature":5446} -{"length":152,"af0":5.542786035221069e-3,"w":0.8010578836647987,"dn":3.2565642203999004e-9,"c_us":1.2051314e-6,"c_uc":-9.313226e-7,"ecc":6.41814898699522e-4,"sqrta":5440.5982837677,"preamble":85,"toc":{"wn":2098,"tow":270600},"sender":22963,"bgd_e1e5a":4.5401976e-8,"msg_type":149,"omegadot":-5.952033640377751e-9,"payload":"GA4IIQQAMggUrkdAQDgAAAEAAABDMwAAWjMAwLDBACiiQwAAerUAwKE1AADAMgAAkLIDohqtQvkrPghvDWj2Cv8/AAAAAO8HRT8AACApmUC1QAE7BZsOMv0/fijCh1SQOb6TYpEkRKLpP79dPRTHYe8/dQCRpGwQsr3///9LCLR2P///////07W9AAAAAAghBAAyCEMAQwA=","inc":0.9806857486063832,"inc_dot":-1.6429255773019897e-11,"iode":67,"crc":17160,"common":{"health_bits":0,"fit_interval":14400,"valid":1,"sid":{"sat":24,"code":14},"toe":{"wn":2098,"tow":270600},"ura":3.12},"c_rs":-22.09375,"m0":1.9401763977575133,"af2":0,"c_rc":324.3125,"bgd_e1e5b":5.075708e-8,"af1":-1.9852564037137196e-11,"c_is":-1.6763806e-8,"c_ic":2.2351742e-8,"omega0":1.8247209601865395,"iodc":67} -{"length":152,"af0":1.907260389998555e-3,"w":-1.5654652719122086e-2,"dn":2.7722583328300094e-9,"c_us":1.0371208e-5,"c_uc":4.9714e-6,"ecc":4.320717416703701e-4,"sqrta":5440.606544494629,"preamble":85,"toc":{"wn":2098,"tow":270600},"sender":22963,"bgd_e1e5a":-1.5366822e-8,"msg_type":149,"omegadot":-5.393081786360879e-9,"payload":"Cw4IIQQAMggUrkdAQDgAAAEAAACEsgAAkLIAgNtCAHAEQwDQpjYAAC43AADAMQAA8DIJ2QezQtAnPuz3xuNXe+U/AAAAAPZQPD8AAIBGm0C1QK3tOpsxCAPAXpX5kcEpN74w4dX1xQeQv9UhC83qmO8/RLuw9AgSAz7///8/oT9fP/7/////ces9AAAAIgghBAAyCEMAQwA=","inc":0.9874166493182722,"inc_dot":5.550231189407157e-10,"iode":67,"crc":2583,"common":{"health_bits":0,"fit_interval":14400,"valid":1,"sid":{"sat":11,"code":14},"toe":{"wn":2098,"tow":270600},"ura":3.12},"c_rs":109.75,"m0":0.6713065575383985,"af2":1.7347235e-18,"c_rc":132.4375,"bgd_e1e5b":-1.6763806e-8,"af1":1.996909304580185e-10,"c_is":2.7939677e-8,"c_ic":5.5879354e-9,"omega0":-2.379000866638043,"iodc":67} -{"length":152,"af0":-4.7208549221977586e-4,"w":-0.5807865279072539,"dn":3.1744179415348008e-9,"c_us":1.1641532e-6,"c_uc":-6.724149e-7,"ecc":6.590713746845722e-5,"sqrta":5440.611110687256,"preamble":85,"toc":{"wn":2098,"tow":270600},"sender":22963,"bgd_e1e5a":2.3283064e-9,"msg_type":149,"omegadot":-5.8966741915773585e-9,"payload":"Hw4IIQQAMggUrkdAQDgAAAEAAAAgMQAAMDEAAHbBAHijQwCANLUAQJw1AAAAsQAA8DL+96xunkQrPkZyn/wvcwHAAAAAAPRGET8AAMBxnEC1QJaRgpusG/0/YRMSO3ZTOb6iNeqgzZXiv43JI3Ekcu8/wO8/t+Srsb3///+/R/A+v/7//////y+9AAAAAAghBAAyCEMAQwA=","inc":0.9826833925019841,"inc_dot":-1.607209803882381e-11,"iode":67,"crc":3,"common":{"health_bits":0,"fit_interval":14400,"valid":1,"sid":{"sat":31,"code":14},"toe":{"wn":2098,"tow":270600},"ura":3.12},"c_rs":-15.375,"m0":-2.181243871322553,"af2":0,"c_rc":326.9375,"bgd_e1e5b":2.561137e-9,"af1":-5.6843418860808e-14,"c_is":2.7939677e-8,"c_ic":-1.8626451e-9,"omega0":1.8192564081774427,"iodc":67} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgjkTy8QAAAAAAE=","wn":2098,"tow":271536100,"crc":31861} -{"length":16,"flags":17,"ns":99999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EeRPLxDkBwMZAxkS/uD1BQ==","day":25,"tow":271536100,"year":2020,"crc":60793,"minutes":25,"month":3,"seconds":18} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-18.13616813288269,"preamble":85,"sender":22963,"msg_type":522,"payload":"5E8vEGOEwe1l6kJAOU7xHFaSXsARfS3q2yIywAECWwQPBg==","lat":37.83123561810569,"tow":271536100,"h_accuracy":513,"crc":33970,"lon":-122.28650592389103} -{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"5E8vEAQAAAD4////4P////EAywIPAg==","n":4,"d":-32,"tow":271536100,"h_accuracy":241,"crc":9231,"e":-8} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"5E8vEJsAhwBMAEgAcgAG","tow":271536100,"crc":10389,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"5E8vEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271536100,"h_accuracy":0,"crc":38506,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"5E8vEP//","tow":271536100,"crc":39631} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":152,"af0":-4.6914938138797874e-4,"w":-0.8905894853810961,"dn":2.6633252239002037e-9,"c_us":1.0326505e-5,"c_uc":4.2803586e-6,"ecc":3.9580545853823423e-4,"sqrta":5440.610097885132,"preamble":85,"toc":{"wn":2098,"tow":270000},"sender":22963,"bgd_e1e5a":-5.122274e-9,"msg_type":149,"omegadot":-5.325221816863623e-9,"payload":"IQ6wHgQAMggUrkdAQDgAAAEAAACwsQAA0LEAMLNCALgFQwCgjzYAQC03AACIswAAwLE7r4zPtuAmPkwWPLbJbwhAAAAAgIPwOT8AAGAvnEC1QDTgM7QeEQPA+GrXryTfNr7k8TuFtX/sv6HbAEo2s+8/tGUD6d1QAz7///8/Bb8+v/7//////109AAAAALAeBAAyCEIAQgA=","inc":0.9906264729860262,"inc_dot":5.621662736246373e-10,"iode":66,"crc":18815,"common":{"health_bits":0,"fit_interval":14400,"valid":1,"sid":{"sat":33,"code":14},"toe":{"wn":2098,"tow":270000},"ura":3.12},"c_rs":89.59375,"m0":3.0545839535796286,"af2":0,"c_rc":133.71875,"bgd_e1e5b":-6.0535967e-9,"af1":4.2632564145606e-13,"c_is":-5.5879354e-9,"c_ic":-6.3329935e-8,"omega0":-2.383359344323276,"iodc":66} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MghIUC8QAAAAAAE=","wn":2098,"tow":271536200,"crc":13661} -{"length":16,"flags":17,"ns":199999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EUhQLxDkBwMZAxkS/sHrCw==","day":25,"tow":271536200,"year":2020,"crc":46422,"minutes":25,"month":3,"seconds":18} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-18.143399615788987,"preamble":85,"sender":22963,"msg_type":522,"payload":"SFAvEI3K2+1l6kJACLHwHFaSXsCaElTWtSQywAECWwQPBg==","lat":37.83123563034051,"tow":271536200,"h_accuracy":513,"crc":39405,"lon":-122.28650592331917} -{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"SFAvEPz////8////9f////EAywIPAg==","n":-4,"d":-11,"tow":271536200,"h_accuracy":241,"crc":12761,"e":-4} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"SFAvEJsAhwBMAEgAcgAG","tow":271536200,"crc":254,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"SFAvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271536200,"h_accuracy":0,"crc":63371,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"SFAvEP//","tow":271536200,"crc":4519} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgisUC8QAAAAAAE=","wn":2098,"tow":271536300,"crc":60965} -{"length":16,"flags":17,"ns":299999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EaxQLxDkBwMZAxkS/qLhEQ==","day":25,"tow":271536300,"year":2020,"crc":21344,"minutes":25,"month":3,"seconds":18} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-18.151908599707962,"preamble":85,"sender":22963,"msg_type":522,"payload":"rFAvEKpaCO5l6kJAtofcHFaSXsATumN74yYywAECWwQPBg==","lat":37.831235651091745,"tow":271536300,"h_accuracy":513,"crc":62178,"lon":-122.2865059045424} -{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"rFAvEAgAAAAQAAAADwAAAPEAywIPAg==","n":8,"d":15,"tow":271536300,"h_accuracy":241,"crc":14838,"e":16} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"rFAvEJsAhwBMAEgAcgAG","tow":271536300,"crc":30787,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"rFAvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271536300,"h_accuracy":0,"crc":21928,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"rFAvEP//","tow":271536300,"crc":39998} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":237,"states":[{"cn0":211,"mesid":{"sat":5,"code":0}},{"cn0":177,"mesid":{"sat":21,"code":0}},{"cn0":185,"mesid":{"sat":2,"code":0}},{"cn0":162,"mesid":{"sat":31,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":216,"mesid":{"sat":25,"code":0}},{"cn0":206,"mesid":{"sat":12,"code":0}},{"cn0":210,"mesid":{"sat":29,"code":0}},{"cn0":205,"mesid":{"sat":18,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":203,"mesid":{"sat":131,"code":2}},{"cn0":204,"mesid":{"sat":25,"code":1}},{"cn0":188,"mesid":{"sat":12,"code":1}},{"cn0":150,"mesid":{"sat":31,"code":1}},{"cn0":196,"mesid":{"sat":18,"code":1}},{"cn0":194,"mesid":{"sat":29,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":194,"mesid":{"sat":5,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":212,"mesid":{"sat":100,"code":3}},{"cn0":178,"mesid":{"sat":98,"code":3}},{"cn0":174,"mesid":{"sat":102,"code":3}},{"cn0":208,"mesid":{"sat":101,"code":3}},{"cn0":207,"mesid":{"sat":93,"code":3}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":180,"mesid":{"sat":106,"code":3}},{"cn0":203,"mesid":{"sat":104,"code":3}},{"cn0":172,"mesid":{"sat":98,"code":4}},{"cn0":205,"mesid":{"sat":102,"code":4}},{"cn0":76,"mesid":{"sat":93,"code":4}},{"cn0":200,"mesid":{"sat":100,"code":4}},{"cn0":194,"mesid":{"sat":101,"code":4}},{"cn0":188,"mesid":{"sat":104,"code":4}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":172,"mesid":{"sat":106,"code":4}},{"cn0":200,"mesid":{"sat":35,"code":12}},{"cn0":172,"mesid":{"sat":26,"code":12}},{"cn0":160,"mesid":{"sat":34,"code":12}},{"cn0":189,"mesid":{"sat":24,"code":12}},{"cn0":161,"mesid":{"sat":25,"code":12}},{"cn0":184,"mesid":{"sat":12,"code":12}},{"cn0":184,"mesid":{"sat":19,"code":12}},{"cn0":192,"mesid":{"sat":22,"code":12}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":209,"mesid":{"sat":12,"code":13}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":194,"mesid":{"sat":12,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":190,"mesid":{"sat":25,"code":14}},{"cn0":188,"mesid":{"sat":11,"code":14}},{"cn0":202,"mesid":{"sat":24,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":156,"mesid":{"sat":31,"code":14}},{"cn0":150,"mesid":{"sat":33,"code":14}},{"cn0":201,"mesid":{"sat":25,"code":20}},{"cn0":215,"mesid":{"sat":24,"code":20}},{"cn0":193,"mesid":{"sat":11,"code":20}},{"cn0":174,"mesid":{"sat":31,"code":20}},{"cn0":206,"mesid":{"sat":12,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":170,"mesid":{"sat":33,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}}],"preamble":85,"sender":22963,"msg_type":97,"payload":"BQDTFQCxAgC5HwCiAAAAAAAAGQDYDADOHQDSEgDNAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwLLGQHMDAG8HwGWEgHEHQHCAAAABQHCAAAAAAAAAAAAAAAAZAPUYgOyZgOuZQPQXQPPAAAAagO0aAPLYgSsZgTNXQRMZATIZQTCaAS8AAAAagSsIwzIGgysIgygGAy9GQyhDAy4Ewy4FgzAAAAADA3RAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADA7CAAAAGQ6+Cw68GA7KAAAAHw6cIQ6WGRTJGBTXCxTBHxSuDBTOAAAAIRSqAAAA","crc":53590} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MggQUS8QAAAAAAE=","wn":2098,"tow":271536400,"crc":22358} -{"length":16,"flags":17,"ns":399999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"ERBRLxDkBwMZAxkS/oPXFw==","day":25,"tow":271536400,"year":2020,"crc":28025,"minutes":25,"month":3,"seconds":18} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-18.153916646797704,"preamble":85,"sender":22963,"msg_type":522,"payload":"EFEvEIOPF+5l6kJACg7oHFaSXsBeTtQUZycywAECWwQPBg==","lat":37.831235658172794,"tow":271536400,"h_accuracy":513,"crc":54818,"lon":-122.28650591527563} -{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"EFEvEAIAAAAAAAAA+v////EAywIPAg==","n":2,"d":-6,"tow":271536400,"h_accuracy":241,"crc":64385,"e":0} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"EFEvEJsAhwBMAEgAcgAG","tow":271536400,"crc":14425,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"EFEvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271536400,"h_accuracy":0,"crc":5314,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"EFEvEP//","tow":271536400,"crc":50720} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":9,"l2ca_bias":0,"preamble":85,"l2p_bias":0,"sender":22963,"msg_type":117,"payload":"/wAAAAAAAAAA","l1ca_bias":0,"mask":255,"crc":49809,"l1p_bias":0} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"Mgh0US8QAAAAAAE=","wn":2098,"tow":271536500,"crc":13212} -{"length":16,"flags":17,"ns":499999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EXRRLxDkBwMZAxkS/mTNHQ==","day":25,"tow":271536500,"year":2020,"crc":10629,"minutes":25,"month":3,"seconds":18} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-18.153620538115607,"preamble":85,"sender":22963,"msg_type":522,"payload":"dFEvEKB2HO5l6kJA+Mz0HFaSXsBRM/OsUycywAECWwQPBg==","lat":37.83123566045583,"tow":271536500,"h_accuracy":513,"crc":44905,"lon":-122.2865059271461} -{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"dFEvEAEAAAD8////BQAAAPEAywIPAg==","n":1,"d":5,"tow":271536500,"h_accuracy":241,"crc":37746,"e":-4} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"dFEvEJsAhwBMAEgAcgAG","tow":271536500,"crc":5366,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"dFEvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271536500,"h_accuracy":0,"crc":3188,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"dFEvEP//","tow":271536500,"crc":40857} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgjYUS8QAAAAAAE=","wn":2098,"tow":271536600,"crc":40642} -{"length":16,"flags":17,"ns":599999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EdhRLxDkBwMZAxkS/kXDIw==","day":25,"tow":271536600,"year":2020,"crc":6416,"minutes":25,"month":3,"seconds":18} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-18.153802633958872,"preamble":85,"sender":22963,"msg_type":522,"payload":"2FEvEMTfEO5l6kJA6jPqHFaSXsBb5AKcXycywAECWwQPBg==","lat":37.831235655059146,"tow":271536600,"h_accuracy":513,"crc":36736,"lon":-122.28650591727606} -{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"2FEvEPv///8NAAAA+f////EAywIPAg==","n":-5,"d":-7,"tow":271536600,"h_accuracy":241,"crc":14792,"e":13} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"2FEvEJsAhwBMAEgAcgAG","tow":271536600,"crc":24839,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"2FEvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271536600,"h_accuracy":0,"crc":9646,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"2FEvEP//","tow":271536600,"crc":30034} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"message_type":63,"length":34,"data":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"preamble":85,"sender":22963,"msg_type":30583,"payload":"gwJdUS8QPwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA==","tow":271536477,"crc":39110,"sid":{"sat":131,"code":2}} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"Mgg8Ui8QAAAAAAE=","wn":2098,"tow":271536700,"crc":36303} -{"length":16,"flags":17,"ns":699999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"ETxSLxDkBwMZAxkS/ia5KQ==","day":25,"tow":271536700,"year":2020,"crc":26861,"minutes":25,"month":3,"seconds":18} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-18.154961441061836,"preamble":85,"sender":22963,"msg_type":522,"payload":"PFIvEMUJGe5l6kJAG9MIHVaSXsBqgJGNqycywAECWwQPBg==","lat":37.83123565886084,"tow":271536700,"h_accuracy":513,"crc":12223,"lon":-122.28650594579487} -{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"PFIvEAcAAADu/////v////EAywIPAg==","n":7,"d":-2,"tow":271536700,"h_accuracy":241,"crc":15187,"e":-18} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"PFIvEJsAhwBMAEgAcgAG","tow":271536700,"crc":37913,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"PFIvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271536700,"h_accuracy":0,"crc":59830,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"PFIvEP//","tow":271536700,"crc":5657} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgigUi8QAAAAAAE=","wn":2098,"tow":271536800,"crc":54419} -{"length":16,"flags":17,"ns":799999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EaBSLxDkBwMZAxkS/gevLw==","day":25,"tow":271536800,"year":2020,"crc":46695,"minutes":25,"month":3,"seconds":18} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-18.15627915875016,"preamble":85,"sender":22963,"msg_type":522,"payload":"oFIvEF0X9u1l6kJAa3QEHVaSXsDa4DPpASgywAECWwQPBg==","lat":37.83123564258742,"tow":271536800,"h_accuracy":513,"crc":19631,"lon":-122.28650594172511} -{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"oFIvEPn///8NAAAAEwAAAPEAywIPAg==","n":-7,"d":19,"tow":271536800,"h_accuracy":241,"crc":32067,"e":13} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"oFIvEJsAhwBMAEgAcgAG","tow":271536800,"crc":12918,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"oFIvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271536800,"h_accuracy":0,"crc":6023,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"oFIvEP//","tow":271536800,"crc":54110} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":51,"text":"GLO L2OF ME 1 [+1209ms] low CN0 too long, dropping","preamble":85,"sender":22963,"msg_type":1025,"payload":"BkdMTyBMMk9GIE1FIDEgWysxMjA5bXNdIGxvdyBDTjAgdG9vIGxvbmcsIGRyb3BwaW5n","crc":52127,"level":6} -{"length":237,"states":[{"cn0":212,"mesid":{"sat":5,"code":0}},{"cn0":178,"mesid":{"sat":21,"code":0}},{"cn0":186,"mesid":{"sat":2,"code":0}},{"cn0":163,"mesid":{"sat":31,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":216,"mesid":{"sat":25,"code":0}},{"cn0":206,"mesid":{"sat":12,"code":0}},{"cn0":210,"mesid":{"sat":29,"code":0}},{"cn0":205,"mesid":{"sat":18,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":203,"mesid":{"sat":131,"code":2}},{"cn0":204,"mesid":{"sat":25,"code":1}},{"cn0":188,"mesid":{"sat":12,"code":1}},{"cn0":150,"mesid":{"sat":31,"code":1}},{"cn0":197,"mesid":{"sat":18,"code":1}},{"cn0":194,"mesid":{"sat":29,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":194,"mesid":{"sat":5,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":212,"mesid":{"sat":11,"code":3}},{"cn0":178,"mesid":{"sat":9,"code":3}},{"cn0":173,"mesid":{"sat":20,"code":3}},{"cn0":208,"mesid":{"sat":5,"code":3}},{"cn0":207,"mesid":{"sat":10,"code":3}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":180,"mesid":{"sat":4,"code":3}},{"cn0":203,"mesid":{"sat":21,"code":3}},{"cn0":173,"mesid":{"sat":9,"code":4}},{"cn0":205,"mesid":{"sat":20,"code":4}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":200,"mesid":{"sat":11,"code":4}},{"cn0":194,"mesid":{"sat":5,"code":4}},{"cn0":188,"mesid":{"sat":0,"code":4}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":173,"mesid":{"sat":4,"code":4}},{"cn0":201,"mesid":{"sat":35,"code":12}},{"cn0":172,"mesid":{"sat":26,"code":12}},{"cn0":161,"mesid":{"sat":34,"code":12}},{"cn0":189,"mesid":{"sat":24,"code":12}},{"cn0":161,"mesid":{"sat":25,"code":12}},{"cn0":184,"mesid":{"sat":12,"code":12}},{"cn0":185,"mesid":{"sat":19,"code":12}},{"cn0":193,"mesid":{"sat":22,"code":12}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":209,"mesid":{"sat":12,"code":13}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":194,"mesid":{"sat":12,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":191,"mesid":{"sat":25,"code":14}},{"cn0":188,"mesid":{"sat":11,"code":14}},{"cn0":203,"mesid":{"sat":24,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":156,"mesid":{"sat":31,"code":14}},{"cn0":151,"mesid":{"sat":33,"code":14}},{"cn0":201,"mesid":{"sat":25,"code":20}},{"cn0":215,"mesid":{"sat":24,"code":20}},{"cn0":194,"mesid":{"sat":11,"code":20}},{"cn0":174,"mesid":{"sat":31,"code":20}},{"cn0":206,"mesid":{"sat":12,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":170,"mesid":{"sat":33,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}}],"preamble":85,"sender":22963,"msg_type":97,"payload":"BQDUFQCyAgC6HwCjAAAAAAAAGQDYDADOHQDSEgDNAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwLLGQHMDAG8HwGWEgHFHQHCAAAABQHCAAAAAAAAAAAAAAAACwPUCQOyFAOtBQPQCgPPAAAABAO0FQPLCQStFATNAAAACwTIBQTCAAS8AAAABAStIwzJGgysIgyhGAy9GQyhDAy4Ewy5FgzBAAAADA3RAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADA7CAAAAGQ6/Cw68GA7LAAAAHw6cIQ6XGRTJGBTXCxTCHxSuDBTOAAAAIRSqAAAA","crc":19929} -{"length":128,"preamble":85,"sender":22963,"msg_type":151,"payload":"AgAaHQUAKzUMAFEtFQB9GRkAbUYaAKEBHQChNx8AlQ4EAxUWBQMyIQkDXw4KA3EpCwOYJQwDqgMTAyIHFAMMMRUDlSUMDJQpEwwjIBQMDwIWDEMkGAyCIxkMnQ4aDGcVIgyOESMMIi0LDosyDA4PPBgObDYZDpcpHw5VESEOIA8=","crc":34187,"azel":[{"el":29,"az":26,"sid":{"sat":2,"code":0}},{"el":53,"az":43,"sid":{"sat":5,"code":0}},{"el":45,"az":81,"sid":{"sat":12,"code":0}},{"el":25,"az":125,"sid":{"sat":21,"code":0}},{"el":70,"az":109,"sid":{"sat":25,"code":0}},{"el":1,"az":161,"sid":{"sat":26,"code":0}},{"el":55,"az":161,"sid":{"sat":29,"code":0}},{"el":14,"az":149,"sid":{"sat":31,"code":0}},{"el":22,"az":21,"sid":{"sat":4,"code":3}},{"el":33,"az":50,"sid":{"sat":5,"code":3}},{"el":14,"az":95,"sid":{"sat":9,"code":3}},{"el":41,"az":113,"sid":{"sat":10,"code":3}},{"el":37,"az":152,"sid":{"sat":11,"code":3}},{"el":3,"az":170,"sid":{"sat":12,"code":3}},{"el":7,"az":34,"sid":{"sat":19,"code":3}},{"el":49,"az":12,"sid":{"sat":20,"code":3}},{"el":37,"az":149,"sid":{"sat":21,"code":3}},{"el":41,"az":148,"sid":{"sat":12,"code":12}},{"el":32,"az":35,"sid":{"sat":19,"code":12}},{"el":2,"az":15,"sid":{"sat":20,"code":12}},{"el":36,"az":67,"sid":{"sat":22,"code":12}},{"el":35,"az":130,"sid":{"sat":24,"code":12}},{"el":14,"az":157,"sid":{"sat":25,"code":12}},{"el":21,"az":103,"sid":{"sat":26,"code":12}},{"el":17,"az":142,"sid":{"sat":34,"code":12}},{"el":45,"az":34,"sid":{"sat":35,"code":12}},{"el":50,"az":139,"sid":{"sat":11,"code":14}},{"el":60,"az":15,"sid":{"sat":12,"code":14}},{"el":54,"az":108,"sid":{"sat":24,"code":14}},{"el":41,"az":151,"sid":{"sat":25,"code":14}},{"el":17,"az":85,"sid":{"sat":31,"code":14}},{"el":15,"az":32,"sid":{"sat":33,"code":14}}]} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MggEUy8QAAAAAAE=","wn":2098,"tow":271536900,"crc":6113} -{"length":16,"flags":17,"ns":899999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EQRTLxDkBwMZAxkS/uikNQ==","day":25,"tow":271536900,"year":2020,"crc":31795,"minutes":25,"month":3,"seconds":18} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-18.151081056845385,"preamble":85,"sender":22963,"msg_type":522,"payload":"BFMvEME47+1l6kJAwfAIHVaSXsAwMoY/rSYywAECWwQPBg==","lat":37.83123563938853,"tow":271536900,"h_accuracy":513,"crc":4216,"lon":-122.28650594590273} -{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"BFMvEAgAAAD6////8/////EAywIPAg==","n":8,"d":-13,"tow":271536900,"h_accuracy":241,"crc":54590,"e":-6} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"BFMvEJsAhwBMAEgAcgAG","tow":271536900,"crc":7075,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"BFMvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271536900,"h_accuracy":0,"crc":46344,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"BFMvEP//","tow":271536900,"crc":40582} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":249,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":3,"i":110568387},"flags":15,"cn0":212,"P":1052023104,"D":{"f":212,"i":-198},"lock":15,"sid":{"sat":5,"code":0}},{"L":{"f":42,"i":121776967},"flags":15,"cn0":178,"P":1158669313,"D":{"f":13,"i":2169},"lock":15,"sid":{"sat":21,"code":0}},{"L":{"f":140,"i":123392859},"flags":15,"cn0":186,"P":1174043621,"D":{"f":127,"i":-2478},"lock":15,"sid":{"sat":2,"code":0}},{"L":{"f":93,"i":128747188},"flags":15,"cn0":163,"P":1224988756,"D":{"f":110,"i":-406},"lock":15,"sid":{"sat":31,"code":0}},{"L":{"f":65,"i":107848222},"flags":15,"cn0":216,"P":1026141648,"D":{"f":98,"i":-1140},"lock":15,"sid":{"sat":25,"code":0}},{"L":{"f":111,"i":114164104},"flags":15,"cn0":206,"P":1086235230,"D":{"f":46,"i":-2975},"lock":15,"sid":{"sat":12,"code":0}},{"L":{"f":86,"i":110728288},"flags":15,"cn0":211,"P":1053544549,"D":{"f":73,"i":1480},"lock":15,"sid":{"sat":29,"code":0}},{"L":{"f":73,"i":84037596},"flags":15,"cn0":204,"P":1026141694,"D":{"f":216,"i":-889},"lock":15,"sid":{"sat":25,"code":1}},{"L":{"f":12,"i":88959074},"flags":15,"cn0":188,"P":1086235173,"D":{"f":190,"i":-2318},"lock":15,"sid":{"sat":12,"code":1}},{"L":{"f":213,"i":100322486},"flags":15,"cn0":150,"P":1224988666,"D":{"f":236,"i":-318},"lock":15,"sid":{"sat":31,"code":1}},{"L":{"f":246,"i":86281784},"flags":15,"cn0":194,"P":1053544476,"D":{"f":175,"i":1153},"lock":15,"sid":{"sat":29,"code":1}},{"L":{"f":248,"i":86157213},"flags":15,"cn0":194,"P":1052023027,"D":{"f":234,"i":-154},"lock":15,"sid":{"sat":5,"code":1}},{"L":{"f":161,"i":112910966},"flags":15,"cn0":213,"P":1056487067,"D":{"f":203,"i":1148},"lock":15,"sid":{"sat":11,"code":3}},{"L":{"f":87,"i":123434487},"flags":15,"cn0":177,"P":1155765471,"D":{"f":101,"i":-4408},"lock":15,"sid":{"sat":9,"code":3}}],"payload":"aFMvEAAAAAAyCEBAmbQ+wyOXBgM6/9TUDw8FAAHkD0VHK0IHKnkIDbIPDxUA5Xv6RVvTWgeMUvZ/ug8PAgBU2ANJtIasB11q/m6jDw8fANCtKT0eom0GQYz7YtgPDxkAXqK+QIgBzgZvYfQuzg8PDABl0Ms+YJSZBlbIBUnTDw8dAP6tKT3cTwIFSYf82MwPDxkBJaK+QGJoTQUM8va+vA8PDAH61wNJtsz6BdXC/uyWDw8fARzQyz44jiQF9oEEr8IPDx0B85i0Pp2nIgX4Zv/qwg8PBQGbtvg+duK6BqF8BMvVDw8LA9+U40T3dVsHV8juZbEPDwkD","header":{"n_obs":64,"t":{"ns_residual":0,"wn":2098,"tow":271537000}},"crc":50169} -{"length":249,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":124,"i":109798170},"flags":15,"cn0":174,"P":1026640267,"D":{"f":9,"i":-1214},"lock":15,"sid":{"sat":20,"code":3}},{"L":{"f":237,"i":114810371},"flags":15,"cn0":208,"P":1073882391,"D":{"f":39,"i":2184},"lock":15,"sid":{"sat":5,"code":3}},{"L":{"f":235,"i":111673016},"flags":15,"cn0":207,"P":1047478346,"D":{"f":180,"i":-3057},"lock":15,"sid":{"sat":10,"code":3}},{"L":{"f":221,"i":120468663},"flags":15,"cn0":180,"P":1124833331,"D":{"f":177,"i":-1333},"lock":15,"sid":{"sat":4,"code":3}},{"L":{"f":240,"i":113382949},"flags":15,"cn0":203,"P":1059415271,"D":{"f":1,"i":1619},"lock":15,"sid":{"sat":21,"code":3}},{"L":{"f":236,"i":96004610},"flags":15,"cn0":173,"P":1155765571,"D":{"f":213,"i":-3429},"lock":15,"sid":{"sat":9,"code":4}},{"L":{"f":202,"i":85398612},"flags":15,"cn0":205,"P":1026640582,"D":{"f":253,"i":-944},"lock":15,"sid":{"sat":20,"code":4}},{"L":{"f":10,"i":87819651},"flags":15,"cn0":200,"P":1056487374,"D":{"f":21,"i":894},"lock":15,"sid":{"sat":11,"code":4}},{"L":{"f":191,"i":89296959},"flags":15,"cn0":194,"P":1073882640,"D":{"f":207,"i":1699},"lock":15,"sid":{"sat":5,"code":4}},{"L":{"f":231,"i":93697839},"flags":15,"cn0":173,"P":1124833553,"D":{"f":24,"i":-1035},"lock":15,"sid":{"sat":4,"code":4}},{"L":{"f":83,"i":121614040},"flags":15,"cn0":201,"P":1167734619,"D":{"f":226,"i":-1502},"lock":15,"sid":{"sat":35,"code":12}},{"L":{"f":113,"i":129280301},"flags":15,"cn0":172,"P":1241346179,"D":{"f":245,"i":-3010},"lock":15,"sid":{"sat":26,"code":12}},{"L":{"f":94,"i":132894880},"flags":15,"cn0":161,"P":1276053047,"D":{"f":15,"i":2248},"lock":15,"sid":{"sat":34,"code":12}},{"L":{"f":29,"i":125181022},"flags":15,"cn0":189,"P":1201984979,"D":{"f":39,"i":-1311},"lock":15,"sid":{"sat":24,"code":12}}],"payload":"aFMvEAAAAAAyCEGLSTE9GmOLBnxC+wmuDw8UAxclAkAD3tcG7YgIJ9APDwUDSkBvPrj+pwbrD/S0zw8PCgMzmAtDtzQuB93L+rG0Dw8EA+dkJT8lFsIG8FMGAcsPDxUDQ5XjRALquAXsm/LVrQ8PCQTGSjE9VBQXBcpQ/P3NDw8UBM63+D6DBTwFCn4DFcgPDwsEECYCQD+QUgW/owbPwg8PBQQRmQtDL7eVBef1+xitDw8EBFs3mkXYrj8HUyL64skPDyMMg3D9SS2ptAdxPvT1rA8PGgw3Bg9MoNDrB17ICA+hDw8iDNPVpEdeHHYHHeH6J70PDxgM","header":{"n_obs":65,"t":{"ns_residual":0,"wn":2098,"tow":271537000}},"crc":28423} -{"length":249,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":197,"i":134642134},"flags":15,"cn0":161,"P":1292830370,"D":{"f":177,"i":1314},"lock":15,"sid":{"sat":25,"code":12}},{"L":{"f":149,"i":121063316},"flags":15,"cn0":184,"P":1162446825,"D":{"f":27,"i":1610},"lock":15,"sid":{"sat":12,"code":12}},{"L":{"f":161,"i":124521643},"flags":15,"cn0":185,"P":1195653585,"D":{"f":26,"i":-301},"lock":15,"sid":{"sat":19,"code":12}},{"L":{"f":231,"i":124650163},"flags":15,"cn0":193,"P":1196887666,"D":{"f":129,"i":2381},"lock":15,"sid":{"sat":22,"code":12}},{"L":{"f":88,"i":93613844},"flags":15,"cn0":210,"P":1162446767,"D":{"f":134,"i":1245},"lock":15,"sid":{"sat":12,"code":13}},{"L":{"f":44,"i":116449519},"flags":15,"cn0":194,"P":1107980310,"D":{"f":112,"i":-1029},"lock":15,"sid":{"sat":12,"code":14}},{"L":{"f":219,"i":132450086},"flags":15,"cn0":191,"P":1260220601,"D":{"f":85,"i":1080},"lock":15,"sid":{"sat":25,"code":14}},{"L":{"f":125,"i":125398672},"flags":15,"cn0":188,"P":1193128641,"D":{"f":203,"i":1044},"lock":15,"sid":{"sat":11,"code":14}},{"L":{"f":247,"i":118453863},"flags":15,"cn0":203,"P":1127050904,"D":{"f":111,"i":-1752},"lock":15,"sid":{"sat":24,"code":14}},{"L":{"f":21,"i":143393950},"flags":15,"cn0":157,"P":1364348023,"D":{"f":246,"i":-3173},"lock":15,"sid":{"sat":31,"code":14}},{"L":{"f":149,"i":144573120},"flags":15,"cn0":151,"P":1375567470,"D":{"f":0,"i":-2137},"lock":15,"sid":{"sat":33,"code":14}},{"L":{"f":74,"i":101487727},"flags":15,"cn0":201,"P":1260220569,"D":{"f":70,"i":826},"lock":15,"sid":{"sat":25,"code":20}},{"L":{"f":221,"i":90763413},"flags":15,"cn0":215,"P":1127051459,"D":{"f":145,"i":-1343},"lock":15,"sid":{"sat":24,"code":20}},{"L":{"f":243,"i":96084674},"flags":15,"cn0":194,"P":1193128446,"D":{"f":9,"i":801},"lock":15,"sid":{"sat":11,"code":20}}],"payload":"aFMvEAAAAAAyCEKiBg9N1nkGCMUiBbGhDw8ZDOmHSUWURzcHlUoGG7gPDwwM0TlER6sMbAeh0/4auQ8PEwxyDldHswJuB+dNCYHBDw8WDK+HSUUUb5QFWN0EhtIPDwwNFnAKQu/g8AYs+/twwg8PDA65cB1LJgflB9s4BFW/Dw8ZDsGyHUeQbnkHfRQEy7wPDwsOmG4tQ2d2Dwf3KPlvyw8PGA53TFJRngSMCBWb8/adDw8fDm5+/VHAAp4Ilaf3AJcPDyEOmXAdS2+UDAZKOgNGyQ8PGRTDcC1DlfBoBd3B+pHXDw8YFP6xHUfCIroF8yEDCcIPDwsU","header":{"n_obs":66,"t":{"ns_residual":0,"wn":2098,"tow":271537000}},"crc":48757} -{"length":62,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":240,"i":109873327},"flags":15,"cn0":174,"P":1364348136,"D":{"f":51,"i":-2433},"lock":15,"sid":{"sat":31,"code":20}},{"L":{"f":66,"i":89227584},"flags":15,"cn0":206,"P":1107980148,"D":{"f":82,"i":-789},"lock":15,"sid":{"sat":12,"code":20}},{"L":{"f":39,"i":110776877},"flags":15,"cn0":169,"P":1375567448,"D":{"f":253,"i":-1642},"lock":15,"sid":{"sat":33,"code":20}}],"payload":"aFMvEAAAAAAyCEPoTFJRr4iMBvB/9jOuDw8fFHRvCkJAgVEFQuv8Us4PDwwUWH79US1SmgYnlvn9qQ8PIRQ=","header":{"n_obs":67,"t":{"ns_residual":0,"wn":2098,"tow":271537000}},"crc":21370} -{"length":9,"l2ca_bias":0,"preamble":85,"l2p_bias":0,"sender":22963,"msg_type":117,"payload":"/wAAAAAAAAAA","l1ca_bias":0,"mask":255,"crc":49809,"l1p_bias":0} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MghoUy8QAAAAAAE=","wn":2098,"tow":271537000,"crc":23252} -{"length":16,"flags":17,"ns":999999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EWhTLxDkBwMZAxkS/smaOw==","day":25,"tow":271537000,"year":2020,"crc":379,"minutes":25,"month":3,"seconds":18} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-18.153477352967236,"preamble":85,"sender":22963,"msg_type":522,"payload":"aFMvEIdWz+1l6kJAF+IMHVaSXsDCq7NKSicywAECWwQPBg==","lat":37.83123562454153,"tow":271537000,"h_accuracy":513,"crc":453,"lon":-122.28650594957467} -{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"aFMvEAEAAAAFAAAAHQAAAPEAywIPAg==","n":1,"d":29,"tow":271537000,"h_accuracy":241,"crc":37938,"e":5} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"aFMvEJsAhwBMAEgAcgAG","tow":271537000,"crc":4169,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"aFMvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271537000,"h_accuracy":0,"crc":62237,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"aFMvEP//","tow":271537000,"crc":51837} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":4,"flags":2147616000,"preamble":85,"sender":22963,"msg_type":65535,"payload":"AAUCgA==","crc":40942} -{"length":24,"z":3890655.0240602265,"preamble":85,"sender":22963,"msg_type":72,"payload":"UO0a3iqORMHK1UJhIkRQwc9nFIPvrk1B","crc":2168,"x":-2694229.735196747,"y":-4264073.519704292} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgjMUy8QAAAAAAE=","wn":2098,"tow":271537100,"crc":56949} -{"length":16,"flags":17,"ns":99999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EcxTLxDkBwMZAxkT/uD1BQ==","day":25,"tow":271537100,"year":2020,"crc":11584,"minutes":25,"month":3,"seconds":19} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-18.14732716567941,"preamble":85,"sender":22963,"msg_type":522,"payload":"zFMvEBEWru1l6kJAGesIHVaSXsDLZ647tyUywAECWwQPBg==","lat":37.83123560905745,"tow":271537100,"h_accuracy":513,"crc":963,"lon":-122.28650594588215} -{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"zFMvEP////8HAAAA9/////EAywIPAg==","n":-1,"d":-9,"tow":271537100,"h_accuracy":241,"crc":19704,"e":7} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"zFMvEJsAhwBMAEgAcgAG","tow":271537100,"crc":17149,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"zFMvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271537100,"h_accuracy":0,"crc":33892,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"zFMvEP//","tow":271537100,"crc":11764} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MggwVC8QAAAAAAE=","wn":2098,"tow":271537200,"crc":47124} -{"length":16,"flags":17,"ns":199999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"ETBULxDkBwMZAxkT/sHrCw==","day":25,"tow":271537200,"year":2020,"crc":15472,"minutes":25,"month":3,"seconds":19} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-18.146840802959957,"preamble":85,"sender":22963,"msg_type":522,"payload":"MFQvEPhInO1l6kJAnqAkHVaSXsBwbt5blyUywAECWwQPBg==","lat":37.83123560076814,"tow":271537200,"h_accuracy":513,"crc":18276,"lon":-122.28650597168823} -{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"MFQvEAIAAAD4////GQAAAPEAywIPAg==","n":2,"d":25,"tow":271537200,"h_accuracy":241,"crc":56603,"e":-8} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"MFQvEJsAhwBMAEgAcgAG","tow":271537200,"crc":9097,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"MFQvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271537200,"h_accuracy":0,"crc":52258,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"MFQvEP//","tow":271537200,"crc":53375} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":139,"af0":-9.685755e-6,"w":0.7879862351781709,"dn":5.216288707933817e-9,"c_us":3.6917627e-6,"c_uc":-2.0805746e-6,"ecc":5.77498646453023e-3,"sqrta":5153.621828079224,"preamble":85,"toc":{"wn":2098,"tow":273600},"sender":22963,"msg_type":138,"omegadot":-8.661789369723447e-9,"payload":"BQDALAQAMggAAABAQDgAAAEAAABAsgBALsIAFJZDAKALtgDAdzYAAACxAACAMRHWGb5eZzY+T/dUY52P0T8AAAAgg6d3PwAAIDCfIbRARtfJCOom8b9M1QV73plCvqU6ueguN+k/EhTM+Tx17j/o1QJxDTj7vQCAIrcAAECrAAAAAMAsBAAyCBsbAA==","inc":0.9518113020755001,"inc_dot":-3.9608792722345795e-10,"tgd":-1.1175871e-8,"iode":27,"crc":17495,"common":{"health_bits":0,"fit_interval":14400,"valid":1,"sid":{"sat":5,"code":0},"toe":{"wn":2098,"tow":273600},"ura":2},"c_rs":-43.5625,"m0":0.2743905515707085,"af2":0,"c_rc":300.15625,"af1":-6.82121e-13,"c_is":3.7252903e-9,"c_ic":-1.8626451e-9,"omega0":-1.0720005362795333,"iodc":27} -{"length":139,"af0":-7.2387047e-6,"w":0.913959268152067,"dn":4.643050544549101e-9,"c_us":4.1704625e-6,"c_uc":-2.9560179e-6,"ecc":9.245076566003263e-3,"sqrta":5153.570272445679,"preamble":85,"toc":{"wn":2098,"tow":273600},"sender":22963,"msg_type":138,"omegadot":-8.311417632477088e-9,"payload":"GQDALAQAMggAAABAQDgAAAEAAADAMQAgX8IA/JZDAGBGtgDwizYAADa0AAAotFSYPIsW8TM+5hz4wc+O/z8AAAAsFe+CPwAAYP2RIbRAFhvTsJnQAEDKAtIKQNlBvuja0oEnP+0/Qj1ZqGzq7j/cS8aiBt3svQDk8rYAABgsAAAAAMAsBAAyCAUFAA==","inc":0.9661162651117723,"inc_dot":-2.100087477072978e-10,"tgd":5.5879354e-9,"iode":5,"crc":19841,"common":{"health_bits":0,"fit_interval":14400,"valid":1,"sid":{"sat":25,"code":0},"toe":{"wn":2098,"tow":273600},"ura":2},"c_rs":-55.78125,"m0":1.9723661019250414,"af2":0,"c_rc":301.96875,"af1":2.16005e-12,"c_is":-1.5646219e-7,"c_ic":-1.6950071e-7,"omega0":2.101855641786993,"iodc":5} -{"length":139,"af0":1.3691094e-4,"w":1.124390026032068,"dn":4.266606292706428e-9,"c_us":4.5280904e-6,"c_uc":-3.33786e-6,"ecc":8.09362216386944e-3,"sqrta":5153.721719741821,"preamble":85,"toc":{"wn":2098,"tow":273600},"sender":22963,"msg_type":138,"omegadot":-8.031048811133161e-9,"payload":"DADALAQAMggAAABAQDgAAAEAAABYsgCge8IApJZDAABgtgDwlzYAAKAyAAAgtI3VKOguUzI+msQrVfHbAUAAAACUY5OAPwAAoMK4IbRAOKAgCzJcAUCtOHejHT9BvuQZXGWA/fE/c6ROYnhS7z8M3+7JXEfxvcCPDzkAAJisAAAAAMAsBAAyCBcXAA==","inc":0.9788171691954076,"inc_dot":-2.5143904487404365e-10,"tgd":-1.2572855e-8,"iode":23,"crc":50178,"common":{"health_bits":0,"fit_interval":14400,"valid":1,"sid":{"sat":12,"code":0},"toe":{"wn":2098,"tow":273600},"ura":2},"c_rs":-62.90625,"m0":2.2323938993436743,"af2":0,"c_rc":301.28125,"af1":-4.3201e-12,"c_is":-1.4901161e-7,"c_ic":1.8626451e-8,"omega0":2.1700173253375645,"iodc":23} -{"length":139,"af0":-6.4762775e-5,"w":1.8704240804535182,"dn":3.736227057425242e-9,"c_us":1.2401491e-5,"c_uc":-9.741634e-7,"ecc":1.2328720185905695e-3,"sqrta":5153.613843917847,"preamble":85,"toc":{"wn":2098,"tow":273600},"sender":22963,"msg_type":138,"omegadot":-7.594244902211349e-9,"payload":"HQDALAQAMggAAABAQDgAAAEAAAAwsgCAYsEAABlDAMCCtQAQUDcAAOAyAACQMqWXiWwGDDA+XB/TSA2OvL8AAABACjNUPwAA4CSdIbRAtqOeydGKCMBFFRj0+k5AvgMu88xB7f0/FO/KteyN7z8ahhkPrDSlvUDRh7gAACKtAAAAAMAsBAAyCEREAA==","inc":0.9860747862471464,"inc_dot":-9.643258823294287e-12,"tgd":-1.0244548e-8,"iode":68,"crc":20617,"common":{"health_bits":0,"fit_interval":14400,"valid":1,"sid":{"sat":29,"code":0},"toe":{"wn":2098,"tow":273600},"ura":2},"c_rs":-14.15625,"m0":-0.11154253986307822,"af2":0,"c_rc":153,"af1":-9.208634e-12,"c_is":1.6763806e-8,"c_ic":2.6077032e-8,"omega0":-3.067782950547975,"iodc":68} -{"length":139,"af0":-4.2781373e-4,"w":-1.6429787675404337,"dn":4.696267046944317e-9,"c_us":7.232651e-6,"c_uc":4.408881e-6,"ecc":1.97759565198794e-2,"sqrta":5153.662273406982,"preamble":85,"toc":{"wn":2098,"tow":273600},"sender":22963,"msg_type":138,"omegadot":-7.878185300897237e-9,"payload":"AgDALAQAMggAAABAQDgAAAEAAACYsgCwpkIAuGpDAPCTNgCw8jYAAGg0AAAsNA3HXKiZKzQ+FOBzlwsNA8AAAAD6JUCUPwAAwIqpIbRAOU/fvEhCAcC2dBUDFOtAvp68qRqkSfq/uJiunyKq7j/puaCuBosEPjBM4LkAAOisAAAAAMAsBAAyCDQ0AA==","inc":0.9582684630193148,"inc_dot":5.978820470442458e-10,"tgd":-1.7695129e-8,"iode":52,"crc":18755,"common":{"health_bits":0,"fit_interval":14400,"valid":1,"sid":{"sat":2,"code":0},"toe":{"wn":2098,"tow":273600},"ura":2},"c_rs":83.34375,"m0":-2.3813697654950463,"af2":0,"c_rc":234.71875,"af1":-6.5938366e-12,"c_is":1.6018748e-7,"c_ic":2.1606684e-7,"omega0":-2.1573652988098755,"iodc":52} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgiUVC8QAAAAAAE=","wn":2098,"tow":271537300,"crc":15541} -{"length":16,"flags":17,"ns":299999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EZRULxDkBwMZAxkT/qLhEQ==","day":25,"tow":271537300,"year":2020,"crc":61519,"minutes":25,"month":3,"seconds":19} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-18.13790012760019,"preamble":85,"sender":22963,"msg_type":522,"payload":"lFQvEKMnhO1l6kJAGiI9HVaSXsA0KDpsTSMywAECWwQPBg==","lat":37.83123558953164,"tow":271537300,"h_accuracy":513,"crc":43062,"lon":-122.28650599451103} -{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"lFQvEPr///8CAAAA1f////EAywIPAg==","n":-6,"d":-43,"tow":271537300,"h_accuracy":241,"crc":4626,"e":2} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"lFQvEJsAhwBMAEgAcgAG","tow":271537300,"crc":28989,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"lFQvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271537300,"h_accuracy":0,"crc":47963,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"lFQvEP//","tow":271537300,"crc":14326} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":237,"states":[{"cn0":212,"mesid":{"sat":5,"code":0}},{"cn0":178,"mesid":{"sat":21,"code":0}},{"cn0":186,"mesid":{"sat":2,"code":0}},{"cn0":163,"mesid":{"sat":31,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":216,"mesid":{"sat":25,"code":0}},{"cn0":206,"mesid":{"sat":12,"code":0}},{"cn0":211,"mesid":{"sat":29,"code":0}},{"cn0":205,"mesid":{"sat":18,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":204,"mesid":{"sat":131,"code":2}},{"cn0":204,"mesid":{"sat":25,"code":1}},{"cn0":188,"mesid":{"sat":12,"code":1}},{"cn0":150,"mesid":{"sat":31,"code":1}},{"cn0":197,"mesid":{"sat":18,"code":1}},{"cn0":194,"mesid":{"sat":29,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":194,"mesid":{"sat":5,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":212,"mesid":{"sat":100,"code":3}},{"cn0":177,"mesid":{"sat":98,"code":3}},{"cn0":174,"mesid":{"sat":102,"code":3}},{"cn0":208,"mesid":{"sat":101,"code":3}},{"cn0":207,"mesid":{"sat":93,"code":3}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":180,"mesid":{"sat":106,"code":3}},{"cn0":203,"mesid":{"sat":104,"code":3}},{"cn0":173,"mesid":{"sat":98,"code":4}},{"cn0":205,"mesid":{"sat":102,"code":4}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":200,"mesid":{"sat":100,"code":4}},{"cn0":194,"mesid":{"sat":101,"code":4}},{"cn0":189,"mesid":{"sat":104,"code":4}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":173,"mesid":{"sat":106,"code":4}},{"cn0":200,"mesid":{"sat":35,"code":12}},{"cn0":172,"mesid":{"sat":26,"code":12}},{"cn0":161,"mesid":{"sat":34,"code":12}},{"cn0":189,"mesid":{"sat":24,"code":12}},{"cn0":160,"mesid":{"sat":25,"code":12}},{"cn0":184,"mesid":{"sat":12,"code":12}},{"cn0":185,"mesid":{"sat":19,"code":12}},{"cn0":193,"mesid":{"sat":22,"code":12}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":210,"mesid":{"sat":12,"code":13}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":195,"mesid":{"sat":12,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":192,"mesid":{"sat":25,"code":14}},{"cn0":189,"mesid":{"sat":11,"code":14}},{"cn0":203,"mesid":{"sat":24,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":158,"mesid":{"sat":31,"code":14}},{"cn0":152,"mesid":{"sat":33,"code":14}},{"cn0":201,"mesid":{"sat":25,"code":20}},{"cn0":215,"mesid":{"sat":24,"code":20}},{"cn0":194,"mesid":{"sat":11,"code":20}},{"cn0":174,"mesid":{"sat":31,"code":20}},{"cn0":206,"mesid":{"sat":12,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":169,"mesid":{"sat":33,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}}],"preamble":85,"sender":22963,"msg_type":97,"payload":"BQDUFQCyAgC6HwCjAAAAAAAAGQDYDADOHQDTEgDNAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwLMGQHMDAG8HwGWEgHFHQHCAAAABQHCAAAAAAAAAAAAAAAAZAPUYgOxZgOuZQPQXQPPAAAAagO0aAPLYgStZgTNAAAAZATIZQTCaAS9AAAAagStIwzIGgysIgyhGAy9GQygDAy4Ewy5FgzBAAAADA3SAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADA7DAAAAGQ7ACw69GA7LAAAAHw6eIQ6YGRTJGBTXCxTCHxSuDBTOAAAAIRSpAAAA","crc":58534} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"Mgj4VC8QAAAAAAE=","wn":2098,"tow":271537400,"crc":29056} -{"length":16,"flags":17,"ns":399999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EfhULxDkBwMZAxkT/oPXFw==","day":25,"tow":271537400,"year":2020,"crc":34214,"minutes":25,"month":3,"seconds":19} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-18.137786438032347,"preamble":85,"sender":22963,"msg_type":522,"payload":"+FQvEI8Vau1l6kJAQotjHVaSXsBnLtX4RSMywAECWwQPBg==","lat":37.83123557739156,"tow":271537400,"h_accuracy":513,"crc":3640,"lon":-122.28650603028385} -{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"+FQvEAQAAAD3////BwAAAPEAywIPAg==","n":4,"d":7,"tow":271537400,"h_accuracy":241,"crc":55964,"e":-9} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"+FQvEJsAhwBMAEgAcgAG","tow":271537400,"crc":31447,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"+FQvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271537400,"h_accuracy":0,"crc":64846,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"+FQvEP//","tow":271537400,"crc":25357} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":9,"l2ca_bias":0,"preamble":85,"l2p_bias":0,"sender":22963,"msg_type":117,"payload":"/wAAAAAAAAAA","l1ca_bias":0,"mask":255,"crc":49809,"l1p_bias":0} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MghcVS8QAAAAAAE=","wn":2098,"tow":271537500,"crc":45810} -{"length":16,"flags":17,"ns":499999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EVxVLxDkBwMZAxkT/mTNHQ==","day":25,"tow":271537500,"year":2020,"crc":50208,"minutes":25,"month":3,"seconds":19} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-18.141565761917843,"preamble":85,"sender":22963,"msg_type":522,"payload":"XFUvEGfgYu1l6kJAgQh0HVaSXsCjq12nPSQywAECWwQPBg==","lat":37.83123557403524,"tow":271537500,"h_accuracy":513,"crc":24986,"lon":-122.28650604564065} -{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"XFUvEP////8AAAAAEgAAAPEAywIPAg==","n":-1,"d":18,"tow":271537500,"h_accuracy":241,"crc":14091,"e":0} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"XFUvEJsAhwBMAEgAcgAG","tow":271537500,"crc":21250,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"XFUvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271537500,"h_accuracy":0,"crc":24513,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"XFUvEP//","tow":271537500,"crc":11989} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgjAVS8QAAAAAAE=","wn":2098,"tow":271537600,"crc":60334} -{"length":16,"flags":17,"ns":599999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EcBVLxDkBwMZAxkT/kXDIw==","day":25,"tow":271537600,"year":2020,"crc":10027,"minutes":25,"month":3,"seconds":19} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-18.14429355405878,"preamble":85,"sender":22963,"msg_type":522,"payload":"wFUvEKXgXu1l6kJAl7pzHVaSXsDBtB9s8CQywAECWwQPBg==","lat":37.831235572173036,"tow":271537600,"h_accuracy":513,"crc":56677,"lon":-122.2865060453572} -{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"wFUvEPz///8GAAAA/v////EAywIPAg==","n":-4,"d":-2,"tow":271537600,"h_accuracy":241,"crc":14193,"e":6} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"wFUvEJsAhwBMAEgAcgAG","tow":271537600,"crc":62829,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"wFUvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271537600,"h_accuracy":0,"crc":41456,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"wFUvEP//","tow":271537600,"crc":60306} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"message_type":25,"length":34,"data":[156,27,253,64,32,4,0,191,224,0,31,226,250,110,162,127,48,26,0,128,48,0,0,0,0,190,144],"preamble":85,"sender":22963,"msg_type":30583,"payload":"gwJBVS8QGZwb/UAgBAC/4AAf4vpuon8wGgCAMAAAAAC+kA==","tow":271537473,"crc":33970,"sid":{"sat":131,"code":2}} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MggkVi8QAAAAAAE=","wn":2098,"tow":271537700,"crc":63651} -{"length":16,"flags":17,"ns":699999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"ESRWLxDkBwMZAxkT/ia5KQ==","day":25,"tow":271537700,"year":2020,"crc":22230,"minutes":25,"month":3,"seconds":19} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-18.144356748724352,"preamble":85,"sender":22963,"msg_type":522,"payload":"JFYvEJm3bu1l6kJAy/VoHVaSXsBdulqQ9CQywAECWwQPBg==","lat":37.83123557954895,"tow":271537700,"h_accuracy":513,"crc":34250,"lon":-122.28650603532803} -{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"JFYvEAsAAAAJAAAABAAAAPEAywIPAg==","n":11,"d":4,"tow":271537700,"h_accuracy":241,"crc":44221,"e":9} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"JFYvEJsAhwBMAEgAcgAG","tow":271537700,"crc":115,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"JFYvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271537700,"h_accuracy":0,"crc":28136,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"JFYvEP//","tow":271537700,"crc":35033} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgiIVi8QAAAAAAE=","wn":2098,"tow":271537800,"crc":22013} -{"length":16,"flags":17,"ns":799999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EYhWLxDkBwMZAxkT/gevLw==","day":25,"tow":271537800,"year":2020,"crc":23490,"minutes":25,"month":3,"seconds":19} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-18.14805988196711,"preamble":85,"sender":22963,"msg_type":522,"payload":"iFYvEAS6Wu1l6kJAp7tiHVaSXsD75Z5A5yUywAECWwQPBg==","lat":37.831235570240125,"tow":271537800,"h_accuracy":513,"crc":30570,"lon":-122.28650602952858} -{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"iFYvEPn///8CAAAAFQAAAPEAywIPAg==","n":-7,"d":21,"tow":271537800,"h_accuracy":241,"crc":50724,"e":2} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"iFYvEJsAhwBMAEgAcgAG","tow":271537800,"crc":30082,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"iFYvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271537800,"h_accuracy":0,"crc":17458,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"iFYvEP//","tow":271537800,"crc":25106} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":237,"states":[{"cn0":212,"mesid":{"sat":5,"code":0}},{"cn0":178,"mesid":{"sat":21,"code":0}},{"cn0":186,"mesid":{"sat":2,"code":0}},{"cn0":164,"mesid":{"sat":31,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":216,"mesid":{"sat":25,"code":0}},{"cn0":206,"mesid":{"sat":12,"code":0}},{"cn0":211,"mesid":{"sat":29,"code":0}},{"cn0":205,"mesid":{"sat":18,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":204,"mesid":{"sat":131,"code":2}},{"cn0":204,"mesid":{"sat":25,"code":1}},{"cn0":188,"mesid":{"sat":12,"code":1}},{"cn0":149,"mesid":{"sat":31,"code":1}},{"cn0":196,"mesid":{"sat":18,"code":1}},{"cn0":194,"mesid":{"sat":29,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":193,"mesid":{"sat":5,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":212,"mesid":{"sat":11,"code":3}},{"cn0":177,"mesid":{"sat":9,"code":3}},{"cn0":174,"mesid":{"sat":20,"code":3}},{"cn0":207,"mesid":{"sat":5,"code":3}},{"cn0":207,"mesid":{"sat":10,"code":3}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":181,"mesid":{"sat":4,"code":3}},{"cn0":203,"mesid":{"sat":21,"code":3}},{"cn0":173,"mesid":{"sat":9,"code":4}},{"cn0":205,"mesid":{"sat":20,"code":4}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":200,"mesid":{"sat":11,"code":4}},{"cn0":195,"mesid":{"sat":5,"code":4}},{"cn0":189,"mesid":{"sat":0,"code":4}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":172,"mesid":{"sat":4,"code":4}},{"cn0":201,"mesid":{"sat":35,"code":12}},{"cn0":171,"mesid":{"sat":26,"code":12}},{"cn0":161,"mesid":{"sat":34,"code":12}},{"cn0":188,"mesid":{"sat":24,"code":12}},{"cn0":160,"mesid":{"sat":25,"code":12}},{"cn0":184,"mesid":{"sat":12,"code":12}},{"cn0":185,"mesid":{"sat":19,"code":12}},{"cn0":193,"mesid":{"sat":22,"code":12}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":209,"mesid":{"sat":12,"code":13}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":195,"mesid":{"sat":12,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":192,"mesid":{"sat":25,"code":14}},{"cn0":190,"mesid":{"sat":11,"code":14}},{"cn0":204,"mesid":{"sat":24,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":159,"mesid":{"sat":31,"code":14}},{"cn0":152,"mesid":{"sat":33,"code":14}},{"cn0":201,"mesid":{"sat":25,"code":20}},{"cn0":215,"mesid":{"sat":24,"code":20}},{"cn0":193,"mesid":{"sat":11,"code":20}},{"cn0":175,"mesid":{"sat":31,"code":20}},{"cn0":206,"mesid":{"sat":12,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":170,"mesid":{"sat":33,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}}],"preamble":85,"sender":22963,"msg_type":97,"payload":"BQDUFQCyAgC6HwCkAAAAAAAAGQDYDADOHQDTEgDNAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwLMGQHMDAG8HwGVEgHEHQHCAAAABQHBAAAAAAAAAAAAAAAACwPUCQOxFAOuBQPPCgPPAAAABAO1FQPLCQStFATNAAAACwTIBQTDAAS9AAAABASsIwzJGgyrIgyhGAy8GQygDAy4Ewy5FgzBAAAADA3RAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADA7DAAAAGQ7ACw6+GA7MAAAAHw6fIQ6YGRTJGBTXCxTBHxSvDBTOAAAAIRSqAAAA","crc":24828} -{"length":128,"preamble":85,"sender":22963,"msg_type":151,"payload":"AgAaHQUAKzUMAFEtFQB9GRkAbUYaAKEBHQChNx8AlQ4EAxUWBQMyIQkDXw4KA3EpCwOYJQwDqgMTAyIHFAMMMRUDlSUMDJQpEwwjIBQMDwIWDEMkGAyCIxkMnQ4aDGcVIgyOESMMIi0LDosyDA4PPBgObDYZDpcpHw5VESEOIA8=","crc":34187,"azel":[{"el":29,"az":26,"sid":{"sat":2,"code":0}},{"el":53,"az":43,"sid":{"sat":5,"code":0}},{"el":45,"az":81,"sid":{"sat":12,"code":0}},{"el":25,"az":125,"sid":{"sat":21,"code":0}},{"el":70,"az":109,"sid":{"sat":25,"code":0}},{"el":1,"az":161,"sid":{"sat":26,"code":0}},{"el":55,"az":161,"sid":{"sat":29,"code":0}},{"el":14,"az":149,"sid":{"sat":31,"code":0}},{"el":22,"az":21,"sid":{"sat":4,"code":3}},{"el":33,"az":50,"sid":{"sat":5,"code":3}},{"el":14,"az":95,"sid":{"sat":9,"code":3}},{"el":41,"az":113,"sid":{"sat":10,"code":3}},{"el":37,"az":152,"sid":{"sat":11,"code":3}},{"el":3,"az":170,"sid":{"sat":12,"code":3}},{"el":7,"az":34,"sid":{"sat":19,"code":3}},{"el":49,"az":12,"sid":{"sat":20,"code":3}},{"el":37,"az":149,"sid":{"sat":21,"code":3}},{"el":41,"az":148,"sid":{"sat":12,"code":12}},{"el":32,"az":35,"sid":{"sat":19,"code":12}},{"el":2,"az":15,"sid":{"sat":20,"code":12}},{"el":36,"az":67,"sid":{"sat":22,"code":12}},{"el":35,"az":130,"sid":{"sat":24,"code":12}},{"el":14,"az":157,"sid":{"sat":25,"code":12}},{"el":21,"az":103,"sid":{"sat":26,"code":12}},{"el":17,"az":142,"sid":{"sat":34,"code":12}},{"el":45,"az":34,"sid":{"sat":35,"code":12}},{"el":50,"az":139,"sid":{"sat":11,"code":14}},{"el":60,"az":15,"sid":{"sat":12,"code":14}},{"el":54,"az":108,"sid":{"sat":24,"code":14}},{"el":41,"az":151,"sid":{"sat":25,"code":14}},{"el":17,"az":85,"sid":{"sat":31,"code":14}},{"el":15,"az":32,"sid":{"sat":33,"code":14}}]} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgjsVi8QAAAAAAE=","wn":2098,"tow":271537900,"crc":12599} -{"length":16,"flags":17,"ns":899999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EexWLxDkBwMZAxkT/uikNQ==","day":25,"tow":271537900,"year":2020,"crc":38124,"minutes":25,"month":3,"seconds":19} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-18.15102221152946,"preamble":85,"sender":22963,"msg_type":522,"payload":"7FYvEOAIWO1l6kJAuDtkHVaSXsAXfUNkqSYywAECWwQPBg==","lat":37.831235568986585,"tow":271537900,"h_accuracy":513,"crc":43377,"lon":-122.2865060309258} -{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"7FYvEP7/////////FAAAAPEAywIPAg==","n":-2,"d":20,"tow":271537900,"h_accuracy":241,"crc":39507,"e":-1} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"7FYvEJsAhwBMAEgAcgAG","tow":271537900,"crc":22829,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"7FYvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271537900,"h_accuracy":0,"crc":23684,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"7FYvEP//","tow":271537900,"crc":15275} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":249,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":106,"i":110568585},"flags":15,"cn0":212,"P":1052024990,"D":{"f":58,"i":-199},"lock":15,"sid":{"sat":5,"code":0}},{"L":{"f":109,"i":121774799},"flags":15,"cn0":178,"P":1158648690,"D":{"f":248,"i":2167},"lock":15,"sid":{"sat":21,"code":0}},{"L":{"f":89,"i":123395339},"flags":15,"cn0":185,"P":1174067224,"D":{"f":113,"i":-2479},"lock":15,"sid":{"sat":2,"code":0}},{"L":{"f":168,"i":128747595},"flags":15,"cn0":164,"P":1224992623,"D":{"f":106,"i":-405},"lock":15,"sid":{"sat":31,"code":0}},{"L":{"f":223,"i":107849362},"flags":15,"cn0":216,"P":1026152503,"D":{"f":5,"i":-1140},"lock":15,"sid":{"sat":25,"code":0}},{"L":{"f":131,"i":114167080},"flags":15,"cn0":206,"P":1086263548,"D":{"f":138,"i":-2976},"lock":15,"sid":{"sat":12,"code":0}},{"L":{"f":182,"i":110726808},"flags":15,"cn0":211,"P":1053530475,"D":{"f":237,"i":1480},"lock":15,"sid":{"sat":29,"code":0}},{"L":{"f":18,"i":84038485},"flags":15,"cn0":204,"P":1026152546,"D":{"f":51,"i":-889},"lock":15,"sid":{"sat":25,"code":1}},{"L":{"f":16,"i":88961393},"flags":15,"cn0":188,"P":1086263495,"D":{"f":63,"i":-2319},"lock":15,"sid":{"sat":12,"code":1}},{"L":{"f":54,"i":100322804},"flags":15,"cn0":150,"P":1224992527,"D":{"f":236,"i":-321},"lock":15,"sid":{"sat":31,"code":1}},{"L":{"f":3,"i":86280632},"flags":15,"cn0":194,"P":1053530394,"D":{"f":207,"i":1152},"lock":15,"sid":{"sat":29,"code":1}},{"L":{"f":143,"i":86157368},"flags":15,"cn0":193,"P":1052024911,"D":{"f":154,"i":-156},"lock":15,"sid":{"sat":5,"code":1}},{"L":{"f":124,"i":112909819},"flags":15,"cn0":212,"P":1056476324,"D":{"f":69,"i":1147},"lock":15,"sid":{"sat":11,"code":3}},{"L":{"f":27,"i":123438896},"flags":15,"cn0":177,"P":1155806752,"D":{"f":91,"i":-4408},"lock":15,"sid":{"sat":9,"code":3}}],"payload":"UFcvEAAAAAAyCECeoLQ+iSSXBmo5/zrUDw8FAHKTD0XPIkIHbXcI+LIPDxUAGNj6RQvdWgdZUfZxuQ8PAgBv5wNJS4isB6hr/mqkDw8fADfYKT2Spm0G34z7BdgPDxkA/BC/QCgNzgaDYPSKzg8PDABrmcs+mI6ZBrbIBe3TDw8dAGLYKT1VUwIFEof8M8wPDxkBxxC/QHFxTQUQ8fY/vA8PDAEP5wNJ9M36BTa//uyWDw8fARqZyz64iSQFA4AEz8IPDx0BT6C0PjioIgWPZP+awQ8PBQGkjPg++926Bnx7BEXUDw8LAyA25EQwh1sHG8juW7EPDwkD","header":{"n_obs":64,"t":{"ns_residual":0,"wn":2098,"tow":271538000}},"crc":60154} -{"length":249,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":127,"i":109799384},"flags":15,"cn0":174,"P":1026651596,"D":{"f":147,"i":-1214},"lock":15,"sid":{"sat":20,"code":3}},{"L":{"f":216,"i":114808188},"flags":15,"cn0":207,"P":1073861956,"D":{"f":237,"i":2182},"lock":15,"sid":{"sat":5,"code":3}},{"L":{"f":233,"i":111676073},"flags":15,"cn0":207,"P":1047507007,"D":{"f":240,"i":-3057},"lock":15,"sid":{"sat":10,"code":3}},{"L":{"f":186,"i":120469997},"flags":15,"cn0":181,"P":1124845815,"D":{"f":42,"i":-1335},"lock":15,"sid":{"sat":4,"code":3}},{"L":{"f":112,"i":113381331},"flags":15,"cn0":203,"P":1059400158,"D":{"f":211,"i":1618},"lock":15,"sid":{"sat":21,"code":3}},{"L":{"f":249,"i":96008039},"flags":15,"cn0":174,"P":1155806873,"D":{"f":85,"i":-3429},"lock":15,"sid":{"sat":9,"code":4}},{"L":{"f":0,"i":85399557},"flags":15,"cn0":205,"P":1026651950,"D":{"f":54,"i":-944},"lock":15,"sid":{"sat":20,"code":4}},{"L":{"f":211,"i":87818758},"flags":15,"cn0":200,"P":1056476634,"D":{"f":202,"i":892},"lock":15,"sid":{"sat":11,"code":4}},{"L":{"f":201,"i":89295261},"flags":15,"cn0":195,"P":1073862234,"D":{"f":174,"i":1697},"lock":15,"sid":{"sat":5,"code":4}},{"L":{"f":89,"i":93698877},"flags":15,"cn0":172,"P":1124846001,"D":{"f":203,"i":-1038},"lock":15,"sid":{"sat":4,"code":4}},{"L":{"f":109,"i":121615542},"flags":15,"cn0":201,"P":1167749042,"D":{"f":238,"i":-1503},"lock":15,"sid":{"sat":35,"code":12}},{"L":{"f":251,"i":129283310},"flags":15,"cn0":172,"P":1241375081,"D":{"f":38,"i":-3011},"lock":15,"sid":{"sat":26,"code":12}},{"L":{"f":137,"i":132892632},"flags":15,"cn0":161,"P":1276031464,"D":{"f":104,"i":2249},"lock":15,"sid":{"sat":34,"code":12}},{"L":{"f":187,"i":125182334},"flags":15,"cn0":188,"P":1201997590,"D":{"f":206,"i":-1314},"lock":15,"sid":{"sat":24,"code":12}}],"payload":"UFcvEAAAAAAyCEHMdTE92GeLBn9C+5OuDw8UA0TVAUB81dcG2IYI7c8PDwUDP7BvPqkKqAbpD/Twzw8PCgP3yAtD7TkuB7rJ+iq1Dw8EA94pJT/TD8IGcFIG08sPDxUDmTbkRGf3uAX5m/JVrg8PCQQudzE9BRgXBQBQ/DbNDw8UBNqN+D4GAjwF03wDysgPDwsEWtYBQJ2JUgXJoQauww8PBQSxyQtDPbuVBVny+8usDw8EBLJvmkW2tD8HbSH67skPDyMMaeH9Se60tAf7PfQmrA8PGgzosQ5M2MfrB4nJCGihDw8iDBYHpUd+IXYHu976zrwPDxgM","header":{"n_obs":65,"t":{"ns_residual":0,"wn":2098,"tow":271538000}},"crc":47975} -{"length":249,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":122,"i":134640820},"flags":15,"cn0":160,"P":1292817759,"D":{"f":15,"i":1316},"lock":15,"sid":{"sat":25,"code":12}},{"L":{"f":232,"i":121061706},"flags":15,"cn0":185,"P":1162431374,"D":{"f":207,"i":1610},"lock":15,"sid":{"sat":12,"code":12}},{"L":{"f":42,"i":124521945},"flags":15,"cn0":185,"P":1195656482,"D":{"f":220,"i":-301},"lock":15,"sid":{"sat":19,"code":12}},{"L":{"f":155,"i":124647783},"flags":15,"cn0":193,"P":1196864813,"D":{"f":215,"i":2380},"lock":15,"sid":{"sat":22,"code":12}},{"L":{"f":164,"i":93612599},"flags":15,"cn0":209,"P":1162431306,"D":{"f":9,"i":1245},"lock":15,"sid":{"sat":12,"code":13}},{"L":{"f":112,"i":116450548},"flags":15,"cn0":195,"P":1107990094,"D":{"f":166,"i":-1030},"lock":15,"sid":{"sat":12,"code":14}},{"L":{"f":120,"i":132449008},"flags":15,"cn0":192,"P":1260210335,"D":{"f":143,"i":1078},"lock":15,"sid":{"sat":25,"code":14}},{"L":{"f":195,"i":125397628},"flags":15,"cn0":190,"P":1193118708,"D":{"f":18,"i":1043},"lock":15,"sid":{"sat":11,"code":14}},{"L":{"f":6,"i":118455617},"flags":15,"cn0":204,"P":1127067576,"D":{"f":243,"i":-1754},"lock":15,"sid":{"sat":24,"code":14}},{"L":{"f":143,"i":143397123},"flags":15,"cn0":159,"P":1364378215,"D":{"f":216,"i":-3172},"lock":15,"sid":{"sat":31,"code":14}},{"L":{"f":153,"i":144575260},"flags":15,"cn0":152,"P":1375587819,"D":{"f":77,"i":-2141},"lock":15,"sid":{"sat":33,"code":14}},{"L":{"f":0,"i":101486901},"flags":15,"cn0":201,"P":1260210309,"D":{"f":3,"i":826},"lock":15,"sid":{"sat":25,"code":20}},{"L":{"f":30,"i":90764757},"flags":15,"cn0":215,"P":1127068141,"D":{"f":62,"i":-1344},"lock":15,"sid":{"sat":24,"code":20}},{"L":{"f":51,"i":96083875},"flags":15,"cn0":193,"P":1193118513,"D":{"f":72,"i":800},"lock":15,"sid":{"sat":11,"code":20}}],"payload":"UFcvEAAAAAAyCEJf1Q5NtHQGCHokBQ+gDw8ZDI5LSUVKQTcH6EoGz7kPDwwMIkVER9kNbAcq0/7cuQ8PEwwttVZHZ/ltB5tMCdfBDw8WDEpLSUU3apQFpN0ECdEPDwwNTpYKQvTk8AZw+vumww8PDA6fSB1L8ALlB3g2BI/ADw8ZDvSLHUd8ankHwxMEEr4PDwsOuK8tQ0F9DwcGJvnzzA8PGA5nwlJRAxGMCI+c89ifDw8fDuvN/VEcC54ImaP3TZgPDyEOhUgdSzWRDAYAOgMDyQ8PGRTtsS1D1fVoBR7A+j7XDw8YFDGLHUejH7oFMyADSMEPDwsU","header":{"n_obs":66,"t":{"ns_residual":0,"wn":2098,"tow":271538000}},"crc":51351} -{"length":62,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":142,"i":109875759},"flags":15,"cn0":175,"P":1364378328,"D":{"f":122,"i":-2430},"lock":15,"sid":{"sat":31,"code":20}},{"L":{"f":234,"i":89228372},"flags":15,"cn0":206,"P":1107989938,"D":{"f":92,"i":-789},"lock":15,"sid":{"sat":12,"code":20}},{"L":{"f":236,"i":110778516},"flags":15,"cn0":170,"P":1375587812,"D":{"f":72,"i":-1641},"lock":15,"sid":{"sat":33,"code":20}}],"payload":"UFcvEAAAAAAyCEPYwlJRL5KMBo6C9nqvDw8fFLKVCkJUhFEF6uv8XM4PDwwU5M39UZRYmgbsl/lIqg8PIRQ=","header":{"n_obs":67,"t":{"ns_residual":0,"wn":2098,"tow":271538000}},"crc":19135} -{"length":9,"l2ca_bias":0,"preamble":85,"l2p_bias":0,"sender":22963,"msg_type":117,"payload":"/wAAAAAAAAAA","l1ca_bias":0,"mask":255,"crc":49809,"l1p_bias":0} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MghQVy8QAAAAAAE=","wn":2098,"tow":271538000,"crc":34884} -{"length":16,"flags":17,"ns":999999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EVBXLxDkBwMZAxkT/smaOw==","day":25,"tow":271538000,"year":2020,"crc":41556,"minutes":25,"month":3,"seconds":19} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-18.147618173295562,"preamble":85,"sender":22963,"msg_type":522,"payload":"UFcvEHeqZe1l6kJAAvl9HVaSXsCGmfpNyiUywAECWwQPBg==","lat":37.83123557533411,"tow":271538000,"h_accuracy":513,"crc":3554,"lon":-122.2865060548975} -{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"UFcvEAkAAADz////3v////EAywIPAg==","n":9,"d":-34,"tow":271538000,"h_accuracy":241,"crc":44245,"e":-13} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"UFcvEJsAhwBMAEgAcgAG","tow":271538000,"crc":6455,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"UFcvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271538000,"h_accuracy":0,"crc":7662,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"UFcvEP//","tow":271538000,"crc":25013} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":4,"flags":2147616000,"preamble":85,"sender":22963,"msg_type":65535,"payload":"AAUCgA==","crc":40942} -{"length":24,"z":3890655.0240602265,"preamble":85,"sender":22963,"msg_type":72,"payload":"UO0a3iqORMHK1UJhIkRQwc9nFIPvrk1B","crc":2168,"x":-2694229.735196747,"y":-4264073.519704292} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"bWFpbgAAAAAAAAAAAAAAAAAAAAAAAAx1AAA=","name":"main\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":47991,"stack_free":29964,"cpu":0} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"aWRsZQAAAAAAAAAAAAAAAAAAAAAxAHwAAAA=","name":"idle\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":11900,"stack_free":124,"cpu":49} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"cnBtc2cAAAAAAAAAAAAAAAAAAAABAAQOAAA=","name":"rpmsg\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":38839,"stack_free":3588,"cpu":1} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"U0JQAAAAAAAAAAAAAAAAAAAAAAAAAPz/AAA=","name":"SBP\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":51784,"stack_free":65532,"cpu":0} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"TkFQAAAAAAAAAAAAAAAAAAAAAAAAAASAAAA=","name":"NAP\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":33651,"stack_free":32772,"cpu":0} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"bWFuYWdlIFBWAAAAAAAAAAAAAAAAACwEAAA=","name":"manage PV\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":61814,"stack_free":1068,"cpu":0} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"SU1VAAAAAAAAAAAAAAAAAAAAAAAAAPQHAAA=","name":"IMU\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":14252,"stack_free":2036,"cpu":0} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"SU1VIGF1eAAAAAAAAAAAAAAAAAAAAEwIAAA=","name":"IMU aux\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":18976,"stack_free":2124,"cpu":0} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"bmRiAAAAAAAAAAAAAAAAAAAAAAAAAFAMAAA=","name":"ndb\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":26120,"stack_free":3152,"cpu":0} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"TkFQIFRyYWNraW5nAAAAAAAAAAAtAdR3AAA=","name":"NAP Tracking\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":25923,"stack_free":30676,"cpu":301} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"ZGVjb2RlAAAAAAAAAAAAAAAAAAAKANQGAAA=","name":"decode\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":6098,"stack_free":1748,"cpu":10} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"bWFuYWdlIGFjcQAAAAAAAAAAAADcAaR3AAA=","name":"manage acq\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":61048,"stack_free":30628,"cpu":476} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"c3lzdGVtIG1vbml0b3IAAAAAAAAAACwGAAA=","name":"system monitor\u0000\u0000\u0000\u0000\u0000\u0000","crc":58531,"stack_free":1580,"cpu":0} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"V2F0Y2hkb2cAAAAAAAAAAAAAAAAAAOQDAAA=","name":"Watchdog\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":44438,"stack_free":996,"cpu":0} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"c3RhcmxpbmcAAAAAAAAAAAAAAACWAPz/AAA=","name":"starling\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":61599,"stack_free":65532,"cpu":150} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"bWVfY2FsY19wdnQAAAAAAAAAAAAIAIwjAAA=","name":"me_calc_pvt\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":42361,"stack_free":9100,"cpu":8} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"UFBTAAAAAAAAAAAAAAAAAAAAAAAAAEgHAAA=","name":"PPS\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":38576,"stack_free":1864,"cpu":0} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"c3BlY3RydW0gYW5hbHl6ZXIAAAAAANQPAAA=","name":"spectrum analyzer\u0000\u0000\u0000","crc":50933,"stack_free":4052,"cpu":0} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"Mgi0Vy8QAAAAAAE=","wn":2098,"tow":271538100,"crc":21308} -{"length":16,"flags":17,"ns":99999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EbRXLxDkBwMZAxkU/uD1BQ==","day":25,"tow":271538100,"year":2020,"crc":27107,"minutes":25,"month":3,"seconds":20} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-18.147907787527018,"preamble":85,"sender":22963,"msg_type":522,"payload":"tFcvEKDzdu1l6kJAQCttHVaSXsCUQOZI3SUywAECWwQPBg==","lat":37.83123558338343,"tow":271538100,"h_accuracy":513,"crc":62296,"lon":-122.2865060392478} -{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"tFcvEAkAAAAKAAAACwAAAPEAywIPAg==","n":9,"d":11,"tow":271538100,"h_accuracy":241,"crc":21961,"e":10} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"tFcvEJsAhwBMAEgAcgAG","tow":271538100,"crc":24970,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"tFcvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271538100,"h_accuracy":0,"crc":49101,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"tFcvEP//","tow":271538100,"crc":60460} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MggYWC8QAAAAAAE=","wn":2098,"tow":271538200,"crc":10144} -{"length":16,"flags":17,"ns":199999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"ERhYLxDkBwMZAxkU/sHrCw==","day":25,"tow":271538200,"year":2020,"crc":63291,"minutes":25,"month":3,"seconds":20} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-18.145177959895403,"preamble":85,"sender":22963,"msg_type":522,"payload":"GFgvEJ4AdO1l6kJAvRxsHVaSXsDL2f1hKiUywAECWwQPBg==","lat":37.83123558201008,"tow":271538200,"h_accuracy":513,"crc":45143,"lon":-122.28650603826368} -{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"GFgvEPz////4////BwAAAPEAywIPAg==","n":-4,"d":7,"tow":271538200,"h_accuracy":241,"crc":13098,"e":-8} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"GFgvEJsAhwBMAEgAcgAG","tow":271538200,"crc":36630,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"GFgvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271538200,"h_accuracy":0,"crc":20705,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"GFgvEP//","tow":271538200,"crc":25374} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"Mgh8WC8QAAAAAAE=","wn":2098,"tow":271538300,"crc":17258} -{"length":16,"flags":17,"ns":299999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EXxYLxDkBwMZAxkU/qLhEQ==","day":25,"tow":271538300,"year":2020,"crc":17695,"minutes":25,"month":3,"seconds":20} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-18.146990921034842,"preamble":85,"sender":22963,"msg_type":522,"payload":"fFgvEH6Ca+1l6kJAhklYHVaSXsBQp24yoSUywAECWwQPBg==","lat":37.83123557805537,"tow":271538300,"h_accuracy":513,"crc":53427,"lon":-122.28650601980016} -{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"fFgvEPf///8QAAAAFAAAAPEAywIPAg==","n":-9,"d":20,"tow":271538300,"h_accuracy":241,"crc":25786,"e":16} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"fFgvEJsAhwBMAEgAcgAG","tow":271538300,"crc":41913,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"fFgvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271538300,"h_accuracy":0,"crc":18519,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"fFgvEP//","tow":271538300,"crc":15015} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":237,"states":[{"cn0":212,"mesid":{"sat":5,"code":0}},{"cn0":178,"mesid":{"sat":21,"code":0}},{"cn0":185,"mesid":{"sat":2,"code":0}},{"cn0":165,"mesid":{"sat":31,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":216,"mesid":{"sat":25,"code":0}},{"cn0":206,"mesid":{"sat":12,"code":0}},{"cn0":210,"mesid":{"sat":29,"code":0}},{"cn0":205,"mesid":{"sat":18,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":203,"mesid":{"sat":131,"code":2}},{"cn0":204,"mesid":{"sat":25,"code":1}},{"cn0":188,"mesid":{"sat":12,"code":1}},{"cn0":149,"mesid":{"sat":31,"code":1}},{"cn0":196,"mesid":{"sat":18,"code":1}},{"cn0":194,"mesid":{"sat":29,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":193,"mesid":{"sat":5,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":212,"mesid":{"sat":100,"code":3}},{"cn0":177,"mesid":{"sat":98,"code":3}},{"cn0":174,"mesid":{"sat":102,"code":3}},{"cn0":207,"mesid":{"sat":101,"code":3}},{"cn0":207,"mesid":{"sat":93,"code":3}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":181,"mesid":{"sat":106,"code":3}},{"cn0":203,"mesid":{"sat":104,"code":3}},{"cn0":173,"mesid":{"sat":98,"code":4}},{"cn0":205,"mesid":{"sat":102,"code":4}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":200,"mesid":{"sat":100,"code":4}},{"cn0":195,"mesid":{"sat":101,"code":4}},{"cn0":189,"mesid":{"sat":104,"code":4}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":172,"mesid":{"sat":106,"code":4}},{"cn0":201,"mesid":{"sat":35,"code":12}},{"cn0":172,"mesid":{"sat":26,"code":12}},{"cn0":161,"mesid":{"sat":34,"code":12}},{"cn0":188,"mesid":{"sat":24,"code":12}},{"cn0":160,"mesid":{"sat":25,"code":12}},{"cn0":184,"mesid":{"sat":12,"code":12}},{"cn0":185,"mesid":{"sat":19,"code":12}},{"cn0":192,"mesid":{"sat":22,"code":12}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":210,"mesid":{"sat":12,"code":13}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":195,"mesid":{"sat":12,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":192,"mesid":{"sat":25,"code":14}},{"cn0":189,"mesid":{"sat":11,"code":14}},{"cn0":204,"mesid":{"sat":24,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":158,"mesid":{"sat":31,"code":14}},{"cn0":152,"mesid":{"sat":33,"code":14}},{"cn0":201,"mesid":{"sat":25,"code":20}},{"cn0":215,"mesid":{"sat":24,"code":20}},{"cn0":194,"mesid":{"sat":11,"code":20}},{"cn0":174,"mesid":{"sat":31,"code":20}},{"cn0":206,"mesid":{"sat":12,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":170,"mesid":{"sat":33,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}}],"preamble":85,"sender":22963,"msg_type":97,"payload":"BQDUFQCyAgC5HwClAAAAAAAAGQDYDADOHQDSEgDNAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwLLGQHMDAG8HwGVEgHEHQHCAAAABQHBAAAAAAAAAAAAAAAAZAPUYgOxZgOuZQPPXQPPAAAAagO1aAPLYgStZgTNAAAAZATIZQTDaAS9AAAAagSsIwzJGgysIgyhGAy8GQygDAy4Ewy5FgzAAAAADA3SAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADA7DAAAAGQ7ACw69GA7MAAAAHw6eIQ6YGRTJGBTXCxTCHxSuDBTOAAAAIRSqAAAA","crc":45086} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgjgWC8QAAAAAAE=","wn":2098,"tow":271538400,"crc":6710} -{"length":16,"flags":17,"ns":399999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EeBYLxDkBwMZAxkU/oPXFw==","day":25,"tow":271538400,"year":2020,"crc":40307,"minutes":25,"month":3,"seconds":20} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-18.145536806609712,"preamble":85,"sender":22963,"msg_type":522,"payload":"4FgvEGEecO1l6kJAeolnHVaSXsDEwHDmQSUywAECWwQPBg==","lat":37.83123558020157,"tow":271538400,"h_accuracy":513,"crc":7193,"lon":-122.28650603400266} -{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"4FgvEAQAAAD2////5v////EAywIPAg==","n":4,"d":-26,"tow":271538400,"h_accuracy":241,"crc":38832,"e":-10} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"4FgvEJsAhwBMAEgAcgAG","tow":271538400,"crc":1494,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"4FgvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271538400,"h_accuracy":0,"crc":46694,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"4FgvEP//","tow":271538400,"crc":65504} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":9,"l2ca_bias":0,"preamble":85,"l2p_bias":0,"sender":22963,"msg_type":117,"payload":"/wAAAAAAAAAA","l1ca_bias":0,"mask":255,"crc":49809,"l1p_bias":0} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MghEWS8QAAAAAAE=","wn":2098,"tow":271538500,"crc":55620} -{"length":16,"flags":17,"ns":499999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EURZLxDkBwMZAxkU/mTNHQ==","day":25,"tow":271538500,"year":2020,"crc":56565,"minutes":25,"month":3,"seconds":20} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-18.14729412996424,"preamble":85,"sender":22963,"msg_type":522,"payload":"RFkvEFSti+1l6kJA8z95HVaSXsDVFm8RtSUywAECWwQPBg==","lat":37.83123559303445,"tow":271538500,"h_accuracy":513,"crc":2481,"lon":-122.28650605049897} -{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"RFkvEAkAAAABAAAA/v////EAywIPAg==","n":9,"d":-2,"tow":271538500,"h_accuracy":241,"crc":56547,"e":1} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"RFkvEJsAhwBMAEgAcgAG","tow":271538500,"crc":11267,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"RFkvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271538500,"h_accuracy":0,"crc":5353,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"RFkvEP//","tow":271538500,"crc":45624} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgioWS8QAAAAAAE=","wn":2098,"tow":271538600,"crc":11203} -{"length":16,"flags":17,"ns":599999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EahZLxDkBwMZAxkU/kXDIw==","day":25,"tow":271538600,"year":2020,"crc":50793,"minutes":25,"month":3,"seconds":20} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-18.14898904694454,"preamble":85,"sender":22963,"msg_type":522,"payload":"qFkvEFYPiu1l6kJA1dGBHVaSXsDJFmwlJCYywAECWwQPBg==","lat":37.8312355922814,"tow":271538600,"h_accuracy":513,"crc":42803,"lon":-122.28650605848027} -{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"qFkvEPn///8HAAAABgAAAPEAywIPAg==","n":-7,"d":6,"tow":271538600,"h_accuracy":241,"crc":51682,"e":7} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"qFkvEJsAhwBMAEgAcgAG","tow":271538600,"crc":29691,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"qFkvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271538600,"h_accuracy":0,"crc":59497,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"qFkvEP//","tow":271538600,"crc":13027} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MggMWi8QAAAAAAE=","wn":2098,"tow":271538700,"crc":26391} -{"length":16,"flags":17,"ns":699999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EQxaLxDkBwMZAxkU/ia5KQ==","day":25,"tow":271538700,"year":2020,"crc":40349,"minutes":25,"month":3,"seconds":20} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-18.152667493719072,"preamble":85,"sender":22963,"msg_type":522,"payload":"DFovEPhFt+1l6kJAIsGmHVaSXsCKr4Q3FScywAECWwQPBg==","lat":37.83123561333554,"tow":271538700,"h_accuracy":513,"crc":56893,"lon":-122.28650609287845} -{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"DFovEAQAAAD5////BgAAAPEAywIPAg==","n":4,"d":6,"tow":271538700,"h_accuracy":241,"crc":22960,"e":-7} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"DFovEJsAhwBMAEgAcgAG","tow":271538700,"crc":44268,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"DFovEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271538700,"h_accuracy":0,"crc":61739,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"DFovEP//","tow":271538700,"crc":15288} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"message_type":3,"length":34,"data":[151,255,0,15,253,127,247,255,0,23,255,255,231,255,127,240,1,255,240,0,232,206,246,231,239,229,112],"preamble":85,"sender":22963,"msg_type":30583,"payload":"gwIvWS8QA5f/AA/9f/f/ABf//+f/f/AB//AA6M725+/lcA==","tow":271538479,"crc":3966,"sid":{"sat":131,"code":2}} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MghwWi8QAAAAAAE=","wn":2098,"tow":271538800,"crc":31196} -{"length":16,"flags":17,"ns":799999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EXBaLxDkBwMZAxkU/gevLw==","day":25,"tow":271538800,"year":2020,"crc":40984,"minutes":25,"month":3,"seconds":20} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-18.155604190597796,"preamble":85,"sender":22963,"msg_type":522,"payload":"cFovEPpG3O1l6kJAg07FHVaSXsDzvB2t1ScywAECWwQPBg==","lat":37.83123563056684,"tow":271538800,"h_accuracy":513,"crc":10236,"lon":-122.28650612133247} -{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"cFovEAMAAAD0////KwAAAPEAywIPAg==","n":3,"d":43,"tow":271538800,"h_accuracy":241,"crc":36527,"e":-12} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"cFovEJsAhwBMAEgAcgAG","tow":271538800,"crc":59788,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"cFovEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271538800,"h_accuracy":0,"crc":2680,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"cFovEP//","tow":271538800,"crc":30151} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":237,"states":[{"cn0":212,"mesid":{"sat":5,"code":0}},{"cn0":178,"mesid":{"sat":21,"code":0}},{"cn0":186,"mesid":{"sat":2,"code":0}},{"cn0":164,"mesid":{"sat":31,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":216,"mesid":{"sat":25,"code":0}},{"cn0":206,"mesid":{"sat":12,"code":0}},{"cn0":211,"mesid":{"sat":29,"code":0}},{"cn0":204,"mesid":{"sat":18,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":203,"mesid":{"sat":131,"code":2}},{"cn0":204,"mesid":{"sat":25,"code":1}},{"cn0":188,"mesid":{"sat":12,"code":1}},{"cn0":149,"mesid":{"sat":31,"code":1}},{"cn0":196,"mesid":{"sat":18,"code":1}},{"cn0":194,"mesid":{"sat":29,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":193,"mesid":{"sat":5,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":212,"mesid":{"sat":11,"code":3}},{"cn0":177,"mesid":{"sat":9,"code":3}},{"cn0":174,"mesid":{"sat":20,"code":3}},{"cn0":207,"mesid":{"sat":5,"code":3}},{"cn0":207,"mesid":{"sat":10,"code":3}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":180,"mesid":{"sat":4,"code":3}},{"cn0":203,"mesid":{"sat":21,"code":3}},{"cn0":173,"mesid":{"sat":9,"code":4}},{"cn0":205,"mesid":{"sat":20,"code":4}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":200,"mesid":{"sat":11,"code":4}},{"cn0":195,"mesid":{"sat":5,"code":4}},{"cn0":189,"mesid":{"sat":0,"code":4}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":173,"mesid":{"sat":4,"code":4}},{"cn0":201,"mesid":{"sat":35,"code":12}},{"cn0":172,"mesid":{"sat":26,"code":12}},{"cn0":162,"mesid":{"sat":34,"code":12}},{"cn0":188,"mesid":{"sat":24,"code":12}},{"cn0":160,"mesid":{"sat":25,"code":12}},{"cn0":184,"mesid":{"sat":12,"code":12}},{"cn0":185,"mesid":{"sat":19,"code":12}},{"cn0":192,"mesid":{"sat":22,"code":12}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":209,"mesid":{"sat":12,"code":13}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":195,"mesid":{"sat":12,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":192,"mesid":{"sat":25,"code":14}},{"cn0":189,"mesid":{"sat":11,"code":14}},{"cn0":204,"mesid":{"sat":24,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":158,"mesid":{"sat":31,"code":14}},{"cn0":152,"mesid":{"sat":33,"code":14}},{"cn0":201,"mesid":{"sat":25,"code":20}},{"cn0":215,"mesid":{"sat":24,"code":20}},{"cn0":194,"mesid":{"sat":11,"code":20}},{"cn0":174,"mesid":{"sat":31,"code":20}},{"cn0":206,"mesid":{"sat":12,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":170,"mesid":{"sat":33,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}}],"preamble":85,"sender":22963,"msg_type":97,"payload":"BQDUFQCyAgC6HwCkAAAAAAAAGQDYDADOHQDTEgDMAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwLLGQHMDAG8HwGVEgHEHQHCAAAABQHBAAAAAAAAAAAAAAAACwPUCQOxFAOuBQPPCgPPAAAABAO0FQPLCQStFATNAAAACwTIBQTDAAS9AAAABAStIwzJGgysIgyiGAy8GQygDAy4Ewy5FgzAAAAADA3RAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADA7DAAAAGQ7ACw69GA7MAAAAHw6eIQ6YGRTJGBTXCxTCHxSuDBTOAAAAIRSqAAAA","crc":44289} -{"length":128,"preamble":85,"sender":22963,"msg_type":151,"payload":"AgAaHQUAKzUMAFEtFQB9GRkAbUYaAKEBHQChNx8AlQ4EAxUWBQMyIQkDXw4KA3EpCwOYJQwDqgMTAyIHFAMMMRUDlSUMDJQpEwwjIBQMDwIWDEMkGAyCIxkMnQ4aDGcVIgyOESMMIi0LDosyDA4PPBgObDYZDpcpHw5VESEOIA8=","crc":34187,"azel":[{"el":29,"az":26,"sid":{"sat":2,"code":0}},{"el":53,"az":43,"sid":{"sat":5,"code":0}},{"el":45,"az":81,"sid":{"sat":12,"code":0}},{"el":25,"az":125,"sid":{"sat":21,"code":0}},{"el":70,"az":109,"sid":{"sat":25,"code":0}},{"el":1,"az":161,"sid":{"sat":26,"code":0}},{"el":55,"az":161,"sid":{"sat":29,"code":0}},{"el":14,"az":149,"sid":{"sat":31,"code":0}},{"el":22,"az":21,"sid":{"sat":4,"code":3}},{"el":33,"az":50,"sid":{"sat":5,"code":3}},{"el":14,"az":95,"sid":{"sat":9,"code":3}},{"el":41,"az":113,"sid":{"sat":10,"code":3}},{"el":37,"az":152,"sid":{"sat":11,"code":3}},{"el":3,"az":170,"sid":{"sat":12,"code":3}},{"el":7,"az":34,"sid":{"sat":19,"code":3}},{"el":49,"az":12,"sid":{"sat":20,"code":3}},{"el":37,"az":149,"sid":{"sat":21,"code":3}},{"el":41,"az":148,"sid":{"sat":12,"code":12}},{"el":32,"az":35,"sid":{"sat":19,"code":12}},{"el":2,"az":15,"sid":{"sat":20,"code":12}},{"el":36,"az":67,"sid":{"sat":22,"code":12}},{"el":35,"az":130,"sid":{"sat":24,"code":12}},{"el":14,"az":157,"sid":{"sat":25,"code":12}},{"el":21,"az":103,"sid":{"sat":26,"code":12}},{"el":17,"az":142,"sid":{"sat":34,"code":12}},{"el":45,"az":34,"sid":{"sat":35,"code":12}},{"el":50,"az":139,"sid":{"sat":11,"code":14}},{"el":60,"az":15,"sid":{"sat":12,"code":14}},{"el":54,"az":108,"sid":{"sat":24,"code":14}},{"el":41,"az":151,"sid":{"sat":25,"code":14}},{"el":17,"az":85,"sid":{"sat":31,"code":14}},{"el":15,"az":32,"sid":{"sat":33,"code":14}}]} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgjUWi8QAAAAAAE=","wn":2098,"tow":271538900,"crc":64893} -{"length":16,"flags":17,"ns":899999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EdRaLxDkBwMZAxkU/uikNQ==","day":25,"tow":271538900,"year":2020,"crc":4397,"minutes":25,"month":3,"seconds":20} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-18.1485637142829,"preamble":85,"sender":22963,"msg_type":522,"payload":"1FovEFGJDu5l6kJAkhTaHVaSXsCkN4ZFCCYywAECWwQPBg==","lat":37.83123565397057,"tow":271538900,"h_accuracy":513,"crc":62946,"lon":-122.28650614067945} -{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"1FovEAgAAAD/////yf////EAywIPAg==","n":8,"d":-55,"tow":271538900,"h_accuracy":241,"crc":41641,"e":-1} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"1FovEJsAhwBMAEgAcgAG","tow":271538900,"crc":47928,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"1FovEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271538900,"h_accuracy":0,"crc":32001,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"1FovEP//","tow":271538900,"crc":37454} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":249,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":120,"i":110568783},"flags":15,"cn0":212,"P":1052026879,"D":{"f":107,"i":-199},"lock":15,"sid":{"sat":5,"code":0}},{"L":{"f":234,"i":121772630},"flags":15,"cn0":178,"P":1158628049,"D":{"f":216,"i":2168},"lock":15,"sid":{"sat":21,"code":0}},{"L":{"f":30,"i":123397818},"flags":15,"cn0":186,"P":1174090800,"D":{"f":170,"i":-2482},"lock":15,"sid":{"sat":2,"code":0}},{"L":{"f":112,"i":128748002},"flags":15,"cn0":164,"P":1224996511,"D":{"f":135,"i":-409},"lock":15,"sid":{"sat":31,"code":0}},{"L":{"f":19,"i":107850503},"flags":15,"cn0":216,"P":1026163350,"D":{"f":74,"i":-1141},"lock":15,"sid":{"sat":25,"code":0}},{"L":{"f":243,"i":114170055},"flags":15,"cn0":206,"P":1086291859,"D":{"f":40,"i":-2976},"lock":15,"sid":{"sat":12,"code":0}},{"L":{"f":69,"i":110725328},"flags":15,"cn0":211,"P":1053516383,"D":{"f":21,"i":1480},"lock":15,"sid":{"sat":29,"code":0}},{"L":{"f":138,"i":84039373},"flags":15,"cn0":204,"P":1026163396,"D":{"f":236,"i":-890},"lock":15,"sid":{"sat":25,"code":1}},{"L":{"f":148,"i":88963711},"flags":15,"cn0":188,"P":1086291811,"D":{"f":40,"i":-2319},"lock":15,"sid":{"sat":12,"code":1}},{"L":{"f":52,"i":100323121},"flags":15,"cn0":149,"P":1224996371,"D":{"f":84,"i":-315},"lock":15,"sid":{"sat":31,"code":1}},{"L":{"f":106,"i":86279478},"flags":15,"cn0":194,"P":1053516306,"D":{"f":210,"i":1152},"lock":15,"sid":{"sat":29,"code":1}},{"L":{"f":230,"i":86157522},"flags":15,"cn0":193,"P":1052026793,"D":{"f":213,"i":-155},"lock":15,"sid":{"sat":5,"code":1}},{"L":{"f":40,"i":112908672},"flags":15,"cn0":212,"P":1056465581,"D":{"f":53,"i":1146},"lock":15,"sid":{"sat":11,"code":3}},{"L":{"f":225,"i":123443303},"flags":15,"cn0":177,"P":1155847998,"D":{"f":114,"i":-4407},"lock":15,"sid":{"sat":9,"code":3}}],"payload":"OFsvEAAAAAAyCED/p7Q+TyWXBng5/2vUDw8FANFCD0VWGkIH6ngI2LIPDxUAMDT7RbrmWgceTvaqug8PAgCf9gNJ4omsB3Bn/oekDw8fAJYCKj0Hq20GE4v7StgPDxkAk3+/QMcYzgbzYPQozg8PDABfYss+0IiZBkXIBRXTDw8dAMQCKj3NVgIFiob87MwPDxkBY3+/QH96TQWU8fYovA8PDAET9gNJMc/6BTTF/lSVDw8fARJiyz42hSQFaoAE0sIPDx0Bqae0PtKoIgXmZf/VwQ8PBQGtYvg+gNm6Bih6BDXUDw8LAz7X5ERnmFsH4cnucrEPDwkD","header":{"n_obs":64,"t":{"ns_residual":0,"wn":2098,"tow":271539000}},"crc":46440} -{"length":249,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":152,"i":109800597},"flags":15,"cn0":174,"P":1026662950,"D":{"f":221,"i":-1214},"lock":15,"sid":{"sat":20,"code":3}},{"L":{"f":98,"i":114806005},"flags":15,"cn0":207,"P":1073841525,"D":{"f":174,"i":2182},"lock":15,"sid":{"sat":5,"code":3}},{"L":{"f":109,"i":111679130},"flags":15,"cn0":206,"P":1047535677,"D":{"f":25,"i":-3057},"lock":15,"sid":{"sat":10,"code":3}},{"L":{"f":95,"i":120471331},"flags":15,"cn0":180,"P":1124858257,"D":{"f":178,"i":-1336},"lock":15,"sid":{"sat":4,"code":3}},{"L":{"f":15,"i":113379712},"flags":15,"cn0":203,"P":1059385035,"D":{"f":36,"i":1619},"lock":15,"sid":{"sat":21,"code":3}},{"L":{"f":57,"i":96011468},"flags":15,"cn0":173,"P":1155848137,"D":{"f":210,"i":-3430},"lock":15,"sid":{"sat":9,"code":4}},{"L":{"f":135,"i":85400500},"flags":15,"cn0":205,"P":1026663296,"D":{"f":253,"i":-945},"lock":15,"sid":{"sat":20,"code":4}},{"L":{"f":115,"i":87817866},"flags":15,"cn0":200,"P":1056465886,"D":{"f":57,"i":891},"lock":15,"sid":{"sat":11,"code":4}},{"L":{"f":138,"i":89293563},"flags":15,"cn0":195,"P":1073841819,"D":{"f":185,"i":1698},"lock":15,"sid":{"sat":5,"code":4}},{"L":{"f":161,"i":93699914},"flags":15,"cn0":172,"P":1124858456,"D":{"f":71,"i":-1037},"lock":15,"sid":{"sat":4,"code":4}},{"L":{"f":165,"i":121617043},"flags":15,"cn0":201,"P":1167763458,"D":{"f":222,"i":-1502},"lock":15,"sid":{"sat":35,"code":12}},{"L":{"f":146,"i":129286319},"flags":15,"cn0":172,"P":1241403952,"D":{"f":134,"i":-3010},"lock":15,"sid":{"sat":26,"code":12}},{"L":{"f":177,"i":132890383},"flags":15,"cn0":161,"P":1276009869,"D":{"f":189,"i":2248},"lock":15,"sid":{"sat":34,"code":12}},{"L":{"f":202,"i":125183646},"flags":15,"cn0":188,"P":1202010189,"D":{"f":52,"i":-1312},"lock":15,"sid":{"sat":24,"code":12}}],"payload":"OFsvEAAAAAAyCEEmojE9lWyLBphC+92uDw8UA3WFAUD1zNcGYoYIrs8PDwUDPSBwPpoWqAZtD/QZzg8PCgOR+QtDIz8uB1/I+rK0Dw8EA8vuJD+ACcIGD1MGJMsPDxUDydfkRMwEuQU5mvLSrQ8PCQSAozE9tBsXBYdP/P3NDw8UBN5j+D6K/jsFc3sDOcgPDwsEm4YBQPuCUgWKoga5ww8PBQRY+gtDSr+VBaHz+0esDw8EBAKomkWTuj8HpSL63skPDyMMMFL+Sa/AtAeSPvSGrA8PGgyNXQ5MD7/rB7HICL2hDw8iDE04pUeeJnYHyuD6NLwPDxgM","header":{"n_obs":65,"t":{"ns_residual":0,"wn":2098,"tow":271539000}},"crc":52089} -{"length":249,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":165,"i":134639505},"flags":15,"cn0":160,"P":1292805134,"D":{"f":145,"i":1315},"lock":15,"sid":{"sat":25,"code":12}},{"L":{"f":74,"i":121060096},"flags":15,"cn0":184,"P":1162415910,"D":{"f":81,"i":1610},"lock":15,"sid":{"sat":12,"code":12}},{"L":{"f":57,"i":124522246},"flags":15,"cn0":185,"P":1195659367,"D":{"f":226,"i":-302},"lock":15,"sid":{"sat":19,"code":12}},{"L":{"f":153,"i":124645402},"flags":15,"cn0":192,"P":1196841950,"D":{"f":53,"i":2380},"lock":15,"sid":{"sat":22,"code":12}},{"L":{"f":54,"i":93611354},"flags":15,"cn0":209,"P":1162415834,"D":{"f":139,"i":1246},"lock":15,"sid":{"sat":12,"code":13}},{"L":{"f":198,"i":116451576},"flags":15,"cn0":195,"P":1107999878,"D":{"f":115,"i":-1030},"lock":15,"sid":{"sat":12,"code":14}},{"L":{"f":128,"i":132447929},"flags":15,"cn0":192,"P":1260200067,"D":{"f":163,"i":1078},"lock":15,"sid":{"sat":25,"code":14}},{"L":{"f":46,"i":125396584},"flags":15,"cn0":189,"P":1193108766,"D":{"f":25,"i":1045},"lock":15,"sid":{"sat":11,"code":14}},{"L":{"f":113,"i":118457369},"flags":15,"cn0":204,"P":1127084253,"D":{"f":228,"i":-1755},"lock":15,"sid":{"sat":24,"code":14}},{"L":{"f":8,"i":143400296},"flags":15,"cn0":158,"P":1364408409,"D":{"f":115,"i":-3173},"lock":15,"sid":{"sat":31,"code":14}},{"L":{"f":148,"i":144577399},"flags":15,"cn0":151,"P":1375608182,"D":{"f":126,"i":-2142},"lock":15,"sid":{"sat":33,"code":14}},{"L":{"f":64,"i":101486074},"flags":15,"cn0":201,"P":1260200045,"D":{"f":200,"i":825},"lock":15,"sid":{"sat":25,"code":20}},{"L":{"f":226,"i":90766099},"flags":15,"cn0":215,"P":1127084814,"D":{"f":109,"i":-1342},"lock":15,"sid":{"sat":24,"code":20}},{"L":{"f":207,"i":96083074},"flags":15,"cn0":194,"P":1193108577,"D":{"f":253,"i":801},"lock":15,"sid":{"sat":11,"code":20}}],"payload":"OFsvEAAAAAAyCEIOpA5NkW8GCKUjBZGgDw8ZDCYPSUUAOzcHSkoGUbgPDwwMZ1BERwYPbAc50v7iuQ8PEwzeW1ZHGvBtB5lMCTXADw8WDNoOSUVaZZQFNt4Ei9EPDwwNhrwKQvjo8AbG+vtzww8PDA6DIB1Luf7kB4A2BKPADw8ZDh5lHUdoZnkHLhUEGb0PDwsO3fAtQxmEDwdxJfnkzA8PGA5ZOFNRaB2MCAib83OeDw8fDnYd/lF3E54IlKL3fpcPDyEObSAdS/qNDAZAOQPIyQ8PGRQO8y1DE/toBeLC+m3XDw8YFGFkHUeCHLoFzyED/cIPDwsU","header":{"n_obs":66,"t":{"ns_residual":0,"wn":2098,"tow":271539000}},"crc":11625} -{"length":62,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":105,"i":109878190},"flags":15,"cn0":174,"P":1364408514,"D":{"f":101,"i":-2432},"lock":15,"sid":{"sat":31,"code":20}},{"L":{"f":222,"i":89229160},"flags":15,"cn0":206,"P":1107999722,"D":{"f":73,"i":-787},"lock":15,"sid":{"sat":12,"code":20}},{"L":{"f":225,"i":110780155},"flags":15,"cn0":170,"P":1375608172,"D":{"f":4,"i":-1639},"lock":15,"sid":{"sat":33,"code":20}}],"payload":"OFsvEAAAAAAyCEPCOFNRrpuMBmmA9mWuDw8fFOq7CkJoh1EF3u38Sc4PDwwUbB3+UftemgbhmfkEqg8PIRQ=","header":{"n_obs":67,"t":{"ns_residual":0,"wn":2098,"tow":271539000}},"crc":40369} -{"length":9,"l2ca_bias":0,"preamble":85,"l2p_bias":0,"sender":22963,"msg_type":117,"payload":"/wAAAAAAAAAA","l1ca_bias":0,"mask":255,"crc":49809,"l1p_bias":0} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"Mgg4Wy8QAAAAAAE=","wn":2098,"tow":271539000,"crc":18473} -{"length":16,"flags":17,"ns":999999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EThbLxDkBwMZAxkU/smaOw==","day":25,"tow":271539000,"year":2020,"crc":17174,"minutes":25,"month":3,"seconds":20} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-18.15157658926175,"preamble":85,"sender":22963,"msg_type":522,"payload":"OFsvELhkM+5l6kJAnkPlHVaSXsDsty25zSYywAECWwQPBg==","lat":37.83123567113347,"tow":271539000,"h_accuracy":513,"crc":42062,"lon":-122.28650615109515} -{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"OFsvEPr///8NAAAAGwAAAPEAywIPAg==","n":-6,"d":27,"tow":271539000,"h_accuracy":241,"crc":29834,"e":13} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"OFsvEJsAhwBMAEgAcgAG","tow":271539000,"crc":40865,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"OFsvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271539000,"h_accuracy":0,"crc":21623,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"OFsvEP//","tow":271539000,"crc":47300} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":4,"flags":2147616000,"preamble":85,"sender":22963,"msg_type":65535,"payload":"AAUCgA==","crc":40942} -{"length":24,"z":3890655.0240602265,"preamble":85,"sender":22963,"msg_type":72,"payload":"UO0a3iqORMHK1UJhIkRQwc9nFIPvrk1B","crc":2168,"x":-2694229.735196747,"y":-4264073.519704292} -{"cpu_vint":988,"length":10,"fe_temperature":5641,"preamble":85,"sender":22963,"cpu_vaux":1780,"msg_type":181,"payload":"7BbcA/QGURUJFg==","dev_vin":5868,"crc":34043,"cpu_temperature":5457} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgicWy8QAAAAAAE=","wn":2098,"tow":271539100,"crc":52360} -{"length":16,"flags":17,"ns":99999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EZxbLxDkBwMZAxkV/uD1BQ==","day":25,"tow":271539100,"year":2020,"crc":28461,"minutes":25,"month":3,"seconds":21} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-18.15265498260549,"preamble":85,"sender":22963,"msg_type":522,"payload":"nFsvEF2VaO5l6kJAtOn7HVaSXsCu3J1lFCcywAECWwQPBg==","lat":37.831235695902,"tow":271539100,"h_accuracy":513,"crc":34851,"lon":-122.28650617218847} -{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"nFsvEPv///8GAAAAAQAAAPEAywIPAg==","n":-5,"d":1,"tow":271539100,"h_accuracy":241,"crc":38237,"e":6} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"nFsvEJsAhwBMAEgAcgAG","tow":271539100,"crc":52501,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"nFsvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271539100,"h_accuracy":0,"crc":8974,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"nFsvEP//","tow":271539100,"crc":24397} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MggAXC8QAAAAAAE=","wn":2098,"tow":271539200,"crc":21196} -{"length":16,"flags":17,"ns":199999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EQBcLxDkBwMZAxkV/sHrCw==","day":25,"tow":271539200,"year":2020,"crc":51456,"minutes":25,"month":3,"seconds":21} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-18.154764893629537,"preamble":85,"sender":22963,"msg_type":522,"payload":"AFwvEH/Gw+5l6kJAIosdHlaSXsAxtQysnicywAECWwQPBg==","lat":37.83123573836655,"tow":271539200,"h_accuracy":513,"crc":37031,"lon":-122.28650620350939} -{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"AFwvEAAAAAD9//////////EAywIPAg==","n":0,"d":-1,"tow":271539200,"h_accuracy":241,"crc":53918,"e":-3} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"AFwvEJsAhwBMAEgAcgAG","tow":271539200,"crc":7036,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"AFwvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271539200,"h_accuracy":0,"crc":54463,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"AFwvEP//","tow":271539200,"crc":64990} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MghkXC8QAAAAAAE=","wn":2098,"tow":271539300,"crc":13830} -{"length":16,"flags":17,"ns":299999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EWRcLxDkBwMZAxkV/qLhEQ==","day":25,"tow":271539300,"year":2020,"crc":31524,"minutes":25,"month":3,"seconds":21} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-18.1552871263024,"preamble":85,"sender":22963,"msg_type":522,"payload":"ZFwvELNYN+9l6kJAw5QtHlaSXsBp9ajlwCcywAECWwQPBg==","lat":37.83123579218354,"tow":271539300,"h_accuracy":513,"crc":24775,"lon":-122.28650621844558} -{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"ZFwvEA8AAAABAAAA9v////EAywIPAg==","n":15,"d":-10,"tow":271539300,"h_accuracy":241,"crc":20140,"e":1} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"ZFwvEJsAhwBMAEgAcgAG","tow":271539300,"crc":14291,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"ZFwvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271539300,"h_accuracy":0,"crc":52233,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"ZFwvEP//","tow":271539300,"crc":42087} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":237,"states":[{"cn0":213,"mesid":{"sat":5,"code":0}},{"cn0":179,"mesid":{"sat":21,"code":0}},{"cn0":186,"mesid":{"sat":2,"code":0}},{"cn0":165,"mesid":{"sat":31,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":217,"mesid":{"sat":25,"code":0}},{"cn0":206,"mesid":{"sat":12,"code":0}},{"cn0":211,"mesid":{"sat":29,"code":0}},{"cn0":205,"mesid":{"sat":18,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":204,"mesid":{"sat":131,"code":2}},{"cn0":203,"mesid":{"sat":25,"code":1}},{"cn0":188,"mesid":{"sat":12,"code":1}},{"cn0":149,"mesid":{"sat":31,"code":1}},{"cn0":196,"mesid":{"sat":18,"code":1}},{"cn0":194,"mesid":{"sat":29,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":193,"mesid":{"sat":5,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":212,"mesid":{"sat":100,"code":3}},{"cn0":176,"mesid":{"sat":98,"code":3}},{"cn0":174,"mesid":{"sat":102,"code":3}},{"cn0":206,"mesid":{"sat":101,"code":3}},{"cn0":206,"mesid":{"sat":93,"code":3}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":180,"mesid":{"sat":106,"code":3}},{"cn0":204,"mesid":{"sat":104,"code":3}},{"cn0":173,"mesid":{"sat":98,"code":4}},{"cn0":205,"mesid":{"sat":102,"code":4}},{"cn0":74,"mesid":{"sat":93,"code":4}},{"cn0":199,"mesid":{"sat":100,"code":4}},{"cn0":195,"mesid":{"sat":101,"code":4}},{"cn0":189,"mesid":{"sat":104,"code":4}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":172,"mesid":{"sat":106,"code":4}},{"cn0":201,"mesid":{"sat":35,"code":12}},{"cn0":171,"mesid":{"sat":26,"code":12}},{"cn0":162,"mesid":{"sat":34,"code":12}},{"cn0":188,"mesid":{"sat":24,"code":12}},{"cn0":159,"mesid":{"sat":25,"code":12}},{"cn0":184,"mesid":{"sat":12,"code":12}},{"cn0":185,"mesid":{"sat":19,"code":12}},{"cn0":193,"mesid":{"sat":22,"code":12}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":209,"mesid":{"sat":12,"code":13}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":194,"mesid":{"sat":12,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":191,"mesid":{"sat":25,"code":14}},{"cn0":189,"mesid":{"sat":11,"code":14}},{"cn0":203,"mesid":{"sat":24,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":158,"mesid":{"sat":31,"code":14}},{"cn0":151,"mesid":{"sat":33,"code":14}},{"cn0":201,"mesid":{"sat":25,"code":20}},{"cn0":215,"mesid":{"sat":24,"code":20}},{"cn0":194,"mesid":{"sat":11,"code":20}},{"cn0":174,"mesid":{"sat":31,"code":20}},{"cn0":206,"mesid":{"sat":12,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":171,"mesid":{"sat":33,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}}],"preamble":85,"sender":22963,"msg_type":97,"payload":"BQDVFQCzAgC6HwClAAAAAAAAGQDZDADOHQDTEgDNAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwLMGQHLDAG8HwGVEgHEHQHCAAAABQHBAAAAAAAAAAAAAAAAZAPUYgOwZgOuZQPOXQPOAAAAagO0aAPMYgStZgTNXQRKZATHZQTDaAS9AAAAagSsIwzJGgyrIgyiGAy8GQyfDAy4Ewy5FgzBAAAADA3RAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADA7CAAAAGQ6/Cw69GA7LAAAAHw6eIQ6XGRTJGBTXCxTCHxSuDBTOAAAAIRSrAAAA","crc":12908} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgjIXC8QAAAAAAE=","wn":2098,"tow":271539400,"crc":39768} -{"length":16,"flags":17,"ns":399999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EchcLxDkBwMZAxkV/oPXFw==","day":25,"tow":271539400,"year":2020,"crc":28886,"minutes":25,"month":3,"seconds":21} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-18.160654102096757,"preamble":85,"sender":22963,"msg_type":522,"payload":"yFwvEIQChO9l6kJAFqZRHlaSXsBMeZKgICkywAECWwQPBg==","lat":37.83123582788269,"tow":271539400,"h_accuracy":513,"crc":13997,"lon":-122.28650625203622} -{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"yFwvEP/////1////KAAAAPEAywIPAg==","n":-1,"d":40,"tow":271539400,"h_accuracy":241,"crc":33913,"e":-11} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"yFwvEJsAhwBMAEgAcgAG","tow":271539400,"crc":16930,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"yFwvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271539400,"h_accuracy":0,"crc":58835,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"yFwvEP//","tow":271539400,"crc":20140} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":9,"l2ca_bias":0,"preamble":85,"l2p_bias":0,"sender":22963,"msg_type":117,"payload":"/wAAAAAAAAAA","l1ca_bias":0,"mask":255,"crc":49809,"l1p_bias":0} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MggsXS8QAAAAAAE=","wn":2098,"tow":271539500,"crc":2035} -{"length":16,"flags":17,"ns":499999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"ESxdLxDkBwMZAxkV/mTNHQ==","day":25,"tow":271539500,"year":2020,"crc":7001,"minutes":25,"month":3,"seconds":21} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-18.161189679937095,"preamble":85,"sender":22963,"msg_type":522,"payload":"LF0vELCdxu9l6kJAn9dsHlaSXsBUyBO6QykywAECWwQPBg==","lat":37.831235858898594,"tow":271539500,"h_accuracy":513,"crc":25541,"lon":-122.28650627736214} -{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"LF0vEAMAAAD8////7/////EAywIPAg==","n":3,"d":-17,"tow":271539500,"h_accuracy":241,"crc":31650,"e":-4} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"LF0vEJsAhwBMAEgAcgAG","tow":271539500,"crc":16894,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"LF0vEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271539500,"h_accuracy":0,"crc":37382,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"LF0vEP//","tow":271539500,"crc":26980} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgiQXS8QAAAAAAE=","wn":2098,"tow":271539600,"crc":63827} -{"length":16,"flags":17,"ns":599999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EZBdLxDkBwMZAxkV/kXDIw==","day":25,"tow":271539600,"year":2020,"crc":25926,"minutes":25,"month":3,"seconds":21} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-18.164036797038335,"preamble":85,"sender":22963,"msg_type":522,"payload":"kF0vED4n8+9l6kJA7nB7HlaSXsDInsZQ/ikywAECWwQPBg==","lat":37.8312358796379,"tow":271539600,"h_accuracy":513,"crc":60119,"lon":-122.28650629095839} -{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"kF0vEAAAAAAMAAAACQAAAPEAywIPAg==","n":0,"d":9,"tow":271539600,"h_accuracy":241,"crc":14381,"e":12} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"kF0vEJsAhwBMAEgAcgAG","tow":271539600,"crc":31365,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"kF0vEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271539600,"h_accuracy":0,"crc":1690,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"kF0vEP//","tow":271539600,"crc":39211} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"Mgj0XS8QAAAAAAE=","wn":2098,"tow":271539700,"crc":40345} -{"length":16,"flags":17,"ns":699999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EfRdLxDkBwMZAxkV/ia5KQ==","day":25,"tow":271539700,"year":2020,"crc":52490,"minutes":25,"month":3,"seconds":21} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-18.16683470068235,"preamble":85,"sender":22963,"msg_type":522,"payload":"9F0vEGYINPBl6kJAWDKaHlaSXsDGRM+ttSoywAECWwQPBg==","lat":37.83123590984978,"tow":271539700,"h_accuracy":513,"crc":6413,"lon":-122.2865063196017} -{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"9F0vEAEAAAACAAAADgAAAPEAywIPAg==","n":1,"d":14,"tow":271539700,"h_accuracy":241,"crc":11356,"e":2} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"9F0vEJsAhwBMAEgAcgAG","tow":271539700,"crc":22058,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"9F0vEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271539700,"h_accuracy":0,"crc":7724,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"9F0vEP//","tow":271539700,"crc":49298} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"message_type":4,"length":34,"data":[151,255,127,255,253,127,240,1,127,255,251,255,223,252,127,247,255,127,247,255,238,94,94,170,175,255,240],"preamble":85,"sender":22963,"msg_type":30583,"payload":"gwISXS8QBJf/f//9f/ABf//7/9/8f/f/f/f/7l5eqq//8A==","tow":271539474,"crc":42194,"sid":{"sat":131,"code":2}} -{"length":51,"text":"GLO L2OF ME 1 [+1325ms] low CN0 too long, dropping","preamble":85,"sender":22963,"msg_type":1025,"payload":"BkdMTyBMMk9GIE1FIDEgWysxMzI1bXNdIGxvdyBDTjAgdG9vIGxvbmcsIGRyb3BwaW5n","crc":56805,"level":6} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MghYXi8QAAAAAAE=","wn":2098,"tow":271539800,"crc":63666} -{"length":16,"flags":17,"ns":799999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EVheLxDkBwMZAxkV/gevLw==","day":25,"tow":271539800,"year":2020,"crc":19901,"minutes":25,"month":3,"seconds":21} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-18.165176701103274,"preamble":85,"sender":22963,"msg_type":522,"payload":"WF4vEHDPgvBl6kJAzL3CHlaSXsC7TDEFSSoywAECWwQPBg==","lat":37.83123594653341,"tow":271539800,"h_accuracy":513,"crc":12970,"lon":-122.28650635736193} -{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"WF4vEP7////9////GgAAAPEAywIPAg==","n":-2,"d":26,"tow":271539800,"h_accuracy":241,"crc":20524,"e":-3} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"WF4vEJsAhwBMAEgAcgAG","tow":271539800,"crc":44664,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"WF4vEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271539800,"h_accuracy":0,"crc":22989,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"WF4vEP//","tow":271539800,"crc":50315} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":237,"states":[{"cn0":213,"mesid":{"sat":5,"code":0}},{"cn0":180,"mesid":{"sat":21,"code":0}},{"cn0":186,"mesid":{"sat":2,"code":0}},{"cn0":166,"mesid":{"sat":31,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":217,"mesid":{"sat":25,"code":0}},{"cn0":207,"mesid":{"sat":12,"code":0}},{"cn0":212,"mesid":{"sat":29,"code":0}},{"cn0":206,"mesid":{"sat":18,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":205,"mesid":{"sat":131,"code":2}},{"cn0":204,"mesid":{"sat":25,"code":1}},{"cn0":188,"mesid":{"sat":12,"code":1}},{"cn0":149,"mesid":{"sat":31,"code":1}},{"cn0":196,"mesid":{"sat":18,"code":1}},{"cn0":194,"mesid":{"sat":29,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":193,"mesid":{"sat":5,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":212,"mesid":{"sat":11,"code":3}},{"cn0":176,"mesid":{"sat":9,"code":3}},{"cn0":174,"mesid":{"sat":20,"code":3}},{"cn0":206,"mesid":{"sat":5,"code":3}},{"cn0":206,"mesid":{"sat":10,"code":3}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":180,"mesid":{"sat":4,"code":3}},{"cn0":204,"mesid":{"sat":21,"code":3}},{"cn0":174,"mesid":{"sat":9,"code":4}},{"cn0":205,"mesid":{"sat":20,"code":4}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":200,"mesid":{"sat":11,"code":4}},{"cn0":195,"mesid":{"sat":5,"code":4}},{"cn0":189,"mesid":{"sat":0,"code":4}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":172,"mesid":{"sat":4,"code":4}},{"cn0":201,"mesid":{"sat":35,"code":12}},{"cn0":171,"mesid":{"sat":26,"code":12}},{"cn0":161,"mesid":{"sat":34,"code":12}},{"cn0":188,"mesid":{"sat":24,"code":12}},{"cn0":159,"mesid":{"sat":25,"code":12}},{"cn0":184,"mesid":{"sat":12,"code":12}},{"cn0":185,"mesid":{"sat":19,"code":12}},{"cn0":193,"mesid":{"sat":22,"code":12}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":208,"mesid":{"sat":12,"code":13}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":194,"mesid":{"sat":12,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":191,"mesid":{"sat":25,"code":14}},{"cn0":188,"mesid":{"sat":11,"code":14}},{"cn0":203,"mesid":{"sat":24,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":159,"mesid":{"sat":31,"code":14}},{"cn0":151,"mesid":{"sat":33,"code":14}},{"cn0":201,"mesid":{"sat":25,"code":20}},{"cn0":215,"mesid":{"sat":24,"code":20}},{"cn0":194,"mesid":{"sat":11,"code":20}},{"cn0":174,"mesid":{"sat":31,"code":20}},{"cn0":206,"mesid":{"sat":12,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":170,"mesid":{"sat":33,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}}],"preamble":85,"sender":22963,"msg_type":97,"payload":"BQDVFQC0AgC6HwCmAAAAAAAAGQDZDADPHQDUEgDOAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwLNGQHMDAG8HwGVEgHEHQHCAAAABQHBAAAAAAAAAAAAAAAACwPUCQOwFAOuBQPOCgPOAAAABAO0FQPMCQSuFATNAAAACwTIBQTDAAS9AAAABASsIwzJGgyrIgyhGAy8GQyfDAy4Ewy5FgzBAAAADA3QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADA7CAAAAGQ6/Cw68GA7LAAAAHw6fIQ6XGRTJGBTXCxTCHxSuDBTOAAAAIRSqAAAA","crc":44094} -{"length":128,"preamble":85,"sender":22963,"msg_type":151,"payload":"AgAaHQUAKzUMAFEtFQB9GRkAbUYaAKEBHQChNx8AlQ4EAxUWBQMyIQkDXw4KA3EpCwOYJQwDqgMTAyIHFAMMMRUDlSUMDJQpEwwjIBQMDwIWDEMkGAyCIxkMnQ4aDGcVIgyOESMMIi0LDosyDA4PPBgObDYZDpcpHw5VESEOIA8=","crc":34187,"azel":[{"el":29,"az":26,"sid":{"sat":2,"code":0}},{"el":53,"az":43,"sid":{"sat":5,"code":0}},{"el":45,"az":81,"sid":{"sat":12,"code":0}},{"el":25,"az":125,"sid":{"sat":21,"code":0}},{"el":70,"az":109,"sid":{"sat":25,"code":0}},{"el":1,"az":161,"sid":{"sat":26,"code":0}},{"el":55,"az":161,"sid":{"sat":29,"code":0}},{"el":14,"az":149,"sid":{"sat":31,"code":0}},{"el":22,"az":21,"sid":{"sat":4,"code":3}},{"el":33,"az":50,"sid":{"sat":5,"code":3}},{"el":14,"az":95,"sid":{"sat":9,"code":3}},{"el":41,"az":113,"sid":{"sat":10,"code":3}},{"el":37,"az":152,"sid":{"sat":11,"code":3}},{"el":3,"az":170,"sid":{"sat":12,"code":3}},{"el":7,"az":34,"sid":{"sat":19,"code":3}},{"el":49,"az":12,"sid":{"sat":20,"code":3}},{"el":37,"az":149,"sid":{"sat":21,"code":3}},{"el":41,"az":148,"sid":{"sat":12,"code":12}},{"el":32,"az":35,"sid":{"sat":19,"code":12}},{"el":2,"az":15,"sid":{"sat":20,"code":12}},{"el":36,"az":67,"sid":{"sat":22,"code":12}},{"el":35,"az":130,"sid":{"sat":24,"code":12}},{"el":14,"az":157,"sid":{"sat":25,"code":12}},{"el":21,"az":103,"sid":{"sat":26,"code":12}},{"el":17,"az":142,"sid":{"sat":34,"code":12}},{"el":45,"az":34,"sid":{"sat":35,"code":12}},{"el":50,"az":139,"sid":{"sat":11,"code":14}},{"el":60,"az":15,"sid":{"sat":12,"code":14}},{"el":54,"az":108,"sid":{"sat":24,"code":14}},{"el":41,"az":151,"sid":{"sat":25,"code":14}},{"el":17,"az":85,"sid":{"sat":31,"code":14}},{"el":15,"az":32,"sid":{"sat":33,"code":14}}]} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"Mgi8Xi8QAAAAAAE=","wn":2098,"tow":271539900,"crc":9162} -{"length":16,"flags":17,"ns":899999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EbxeLxDkBwMZAxkV/uikNQ==","day":25,"tow":271539900,"year":2020,"crc":54913,"minutes":25,"month":3,"seconds":21} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-18.15577642358396,"preamble":85,"sender":22963,"msg_type":522,"payload":"vF4vENjH5PBl6kJAgPvgHlaSXsDsx7T24CcywAECWwQPBg==","lat":37.831235992154404,"tow":271539900,"h_accuracy":513,"crc":11985,"lon":-122.28650638552608} -{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"vF4vEAMAAAACAAAA3/////EAywIPAg==","n":3,"d":-33,"tow":271539900,"h_accuracy":241,"crc":59683,"e":2} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"vF4vEJsAhwBMAEgAcgAG","tow":271539900,"crc":54981,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"vF4vEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271539900,"h_accuracy":0,"crc":64494,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"vF4vEP//","tow":271539900,"crc":18706} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":249,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":90,"i":110568983},"flags":15,"cn0":213,"P":1052028787,"D":{"f":32,"i":-200},"lock":15,"sid":{"sat":5,"code":0}},{"L":{"f":208,"i":121770463},"flags":15,"cn0":180,"P":1158607447,"D":{"f":160,"i":2167},"lock":15,"sid":{"sat":21,"code":0}},{"L":{"f":19,"i":123400298},"flags":15,"cn0":186,"P":1174114390,"D":{"f":175,"i":-2480},"lock":15,"sid":{"sat":2,"code":0}},{"L":{"f":231,"i":128748410},"flags":15,"cn0":166,"P":1225000396,"D":{"f":68,"i":-409},"lock":15,"sid":{"sat":31,"code":0}},{"L":{"f":9,"i":107851645},"flags":15,"cn0":218,"P":1026174213,"D":{"f":26,"i":-1143},"lock":15,"sid":{"sat":25,"code":0}},{"L":{"f":235,"i":114173032},"flags":15,"cn0":207,"P":1086320189,"D":{"f":140,"i":-2978},"lock":15,"sid":{"sat":12,"code":0}},{"L":{"f":43,"i":110723849},"flags":15,"cn0":212,"P":1053502311,"D":{"f":116,"i":1479},"lock":15,"sid":{"sat":29,"code":0}},{"L":{"f":98,"i":84040263},"flags":15,"cn0":204,"P":1026174260,"D":{"f":209,"i":-890},"lock":15,"sid":{"sat":25,"code":1}},{"L":{"f":74,"i":88966031},"flags":15,"cn0":188,"P":1086320139,"D":{"f":229,"i":-2321},"lock":15,"sid":{"sat":12,"code":1}},{"L":{"f":115,"i":100323439},"flags":15,"cn0":149,"P":1225000251,"D":{"f":74,"i":-317},"lock":15,"sid":{"sat":31,"code":1}},{"L":{"f":225,"i":86278325},"flags":15,"cn0":194,"P":1053502224,"D":{"f":238,"i":1152},"lock":15,"sid":{"sat":29,"code":1}},{"L":{"f":165,"i":86157678},"flags":15,"cn0":193,"P":1052028692,"D":{"f":161,"i":-156},"lock":15,"sid":{"sat":5,"code":1}},{"L":{"f":217,"i":112907526},"flags":15,"cn0":212,"P":1056454867,"D":{"f":165,"i":1144},"lock":15,"sid":{"sat":11,"code":3}},{"L":{"f":219,"i":123447712},"flags":15,"cn0":175,"P":1155889261,"D":{"f":238,"i":-4409},"lock":15,"sid":{"sat":9,"code":3}}],"payload":"IF8vEAAAAAAyCEBzr7Q+FyaXBlo4/yDVDw8FAFfyDkXfEUIH0HcIoLQPDxUAVpD7RWrwWgcTUPavug8PAgDMBQRJeousB+dn/kSmDw8fAAUtKj19r20GCYn7GtoPDxkAPe6/QGgkzgbrXvSMzw8PDABnK8s+CYOZBivHBXTUDw8dADQtKj1HWgIFYob80cwPDxkBC+6/QI+DTQVK7/blvA8PDAE7BQRJb9D6BXPD/kqVDw8fARAryz61gCQF4YAE7sIPDx0BFK+0Pm6pIgWlZP+hwQ8PBQHTOPg+BtW6Btl4BKXUDw8LA2145USgqVsH28fu7q8PDwkD","header":{"n_obs":64,"t":{"ns_residual":0,"wn":2098,"tow":271540000}},"crc":9807} -{"length":249,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":7,"i":109801812},"flags":15,"cn0":174,"P":1026674341,"D":{"f":43,"i":-1216},"lock":15,"sid":{"sat":20,"code":3}},{"L":{"f":194,"i":114803823},"flags":15,"cn0":206,"P":1073821113,"D":{"f":128,"i":2180},"lock":15,"sid":{"sat":5,"code":3}},{"L":{"f":171,"i":111682188},"flags":15,"cn0":206,"P":1047564346,"D":{"f":188,"i":-3060},"lock":15,"sid":{"sat":10,"code":3}},{"L":{"f":0,"i":120472667},"flags":15,"cn0":180,"P":1124870716,"D":{"f":246,"i":-1338},"lock":15,"sid":{"sat":4,"code":3}},{"L":{"f":15,"i":113378094},"flags":15,"cn0":204,"P":1059369928,"D":{"f":196,"i":1617},"lock":15,"sid":{"sat":21,"code":3}},{"L":{"f":108,"i":96014897},"flags":15,"cn0":174,"P":1155889414,"D":{"f":133,"i":-3429},"lock":15,"sid":{"sat":9,"code":4}},{"L":{"f":23,"i":85401445},"flags":15,"cn0":205,"P":1026674656,"D":{"f":22,"i":-944},"lock":15,"sid":{"sat":20,"code":4}},{"L":{"f":169,"i":87816975},"flags":15,"cn0":199,"P":1056455194,"D":{"f":21,"i":890},"lock":15,"sid":{"sat":11,"code":4}},{"L":{"f":184,"i":89291866},"flags":15,"cn0":195,"P":1073821435,"D":{"f":86,"i":1696},"lock":15,"sid":{"sat":5,"code":4}},{"L":{"f":113,"i":93700953},"flags":15,"cn0":172,"P":1124870898,"D":{"f":71,"i":-1040},"lock":15,"sid":{"sat":4,"code":4}},{"L":{"f":28,"i":121618546},"flags":15,"cn0":201,"P":1167777880,"D":{"f":131,"i":-1503},"lock":15,"sid":{"sat":35,"code":12}},{"L":{"f":89,"i":129289329},"flags":15,"cn0":172,"P":1241432853,"D":{"f":78,"i":-3011},"lock":15,"sid":{"sat":26,"code":12}},{"L":{"f":4,"i":132888136},"flags":15,"cn0":161,"P":1275988281,"D":{"f":118,"i":2247},"lock":15,"sid":{"sat":34,"code":12}},{"L":{"f":108,"i":125184960},"flags":15,"cn0":189,"P":1202022804,"D":{"f":156,"i":-1315},"lock":15,"sid":{"sat":24,"code":12}}],"payload":"IF8vEAAAAAAyCEGlzjE9VHGLBgdA+yuuDw8UA7k1AUBvxNcGwoQIgM4PDwUDOpBwPowiqAarDPS8zg8PCgM8KgxDW0QuBwDG+va0Dw8EA8izJD8uA8IGD1EGxMwPDxUDBnnlRDESuQVsm/KFrg8PCQTgzzE9ZR8XBRdQ/BbNDw8UBBo6+D4P+zsFqXoDFccPDwsE+zYBQFp8UgW4oAZWww8PBQTyKgxDWcOVBXHw+0esDw8EBFjgmkVywD8HHCH6g8kPDyMMFcP+SXHMtAdZPfROrA8PGgw5CQ5MSLbrBwTHCHahDw8iDJRppUfAK3YHbN36nL0PDxgM","header":{"n_obs":65,"t":{"ns_residual":0,"wn":2098,"tow":271540000}},"crc":58953} -{"length":249,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":107,"i":134638192},"flags":15,"cn0":159,"P":1292792509,"D":{"f":85,"i":1312},"lock":15,"sid":{"sat":25,"code":12}},{"L":{"f":230,"i":121058486},"flags":15,"cn0":184,"P":1162400452,"D":{"f":186,"i":1608},"lock":15,"sid":{"sat":12,"code":12}},{"L":{"f":243,"i":124522548},"flags":15,"cn0":185,"P":1195662276,"D":{"f":38,"i":-304},"lock":15,"sid":{"sat":19,"code":12}},{"L":{"f":11,"i":124643023},"flags":15,"cn0":193,"P":1196819105,"D":{"f":239,"i":2379},"lock":15,"sid":{"sat":22,"code":12}},{"L":{"f":189,"i":93610109},"flags":15,"cn0":208,"P":1162400383,"D":{"f":198,"i":1244},"lock":15,"sid":{"sat":12,"code":13}},{"L":{"f":90,"i":116452606},"flags":15,"cn0":193,"P":1108009673,"D":{"f":66,"i":-1030},"lock":15,"sid":{"sat":12,"code":14}},{"L":{"f":26,"i":132446852},"flags":15,"cn0":190,"P":1260189821,"D":{"f":132,"i":1076},"lock":15,"sid":{"sat":25,"code":14}},{"L":{"f":226,"i":125395540},"flags":15,"cn0":188,"P":1193098840,"D":{"f":115,"i":1042},"lock":15,"sid":{"sat":11,"code":14}},{"L":{"f":101,"i":118459123},"flags":15,"cn0":202,"P":1127100942,"D":{"f":111,"i":-1755},"lock":15,"sid":{"sat":24,"code":14}},{"L":{"f":177,"i":143403469},"flags":15,"cn0":158,"P":1364438604,"D":{"f":255,"i":-3175},"lock":15,"sid":{"sat":31,"code":14}},{"L":{"f":163,"i":144579539},"flags":15,"cn0":151,"P":1375628552,"D":{"f":234,"i":-2143},"lock":15,"sid":{"sat":33,"code":14}},{"L":{"f":183,"i":101485248},"flags":15,"cn0":201,"P":1260189791,"D":{"f":58,"i":826},"lock":15,"sid":{"sat":25,"code":20}},{"L":{"f":211,"i":90767443},"flags":15,"cn0":215,"P":1127101501,"D":{"f":141,"i":-1345},"lock":15,"sid":{"sat":24,"code":20}},{"L":{"f":105,"i":96082275},"flags":15,"cn0":194,"P":1193098651,"D":{"f":31,"i":798},"lock":15,"sid":{"sat":11,"code":20}}],"payload":"IF8vEAAAAAAyCEK9cg5NcGoGCGsgBVWfDw8ZDMTSSEW2NDcH5kgGurgPDwwMxFtERzQQbAfz0P4muQ8PEwyhAlZHz+ZtBwtLCe/BDw8WDH/SSEV9YJQFvdwExtAPDwwNyeIKQv7s8AZa+vtCwQ8PDA59+BxLhPrkBxo0BIS+Dw8ZDlg+HUdUYnkH4hIEc7wPDwsODjIuQ/OKDwdlJflvyg8PGA5MrlNRzSmMCLGZ8/+eDw8fDght/lHTG54Io6H36pcPDyEOX/gcS8CKDAa3OgM6yQ8PGRQ9NC5DUwBpBdO/+o3XDw8YFJs9HUdjGboFaR4DH8IPDwsU","header":{"n_obs":66,"t":{"ns_residual":0,"wn":2098,"tow":271540000}},"crc":13114} -{"length":62,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":49,"i":109880622},"flags":15,"cn0":174,"P":1364438715,"D":{"f":214,"i":-2431},"lock":15,"sid":{"sat":31,"code":20}},{"L":{"f":197,"i":89229949},"flags":15,"cn0":206,"P":1108009518,"D":{"f":130,"i":-790},"lock":15,"sid":{"sat":12,"code":20}},{"L":{"f":172,"i":110781795},"flags":15,"cn0":169,"P":1375628531,"D":{"f":122,"i":-1640},"lock":15,"sid":{"sat":33,"code":20}}],"payload":"IF8vEAAAAAAyCEO7rlNRLqWMBjGB9tauDw8fFC7iCkJ9ilEFxer8gs4PDwwU82z+UWNlmgasmPl6qQ8PIRQ=","header":{"n_obs":67,"t":{"ns_residual":0,"wn":2098,"tow":271540000}},"crc":3383} -{"length":9,"l2ca_bias":0,"preamble":85,"l2p_bias":0,"sender":22963,"msg_type":117,"payload":"/wAAAAAAAAAA","l1ca_bias":0,"mask":255,"crc":49809,"l1p_bias":0} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgggXy8QAAAAAAE=","wn":2098,"tow":271540000,"crc":15685} -{"length":16,"flags":17,"ns":999999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"ESBfLxDkBwMZAxkV/smaOw==","day":25,"tow":271540000,"year":2020,"crc":32045,"minutes":25,"month":3,"seconds":21} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-18.14855627817673,"preamble":85,"sender":22963,"msg_type":522,"payload":"IF8vEB1NSfFl6kJAbbsCH1aSXsBxYsTIByYywAECWwQPBg==","lat":37.83123603896295,"tow":271540000,"h_accuracy":513,"crc":58016,"lon":-122.28650641695795} -{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"IF8vEAMAAAD9//////////EAywIPAg==","n":3,"d":-1,"tow":271540000,"h_accuracy":241,"crc":54906,"e":-3} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"IF8vEJsAhwBMAEgAcgAG","tow":271540000,"crc":3019,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"IF8vEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271540000,"h_accuracy":0,"crc":53289,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"IF8vEP//","tow":271540000,"crc":9732} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":4,"flags":2147616000,"preamble":85,"sender":22963,"msg_type":65535,"payload":"AAUCgA==","crc":40942} -{"length":24,"z":3890655.0240602265,"preamble":85,"sender":22963,"msg_type":72,"payload":"UO0a3iqORMHK1UJhIkRQwc9nFIPvrk1B","crc":2168,"x":-2694229.735196747,"y":-4264073.519704292} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"bWFpbgAAAAAAAAAAAAAAAAAAAAAAAAx1AAA=","name":"main\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":47991,"stack_free":29964,"cpu":0} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"aWRsZQAAAAAAAAAAAAAAAAAAAAATAHwAAAA=","name":"idle\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":36916,"stack_free":124,"cpu":19} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"cnBtc2cAAAAAAAAAAAAAAAAAAAABAOQNAAA=","name":"rpmsg\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":18957,"stack_free":3556,"cpu":1} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"U0JQAAAAAAAAAAAAAAAAAAAAAAAAAPz/AAA=","name":"SBP\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":51784,"stack_free":65532,"cpu":0} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"TkFQAAAAAAAAAAAAAAAAAAAAAAAAAASAAAA=","name":"NAP\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":33651,"stack_free":32772,"cpu":0} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"bWFuYWdlIFBWAAAAAAAAAAAAAAAAACwEAAA=","name":"manage PV\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":61814,"stack_free":1068,"cpu":0} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"SU1VAAAAAAAAAAAAAAAAAAAAAAAAAPQHAAA=","name":"IMU\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":14252,"stack_free":2036,"cpu":0} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"SU1VIGF1eAAAAAAAAAAAAAAAAAAAAEwIAAA=","name":"IMU aux\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":18976,"stack_free":2124,"cpu":0} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"bmRiAAAAAAAAAAAAAAAAAAAAAAAAAFAMAAA=","name":"ndb\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":26120,"stack_free":3152,"cpu":0} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"TkFQIFRyYWNraW5nAAAAAAAAAAApAdR3AAA=","name":"NAP Tracking\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":25570,"stack_free":30676,"cpu":297} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"ZGVjb2RlAAAAAAAAAAAAAAAAAAAIANQGAAA=","name":"decode\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":40082,"stack_free":1748,"cpu":8} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"bWFuYWdlIGFjcQAAAAAAAAAAAAD/AaR3AAA=","name":"manage acq\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":5520,"stack_free":30628,"cpu":511} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"c3lzdGVtIG1vbml0b3IAAAAAAAAAACwGAAA=","name":"system monitor\u0000\u0000\u0000\u0000\u0000\u0000","crc":58531,"stack_free":1580,"cpu":0} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"V2F0Y2hkb2cAAAAAAAAAAAAAAAAAAOQDAAA=","name":"Watchdog\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":44438,"stack_free":996,"cpu":0} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"c3RhcmxpbmcAAAAAAAAAAAAAAACXAPz/AAA=","name":"starling\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":46399,"stack_free":65532,"cpu":151} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"bWVfY2FsY19wdnQAAAAAAAAAAAAJAIwjAAA=","name":"me_calc_pvt\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":57561,"stack_free":9100,"cpu":9} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"UFBTAAAAAAAAAAAAAAAAAAAAAAAAAEgHAAA=","name":"PPS\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":38576,"stack_free":1864,"cpu":0} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"c3BlY3RydW0gYW5hbHl6ZXIAAAAAANQPAAA=","name":"spectrum analyzer\u0000\u0000\u0000","crc":50933,"stack_free":4052,"cpu":0} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgiEXy8QAAAAAAE=","wn":2098,"tow":271540100,"crc":47588} -{"length":16,"flags":17,"ns":99999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EYRfLxDkBwMZAxkW/uD1BQ==","day":25,"tow":271540100,"year":2020,"crc":5525,"minutes":25,"month":3,"seconds":22} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-18.13948043003888,"preamble":85,"sender":22963,"msg_type":522,"payload":"hF8vEJjikfFl6kJA+QoiH1aSXsDyck39tCMywAECWwQPBg==","lat":37.831236072762465,"tow":271540100,"h_accuracy":513,"crc":11167,"lon":-122.28650644611834} -{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"hF8vEAAAAAD4////9f////EAywIPAg==","n":0,"d":-11,"tow":271540100,"h_accuracy":241,"crc":45940,"e":-8} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"hF8vEJsAhwBMAEgAcgAG","tow":271540100,"crc":22911,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"hF8vEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271540100,"h_accuracy":0,"crc":42832,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"hF8vEP//","tow":271540100,"crc":49549} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgjoXy8QAAAAAAE=","wn":2098,"tow":271540200,"crc":62673} -{"length":16,"flags":17,"ns":199999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EehfLxDkBwMZAxkW/sHrCw==","day":25,"tow":271540200,"year":2020,"crc":28219,"minutes":25,"month":3,"seconds":22} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-18.134096061449373,"preamble":85,"sender":22963,"msg_type":522,"payload":"6F8vELBO2PFl6kJArsY8H1aSXsCNcpYeVCIywAECWwQPBg==","lat":37.83123610555538,"tow":271540200,"h_accuracy":513,"crc":57578,"lon":-122.2865064710156} -{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"6F8vEP7///8DAAAADQAAAPEAywIPAg==","n":-2,"d":13,"tow":271540200,"h_accuracy":241,"crc":13882,"e":3} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"6F8vEJsAhwBMAEgAcgAG","tow":271540200,"crc":21141,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"6F8vEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271540200,"h_accuracy":0,"crc":57669,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"6F8vEP//","tow":271540200,"crc":38262} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MghMYC8QAAAAAAE=","wn":2098,"tow":271540300,"crc":61294} -{"length":16,"flags":17,"ns":299999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EUxgLxDkBwMZAxkW/qLhEQ==","day":25,"tow":271540300,"year":2020,"crc":25169,"minutes":25,"month":3,"seconds":22} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-18.131937683444,"preamble":85,"sender":22963,"msg_type":522,"payload":"TGAvEJGFNvJl6kJAkw1PH1aSXsCCgAOrxiEywAECWwQPBg==","lat":37.83123614942736,"tow":271540300,"h_accuracy":513,"crc":3155,"lon":-122.28650648803732} -{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"TGAvEAcAAAACAAAADQAAAPEAywIPAg==","n":7,"d":13,"tow":271540300,"h_accuracy":241,"crc":20711,"e":2} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"TGAvEJsAhwBMAEgAcgAG","tow":271540300,"crc":49268,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"TGAvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271540300,"h_accuracy":0,"crc":54204,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"TGAvEP//","tow":271540300,"crc":7144} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":237,"states":[{"cn0":213,"mesid":{"sat":5,"code":0}},{"cn0":180,"mesid":{"sat":21,"code":0}},{"cn0":186,"mesid":{"sat":2,"code":0}},{"cn0":165,"mesid":{"sat":31,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":217,"mesid":{"sat":25,"code":0}},{"cn0":207,"mesid":{"sat":12,"code":0}},{"cn0":212,"mesid":{"sat":29,"code":0}},{"cn0":206,"mesid":{"sat":18,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":204,"mesid":{"sat":131,"code":2}},{"cn0":204,"mesid":{"sat":25,"code":1}},{"cn0":188,"mesid":{"sat":12,"code":1}},{"cn0":149,"mesid":{"sat":31,"code":1}},{"cn0":196,"mesid":{"sat":18,"code":1}},{"cn0":194,"mesid":{"sat":29,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":193,"mesid":{"sat":5,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":212,"mesid":{"sat":100,"code":3}},{"cn0":176,"mesid":{"sat":98,"code":3}},{"cn0":174,"mesid":{"sat":102,"code":3}},{"cn0":206,"mesid":{"sat":101,"code":3}},{"cn0":206,"mesid":{"sat":93,"code":3}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":180,"mesid":{"sat":106,"code":3}},{"cn0":203,"mesid":{"sat":104,"code":3}},{"cn0":174,"mesid":{"sat":98,"code":4}},{"cn0":205,"mesid":{"sat":102,"code":4}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":199,"mesid":{"sat":100,"code":4}},{"cn0":195,"mesid":{"sat":101,"code":4}},{"cn0":188,"mesid":{"sat":104,"code":4}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":173,"mesid":{"sat":106,"code":4}},{"cn0":200,"mesid":{"sat":35,"code":12}},{"cn0":171,"mesid":{"sat":26,"code":12}},{"cn0":161,"mesid":{"sat":34,"code":12}},{"cn0":188,"mesid":{"sat":24,"code":12}},{"cn0":159,"mesid":{"sat":25,"code":12}},{"cn0":185,"mesid":{"sat":12,"code":12}},{"cn0":185,"mesid":{"sat":19,"code":12}},{"cn0":193,"mesid":{"sat":22,"code":12}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":208,"mesid":{"sat":12,"code":13}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":193,"mesid":{"sat":12,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":190,"mesid":{"sat":25,"code":14}},{"cn0":187,"mesid":{"sat":11,"code":14}},{"cn0":202,"mesid":{"sat":24,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":157,"mesid":{"sat":31,"code":14}},{"cn0":150,"mesid":{"sat":33,"code":14}},{"cn0":201,"mesid":{"sat":25,"code":20}},{"cn0":215,"mesid":{"sat":24,"code":20}},{"cn0":194,"mesid":{"sat":11,"code":20}},{"cn0":174,"mesid":{"sat":31,"code":20}},{"cn0":206,"mesid":{"sat":12,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":170,"mesid":{"sat":33,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}}],"preamble":85,"sender":22963,"msg_type":97,"payload":"BQDVFQC0AgC6HwClAAAAAAAAGQDZDADPHQDUEgDOAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwLMGQHMDAG8HwGVEgHEHQHCAAAABQHBAAAAAAAAAAAAAAAAZAPUYgOwZgOuZQPOXQPOAAAAagO0aAPLYgSuZgTNAAAAZATHZQTDaAS8AAAAagStIwzIGgyrIgyhGAy8GQyfDAy5Ewy5FgzBAAAADA3QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADA7BAAAAGQ6+Cw67GA7KAAAAHw6dIQ6WGRTJGBTXCxTCHxSuDBTOAAAAIRSqAAAA","crc":20823} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgiwYC8QAAAAAAE=","wn":2098,"tow":271540400,"crc":19991} -{"length":16,"flags":17,"ns":399999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EbBgLxDkBwMZAxkW/oPXFw==","day":25,"tow":271540400,"year":2020,"crc":3360,"minutes":25,"month":3,"seconds":22} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-18.13249202129878,"preamble":85,"sender":22963,"msg_type":522,"payload":"sGAvECjWivJl6kJA8QdbH1aSXsCOdUL/6iEywAECWwQPBg==","lat":37.8312361886895,"tow":271540400,"h_accuracy":513,"crc":63590,"lon":-122.2865064991927} -{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"sGAvEAkAAAD9////EAAAAPEAywIPAg==","n":9,"d":16,"tow":271540400,"h_accuracy":241,"crc":53652,"e":-3} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"sGAvEJsAhwBMAEgAcgAG","tow":271540400,"crc":53510,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"sGAvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271540400,"h_accuracy":0,"crc":37498,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"sGAvEP//","tow":271540400,"crc":33207} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":9,"l2ca_bias":0,"preamble":85,"l2p_bias":0,"sender":22963,"msg_type":117,"payload":"/wAAAAAAAAAA","l1ca_bias":0,"mask":255,"crc":49809,"l1p_bias":0} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MggUYS8QAAAAAAE=","wn":2098,"tow":271540500,"crc":36197} -{"length":16,"flags":17,"ns":499999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"ERRhLxDkBwMZAxkW/mTNHQ==","day":25,"tow":271540500,"year":2020,"crc":19622,"minutes":25,"month":3,"seconds":22} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-18.13026054052216,"preamble":85,"sender":22963,"msg_type":522,"payload":"FGEvEPcP1/Jl6kJArCxlH1aSXsCAgDnBWCEywAECWwQPBg==","lat":37.83123622418491,"tow":271540500,"h_accuracy":513,"crc":43792,"lon":-122.28650650863955} -{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"FGEvEAAAAAACAAAAEwAAAPEAywIPAg==","n":0,"d":19,"tow":271540500,"h_accuracy":241,"crc":60953,"e":2} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"FGEvEJsAhwBMAEgAcgAG","tow":271540500,"crc":63699,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"FGEvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271540500,"h_accuracy":0,"crc":12533,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"FGEvEP//","tow":271540500,"crc":52335} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"Mgh4YS8QAAAAAAE=","wn":2098,"tow":271540600,"crc":49232} -{"length":16,"flags":17,"ns":599999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EXhhLxDkBwMZAxkW/kXDIw==","day":25,"tow":271540600,"year":2020,"crc":552,"minutes":25,"month":3,"seconds":22} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-18.126025964251095,"preamble":85,"sender":22963,"msg_type":522,"payload":"eGEvEAEELvNl6kJAB2VwH1aSXsDD59I8QyAywAECWwQPBg==","lat":37.83123626467569,"tow":271540600,"h_accuracy":513,"crc":10529,"lon":-122.28650651908912} -{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"eGEvEAgAAAAEAAAA9v////EAywIPAg==","n":8,"d":-10,"tow":271540600,"h_accuracy":241,"crc":33364,"e":4} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"eGEvEJsAhwBMAEgAcgAG","tow":271540600,"crc":62265,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"eGEvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271540600,"h_accuracy":0,"crc":30432,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"eGEvEP//","tow":271540600,"crc":39060} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"message_type":2,"length":34,"data":[23,255,255,247,255,0,47,255,0,7,255,127,255,254,127,247,255,255,224,2,229,231,85,238,110,229,112],"preamble":85,"sender":22963,"msg_type":30583,"payload":"gwL+YC8QAhf///f/AC//AAf/f//+f/f//+AC5edV7m7lcA==","tow":271540478,"crc":49929,"sid":{"sat":131,"code":2}} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgjcYS8QAAAAAAE=","wn":2098,"tow":271540700,"crc":17649} -{"length":16,"flags":17,"ns":699999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EdxhLxDkBwMZAxkW/ia5KQ==","day":25,"tow":271540700,"year":2020,"crc":54399,"minutes":25,"month":3,"seconds":22} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-18.116786942666565,"preamble":85,"sender":22963,"msg_type":522,"payload":"3GEvEA4yh/Nl6kJAeCafH1aSXsBMWsO/5R0ywAECWwQPBg==","lat":37.83123630620331,"tow":271540700,"h_accuracy":513,"crc":32561,"lon":-122.28650656263369} -{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"3GEvEPj////4////2v////EAywIPAg==","n":-8,"d":-38,"tow":271540700,"h_accuracy":241,"crc":42357,"e":-8} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"3GEvEJsAhwBMAEgAcgAG","tow":271540700,"crc":41357,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"3GEvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271540700,"h_accuracy":0,"crc":409,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"3GEvEP//","tow":271540700,"crc":32541} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MghAYi8QAAAAAAE=","wn":2098,"tow":271540800,"crc":54744} -{"length":16,"flags":17,"ns":799999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EUBiLxDkBwMZAxkW/gevLw==","day":25,"tow":271540800,"year":2020,"crc":34646,"minutes":25,"month":3,"seconds":22} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-18.114852141525972,"preamble":85,"sender":22963,"msg_type":522,"payload":"QGIvEInWBPRl6kJAAk/NH1aSXsDIui/zZh0ywAECWwQPBg==","lat":37.83123636471016,"tow":271540800,"h_accuracy":513,"crc":33523,"lon":-122.28650660562201} -{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"QGIvEAEAAAD9////EgAAAPEAywIPAg==","n":1,"d":18,"tow":271540800,"h_accuracy":241,"crc":64920,"e":-3} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"QGIvEJsAhwBMAEgAcgAG","tow":271540800,"crc":35393,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"QGIvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271540800,"h_accuracy":0,"crc":37267,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"QGIvEP//","tow":271540800,"crc":21640} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":237,"states":[{"cn0":212,"mesid":{"sat":5,"code":0}},{"cn0":178,"mesid":{"sat":21,"code":0}},{"cn0":185,"mesid":{"sat":2,"code":0}},{"cn0":164,"mesid":{"sat":31,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":216,"mesid":{"sat":25,"code":0}},{"cn0":206,"mesid":{"sat":12,"code":0}},{"cn0":210,"mesid":{"sat":29,"code":0}},{"cn0":205,"mesid":{"sat":18,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":203,"mesid":{"sat":131,"code":2}},{"cn0":204,"mesid":{"sat":25,"code":1}},{"cn0":188,"mesid":{"sat":12,"code":1}},{"cn0":148,"mesid":{"sat":31,"code":1}},{"cn0":196,"mesid":{"sat":18,"code":1}},{"cn0":194,"mesid":{"sat":29,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":193,"mesid":{"sat":5,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":212,"mesid":{"sat":11,"code":3}},{"cn0":175,"mesid":{"sat":9,"code":3}},{"cn0":175,"mesid":{"sat":20,"code":3}},{"cn0":206,"mesid":{"sat":5,"code":3}},{"cn0":206,"mesid":{"sat":10,"code":3}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":180,"mesid":{"sat":4,"code":3}},{"cn0":204,"mesid":{"sat":21,"code":3}},{"cn0":174,"mesid":{"sat":9,"code":4}},{"cn0":205,"mesid":{"sat":20,"code":4}},{"cn0":78,"mesid":{"sat":10,"code":4}},{"cn0":199,"mesid":{"sat":11,"code":4}},{"cn0":195,"mesid":{"sat":5,"code":4}},{"cn0":188,"mesid":{"sat":0,"code":4}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":172,"mesid":{"sat":4,"code":4}},{"cn0":200,"mesid":{"sat":35,"code":12}},{"cn0":170,"mesid":{"sat":26,"code":12}},{"cn0":161,"mesid":{"sat":34,"code":12}},{"cn0":188,"mesid":{"sat":24,"code":12}},{"cn0":159,"mesid":{"sat":25,"code":12}},{"cn0":184,"mesid":{"sat":12,"code":12}},{"cn0":185,"mesid":{"sat":19,"code":12}},{"cn0":193,"mesid":{"sat":22,"code":12}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":209,"mesid":{"sat":12,"code":13}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":194,"mesid":{"sat":12,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":191,"mesid":{"sat":25,"code":14}},{"cn0":188,"mesid":{"sat":11,"code":14}},{"cn0":203,"mesid":{"sat":24,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":157,"mesid":{"sat":31,"code":14}},{"cn0":151,"mesid":{"sat":33,"code":14}},{"cn0":201,"mesid":{"sat":25,"code":20}},{"cn0":215,"mesid":{"sat":24,"code":20}},{"cn0":194,"mesid":{"sat":11,"code":20}},{"cn0":174,"mesid":{"sat":31,"code":20}},{"cn0":206,"mesid":{"sat":12,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":170,"mesid":{"sat":33,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}}],"preamble":85,"sender":22963,"msg_type":97,"payload":"BQDUFQCyAgC5HwCkAAAAAAAAGQDYDADOHQDSEgDNAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwLLGQHMDAG8HwGUEgHEHQHCAAAABQHBAAAAAAAAAAAAAAAACwPUCQOvFAOvBQPOCgPOAAAABAO0FQPMCQSuFATNCgROCwTHBQTDAAS8AAAABASsIwzIGgyqIgyhGAy8GQyfDAy4Ewy5FgzBAAAADA3RAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADA7CAAAAGQ6/Cw68GA7LAAAAHw6dIQ6XGRTJGBTXCxTCHxSuDBTOAAAAIRSqAAAA","crc":45120} -{"length":128,"preamble":85,"sender":22963,"msg_type":151,"payload":"AgAaHQUAKzUMAFEtFQB9GRkAbUYaAKEBHQChNx8AlQ4EAxUWBQMyIQkDXw4KA3EpCwOYJQwDqgMTAyIHFAMMMRUDlSUMDJQpEwwjIBQMDwIWDEMkGAyCIxkMnQ4aDGcVIgyOESMMIi0LDosyDA4PPBgObDYZDpcpHw5VESEOIA8=","crc":34187,"azel":[{"el":29,"az":26,"sid":{"sat":2,"code":0}},{"el":53,"az":43,"sid":{"sat":5,"code":0}},{"el":45,"az":81,"sid":{"sat":12,"code":0}},{"el":25,"az":125,"sid":{"sat":21,"code":0}},{"el":70,"az":109,"sid":{"sat":25,"code":0}},{"el":1,"az":161,"sid":{"sat":26,"code":0}},{"el":55,"az":161,"sid":{"sat":29,"code":0}},{"el":14,"az":149,"sid":{"sat":31,"code":0}},{"el":22,"az":21,"sid":{"sat":4,"code":3}},{"el":33,"az":50,"sid":{"sat":5,"code":3}},{"el":14,"az":95,"sid":{"sat":9,"code":3}},{"el":41,"az":113,"sid":{"sat":10,"code":3}},{"el":37,"az":152,"sid":{"sat":11,"code":3}},{"el":3,"az":170,"sid":{"sat":12,"code":3}},{"el":7,"az":34,"sid":{"sat":19,"code":3}},{"el":49,"az":12,"sid":{"sat":20,"code":3}},{"el":37,"az":149,"sid":{"sat":21,"code":3}},{"el":41,"az":148,"sid":{"sat":12,"code":12}},{"el":32,"az":35,"sid":{"sat":19,"code":12}},{"el":2,"az":15,"sid":{"sat":20,"code":12}},{"el":36,"az":67,"sid":{"sat":22,"code":12}},{"el":35,"az":130,"sid":{"sat":24,"code":12}},{"el":14,"az":157,"sid":{"sat":25,"code":12}},{"el":21,"az":103,"sid":{"sat":26,"code":12}},{"el":17,"az":142,"sid":{"sat":34,"code":12}},{"el":45,"az":34,"sid":{"sat":35,"code":12}},{"el":50,"az":139,"sid":{"sat":11,"code":14}},{"el":60,"az":15,"sid":{"sat":12,"code":14}},{"el":54,"az":108,"sid":{"sat":24,"code":14}},{"el":41,"az":151,"sid":{"sat":25,"code":14}},{"el":17,"az":85,"sid":{"sat":31,"code":14}},{"el":15,"az":32,"sid":{"sat":33,"code":14}}]} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgikYi8QAAAAAAE=","wn":2098,"tow":271540900,"crc":3744} -{"length":16,"flags":17,"ns":899999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EaRiLxDkBwMZAxkW/uikNQ==","day":25,"tow":271540900,"year":2020,"crc":7274,"minutes":25,"month":3,"seconds":22} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-18.109939681051554,"preamble":85,"sender":22963,"msg_type":522,"payload":"pGIvEKzTdfRl6kJAZgb2H1aSXsArpsYBJRwywAECWwQPBg==","lat":37.831236417324675,"tow":271540900,"h_accuracy":513,"crc":11338,"lon":-122.28650664354208} -{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"pGIvEAIAAAABAAAA+f////EAywIPAg==","n":2,"d":-7,"tow":271540900,"h_accuracy":241,"crc":5725,"e":1} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"pGIvEJsAhwBMAEgAcgAG","tow":271540900,"crc":62204,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"pGIvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271540900,"h_accuracy":0,"crc":13232,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"pGIvEP//","tow":271540900,"crc":55569} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":249,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":44,"i":110569183},"flags":15,"cn0":211,"P":1052030684,"D":{"f":48,"i":-201},"lock":15,"sid":{"sat":5,"code":0}},{"L":{"f":53,"i":121768296},"flags":15,"cn0":178,"P":1158586821,"D":{"f":63,"i":2167},"lock":15,"sid":{"sat":21,"code":0}},{"L":{"f":74,"i":123402777},"flags":15,"cn0":185,"P":1174137992,"D":{"f":236,"i":-2480},"lock":15,"sid":{"sat":2,"code":0}},{"L":{"f":33,"i":128748819},"flags":15,"cn0":164,"P":1225004283,"D":{"f":67,"i":-409},"lock":15,"sid":{"sat":31,"code":0}},{"L":{"f":223,"i":107852786},"flags":15,"cn0":216,"P":1026185078,"D":{"f":149,"i":-1143},"lock":15,"sid":{"sat":25,"code":0}},{"L":{"f":133,"i":114176009},"flags":15,"cn0":206,"P":1086348510,"D":{"f":205,"i":-2976},"lock":15,"sid":{"sat":12,"code":0}},{"L":{"f":131,"i":110722369},"flags":15,"cn0":211,"P":1053488235,"D":{"f":195,"i":1479},"lock":15,"sid":{"sat":29,"code":0}},{"L":{"f":32,"i":84041153},"flags":15,"cn0":204,"P":1026185124,"D":{"f":24,"i":-890},"lock":15,"sid":{"sat":25,"code":1}},{"L":{"f":185,"i":88968350},"flags":15,"cn0":188,"P":1086348468,"D":{"f":167,"i":-2320},"lock":15,"sid":{"sat":12,"code":1}},{"L":{"f":145,"i":100323757},"flags":15,"cn0":148,"P":1225004130,"D":{"f":237,"i":-321},"lock":15,"sid":{"sat":31,"code":1}},{"L":{"f":230,"i":86277172},"flags":15,"cn0":194,"P":1053488145,"D":{"f":43,"i":1152},"lock":15,"sid":{"sat":29,"code":1}},{"L":{"f":87,"i":86157834},"flags":15,"cn0":193,"P":1052030587,"D":{"f":235,"i":-157},"lock":15,"sid":{"sat":5,"code":1}},{"L":{"f":163,"i":112906381},"flags":15,"cn0":212,"P":1056444158,"D":{"f":226,"i":1144},"lock":15,"sid":{"sat":11,"code":3}},{"L":{"f":27,"i":123452121},"flags":15,"cn0":175,"P":1155930549,"D":{"f":52,"i":-4409},"lock":15,"sid":{"sat":9,"code":3}}],"payload":"CGMvEAAAAAAyCEDctrQ+3yaXBiw3/zDTDw8FAMWhDkVoCUIHNXcIP7IPDxUAiOz7RRn6WgdKUPbsuQ8PAgD7FARJE42sByFn/kOkDw8fAHZXKj3ys20G34n7ldgPDxkA3lzAQAkwzgaFYPTNzg8PDABr9Mo+QX2ZBoPHBcPTDw8dAKRXKj3BXQIFIIb8GMwPDxkBtFzAQJ6MTQW58PanvA8PDAFiFARJrdH6BZG//u2UDw8fARH0yj40fCQF5oAEK8IPDx0Be7a0PgqqIgVXY//rwQ8PBQH+Dvg+jdC6BqN4BOLUDw8LA7UZ5kTZulsHG8fuNK8PDwkD","header":{"n_obs":64,"t":{"ns_residual":0,"wn":2098,"tow":271541000}},"crc":59430} -{"length":249,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":226,"i":109803025},"flags":15,"cn0":174,"P":1026685685,"D":{"f":161,"i":-1214},"lock":15,"sid":{"sat":20,"code":3}},{"L":{"f":16,"i":114801642},"flags":15,"cn0":206,"P":1073800699,"D":{"f":69,"i":2181},"lock":15,"sid":{"sat":5,"code":3}},{"L":{"f":186,"i":111685246},"flags":15,"cn0":206,"P":1047593045,"D":{"f":50,"i":-3059},"lock":15,"sid":{"sat":10,"code":3}},{"L":{"f":170,"i":120474002},"flags":15,"cn0":180,"P":1124883205,"D":{"f":20,"i":-1336},"lock":15,"sid":{"sat":4,"code":3}},{"L":{"f":122,"i":113376475},"flags":15,"cn0":204,"P":1059354822,"D":{"f":36,"i":1619},"lock":15,"sid":{"sat":21,"code":3}},{"L":{"f":19,"i":96018326},"flags":15,"cn0":174,"P":1155930682,"D":{"f":166,"i":-3428},"lock":15,"sid":{"sat":9,"code":4}},{"L":{"f":50,"i":85402389},"flags":15,"cn0":205,"P":1026686013,"D":{"f":117,"i":-945},"lock":15,"sid":{"sat":20,"code":4}},{"L":{"f":242,"i":87816084},"flags":15,"cn0":199,"P":1056444471,"D":{"f":164,"i":890},"lock":15,"sid":{"sat":11,"code":4}},{"L":{"f":217,"i":89290169},"flags":15,"cn0":195,"P":1073801003,"D":{"f":57,"i":1696},"lock":15,"sid":{"sat":5,"code":4}},{"L":{"f":77,"i":93701992},"flags":15,"cn0":172,"P":1124883366,"D":{"f":173,"i":-1040},"lock":15,"sid":{"sat":4,"code":4}},{"L":{"f":239,"i":121620047},"flags":15,"cn0":200,"P":1167792304,"D":{"f":220,"i":-1504},"lock":15,"sid":{"sat":35,"code":12}},{"L":{"f":112,"i":129292338},"flags":15,"cn0":171,"P":1241461744,"D":{"f":84,"i":-3009},"lock":15,"sid":{"sat":26,"code":12}},{"L":{"f":158,"i":132885887},"flags":15,"cn0":160,"P":1275966691,"D":{"f":26,"i":2246},"lock":15,"sid":{"sat":34,"code":12}},{"L":{"f":198,"i":125186273},"flags":15,"cn0":188,"P":1202035412,"D":{"f":14,"i":-1315},"lock":15,"sid":{"sat":24,"code":12}}],"payload":"CGMvEAAAAAAyCEH1+jE9EXaLBuJC+6GuDw8UA/vlAEDqu9cGEIUIRc4PDwUDVQBxPn4uqAa6DfQyzg8PCgMFWwxDkkkuB6rI+hS0Dw8EA8Z4JD/b/MEGelMGJMwPDxUDOhrmRJYfuQUTnPKmrg8PCQQ9/DE9FSMXBTJP/HXNDw8UBDcQ+D6U9zsF8noDpMcPDwsEK+cAQLl1UgXZoAY5ww8PBQSmWwxDaMeVBU3w+62sDw8EBLAYm0VPxj8H7yD63MgPDyMM8DP/STLYtAdwP/RUqw8PGgzjtA1Mf63rB57GCBqgDw8iDNSapUfhMHYHxt36DrwPDxgM","header":{"n_obs":65,"t":{"ns_residual":0,"wn":2098,"tow":271541000}},"crc":40103} -{"length":249,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":232,"i":134636878},"flags":15,"cn0":159,"P":1292779889,"D":{"f":214,"i":1313},"lock":15,"sid":{"sat":25,"code":12}},{"L":{"f":219,"i":121056876},"flags":15,"cn0":184,"P":1162384993,"D":{"f":126,"i":1609},"lock":15,"sid":{"sat":12,"code":12}},{"L":{"f":125,"i":124522851},"flags":15,"cn0":185,"P":1195665175,"D":{"f":20,"i":-302},"lock":15,"sid":{"sat":19,"code":12}},{"L":{"f":18,"i":124640643},"flags":15,"cn0":193,"P":1196796251,"D":{"f":87,"i":2379},"lock":15,"sid":{"sat":22,"code":12}},{"L":{"f":189,"i":93608864},"flags":15,"cn0":209,"P":1162384924,"D":{"f":25,"i":1244},"lock":15,"sid":{"sat":12,"code":13}},{"L":{"f":70,"i":116453635},"flags":15,"cn0":194,"P":1108019464,"D":{"f":173,"i":-1030},"lock":15,"sid":{"sat":12,"code":14}},{"L":{"f":98,"i":132445774},"flags":15,"cn0":191,"P":1260179554,"D":{"f":195,"i":1075},"lock":15,"sid":{"sat":25,"code":14}},{"L":{"f":0,"i":125394497},"flags":15,"cn0":188,"P":1193088911,"D":{"f":233,"i":1044},"lock":15,"sid":{"sat":11,"code":14}},{"L":{"f":253,"i":118460876},"flags":15,"cn0":203,"P":1127117625,"D":{"f":80,"i":-1755},"lock":15,"sid":{"sat":24,"code":14}},{"L":{"f":167,"i":143406642},"flags":15,"cn0":158,"P":1364468793,"D":{"f":114,"i":-3174},"lock":15,"sid":{"sat":31,"code":14}},{"L":{"f":234,"i":144581678},"flags":15,"cn0":152,"P":1375648881,"D":{"f":94,"i":-2140},"lock":15,"sid":{"sat":33,"code":14}},{"L":{"f":241,"i":101484422},"flags":15,"cn0":201,"P":1260179535,"D":{"f":132,"i":825},"lock":15,"sid":{"sat":25,"code":20}},{"L":{"f":122,"i":90768787},"flags":15,"cn0":215,"P":1127118184,"D":{"f":43,"i":-1345},"lock":15,"sid":{"sat":24,"code":20}},{"L":{"f":139,"i":96081475},"flags":15,"cn0":194,"P":1193088719,"D":{"f":12,"i":800},"lock":15,"sid":{"sat":11,"code":20}}],"payload":"CGMvEAAAAAAyCEJxQQ5NTmUGCOghBdafDw8ZDGGWSEVsLjcH20kGfrgPDwwMF2dER2MRbAd90v4UuQ8PEwxbqVVHg91tBxJLCVfBDw8WDByWSEWgW5QFvdwEGdEPDwwNCAkLQgPx8AZG+vutwg8PDA5i0BxLTvbkB2IzBMO/Dw8ZDo8XHUdBXnkHABQE6bwPDwsOOXMuQ8yRDwf9JflQyw8PGA45JFRRMjaMCKea83KeDw8fDnG8/lEuJJ4I6qT3XpgPDyEOT9AcS4aHDAbxOQOEyQ8PGRRodS5DkwVpBXq/+ivXDw8YFM8WHUdDFroFiyADDMIPDwsU","header":{"n_obs":66,"t":{"ns_residual":0,"wn":2098,"tow":271541000}},"crc":22695} -{"length":62,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":102,"i":109883053},"flags":15,"cn0":174,"P":1364468906,"D":{"f":168,"i":-2430},"lock":15,"sid":{"sat":31,"code":20}},{"L":{"f":38,"i":89230738},"flags":15,"cn0":206,"P":1108019309,"D":{"f":93,"i":-789},"lock":15,"sid":{"sat":12,"code":20}},{"L":{"f":211,"i":110783434},"flags":15,"cn0":170,"P":1375648883,"D":{"f":41,"i":-1640},"lock":15,"sid":{"sat":33,"code":20}}],"payload":"CGMvEAAAAAAyCEOqJFRRra6MBmaC9qiuDw8fFG0IC0KSjVEFJuv8Xc4PDwwUc7z+UcprmgbTmPkpqg8PIRQ=","header":{"n_obs":67,"t":{"ns_residual":0,"wn":2098,"tow":271541000}},"crc":35994} -{"length":9,"l2ca_bias":0,"preamble":85,"l2p_bias":0,"sender":22963,"msg_type":117,"payload":"/wAAAAAAAAAA","l1ca_bias":0,"mask":255,"crc":49809,"l1p_bias":0} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MggIYy8QAAAAAAE=","wn":2098,"tow":271541000,"crc":58413} -{"length":16,"flags":17,"ns":999999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EQhjLxDkBwMZAxkW/smaOw==","day":25,"tow":271541000,"year":2020,"crc":25688,"minutes":25,"month":3,"seconds":22} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-18.105173363228303,"preamble":85,"sender":22963,"msg_type":522,"payload":"CGMvEHT0+PRl6kJA7+cRIFaSXsDUeTuk7BoywAECWwQPBg==","lat":37.83123647838593,"tow":271541000,"h_accuracy":513,"crc":10329,"lon":-122.28650666950828} -{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"CGMvEAYAAAAIAAAAAQAAAPEAywIPAg==","n":6,"d":1,"tow":271541000,"h_accuracy":241,"crc":17953,"e":8} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"CGMvEJsAhwBMAEgAcgAG","tow":271541000,"crc":64620,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"CGMvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271541000,"h_accuracy":0,"crc":53148,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"CGMvEP//","tow":271541000,"crc":39307} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":4,"flags":2147616000,"preamble":85,"sender":22963,"msg_type":65535,"payload":"AAUCgA==","crc":40942} -{"length":24,"z":3890655.0240602265,"preamble":85,"sender":22963,"msg_type":72,"payload":"UO0a3iqORMHK1UJhIkRQwc9nFIPvrk1B","crc":2168,"x":-2694229.735196747,"y":-4264073.519704292} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MghsYy8QAAAAAAE=","wn":2098,"tow":271541100,"crc":32999} -{"length":16,"flags":17,"ns":99999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EWxjLxDkBwMZAxkX/uD1BQ==","day":25,"tow":271541100,"year":2020,"crc":13944,"minutes":25,"month":3,"seconds":23} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-18.104423658497996,"preamble":85,"sender":22963,"msg_type":522,"payload":"bGMvEJgVWfVl6kJA50cpIFaSXsB1LUaCuxoywAECWwQPBg==","lat":37.8312365231497,"tow":271541100,"h_accuracy":513,"crc":7943,"lon":-122.28650669127784} -{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"bGMvEPf///8IAAAAHgAAAPEAywIPAg==","n":-9,"d":30,"tow":271541100,"h_accuracy":241,"crc":17050,"e":8} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"bGMvEJsAhwBMAEgAcgAG","tow":271541100,"crc":53443,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"bGMvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271541100,"h_accuracy":0,"crc":55082,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"bGMvEP//","tow":271541100,"crc":49202} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgjQYy8QAAAAAAE=","wn":2098,"tow":271541200,"crc":32327} -{"length":16,"flags":17,"ns":199999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EdBjLxDkBwMZAxkX/sHrCw==","day":25,"tow":271541200,"year":2020,"crc":32071,"minutes":25,"month":3,"seconds":23} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-18.099200179488015,"preamble":85,"sender":22963,"msg_type":522,"payload":"0GMvEDQs0/Vl6kJANdRKIFaSXsCKqNYuZRkywAECWwQPBg==","lat":37.8312365800015,"tow":271541200,"h_accuracy":513,"crc":55873,"lon":-122.2865067225219} -{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"0GMvEAMAAAD2////BQAAAPEAywIPAg==","n":3,"d":5,"tow":271541200,"h_accuracy":241,"crc":12634,"e":-10} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"0GMvEJsAhwBMAEgAcgAG","tow":271541200,"crc":60344,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"0GMvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271541200,"h_accuracy":0,"crc":17334,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"0GMvEP//","tow":271541200,"crc":12413} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"Mgg0ZC8QAAAAAAE=","wn":2098,"tow":271541300,"crc":25127} -{"length":16,"flags":17,"ns":299999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"ETRkLxDkBwMZAxkX/qLhEQ==","day":25,"tow":271541300,"year":2020,"crc":60279,"minutes":25,"month":3,"seconds":23} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-18.086894012895296,"preamble":85,"sender":22963,"msg_type":522,"payload":"NGQvEOPkUfZl6kJAyGFdIFaSXsB/mp+vPhYywAECWwQPBg==","lat":37.83123663901076,"tow":271541300,"h_accuracy":513,"crc":12054,"lon":-122.28650673980076} -{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"NGQvEAkAAAD9////2f////EAywIPAg==","n":9,"d":-39,"tow":271541300,"h_accuracy":241,"crc":42456,"e":-3} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"NGQvEJsAhwBMAEgAcgAG","tow":271541300,"crc":58115,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"NGQvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271541300,"h_accuracy":0,"crc":59413,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"NGQvEP//","tow":271541300,"crc":55856} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":237,"states":[{"cn0":211,"mesid":{"sat":5,"code":0}},{"cn0":178,"mesid":{"sat":21,"code":0}},{"cn0":184,"mesid":{"sat":2,"code":0}},{"cn0":164,"mesid":{"sat":31,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":215,"mesid":{"sat":25,"code":0}},{"cn0":205,"mesid":{"sat":12,"code":0}},{"cn0":210,"mesid":{"sat":29,"code":0}},{"cn0":204,"mesid":{"sat":18,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":203,"mesid":{"sat":131,"code":2}},{"cn0":205,"mesid":{"sat":25,"code":1}},{"cn0":189,"mesid":{"sat":12,"code":1}},{"cn0":149,"mesid":{"sat":31,"code":1}},{"cn0":197,"mesid":{"sat":18,"code":1}},{"cn0":194,"mesid":{"sat":29,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":193,"mesid":{"sat":5,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":212,"mesid":{"sat":100,"code":3}},{"cn0":175,"mesid":{"sat":98,"code":3}},{"cn0":174,"mesid":{"sat":102,"code":3}},{"cn0":206,"mesid":{"sat":101,"code":3}},{"cn0":206,"mesid":{"sat":93,"code":3}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":181,"mesid":{"sat":106,"code":3}},{"cn0":204,"mesid":{"sat":104,"code":3}},{"cn0":174,"mesid":{"sat":98,"code":4}},{"cn0":205,"mesid":{"sat":102,"code":4}},{"cn0":67,"mesid":{"sat":93,"code":4}},{"cn0":199,"mesid":{"sat":100,"code":4}},{"cn0":194,"mesid":{"sat":101,"code":4}},{"cn0":188,"mesid":{"sat":104,"code":4}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":172,"mesid":{"sat":106,"code":4}},{"cn0":200,"mesid":{"sat":35,"code":12}},{"cn0":171,"mesid":{"sat":26,"code":12}},{"cn0":161,"mesid":{"sat":34,"code":12}},{"cn0":188,"mesid":{"sat":24,"code":12}},{"cn0":159,"mesid":{"sat":25,"code":12}},{"cn0":184,"mesid":{"sat":12,"code":12}},{"cn0":185,"mesid":{"sat":19,"code":12}},{"cn0":193,"mesid":{"sat":22,"code":12}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":211,"mesid":{"sat":12,"code":13}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":194,"mesid":{"sat":12,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":191,"mesid":{"sat":25,"code":14}},{"cn0":188,"mesid":{"sat":11,"code":14}},{"cn0":203,"mesid":{"sat":24,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":159,"mesid":{"sat":31,"code":14}},{"cn0":152,"mesid":{"sat":33,"code":14}},{"cn0":201,"mesid":{"sat":25,"code":20}},{"cn0":215,"mesid":{"sat":24,"code":20}},{"cn0":194,"mesid":{"sat":11,"code":20}},{"cn0":174,"mesid":{"sat":31,"code":20}},{"cn0":206,"mesid":{"sat":12,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":170,"mesid":{"sat":33,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}}],"preamble":85,"sender":22963,"msg_type":97,"payload":"BQDTFQCyAgC4HwCkAAAAAAAAGQDXDADNHQDSEgDMAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwLLGQHNDAG9HwGVEgHFHQHCAAAABQHBAAAAAAAAAAAAAAAAZAPUYgOvZgOuZQPOXQPOAAAAagO1aAPMYgSuZgTNXQRDZATHZQTCaAS8AAAAagSsIwzIGgyrIgyhGAy8GQyfDAy4Ewy5FgzBAAAADA3TAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADA7CAAAAGQ6/Cw68GA7LAAAAHw6fIQ6YGRTJGBTXCxTCHxSuDBTOAAAAIRSqAAAA","crc":38} -{"length":51,"text":"GLO L2OF ME 1 [+1276ms] low CN0 too long, dropping","preamble":85,"sender":22963,"msg_type":1025,"payload":"BkdMTyBMMk9GIE1FIDEgWysxMjc2bXNdIGxvdyBDTjAgdG9vIGxvbmcsIGRyb3BwaW5n","crc":65052,"level":6} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgiYZC8QAAAAAAE=","wn":2098,"tow":271541400,"crc":53113} -{"length":16,"flags":17,"ns":399999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EZhkLxDkBwMZAxkX/oPXFw==","day":25,"tow":271541400,"year":2020,"crc":57477,"minutes":25,"month":3,"seconds":23} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-18.07828484220943,"preamble":85,"sender":22963,"msg_type":522,"payload":"mGQvEPcOs/Zl6kJA58lyIFaSXsDhD7V5ChQywAECWwQPBg==","lat":37.831236684256446,"tow":271541400,"h_accuracy":513,"crc":63209,"lon":-122.28650675973732} -{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"mGQvEP/////8////+f////EAywIPAg==","n":-1,"d":-7,"tow":271541400,"h_accuracy":241,"crc":57489,"e":-4} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"mGQvEJsAhwBMAEgAcgAG","tow":271541400,"crc":38642,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"mGQvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271541400,"h_accuracy":0,"crc":49615,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"mGQvEP//","tow":271541400,"crc":12539} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":9,"l2ca_bias":0,"preamble":85,"l2p_bias":0,"sender":22963,"msg_type":117,"payload":"/wAAAAAAAAAA","l1ca_bias":0,"mask":255,"crc":49809,"l1p_bias":0} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"Mgj8ZC8QAAAAAAE=","wn":2098,"tow":271541500,"crc":43955} -{"length":16,"flags":17,"ns":499999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EfxkLxDkBwMZAxkX/mTNHQ==","day":25,"tow":271541500,"year":2020,"crc":42105,"minutes":25,"month":3,"seconds":23} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-18.075898823869387,"preamble":85,"sender":22963,"msg_type":522,"payload":"/GQvEJwk/fZl6kJAVyqIIFaSXsDqUvYabhMywAECWwQPBg==","lat":37.83123671875475,"tow":271541500,"h_accuracy":513,"crc":4004,"lon":-122.28650677964593} -{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"/GQvEP7///8IAAAANQAAAPEAywIPAg==","n":-2,"d":53,"tow":271541500,"h_accuracy":241,"crc":36638,"e":8} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"/GQvEJsAhwBMAEgAcgAG","tow":271541500,"crc":47709,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"/GQvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271541500,"h_accuracy":0,"crc":55673,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"/GQvEP//","tow":271541500,"crc":26946} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MghgZS8QAAAAAAE=","wn":2098,"tow":271541600,"crc":46396} -{"length":16,"flags":17,"ns":599999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EWBlLxDkBwMZAxkX/kXDIw==","day":25,"tow":271541600,"year":2020,"crc":15379,"minutes":25,"month":3,"seconds":23} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-18.06344534698641,"preamble":85,"sender":22963,"msg_type":522,"payload":"YGUvEKaSUPdl6kJArRGjIFaSXsDXY0r0PRAywAECWwQPBg==","lat":37.8312367576048,"tow":271541600,"h_accuracy":513,"crc":2512,"lon":-122.28650680470192} -{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"YGUvEAUAAAD6////5/////EAywIPAg==","n":5,"d":-25,"tow":271541600,"h_accuracy":241,"crc":23250,"e":-6} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"YGUvEJsAhwBMAEgAcgAG","tow":271541600,"crc":26451,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"YGUvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271541600,"h_accuracy":0,"crc":62142,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"YGUvEP//","tow":271541600,"crc":1620} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"message_type":28,"length":34,"data":[73,48,9,227,120,32,67,116,91,175,87,231,108,142,151,194,218,26,16,8,124,210,207,245,10,114,48],"preamble":85,"sender":22963,"msg_type":30583,"payload":"gwLiZC8QHEkwCeN4IEN0W69X52yOl8LaGhAIfNLP9QpyMA==","tow":271541474,"crc":22659,"sid":{"sat":131,"code":2}} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgjEZS8QAAAAAAE=","wn":2098,"tow":271541700,"crc":12701} -{"length":16,"flags":17,"ns":699999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EcRlLxDkBwMZAxkX/ia5KQ==","day":25,"tow":271541700,"year":2020,"crc":59972,"minutes":25,"month":3,"seconds":23} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-18.051809421077184,"preamble":85,"sender":22963,"msg_type":522,"payload":"xGUvED+Xl/dl6kJAM3OzIFaSXsC1JtlhQw0ywAECWwQPBg==","lat":37.83123679067511,"tow":271541700,"h_accuracy":513,"crc":62711,"lon":-122.28650681995786} -{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"xGUvEAIAAAAAAAAA/f////EAywIPAg==","n":2,"d":-3,"tow":271541700,"h_accuracy":241,"crc":30334,"e":0} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"xGUvEJsAhwBMAEgAcgAG","tow":271541700,"crc":13799,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"xGUvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271541700,"h_accuracy":0,"crc":34247,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"xGUvEP//","tow":271541700,"crc":57821} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MggoZi8QAAAAAAE=","wn":2098,"tow":271541800,"crc":2927} -{"length":16,"flags":17,"ns":799999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EShmLxDkBwMZAxkX/gevLw==","day":25,"tow":271541800,"year":2020,"crc":16634,"minutes":25,"month":3,"seconds":23} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-18.039453457659555,"preamble":85,"sender":22963,"msg_type":522,"payload":"KGYvEEfg2fdl6kJAGe29IFaSXsCmXC6fGQoywAECWwQPBg==","lat":37.8312368215416,"tow":271541800,"h_accuracy":513,"crc":21063,"lon":-122.28650682971455} -{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"KGYvEP3////5////CAAAAPEAywIPAg==","n":-3,"d":8,"tow":271541800,"h_accuracy":241,"crc":43350,"e":-7} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"KGYvEJsAhwBMAEgAcgAG","tow":271541800,"crc":59324,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"KGYvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271541800,"h_accuracy":0,"crc":6012,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"KGYvEP//","tow":271541800,"crc":36820} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":237,"states":[{"cn0":212,"mesid":{"sat":5,"code":0}},{"cn0":179,"mesid":{"sat":21,"code":0}},{"cn0":185,"mesid":{"sat":2,"code":0}},{"cn0":165,"mesid":{"sat":31,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":216,"mesid":{"sat":25,"code":0}},{"cn0":206,"mesid":{"sat":12,"code":0}},{"cn0":210,"mesid":{"sat":29,"code":0}},{"cn0":205,"mesid":{"sat":18,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":202,"mesid":{"sat":131,"code":2}},{"cn0":204,"mesid":{"sat":25,"code":1}},{"cn0":189,"mesid":{"sat":12,"code":1}},{"cn0":149,"mesid":{"sat":31,"code":1}},{"cn0":197,"mesid":{"sat":18,"code":1}},{"cn0":194,"mesid":{"sat":29,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":193,"mesid":{"sat":5,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":212,"mesid":{"sat":11,"code":3}},{"cn0":175,"mesid":{"sat":9,"code":3}},{"cn0":173,"mesid":{"sat":20,"code":3}},{"cn0":207,"mesid":{"sat":5,"code":3}},{"cn0":206,"mesid":{"sat":10,"code":3}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":181,"mesid":{"sat":4,"code":3}},{"cn0":204,"mesid":{"sat":21,"code":3}},{"cn0":173,"mesid":{"sat":9,"code":4}},{"cn0":205,"mesid":{"sat":20,"code":4}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":199,"mesid":{"sat":11,"code":4}},{"cn0":194,"mesid":{"sat":5,"code":4}},{"cn0":188,"mesid":{"sat":0,"code":4}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":172,"mesid":{"sat":4,"code":4}},{"cn0":201,"mesid":{"sat":35,"code":12}},{"cn0":172,"mesid":{"sat":26,"code":12}},{"cn0":161,"mesid":{"sat":34,"code":12}},{"cn0":188,"mesid":{"sat":24,"code":12}},{"cn0":159,"mesid":{"sat":25,"code":12}},{"cn0":184,"mesid":{"sat":12,"code":12}},{"cn0":185,"mesid":{"sat":19,"code":12}},{"cn0":193,"mesid":{"sat":22,"code":12}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":212,"mesid":{"sat":12,"code":13}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":194,"mesid":{"sat":12,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":191,"mesid":{"sat":25,"code":14}},{"cn0":189,"mesid":{"sat":11,"code":14}},{"cn0":203,"mesid":{"sat":24,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":159,"mesid":{"sat":31,"code":14}},{"cn0":150,"mesid":{"sat":33,"code":14}},{"cn0":201,"mesid":{"sat":25,"code":20}},{"cn0":215,"mesid":{"sat":24,"code":20}},{"cn0":194,"mesid":{"sat":11,"code":20}},{"cn0":174,"mesid":{"sat":31,"code":20}},{"cn0":206,"mesid":{"sat":12,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":169,"mesid":{"sat":33,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}}],"preamble":85,"sender":22963,"msg_type":97,"payload":"BQDUFQCzAgC5HwClAAAAAAAAGQDYDADOHQDSEgDNAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwLKGQHMDAG9HwGVEgHFHQHCAAAABQHBAAAAAAAAAAAAAAAACwPUCQOvFAOtBQPPCgPOAAAABAO1FQPMCQStFATNAAAACwTHBQTCAAS8AAAABASsIwzJGgysIgyhGAy8GQyfDAy4Ewy5FgzBAAAADA3UAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADA7CAAAAGQ6/Cw69GA7LAAAAHw6fIQ6WGRTJGBTXCxTCHxSuDBTOAAAAIRSpAAAA","crc":53710} -{"length":128,"preamble":85,"sender":22963,"msg_type":151,"payload":"AgAaHQUAKzUMAFEtFQB9GRkAbUYaAKEBHQChNx8AlQ4EAxUWBQMyIQkDXw4KA3EpCwOYJQwDqgMTAyIHFAMMMRUDlSUMDJQpEwwjIBQMDwIWDEMkGAyCIxkMnQ4aDGcVIgyOESMMIi0LDosyDA4PPBgObDYZDpcpHw5VESEOIA8=","crc":34187,"azel":[{"el":29,"az":26,"sid":{"sat":2,"code":0}},{"el":53,"az":43,"sid":{"sat":5,"code":0}},{"el":45,"az":81,"sid":{"sat":12,"code":0}},{"el":25,"az":125,"sid":{"sat":21,"code":0}},{"el":70,"az":109,"sid":{"sat":25,"code":0}},{"el":1,"az":161,"sid":{"sat":26,"code":0}},{"el":55,"az":161,"sid":{"sat":29,"code":0}},{"el":14,"az":149,"sid":{"sat":31,"code":0}},{"el":22,"az":21,"sid":{"sat":4,"code":3}},{"el":33,"az":50,"sid":{"sat":5,"code":3}},{"el":14,"az":95,"sid":{"sat":9,"code":3}},{"el":41,"az":113,"sid":{"sat":10,"code":3}},{"el":37,"az":152,"sid":{"sat":11,"code":3}},{"el":3,"az":170,"sid":{"sat":12,"code":3}},{"el":7,"az":34,"sid":{"sat":19,"code":3}},{"el":49,"az":12,"sid":{"sat":20,"code":3}},{"el":37,"az":149,"sid":{"sat":21,"code":3}},{"el":41,"az":148,"sid":{"sat":12,"code":12}},{"el":32,"az":35,"sid":{"sat":19,"code":12}},{"el":2,"az":15,"sid":{"sat":20,"code":12}},{"el":36,"az":67,"sid":{"sat":22,"code":12}},{"el":35,"az":130,"sid":{"sat":24,"code":12}},{"el":14,"az":157,"sid":{"sat":25,"code":12}},{"el":21,"az":103,"sid":{"sat":26,"code":12}},{"el":17,"az":142,"sid":{"sat":34,"code":12}},{"el":45,"az":34,"sid":{"sat":35,"code":12}},{"el":50,"az":139,"sid":{"sat":11,"code":14}},{"el":60,"az":15,"sid":{"sat":12,"code":14}},{"el":54,"az":108,"sid":{"sat":24,"code":14}},{"el":41,"az":151,"sid":{"sat":25,"code":14}},{"el":17,"az":85,"sid":{"sat":31,"code":14}},{"el":15,"az":32,"sid":{"sat":33,"code":14}}]} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgiMZi8QAAAAAAE=","wn":2098,"tow":271541900,"crc":36814} -{"length":16,"flags":17,"ns":899999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EYxmLxDkBwMZAxkX/uikNQ==","day":25,"tow":271541900,"year":2020,"crc":61903,"minutes":25,"month":3,"seconds":23} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-18.029342816718177,"preamble":85,"sender":22963,"msg_type":522,"payload":"jGYvEC9zFPhl6kJAHTOeIFaSXsBWLcYCgwcywAECWwQPBg==","lat":37.83123684881718,"tow":271541900,"h_accuracy":513,"crc":11529,"lon":-122.28650680016695} -{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"jGYvEAEAAAAUAAAABgAAAPEAywIPAg==","n":1,"d":6,"tow":271541900,"h_accuracy":241,"crc":54702,"e":20} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"jGYvEJsAhwBMAEgAcgAG","tow":271541900,"crc":46344,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"jGYvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271541900,"h_accuracy":0,"crc":24581,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"jGYvEP//","tow":271541900,"crc":26717} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":249,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":106,"i":110569383},"flags":15,"cn0":211,"P":1052032582,"D":{"f":21,"i":-201},"lock":15,"sid":{"sat":5,"code":0}},{"L":{"f":155,"i":121766128},"flags":15,"cn0":178,"P":1158566203,"D":{"f":239,"i":2166},"lock":15,"sid":{"sat":21,"code":0}},{"L":{"f":70,"i":123405256},"flags":15,"cn0":185,"P":1174161576,"D":{"f":214,"i":-2480},"lock":15,"sid":{"sat":2,"code":0}},{"L":{"f":161,"i":128749227},"flags":15,"cn0":165,"P":1225008177,"D":{"f":161,"i":-410},"lock":15,"sid":{"sat":31,"code":0}},{"L":{"f":18,"i":107853929},"flags":15,"cn0":216,"P":1026195941,"D":{"f":147,"i":-1144},"lock":15,"sid":{"sat":25,"code":0}},{"L":{"f":67,"i":114178986},"flags":15,"cn0":206,"P":1086376834,"D":{"f":119,"i":-2978},"lock":15,"sid":{"sat":12,"code":0}},{"L":{"f":210,"i":110720889},"flags":15,"cn0":211,"P":1053474157,"D":{"f":253,"i":1477},"lock":15,"sid":{"sat":29,"code":0}},{"L":{"f":39,"i":84042043},"flags":15,"cn0":204,"P":1026195994,"D":{"f":188,"i":-892},"lock":15,"sid":{"sat":25,"code":1}},{"L":{"f":69,"i":88970670},"flags":15,"cn0":189,"P":1086376787,"D":{"f":79,"i":-2320},"lock":15,"sid":{"sat":12,"code":1}},{"L":{"f":226,"i":100324075},"flags":15,"cn0":150,"P":1225008038,"D":{"f":162,"i":-318},"lock":15,"sid":{"sat":31,"code":1}},{"L":{"f":226,"i":86276019},"flags":15,"cn0":194,"P":1053474072,"D":{"f":206,"i":1151},"lock":15,"sid":{"sat":29,"code":1}},{"L":{"f":100,"i":86157990},"flags":15,"cn0":193,"P":1052032487,"D":{"f":59,"i":-157},"lock":15,"sid":{"sat":5,"code":1}},{"L":{"f":8,"i":112905237},"flags":15,"cn0":212,"P":1056433454,"D":{"f":249,"i":1142},"lock":15,"sid":{"sat":11,"code":3}},{"L":{"f":41,"i":123456529},"flags":15,"cn0":175,"P":1155971812,"D":{"f":45,"i":-4409},"lock":15,"sid":{"sat":9,"code":3}}],"payload":"8GYvEAAAAAAyCEBGvrQ+pyeXBmo3/xXTDw8FADtRDkXwAEIHm3YI77IPDxUAqEj8RcgDWwdGUPbWuQ8PAgAxJARJq46sB6Fm/qGlDw8fAOWBKj1puG0GEoj7k9gPDxkAgsvAQKo7zgZDXvR3zg8PDABtvco+eXeZBtLFBf3TDw8dABqCKj07YQIFJ4T8vMwPDxkBU8vAQK6VTQVF8PZPvQ8PDAGmIwRJ69L6BeLC/qKWDw8fARi9yj6zdyQF4n8EzsIPDx0B5720PqaqIgVkY/87wQ8PBQEu5fc+Fcy6Bgh2BPnUDw8LA+S65kQRzFsHKcfuLa8PDwkD","header":{"n_obs":64,"t":{"ns_residual":0,"wn":2098,"tow":271542000}},"crc":1160} -{"length":249,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":170,"i":109804239},"flags":15,"cn0":174,"P":1026697037,"D":{"f":62,"i":-1215},"lock":15,"sid":{"sat":20,"code":3}},{"L":{"f":204,"i":114799460},"flags":15,"cn0":207,"P":1073780295,"D":{"f":230,"i":2179},"lock":15,"sid":{"sat":5,"code":3}},{"L":{"f":30,"i":111688305},"flags":15,"cn0":206,"P":1047621712,"D":{"f":219,"i":-3061},"lock":15,"sid":{"sat":10,"code":3}},{"L":{"f":217,"i":120475338},"flags":15,"cn0":180,"P":1124895658,"D":{"f":221,"i":-1339},"lock":15,"sid":{"sat":4,"code":3}},{"L":{"f":209,"i":113374856},"flags":15,"cn0":204,"P":1059339686,"D":{"f":98,"i":1617},"lock":15,"sid":{"sat":21,"code":3}},{"L":{"f":140,"i":96021754},"flags":15,"cn0":173,"P":1155971895,"D":{"f":129,"i":-3430},"lock":15,"sid":{"sat":9,"code":4}},{"L":{"f":63,"i":85403333},"flags":15,"cn0":205,"P":1026697355,"D":{"f":214,"i":-946},"lock":15,"sid":{"sat":20,"code":4}},{"L":{"f":178,"i":87815194},"flags":15,"cn0":199,"P":1056433741,"D":{"f":22,"i":889},"lock":15,"sid":{"sat":11,"code":4}},{"L":{"f":80,"i":89288473},"flags":15,"cn0":194,"P":1073780610,"D":{"f":167,"i":1696},"lock":15,"sid":{"sat":5,"code":4}},{"L":{"f":141,"i":93703031},"flags":15,"cn0":172,"P":1124895856,"D":{"f":48,"i":-1040},"lock":15,"sid":{"sat":4,"code":4}},{"L":{"f":168,"i":121621549},"flags":15,"cn0":201,"P":1167806732,"D":{"f":191,"i":-1504},"lock":15,"sid":{"sat":35,"code":12}},{"L":{"f":86,"i":129295347},"flags":15,"cn0":171,"P":1241490638,"D":{"f":107,"i":-3011},"lock":15,"sid":{"sat":26,"code":12}},{"L":{"f":248,"i":132883638},"flags":15,"cn0":160,"P":1275945105,"D":{"f":206,"i":2246},"lock":15,"sid":{"sat":34,"code":12}},{"L":{"f":83,"i":125187587},"flags":15,"cn0":188,"P":1202048032,"D":{"f":179,"i":-1315},"lock":15,"sid":{"sat":24,"code":12}}],"payload":"8GYvEAAAAAAyCEFNJzI9z3qLBqpB+z6uDw8UA0eWAEBks9cGzIMI5s8PDwUDUHBxPnE6qAYeC/Tbzg8PCgOqiwxDyk4uB9nF+t20Dw8EA6Y9JD+I9sEG0VEGYswPDxUDN7vmRPosuQWMmvKBrQ8PCQSLKDI9xSYXBT9O/NbNDw8UBE3m9z4a9DsFsnkDFscPDwsEgpcAQBlvUgVQoAanwg8PBQRwjAxDd8uVBY3w+zCsDw8EBAxRm0UtzD8HqCD6v8kPDyMMzqT/SfPjtAdWPfRrqw8PGgyRYA1MtqTrB/jGCM6gDw8iDCDMpUcDNnYHU936s7wPDxgM","header":{"n_obs":65,"t":{"ns_residual":0,"wn":2098,"tow":271542000}},"crc":48163} -{"length":249,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":160,"i":134635565},"flags":15,"cn0":159,"P":1292767261,"D":{"f":189,"i":1311},"lock":15,"sid":{"sat":25,"code":12}},{"L":{"f":165,"i":121055266},"flags":15,"cn0":184,"P":1162369534,"D":{"f":41,"i":1608},"lock":15,"sid":{"sat":12,"code":12}},{"L":{"f":80,"i":124523154},"flags":15,"cn0":185,"P":1195668089,"D":{"f":118,"i":-303},"lock":15,"sid":{"sat":19,"code":12}},{"L":{"f":41,"i":124638263},"flags":15,"cn0":193,"P":1196773403,"D":{"f":252,"i":2378},"lock":15,"sid":{"sat":22,"code":12}},{"L":{"f":162,"i":93607619},"flags":15,"cn0":212,"P":1162369461,"D":{"f":207,"i":1244},"lock":15,"sid":{"sat":12,"code":13}},{"L":{"f":13,"i":116454664},"flags":15,"cn0":195,"P":1108029261,"D":{"f":85,"i":-1030},"lock":15,"sid":{"sat":12,"code":14}},{"L":{"f":218,"i":132444696},"flags":15,"cn0":191,"P":1260169306,"D":{"f":107,"i":1076},"lock":15,"sid":{"sat":25,"code":14}},{"L":{"f":5,"i":125393453},"flags":15,"cn0":189,"P":1193078971,"D":{"f":180,"i":1041},"lock":15,"sid":{"sat":11,"code":14}},{"L":{"f":182,"i":118462630},"flags":15,"cn0":203,"P":1127134310,"D":{"f":149,"i":-1755},"lock":15,"sid":{"sat":24,"code":14}},{"L":{"f":98,"i":143409815},"flags":15,"cn0":158,"P":1364498983,"D":{"f":213,"i":-3175},"lock":15,"sid":{"sat":31,"code":14}},{"L":{"f":217,"i":144583817},"flags":15,"cn0":151,"P":1375669252,"D":{"f":1,"i":-2142},"lock":15,"sid":{"sat":33,"code":14}},{"L":{"f":76,"i":101483597},"flags":15,"cn0":201,"P":1260169284,"D":{"f":49,"i":825},"lock":15,"sid":{"sat":25,"code":20}},{"L":{"f":61,"i":90770131},"flags":15,"cn0":215,"P":1127134870,"D":{"f":172,"i":-1346},"lock":15,"sid":{"sat":24,"code":20}},{"L":{"f":157,"i":96080675},"flags":15,"cn0":193,"P":1193078788,"D":{"f":62,"i":800},"lock":15,"sid":{"sat":11,"code":20}}],"payload":"8GYvEAAAAAAyCEIdEA5NLWAGCKAfBb2fDw8ZDP5ZSEUiKDcHpUgGKbgPDwwMeXJER5ISbAdQ0f52uQ8PEwwbUFVHN9RtBylKCfzBDw8WDLVZSEXDVpQFotwEz9QPDwwNTS8LQgj18AYN+vtVww8PDA5aqBxLGPLkB9o0BGu/Dw8ZDrvwHEctWnkHBREEtL0PDwsOZrQuQ6aYDwe2JfmVyw8PGA4nmlRRl0KMCGKZ89WeDw8fDgQM/1GJLJ4I2aL3AZcPDyEORKgcS02EDAZMOQMxyQ8PGRSWti5D0wppBT2++qzXDw8YFATwHEcjE7oFnSADPsEPDwsU","header":{"n_obs":66,"t":{"ns_residual":0,"wn":2098,"tow":271542000}},"crc":25095} -{"length":62,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":117,"i":109885484},"flags":15,"cn0":174,"P":1364499086,"D":{"f":77,"i":-2433},"lock":15,"sid":{"sat":31,"code":20}},{"L":{"f":112,"i":89231526},"flags":15,"cn0":206,"P":1108029097,"D":{"f":197,"i":-789},"lock":15,"sid":{"sat":12,"code":20}},{"L":{"f":202,"i":110785073},"flags":15,"cn0":170,"P":1375669236,"D":{"f":216,"i":-1642},"lock":15,"sid":{"sat":33,"code":20}}],"payload":"8GYvEAAAAAAyCEOOmlRRLLiMBnV/9k2uDw8fFKkuC0KmkFEFcOv8xc4PDwwU9Av/UTFymgbKlvnYqg8PIRQ=","header":{"n_obs":67,"t":{"ns_residual":0,"wn":2098,"tow":271542000}},"crc":35991} -{"length":9,"l2ca_bias":0,"preamble":85,"l2p_bias":0,"sender":22963,"msg_type":117,"payload":"/wAAAAAAAAAA","l1ca_bias":0,"mask":255,"crc":49809,"l1p_bias":0} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgjwZi8QAAAAAAE=","wn":2098,"tow":271542000,"crc":37125} -{"length":16,"flags":17,"ns":999999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EfBmLxDkBwMZAxkX/smaOw==","day":25,"tow":271542000,"year":2020,"crc":49677,"minutes":25,"month":3,"seconds":23} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-18.020074549446463,"preamble":85,"sender":22963,"msg_type":522,"payload":"8GYvEAz5Svhl6kJAb1+lIFaSXsDAWg2bIwUywAECWwQPBg==","lat":37.83123687420638,"tow":271542000,"h_accuracy":513,"crc":14336,"lon":-122.28650680684744} -{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"8GYvEAIAAAD2////AQAAAPEAywIPAg==","n":2,"d":1,"tow":271542000,"h_accuracy":241,"crc":46270,"e":-10} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"8GYvEJsAhwBMAEgAcgAG","tow":271542000,"crc":61544,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"8GYvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271542000,"h_accuracy":0,"crc":39766,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"8GYvEP//","tow":271542000,"crc":9762} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":4,"flags":2147616000,"preamble":85,"sender":22963,"msg_type":65535,"payload":"AAUCgA==","crc":40942} -{"length":24,"z":3890655.0240602265,"preamble":85,"sender":22963,"msg_type":72,"payload":"UO0a3iqORMHK1UJhIkRQwc9nFIPvrk1B","crc":2168,"x":-2694229.735196747,"y":-4264073.519704292} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"bWFpbgAAAAAAAAAAAAAAAAAAAAAAAAx1AAA=","name":"main\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":47991,"stack_free":29964,"cpu":0} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"aWRsZQAAAAAAAAAAAAAAAAAAAABeAXwAAAA=","name":"idle\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":7734,"stack_free":124,"cpu":350} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"cnBtc2cAAAAAAAAAAAAAAAAAAAABANQNAAA=","name":"rpmsg\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":26340,"stack_free":3540,"cpu":1} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"U0JQAAAAAAAAAAAAAAAAAAAAAAAAAPz/AAA=","name":"SBP\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":51784,"stack_free":65532,"cpu":0} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"TkFQAAAAAAAAAAAAAAAAAAAAAAAAAASAAAA=","name":"NAP\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":33651,"stack_free":32772,"cpu":0} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"bWFuYWdlIFBWAAAAAAAAAAAAAAAAACwEAAA=","name":"manage PV\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":61814,"stack_free":1068,"cpu":0} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"SU1VAAAAAAAAAAAAAAAAAAAAAAAAAPQHAAA=","name":"IMU\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":14252,"stack_free":2036,"cpu":0} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"SU1VIGF1eAAAAAAAAAAAAAAAAAAAAEwIAAA=","name":"IMU aux\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":18976,"stack_free":2124,"cpu":0} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"bmRiAAAAAAAAAAAAAAAAAAAAAAAAAFAMAAA=","name":"ndb\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":26120,"stack_free":3152,"cpu":0} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"TkFQIFRyYWNraW5nAAAAAAAAAAAdAdR3AAA=","name":"NAP Tracking\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":19151,"stack_free":30676,"cpu":285} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"ZGVjb2RlAAAAAAAAAAAAAAAAAAAHANQGAAA=","name":"decode\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":22929,"stack_free":1748,"cpu":7} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"bWFuYWdlIGFjcQAAAAAAAAAAAADEAKR3AAA=","name":"manage acq\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":21487,"stack_free":30628,"cpu":196} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"c3lzdGVtIG1vbml0b3IAAAAAAAAAACwGAAA=","name":"system monitor\u0000\u0000\u0000\u0000\u0000\u0000","crc":58531,"stack_free":1580,"cpu":0} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"V2F0Y2hkb2cAAAAAAAAAAAAAAAAAAOQDAAA=","name":"Watchdog\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":44438,"stack_free":996,"cpu":0} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"c3RhcmxpbmcAAAAAAAAAAAAAAACVAPz/AAA=","name":"starling\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":15999,"stack_free":65532,"cpu":149} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"bWVfY2FsY19wdnQAAAAAAAAAAAAJAIwjAAA=","name":"me_calc_pvt\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":57561,"stack_free":9100,"cpu":9} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"UFBTAAAAAAAAAAAAAAAAAAAAAAAAAEgHAAA=","name":"PPS\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":38576,"stack_free":1864,"cpu":0} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"c3BlY3RydW0gYW5hbHl6ZXIAAAAAANQPAAA=","name":"spectrum analyzer\u0000\u0000\u0000","crc":50933,"stack_free":4052,"cpu":0} -{"cpu_vint":989,"length":10,"fe_temperature":5641,"preamble":85,"sender":22963,"cpu_vaux":1779,"msg_type":181,"payload":"7RbdA/MGWhUJFg==","dev_vin":5869,"crc":31283,"cpu_temperature":5466} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MghUZy8QAAAAAAE=","wn":2098,"tow":271542100,"crc":21111} -{"length":16,"flags":17,"ns":99999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EVRnLxDkBwMZAxkY/uD1BQ==","day":25,"tow":271542100,"year":2020,"crc":23295,"minutes":25,"month":3,"seconds":24} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-18.010393183950505,"preamble":85,"sender":22963,"msg_type":522,"payload":"VGcvEH8KdPhl6kJAAlOeIFaSXsAyK7EgqQIywAECWwQPBg==","lat":37.831236893330235,"tow":271542100,"h_accuracy":513,"crc":33091,"lon":-122.28650680028298} -{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"VGcvEP3///8AAAAA8f////EAywIPAg==","n":-3,"d":-15,"tow":271542100,"h_accuracy":241,"crc":703,"e":0} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"VGcvEJsAhwBMAEgAcgAG","tow":271542100,"crc":55741,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"VGcvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271542100,"h_accuracy":0,"crc":14809,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"VGcvEP//","tow":271542100,"crc":27642} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"Mgi4Zy8QAAAAAAE=","wn":2098,"tow":271542200,"crc":41200} -{"length":16,"flags":17,"ns":199999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EbhnLxDkBwMZAxkY/sHrCw==","day":25,"tow":271542200,"year":2020,"crc":30019,"minutes":25,"month":3,"seconds":24} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-18.00390578033495,"preamble":85,"sender":22963,"msg_type":522,"payload":"uGcvEKRgnPhl6kJAXFeUIFaSXsDRzR74/wAywAECWwQPBg==","lat":37.83123691211338,"tow":271542200,"h_accuracy":513,"crc":13088,"lon":-122.28650679098558} -{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"uGcvEAEAAAD5////BwAAAPEAywIPAg==","n":1,"d":7,"tow":271542200,"h_accuracy":241,"crc":529,"e":-7} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"uGcvEJsAhwBMAEgAcgAG","tow":271542200,"crc":34373,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"uGcvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271542200,"h_accuracy":0,"crc":50521,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"uGcvEP//","tow":271542200,"crc":60193} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MggcaC8QAAAAAAE=","wn":2098,"tow":271542300,"crc":64915} -{"length":16,"flags":17,"ns":299999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"ERxoLxDkBwMZAxkY/qLhEQ==","day":25,"tow":271542300,"year":2020,"crc":8721,"minutes":25,"month":3,"seconds":24} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.998618987962608,"preamble":85,"sender":22963,"msg_type":522,"payload":"HGgvEAdTuPhl6kJAwQKMIFaSXsDKdnZ+pf8xwAECWwQPBg==","lat":37.831236925127136,"tow":271542300,"h_accuracy":513,"crc":6604,"lon":-122.28650678322721} -{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"HGgvEPX///8GAAAAEQAAAPEAywIPAg==","n":-11,"d":17,"tow":271542300,"h_accuracy":241,"crc":42904,"e":6} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"HGgvEJsAhwBMAEgAcgAG","tow":271542300,"crc":20380,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"HGgvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271542300,"h_accuracy":0,"crc":29910,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"HGgvEP//","tow":271542300,"crc":26961} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":237,"states":[{"cn0":212,"mesid":{"sat":5,"code":0}},{"cn0":178,"mesid":{"sat":21,"code":0}},{"cn0":185,"mesid":{"sat":2,"code":0}},{"cn0":164,"mesid":{"sat":31,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":216,"mesid":{"sat":25,"code":0}},{"cn0":206,"mesid":{"sat":12,"code":0}},{"cn0":211,"mesid":{"sat":29,"code":0}},{"cn0":205,"mesid":{"sat":18,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":203,"mesid":{"sat":131,"code":2}},{"cn0":204,"mesid":{"sat":25,"code":1}},{"cn0":189,"mesid":{"sat":12,"code":1}},{"cn0":150,"mesid":{"sat":31,"code":1}},{"cn0":197,"mesid":{"sat":18,"code":1}},{"cn0":194,"mesid":{"sat":29,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":193,"mesid":{"sat":5,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":212,"mesid":{"sat":100,"code":3}},{"cn0":174,"mesid":{"sat":98,"code":3}},{"cn0":174,"mesid":{"sat":102,"code":3}},{"cn0":207,"mesid":{"sat":101,"code":3}},{"cn0":206,"mesid":{"sat":93,"code":3}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":180,"mesid":{"sat":106,"code":3}},{"cn0":204,"mesid":{"sat":104,"code":3}},{"cn0":173,"mesid":{"sat":98,"code":4}},{"cn0":205,"mesid":{"sat":102,"code":4}},{"cn0":68,"mesid":{"sat":93,"code":4}},{"cn0":199,"mesid":{"sat":100,"code":4}},{"cn0":194,"mesid":{"sat":101,"code":4}},{"cn0":188,"mesid":{"sat":104,"code":4}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":173,"mesid":{"sat":106,"code":4}},{"cn0":201,"mesid":{"sat":35,"code":12}},{"cn0":171,"mesid":{"sat":26,"code":12}},{"cn0":160,"mesid":{"sat":34,"code":12}},{"cn0":188,"mesid":{"sat":24,"code":12}},{"cn0":158,"mesid":{"sat":25,"code":12}},{"cn0":185,"mesid":{"sat":12,"code":12}},{"cn0":185,"mesid":{"sat":19,"code":12}},{"cn0":193,"mesid":{"sat":22,"code":12}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":212,"mesid":{"sat":12,"code":13}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":195,"mesid":{"sat":12,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":191,"mesid":{"sat":25,"code":14}},{"cn0":188,"mesid":{"sat":11,"code":14}},{"cn0":203,"mesid":{"sat":24,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":159,"mesid":{"sat":31,"code":14}},{"cn0":152,"mesid":{"sat":33,"code":14}},{"cn0":201,"mesid":{"sat":25,"code":20}},{"cn0":215,"mesid":{"sat":24,"code":20}},{"cn0":194,"mesid":{"sat":11,"code":20}},{"cn0":174,"mesid":{"sat":31,"code":20}},{"cn0":206,"mesid":{"sat":12,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":171,"mesid":{"sat":33,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}}],"preamble":85,"sender":22963,"msg_type":97,"payload":"BQDUFQCyAgC5HwCkAAAAAAAAGQDYDADOHQDTEgDNAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwLLGQHMDAG9HwGWEgHFHQHCAAAABQHBAAAAAAAAAAAAAAAAZAPUYgOuZgOuZQPPXQPOAAAAagO0aAPMYgStZgTNXQREZATHZQTCaAS8AAAAagStIwzJGgyrIgygGAy8GQyeDAy5Ewy5FgzBAAAADA3UAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADA7DAAAAGQ6/Cw68GA7LAAAAHw6fIQ6YGRTJGBTXCxTCHxSuDBTOAAAAIRSrAAAA","crc":16617} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgiAaC8QAAAAAAE=","wn":2098,"tow":271542400,"crc":42191} -{"length":16,"flags":17,"ns":399999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EYBoLxDkBwMZAxkY/oPXFw==","day":25,"tow":271542400,"year":2020,"crc":64125,"minutes":25,"month":3,"seconds":24} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.989061078510613,"preamble":85,"sender":22963,"msg_type":522,"payload":"gGgvEBJI/fhl6kJANxWFIFaSXsAX81kbM/0xwAECWwQPBg==","lat":37.831236957237834,"tow":271542400,"h_accuracy":513,"crc":33173,"lon":-122.28650677677511} -{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"gGgvEBIAAAD4////4v////EAywIPAg==","n":18,"d":-30,"tow":271542400,"h_accuracy":241,"crc":5139,"e":-8} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"gGgvEJsAhwBMAEgAcgAG","tow":271542400,"crc":59891,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"gGgvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271542400,"h_accuracy":0,"crc":35559,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"gGgvEP//","tow":271542400,"crc":44054} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":9,"l2ca_bias":0,"preamble":85,"l2p_bias":0,"sender":22963,"msg_type":117,"payload":"/wAAAAAAAAAA","l1ca_bias":0,"mask":255,"crc":49809,"l1p_bias":0} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgjkaC8QAAAAAAE=","wn":2098,"tow":271542500,"crc":49157} -{"length":16,"flags":17,"ns":499999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EeRoLxDkBwMZAxkY/mTNHQ==","day":25,"tow":271542500,"year":2020,"crc":48769,"minutes":25,"month":3,"seconds":24} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.982549511271365,"preamble":85,"sender":22963,"msg_type":522,"payload":"5GgvEOlTEPll6kJAww9mIFaSXsB+nGFdiPsxwAECWwQPBg==","lat":37.831236966106935,"tow":271542500,"h_accuracy":513,"crc":50824,"lon":-122.28650674788427} -{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"5GgvEPr///8KAAAACgAAAPEAywIPAg==","n":-6,"d":10,"tow":271542500,"h_accuracy":241,"crc":14713,"e":10} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"5GgvEJsAhwBMAEgAcgAG","tow":271542500,"crc":50524,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"5GgvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271542500,"h_accuracy":0,"crc":37457,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"5GgvEP//","tow":271542500,"crc":62895} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MghIaS8QAAAAAAE=","wn":2098,"tow":271542600,"crc":10888} -{"length":16,"flags":17,"ns":599999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EUhpLxDkBwMZAxkY/kXDIw==","day":25,"tow":271542600,"year":2020,"crc":62837,"minutes":25,"month":3,"seconds":24} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.972786462736657,"preamble":85,"sender":22963,"msg_type":522,"payload":"SGkvEB+MS/ll6kJAx2NTIFaSXsAKcpuICPkxwAECWwQPBg==","lat":37.8312369936832,"tow":271542600,"h_accuracy":513,"crc":11089,"lon":-122.28650673049479} -{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"SGkvEAAAAAAAAAAACQAAAPEAywIPAg==","n":0,"d":9,"tow":271542600,"h_accuracy":241,"crc":17924,"e":0} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"SGkvEJsAhwBMAEgAcgAG","tow":271542600,"crc":52172,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"SGkvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271542600,"h_accuracy":0,"crc":28285,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"SGkvEP//","tow":271542600,"crc":46389} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":51,"text":"GLO L2OF ME 1 [+1283ms] low CN0 too long, dropping","preamble":85,"sender":22963,"msg_type":1025,"payload":"BkdMTyBMMk9GIE1FIDEgWysxMjgzbXNdIGxvdyBDTjAgdG9vIGxvbmcsIGRyb3BwaW5n","crc":7250,"level":6} -{"message_type":63,"length":34,"data":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"preamble":85,"sender":22963,"msg_type":30583,"payload":"gwLHaC8QPwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA==","tow":271542471,"crc":22878,"sid":{"sat":131,"code":2}} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgisaS8QAAAAAAE=","wn":2098,"tow":271542700,"crc":61936} -{"length":16,"flags":17,"ns":699999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EaxpLxDkBwMZAxkY/ia5KQ==","day":25,"tow":271542700,"year":2020,"crc":2347,"minutes":25,"month":3,"seconds":24} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.96239638427391,"preamble":85,"sender":22963,"msg_type":522,"payload":"rGkvEA68d/ll6kJAVfk6IFaSXsC+PgScX/YxwAECWwQPBg==","lat":37.831237014259486,"tow":271542700,"h_accuracy":513,"crc":4100,"lon":-122.2865067077558} -{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"rGkvEPb///8FAAAA+f////EAywIPAg==","n":-10,"d":-7,"tow":271542700,"h_accuracy":241,"crc":51882,"e":5} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"rGkvEJsAhwBMAEgAcgAG","tow":271542700,"crc":45937,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"rGkvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271542700,"h_accuracy":0,"crc":52318,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"rGkvEP//","tow":271542700,"crc":14508} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MggQai8QAAAAAAE=","wn":2098,"tow":271542800,"crc":50981} -{"length":16,"flags":17,"ns":799999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"ERBqLxDkBwMZAxkY/gevLw==","day":25,"tow":271542800,"year":2020,"crc":50966,"minutes":25,"month":3,"seconds":24} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.95044029398317,"preamble":85,"sender":22963,"msg_type":522,"payload":"EGovEOGhuvll6kJABG1BIFaSXsBWdRsOUPMxwAECWwQPBg==","lat":37.83123704541118,"tow":271542800,"h_accuracy":513,"crc":21640,"lon":-122.2865067137646} -{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"EGovEAIAAADu/////f////EAywIPAg==","n":2,"d":-3,"tow":271542800,"h_accuracy":241,"crc":21829,"e":-18} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"EGovEJsAhwBMAEgAcgAG","tow":271542800,"crc":1449,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"EGovEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271542800,"h_accuracy":0,"crc":14073,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"EGovEP//","tow":271542800,"crc":9777} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":237,"states":[{"cn0":212,"mesid":{"sat":5,"code":0}},{"cn0":178,"mesid":{"sat":21,"code":0}},{"cn0":185,"mesid":{"sat":2,"code":0}},{"cn0":165,"mesid":{"sat":31,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":216,"mesid":{"sat":25,"code":0}},{"cn0":206,"mesid":{"sat":12,"code":0}},{"cn0":211,"mesid":{"sat":29,"code":0}},{"cn0":205,"mesid":{"sat":18,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":204,"mesid":{"sat":131,"code":2}},{"cn0":204,"mesid":{"sat":25,"code":1}},{"cn0":188,"mesid":{"sat":12,"code":1}},{"cn0":150,"mesid":{"sat":31,"code":1}},{"cn0":197,"mesid":{"sat":18,"code":1}},{"cn0":194,"mesid":{"sat":29,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":193,"mesid":{"sat":5,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":212,"mesid":{"sat":11,"code":3}},{"cn0":174,"mesid":{"sat":9,"code":3}},{"cn0":174,"mesid":{"sat":20,"code":3}},{"cn0":207,"mesid":{"sat":5,"code":3}},{"cn0":206,"mesid":{"sat":10,"code":3}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":181,"mesid":{"sat":4,"code":3}},{"cn0":204,"mesid":{"sat":21,"code":3}},{"cn0":174,"mesid":{"sat":9,"code":4}},{"cn0":205,"mesid":{"sat":20,"code":4}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":199,"mesid":{"sat":11,"code":4}},{"cn0":194,"mesid":{"sat":5,"code":4}},{"cn0":187,"mesid":{"sat":0,"code":4}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":172,"mesid":{"sat":4,"code":4}},{"cn0":201,"mesid":{"sat":35,"code":12}},{"cn0":172,"mesid":{"sat":26,"code":12}},{"cn0":161,"mesid":{"sat":34,"code":12}},{"cn0":188,"mesid":{"sat":24,"code":12}},{"cn0":159,"mesid":{"sat":25,"code":12}},{"cn0":185,"mesid":{"sat":12,"code":12}},{"cn0":185,"mesid":{"sat":19,"code":12}},{"cn0":193,"mesid":{"sat":22,"code":12}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":212,"mesid":{"sat":12,"code":13}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":195,"mesid":{"sat":12,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":191,"mesid":{"sat":25,"code":14}},{"cn0":188,"mesid":{"sat":11,"code":14}},{"cn0":203,"mesid":{"sat":24,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":160,"mesid":{"sat":31,"code":14}},{"cn0":152,"mesid":{"sat":33,"code":14}},{"cn0":201,"mesid":{"sat":25,"code":20}},{"cn0":215,"mesid":{"sat":24,"code":20}},{"cn0":194,"mesid":{"sat":11,"code":20}},{"cn0":174,"mesid":{"sat":31,"code":20}},{"cn0":206,"mesid":{"sat":12,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":170,"mesid":{"sat":33,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}}],"preamble":85,"sender":22963,"msg_type":97,"payload":"BQDUFQCyAgC5HwClAAAAAAAAGQDYDADOHQDTEgDNAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwLMGQHMDAG8HwGWEgHFHQHCAAAABQHBAAAAAAAAAAAAAAAACwPUCQOuFAOuBQPPCgPOAAAABAO1FQPMCQSuFATNAAAACwTHBQTCAAS7AAAABASsIwzJGgysIgyhGAy8GQyfDAy5Ewy5FgzBAAAADA3UAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADA7DAAAAGQ6/Cw68GA7LAAAAHw6gIQ6YGRTJGBTXCxTCHxSuDBTOAAAAIRSqAAAA","crc":62294} -{"length":128,"preamble":85,"sender":22963,"msg_type":151,"payload":"AgAaHQUAKzUMAFEtFQB9GRkAbUYaAKEBHQChNx8AlQ4EAxUWBQMyIQkDXw4KA3EpCwOYJQwDqgMTAyIHFAMMMRUDlSUMDJQpEwwjIBQMDwIWDEMkGAyCIxkMnQ4aDGcVIgyOESMMIi0LDosyDA4PPBgObDYZDpcpHw5VESEOIA8=","crc":34187,"azel":[{"el":29,"az":26,"sid":{"sat":2,"code":0}},{"el":53,"az":43,"sid":{"sat":5,"code":0}},{"el":45,"az":81,"sid":{"sat":12,"code":0}},{"el":25,"az":125,"sid":{"sat":21,"code":0}},{"el":70,"az":109,"sid":{"sat":25,"code":0}},{"el":1,"az":161,"sid":{"sat":26,"code":0}},{"el":55,"az":161,"sid":{"sat":29,"code":0}},{"el":14,"az":149,"sid":{"sat":31,"code":0}},{"el":22,"az":21,"sid":{"sat":4,"code":3}},{"el":33,"az":50,"sid":{"sat":5,"code":3}},{"el":14,"az":95,"sid":{"sat":9,"code":3}},{"el":41,"az":113,"sid":{"sat":10,"code":3}},{"el":37,"az":152,"sid":{"sat":11,"code":3}},{"el":3,"az":170,"sid":{"sat":12,"code":3}},{"el":7,"az":34,"sid":{"sat":19,"code":3}},{"el":49,"az":12,"sid":{"sat":20,"code":3}},{"el":37,"az":149,"sid":{"sat":21,"code":3}},{"el":41,"az":148,"sid":{"sat":12,"code":12}},{"el":32,"az":35,"sid":{"sat":19,"code":12}},{"el":2,"az":15,"sid":{"sat":20,"code":12}},{"el":36,"az":67,"sid":{"sat":22,"code":12}},{"el":35,"az":130,"sid":{"sat":24,"code":12}},{"el":14,"az":157,"sid":{"sat":25,"code":12}},{"el":21,"az":103,"sid":{"sat":26,"code":12}},{"el":17,"az":142,"sid":{"sat":34,"code":12}},{"el":45,"az":34,"sid":{"sat":35,"code":12}},{"el":50,"az":139,"sid":{"sat":11,"code":14}},{"el":60,"az":15,"sid":{"sat":12,"code":14}},{"el":54,"az":108,"sid":{"sat":24,"code":14}},{"el":41,"az":151,"sid":{"sat":25,"code":14}},{"el":17,"az":85,"sid":{"sat":31,"code":14}},{"el":15,"az":32,"sid":{"sat":33,"code":14}}]} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"Mgh0ai8QAAAAAAE=","wn":2098,"tow":271542900,"crc":41967} -{"length":16,"flags":17,"ns":899999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EXRqLxDkBwMZAxkY/uikNQ==","day":25,"tow":271542900,"year":2020,"crc":2104,"minutes":25,"month":3,"seconds":24} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.938962086413994,"preamble":85,"sender":22963,"msg_type":522,"payload":"dGovEMwJB/pl6kJAq8IwIFaSXsAAVb3RX/AxwAECWwQPBg==","lat":37.83123708099046,"tow":271542900,"h_accuracy":513,"crc":30746,"lon":-122.28650669824371} -{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"dGovEAYAAAAAAAAAFAAAAPEAywIPAg==","n":6,"d":20,"tow":271542900,"h_accuracy":241,"crc":6783,"e":0} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"dGovEJsAhwBMAEgAcgAG","tow":271542900,"crc":10502,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"dGovEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271542900,"h_accuracy":0,"crc":11855,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"dGovEP//","tow":271542900,"crc":32648} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":249,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":133,"i":110569584},"flags":15,"cn0":212,"P":1052034492,"D":{"f":202,"i":-202},"lock":15,"sid":{"sat":5,"code":0}},{"L":{"f":114,"i":121763961},"flags":15,"cn0":178,"P":1158545580,"D":{"f":102,"i":2167},"lock":15,"sid":{"sat":21,"code":0}},{"L":{"f":122,"i":123407735},"flags":15,"cn0":185,"P":1174185167,"D":{"f":49,"i":-2479},"lock":15,"sid":{"sat":2,"code":0}},{"L":{"f":214,"i":128749636},"flags":15,"cn0":164,"P":1225012085,"D":{"f":19,"i":-409},"lock":15,"sid":{"sat":31,"code":0}},{"L":{"f":14,"i":107855072},"flags":15,"cn0":216,"P":1026206815,"D":{"f":77,"i":-1144},"lock":15,"sid":{"sat":25,"code":0}},{"L":{"f":145,"i":114181963},"flags":15,"cn0":206,"P":1086405168,"D":{"f":69,"i":-2977},"lock":15,"sid":{"sat":12,"code":0}},{"L":{"f":127,"i":110719410},"flags":15,"cn0":211,"P":1053460083,"D":{"f":28,"i":1479},"lock":15,"sid":{"sat":29,"code":0}},{"L":{"f":201,"i":84042933},"flags":15,"cn0":204,"P":1026206872,"D":{"f":240,"i":-891},"lock":15,"sid":{"sat":25,"code":1}},{"L":{"f":62,"i":88972990},"flags":15,"cn0":188,"P":1086405123,"D":{"f":56,"i":-2320},"lock":15,"sid":{"sat":12,"code":1}},{"L":{"f":186,"i":100324394},"flags":15,"cn0":150,"P":1225011942,"D":{"f":217,"i":-318},"lock":15,"sid":{"sat":31,"code":1}},{"L":{"f":44,"i":86274867},"flags":15,"cn0":194,"P":1053459995,"D":{"f":160,"i":1152},"lock":15,"sid":{"sat":29,"code":1}},{"L":{"f":21,"i":86158147},"flags":15,"cn0":193,"P":1052034395,"D":{"f":85,"i":-157},"lock":15,"sid":{"sat":5,"code":1}},{"L":{"f":124,"i":112904093},"flags":15,"cn0":213,"P":1056422764,"D":{"f":122,"i":1143},"lock":15,"sid":{"sat":11,"code":3}},{"L":{"f":112,"i":123460937},"flags":15,"cn0":175,"P":1156013085,"D":{"f":24,"i":-4408},"lock":15,"sid":{"sat":9,"code":3}}],"payload":"2GovEAAAAAAyCEC8xbQ+cCiXBoU2/8rUDw8FAKwADkV5+EEHcncIZrIPDxUAz6T8RXcNWwd6UfYxuQ8PAgB1MwRJRJCsB9Zn/hOkDw8fAF+sKj3gvG0GDoj7TdgPDxkAMDrBQEtHzgaRX/RFzg8PDABzhso+snGZBn/HBRzTDw8dAJisKj21ZAIFyYX88MwPDxkBAzrBQL6eTQU+8PY4vA8PDAHmMgRJKtT6BbrC/tmWDw8fARuGyj4zcyQFLIAEoMIPDx0BW8W0PkOrIgUVY/9VwQ8PBQFsu/c+nce6Bnx3BHrVDw8LAx1c50RJ3VsHcMjuGK8PDwkD","header":{"n_obs":64,"t":{"ns_residual":0,"wn":2098,"tow":271543000}},"crc":59026} -{"length":249,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":206,"i":109805453},"flags":15,"cn0":174,"P":1026708383,"D":{"f":10,"i":-1213},"lock":15,"sid":{"sat":20,"code":3}},{"L":{"f":97,"i":114797280},"flags":15,"cn0":207,"P":1073759913,"D":{"f":254,"i":2179},"lock":15,"sid":{"sat":5,"code":3}},{"L":{"f":66,"i":111691364},"flags":15,"cn0":206,"P":1047650415,"D":{"f":163,"i":-3060},"lock":15,"sid":{"sat":10,"code":3}},{"L":{"f":2,"i":120476676},"flags":15,"cn0":181,"P":1124908149,"D":{"f":137,"i":-1338},"lock":15,"sid":{"sat":4,"code":3}},{"L":{"f":129,"i":113373238},"flags":15,"cn0":204,"P":1059324579,"D":{"f":65,"i":1618},"lock":15,"sid":{"sat":21,"code":3}},{"L":{"f":55,"i":96025183},"flags":15,"cn0":174,"P":1156013218,"D":{"f":116,"i":-3427},"lock":15,"sid":{"sat":9,"code":4}},{"L":{"f":146,"i":85404277},"flags":15,"cn0":205,"P":1026708701,"D":{"f":244,"i":-945},"lock":15,"sid":{"sat":20,"code":4}},{"L":{"f":68,"i":87814305},"flags":15,"cn0":199,"P":1056423054,"D":{"f":121,"i":889},"lock":15,"sid":{"sat":11,"code":4}},{"L":{"f":111,"i":89286777},"flags":15,"cn0":194,"P":1073760204,"D":{"f":225,"i":1695},"lock":15,"sid":{"sat":5,"code":4}},{"L":{"f":147,"i":93704071},"flags":15,"cn0":172,"P":1124908332,"D":{"f":80,"i":-1040},"lock":15,"sid":{"sat":4,"code":4}},{"L":{"f":169,"i":121623051},"flags":15,"cn0":201,"P":1167821153,"D":{"f":119,"i":-1503},"lock":15,"sid":{"sat":35,"code":12}},{"L":{"f":121,"i":129298356},"flags":15,"cn0":172,"P":1241519540,"D":{"f":33,"i":-3008},"lock":15,"sid":{"sat":26,"code":12}},{"L":{"f":136,"i":132881390},"flags":15,"cn0":162,"P":1275923508,"D":{"f":183,"i":2248},"lock":15,"sid":{"sat":34,"code":12}},{"L":{"f":126,"i":125188901},"flags":15,"cn0":188,"P":1202060654,"D":{"f":172,"i":-1315},"lock":15,"sid":{"sat":24,"code":12}}],"payload":"2GovEAAAAAAyCEGfUzI9jX+LBs5D+wquDw8UA6lGAEDgqtcGYYMI/s8PDwUDb+BxPmRGqAZCDPSjzg8PCgN1vAxDBFQuBwLG+om1Dw8EA6MCJD828MEGgVIGQcwPDxUDolznRF86uQU3nfJ0rg8PCQTdVDI9dSoXBZJP/PTNDw8UBI689z6h8DsFRHkDeccPDwsEzEcAQHloUgVvnwbhwg8PBQQsvQxDh8+VBZPw+1CsDw8EBGGJm0UL0j8HqSH6d8kPDyMMtBUASrTvtAd5QPQhrA8PGgw0DA1M7pvrB4jICLeiDw8iDG79pUclO3YHft36rLwPDxgM","header":{"n_obs":65,"t":{"ns_residual":0,"wn":2098,"tow":271543000}},"crc":6262} -{"length":249,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":254,"i":134634252},"flags":15,"cn0":159,"P":1292754648,"D":{"f":195,"i":1311},"lock":15,"sid":{"sat":25,"code":12}},{"L":{"f":180,"i":121053656},"flags":15,"cn0":185,"P":1162354077,"D":{"f":29,"i":1610},"lock":15,"sid":{"sat":12,"code":12}},{"L":{"f":213,"i":124523457},"flags":15,"cn0":184,"P":1195671012,"D":{"f":199,"i":-305},"lock":15,"sid":{"sat":19,"code":12}},{"L":{"f":188,"i":124635883},"flags":15,"cn0":193,"P":1196750548,"D":{"f":42,"i":2379},"lock":15,"sid":{"sat":22,"code":12}},{"L":{"f":183,"i":93606374},"flags":15,"cn0":212,"P":1162354002,"D":{"f":182,"i":1244},"lock":15,"sid":{"sat":12,"code":13}},{"L":{"f":24,"i":116455693},"flags":15,"cn0":195,"P":1108039043,"D":{"f":181,"i":-1029},"lock":15,"sid":{"sat":12,"code":14}},{"L":{"f":237,"i":132443619},"flags":15,"cn0":191,"P":1260159063,"D":{"f":27,"i":1075},"lock":15,"sid":{"sat":25,"code":14}},{"L":{"f":86,"i":125392409},"flags":15,"cn0":188,"P":1193069036,"D":{"f":38,"i":1043},"lock":15,"sid":{"sat":11,"code":14}},{"L":{"f":255,"i":118464384},"flags":15,"cn0":203,"P":1127151008,"D":{"f":203,"i":-1756},"lock":15,"sid":{"sat":24,"code":14}},{"L":{"f":80,"i":143412988},"flags":15,"cn0":160,"P":1364529192,"D":{"f":23,"i":-3172},"lock":15,"sid":{"sat":31,"code":14}},{"L":{"f":246,"i":144585956},"flags":15,"cn0":153,"P":1375689584,"D":{"f":211,"i":-2138},"lock":15,"sid":{"sat":33,"code":14}},{"L":{"f":31,"i":101482772},"flags":15,"cn0":201,"P":1260159038,"D":{"f":209,"i":824},"lock":15,"sid":{"sat":25,"code":20}},{"L":{"f":111,"i":90771475},"flags":15,"cn0":215,"P":1127151563,"D":{"f":228,"i":-1345},"lock":15,"sid":{"sat":24,"code":20}},{"L":{"f":232,"i":96079875},"flags":15,"cn0":194,"P":1193068859,"D":{"f":163,"i":800},"lock":15,"sid":{"sat":11,"code":20}}],"payload":"2GovEAAAAAAyCELY3g1NDFsGCP4fBcOfDw8ZDJ0dSEXYITcHtEoGHbkPDwwM5H1ER8ETbAfVz/7HuA8PEwzU9lRH68ptB7xLCSrBDw8WDFIdSEXmUZQFt9wEttQPDwwNg1ULQg358AYY+/u1ww8PDA5XgBxL4+3kB+0zBBu/Dw8ZDuzJHEcZVnkHVhMEJrwPDwsOoPUuQ4CfDwf/JPnLyw8PGA4oEFVR/E6MCFCc8xegDw8fDnBb/1HkNJ4I9qb305kPDyEOPoAcSxSBDAYfOAPRyQ8PGRTL9y5DExBpBW+/+uTXDw8YFDvJHEcDELoF6CADo8IPDwsU","header":{"n_obs":66,"t":{"ns_residual":0,"wn":2098,"tow":271543000}},"crc":64552} -{"length":62,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":177,"i":109887915},"flags":15,"cn0":175,"P":1364529284,"D":{"f":45,"i":-2431},"lock":15,"sid":{"sat":31,"code":20}},{"L":{"f":237,"i":89232314},"flags":15,"cn0":206,"P":1108038889,"D":{"f":228,"i":-790},"lock":15,"sid":{"sat":12,"code":20}},{"L":{"f":210,"i":110786712},"flags":15,"cn0":170,"P":1375689595,"D":{"f":134,"i":-1639},"lock":15,"sid":{"sat":33,"code":20}}],"payload":"2GovEAAAAAAyCEOEEFVRq8GMBrGB9i2vDw8fFOlUC0K6k1EF7er85M4PDwwUe1v/UZh4mgbSmfmGqg8PIRQ=","header":{"n_obs":67,"t":{"ns_residual":0,"wn":2098,"tow":271543000}},"crc":46456} -{"length":9,"l2ca_bias":0,"preamble":85,"l2p_bias":0,"sender":22963,"msg_type":117,"payload":"/wAAAAAAAAAA","l1ca_bias":0,"mask":255,"crc":49809,"l1p_bias":0} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgjYai8QAAAAAAE=","wn":2098,"tow":271543000,"crc":3761} -{"length":16,"flags":17,"ns":999999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EdhqLxDkBwMZAxkY/smaOw==","day":25,"tow":271543000,"year":2020,"crc":2923,"minutes":25,"month":3,"seconds":24} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.922487538665806,"preamble":85,"sender":22963,"msg_type":522,"payload":"2GovEKYnXvpl6kJAPlMfIFaSXsCEibEkKOwxwAECWwQPBg==","lat":37.831237121557294,"tow":271543000,"h_accuracy":513,"crc":56305,"lon":-122.28650668200586} -{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"2GovEPz////+////2v////EAywIPAg==","n":-4,"d":-38,"tow":271543000,"h_accuracy":241,"crc":22713,"e":-2} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"2GovEJsAhwBMAEgAcgAG","tow":271543000,"crc":23799,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"2GovEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271543000,"h_accuracy":0,"crc":1941,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"2GovEP//","tow":271543000,"crc":38211} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":4,"flags":2147616000,"preamble":85,"sender":22963,"msg_type":65535,"payload":"AAUCgA==","crc":40942} -{"length":24,"z":3890655.0240602265,"preamble":85,"sender":22963,"msg_type":72,"payload":"UO0a3iqORMHK1UJhIkRQwc9nFIPvrk1B","crc":2168,"x":-2694229.735196747,"y":-4264073.519704292} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"Mgg8ay8QAAAAAAE=","wn":2098,"tow":271543100,"crc":37402} -{"length":16,"flags":17,"ns":99999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"ETxrLxDkBwMZAxkZ/uD1BQ==","day":25,"tow":271543100,"year":2020,"crc":30264,"minutes":25,"month":3,"seconds":25} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.914156806581662,"preamble":85,"sender":22963,"msg_type":522,"payload":"PGsvEKRnuPpl6kJAalgEIFaSXsAdrzMuBuoxwAECWwQPBg==","lat":37.83123716358321,"tow":271543100,"h_accuracy":513,"crc":61097,"lon":-122.28650665687897} -{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"PGsvEAQAAAAKAAAAGgAAAPEAywIPAg==","n":4,"d":26,"tow":271543100,"h_accuracy":241,"crc":36974,"e":10} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"PGsvEJsAhwBMAEgAcgAG","tow":271543100,"crc":24363,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"PGsvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271543100,"h_accuracy":0,"crc":28736,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"PGsvEP//","tow":271543100,"crc":45707} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"Mgigay8QAAAAAAE=","wn":2098,"tow":271543200,"crc":52038} -{"length":16,"flags":17,"ns":199999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EaBrLxDkBwMZAxkZ/sHrCw==","day":25,"tow":271543200,"year":2020,"crc":40979,"minutes":25,"month":3,"seconds":25} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.902988052050933,"preamble":85,"sender":22963,"msg_type":522,"payload":"oGsvEMfX/Ppl6kJACyP4H1aSXsDNPJg5KucxwAECWwQPBg==","lat":37.831237195452154,"tow":271543200,"h_accuracy":513,"crc":58071,"lon":-122.28650664550894} -{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"oGsvEPz/////////+P////EAywIPAg==","n":-4,"d":-8,"tow":271543200,"h_accuracy":241,"crc":19899,"e":-1} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"oGsvEJsAhwBMAEgAcgAG","tow":271543200,"crc":63812,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"oGsvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271543200,"h_accuracy":0,"crc":36465,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"oGsvEP//","tow":271543200,"crc":30668} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":139,"af0":-2.3224857e-5,"w":-1.3463657413316004,"dn":4.863774024282281e-9,"c_us":7.007271e-6,"c_uc":3.5446137e-6,"ecc":2.4803906213492155e-2,"sqrta":5153.536083221436,"preamble":85,"toc":{"wn":2098,"tow":273600},"sender":22963,"msg_type":138,"omegadot":-7.992475775839984e-9,"payload":"FQDALAQAMggAAABAQDgAAAEAAAAwsgCwk0IAcGpDAOBtNgAg6zYAgAQ1AABmtKhKIq7G4zQ+zoPVH/LR/D8AAAD4MWaZPwAAwDyJIbRATXV4Dg49AcAnH2j36ClBvpWVt822ivW/nz9Vvld47j/jWw9tDf79PQDTwrcAALQsAAAAAMAsBAAyCCEhAA==","inc":0.9521902768556066,"inc_dot":4.364467511876155e-10,"tgd":-1.0244548e-8,"iode":33,"crc":59056,"common":{"health_bits":0,"fit_interval":14400,"valid":1,"sid":{"sat":21,"code":0},"toe":{"wn":2098,"tow":273600},"ura":2},"c_rs":73.84375,"m0":1.8012562984006197,"af2":0,"c_rc":234.4375,"af1":5.1159077e-12,"c_is":-2.1420419e-7,"c_ic":4.9360096e-7,"omega0":-2.154811966944783,"iodc":33} -{"length":139,"af0":-3.162166e-5,"w":0.12302202292105374,"dn":4.687338103589416e-9,"c_us":6.943941e-6,"c_uc":4.4591725e-6,"ecc":9.5325744478032e-3,"sqrta":5153.545351028442,"preamble":85,"toc":{"wn":2098,"tow":273584},"sender":22963,"msg_type":138,"omegadot":-8.187483898711045e-9,"payload":"HwCwLAQAMggAAABAQDgAAAEAAABosgBwr0IAuHZDAKCVNgAA6TYAALyzAADwMmzcL2LIITQ+jRvCTcbTA0AAAAB80IWDPwAAIJyLIbRAgzPjXdBF8T/3kXvrHZVBvmQ5Ig1ffr8/craUyTun7j8RGcu37Wv8PYChBLgAADCsAAAAALAsBAAyCCgoAA==","inc":0.9579142510535361,"inc_dot":4.135886561990661e-10,"tgd":-1.3504177e-8,"iode":40,"crc":15733,"common":{"health_bits":0,"fit_interval":14400,"valid":1,"sid":{"sat":31,"code":0},"toe":{"wn":2098,"tow":273584},"ura":2},"c_rs":87.71875,"m0":2.478405578123278,"af2":0,"c_rc":246.71875,"af1":-2.5011104e-12,"c_is":2.7939677e-8,"c_ic":-8.754432e-8,"omega0":1.0795444171410231,"iodc":40} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MggEbC8QAAAAAAE=","wn":2098,"tow":271543300,"crc":35071} -{"length":16,"flags":17,"ns":299999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EQRsLxDkBwMZAxkZ/qLhEQ==","day":25,"tow":271543300,"year":2020,"crc":7210,"minutes":25,"month":3,"seconds":25} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.892007415708008,"preamble":85,"sender":22963,"msg_type":522,"payload":"BGwvEH8XRPtl6kJAe8DsH1aSXsBgQRaZWuQxwAECWwQPBg==","lat":37.83123722863001,"tow":271543300,"h_accuracy":513,"crc":44033,"lon":-122.28650663490582} -{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"BGwvEP3///8CAAAA9v////EAywIPAg==","n":-3,"d":-10,"tow":271543300,"h_accuracy":241,"crc":8662,"e":2} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"BGwvEJsAhwBMAEgAcgAG","tow":271543300,"crc":56310,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"BGwvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271543300,"h_accuracy":0,"crc":61576,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"BGwvEP//","tow":271543300,"crc":63377} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":237,"states":[{"cn0":212,"mesid":{"sat":5,"code":0}},{"cn0":179,"mesid":{"sat":21,"code":0}},{"cn0":185,"mesid":{"sat":2,"code":0}},{"cn0":165,"mesid":{"sat":31,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":216,"mesid":{"sat":25,"code":0}},{"cn0":206,"mesid":{"sat":12,"code":0}},{"cn0":211,"mesid":{"sat":29,"code":0}},{"cn0":205,"mesid":{"sat":18,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":203,"mesid":{"sat":131,"code":2}},{"cn0":205,"mesid":{"sat":25,"code":1}},{"cn0":189,"mesid":{"sat":12,"code":1}},{"cn0":151,"mesid":{"sat":31,"code":1}},{"cn0":197,"mesid":{"sat":18,"code":1}},{"cn0":194,"mesid":{"sat":29,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":193,"mesid":{"sat":5,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":213,"mesid":{"sat":100,"code":3}},{"cn0":175,"mesid":{"sat":98,"code":3}},{"cn0":174,"mesid":{"sat":102,"code":3}},{"cn0":207,"mesid":{"sat":101,"code":3}},{"cn0":206,"mesid":{"sat":93,"code":3}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":181,"mesid":{"sat":106,"code":3}},{"cn0":204,"mesid":{"sat":104,"code":3}},{"cn0":174,"mesid":{"sat":98,"code":4}},{"cn0":206,"mesid":{"sat":102,"code":4}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":199,"mesid":{"sat":100,"code":4}},{"cn0":194,"mesid":{"sat":101,"code":4}},{"cn0":187,"mesid":{"sat":104,"code":4}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":172,"mesid":{"sat":106,"code":4}},{"cn0":201,"mesid":{"sat":35,"code":12}},{"cn0":172,"mesid":{"sat":26,"code":12}},{"cn0":163,"mesid":{"sat":34,"code":12}},{"cn0":188,"mesid":{"sat":24,"code":12}},{"cn0":159,"mesid":{"sat":25,"code":12}},{"cn0":185,"mesid":{"sat":12,"code":12}},{"cn0":184,"mesid":{"sat":19,"code":12}},{"cn0":193,"mesid":{"sat":22,"code":12}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":211,"mesid":{"sat":12,"code":13}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":194,"mesid":{"sat":12,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":191,"mesid":{"sat":25,"code":14}},{"cn0":188,"mesid":{"sat":11,"code":14}},{"cn0":203,"mesid":{"sat":24,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":159,"mesid":{"sat":31,"code":14}},{"cn0":153,"mesid":{"sat":33,"code":14}},{"cn0":201,"mesid":{"sat":25,"code":20}},{"cn0":215,"mesid":{"sat":24,"code":20}},{"cn0":194,"mesid":{"sat":11,"code":20}},{"cn0":174,"mesid":{"sat":31,"code":20}},{"cn0":206,"mesid":{"sat":12,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":170,"mesid":{"sat":33,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}}],"preamble":85,"sender":22963,"msg_type":97,"payload":"BQDUFQCzAgC5HwClAAAAAAAAGQDYDADOHQDTEgDNAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwLLGQHNDAG9HwGXEgHFHQHCAAAABQHBAAAAAAAAAAAAAAAAZAPVYgOvZgOuZQPPXQPOAAAAagO1aAPMYgSuZgTOAAAAZATHZQTCaAS7AAAAagSsIwzJGgysIgyjGAy8GQyfDAy5Ewy4FgzBAAAADA3TAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADA7CAAAAGQ6/Cw68GA7LAAAAHw6fIQ6ZGRTJGBTXCxTCHxSuDBTOAAAAIRSqAAAA","crc":64563} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MghobC8QAAAAAAE=","wn":2098,"tow":271543400,"crc":50634} -{"length":16,"flags":17,"ns":399999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EWhsLxDkBwMZAxkZ/oPXFw==","day":25,"tow":271543400,"year":2020,"crc":27075,"minutes":25,"month":3,"seconds":25} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.880114643473444,"preamble":85,"sender":22963,"msg_type":522,"payload":"aGwvEJl/o/tl6kJABkX2H1aSXsD7cnoxT+ExwAECWwQPBg==","lat":37.83123727305719,"tow":271543400,"h_accuracy":513,"crc":38202,"lon":-122.28650664376991} -{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"aGwvEAYAAAD4/////v////EAywIPAg==","n":6,"d":-2,"tow":271543400,"h_accuracy":241,"crc":23001,"e":-8} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"aGwvEJsAhwBMAEgAcgAG","tow":271543400,"crc":53276,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"aGwvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271543400,"h_accuracy":0,"crc":46749,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"aGwvEP//","tow":271543400,"crc":41834} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":9,"l2ca_bias":0,"preamble":85,"l2p_bias":0,"sender":22963,"msg_type":117,"payload":"/wAAAAAAAAAA","l1ca_bias":0,"mask":255,"crc":49809,"l1p_bias":0} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgjMbC8QAAAAAAE=","wn":2098,"tow":271543500,"crc":16747} -{"length":16,"flags":17,"ns":499999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EcxsLxDkBwMZAxkZ/mTNHQ==","day":25,"tow":271543500,"year":2020,"crc":21284,"minutes":25,"month":3,"seconds":25} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.8727636947281,"preamble":85,"sender":22963,"msg_type":522,"payload":"zGwvEOF64ftl6kJAsfH4H1aSXsBK/gVxbd8xwAECWwQPBg==","lat":37.83123730191961,"tow":271543500,"h_accuracy":513,"crc":31394,"lon":-122.28650664626072} -{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"zGwvEPb/////////CgAAAPEAywIPAg==","n":-10,"d":10,"tow":271543500,"h_accuracy":241,"crc":23358,"e":-1} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"zGwvEJsAhwBMAEgAcgAG","tow":271543500,"crc":33448,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"zGwvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271543500,"h_accuracy":0,"crc":49636,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"zGwvEP//","tow":271543500,"crc":17635} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MggwbS8QAAAAAAE=","wn":2098,"tow":271543600,"crc":42945} -{"length":16,"flags":17,"ns":599999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"ETBtLxDkBwMZAxkZ/kXDIw==","day":25,"tow":271543600,"year":2020,"crc":31827,"minutes":25,"month":3,"seconds":25} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.864227986692867,"preamble":85,"sender":22963,"msg_type":522,"payload":"MG0vEONATPxl6kJA3doDIFaSXsBAIpsLPt0xwAECWwQPBg==","lat":37.83123735163988,"tow":271543600,"h_accuracy":513,"crc":34088,"lon":-122.28650665642222} -{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"MG0vEAMAAAAAAAAAGAAAAPEAywIPAg==","n":3,"d":24,"tow":271543600,"h_accuracy":241,"crc":34316,"e":0} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"MG0vEJsAhwBMAEgAcgAG","tow":271543600,"crc":59579,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"MG0vEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271543600,"h_accuracy":0,"crc":21972,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"MG0vEP//","tow":271543600,"crc":29933} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgiUbS8QAAAAAAE=","wn":2098,"tow":271543700,"crc":9056} -{"length":16,"flags":17,"ns":699999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EZRtLxDkBwMZAxkZ/ia5KQ==","day":25,"tow":271543700,"year":2020,"crc":43524,"minutes":25,"month":3,"seconds":25} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.854212623848383,"preamble":85,"sender":22963,"msg_type":522,"payload":"lG0vEJYJ1/xl6kJACoQUIFaSXsBYQrOtrdoxwAECWwQPBg==","lat":37.831237416266205,"tow":271543700,"h_accuracy":513,"crc":35563,"lon":-122.28650667193884} -{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"lG0vEAoAAAD6////6/////EAywIPAg==","n":10,"d":-21,"tow":271543700,"h_accuracy":241,"crc":27653,"e":-6} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"lG0vEJsAhwBMAEgAcgAG","tow":271543700,"crc":47631,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"lG0vEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271543700,"h_accuracy":0,"crc":8877,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"lG0vEP//","tow":271543700,"crc":37732} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"message_type":25,"length":34,"data":[146,124,2,0,127,246,0,64,0,32,0,3,5,108,27,255,0,12,2,64,64,0,0,0,0,193,80],"preamble":85,"sender":22963,"msg_type":30583,"payload":"gwK/bC8QGZJ8AgB/9gBAACAAAwVsG/8ADAJAQAAAAADBUA==","tow":271543487,"crc":26227,"sid":{"sat":131,"code":2}} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"Mgj4bS8QAAAAAAE=","wn":2098,"tow":271543800,"crc":28245} -{"length":16,"flags":17,"ns":799999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EfhtLxDkBwMZAxkZ/gevLw==","day":25,"tow":271543800,"year":2020,"crc":55563,"minutes":25,"month":3,"seconds":25} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.848061804842963,"preamble":85,"sender":22963,"msg_type":522,"payload":"+G0vEAYALP1l6kJAwzgPIFaSXsCKyRSUGtkxwAECWwQPBg==","lat":37.83123745583002,"tow":271543800,"h_accuracy":513,"crc":10184,"lon":-122.28650666700837} -{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"+G0vEPz///8GAAAA/P////EAywIPAg==","n":-4,"d":-4,"tow":271543800,"h_accuracy":241,"crc":11443,"e":6} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"+G0vEJsAhwBMAEgAcgAG","tow":271543800,"crc":45541,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"+G0vEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271543800,"h_accuracy":0,"crc":25784,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"+G0vEP//","tow":271543800,"crc":51103} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":237,"states":[{"cn0":213,"mesid":{"sat":5,"code":0}},{"cn0":180,"mesid":{"sat":21,"code":0}},{"cn0":186,"mesid":{"sat":2,"code":0}},{"cn0":167,"mesid":{"sat":31,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":217,"mesid":{"sat":25,"code":0}},{"cn0":208,"mesid":{"sat":12,"code":0}},{"cn0":212,"mesid":{"sat":29,"code":0}},{"cn0":206,"mesid":{"sat":18,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":204,"mesid":{"sat":131,"code":2}},{"cn0":205,"mesid":{"sat":25,"code":1}},{"cn0":189,"mesid":{"sat":12,"code":1}},{"cn0":150,"mesid":{"sat":31,"code":1}},{"cn0":197,"mesid":{"sat":18,"code":1}},{"cn0":194,"mesid":{"sat":29,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":193,"mesid":{"sat":5,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":213,"mesid":{"sat":11,"code":3}},{"cn0":175,"mesid":{"sat":9,"code":3}},{"cn0":174,"mesid":{"sat":20,"code":3}},{"cn0":207,"mesid":{"sat":5,"code":3}},{"cn0":207,"mesid":{"sat":10,"code":3}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":181,"mesid":{"sat":4,"code":3}},{"cn0":204,"mesid":{"sat":21,"code":3}},{"cn0":174,"mesid":{"sat":9,"code":4}},{"cn0":206,"mesid":{"sat":20,"code":4}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":199,"mesid":{"sat":11,"code":4}},{"cn0":195,"mesid":{"sat":5,"code":4}},{"cn0":187,"mesid":{"sat":0,"code":4}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":172,"mesid":{"sat":4,"code":4}},{"cn0":201,"mesid":{"sat":35,"code":12}},{"cn0":172,"mesid":{"sat":26,"code":12}},{"cn0":162,"mesid":{"sat":34,"code":12}},{"cn0":188,"mesid":{"sat":24,"code":12}},{"cn0":159,"mesid":{"sat":25,"code":12}},{"cn0":185,"mesid":{"sat":12,"code":12}},{"cn0":184,"mesid":{"sat":19,"code":12}},{"cn0":193,"mesid":{"sat":22,"code":12}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":210,"mesid":{"sat":12,"code":13}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":194,"mesid":{"sat":12,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":191,"mesid":{"sat":25,"code":14}},{"cn0":188,"mesid":{"sat":11,"code":14}},{"cn0":203,"mesid":{"sat":24,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":159,"mesid":{"sat":31,"code":14}},{"cn0":152,"mesid":{"sat":33,"code":14}},{"cn0":201,"mesid":{"sat":25,"code":20}},{"cn0":215,"mesid":{"sat":24,"code":20}},{"cn0":194,"mesid":{"sat":11,"code":20}},{"cn0":175,"mesid":{"sat":31,"code":20}},{"cn0":206,"mesid":{"sat":12,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":170,"mesid":{"sat":33,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}}],"preamble":85,"sender":22963,"msg_type":97,"payload":"BQDVFQC0AgC6HwCnAAAAAAAAGQDZDADQHQDUEgDOAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwLMGQHNDAG9HwGWEgHFHQHCAAAABQHBAAAAAAAAAAAAAAAACwPVCQOvFAOuBQPPCgPPAAAABAO1FQPMCQSuFATOAAAACwTHBQTDAAS7AAAABASsIwzJGgysIgyiGAy8GQyfDAy5Ewy4FgzBAAAADA3SAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADA7CAAAAGQ6/Cw68GA7LAAAAHw6fIQ6YGRTJGBTXCxTCHxSvDBTOAAAAIRSqAAAA","crc":14472} -{"length":128,"preamble":85,"sender":22963,"msg_type":151,"payload":"AgAaHQUAKzUMAFEtFQB9GRkAbUYaAKEBHQChNx8AlQ4EAxUWBQMyIQkDXw4KA3EpCwOYJQwDqgMTAyIHFAMMMRUDlSUMDJQpEwwjIBQMDwIWDEMkGAyCIxkMnQ4aDGcVIgyOESMMIi0LDosyDA4PPBgObDYZDpcpHw5VESEOIA8=","crc":34187,"azel":[{"el":29,"az":26,"sid":{"sat":2,"code":0}},{"el":53,"az":43,"sid":{"sat":5,"code":0}},{"el":45,"az":81,"sid":{"sat":12,"code":0}},{"el":25,"az":125,"sid":{"sat":21,"code":0}},{"el":70,"az":109,"sid":{"sat":25,"code":0}},{"el":1,"az":161,"sid":{"sat":26,"code":0}},{"el":55,"az":161,"sid":{"sat":29,"code":0}},{"el":14,"az":149,"sid":{"sat":31,"code":0}},{"el":22,"az":21,"sid":{"sat":4,"code":3}},{"el":33,"az":50,"sid":{"sat":5,"code":3}},{"el":14,"az":95,"sid":{"sat":9,"code":3}},{"el":41,"az":113,"sid":{"sat":10,"code":3}},{"el":37,"az":152,"sid":{"sat":11,"code":3}},{"el":3,"az":170,"sid":{"sat":12,"code":3}},{"el":7,"az":34,"sid":{"sat":19,"code":3}},{"el":49,"az":12,"sid":{"sat":20,"code":3}},{"el":37,"az":149,"sid":{"sat":21,"code":3}},{"el":41,"az":148,"sid":{"sat":12,"code":12}},{"el":32,"az":35,"sid":{"sat":19,"code":12}},{"el":2,"az":15,"sid":{"sat":20,"code":12}},{"el":36,"az":67,"sid":{"sat":22,"code":12}},{"el":35,"az":130,"sid":{"sat":24,"code":12}},{"el":14,"az":157,"sid":{"sat":25,"code":12}},{"el":21,"az":103,"sid":{"sat":26,"code":12}},{"el":17,"az":142,"sid":{"sat":34,"code":12}},{"el":45,"az":34,"sid":{"sat":35,"code":12}},{"el":50,"az":139,"sid":{"sat":11,"code":14}},{"el":60,"az":15,"sid":{"sat":12,"code":14}},{"el":54,"az":108,"sid":{"sat":24,"code":14}},{"el":41,"az":151,"sid":{"sat":25,"code":14}},{"el":17,"az":85,"sid":{"sat":31,"code":14}},{"el":15,"az":32,"sid":{"sat":33,"code":14}}]} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"Mghcbi8QAAAAAAE=","wn":2098,"tow":271543900,"crc":8833} -{"length":16,"flags":17,"ns":899999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EVxuLxDkBwMZAxkZ/uikNQ==","day":25,"tow":271543900,"year":2020,"crc":58781,"minutes":25,"month":3,"seconds":25} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.83812936136607,"preamble":85,"sender":22963,"msg_type":522,"payload":"XG4vEOvKfP1l6kJAVPkfIFaSXsB44lSlj9YxwAECWwQPBg==","lat":37.83123749345199,"tow":271543900,"h_accuracy":513,"crc":59023,"lon":-122.28650668261008} -{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"XG4vEP////8AAAAA+f////EAywIPAg==","n":-1,"d":-7,"tow":271543900,"h_accuracy":241,"crc":64660,"e":0} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"XG4vEJsAhwBMAEgAcgAG","tow":271543900,"crc":28402,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"XG4vEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271543900,"h_accuracy":0,"crc":32250,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"XG4vEP//","tow":271543900,"crc":52932} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":249,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":255,"i":110569786},"flags":15,"cn0":213,"P":1052036416,"D":{"f":177,"i":-204},"lock":15,"sid":{"sat":5,"code":0}},{"L":{"f":59,"i":121761795},"flags":15,"cn0":180,"P":1158524963,"D":{"f":219,"i":2164},"lock":15,"sid":{"sat":21,"code":0}},{"L":{"f":94,"i":123410215},"flags":15,"cn0":187,"P":1174208752,"D":{"f":91,"i":-2481},"lock":15,"sid":{"sat":2,"code":0}},{"L":{"f":67,"i":128750047},"flags":15,"cn0":168,"P":1225016003,"D":{"f":173,"i":-412},"lock":15,"sid":{"sat":31,"code":0}},{"L":{"f":91,"i":107856216},"flags":15,"cn0":217,"P":1026217705,"D":{"f":50,"i":-1145},"lock":15,"sid":{"sat":25,"code":0}},{"L":{"f":243,"i":114184941},"flags":15,"cn0":208,"P":1086433510,"D":{"f":156,"i":-2979},"lock":15,"sid":{"sat":12,"code":0}},{"L":{"f":15,"i":110717932},"flags":15,"cn0":212,"P":1053446015,"D":{"f":75,"i":1478},"lock":15,"sid":{"sat":29,"code":0}},{"L":{"f":114,"i":84043825},"flags":15,"cn0":205,"P":1026217756,"D":{"f":28,"i":-892},"lock":15,"sid":{"sat":25,"code":1}},{"L":{"f":16,"i":88975311},"flags":15,"cn0":189,"P":1086433457,"D":{"f":156,"i":-2321},"lock":15,"sid":{"sat":12,"code":1}},{"L":{"f":139,"i":100324714},"flags":15,"cn0":151,"P":1225015816,"D":{"f":189,"i":-320},"lock":15,"sid":{"sat":31,"code":1}},{"L":{"f":37,"i":86273715},"flags":15,"cn0":195,"P":1053445924,"D":{"f":237,"i":1151},"lock":15,"sid":{"sat":29,"code":1}},{"L":{"f":223,"i":86158304},"flags":15,"cn0":193,"P":1052036325,"D":{"f":237,"i":-158},"lock":15,"sid":{"sat":5,"code":1}},{"L":{"f":130,"i":112902951},"flags":15,"cn0":213,"P":1056412075,"D":{"f":46,"i":1141},"lock":15,"sid":{"sat":11,"code":3}},{"L":{"f":109,"i":123465346},"flags":15,"cn0":175,"P":1156054345,"D":{"f":68,"i":-4409},"lock":15,"sid":{"sat":9,"code":3}}],"payload":"wG4vEAAAAAAyCEBAzbQ+OimXBv80/7HVDw8FACOwDUUD8EEHO3QI27QPDxUA8AD9RScXWwdeT/Zbuw8PAgDDQgRJ35GsB0Nk/q2oDw8fAOnWKj1YwW0GW4f7MtkPDxkA5qjBQO1SzgbzXfSc0A8PDAB/T8o+7GuZBg/GBUvUDw8dABzXKj0xaAIFcoT8HM0PDxkBsajBQM+nTQUQ7/acvQ8PDAEIQgRJatX6BYvA/r2XDw8fASRPyj6zbiQFJX8E7cMPDx0B5cy0PuCrIgXfYv/twQ8PBQGrkfc+J8O6BoJ1BC7VDw8LA0n950SC7lsHbcfuRK8PDwkD","header":{"n_obs":64,"t":{"ns_residual":0,"wn":2098,"tow":271544000}},"crc":53528} -{"length":249,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":212,"i":109806668},"flags":15,"cn0":174,"P":1026719769,"D":{"f":226,"i":-1216},"lock":15,"sid":{"sat":20,"code":3}},{"L":{"f":87,"i":114795101},"flags":15,"cn0":207,"P":1073739535,"D":{"f":242,"i":2178},"lock":15,"sid":{"sat":5,"code":3}},{"L":{"f":175,"i":111694424},"flags":15,"cn0":207,"P":1047679124,"D":{"f":201,"i":-3061},"lock":15,"sid":{"sat":10,"code":3}},{"L":{"f":184,"i":120478014},"flags":15,"cn0":181,"P":1124920655,"D":{"f":200,"i":-1340},"lock":15,"sid":{"sat":4,"code":3}},{"L":{"f":19,"i":113371621},"flags":15,"cn0":204,"P":1059309462,"D":{"f":223,"i":1616},"lock":15,"sid":{"sat":21,"code":3}},{"L":{"f":110,"i":96028612},"flags":15,"cn0":173,"P":1156054530,"D":{"f":158,"i":-3430},"lock":15,"sid":{"sat":9,"code":4}},{"L":{"f":151,"i":85405222},"flags":15,"cn0":206,"P":1026720066,"D":{"f":7,"i":-945},"lock":15,"sid":{"sat":20,"code":4}},{"L":{"f":15,"i":87813417},"flags":15,"cn0":199,"P":1056412360,"D":{"f":140,"i":887},"lock":15,"sid":{"sat":11,"code":4}},{"L":{"f":160,"i":89285082},"flags":15,"cn0":195,"P":1073739840,"D":{"f":253,"i":1694},"lock":15,"sid":{"sat":5,"code":4}},{"L":{"f":198,"i":93705112},"flags":15,"cn0":172,"P":1124920848,"D":{"f":107,"i":-1042},"lock":15,"sid":{"sat":4,"code":4}},{"L":{"f":122,"i":121624554},"flags":15,"cn0":201,"P":1167835579,"D":{"f":71,"i":-1503},"lock":15,"sid":{"sat":35,"code":12}},{"L":{"f":88,"i":129301366},"flags":15,"cn0":172,"P":1241548442,"D":{"f":197,"i":-3012},"lock":15,"sid":{"sat":26,"code":12}},{"L":{"f":203,"i":132879142},"flags":15,"cn0":162,"P":1275901931,"D":{"f":120,"i":2248},"lock":15,"sid":{"sat":34,"code":12}},{"L":{"f":205,"i":125190216},"flags":15,"cn0":188,"P":1202073274,"D":{"f":48,"i":-1316},"lock":15,"sid":{"sat":24,"code":12}}],"payload":"wG4vEAAAAAAyCEEZgDI9TISLBtRA++KuDw8UAw/3/z9dotcGV4II8s8PDwUDlFByPlhSqAavC/TJzw8PCgNP7QxDPlkuB7jE+si1Dw8EA5bHIz/l6cEGE1AG38wPDxUDAv7nRMRHuQVumvKerQ8PCQRCgTI9Ji4XBZdP/AfODw8UBMiS9z4p7TsFD3cDjMcPDwsEQPj/P9phUgWgngb9ww8PBQQQ7gxDmNOVBcbu+2usDw8EBLvBm0Xq1z8HeiH6R8kPDyMMmoYASnb7tAdYPPTFrA8PGgzrtwxMJpPrB8vICHiiDw8iDLoupkdIQHYHzdz6MLwPDxgM","header":{"n_obs":65,"t":{"ns_residual":0,"wn":2098,"tow":271544000}},"crc":30205} -{"length":249,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":131,"i":134632941},"flags":15,"cn0":159,"P":1292742061,"D":{"f":234,"i":1309},"lock":15,"sid":{"sat":25,"code":12}},{"L":{"f":135,"i":121052047},"flags":15,"cn0":185,"P":1162338627,"D":{"f":46,"i":1609},"lock":15,"sid":{"sat":12,"code":12}},{"L":{"f":151,"i":124523762},"flags":15,"cn0":185,"P":1195673942,"D":{"f":225,"i":-307},"lock":15,"sid":{"sat":19,"code":12}},{"L":{"f":83,"i":124633505},"flags":15,"cn0":193,"P":1196727721,"D":{"f":209,"i":2377},"lock":15,"sid":{"sat":22,"code":12}},{"L":{"f":103,"i":93605130},"flags":15,"cn0":210,"P":1162338547,"D":{"f":108,"i":1243},"lock":15,"sid":{"sat":12,"code":13}},{"L":{"f":238,"i":116456722},"flags":15,"cn0":194,"P":1108048836,"D":{"f":134,"i":-1030},"lock":15,"sid":{"sat":12,"code":14}},{"L":{"f":33,"i":132442544},"flags":15,"cn0":191,"P":1260148821,"D":{"f":86,"i":1075},"lock":15,"sid":{"sat":25,"code":14}},{"L":{"f":138,"i":125391366},"flags":15,"cn0":188,"P":1193059118,"D":{"f":206,"i":1042},"lock":15,"sid":{"sat":11,"code":14}},{"L":{"f":94,"i":118466140},"flags":15,"cn0":203,"P":1127167706,"D":{"f":163,"i":-1757},"lock":15,"sid":{"sat":24,"code":14}},{"L":{"f":3,"i":143416162},"flags":15,"cn0":159,"P":1364559379,"D":{"f":247,"i":-3175},"lock":15,"sid":{"sat":31,"code":14}},{"L":{"f":169,"i":144588096},"flags":15,"cn0":152,"P":1375709979,"D":{"f":221,"i":-2139},"lock":15,"sid":{"sat":33,"code":14}},{"L":{"f":207,"i":101481947},"flags":15,"cn0":201,"P":1260148804,"D":{"f":185,"i":823},"lock":15,"sid":{"sat":25,"code":20}},{"L":{"f":116,"i":90772820},"flags":15,"cn0":215,"P":1127168265,"D":{"f":169,"i":-1347},"lock":15,"sid":{"sat":24,"code":20}},{"L":{"f":228,"i":96079076},"flags":15,"cn0":194,"P":1193058931,"D":{"f":119,"i":798},"lock":15,"sid":{"sat":11,"code":20}}],"payload":"wG4vEAAAAAAyCEKtrQ1N7VUGCIMdBeqfDw8ZDEPhR0WPGzcHh0kGLrkPDwwMVolER/IUbAeXzf7huQ8PEwypnVRHocFtB1NJCdHBDw8WDPPgR0UKTZQFZ9sEbNIPDwwNxHsLQhL98Abu+vuGwg8PDA5VWBxLsOnkByEzBFa/Dw8ZDi6jHEcGUnkHihIEzrwPDwsO2jYvQ1ymDwdeI/mjyw8PGA4ThlVRYluMCAOZ8/efDw8fDhur/1FAPZ4IqaX33ZgPDyEORFgcS9t9DAbPNwO5yQ8PGRQJOS9DVBVpBXS9+qnXDw8YFHOiHEfkDLoF5B4Dd8IPDwsU","header":{"n_obs":66,"t":{"ns_residual":0,"wn":2098,"tow":271544000}},"crc":54459} -{"length":62,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":114,"i":109890347},"flags":15,"cn0":175,"P":1364559488,"D":{"f":207,"i":-2433},"lock":15,"sid":{"sat":31,"code":20}},{"L":{"f":6,"i":89233104},"flags":15,"cn0":206,"P":1108048686,"D":{"f":186,"i":-790},"lock":15,"sid":{"sat":12,"code":20}},{"L":{"f":83,"i":110788352},"flags":15,"cn0":170,"P":1375709953,"D":{"f":124,"i":-1641},"lock":15,"sid":{"sat":33,"code":20}}],"payload":"wG4vEAAAAAAyCEOAhlVRK8uMBnJ/9s+vDw8fFC57C0LQllEFBur8us4PDwwUAav/UQB/mgZTl/l8qg8PIRQ=","header":{"n_obs":67,"t":{"ns_residual":0,"wn":2098,"tow":271544000}},"crc":28052} -{"length":9,"l2ca_bias":0,"preamble":85,"l2p_bias":0,"sender":22963,"msg_type":117,"payload":"/wAAAAAAAAAA","l1ca_bias":0,"mask":255,"crc":49809,"l1p_bias":0} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgjAbi8QAAAAAAE=","wn":2098,"tow":271544000,"crc":31709} -{"length":16,"flags":17,"ns":999999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EcBuLxDkBwMZAxkZ/smaOw==","day":25,"tow":271544000,"year":2020,"crc":13648,"minutes":25,"month":3,"seconds":25} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.83428068125403,"preamble":85,"sender":22963,"msg_type":522,"payload":"wG4vELJa0/1l6kJAyPAhIFaSXsCwqzFrk9UxwAECWwQPBg==","lat":37.83123753376039,"tow":271544000,"h_accuracy":513,"crc":64869,"lon":-122.28650668444163} -{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"wG4vEPz///8BAAAAFAAAAPEAywIPAg==","n":-4,"d":20,"tow":271544000,"h_accuracy":241,"crc":58285,"e":1} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"wG4vEJsAhwBMAEgAcgAG","tow":271544000,"crc":51357,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"wG4vEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271544000,"h_accuracy":0,"crc":33739,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"wG4vEP//","tow":271544000,"crc":2947} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":4,"flags":2147616000,"preamble":85,"sender":22963,"msg_type":65535,"payload":"AAUCgA==","crc":40942} -{"length":24,"z":3890655.0240602265,"preamble":85,"sender":22963,"msg_type":72,"payload":"UO0a3iqORMHK1UJhIkRQwc9nFIPvrk1B","crc":2168,"x":-2694229.735196747,"y":-4264073.519704292} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"bWFpbgAAAAAAAAAAAAAAAAAAAAAAAAx1AAA=","name":"main\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":47991,"stack_free":29964,"cpu":0} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"aWRsZQAAAAAAAAAAAAAAAAAAAABIAXwAAAA=","name":"idle\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":35155,"stack_free":124,"cpu":328} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"cnBtc2cAAAAAAAAAAAAAAAAAAAABAOQNAAA=","name":"rpmsg\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":18957,"stack_free":3556,"cpu":1} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"U0JQAAAAAAAAAAAAAAAAAAAAAAAAAPz/AAA=","name":"SBP\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":51784,"stack_free":65532,"cpu":0} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"TkFQAAAAAAAAAAAAAAAAAAAAAAAAAASAAAA=","name":"NAP\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":33651,"stack_free":32772,"cpu":0} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"bWFuYWdlIFBWAAAAAAAAAAAAAAAAACwEAAA=","name":"manage PV\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":61814,"stack_free":1068,"cpu":0} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"SU1VAAAAAAAAAAAAAAAAAAAAAAAAAPQHAAA=","name":"IMU\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":14252,"stack_free":2036,"cpu":0} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"SU1VIGF1eAAAAAAAAAAAAAAAAAAAAEwIAAA=","name":"IMU aux\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":18976,"stack_free":2124,"cpu":0} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"bmRiAAAAAAAAAAAAAAAAAAAAAAAAAFAMAAA=","name":"ndb\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":26120,"stack_free":3152,"cpu":0} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"TkFQIFRyYWNraW5nAAAAAAAAAAAoAdR3AAA=","name":"NAP Tracking\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":9794,"stack_free":30676,"cpu":296} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"ZGVjb2RlAAAAAAAAAAAAAAAAAAAJANQGAAA=","name":"decode\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":55602,"stack_free":1748,"cpu":9} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"bWFuYWdlIGFjcQAAAAAAAAAAAADJAKR3AAA=","name":"manage acq\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":7596,"stack_free":30628,"cpu":201} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"c3lzdGVtIG1vbml0b3IAAAAAAAAAACwGAAA=","name":"system monitor\u0000\u0000\u0000\u0000\u0000\u0000","crc":58531,"stack_free":1580,"cpu":0} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"V2F0Y2hkb2cAAAAAAAAAAAAAAAAAAOQDAAA=","name":"Watchdog\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":44438,"stack_free":996,"cpu":0} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"c3RhcmxpbmcAAAAAAAAAAAAAAACXAPz/AAA=","name":"starling\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":46399,"stack_free":65532,"cpu":151} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"bWVfY2FsY19wdnQAAAAAAAAAAAAJAIwjAAA=","name":"me_calc_pvt\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":57561,"stack_free":9100,"cpu":9} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"UFBTAAAAAAAAAAAAAAAAAAAAAAAAAEgHAAA=","name":"PPS\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":38576,"stack_free":1864,"cpu":0} -{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"c3BlY3RydW0gYW5hbHl6ZXIAAAAAANQPAAA=","name":"spectrum analyzer\u0000\u0000\u0000","crc":50933,"stack_free":4052,"cpu":0} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"Mggkby8QAAAAAAE=","wn":2098,"tow":271544100,"crc":59254} -{"length":16,"flags":17,"ns":99999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"ESRvLxDkBwMZAxka/uD1BQ==","day":25,"tow":271544100,"year":2020,"crc":3200,"minutes":25,"month":3,"seconds":26} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.825152849474104,"preamble":85,"sender":22963,"msg_type":522,"payload":"JG8vEAU+Ff5l6kJA7mYfIFaSXsBHsZY3PdMxwAECWwQPBg==","lat":37.83123756444187,"tow":271544100,"h_accuracy":513,"crc":22461,"lon":-122.28650668207749} -{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"JG8vEPr///8FAAAA+v////EAywIPAg==","n":-6,"d":-6,"tow":271544100,"h_accuracy":241,"crc":17133,"e":5} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"JG8vEJsAhwBMAEgAcgAG","tow":271544100,"crc":52033,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"JG8vEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271544100,"h_accuracy":0,"crc":62494,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"JG8vEP//","tow":271544100,"crc":11339} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgiIby8QAAAAAAE=","wn":2098,"tow":271544200,"crc":18984} -{"length":16,"flags":17,"ns":199999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EYhvLxDkBwMZAxka/sHrCw==","day":25,"tow":271544200,"year":2020,"crc":2357,"minutes":25,"month":3,"seconds":26} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.81769737800995,"preamble":85,"sender":22963,"msg_type":522,"payload":"iG8vENyteP5l6kJAm+EyIFaSXsDjk4idVNExwAECWwQPBg==","lat":37.831237610745774,"tow":271544200,"h_accuracy":513,"crc":5270,"lon":-122.28650670021891} -{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"iG8vEAQAAADy////7f////EAywIPAg==","n":4,"d":-19,"tow":271544200,"h_accuracy":241,"crc":64051,"e":-14} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"iG8vEJsAhwBMAEgAcgAG","tow":271544200,"crc":48816,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"iG8vEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271544200,"h_accuracy":0,"crc":56772,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"iG8vEP//","tow":271544200,"crc":50816} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"Mgjsby8QAAAAAAE=","wn":2098,"tow":271544300,"crc":12002} -{"length":16,"flags":17,"ns":299999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EexvLxDkBwMZAxka/qLhEQ==","day":25,"tow":271544300,"year":2020,"crc":47889,"minutes":25,"month":3,"seconds":26} -{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.812581352039217,"preamble":85,"sender":22963,"msg_type":522,"payload":"7G8vEJpq6P5l6kJA6PY2IFaSXsAQWdxUBdAxwAECWwQPBg==","lat":37.8312376627775,"tow":271544300,"h_accuracy":513,"crc":23694,"lon":-122.28650670402169} -{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"7G8vEA4AAAD6////BAAAAPEAywIPAg==","n":14,"d":4,"tow":271544300,"h_accuracy":241,"crc":16364,"e":-6} -{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"7G8vEJsAhwBMAEgAcgAG","tow":271544300,"crc":37407,"vdop":114,"pdop":135} -{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"7G8vEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271544300,"h_accuracy":0,"crc":50546,"e":0} -{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"7G8vEP//","tow":271544300,"crc":40761} -{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} -{"length":237,"states":[{"cn0":214,"mesid":{"sat":5,"code":0}},{"cn0":181,"mesid":{"sat":21,"code":0}},{"cn0":187,"mesid":{"sat":2,"code":0}},{"cn0":168,"mesid":{"sat":31,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":218,"mesid":{"sat":25,"code":0}},{"cn0":208,"mesid":{"sat":12,"code":0}},{"cn0":213,"mesid":{"sat":29,"code":0}},{"cn0":207,"mesid":{"sat":18,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":206,"mesid":{"sat":131,"code":2}},{"cn0":205,"mesid":{"sat":25,"code":1}},{"cn0":189,"mesid":{"sat":12,"code":1}},{"cn0":150,"mesid":{"sat":31,"code":1}},{"cn0":197,"mesid":{"sat":18,"code":1}},{"cn0":194,"mesid":{"sat":29,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":193,"mesid":{"sat":5,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":213,"mesid":{"sat":100,"code":3}},{"cn0":175,"mesid":{"sat":98,"code":3}},{"cn0":174,"mesid":{"sat":102,"code":3}},{"cn0":208,"mesid":{"sat":101,"code":3}},{"cn0":207,"mesid":{"sat":93,"code":3}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":181,"mesid":{"sat":106,"code":3}},{"cn0":204,"mesid":{"sat":104,"code":3}},{"cn0":174,"mesid":{"sat":98,"code":4}},{"cn0":206,"mesid":{"sat":102,"code":4}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":199,"mesid":{"sat":100,"code":4}},{"cn0":195,"mesid":{"sat":101,"code":4}},{"cn0":187,"mesid":{"sat":104,"code":4}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":172,"mesid":{"sat":106,"code":4}},{"cn0":201,"mesid":{"sat":35,"code":12}},{"cn0":172,"mesid":{"sat":26,"code":12}},{"cn0":162,"mesid":{"sat":34,"code":12}},{"cn0":188,"mesid":{"sat":24,"code":12}},{"cn0":159,"mesid":{"sat":25,"code":12}},{"cn0":185,"mesid":{"sat":12,"code":12}},{"cn0":185,"mesid":{"sat":19,"code":12}},{"cn0":193,"mesid":{"sat":22,"code":12}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":210,"mesid":{"sat":12,"code":13}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":194,"mesid":{"sat":12,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":191,"mesid":{"sat":25,"code":14}},{"cn0":188,"mesid":{"sat":11,"code":14}},{"cn0":203,"mesid":{"sat":24,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":159,"mesid":{"sat":31,"code":14}},{"cn0":152,"mesid":{"sat":33,"code":14}},{"cn0":201,"mesid":{"sat":25,"code":20}},{"cn0":215,"mesid":{"sat":24,"code":20}},{"cn0":194,"mesid":{"sat":11,"code":20}},{"cn0":175,"mesid":{"sat":31,"code":20}},{"cn0":206,"mesid":{"sat":12,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":171,"mesid":{"sat":33,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}}],"preamble":85,"sender":22963,"msg_type":97,"payload":"BQDWFQC1AgC7HwCoAAAAAAAAGQDaDADQHQDVEgDPAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwLOGQHNDAG9HwGWEgHFHQHCAAAABQHBAAAAAAAAAAAAAAAAZAPVYgOvZgOuZQPQXQPPAAAAagO1aAPMYgSuZgTOAAAAZATHZQTDaAS7AAAAagSsIwzJGgysIgyiGAy8GQyfDAy5Ewy5FgzBAAAADA3SAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADA7CAAAAGQ6/Cw68GA7LAAAAHw6fIQ6YGRTJGBTXCxTCHxSvDBTOAAAAIRSrAAAA","crc":54351} +{"crc":33330,"length":92,"msg_type":139,"payload":"FANGIgQAMggAAIBAYAkAAAEAAAAAAECe1TkAAKAxAAAAuA7SQcEAAEBAz29jwQAA4GdQM3ZBAAAASw9hp0AAAADGWkGRwAAAAJDAUmbAAAB6NQAAAIAAAPq1CmQ=","preamble":85,"sender":22963,"common":{"sid":{"sat":20,"code":3},"toe":{"tow":270918,"wn":2098},"ura":4.0,"fit_interval":2400,"valid":1,"health_bits":0},"gamma":0.0,"tau":0.0004074443,"d_tau":4.656613e-9,"pos":[-2335773.4375,-10190458.0078125,23278854.4921875],"vel":[2992.52986907959,-1104.3386459350586,-178.58600616455078],"acc":[9.313226e-7,-0.0,-0.0000018626451],"fcn":10,"iod":100} +{"crc":53984,"length":92,"msg_type":139,"payload":"BQNGIgQAMggAAIBAYAkAAAEAAACAKwC7RrgAAEAxAACAPjXzWEEAADCIaLR2wQAAAJfDqlhBAAAA+P3TcsAAAAB8ooWKQAAAAC1h1KpAAAB6NgAA+rUAAHq1CWQ=","preamble":85,"sender":22963,"common":{"sid":{"sat":5,"code":3},"toe":{"tow":270918,"wn":2098},"ura":4.0,"fit_interval":2400,"valid":1,"health_bits":0},"gamma":9.094947e-13,"tau":-0.000047381036,"d_tau":2.7939677e-9,"pos":[6540500.9765625,-23807624.51171875,6466318.359375],"vel":[-301.24950408935547,848.7043380737305,3434.189796447754],"acc":[0.0000037252903,-0.0000018626451,-9.313226e-7],"fcn":9,"iod":100} +{"crc":45853,"length":92,"msg_type":139,"payload":"CgNGIgQAMggAAOBAYAkAAAEAAAAAAADEbTgAAAAAAAAAFwhFdMEAACB48+dowQAAwO6k8VRBAAAAVLPEhcAAAAAAyop0wAAAAA2xDavAAAAAAACAOzYAAACAAWQ=","preamble":85,"sender":22963,"common":{"sid":{"sat":10,"code":3},"toe":{"tow":270918,"wn":2098},"ura":7.0,"fit_interval":2400,"valid":1,"health_bits":0},"gamma":0.0,"tau":0.000056687742,"d_tau":0.0,"pos":[-21254273.4375,-13057947.75390625,5490323.73046875],"vel":[-696.5875625610352,-328.67431640625,-3462.845802307129],"acc":[0.0,0.0000027939677,-0.0],"fcn":1,"iod":100} +{"crc":11629,"length":92,"msg_type":139,"payload":"FQNGIgQAMggAAIBAYAkAAAEAAABArIAU7jgAAIAwAAAwUcqXcsEAAAA0nRoUwQAAgBD6ZG9BAAAAsfreoEAAAABIHviEwAAAAEhh3qNAAAB6tQCAOzYAAPq1DGQ=","preamble":85,"sender":22963,"common":{"sid":{"sat":21,"code":3},"toe":{"tow":270918,"wn":2098},"ura":4.0,"fit_interval":2400,"valid":1,"health_bits":0},"gamma":-2.728484e-12,"tau":0.00011352543,"d_tau":9.313226e-10,"pos":[-19496101.07421875,-329383.30078125,16459728.515625],"vel":[2159.489631652832,-671.0147857666016,2543.1900024414062],"acc":[-9.313226e-7,0.0000027939677,-0.0000018626451],"fcn":12,"iod":100} +{"crc":34365,"length":92,"msg_type":139,"payload":"CQNGIgQAMggAAABAYAkAAAEAAAAALICvAbkAAICxAACga9onb8EAAIA6nfZwwQAAgLft6F7BAAAASO9PiUAAAACEmw6IQAAAAKhO+anAAAD6NQAA+jUAAHo1BmQ=","preamble":85,"sender":22963,"common":{"sid":{"sat":9,"code":3},"toe":{"tow":270918,"wn":2098},"ura":2.0,"fit_interval":2400,"valid":1,"health_bits":0},"gamma":1.8189894e-12,"tau":-0.00012367778,"d_tau":-3.7252903e-9,"pos":[-16334547.36328125,-17787347.65625,-8102838.8671875],"vel":[809.9918365478516,769.8259353637695,-3324.6536254882812],"acc":[0.0000018626451,0.0000018626451,9.313226e-7],"fcn":6,"iod":100} +{"crc":24240,"length":92,"msg_type":139,"payload":"DANGIgQAMggAAABAaBAAAAEAAACALAAJ9bgAAOAxAAAAuMtWNsEAAAD5A3NnQQAA8ELTSHVBAAAABKCPosAAAABkTeqdwAAAAGBFL4xAAAD6tQAAejUAAPq1B2Q=","preamble":85,"sender":22963,"common":{"sid":{"sat":12,"code":3},"toe":{"tow":270918,"wn":2098},"ura":2.0,"fit_interval":4200,"valid":1,"health_bits":0},"gamma":3.637979e-12,"tau":-0.00011684187,"d_tau":6.519258e-9,"pos":[-1464011.71875,12294175.78125,22318388.18359375],"vel":[-2375.812530517578,-1914.5755767822266,901.9088745117188],"acc":[-0.0000018626451,9.313226e-7,-0.0000018626451],"fcn":7,"iod":100} +{"crc":64387,"length":92,"msg_type":139,"payload":"BANGIgQAMggAAKBAYAkAAAEAAAAALAAiNbgAAECxAAAgdUE8ZUEAAGA4CTplwQAAUEpjK3NBAAAA0ILzfcAAAAAadyKlQAAAAHrFlZtAAAD6NQAA+rUAAPq1DmQ=","preamble":85,"sender":22963,"common":{"sid":{"sat":4,"code":3},"toe":{"tow":270918,"wn":2098},"ura":5.0,"fit_interval":2400,"valid":1,"health_bits":0},"gamma":1.8189894e-12,"tau":-0.000043185428,"d_tau":-2.7939677e-9,"pos":[11133451.66015625,-11128905.76171875,20100660.64453125],"vel":[-479.2194366455078,2705.232620239258,1765.4428482055664],"acc":[0.0000018626451,-0.0000018626451,-0.0000018626451],"fcn":14,"iod":100} +{"crc":24240,"length":92,"msg_type":139,"payload":"DANGIgQAMggAAABAaBAAAAEAAACALAAJ9bgAAOAxAAAAuMtWNsEAAAD5A3NnQQAA8ELTSHVBAAAABKCPosAAAABkTeqdwAAAAGBFL4xAAAD6tQAAejUAAPq1B2Q=","preamble":85,"sender":22963,"common":{"sid":{"sat":12,"code":3},"toe":{"tow":270918,"wn":2098},"ura":2.0,"fit_interval":4200,"valid":1,"health_bits":0},"gamma":3.637979e-12,"tau":-0.00011684187,"d_tau":6.519258e-9,"pos":[-1464011.71875,12294175.78125,22318388.18359375],"vel":[-2375.812530517578,-1914.5755767822266,901.9088745117188],"acc":[-0.0000018626451,9.313226e-7,-0.0000018626451],"fcn":7,"iod":100} +{"crc":28665,"length":37,"msg_type":167,"payload":"AABudHJpcABlbmFibGUARmFsc2UAZW51bTpGYWxzZSxUcnVlAA==","preamble":85,"sender":22963,"index":0,"setting":"ntrip\u0000enable\u0000False\u0000enum:False,True\u0000"} +{"crc":41336,"length":136,"msg_type":151,"payload":"AgAaHgUALDUMAFEtFQB9GRkAbUYaAKEBHQChNx8AlQ4EAxYWBQMyIQYDTggJA18OCgNxKQsDmCUMA6oDEwMiBxQDCzEVA5UlDAyUKRMMIyAUDA8CFgxDIxgMgiMZDJ0OGgxnFR0MLAAiDI4RIwwiLQsOizIMDg88GA5sNhkOlykfDlURIQ4fDw==","preamble":85,"sender":22963,"azel":[{"sid":{"sat":2,"code":0},"az":26,"el":30},{"sid":{"sat":5,"code":0},"az":44,"el":53},{"sid":{"sat":12,"code":0},"az":81,"el":45},{"sid":{"sat":21,"code":0},"az":125,"el":25},{"sid":{"sat":25,"code":0},"az":109,"el":70},{"sid":{"sat":26,"code":0},"az":161,"el":1},{"sid":{"sat":29,"code":0},"az":161,"el":55},{"sid":{"sat":31,"code":0},"az":149,"el":14},{"sid":{"sat":4,"code":3},"az":22,"el":22},{"sid":{"sat":5,"code":3},"az":50,"el":33},{"sid":{"sat":6,"code":3},"az":78,"el":8},{"sid":{"sat":9,"code":3},"az":95,"el":14},{"sid":{"sat":10,"code":3},"az":113,"el":41},{"sid":{"sat":11,"code":3},"az":152,"el":37},{"sid":{"sat":12,"code":3},"az":170,"el":3},{"sid":{"sat":19,"code":3},"az":34,"el":7},{"sid":{"sat":20,"code":3},"az":11,"el":49},{"sid":{"sat":21,"code":3},"az":149,"el":37},{"sid":{"sat":12,"code":12},"az":148,"el":41},{"sid":{"sat":19,"code":12},"az":35,"el":32},{"sid":{"sat":20,"code":12},"az":15,"el":2},{"sid":{"sat":22,"code":12},"az":67,"el":35},{"sid":{"sat":24,"code":12},"az":130,"el":35},{"sid":{"sat":25,"code":12},"az":157,"el":14},{"sid":{"sat":26,"code":12},"az":103,"el":21},{"sid":{"sat":29,"code":12},"az":44,"el":0},{"sid":{"sat":34,"code":12},"az":142,"el":17},{"sid":{"sat":35,"code":12},"az":34,"el":45},{"sid":{"sat":11,"code":14},"az":139,"el":50},{"sid":{"sat":12,"code":14},"az":15,"el":60},{"sid":{"sat":24,"code":14},"az":108,"el":54},{"sid":{"sat":25,"code":14},"az":151,"el":41},{"sid":{"sat":31,"code":14},"az":85,"el":17},{"sid":{"sat":33,"code":14},"az":31,"el":15}]} +{"crc":63555,"length":53,"msg_type":1025,"payload":"BkdMTyBMMU9GIE1FIDcgWysxNTg0Nm1zXSBjaGFubmVsIGlzIG1hc2tlZCwgZHJvcHBpbmc=","preamble":85,"sender":22963,"level":6,"text":"GLO L1OF ME 7 [+15846ms] channel is masked, dropping"} +{"crc":63240,"length":53,"msg_type":1025,"payload":"BkdMTyBMMk9GIE1FIDcgWysxNDQ3N21zXSBjaGFubmVsIGlzIG1hc2tlZCwgZHJvcHBpbmc=","preamble":85,"sender":22963,"level":6,"text":"GLO L2OF ME 7 [+14477ms] channel is masked, dropping"} +{"crc":27769,"length":11,"msg_type":258,"payload":"MghIui4QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271497800,"ns_residual":0,"flags":1} +{"crc":22322,"length":16,"msg_type":259,"payload":"EUi6LhDkBwMZAxgn/gevLw==","preamble":85,"sender":22963,"flags":17,"tow":271497800,"year":2020,"month":3,"day":25,"hours":3,"minutes":24,"seconds":39,"ns":799999998} +{"crc":59641,"length":34,"msg_type":522,"payload":"SLouEKx+tOpl6kJAouh9IFaSXsBgIs0jFjcxwAECWwQPBg==","preamble":85,"sender":22963,"tow":271497800,"lat":37.831235254413826,"lon":-122.28650677009367,"height":-17.215181577283488,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":62018,"length":22,"msg_type":526,"payload":"SLouEAYAAAACAAAA8/////AAyQIPAg==","preamble":85,"sender":22963,"tow":271497800,"n":6,"e":2,"d":-13,"h_accuracy":240,"v_accuracy":713,"n_sats":15,"flags":2} +{"crc":347,"length":15,"msg_type":520,"payload":"SLouEJsAhwBNAEgAcgAG","preamble":85,"sender":22963,"tow":271497800,"gdop":155,"pdop":135,"tdop":77,"hdop":72,"vdop":114,"flags":6} +{"crc":38562,"length":22,"msg_type":524,"payload":"SLouEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271497800,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":6833,"length":6,"msg_type":528,"payload":"SLouEP//","preamble":85,"sender":22963,"tow":271497800,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":7201,"length":36,"msg_type":167,"payload":"AQBudHJpcABkZWJ1ZwBGYWxzZQBlbnVtOkZhbHNlLFRydWUA","preamble":85,"sender":22963,"index":1,"setting":"ntrip\u0000debug\u0000False\u0000enum:False,True\u0000"} +{"crc":31693,"length":19,"msg_type":167,"payload":"AgBudHJpcAB1c2VybmFtZQAAAA==","preamble":85,"sender":22963,"index":2,"setting":"ntrip\u0000username\u0000\u0000\u0000"} +{"crc":41830,"length":19,"msg_type":167,"payload":"AwBudHJpcABwYXNzd29yZAAAAA==","preamble":85,"sender":22963,"index":3,"setting":"ntrip\u0000password\u0000\u0000\u0000"} +{"crc":47724,"length":14,"msg_type":167,"payload":"BABudHJpcAB1cmwAAAA=","preamble":85,"sender":22963,"index":4,"setting":"ntrip\u0000url\u0000\u0000\u0000"} +{"crc":17702,"length":28,"msg_type":167,"payload":"BQBudHJpcABnZ2Ffb3V0X2ludGVydmFsADAAAA==","preamble":85,"sender":22963,"index":5,"setting":"ntrip\u0000gga_out_interval\u00000\u0000\u0000"} +{"crc":22575,"length":43,"msg_type":167,"payload":"BgBudHJpcABnZ2Ffb3V0X3JldjEARmFsc2UAZW51bTpGYWxzZSxUcnVlAA==","preamble":85,"sender":22963,"index":6,"setting":"ntrip\u0000gga_out_rev1\u0000False\u0000enum:False,True\u0000"} +{"crc":63127,"length":52,"msg_type":167,"payload":"BwBldGhlcm5ldABpbnRlcmZhY2VfbW9kZQBBY3RpdmUAZW51bTpBY3RpdmUsQ29uZmlnAA==","preamble":85,"sender":22963,"index":7,"setting":"ethernet\u0000interface_mode\u0000Active\u0000enum:Active,Config\u0000"} +{"crc":19193,"length":48,"msg_type":167,"payload":"CABldGhlcm5ldABpcF9jb25maWdfbW9kZQBESENQAGVudW06U3RhdGljLERIQ1AA","preamble":85,"sender":22963,"index":8,"setting":"ethernet\u0000ip_config_mode\u0000DHCP\u0000enum:Static,DHCP\u0000"} +{"crc":30179,"length":37,"msg_type":167,"payload":"CQBldGhlcm5ldABpcF9hZGRyZXNzADE5Mi4xNjguMC4yMjIAAA==","preamble":85,"sender":22963,"index":9,"setting":"ethernet\u0000ip_address\u0000192.168.0.222\u0000\u0000"} +{"crc":54884,"length":237,"msg_type":97,"payload":"BQDXFQC1AgDAHwCnAAAAAAAAGQDcDADRHQDWEgDRAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwLQGQHMDAG7HwGXEgHCHQHCAAAABQHCAAAAAAAAAAAAAAAACwPVCQOwFAOtBQPQCgPOAAAABAO3FQPMCQSsFATMAAAACwTIBQTBAAS6AAAABASwIwzHGgyoIgyhGAy9GQydDAy5Ewy5Fgy/AAAADA3RAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADA7EAAAAGQ7BCw69GA7NAAAAHw6hIQ6bGRTJGBTXCxTCHxSsDBTPAAAAIRSpAAAA","preamble":85,"sender":22963,"states":[{"mesid":{"sat":5,"code":0},"cn0":215},{"mesid":{"sat":21,"code":0},"cn0":181},{"mesid":{"sat":2,"code":0},"cn0":192},{"mesid":{"sat":31,"code":0},"cn0":167},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":25,"code":0},"cn0":220},{"mesid":{"sat":12,"code":0},"cn0":209},{"mesid":{"sat":29,"code":0},"cn0":214},{"mesid":{"sat":18,"code":0},"cn0":209},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":131,"code":2},"cn0":208},{"mesid":{"sat":25,"code":1},"cn0":204},{"mesid":{"sat":12,"code":1},"cn0":187},{"mesid":{"sat":31,"code":1},"cn0":151},{"mesid":{"sat":18,"code":1},"cn0":194},{"mesid":{"sat":29,"code":1},"cn0":194},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":5,"code":1},"cn0":194},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":11,"code":3},"cn0":213},{"mesid":{"sat":9,"code":3},"cn0":176},{"mesid":{"sat":20,"code":3},"cn0":173},{"mesid":{"sat":5,"code":3},"cn0":208},{"mesid":{"sat":10,"code":3},"cn0":206},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":4,"code":3},"cn0":183},{"mesid":{"sat":21,"code":3},"cn0":204},{"mesid":{"sat":9,"code":4},"cn0":172},{"mesid":{"sat":20,"code":4},"cn0":204},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":11,"code":4},"cn0":200},{"mesid":{"sat":5,"code":4},"cn0":193},{"mesid":{"sat":0,"code":4},"cn0":186},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":4,"code":4},"cn0":176},{"mesid":{"sat":35,"code":12},"cn0":199},{"mesid":{"sat":26,"code":12},"cn0":168},{"mesid":{"sat":34,"code":12},"cn0":161},{"mesid":{"sat":24,"code":12},"cn0":189},{"mesid":{"sat":25,"code":12},"cn0":157},{"mesid":{"sat":12,"code":12},"cn0":185},{"mesid":{"sat":19,"code":12},"cn0":185},{"mesid":{"sat":22,"code":12},"cn0":191},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":12,"code":13},"cn0":209},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":12,"code":14},"cn0":196},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":25,"code":14},"cn0":193},{"mesid":{"sat":11,"code":14},"cn0":189},{"mesid":{"sat":24,"code":14},"cn0":205},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":31,"code":14},"cn0":161},{"mesid":{"sat":33,"code":14},"cn0":155},{"mesid":{"sat":25,"code":20},"cn0":201},{"mesid":{"sat":24,"code":20},"cn0":215},{"mesid":{"sat":11,"code":20},"cn0":194},{"mesid":{"sat":31,"code":20},"cn0":172},{"mesid":{"sat":12,"code":20},"cn0":207},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":33,"code":20},"cn0":169},{"mesid":{"sat":0,"code":0},"cn0":0}]} +{"crc":46849,"length":11,"msg_type":258,"payload":"Mgisui4QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271497900,"ns_residual":0,"flags":1} +{"crc":52238,"length":16,"msg_type":259,"payload":"Eay6LhDkBwMZAxgn/uikNQ==","preamble":85,"sender":22963,"flags":17,"tow":271497900,"year":2020,"month":3,"day":25,"hours":3,"minutes":24,"seconds":39,"ns":899999998} +{"crc":50102,"length":34,"msg_type":522,"payload":"rLouENXxWupl6kJAzb+GIFaSXsDjQiKx4zcxwAECWwQPBg==","preamble":85,"sender":22963,"tow":271497900,"lat":37.831235212713786,"lon":-122.28650677832702,"height":-17.218318053116388,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":48022,"length":22,"msg_type":526,"payload":"rLouEP3////+////+f////AAyQIPAg==","preamble":85,"sender":22963,"tow":271497900,"n":-3,"e":-2,"d":-7,"h_accuracy":240,"v_accuracy":713,"n_sats":15,"flags":2} +{"crc":31206,"length":15,"msg_type":520,"payload":"rLouEJsAhwBNAEgAcgAG","preamble":85,"sender":22963,"tow":271497900,"gdop":155,"pdop":135,"tdop":77,"hdop":72,"vdop":114,"flags":6} +{"crc":13441,"length":22,"msg_type":524,"payload":"rLouEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271497900,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":38696,"length":6,"msg_type":528,"payload":"rLouEP//","preamble":85,"sender":22963,"tow":271497900,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":55669,"length":34,"msg_type":167,"payload":"CgBldGhlcm5ldABuZXRtYXNrADI1NS4yNTUuMjU1LjAAAA==","preamble":85,"sender":22963,"index":10,"setting":"ethernet\u0000netmask\u0000255.255.255.0\u0000\u0000"} +{"crc":65129,"length":32,"msg_type":167,"payload":"CwBldGhlcm5ldABnYXRld2F5ADE5Mi4xNjguMC4xAAA=","preamble":85,"sender":22963,"index":11,"setting":"ethernet\u0000gateway\u0000192.168.0.1\u0000\u0000"} +{"crc":33701,"length":46,"msg_type":167,"payload":"DAB1YXJ0MABlbmFibGVkX3NicF9tZXNzYWdlcwA3Miw3NCwxMTcsNjU1MzUAAA==","preamble":85,"sender":22963,"index":12,"setting":"uart0\u0000enabled_sbp_messages\u000072,74,117,65535\u0000\u0000"} +{"crc":51770,"length":72,"msg_type":167,"payload":"DQB1YXJ0MABtb2RlAFJUQ012MyBPVVQAZW51bTpEaXNhYmxlZCxTQlAsUlRDTXYzIE9VVCxOTUVBIE9VVCxSVENNdjMgSU4A","preamble":85,"sender":22963,"index":13,"setting":"uart0\u0000mode\u0000RTCMv3 OUT\u0000enum:Disabled,SBP,RTCMv3 OUT,NMEA OUT,RTCMv3 IN\u0000"} +{"crc":48756,"length":95,"msg_type":167,"payload":"DgB1YXJ0MABiYXVkcmF0ZQAxMTUyMDAAZW51bToxMjAwLDI0MDAsNDgwMCw5NjAwLDE5MjAwLDM4NDAwLDU3NjAwLDExNTIwMCwyMzA0MDAsNDYwODAwLDkyMTYwMAA=","preamble":85,"sender":22963,"index":14,"setting":"uart0\u0000baudrate\u0000115200\u0000enum:1200,2400,4800,9600,19200,38400,57600,115200,230400,460800,921600\u0000"} +{"crc":64292,"length":44,"msg_type":167,"payload":"DwB1YXJ0MABmbG93X2NvbnRyb2wATm9uZQBlbnVtOk5vbmUsUlRTL0NUUwA=","preamble":85,"sender":22963,"index":15,"setting":"uart0\u0000flow_control\u0000None\u0000enum:None,RTS/CTS\u0000"} +{"crc":40537,"length":214,"msg_type":167,"payload":"EAB1YXJ0MQBlbmFibGVkX3NicF9tZXNzYWdlcwAyMyw2NSw3Miw3NCw4MSw5NywxMTcsMTM0LDEzNiwxMzcsMTM4LDEzOSwxNDQsMTQ5LDE2MywxNjUsMTY2LDE2NywxNzEsMTc1LDE4MSwxODUsMTg3LDE4OCwxODksMTkwLDI1NywyNTgsMjU5LDUyMCw1MjIsNTI0LDUyNiw1MjcsNTI4LDEwMjUsMjMwNC81MCwyMzA1LDIzMDYvNTAsMzA1ODMsNjUyODAsNjUyODIsNjU1MzUAAA==","preamble":85,"sender":22963,"index":16,"setting":"uart1\u0000enabled_sbp_messages\u000023,65,72,74,81,97,117,134,136,137,138,139,144,149,163,165,166,167,171,175,181,185,187,188,189,190,257,258,259,520,522,524,526,527,528,1025,2304/50,2305,2306/50,30583,65280,65282,65535\u0000\u0000"} +{"crc":25156,"length":65,"msg_type":167,"payload":"EQB1YXJ0MQBtb2RlAFNCUABlbnVtOkRpc2FibGVkLFNCUCxSVENNdjMgT1VULE5NRUEgT1VULFJUQ012MyBJTgA=","preamble":85,"sender":22963,"index":17,"setting":"uart1\u0000mode\u0000SBP\u0000enum:Disabled,SBP,RTCMv3 OUT,NMEA OUT,RTCMv3 IN\u0000"} +{"crc":32726,"length":95,"msg_type":167,"payload":"EgB1YXJ0MQBiYXVkcmF0ZQAxMTUyMDAAZW51bToxMjAwLDI0MDAsNDgwMCw5NjAwLDE5MjAwLDM4NDAwLDU3NjAwLDExNTIwMCwyMzA0MDAsNDYwODAwLDkyMTYwMAA=","preamble":85,"sender":22963,"index":18,"setting":"uart1\u0000baudrate\u0000115200\u0000enum:1200,2400,4800,9600,19200,38400,57600,115200,230400,460800,921600\u0000"} +{"crc":12616,"length":44,"msg_type":167,"payload":"EwB1YXJ0MQBmbG93X2NvbnRyb2wATm9uZQBlbnVtOk5vbmUsUlRTL0NUUwA=","preamble":85,"sender":22963,"index":19,"setting":"uart1\u0000flow_control\u0000None\u0000enum:None,RTS/CTS\u0000"} +{"crc":62667,"length":249,"msg_type":74,"payload":"ELsuEAAAAAAyCECmjrM+vweXBi9V/x/XDw8FANUyHEVudkMHZoII+LUPDxUAanPsRcZZWQcTUPbEwA8PAgB6mgFJZEqsB8l//jOnDw8fAJhLIz1c9mwGTaT7O9wPDxkADNWtQHY9zAZ9b/S+0Q8PDAAjONQ+h3aaBoPQBXrWDw8dALhLIz0FygEF+pr8C8wPDxkBxdStQB4ITAXh/fYNuw8PDAFkmgFJuJ36BQbR/p+XDw8fAdw31D5yPiUFD4cEKsIPDx0BZI6zPsmRIgWCev/fwg8PBQFyM/8+85O7BoCcBJvVDw8LA1kGy0SY1lgH8cnucK8PDwkD","preamble":85,"sender":22963,"header":{"t":{"tow":271498000,"ns_residual":0,"wn":2098},"n_obs":64},"obs":[{"P":1051954854,"L":{"i":110561215,"f":47},"D":{"i":-171,"f":31},"cn0":215,"lock":15,"flags":15,"sid":{"sat":5,"code":0}},{"P":1159475925,"L":{"i":121861742,"f":102},"D":{"i":2178,"f":248},"cn0":181,"lock":15,"flags":15,"sid":{"sat":21,"code":0}},{"P":1173123946,"L":{"i":123296198,"f":19},"D":{"i":-2480,"f":196},"cn0":192,"lock":15,"flags":15,"sid":{"sat":2,"code":0}},{"P":1224841850,"L":{"i":128731748,"f":201},"D":{"i":-385,"f":51},"cn0":167,"lock":15,"flags":15,"sid":{"sat":31,"code":0}},{"P":1025723288,"L":{"i":107804252,"f":77},"D":{"i":-1116,"f":59},"cn0":220,"lock":15,"flags":15,"sid":{"sat":25,"code":0}},{"P":1085134092,"L":{"i":114048374,"f":125},"D":{"i":-2961,"f":190},"cn0":209,"lock":15,"flags":15,"sid":{"sat":12,"code":0}},{"P":1054095395,"L":{"i":110786183,"f":131},"D":{"i":1488,"f":122},"cn0":214,"lock":15,"flags":15,"sid":{"sat":29,"code":0}},{"P":1025723320,"L":{"i":84003333,"f":250},"D":{"i":-870,"f":11},"cn0":204,"lock":15,"flags":15,"sid":{"sat":25,"code":1}},{"P":1085134021,"L":{"i":88868894,"f":225},"D":{"i":-2307,"f":13},"cn0":187,"lock":15,"flags":15,"sid":{"sat":12,"code":1}},{"P":1224841828,"L":{"i":100310456,"f":6},"D":{"i":-303,"f":159},"cn0":151,"lock":15,"flags":15,"sid":{"sat":31,"code":1}},{"P":1054095324,"L":{"i":86326898,"f":15},"D":{"i":1159,"f":42},"cn0":194,"lock":15,"flags":15,"sid":{"sat":29,"code":1}},{"P":1051954788,"L":{"i":86151625,"f":130},"D":{"i":-134,"f":223},"cn0":194,"lock":15,"flags":15,"sid":{"sat":5,"code":1}},{"P":1056912242,"L":{"i":112956403,"f":128},"D":{"i":1180,"f":155},"cn0":213,"lock":15,"flags":15,"sid":{"sat":11,"code":3}},{"P":1154156121,"L":{"i":123262616,"f":241},"D":{"i":-4407,"f":112},"cn0":175,"lock":15,"flags":15,"sid":{"sat":9,"code":3}}]} +{"crc":42095,"length":249,"msg_type":74,"payload":"ELsuEAAAAAAyCEExjio9zaqKBpRI+w6tDw8UA29gDkDJLNkGZKEIktAPDwUDtkFePuoupgZqJvQSzg8PCgMvRwRDGGwtBzjp+v+3Dw8EA0trLj9pDcMGIVoGYcwPDxUD1QbLRNXftgXunfJ6rA8PCQR6jyo9/IQWBYFU/PDMDw8UBJ80/z6OjzwF1pYD98gPDwsEL2EOQKCUUwVstQaCwQ8PBQS8RwRDJRuVBYAK/HCwDw8EBLumkUWByj4HYif6NccPDyMMHkHsSQHfsgfZQvTsqA8PGgwW4BtMQiftB8LKCIGiDw8iDC5knUfnVXUHS/L6070PDxgM","preamble":85,"sender":22963,"header":{"t":{"tow":271498000,"ns_residual":0,"wn":2098},"n_obs":65},"obs":[{"P":1026199089,"L":{"i":109750989,"f":148},"D":{"i":-1208,"f":14},"cn0":173,"lock":15,"flags":15,"sid":{"sat":20,"code":3}},{"P":1074684015,"L":{"i":114896073,"f":100},"D":{"i":2209,"f":146},"cn0":208,"lock":15,"flags":15,"sid":{"sat":5,"code":3}},{"P":1046364598,"L":{"i":111554282,"f":106},"D":{"i":-3034,"f":18},"cn0":206,"lock":15,"flags":15,"sid":{"sat":10,"code":3}},{"P":1124353839,"L":{"i":120417304,"f":56},"D":{"i":-1303,"f":255},"cn0":183,"lock":15,"flags":15,"sid":{"sat":4,"code":3}},{"P":1060006731,"L":{"i":113446249,"f":33},"D":{"i":1626,"f":97},"cn0":204,"lock":15,"flags":15,"sid":{"sat":21,"code":3}},{"P":1154156245,"L":{"i":95870933,"f":238},"D":{"i":-3427,"f":122},"cn0":172,"lock":15,"flags":15,"sid":{"sat":9,"code":4}},{"P":1026199418,"L":{"i":85361916,"f":129},"D":{"i":-940,"f":240},"cn0":204,"lock":15,"flags":15,"sid":{"sat":20,"code":4}},{"P":1056912543,"L":{"i":87854990,"f":214},"D":{"i":918,"f":247},"cn0":200,"lock":15,"flags":15,"sid":{"sat":11,"code":4}},{"P":1074684207,"L":{"i":89363616,"f":108},"D":{"i":1717,"f":130},"cn0":193,"lock":15,"flags":15,"sid":{"sat":5,"code":4}},{"P":1124353980,"L":{"i":93657893,"f":128},"D":{"i":-1014,"f":112},"cn0":176,"lock":15,"flags":15,"sid":{"sat":4,"code":4}},{"P":1167173307,"L":{"i":121555585,"f":98},"D":{"i":-1497,"f":53},"cn0":199,"lock":15,"flags":15,"sid":{"sat":35,"code":12}},{"P":1240219934,"L":{"i":129163009,"f":217},"D":{"i":-3006,"f":236},"cn0":168,"lock":15,"flags":15,"sid":{"sat":26,"code":12}},{"P":1276895254,"L":{"i":132982594,"f":194},"D":{"i":2250,"f":129},"cn0":162,"lock":15,"flags":15,"sid":{"sat":34,"code":12}},{"P":1201497134,"L":{"i":125130215,"f":75},"D":{"i":-1294,"f":211},"cn0":189,"lock":15,"flags":15,"sid":{"sat":24,"code":12}}]} +{"crc":14569,"length":249,"msg_type":74,"payload":"ELsuEAAAAAAyCEIEmBZNoEMHCOs0BeidDw8ZDFG+UkUyPTgH6U0G0rkPDwwMwpFCR4Dgawef5/4UuQ8PEwzHsmRHa25vB29ZCcm/Dw8WDA++UkUBLZUF0d8EWNEPDwwNSKAEQo9E8Aag/vthxA8PDA6UmSNL4qzlByNGBLvADw8ZDj+hI0cpDnoH7RoErr0PDwsODo4jQ6ZsDgc0NvmizQ8PGA4WV0BRZyGKCGac8wWiDw8fDl5g8VG0vJwIn6L3wJsPDyEOeJkjS2wTDQaBRwNAyA8PGRQnkCND9CRoBRrM+lvXDw8YFJSgI0cNnboFRCQDCMIPDwsU","preamble":85,"sender":22963,"header":{"t":{"tow":271498000,"ns_residual":0,"wn":2098},"n_obs":66},"obs":[{"P":1293326340,"L":{"i":134693792,"f":235},"D":{"i":1332,"f":232},"cn0":157,"lock":15,"flags":15,"sid":{"sat":25,"code":12}},{"P":1163050577,"L":{"i":121126194,"f":233},"D":{"i":1613,"f":210},"cn0":185,"lock":15,"flags":15,"sid":{"sat":12,"code":12}},{"P":1195545026,"L":{"i":124510336,"f":159},"D":{"i":-281,"f":20},"cn0":185,"lock":15,"flags":15,"sid":{"sat":19,"code":12}},{"P":1197781703,"L":{"i":124743275,"f":111},"D":{"i":2393,"f":201},"cn0":191,"lock":15,"flags":15,"sid":{"sat":22,"code":12}},{"P":1163050511,"L":{"i":93662465,"f":209},"D":{"i":1247,"f":88},"cn0":209,"lock":15,"flags":15,"sid":{"sat":12,"code":13}},{"P":1107599432,"L":{"i":116409487,"f":160},"D":{"i":-1026,"f":97},"cn0":196,"lock":15,"flags":15,"sid":{"sat":12,"code":14}},{"P":1260624276,"L":{"i":132492514,"f":35},"D":{"i":1094,"f":187},"cn0":192,"lock":15,"flags":15,"sid":{"sat":25,"code":14}},{"P":1193517375,"L":{"i":125439529,"f":237},"D":{"i":1050,"f":174},"cn0":189,"lock":15,"flags":15,"sid":{"sat":11,"code":14}},{"P":1126403598,"L":{"i":118385830,"f":52},"D":{"i":-1738,"f":162},"cn0":205,"lock":15,"flags":15,"sid":{"sat":24,"code":14}},{"P":1363171094,"L":{"i":143270247,"f":102},"D":{"i":-3172,"f":5},"cn0":162,"lock":15,"flags":15,"sid":{"sat":31,"code":14}},{"P":1374773342,"L":{"i":144489652,"f":159},"D":{"i":-2142,"f":192},"cn0":155,"lock":15,"flags":15,"sid":{"sat":33,"code":14}},{"P":1260624248,"L":{"i":101520236,"f":129},"D":{"i":839,"f":64},"cn0":200,"lock":15,"flags":15,"sid":{"sat":25,"code":20}},{"P":1126404135,"L":{"i":90711284,"f":26},"D":{"i":-1332,"f":91},"cn0":215,"lock":15,"flags":15,"sid":{"sat":24,"code":20}},{"P":1193517204,"L":{"i":96115981,"f":68},"D":{"i":804,"f":8},"cn0":194,"lock":15,"flags":15,"sid":{"sat":11,"code":20}}]} +{"crc":13253,"length":62,"msg_type":74,"payload":"ELsuEAAAAAAyCEMuV0BRbhaLBsKA9mmsDw8fFKOfBEJuCVEFuO38qM8PDwwUK2DxUVlYmQY5l/mBqg8PIRQ=","preamble":85,"sender":22963,"header":{"t":{"tow":271498000,"ns_residual":0,"wn":2098},"n_obs":67},"obs":[{"P":1363171118,"L":{"i":109778542,"f":194},"D":{"i":-2432,"f":105},"cn0":172,"lock":15,"flags":15,"sid":{"sat":31,"code":20}},{"P":1107599267,"L":{"i":89196910,"f":184},"D":{"i":-787,"f":168},"cn0":207,"lock":15,"flags":15,"sid":{"sat":12,"code":20}},{"P":1374773291,"L":{"i":110712921,"f":57},"D":{"i":-1641,"f":129},"cn0":170,"lock":15,"flags":15,"sid":{"sat":33,"code":20}}]} +{"crc":49809,"length":9,"msg_type":117,"payload":"/wAAAAAAAAAA","preamble":85,"sender":22963,"mask":255,"l1ca_bias":0,"l1p_bias":0,"l2ca_bias":0,"l2p_bias":0} +{"crc":3698,"length":11,"msg_type":258,"payload":"MggQuy4QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271498000,"ns_residual":0,"flags":1} +{"crc":64182,"length":16,"msg_type":259,"payload":"ERC7LhDkBwMZAxgn/smaOw==","preamble":85,"sender":22963,"flags":17,"tow":271498000,"year":2020,"month":3,"day":25,"hours":3,"minutes":24,"seconds":39,"ns":999999998} +{"crc":29379,"length":34,"msg_type":522,"payload":"ELsuENu7Fepl6kJA9reCIFaSXsAFS8HOZTkxwAECWwQPBg==","preamble":85,"sender":22963,"tow":271498000,"lat":37.831235180484974,"lon":-122.28650677457321,"height":-17.22420971125668,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":64762,"length":22,"msg_type":526,"payload":"ELsuEPT///8SAAAAHwAAAPAAyQIPAg==","preamble":85,"sender":22963,"tow":271498000,"n":-12,"e":18,"d":31,"h_accuracy":240,"v_accuracy":713,"n_sats":15,"flags":2} +{"crc":14844,"length":15,"msg_type":520,"payload":"ELsuEJsAhwBNAEgAcgAG","preamble":85,"sender":22963,"tow":271498000,"gdop":155,"pdop":135,"tdop":77,"hdop":72,"vdop":114,"flags":6} +{"crc":30187,"length":22,"msg_type":524,"payload":"ELsuEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271498000,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":52534,"length":6,"msg_type":528,"payload":"ELsuEP//","preamble":85,"sender":22963,"tow":271498000,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":40942,"length":4,"msg_type":65535,"payload":"AAUCgA==","preamble":85,"sender":22963,"flags":2147616000} +{"crc":2168,"length":24,"msg_type":72,"payload":"UO0a3iqORMHK1UJhIkRQwc9nFIPvrk1B","preamble":85,"sender":22963,"x":-2694229.735196747,"y":-4264073.519704292,"z":3890655.0240602265} +{"crc":47991,"length":26,"msg_type":23,"payload":"bWFpbgAAAAAAAAAAAAAAAAAAAAAAAAx1AAA=","preamble":85,"sender":22963,"name":"main\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":0,"stack_free":29964} +{"crc":11832,"length":26,"msg_type":23,"payload":"aWRsZQAAAAAAAAAAAAAAAAAAAACiAHwAAAA=","preamble":85,"sender":22963,"name":"idle\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":162,"stack_free":124} +{"crc":58151,"length":26,"msg_type":23,"payload":"cnBtc2cAAAAAAAAAAAAAAAAAAAABANwNAAA=","preamble":85,"sender":22963,"name":"rpmsg\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":1,"stack_free":3548} +{"crc":51784,"length":26,"msg_type":23,"payload":"U0JQAAAAAAAAAAAAAAAAAAAAAAAAAPz/AAA=","preamble":85,"sender":22963,"name":"SBP\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":0,"stack_free":65532} +{"crc":33651,"length":26,"msg_type":23,"payload":"TkFQAAAAAAAAAAAAAAAAAAAAAAAAAASAAAA=","preamble":85,"sender":22963,"name":"NAP\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":0,"stack_free":32772} +{"crc":61814,"length":26,"msg_type":23,"payload":"bWFuYWdlIFBWAAAAAAAAAAAAAAAAACwEAAA=","preamble":85,"sender":22963,"name":"manage PV\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":0,"stack_free":1068} +{"crc":14252,"length":26,"msg_type":23,"payload":"SU1VAAAAAAAAAAAAAAAAAAAAAAAAAPQHAAA=","preamble":85,"sender":22963,"name":"IMU\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":0,"stack_free":2036} +{"crc":18976,"length":26,"msg_type":23,"payload":"SU1VIGF1eAAAAAAAAAAAAAAAAAAAAEwIAAA=","preamble":85,"sender":22963,"name":"IMU aux\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":0,"stack_free":2124} +{"crc":26120,"length":26,"msg_type":23,"payload":"bmRiAAAAAAAAAAAAAAAAAAAAAAAAAFAMAAA=","preamble":85,"sender":22963,"name":"ndb\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":0,"stack_free":3152} +{"crc":25570,"length":26,"msg_type":23,"payload":"TkFQIFRyYWNraW5nAAAAAAAAAAApAdR3AAA=","preamble":85,"sender":22963,"name":"NAP Tracking\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":297,"stack_free":30676} +{"crc":55602,"length":26,"msg_type":23,"payload":"ZGVjb2RlAAAAAAAAAAAAAAAAAAAJANQGAAA=","preamble":85,"sender":22963,"name":"decode\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":9,"stack_free":1748} +{"crc":1203,"length":26,"msg_type":23,"payload":"bWFuYWdlIGFjcQAAAAAAAAAAAABwAaR3AAA=","preamble":85,"sender":22963,"name":"manage acq\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":368,"stack_free":30628} +{"crc":58531,"length":26,"msg_type":23,"payload":"c3lzdGVtIG1vbml0b3IAAAAAAAAAACwGAAA=","preamble":85,"sender":22963,"name":"system monitor\u0000\u0000\u0000\u0000\u0000\u0000","cpu":0,"stack_free":1580} +{"crc":44438,"length":26,"msg_type":23,"payload":"V2F0Y2hkb2cAAAAAAAAAAAAAAAAAAOQDAAA=","preamble":85,"sender":22963,"name":"Watchdog\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":0,"stack_free":996} +{"crc":15999,"length":26,"msg_type":23,"payload":"c3RhcmxpbmcAAAAAAAAAAAAAAACVAPz/AAA=","preamble":85,"sender":22963,"name":"starling\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":149,"stack_free":65532} +{"crc":57561,"length":26,"msg_type":23,"payload":"bWVfY2FsY19wdnQAAAAAAAAAAAAJAIwjAAA=","preamble":85,"sender":22963,"name":"me_calc_pvt\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":9,"stack_free":9100} +{"crc":38576,"length":26,"msg_type":23,"payload":"UFBTAAAAAAAAAAAAAAAAAAAAAAAAAEgHAAA=","preamble":85,"sender":22963,"name":"PPS\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":0,"stack_free":1864} +{"crc":50933,"length":26,"msg_type":23,"payload":"c3BlY3RydW0gYW5hbHl6ZXIAAAAAANQPAAA=","preamble":85,"sender":22963,"name":"spectrum analyzer\u0000\u0000\u0000","cpu":0,"stack_free":4052} +{"crc":18888,"length":30,"msg_type":167,"payload":"FAB1c2IwAGVuYWJsZWRfc2JwX21lc3NhZ2VzAAAA","preamble":85,"sender":22963,"index":20,"setting":"usb0\u0000enabled_sbp_messages\u0000\u0000\u0000"} +{"crc":17492,"length":64,"msg_type":167,"payload":"FQB1c2IwAG1vZGUAU0JQAGVudW06RGlzYWJsZWQsU0JQLFJUQ012MyBPVVQsTk1FQSBPVVQsUlRDTXYzIElOAA==","preamble":85,"sender":22963,"index":21,"setting":"usb0\u0000mode\u0000SBP\u0000enum:Disabled,SBP,RTCMv3 OUT,NMEA OUT,RTCMv3 IN\u0000"} +{"crc":41475,"length":229,"msg_type":167,"payload":"FgB0Y3Bfc2VydmVyMABlbmFibGVkX3NicF9tZXNzYWdlcwAyMyw2NSw3Miw3NCw4MSw5NywxMTcsMTM0LDEzNiwxMzcsMTM4LDEzOSwxNDQsMTQ5LDE1MSwxNjMsMTY1LDE2NiwxNjcsMTcxLDE3NSwxODEsMTg1LDE4NywxODgsMTg5LDE5MCwyNTcsMjU4LDI1OSw1MjAsNTIyLDUyNCw1MjYsNTI3LDUyOCwxMDI1LDIzMDQvNTAsMjMwNSwyMzA2LzUwLDQwOTgsMzA1ODMsNjUyODAsNjUyODIsNjU1MzUAAA==","preamble":85,"sender":22963,"index":22,"setting":"tcp_server0\u0000enabled_sbp_messages\u000023,65,72,74,81,97,117,134,136,137,138,139,144,149,151,163,165,166,167,171,175,181,185,187,188,189,190,257,258,259,520,522,524,526,527,528,1025,2304/50,2305,2306/50,4098,30583,65280,65282,65535\u0000\u0000"} +{"crc":64683,"length":26,"msg_type":167,"payload":"FwB0Y3Bfc2VydmVyMABwb3J0ADU1NTU1AAA=","preamble":85,"sender":22963,"index":23,"setting":"tcp_server0\u0000port\u000055555\u0000\u0000"} +{"crc":37489,"length":71,"msg_type":167,"payload":"GAB0Y3Bfc2VydmVyMABtb2RlAFNCUABlbnVtOkRpc2FibGVkLFNCUCxSVENNdjMgT1VULE5NRUEgT1VULFJUQ012MyBJTgA=","preamble":85,"sender":22963,"index":24,"setting":"tcp_server0\u0000mode\u0000SBP\u0000enum:Disabled,SBP,RTCMv3 OUT,NMEA OUT,RTCMv3 IN\u0000"} +{"crc":12981,"length":225,"msg_type":167,"payload":"GQB0Y3Bfc2VydmVyMQBlbmFibGVkX3NicF9tZXNzYWdlcwAyMyw2NSw3Miw3NCw4MSw5NywxMTcsMTM0LDEzNiwxMzcsMTM4LDEzOSwxNDQsMTQ5LDE2MywxNjUsMTY2LDE2NywxNzEsMTc1LDE4MSwxODUsMTg3LDE4OCwxODksMTkwLDI1NywyNTgsMjU5LDUyMCw1MjIsNTI0LDUyNiw1MjcsNTI4LDEwMjUsMjMwNC81MCwyMzA1LDIzMDYvNTAsNDA5OCwzMDU4Myw2NTI4MCw2NTI4Miw2NTUzNQAA","preamble":85,"sender":22963,"index":25,"setting":"tcp_server1\u0000enabled_sbp_messages\u000023,65,72,74,81,97,117,134,136,137,138,139,144,149,163,165,166,167,171,175,181,185,187,188,189,190,257,258,259,520,522,524,526,527,528,1025,2304/50,2305,2306/50,4098,30583,65280,65282,65535\u0000\u0000"} +{"crc":53392,"length":26,"msg_type":167,"payload":"GgB0Y3Bfc2VydmVyMQBwb3J0ADU1NTU2AAA=","preamble":85,"sender":22963,"index":26,"setting":"tcp_server1\u0000port\u000055556\u0000\u0000"} +{"crc":48984,"length":71,"msg_type":167,"payload":"GwB0Y3Bfc2VydmVyMQBtb2RlAFNCUABlbnVtOkRpc2FibGVkLFNCUCxSVENNdjMgT1VULE5NRUEgT1VULFJUQ012MyBJTgA=","preamble":85,"sender":22963,"index":27,"setting":"tcp_server1\u0000mode\u0000SBP\u0000enum:Disabled,SBP,RTCMv3 OUT,NMEA OUT,RTCMv3 IN\u0000"} +{"crc":28658,"length":221,"msg_type":167,"payload":"HAB0Y3BfY2xpZW50MABlbmFibGVkX3NicF9tZXNzYWdlcwAyMyw2NSw3Miw3NCw4MSw5NywxMTcsMTM0LDEzNiwxMzcsMTM4LDEzOSwxNDQsMTQ5LDE2MywxNjUsMTY2LDE2NywxNzEsMTgxLDE4NSwxODcsMTg4LDE4OSwxOTAsMjU3LDI1OCwyNTksNTIwLDUyMiw1MjQsNTI2LDUyNyw1MjgsMTAyNSwyMzA0LzUwLDIzMDUsMjMwNi81MCw0MDk4LDMwNTgzLDY1MjgwLDY1MjgyLDY1NTM1AAA=","preamble":85,"sender":22963,"index":28,"setting":"tcp_client0\u0000enabled_sbp_messages\u000023,65,72,74,81,97,117,134,136,137,138,139,144,149,163,165,166,167,171,181,185,187,188,189,190,257,258,259,520,522,524,526,527,528,1025,2304/50,2305,2306/50,4098,30583,65280,65282,65535\u0000\u0000"} +{"crc":37917,"length":24,"msg_type":167,"payload":"HQB0Y3BfY2xpZW50MABhZGRyZXNzAAAA","preamble":85,"sender":22963,"index":29,"setting":"tcp_client0\u0000address\u0000\u0000\u0000"} +{"crc":27320,"length":11,"msg_type":258,"payload":"Mgh0uy4QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271498100,"ns_residual":0,"flags":1} +{"crc":26430,"length":16,"msg_type":259,"payload":"EXS7LhDkBwMZAxgo/uD1BQ==","preamble":85,"sender":22963,"flags":17,"tow":271498100,"year":2020,"month":3,"day":25,"hours":3,"minutes":24,"seconds":40,"ns":99999998} +{"crc":2189,"length":34,"msg_type":522,"payload":"dLsuEBEy9ull6kJAYACSIFaSXsACx7Ee6joxwAECWwQPBg==","preamble":85,"sender":22963,"tow":271498100,"lat":37.83123516579884,"lon":-122.28650678880649,"height":-17.23013488617199,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":18744,"length":22,"msg_type":526,"payload":"dLsuEP3///8BAAAAEwAAAPAAyQIPAg==","preamble":85,"sender":22963,"tow":271498100,"n":-3,"e":1,"d":19,"h_accuracy":240,"v_accuracy":713,"n_sats":15,"flags":2} +{"crc":5459,"length":15,"msg_type":520,"payload":"dLsuEJsAhwBNAEgAcgAG","preamble":85,"sender":22963,"tow":271498100,"gdop":155,"pdop":135,"tdop":77,"hdop":72,"vdop":114,"flags":6} +{"crc":27997,"length":22,"msg_type":524,"payload":"dLsuEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271498100,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":38031,"length":6,"msg_type":528,"payload":"dLsuEP//","preamble":85,"sender":22963,"tow":271498100,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":60753,"length":76,"msg_type":167,"payload":"HgB0Y3BfY2xpZW50MABtb2RlAERpc2FibGVkAGVudW06RGlzYWJsZWQsU0JQLFJUQ012MyBPVVQsTk1FQSBPVVQsUlRDTXYzIElOAA==","preamble":85,"sender":22963,"index":30,"setting":"tcp_client0\u0000mode\u0000Disabled\u0000enum:Disabled,SBP,RTCMv3 OUT,NMEA OUT,RTCMv3 IN\u0000"} +{"crc":8030,"length":221,"msg_type":167,"payload":"HwB0Y3BfY2xpZW50MQBlbmFibGVkX3NicF9tZXNzYWdlcwAyMyw2NSw3Miw3NCw4MSw5NywxMTcsMTM0LDEzNiwxMzcsMTM4LDEzOSwxNDQsMTQ5LDE2MywxNjUsMTY2LDE2NywxNzEsMTgxLDE4NSwxODcsMTg4LDE4OSwxOTAsMjU3LDI1OCwyNTksNTIwLDUyMiw1MjQsNTI2LDUyNyw1MjgsMTAyNSwyMzA0LzUwLDIzMDUsMjMwNi81MCw0MDk4LDMwNTgzLDY1MjgwLDY1MjgyLDY1NTM1AAA=","preamble":85,"sender":22963,"index":31,"setting":"tcp_client1\u0000enabled_sbp_messages\u000023,65,72,74,81,97,117,134,136,137,138,139,144,149,163,165,166,167,171,181,185,187,188,189,190,257,258,259,520,522,524,526,527,528,1025,2304/50,2305,2306/50,4098,30583,65280,65282,65535\u0000\u0000"} +{"crc":5291,"length":24,"msg_type":167,"payload":"IAB0Y3BfY2xpZW50MQBhZGRyZXNzAAAA","preamble":85,"sender":22963,"index":32,"setting":"tcp_client1\u0000address\u0000\u0000\u0000"} +{"crc":50177,"length":76,"msg_type":167,"payload":"IQB0Y3BfY2xpZW50MQBtb2RlAERpc2FibGVkAGVudW06RGlzYWJsZWQsU0JQLFJUQ012MyBPVVQsTk1FQSBPVVQsUlRDTXYzIElOAA==","preamble":85,"sender":22963,"index":33,"setting":"tcp_client1\u0000mode\u0000Disabled\u0000enum:Disabled,SBP,RTCMv3 OUT,NMEA OUT,RTCMv3 IN\u0000"} +{"crc":48728,"length":37,"msg_type":167,"payload":"IgB1ZHBfc2VydmVyMABlbmFibGVkX3NicF9tZXNzYWdlcwAAAA==","preamble":85,"sender":22963,"index":34,"setting":"udp_server0\u0000enabled_sbp_messages\u0000\u0000\u0000"} +{"crc":46832,"length":26,"msg_type":167,"payload":"IwB1ZHBfc2VydmVyMABwb3J0ADU1NTU3AAA=","preamble":85,"sender":22963,"index":35,"setting":"udp_server0\u0000port\u000055557\u0000\u0000"} +{"crc":20811,"length":71,"msg_type":167,"payload":"JAB1ZHBfc2VydmVyMABtb2RlAFNCUABlbnVtOkRpc2FibGVkLFNCUCxSVENNdjMgT1VULE5NRUEgT1VULFJUQ012MyBJTgA=","preamble":85,"sender":22963,"index":36,"setting":"udp_server0\u0000mode\u0000SBP\u0000enum:Disabled,SBP,RTCMv3 OUT,NMEA OUT,RTCMv3 IN\u0000"} +{"crc":5727,"length":37,"msg_type":167,"payload":"JQB1ZHBfc2VydmVyMQBlbmFibGVkX3NicF9tZXNzYWdlcwAAAA==","preamble":85,"sender":22963,"index":37,"setting":"udp_server1\u0000enabled_sbp_messages\u0000\u0000\u0000"} +{"crc":56327,"length":26,"msg_type":167,"payload":"JgB1ZHBfc2VydmVyMQBwb3J0ADU1NTU4AAA=","preamble":85,"sender":22963,"index":38,"setting":"udp_server1\u0000port\u000055558\u0000\u0000"} +{"crc":31842,"length":71,"msg_type":167,"payload":"JwB1ZHBfc2VydmVyMQBtb2RlAFNCUABlbnVtOkRpc2FibGVkLFNCUCxSVENNdjMgT1VULE5NRUEgT1VULFJUQ012MyBJTgA=","preamble":85,"sender":22963,"index":39,"setting":"udp_server1\u0000mode\u0000SBP\u0000enum:Disabled,SBP,RTCMv3 OUT,NMEA OUT,RTCMv3 IN\u0000"} +{"crc":51174,"length":11,"msg_type":258,"payload":"MgjYuy4QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271498200,"ns_residual":0,"flags":1} +{"crc":25227,"length":16,"msg_type":259,"payload":"Edi7LhDkBwMZAxgo/sHrCw==","preamble":85,"sender":22963,"flags":17,"tow":271498200,"year":2020,"month":3,"day":25,"hours":3,"minutes":24,"seconds":40,"ns":199999998} +{"crc":1546,"length":34,"msg_type":522,"payload":"2LsuEPs++Oll6kJAiUi5IFaSXsD+CSsIAzsxwAECWwQPBg==","preamble":85,"sender":22963,"tow":271498200,"lat":37.83123516675365,"lon":-122.28650682539059,"height":-17.23051501322515,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":20213,"length":22,"msg_type":526,"payload":"2LsuEAUAAADv////2/////AAyQIPAg==","preamble":85,"sender":22963,"tow":271498200,"n":5,"e":-17,"d":-37,"h_accuracy":240,"v_accuracy":713,"n_sats":15,"flags":2} +{"crc":24738,"length":15,"msg_type":520,"payload":"2LsuEJsAhwBNAEgAcgAG","preamble":85,"sender":22963,"tow":271498200,"gdop":155,"pdop":135,"tdop":77,"hdop":72,"vdop":114,"flags":6} +{"crc":17543,"length":22,"msg_type":524,"payload":"2LsuEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271498200,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":32324,"length":6,"msg_type":528,"payload":"2LsuEP//","preamble":85,"sender":22963,"tow":271498200,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":1932,"length":221,"msg_type":167,"payload":"KAB1ZHBfY2xpZW50MABlbmFibGVkX3NicF9tZXNzYWdlcwAyMyw2NSw3Miw3NCw4MSw5NywxMTcsMTM0LDEzNiwxMzcsMTM4LDEzOSwxNDQsMTQ5LDE2MywxNjUsMTY2LDE2NywxNzEsMTgxLDE4NSwxODcsMTg4LDE4OSwxOTAsMjU3LDI1OCwyNTksNTIwLDUyMiw1MjQsNTI2LDUyNyw1MjgsMTAyNSwyMzA0LzUwLDIzMDUsMjMwNi81MCw0MDk4LDMwNTgzLDY1MjgwLDY1MjgyLDY1NTM1AAA=","preamble":85,"sender":22963,"index":40,"setting":"udp_client0\u0000enabled_sbp_messages\u000023,65,72,74,81,97,117,134,136,137,138,139,144,149,163,165,166,167,171,181,185,187,188,189,190,257,258,259,520,522,524,526,527,528,1025,2304/50,2305,2306/50,4098,30583,65280,65282,65535\u0000\u0000"} +{"crc":60604,"length":24,"msg_type":167,"payload":"KQB1ZHBfY2xpZW50MABhZGRyZXNzAAAA","preamble":85,"sender":22963,"index":41,"setting":"udp_client0\u0000address\u0000\u0000\u0000"} +{"crc":3966,"length":76,"msg_type":167,"payload":"KgB1ZHBfY2xpZW50MABtb2RlAERpc2FibGVkAGVudW06RGlzYWJsZWQsU0JQLFJUQ012MyBPVVQsTk1FQSBPVVQsUlRDTXYzIElOAA==","preamble":85,"sender":22963,"index":42,"setting":"udp_client0\u0000mode\u0000Disabled\u0000enum:Disabled,SBP,RTCMv3 OUT,NMEA OUT,RTCMv3 IN\u0000"} +{"crc":30496,"length":221,"msg_type":167,"payload":"KwB1ZHBfY2xpZW50MQBlbmFibGVkX3NicF9tZXNzYWdlcwAyMyw2NSw3Miw3NCw4MSw5NywxMTcsMTM0LDEzNiwxMzcsMTM4LDEzOSwxNDQsMTQ5LDE2MywxNjUsMTY2LDE2NywxNzEsMTgxLDE4NSwxODcsMTg4LDE4OSwxOTAsMjU3LDI1OCwyNTksNTIwLDUyMiw1MjQsNTI2LDUyNyw1MjgsMTAyNSwyMzA0LzUwLDIzMDUsMjMwNi81MCw0MDk4LDMwNTgzLDY1MjgwLDY1MjgyLDY1NTM1AAA=","preamble":85,"sender":22963,"index":43,"setting":"udp_client1\u0000enabled_sbp_messages\u000023,65,72,74,81,97,117,134,136,137,138,139,144,149,163,165,166,167,171,181,185,187,188,189,190,257,258,259,520,522,524,526,527,528,1025,2304/50,2305,2306/50,4098,30583,65280,65282,65535\u0000\u0000"} +{"crc":1222,"length":24,"msg_type":167,"payload":"LAB1ZHBfY2xpZW50MQBhZGRyZXNzAAAA","preamble":85,"sender":22963,"index":44,"setting":"udp_client1\u0000address\u0000\u0000\u0000"} +{"crc":22298,"length":76,"msg_type":167,"payload":"LQB1ZHBfY2xpZW50MQBtb2RlAERpc2FibGVkAGVudW06RGlzYWJsZWQsU0JQLFJUQ012MyBPVVQsTk1FQSBPVVQsUlRDTXYzIElOAA==","preamble":85,"sender":22963,"index":45,"setting":"udp_client1\u0000mode\u0000Disabled\u0000enum:Disabled,SBP,RTCMv3 OUT,NMEA OUT,RTCMv3 IN\u0000"} +{"crc":25942,"length":25,"msg_type":167,"payload":"LgBubWVhAGdwZ2dhX21zZ19yYXRlADEAAA==","preamble":85,"sender":22963,"index":46,"setting":"nmea\u0000gpgga_msg_rate\u00001\u0000\u0000"} +{"crc":27955,"length":26,"msg_type":167,"payload":"LwBubWVhAGdwcm1jX21zZ19yYXRlADEwAAA=","preamble":85,"sender":22963,"index":47,"setting":"nmea\u0000gprmc_msg_rate\u000010\u0000\u0000"} +{"crc":54031,"length":25,"msg_type":167,"payload":"MABubWVhAGdwdnRnX21zZ19yYXRlADEAAA==","preamble":85,"sender":22963,"index":48,"setting":"nmea\u0000gpvtg_msg_rate\u00001\u0000\u0000"} +{"crc":24913,"length":25,"msg_type":167,"payload":"MQBubWVhAGdwaGR0X21zZ19yYXRlADEAAA==","preamble":85,"sender":22963,"index":49,"setting":"nmea\u0000gphdt_msg_rate\u00001\u0000\u0000"} +{"crc":56198,"length":11,"msg_type":258,"payload":"Mgg8vC4QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271498300,"ns_residual":0,"flags":1} +{"crc":62651,"length":16,"msg_type":259,"payload":"ETy8LhDkBwMZAxgo/qLhEQ==","preamble":85,"sender":22963,"flags":17,"tow":271498300,"year":2020,"month":3,"day":25,"hours":3,"minutes":24,"seconds":40,"ns":299999998} +{"crc":25621,"length":34,"msg_type":522,"payload":"PLwuEJWj7ull6kJAki7EIFaSXsDIl0Pb0zsxwAECWwQPBg==","preamble":85,"sender":22963,"tow":271498300,"lat":37.83123516228003,"lon":-122.28650683554068,"height":-17.23370142364709,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":35761,"length":22,"msg_type":526,"payload":"PLwuEAIAAAD/////BwAAAPAAyQIPAg==","preamble":85,"sender":22963,"tow":271498300,"n":2,"e":-1,"d":7,"h_accuracy":240,"v_accuracy":713,"n_sats":15,"flags":2} +{"crc":26649,"length":15,"msg_type":520,"payload":"PLwuEJsAhwBNAEgAcgAG","preamble":85,"sender":22963,"tow":271498300,"gdop":155,"pdop":135,"tdop":77,"hdop":72,"vdop":114,"flags":6} +{"crc":61220,"length":22,"msg_type":524,"payload":"PLwuEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271498300,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":37897,"length":6,"msg_type":528,"payload":"PLwuEP//","preamble":85,"sender":22963,"tow":271498300,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":48894,"length":26,"msg_type":167,"payload":"MgBubWVhAGdwZ2xsX21zZ19yYXRlADEwAAA=","preamble":85,"sender":22963,"index":50,"setting":"nmea\u0000gpgll_msg_rate\u000010\u0000\u0000"} +{"crc":56170,"length":26,"msg_type":167,"payload":"MwBubWVhAGdwemRhX21zZ19yYXRlADEwAAA=","preamble":85,"sender":22963,"index":51,"setting":"nmea\u0000gpzda_msg_rate\u000010\u0000\u0000"} +{"crc":64495,"length":24,"msg_type":167,"payload":"NABubWVhAGdzYV9tc2dfcmF0ZQAxMAAA","preamble":85,"sender":22963,"index":52,"setting":"nmea\u0000gsa_msg_rate\u000010\u0000\u0000"} +{"crc":10407,"length":25,"msg_type":167,"payload":"NQBubWVhAGdwZ3N0X21zZ19yYXRlADEAAA==","preamble":85,"sender":22963,"index":53,"setting":"nmea\u0000gpgst_msg_rate\u00001\u0000\u0000"} +{"crc":20798,"length":26,"msg_type":167,"payload":"NgBubWVhAGdwZ3N2X21zZ19yYXRlADEwAAA=","preamble":85,"sender":22963,"index":54,"setting":"nmea\u0000gpgsv_msg_rate\u000010\u0000\u0000"} +{"crc":36707,"length":50,"msg_type":167,"payload":"NwBzeXN0ZW0Ac3lzdGVtX3RpbWUAR1BTK05UUABlbnVtOkdQUytOVFAsR1BTLE5UUAA=","preamble":85,"sender":22963,"index":55,"setting":"system\u0000system_time\u0000GPS+NTP\u0000enum:GPS+NTP,GPS,NTP\u0000"} +{"crc":39857,"length":43,"msg_type":167,"payload":"OABzeXN0ZW0AY29ubmVjdGl2aXR5X2NoZWNrX2ZyZXF1ZW5jeQAwLjEAAA==","preamble":85,"sender":22963,"index":56,"setting":"system\u0000connectivity_check_frequency\u00000.1\u0000\u0000"} +{"crc":26559,"length":237,"msg_type":97,"payload":"BQDWFQC1AgDAHwCmAAAAAAAAGQDcDADQHQDWEgDRAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwLOGQHMDAG7HwGXEgHCHQHCAAAABQHBAAAAAAAAAAAAAAAAZAPVYgOvZgOtZQPQXQPOAAAAagO2aAPLYgSrZgTMXQRUZATIZQTBaAS6AAAAagSwIwzGGgyoIgyhGAy9GQycDAy4Ewy5Fgy+AAAADA3RAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADA7EAAAAGQ7ACw69GA7NAAAAHw6iIQ6bGRTJGBTXCxTCHxSsDBTOAAAAIRSqAAAA","preamble":85,"sender":22963,"states":[{"mesid":{"sat":5,"code":0},"cn0":214},{"mesid":{"sat":21,"code":0},"cn0":181},{"mesid":{"sat":2,"code":0},"cn0":192},{"mesid":{"sat":31,"code":0},"cn0":166},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":25,"code":0},"cn0":220},{"mesid":{"sat":12,"code":0},"cn0":208},{"mesid":{"sat":29,"code":0},"cn0":214},{"mesid":{"sat":18,"code":0},"cn0":209},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":131,"code":2},"cn0":206},{"mesid":{"sat":25,"code":1},"cn0":204},{"mesid":{"sat":12,"code":1},"cn0":187},{"mesid":{"sat":31,"code":1},"cn0":151},{"mesid":{"sat":18,"code":1},"cn0":194},{"mesid":{"sat":29,"code":1},"cn0":194},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":5,"code":1},"cn0":193},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":100,"code":3},"cn0":213},{"mesid":{"sat":98,"code":3},"cn0":175},{"mesid":{"sat":102,"code":3},"cn0":173},{"mesid":{"sat":101,"code":3},"cn0":208},{"mesid":{"sat":93,"code":3},"cn0":206},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":106,"code":3},"cn0":182},{"mesid":{"sat":104,"code":3},"cn0":203},{"mesid":{"sat":98,"code":4},"cn0":171},{"mesid":{"sat":102,"code":4},"cn0":204},{"mesid":{"sat":93,"code":4},"cn0":84},{"mesid":{"sat":100,"code":4},"cn0":200},{"mesid":{"sat":101,"code":4},"cn0":193},{"mesid":{"sat":104,"code":4},"cn0":186},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":106,"code":4},"cn0":176},{"mesid":{"sat":35,"code":12},"cn0":198},{"mesid":{"sat":26,"code":12},"cn0":168},{"mesid":{"sat":34,"code":12},"cn0":161},{"mesid":{"sat":24,"code":12},"cn0":189},{"mesid":{"sat":25,"code":12},"cn0":156},{"mesid":{"sat":12,"code":12},"cn0":184},{"mesid":{"sat":19,"code":12},"cn0":185},{"mesid":{"sat":22,"code":12},"cn0":190},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":12,"code":13},"cn0":209},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":12,"code":14},"cn0":196},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":25,"code":14},"cn0":192},{"mesid":{"sat":11,"code":14},"cn0":189},{"mesid":{"sat":24,"code":14},"cn0":205},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":31,"code":14},"cn0":162},{"mesid":{"sat":33,"code":14},"cn0":155},{"mesid":{"sat":25,"code":20},"cn0":201},{"mesid":{"sat":24,"code":20},"cn0":215},{"mesid":{"sat":11,"code":20},"cn0":194},{"mesid":{"sat":31,"code":20},"cn0":172},{"mesid":{"sat":12,"code":20},"cn0":206},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":33,"code":20},"cn0":170},{"mesid":{"sat":0,"code":0},"cn0":0}]} +{"crc":57491,"length":47,"msg_type":167,"payload":"OQBzeXN0ZW0AY29ubmVjdGl2aXR5X2NoZWNrX2FkZHJlc3NlcwA4LjguOC44AAA=","preamble":85,"sender":22963,"index":57,"setting":"system\u0000connectivity_check_addresses\u00008.8.8.8\u0000\u0000"} +{"crc":58359,"length":41,"msg_type":167,"payload":"OgBzeXN0ZW0AY29ubmVjdGl2aXR5X3JldHJ5X2ZyZXF1ZW5jeQAxAAA=","preamble":85,"sender":22963,"index":58,"setting":"system\u0000connectivity_retry_frequency\u00001\u0000\u0000"} +{"crc":17956,"length":49,"msg_type":167,"payload":"OwBzeXN0ZW0AbG9nX3BpbmdfYWN0aXZpdHkARmFsc2UAZW51bTpGYWxzZSxUcnVlAA==","preamble":85,"sender":22963,"index":59,"setting":"system\u0000log_ping_activity\u0000False\u0000enum:False,True\u0000"} +{"crc":33498,"length":11,"msg_type":258,"payload":"MgigvC4QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271498400,"ns_residual":0,"flags":1} +{"crc":11479,"length":16,"msg_type":259,"payload":"EaC8LhDkBwMZAxgo/oPXFw==","preamble":85,"sender":22963,"flags":17,"tow":271498400,"year":2020,"month":3,"day":25,"hours":3,"minutes":24,"seconds":40,"ns":399999998} +{"crc":12675,"length":34,"msg_type":522,"payload":"oLwuEIEV5ull6kJA34zIIFaSXsBvJgWkjTwxwAECWwQPBg==","preamble":85,"sender":22963,"tow":271498400,"lat":37.8312351582963,"lon":-122.28650683960903,"height":-17.236536265618664,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":14669,"length":22,"msg_type":526,"payload":"oLwuEAQAAAAFAAAACwAAAPAAyQIPAg==","preamble":85,"sender":22963,"tow":271498400,"n":4,"e":5,"d":11,"h_accuracy":240,"v_accuracy":713,"n_sats":15,"flags":2} +{"crc":52854,"length":15,"msg_type":520,"payload":"oLwuEJsAhwBNAEgAcgAG","preamble":85,"sender":22963,"tow":271498400,"gdop":155,"pdop":135,"tdop":77,"hdop":72,"vdop":114,"flags":6} +{"crc":4373,"length":22,"msg_type":524,"payload":"oLwuEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271498400,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":20814,"length":6,"msg_type":528,"payload":"oLwuEP//","preamble":85,"sender":22963,"tow":271498400,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":1395,"length":43,"msg_type":167,"payload":"PABzeXN0ZW0Ab3RhX2VuYWJsZWQARmFsc2UAZW51bTpGYWxzZSxUcnVlAA==","preamble":85,"sender":22963,"index":60,"setting":"system\u0000ota_enabled\u0000False\u0000enum:False,True\u0000"} +{"crc":54273,"length":41,"msg_type":167,"payload":"PQBzeXN0ZW0Ab3RhX2RlYnVnAEZhbHNlAGVudW06RmFsc2UsVHJ1ZQA=","preamble":85,"sender":22963,"index":61,"setting":"system\u0000ota_debug\u0000False\u0000enum:False,True\u0000"} +{"crc":38465,"length":19,"msg_type":167,"payload":"PgBzeXN0ZW0Ab3RhX3VybAAAAA==","preamble":85,"sender":22963,"index":62,"setting":"system\u0000ota_url\u0000\u0000\u0000"} +{"crc":17110,"length":45,"msg_type":167,"payload":"PwBzeXN0ZW0AcmVzb3VyY2VfbW9uaXRvcl91cGRhdGVfaW50ZXJ2YWwAMAAA","preamble":85,"sender":22963,"index":63,"setting":"system\u0000resource_monitor_update_interval\u00000\u0000\u0000"} +{"crc":10565,"length":41,"msg_type":167,"payload":"QABzeXN0ZW1faW5mbwBpbWFnZXNldF9idWlsZF9pZAB2Mi4zLjE5AAA=","preamble":85,"sender":22963,"index":64,"setting":"system_info\u0000imageset_build_id\u0000v2.3.19\u0000\u0000"} +{"crc":38781,"length":41,"msg_type":167,"payload":"QQBzeXN0ZW1faW5mbwBmaXJtd2FyZV9idWlsZF9pZAB2Mi4zLjE5AAA=","preamble":85,"sender":22963,"index":65,"setting":"system_info\u0000firmware_build_id\u0000v2.3.19\u0000\u0000"} +{"crc":64133,"length":40,"msg_type":167,"payload":"QgBzeXN0ZW1faW5mbwBmaXJtd2FyZV92ZXJzaW9uAHYyLjMuMTkAAA==","preamble":85,"sender":22963,"index":66,"setting":"system_info\u0000firmware_version\u0000v2.3.19\u0000\u0000"} +{"crc":63354,"length":59,"msg_type":167,"payload":"QwBzeXN0ZW1faW5mbwBmaXJtd2FyZV9idWlsZF9kYXRlADIwMTktMDgtMjMgMDA6NDc6MjcgVVRDAAA=","preamble":85,"sender":22963,"index":67,"setting":"system_info\u0000firmware_build_date\u00002019-08-23 00:47:27 UTC\u0000\u0000"} +{"crc":28916,"length":61,"msg_type":167,"payload":"RABzeXN0ZW1faW5mbwBsb2FkZXJfYnVpbGRfaWQAVS1Cb290IGQ0N2U5OWIgZm9yIHp5bnEgYm9hcmQAAA==","preamble":85,"sender":22963,"index":68,"setting":"system_info\u0000loader_build_id\u0000U-Boot d47e99b for zynq board\u0000\u0000"} +{"crc":6888,"length":57,"msg_type":167,"payload":"RQBzeXN0ZW1faW5mbwBsb2FkZXJfYnVpbGRfZGF0ZQAyMDE3LTAyLTA3IDAwOjQ4OjE1IFVUQwAA","preamble":85,"sender":22963,"index":69,"setting":"system_info\u0000loader_build_date\u00002017-02-07 00:48:15 UTC\u0000\u0000"} +{"crc":49809,"length":9,"msg_type":117,"payload":"/wAAAAAAAAAA","preamble":85,"sender":22963,"mask":255,"l1ca_bias":0,"l1p_bias":0,"l2ca_bias":0,"l2p_bias":0} +{"crc":16808,"length":11,"msg_type":258,"payload":"MggEvS4QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271498500,"ns_residual":0,"flags":1} +{"crc":27985,"length":16,"msg_type":259,"payload":"EQS9LhDkBwMZAxgo/mTNHQ==","preamble":85,"sender":22963,"flags":17,"tow":271498500,"year":2020,"month":3,"day":25,"hours":3,"minutes":24,"seconds":40,"ns":499999998} +{"crc":13383,"length":34,"msg_type":522,"payload":"BL0uEHE41+ll6kJAYVHdIFaSXsBOS/9L6jwxwAECWwQPBg==","preamble":85,"sender":22963,"tow":271498500,"lat":37.83123515137493,"lon":-122.28650685895037,"height":-17.237950086429287,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":40850,"length":22,"msg_type":526,"payload":"BL0uEPv///8AAAAADwAAAPAAyQIPAg==","preamble":85,"sender":22963,"tow":271498500,"n":-5,"e":0,"d":15,"h_accuracy":240,"v_accuracy":713,"n_sats":15,"flags":2} +{"crc":59299,"length":15,"msg_type":520,"payload":"BL0uEJsAhwBNAEgAcgAG","preamble":85,"sender":22963,"tow":271498500,"gdop":155,"pdop":135,"tdop":77,"hdop":72,"vdop":114,"flags":6} +{"crc":45978,"length":22,"msg_type":524,"payload":"BL0uEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271498500,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":7318,"length":6,"msg_type":528,"payload":"BL0uEP//","preamble":85,"sender":22963,"tow":271498500,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":29540,"length":30,"msg_type":167,"payload":"RgBzeXN0ZW1faW5mbwBod192ZXJzaW9uADAuMAAA","preamble":85,"sender":22963,"index":70,"setting":"system_info\u0000hw_version\u00000.0\u0000\u0000"} +{"crc":44630,"length":39,"msg_type":167,"payload":"RwBzeXN0ZW1faW5mbwBod19yZXZpc2lvbgBQaWtzaSBNdWx0aQAA","preamble":85,"sender":22963,"index":71,"setting":"system_info\u0000hw_revision\u0000Piksi Multi\u0000\u0000"} +{"crc":58200,"length":32,"msg_type":167,"payload":"SABzeXN0ZW1faW5mbwBod192YXJpYW50AE11bHRpAAA=","preamble":85,"sender":22963,"index":72,"setting":"system_info\u0000hw_variant\u0000Multi\u0000\u0000"} +{"crc":62896,"length":47,"msg_type":167,"payload":"SQBzeXN0ZW1faW5mbwBwcm9kdWN0X2lkAFBpa3NpIE11bHRpIEluZXJ0aWFsAAA=","preamble":85,"sender":22963,"index":73,"setting":"system_info\u0000product_id\u0000Piksi Multi Inertial\u0000\u0000"} +{"crc":46628,"length":34,"msg_type":167,"payload":"SgBzeXN0ZW1faW5mbwBzYnBfc2VuZGVyX2lkADU5QjMAAA==","preamble":85,"sender":22963,"index":74,"setting":"system_info\u0000sbp_sender_id\u000059B3\u0000\u0000"} +{"crc":64562,"length":47,"msg_type":167,"payload":"SwBzeXN0ZW1faW5mbwBzZXJpYWxfbnVtYmVyADAwMTA4MDUxMjE3MDAwMDk4AAA=","preamble":85,"sender":22963,"index":75,"setting":"system_info\u0000serial_number\u000000108051217000098\u0000\u0000"} +{"crc":64713,"length":37,"msg_type":167,"payload":"TABzeXN0ZW1faW5mbwBwZndwX2J1aWxkX2lkAHYyLjMuMTkAAA==","preamble":85,"sender":22963,"index":76,"setting":"system_info\u0000pfwp_build_id\u0000v2.3.19\u0000\u0000"} +{"crc":1671,"length":52,"msg_type":167,"payload":"TQBzeXN0ZW1faW5mbwBwZndwX2J1aWxkX2RhdGUAQXVnIDIyIDIwMTkgMTk6MDE6MjEAAA==","preamble":85,"sender":22963,"index":77,"setting":"system_info\u0000pfwp_build_date\u0000Aug 22 2019 19:01:21\u0000\u0000"} +{"crc":63806,"length":47,"msg_type":167,"payload":"TgBzeXN0ZW1faW5mbwBuYXBfYnVpbGRfaWQAdjIuMy4xOS0wLWc5ZDFjNDA4AAA=","preamble":85,"sender":22963,"index":78,"setting":"system_info\u0000nap_build_id\u0000v2.3.19-0-g9d1c408\u0000\u0000"} +{"crc":50345,"length":54,"msg_type":167,"payload":"TwBzeXN0ZW1faW5mbwBuYXBfYnVpbGRfZGF0ZQAyMDE5LTA4LTIyIDIzOjQ3OjUxIFVUQwAA","preamble":85,"sender":22963,"index":79,"setting":"system_info\u0000nap_build_date\u00002019-08-22 23:47:51 UTC\u0000\u0000"} +{"crc":3229,"length":11,"msg_type":258,"payload":"MghovS4QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271498600,"ns_residual":0,"flags":1} +{"crc":9183,"length":16,"msg_type":259,"payload":"EWi9LhDkBwMZAxgo/kXDIw==","preamble":85,"sender":22963,"flags":17,"tow":271498600,"year":2020,"month":3,"day":25,"hours":3,"minutes":24,"seconds":40,"ns":599999998} +{"crc":48498,"length":34,"msg_type":522,"payload":"aL0uEDs7r+ll6kJARxzjIFaSXsBQnx0oIj4xwAECWwQPBg==","preamble":85,"sender":22963,"tow":271498600,"lat":37.831235132753555,"lon":-122.28650686434513,"height":-17.2427086899109,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":12821,"length":22,"msg_type":526,"payload":"aL0uEPv///8IAAAAIQAAAPAAyQIPAg==","preamble":85,"sender":22963,"tow":271498600,"n":-5,"e":8,"d":33,"h_accuracy":240,"v_accuracy":713,"n_sats":15,"flags":2} +{"crc":60489,"length":15,"msg_type":520,"payload":"aL0uEJsAhwBNAEgAcgAG","preamble":85,"sender":22963,"tow":271498600,"gdop":155,"pdop":135,"tdop":77,"hdop":72,"vdop":114,"flags":6} +{"crc":62863,"length":22,"msg_type":524,"payload":"aL0uEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271498600,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":18541,"length":6,"msg_type":528,"payload":"aL0uEP//","preamble":85,"sender":22963,"tow":271498600,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":8923,"length":34,"msg_type":30583,"payload":"gwLrvC4QApf/ABf/AC////f/f///f/f//+AB5edV7m7lcA==","preamble":85,"sender":22963,"sid":{"sat":131,"code":2},"tow":271498475,"message_type":2,"data":[151,255,0,23,255,0,47,255,255,247,255,127,255,255,127,247,255,255,224,1,229,231,85,238,110,229,112]} +{"crc":45892,"length":31,"msg_type":167,"payload":"UABzeXN0ZW1faW5mbwBuYXBfY2hhbm5lbHMANzkAAA==","preamble":85,"sender":22963,"index":80,"setting":"system_info\u0000nap_channels\u000079\u0000\u0000"} +{"crc":16877,"length":45,"msg_type":167,"payload":"UQBzeXN0ZW1faW5mbwBtYWNfYWRkcmVzcwA4Qy1DOC1GNC05MC0wNS03OQAA","preamble":85,"sender":22963,"index":81,"setting":"system_info\u0000mac_address\u00008C-C8-F4-90-05-79\u0000\u0000"} +{"crc":4186,"length":57,"msg_type":167,"payload":"UgBzeXN0ZW1faW5mbwB1dWlkAEE1MTZBQjAyLTMyREUtNDQxQy05QkU3LTJBRkVCODA2NTlCMwAA","preamble":85,"sender":22963,"index":82,"setting":"system_info\u0000uuid\u0000A516AB02-32DE-441C-9BE7-2AFEB80659B3\u0000\u0000"} +{"crc":20678,"length":50,"msg_type":167,"payload":"UwBzdGFuZGFsb25lX2xvZ2dpbmcAZW5hYmxlAEZhbHNlAGVudW06RmFsc2UsVHJ1ZQA=","preamble":85,"sender":22963,"index":83,"setting":"standalone_logging\u0000enable\u0000False\u0000enum:False,True\u0000"} +{"crc":60613,"length":52,"msg_type":167,"payload":"VABzdGFuZGFsb25lX2xvZ2dpbmcAb3V0cHV0X2RpcmVjdG9yeQAvbWVkaWEvc2RhMS8AAA==","preamble":85,"sender":22963,"index":84,"setting":"standalone_logging\u0000output_directory\u0000/media/sda1/\u0000\u0000"} +{"crc":26638,"length":34,"msg_type":167,"payload":"VQBzdGFuZGFsb25lX2xvZ2dpbmcAbWF4X2ZpbGwAOTUAAA==","preamble":85,"sender":22963,"index":85,"setting":"standalone_logging\u0000max_fill\u000095\u0000\u0000"} +{"crc":62818,"length":39,"msg_type":167,"payload":"VgBzdGFuZGFsb25lX2xvZ2dpbmcAZmlsZV9kdXJhdGlvbgAxMAAA","preamble":85,"sender":22963,"index":86,"setting":"standalone_logging\u0000file_duration\u000010\u0000\u0000"} +{"crc":32416,"length":64,"msg_type":167,"payload":"VwBzdGFuZGFsb25lX2xvZ2dpbmcAbG9nZ2luZ19maWxlX3N5c3RlbQBGQVQAZW51bTpGQVQsRjJGUyxOVEZTAA==","preamble":85,"sender":22963,"index":87,"setting":"standalone_logging\u0000logging_file_system\u0000FAT\u0000enum:FAT,F2FS,NTFS\u0000"} +{"crc":40460,"length":60,"msg_type":167,"payload":"WABzdGFuZGFsb25lX2xvZ2dpbmcAY29weV9zeXN0ZW1fbG9ncwBGYWxzZQBlbnVtOkZhbHNlLFRydWUA","preamble":85,"sender":22963,"index":88,"setting":"standalone_logging\u0000copy_system_logs\u0000False\u0000enum:False,True\u0000"} +{"crc":3343,"length":27,"msg_type":167,"payload":"WQBjZWxsX21vZGVtAEFQTgBob2xvZ3JhbQAA","preamble":85,"sender":22963,"index":89,"setting":"cell_modem\u0000APN\u0000hologram\u0000\u0000"} +{"crc":34876,"length":11,"msg_type":258,"payload":"MgjMvS4QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271498700,"ns_residual":0,"flags":1} +{"crc":62856,"length":16,"msg_type":259,"payload":"Ecy9LhDkBwMZAxgo/ia5KQ==","preamble":85,"sender":22963,"flags":17,"tow":271498700,"year":2020,"month":3,"day":25,"hours":3,"minutes":24,"seconds":40,"ns":699999998} +{"crc":58751,"length":34,"msg_type":522,"payload":"zL0uEB24dull6kJAeXYTIVaSXsAeGiW5ED4xwAECWwQPBg==","preamble":85,"sender":22963,"tow":271498700,"lat":37.83123510643802,"lon":-122.28650690937674,"height":-17.24244267612277,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":58040,"length":22,"msg_type":526,"payload":"zL0uEP3/////////3f////AAyQIPAg==","preamble":85,"sender":22963,"tow":271498700,"n":-3,"e":-1,"d":-35,"h_accuracy":240,"v_accuracy":713,"n_sats":15,"flags":2} +{"crc":48893,"length":15,"msg_type":520,"payload":"zL0uEJsAhwBNAEgAcgAG","preamble":85,"sender":22963,"tow":271498700,"gdop":155,"pdop":135,"tdop":77,"hdop":72,"vdop":114,"flags":6} +{"crc":33526,"length":22,"msg_type":524,"payload":"zL0uEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271498700,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":45028,"length":6,"msg_type":528,"payload":"zL0uEP//","preamble":85,"sender":22963,"tow":271498700,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":3796,"length":42,"msg_type":167,"payload":"WgBjZWxsX21vZGVtAGVuYWJsZQBGYWxzZQBlbnVtOkZhbHNlLFRydWUA","preamble":85,"sender":22963,"index":90,"setting":"cell_modem\u0000enable\u0000False\u0000enum:False,True\u0000"} +{"crc":42815,"length":41,"msg_type":167,"payload":"WwBjZWxsX21vZGVtAGRlYnVnAEZhbHNlAGVudW06RmFsc2UsVHJ1ZQA=","preamble":85,"sender":22963,"index":91,"setting":"cell_modem\u0000debug\u0000False\u0000enum:False,True\u0000"} +{"crc":33669,"length":38,"msg_type":167,"payload":"XABjZWxsX21vZGVtAGRldmljZV9vdmVycmlkZQB0dHlBQ00wAAA=","preamble":85,"sender":22963,"index":92,"setting":"cell_modem\u0000device_override\u0000ttyACM0\u0000\u0000"} +{"crc":3099,"length":50,"msg_type":167,"payload":"XQBydGNtX291dABvdXRwdXRfbW9kZQBNU000AGVudW06TGVnYWN5LE1TTTQsTVNNNQA=","preamble":85,"sender":22963,"index":93,"setting":"rtcm_out\u0000output_mode\u0000MSM4\u0000enum:Legacy,MSM4,MSM5\u0000"} +{"crc":26109,"length":29,"msg_type":167,"payload":"XgBydGNtX291dABhbnRlbm5hX2hlaWdodAAwAAA=","preamble":85,"sender":22963,"index":94,"setting":"rtcm_out\u0000antenna_height\u00000\u0000\u0000"} +{"crc":52909,"length":48,"msg_type":167,"payload":"XwBydGNtX291dABhbnRfZGVzY3JpcHRvcgBIWENHUFM1MDAgICAgICAgTk9ORQAA","preamble":85,"sender":22963,"index":95,"setting":"rtcm_out\u0000ant_descriptor\u0000HXCGPS500 NONE\u0000\u0000"} +{"crc":52578,"length":33,"msg_type":167,"payload":"YABydGNtX291dAByY3ZfZGVzY3JpcHRvcgBQSUtTSQAA","preamble":85,"sender":22963,"index":96,"setting":"rtcm_out\u0000rcv_descriptor\u0000PIKSI\u0000\u0000"} +{"crc":8235,"length":60,"msg_type":167,"payload":"YQBmcm9udGVuZABhbnRlbm5hX3NlbGVjdGlvbgBQcmltYXJ5AGVudW06UHJpbWFyeSxTZWNvbmRhcnkA","preamble":85,"sender":22963,"index":97,"setting":"frontend\u0000antenna_selection\u0000Primary\u0000enum:Primary,Secondary\u0000"} +{"crc":11570,"length":45,"msg_type":167,"payload":"YgBmcm9udGVuZABhbnRlbm5hX2JpYXMAVHJ1ZQBlbnVtOkZhbHNlLFRydWUA","preamble":85,"sender":22963,"index":98,"setting":"frontend\u0000antenna_bias\u0000True\u0000enum:False,True\u0000"} +{"crc":8283,"length":58,"msg_type":167,"payload":"YwBtZXRyaWNzX2RhZW1vbgBlbmFibGVfbG9nX3RvX2ZpbGUARmFsc2UAZW51bTpGYWxzZSxUcnVlAA==","preamble":85,"sender":22963,"index":99,"setting":"metrics_daemon\u0000enable_log_to_file\u0000False\u0000enum:False,True\u0000"} +{"crc":41336,"length":136,"msg_type":151,"payload":"AgAaHgUALDUMAFEtFQB9GRkAbUYaAKEBHQChNx8AlQ4EAxYWBQMyIQYDTggJA18OCgNxKQsDmCUMA6oDEwMiBxQDCzEVA5UlDAyUKRMMIyAUDA8CFgxDIxgMgiMZDJ0OGgxnFR0MLAAiDI4RIwwiLQsOizIMDg88GA5sNhkOlykfDlURIQ4fDw==","preamble":85,"sender":22963,"azel":[{"sid":{"sat":2,"code":0},"az":26,"el":30},{"sid":{"sat":5,"code":0},"az":44,"el":53},{"sid":{"sat":12,"code":0},"az":81,"el":45},{"sid":{"sat":21,"code":0},"az":125,"el":25},{"sid":{"sat":25,"code":0},"az":109,"el":70},{"sid":{"sat":26,"code":0},"az":161,"el":1},{"sid":{"sat":29,"code":0},"az":161,"el":55},{"sid":{"sat":31,"code":0},"az":149,"el":14},{"sid":{"sat":4,"code":3},"az":22,"el":22},{"sid":{"sat":5,"code":3},"az":50,"el":33},{"sid":{"sat":6,"code":3},"az":78,"el":8},{"sid":{"sat":9,"code":3},"az":95,"el":14},{"sid":{"sat":10,"code":3},"az":113,"el":41},{"sid":{"sat":11,"code":3},"az":152,"el":37},{"sid":{"sat":12,"code":3},"az":170,"el":3},{"sid":{"sat":19,"code":3},"az":34,"el":7},{"sid":{"sat":20,"code":3},"az":11,"el":49},{"sid":{"sat":21,"code":3},"az":149,"el":37},{"sid":{"sat":12,"code":12},"az":148,"el":41},{"sid":{"sat":19,"code":12},"az":35,"el":32},{"sid":{"sat":20,"code":12},"az":15,"el":2},{"sid":{"sat":22,"code":12},"az":67,"el":35},{"sid":{"sat":24,"code":12},"az":130,"el":35},{"sid":{"sat":25,"code":12},"az":157,"el":14},{"sid":{"sat":26,"code":12},"az":103,"el":21},{"sid":{"sat":29,"code":12},"az":44,"el":0},{"sid":{"sat":34,"code":12},"az":142,"el":17},{"sid":{"sat":35,"code":12},"az":34,"el":45},{"sid":{"sat":11,"code":14},"az":139,"el":50},{"sid":{"sat":12,"code":14},"az":15,"el":60},{"sid":{"sat":24,"code":14},"az":108,"el":54},{"sid":{"sat":25,"code":14},"az":151,"el":41},{"sid":{"sat":31,"code":14},"az":85,"el":17},{"sid":{"sat":33,"code":14},"az":31,"el":15}]} +{"crc":57648,"length":11,"msg_type":258,"payload":"Mggwvi4QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271498800,"ns_residual":0,"flags":1} +{"crc":4540,"length":16,"msg_type":259,"payload":"ETC+LhDkBwMZAxgo/gevLw==","preamble":85,"sender":22963,"flags":17,"tow":271498800,"year":2020,"month":3,"day":25,"hours":3,"minutes":24,"seconds":40,"ns":799999998} +{"crc":18754,"length":34,"msg_type":522,"payload":"ML4uEDX6Null6kJAck0vIVaSXsA/HgDLWT8xwAECWwQPBg==","preamble":85,"sender":22963,"tow":271498800,"lat":37.831235076755924,"lon":-122.28650693530452,"height":-17.24746388199696,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":4465,"length":22,"msg_type":526,"payload":"ML4uEAYAAAD9////BQAAAPAAyQIPAg==","preamble":85,"sender":22963,"tow":271498800,"n":6,"e":-3,"d":5,"h_accuracy":240,"v_accuracy":713,"n_sats":15,"flags":2} +{"crc":8748,"length":15,"msg_type":520,"payload":"ML4uEJsAhwBNAEgAcgAG","preamble":85,"sender":22963,"tow":271498800,"gdop":155,"pdop":135,"tdop":77,"hdop":72,"vdop":114,"flags":6} +{"crc":44299,"length":22,"msg_type":524,"payload":"ML4uEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271498800,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":56169,"length":6,"msg_type":528,"payload":"ML4uEP//","preamble":85,"sender":22963,"tow":271498800,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":31017,"length":237,"msg_type":97,"payload":"BQDWFQC0AgDAHwCnAAAAAAAAGQDbDADQHQDWEgDQAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwLOGQHMDAG7HwGWEgHBHQHCAAAABQHBAAAAAAAAAAAAAAAACwPUCQOuFAOsBQPPCgPNAAAABAO2FQPLCQSrFATMCgRCCwTIBQTCAAS5AAAABASwIwzGGgyoIgygGAy8GQybDAy4Ewy4Fgy+AAAADA3QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADA7DAAAAGQ7ACw68GA7MAAAAHw6gIQ6aGRTIGBTXCxTBHxSsDBTOAAAAIRSqAAAA","preamble":85,"sender":22963,"states":[{"mesid":{"sat":5,"code":0},"cn0":214},{"mesid":{"sat":21,"code":0},"cn0":180},{"mesid":{"sat":2,"code":0},"cn0":192},{"mesid":{"sat":31,"code":0},"cn0":167},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":25,"code":0},"cn0":219},{"mesid":{"sat":12,"code":0},"cn0":208},{"mesid":{"sat":29,"code":0},"cn0":214},{"mesid":{"sat":18,"code":0},"cn0":208},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":131,"code":2},"cn0":206},{"mesid":{"sat":25,"code":1},"cn0":204},{"mesid":{"sat":12,"code":1},"cn0":187},{"mesid":{"sat":31,"code":1},"cn0":150},{"mesid":{"sat":18,"code":1},"cn0":193},{"mesid":{"sat":29,"code":1},"cn0":194},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":5,"code":1},"cn0":193},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":11,"code":3},"cn0":212},{"mesid":{"sat":9,"code":3},"cn0":174},{"mesid":{"sat":20,"code":3},"cn0":172},{"mesid":{"sat":5,"code":3},"cn0":207},{"mesid":{"sat":10,"code":3},"cn0":205},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":4,"code":3},"cn0":182},{"mesid":{"sat":21,"code":3},"cn0":203},{"mesid":{"sat":9,"code":4},"cn0":171},{"mesid":{"sat":20,"code":4},"cn0":204},{"mesid":{"sat":10,"code":4},"cn0":66},{"mesid":{"sat":11,"code":4},"cn0":200},{"mesid":{"sat":5,"code":4},"cn0":194},{"mesid":{"sat":0,"code":4},"cn0":185},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":4,"code":4},"cn0":176},{"mesid":{"sat":35,"code":12},"cn0":198},{"mesid":{"sat":26,"code":12},"cn0":168},{"mesid":{"sat":34,"code":12},"cn0":160},{"mesid":{"sat":24,"code":12},"cn0":188},{"mesid":{"sat":25,"code":12},"cn0":155},{"mesid":{"sat":12,"code":12},"cn0":184},{"mesid":{"sat":19,"code":12},"cn0":184},{"mesid":{"sat":22,"code":12},"cn0":190},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":12,"code":13},"cn0":208},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":12,"code":14},"cn0":195},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":25,"code":14},"cn0":192},{"mesid":{"sat":11,"code":14},"cn0":188},{"mesid":{"sat":24,"code":14},"cn0":204},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":31,"code":14},"cn0":160},{"mesid":{"sat":33,"code":14},"cn0":154},{"mesid":{"sat":25,"code":20},"cn0":200},{"mesid":{"sat":24,"code":20},"cn0":215},{"mesid":{"sat":11,"code":20},"cn0":193},{"mesid":{"sat":31,"code":20},"cn0":172},{"mesid":{"sat":12,"code":20},"cn0":206},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":33,"code":20},"cn0":170},{"mesid":{"sat":0,"code":0},"cn0":0}]} +{"crc":42880,"length":44,"msg_type":167,"payload":"ZABtZXRyaWNzX2RhZW1vbgBtZXRyaWNzX3VwZGF0ZV9pbnRlcnZhbAAxAAA=","preamble":85,"sender":22963,"index":100,"setting":"metrics_daemon\u0000metrics_update_interval\u00001\u0000\u0000"} +{"crc":28433,"length":43,"msg_type":167,"payload":"ZQBpbXUAaW11X3Jhd19vdXRwdXQARmFsc2UAZW51bTpGYWxzZSxUcnVlAA==","preamble":85,"sender":22963,"index":101,"setting":"imu\u0000imu_raw_output\u0000False\u0000enum:False,True\u0000"} +{"crc":56634,"length":38,"msg_type":167,"payload":"ZgBpbXUAaW11X3JhdGUAMTAwAGVudW06MjUsNTAsMTAwLDIwMAA=","preamble":85,"sender":22963,"index":102,"setting":"imu\u0000imu_rate\u0000100\u0000enum:25,50,100,200\u0000"} +{"crc":58243,"length":37,"msg_type":167,"payload":"ZwBpbXUAYWNjX3JhbmdlADhnAGVudW06MmcsNGcsOGcsMTZnAA==","preamble":85,"sender":22963,"index":103,"setting":"imu\u0000acc_range\u00008g\u0000enum:2g,4g,8g,16g\u0000"} +{"crc":18629,"length":48,"msg_type":167,"payload":"aABpbXUAZ3lyb19yYW5nZQAxMjUAZW51bToyMDAwLDEwMDAsNTAwLDI1MCwxMjUA","preamble":85,"sender":22963,"index":104,"setting":"imu\u0000gyro_range\u0000125\u0000enum:2000,1000,500,250,125\u0000"} +{"crc":29365,"length":43,"msg_type":167,"payload":"aQBpbXUAbWFnX3Jhd19vdXRwdXQARmFsc2UAZW51bTpGYWxzZSxUcnVlAA==","preamble":85,"sender":22963,"index":105,"setting":"imu\u0000mag_raw_output\u0000False\u0000enum:False,True\u0000"} +{"crc":26001,"length":11,"msg_type":258,"payload":"MgiUvi4QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271498900,"ns_residual":0,"flags":1} +{"crc":41097,"length":16,"msg_type":259,"payload":"EZS+LhDkBwMZAxgo/uikNQ==","preamble":85,"sender":22963,"flags":17,"tow":271498900,"year":2020,"month":3,"day":25,"hours":3,"minutes":24,"seconds":40,"ns":899999998} +{"crc":27332,"length":34,"msg_type":522,"payload":"lL4uEFMY+Ohl6kJA5LRHIVaSXsA48QcRXUAxwAECWwQPBg==","preamble":85,"sender":22963,"tow":271498900,"lat":37.831235047474046,"lon":-122.28650695803259,"height":-17.251420082510975,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":64549,"length":22,"msg_type":526,"payload":"lL4uEAIAAAD+////EwAAAPAAyQIPAg==","preamble":85,"sender":22963,"tow":271498900,"n":2,"e":-2,"d":19,"h_accuracy":240,"v_accuracy":713,"n_sats":15,"flags":2} +{"crc":28824,"length":15,"msg_type":520,"payload":"lL4uEJsAhwBNAEgAcgAG","preamble":85,"sender":22963,"tow":271498900,"gdop":155,"pdop":135,"tdop":77,"hdop":72,"vdop":114,"flags":6} +{"crc":55922,"length":22,"msg_type":524,"payload":"lL4uEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271498900,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":15584,"length":6,"msg_type":528,"payload":"lL4uEP//","preamble":85,"sender":22963,"tow":271498900,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":6972,"length":38,"msg_type":167,"payload":"agBpbXUAbWFnX3JhdGUAMTIuNQBlbnVtOjYuMjUsMTIuNSwyNQA=","preamble":85,"sender":22963,"index":106,"setting":"imu\u0000mag_rate\u000012.5\u0000enum:6.25,12.5,25\u0000"} +{"crc":25153,"length":26,"msg_type":167,"payload":"awBuZGIAdmFsaWRfYWxtX2FjYwA1MDAwAAA=","preamble":85,"sender":22963,"index":107,"setting":"ndb\u0000valid_alm_acc\u00005000\u0000\u0000"} +{"crc":27341,"length":25,"msg_type":167,"payload":"bABuZGIAdmFsaWRfZXBoX2FjYwAxMDAAAA==","preamble":85,"sender":22963,"index":108,"setting":"ndb\u0000valid_eph_acc\u0000100\u0000\u0000"} +{"crc":55991,"length":24,"msg_type":167,"payload":"bQBuZGIAdmFsaWRfYWxtX2RheXMANgAA","preamble":85,"sender":22963,"index":109,"setting":"ndb\u0000valid_alm_days\u00006\u0000\u0000"} +{"crc":15035,"length":42,"msg_type":167,"payload":"bgBuZGIAZXJhc2VfYWxtYW5hYwBGYWxzZQBlbnVtOkZhbHNlLFRydWUA","preamble":85,"sender":22963,"index":110,"setting":"ndb\u0000erase_almanac\u0000False\u0000enum:False,True\u0000"} +{"crc":51897,"length":45,"msg_type":167,"payload":"bwBuZGIAZXJhc2VfYWxtYW5hY193bgBGYWxzZQBlbnVtOkZhbHNlLFRydWUA","preamble":85,"sender":22963,"index":111,"setting":"ndb\u0000erase_almanac_wn\u0000False\u0000enum:False,True\u0000"} +{"crc":63569,"length":44,"msg_type":167,"payload":"cABuZGIAZXJhc2VfZ25zc19jYXBiAEZhbHNlAGVudW06RmFsc2UsVHJ1ZQA=","preamble":85,"sender":22963,"index":112,"setting":"ndb\u0000erase_gnss_capb\u0000False\u0000enum:False,True\u0000"} +{"crc":28384,"length":39,"msg_type":167,"payload":"cQBuZGIAZXJhc2VfaW9ubwBGYWxzZQBlbnVtOkZhbHNlLFRydWUA","preamble":85,"sender":22963,"index":113,"setting":"ndb\u0000erase_iono\u0000False\u0000enum:False,True\u0000"} +{"crc":58798,"length":25,"msg_type":167,"payload":"cgBuZGIAbGdmX3VwZGF0ZV9zADE4MDAAAA==","preamble":85,"sender":22963,"index":114,"setting":"ndb\u0000lgf_update_s\u00001800\u0000\u0000"} +{"crc":30766,"length":26,"msg_type":167,"payload":"cwBuZGIAbGdmX3VwZGF0ZV9tADEwMDAwAAA=","preamble":85,"sender":22963,"index":115,"setting":"ndb\u0000lgf_update_m\u000010000\u0000\u0000"} +{"crc":49484,"length":51,"msg_type":1025,"payload":"BkdMTyBMMk9GIE1FIDEgWysxMzU2bXNdIGxvdyBDTjAgdG9vIGxvbmcsIGRyb3BwaW5n","preamble":85,"sender":22963,"level":6,"text":"GLO L2OF ME 1 [+1356ms] low CN0 too long, dropping"} +{"crc":60421,"length":45,"msg_type":167,"payload":"dABuZGIAZXJhc2VfdXRjX3BhcmFtcwBGYWxzZQBlbnVtOkZhbHNlLFRydWUA","preamble":85,"sender":22963,"index":116,"setting":"ndb\u0000erase_utc_params\u0000False\u0000enum:False,True\u0000"} +{"crc":48133,"length":26,"msg_type":167,"payload":"dQB0cmFjawBlbGV2YXRpb25fbWFzawA5AAA=","preamble":85,"sender":22963,"index":117,"setting":"track\u0000elevation_mask\u00009\u0000\u0000"} +{"crc":48620,"length":26,"msg_type":167,"payload":"dgB0cmFjawBpcV9vdXRwdXRfbWFzawAwAAA=","preamble":85,"sender":22963,"index":118,"setting":"track\u0000iq_output_mask\u00000\u0000\u0000"} +{"crc":26603,"length":43,"msg_type":167,"payload":"dwB0cmFjawBtb2RlAHJvdmVyAGVudW06cm92ZXIsYmFzZSBzdGF0aW9uAA==","preamble":85,"sender":22963,"index":119,"setting":"track\u0000mode\u0000rover\u0000enum:rover,base station\u0000"} +{"crc":30823,"length":249,"msg_type":74,"payload":"+L4uEAAAAAAyCEAIlbM+awiXBkBU/xvWDw8FAOjhG0XsbUMH7IEIX7QPDxUAk8/sRXVjWQdJU/ZrwA8PAgDhqAFJ50usB8l9/o+mDw8fABt1Iz25+mwGJaP7AdsPDxkAGUOuQAdJzAafb/Qzzw8PDADfANQ+uHCaBlnPBSXVDw8dAEF1Iz1szQEFPpr8OcwPDxkBz0KuQCIRTAVD+/bfuw8PDAGwqAFJ5Z76BZfT/jKWDw8fAZkA1D7rOSUFO4gEAMIPDx0By5SzPk+SIgWWef/5wg8PBQFKCP8+V4+7BmecBFXUDw8LA56ny0TQ51gHFcjuRa8PDwkD","preamble":85,"sender":22963,"header":{"t":{"tow":271499000,"ns_residual":0,"wn":2098},"n_obs":64},"obs":[{"P":1051956488,"L":{"i":110561387,"f":64},"D":{"i":-172,"f":27},"cn0":214,"lock":15,"flags":15,"sid":{"sat":5,"code":0}},{"P":1159455208,"L":{"i":121859564,"f":236},"D":{"i":2177,"f":95},"cn0":180,"lock":15,"flags":15,"sid":{"sat":21,"code":0}},{"P":1173147539,"L":{"i":123298677,"f":73},"D":{"i":-2477,"f":107},"cn0":192,"lock":15,"flags":15,"sid":{"sat":2,"code":0}},{"P":1224845537,"L":{"i":128732135,"f":201},"D":{"i":-387,"f":143},"cn0":166,"lock":15,"flags":15,"sid":{"sat":31,"code":0}},{"P":1025733915,"L":{"i":107805369,"f":37},"D":{"i":-1117,"f":1},"cn0":219,"lock":15,"flags":15,"sid":{"sat":25,"code":0}},{"P":1085162265,"L":{"i":114051335,"f":159},"D":{"i":-2961,"f":51},"cn0":207,"lock":15,"flags":15,"sid":{"sat":12,"code":0}},{"P":1054081247,"L":{"i":110784696,"f":89},"D":{"i":1487,"f":37},"cn0":213,"lock":15,"flags":15,"sid":{"sat":29,"code":0}},{"P":1025733953,"L":{"i":84004204,"f":62},"D":{"i":-870,"f":57},"cn0":204,"lock":15,"flags":15,"sid":{"sat":25,"code":1}},{"P":1085162191,"L":{"i":88871202,"f":67},"D":{"i":-2309,"f":223},"cn0":187,"lock":15,"flags":15,"sid":{"sat":12,"code":1}},{"P":1224845488,"L":{"i":100310757,"f":151},"D":{"i":-301,"f":50},"cn0":150,"lock":15,"flags":15,"sid":{"sat":31,"code":1}},{"P":1054081177,"L":{"i":86325739,"f":59},"D":{"i":1160,"f":0},"cn0":194,"lock":15,"flags":15,"sid":{"sat":29,"code":1}},{"P":1051956427,"L":{"i":86151759,"f":150},"D":{"i":-135,"f":249},"cn0":194,"lock":15,"flags":15,"sid":{"sat":5,"code":1}},{"P":1056901194,"L":{"i":112955223,"f":103},"D":{"i":1180,"f":85},"cn0":212,"lock":15,"flags":15,"sid":{"sat":11,"code":3}},{"P":1154197406,"L":{"i":123267024,"f":21},"D":{"i":-4408,"f":69},"cn0":175,"lock":15,"flags":15,"sid":{"sat":9,"code":3}}]} +{"crc":21159,"length":249,"msg_type":74,"payload":"+L4uEAAAAAAyCEFMuio9ha+KBkhI+wCsDw8UA8sPDkAoJNkGQqEIYdAPDwUD6LBePsQ6pgbyJfTmzQ8PCgPAdgRDLnEtB/rp+p+2Dw8EAwMwLj8PB8MGulkGY8sPDxUD9KfLRDnttgW6nfIXqw8PCQSsuyo9p4gWBdZU/IPMDw8UBGEJ/z74izwF+pUD2cgPDwsEfRAOQOqNUwU2tQY9wg8PBQRWdwRDGh+VBcMI/MqwDw8EBOPekUVb0D4HDCb6BccPDyMM7LHsScHqsgc+QPSUqA8PGgzIixtMeh7tB2XICGygDw8iDMWUnUf2WnUHjvD6b7wPDxgM","preamble":85,"sender":22963,"header":{"t":{"tow":271499000,"ns_residual":0,"wn":2098},"n_obs":65},"obs":[{"P":1026210380,"L":{"i":109752197,"f":72},"D":{"i":-1208,"f":0},"cn0":172,"lock":15,"flags":15,"sid":{"sat":20,"code":3}},{"P":1074663371,"L":{"i":114893864,"f":66},"D":{"i":2209,"f":97},"cn0":208,"lock":15,"flags":15,"sid":{"sat":5,"code":3}},{"P":1046393064,"L":{"i":111557316,"f":242},"D":{"i":-3035,"f":230},"cn0":205,"lock":15,"flags":15,"sid":{"sat":10,"code":3}},{"P":1124366016,"L":{"i":120418606,"f":250},"D":{"i":-1303,"f":159},"cn0":182,"lock":15,"flags":15,"sid":{"sat":4,"code":3}},{"P":1059991555,"L":{"i":113444623,"f":186},"D":{"i":1625,"f":99},"cn0":203,"lock":15,"flags":15,"sid":{"sat":21,"code":3}},{"P":1154197492,"L":{"i":95874361,"f":186},"D":{"i":-3427,"f":23},"cn0":171,"lock":15,"flags":15,"sid":{"sat":9,"code":4}},{"P":1026210732,"L":{"i":85362855,"f":214},"D":{"i":-940,"f":131},"cn0":204,"lock":15,"flags":15,"sid":{"sat":20,"code":4}},{"P":1056901473,"L":{"i":87854072,"f":250},"D":{"i":917,"f":217},"cn0":200,"lock":15,"flags":15,"sid":{"sat":11,"code":4}},{"P":1074663549,"L":{"i":89361898,"f":54},"D":{"i":1717,"f":61},"cn0":194,"lock":15,"flags":15,"sid":{"sat":5,"code":4}},{"P":1124366166,"L":{"i":93658906,"f":195},"D":{"i":-1016,"f":202},"cn0":176,"lock":15,"flags":15,"sid":{"sat":4,"code":4}},{"P":1167187683,"L":{"i":121557083,"f":12},"D":{"i":-1498,"f":5},"cn0":199,"lock":15,"flags":15,"sid":{"sat":35,"code":12}},{"P":1240248812,"L":{"i":129166017,"f":62},"D":{"i":-3008,"f":148},"cn0":168,"lock":15,"flags":15,"sid":{"sat":26,"code":12}},{"P":1276873672,"L":{"i":132980346,"f":101},"D":{"i":2248,"f":108},"cn0":160,"lock":15,"flags":15,"sid":{"sat":34,"code":12}},{"P":1201509573,"L":{"i":125131510,"f":142},"D":{"i":-1296,"f":111},"cn0":188,"lock":15,"flags":15,"sid":{"sat":24,"code":12}}]} +{"crc":7285,"length":249,"msg_type":74,"payload":"+L4uEAAAAAAyCEIAZhZNbD4HCIE0BeGbDw8ZDM+BUkXmNjgHFksGzrgPDwwMRZxCR5nhawdu5f7yuA8PEwwRWWRHE2VvBxZXCeu+Dw8WDIyBUkUiKJUFs98E6NAPDwwNYsYEQpFI8AZS/vskww8PDA7ocCNLm6jlBy1GBGfADw8ZDjp6I0cQCnoHghkEF7wPDwsOss4jQ3BzDgdrNPnxzA8PGA4EzUBRyy2KCKSc80qhDw8fDg+w8VESxZwI7KP3OZoPDyEOxHAjSyUQDQaBRgNmyA8PGRTD0CNDJypoBfzK+vXXDw8YFJN5I0fpmboFKSQDvMIPDwsU","preamble":85,"sender":22963,"header":{"t":{"tow":271499000,"ns_residual":0,"wn":2098},"n_obs":66},"obs":[{"P":1293313536,"L":{"i":134692460,"f":129},"D":{"i":1332,"f":225},"cn0":155,"lock":15,"flags":15,"sid":{"sat":25,"code":12}},{"P":1163035087,"L":{"i":121124582,"f":22},"D":{"i":1611,"f":206},"cn0":184,"lock":15,"flags":15,"sid":{"sat":12,"code":12}},{"P":1195547717,"L":{"i":124510617,"f":110},"D":{"i":-283,"f":242},"cn0":184,"lock":15,"flags":15,"sid":{"sat":19,"code":12}},{"P":1197758737,"L":{"i":124740883,"f":22},"D":{"i":2391,"f":235},"cn0":190,"lock":15,"flags":15,"sid":{"sat":22,"code":12}},{"P":1163035020,"L":{"i":93661218,"f":179},"D":{"i":1247,"f":232},"cn0":208,"lock":15,"flags":15,"sid":{"sat":12,"code":13}},{"P":1107609186,"L":{"i":116410513,"f":82},"D":{"i":-1026,"f":36},"cn0":195,"lock":15,"flags":15,"sid":{"sat":12,"code":14}},{"P":1260613864,"L":{"i":132491419,"f":45},"D":{"i":1094,"f":103},"cn0":192,"lock":15,"flags":15,"sid":{"sat":25,"code":14}},{"P":1193507386,"L":{"i":125438480,"f":130},"D":{"i":1049,"f":23},"cn0":188,"lock":15,"flags":15,"sid":{"sat":11,"code":14}},{"P":1126420146,"L":{"i":118387568,"f":107},"D":{"i":-1740,"f":241},"cn0":204,"lock":15,"flags":15,"sid":{"sat":24,"code":14}},{"P":1363201284,"L":{"i":143273419,"f":164},"D":{"i":-3172,"f":74},"cn0":161,"lock":15,"flags":15,"sid":{"sat":31,"code":14}},{"P":1374793743,"L":{"i":144491794,"f":236},"D":{"i":-2141,"f":57},"cn0":154,"lock":15,"flags":15,"sid":{"sat":33,"code":14}},{"P":1260613828,"L":{"i":101519397,"f":129},"D":{"i":838,"f":102},"cn0":200,"lock":15,"flags":15,"sid":{"sat":25,"code":20}},{"P":1126420675,"L":{"i":90712615,"f":252},"D":{"i":-1334,"f":245},"cn0":215,"lock":15,"flags":15,"sid":{"sat":24,"code":20}},{"P":1193507219,"L":{"i":96115177,"f":41},"D":{"i":804,"f":188},"cn0":194,"lock":15,"flags":15,"sid":{"sat":11,"code":20}}]} +{"crc":52233,"length":62,"msg_type":74,"payload":"+L4uEAAAAAAyCEMXzUBR7R+LBnaC9qmsDw8fFMPFBEKADFEFp+78Ac4PDwwUza/xUcJemQa1lfnAqg8PIRQ=","preamble":85,"sender":22963,"header":{"t":{"tow":271499000,"ns_residual":0,"wn":2098},"n_obs":67},"obs":[{"P":1363201303,"L":{"i":109780973,"f":118},"D":{"i":-2430,"f":169},"cn0":172,"lock":15,"flags":15,"sid":{"sat":31,"code":20}},{"P":1107609027,"L":{"i":89197696,"f":167},"D":{"i":-786,"f":1},"cn0":206,"lock":15,"flags":15,"sid":{"sat":12,"code":20}},{"P":1374793677,"L":{"i":110714562,"f":181},"D":{"i":-1643,"f":192},"cn0":170,"lock":15,"flags":15,"sid":{"sat":33,"code":20}}]} +{"crc":49809,"length":9,"msg_type":117,"payload":"/wAAAAAAAAAA","preamble":85,"sender":22963,"mask":255,"l1ca_bias":0,"l1p_bias":0,"l2ca_bias":0,"l2p_bias":0} +{"crc":10404,"length":11,"msg_type":258,"payload":"Mgj4vi4QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271499000,"ns_residual":0,"flags":1} +{"crc":56769,"length":16,"msg_type":259,"payload":"Efi+LhDkBwMZAxgo/smaOw==","preamble":85,"sender":22963,"flags":17,"tow":271499000,"year":2020,"month":3,"day":25,"hours":3,"minutes":24,"seconds":40,"ns":999999998} +{"crc":45144,"length":34,"msg_type":522,"payload":"+L4uEI3ot+hl6kJAnoptIVaSXsADTMU/yUAxwAECWwQPBg==","preamble":85,"sender":22963,"tow":271499000,"lat":37.831235017584824,"lon":-122.28650699326906,"height":-17.253070817630952,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":21183,"length":22,"msg_type":526,"payload":"+L4uEP////8AAAAA9f////AAyQIPAg==","preamble":85,"sender":22963,"tow":271499000,"n":-1,"e":0,"d":-11,"h_accuracy":240,"v_accuracy":713,"n_sats":15,"flags":2} +{"crc":31602,"length":15,"msg_type":520,"payload":"+L4uEJsAhwBNAEgAcgAG","preamble":85,"sender":22963,"tow":271499000,"gdop":155,"pdop":135,"tdop":77,"hdop":72,"vdop":114,"flags":6} +{"crc":40039,"length":22,"msg_type":524,"payload":"+L4uEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271499000,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":26651,"length":6,"msg_type":528,"payload":"+L4uEP//","preamble":85,"sender":22963,"tow":271499000,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":40942,"length":4,"msg_type":65535,"payload":"AAUCgA==","preamble":85,"sender":22963,"flags":2147616000} +{"crc":2168,"length":24,"msg_type":72,"payload":"UO0a3iqORMHK1UJhIkRQwc9nFIPvrk1B","preamble":85,"sender":22963,"x":-2694229.735196747,"y":-4264073.519704292,"z":3890655.0240602265} +{"crc":29294,"length":30,"msg_type":167,"payload":"eABzb2x1dGlvbgBlbGV2YXRpb25fbWFzawAxMAAA","preamble":85,"sender":22963,"index":120,"setting":"solution\u0000elevation_mask\u000010\u0000\u0000"} +{"crc":53496,"length":47,"msg_type":167,"payload":"eQBzb2x1dGlvbgBkZ25zc19maWx0ZXIARml4ZWQAZW51bTpGbG9hdCxGaXhlZAA=","preamble":85,"sender":22963,"index":121,"setting":"solution\u0000dgnss_filter\u0000Fixed\u0000enum:Float,Fixed\u0000"} +{"crc":44919,"length":103,"msg_type":167,"payload":"egBzb2x1dGlvbgBkeW5hbWljX21vdGlvbl9tb2RlbABIaWdoIER5bmFtaWNzAGVudW06SGlnaCBEeW5hbWljcyxIaWdoIEhvcml6b250YWwgRHluYW1pY3MsTG93IER5bmFtaWNzAA==","preamble":85,"sender":22963,"index":122,"setting":"solution\u0000dynamic_motion_model\u0000High Dynamics\u0000enum:High Dynamics,High Horizontal Dynamics,Low Dynamics\u0000"} +{"crc":59283,"length":34,"msg_type":167,"payload":"ewBzb2x1dGlvbgBjb3JyZWN0aW9uX2FnZV9tYXgAMzAAAA==","preamble":85,"sender":22963,"index":123,"setting":"solution\u0000correction_age_max\u000030\u0000\u0000"} +{"crc":31326,"length":47,"msg_type":167,"payload":"fABzb2x1dGlvbgBlbmFibGVfZ2xvbmFzcwBUcnVlAGVudW06RmFsc2UsVHJ1ZQA=","preamble":85,"sender":22963,"index":124,"setting":"solution\u0000enable_glonass\u0000True\u0000enum:False,True\u0000"} +{"crc":28585,"length":47,"msg_type":167,"payload":"fQBzb2x1dGlvbgBlbmFibGVfZ2FsaWxlbwBUcnVlAGVudW06RmFsc2UsVHJ1ZQA=","preamble":85,"sender":22963,"index":125,"setting":"solution\u0000enable_galileo\u0000True\u0000enum:False,True\u0000"} +{"crc":17677,"length":46,"msg_type":167,"payload":"fgBzb2x1dGlvbgBlbmFibGVfYmVpZG91AFRydWUAZW51bTpGYWxzZSxUcnVlAA==","preamble":85,"sender":22963,"index":126,"setting":"solution\u0000enable_beidou\u0000True\u0000enum:False,True\u0000"} +{"crc":33653,"length":56,"msg_type":167,"payload":"fwBzb2x1dGlvbgBnbG9uYXNzX21lYXN1cmVtZW50X3N0ZF9kb3dud2VpZ2h0X2ZhY3RvcgA0AAA=","preamble":85,"sender":22963,"index":127,"setting":"solution\u0000glonass_measurement_std_downweight_factor\u00004\u0000\u0000"} +{"crc":11531,"length":82,"msg_type":167,"payload":"gABzb2x1dGlvbgBkZ25zc19zb2x1dGlvbl9tb2RlAExvdyBMYXRlbmN5AGVudW06TG93IExhdGVuY3ksVGltZSBNYXRjaGVkLE5vIERHTlNTAA==","preamble":85,"sender":22963,"index":128,"setting":"solution\u0000dgnss_solution_mode\u0000Low Latency\u0000enum:Low Latency,Time Matched,No DGNSS\u0000"} +{"crc":32816,"length":29,"msg_type":167,"payload":"gQBzb2x1dGlvbgBoZWFkaW5nX29mZnNldAAwAAA=","preamble":85,"sender":22963,"index":129,"setting":"solution\u0000heading_offset\u00000\u0000\u0000"} +{"crc":60374,"length":11,"msg_type":258,"payload":"Mghcvy4QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271499100,"ns_residual":0,"flags":1} +{"crc":35483,"length":16,"msg_type":259,"payload":"EVy/LhDkBwMZAxgp/uD1BQ==","preamble":85,"sender":22963,"flags":17,"tow":271499100,"year":2020,"month":3,"day":25,"hours":3,"minutes":24,"seconds":41,"ns":99999998} +{"crc":5240,"length":34,"msg_type":522,"payload":"XL8uEJU4Xuhl6kJAE7+KIVaSXsAH9rmZWkExwAECWwQPBg==","preamble":85,"sender":22963,"tow":271499100,"lat":37.831234975820884,"lon":-122.28650702046825,"height":-17.255288703823705,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":20647,"length":22,"msg_type":526,"payload":"XL8uEPr///8HAAAACgAAAPAAyQIPAg==","preamble":85,"sender":22963,"tow":271499100,"n":-6,"e":7,"d":10,"h_accuracy":240,"v_accuracy":713,"n_sats":15,"flags":2} +{"crc":21159,"length":15,"msg_type":520,"payload":"XL8uEJsAhwBNAEgAcgAG","preamble":85,"sender":22963,"tow":271499100,"gdop":155,"pdop":135,"tdop":77,"hdop":72,"vdop":114,"flags":6} +{"crc":16104,"length":22,"msg_type":524,"payload":"XL8uEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271499100,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":9667,"length":6,"msg_type":528,"payload":"XL8uEP//","preamble":85,"sender":22963,"tow":271499100,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":10082,"length":46,"msg_type":167,"payload":"ggBzb2x1dGlvbgBzZW5kX2hlYWRpbmcARmFsc2UAZW51bTpGYWxzZSxUcnVlAA==","preamble":85,"sender":22963,"index":130,"setting":"solution\u0000send_heading\u0000False\u0000enum:False,True\u0000"} +{"crc":42760,"length":62,"msg_type":167,"payload":"hgBleHRfZXZlbnRfYQBlZGdlX3RyaWdnZXIATm9uZQBlbnVtOk5vbmUsUmlzaW5nLEZhbGxpbmcsQm90aAA=","preamble":85,"sender":22963,"index":134,"setting":"ext_event_a\u0000edge_trigger\u0000None\u0000enum:None,Rising,Falling,Both\u0000"} +{"crc":30733,"length":25,"msg_type":167,"payload":"hABzb2x1dGlvbgBzb2xuX2ZyZXEAMTAAAA==","preamble":85,"sender":22963,"index":132,"setting":"solution\u0000soln_freq\u000010\u0000\u0000"} +{"crc":9085,"length":34,"msg_type":167,"payload":"hQBzb2x1dGlvbgBvdXRwdXRfZXZlcnlfbl9vYnMAMTAAAA==","preamble":85,"sender":22963,"index":133,"setting":"solution\u0000output_every_n_obs\u000010\u0000\u0000"} +{"crc":64354,"length":46,"msg_type":167,"payload":"gwBzb2x1dGlvbgBkaXNhYmxlX3JhaW0ARmFsc2UAZW51bTpGYWxzZSxUcnVlAA==","preamble":85,"sender":22963,"index":131,"setting":"solution\u0000disable_raim\u0000False\u0000enum:False,True\u0000"} +{"crc":16652,"length":29,"msg_type":167,"payload":"hwBleHRfZXZlbnRfYQBzZW5zaXRpdml0eQAwAAA=","preamble":85,"sender":22963,"index":135,"setting":"ext_event_a\u0000sensitivity\u00000\u0000\u0000"} +{"crc":30712,"length":62,"msg_type":167,"payload":"iABleHRfZXZlbnRfYgBlZGdlX3RyaWdnZXIATm9uZQBlbnVtOk5vbmUsUmlzaW5nLEZhbGxpbmcsQm90aAA=","preamble":85,"sender":22963,"index":136,"setting":"ext_event_b\u0000edge_trigger\u0000None\u0000enum:None,Rising,Falling,Both\u0000"} +{"crc":34283,"length":29,"msg_type":167,"payload":"iQBleHRfZXZlbnRfYgBzZW5zaXRpdml0eQAwAAA=","preamble":85,"sender":22963,"index":137,"setting":"ext_event_b\u0000sensitivity\u00000\u0000\u0000"} +{"crc":37430,"length":62,"msg_type":167,"payload":"igBleHRfZXZlbnRfYwBlZGdlX3RyaWdnZXIATm9uZQBlbnVtOk5vbmUsUmlzaW5nLEZhbGxpbmcsQm90aAA=","preamble":85,"sender":22963,"index":138,"setting":"ext_event_c\u0000edge_trigger\u0000None\u0000enum:None,Rising,Falling,Both\u0000"} +{"crc":25828,"length":29,"msg_type":167,"payload":"iwBleHRfZXZlbnRfYwBzZW5zaXRpdml0eQAwAAA=","preamble":85,"sender":22963,"index":139,"setting":"ext_event_c\u0000sensitivity\u00000\u0000\u0000"} +{"crc":45706,"length":11,"msg_type":258,"payload":"MgjAvy4QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271499200,"ns_residual":0,"flags":1} +{"crc":23728,"length":16,"msg_type":259,"payload":"EcC/LhDkBwMZAxgp/sHrCw==","preamble":85,"sender":22963,"flags":17,"tow":271499200,"year":2020,"month":3,"day":25,"hours":3,"minutes":24,"seconds":41,"ns":199999998} +{"crc":58296,"length":34,"msg_type":522,"payload":"wL8uEJG9++dl6kJAzpCcIVaSXsDL1S55fkIxwAECWwQPBg==","preamble":85,"sender":22963,"tow":271499200,"lat":37.831234929962314,"lon":-122.28650703706373,"height":-17.259742330488546,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":24643,"length":22,"msg_type":526,"payload":"wL8uEPf///8DAAAAIQAAAPAAyQIPAg==","preamble":85,"sender":22963,"tow":271499200,"n":-9,"e":3,"d":33,"h_accuracy":240,"v_accuracy":713,"n_sats":15,"flags":2} +{"crc":62664,"length":15,"msg_type":520,"payload":"wL8uEJsAhwBNAEgAcgAG","preamble":85,"sender":22963,"tow":271499200,"gdop":155,"pdop":135,"tdop":77,"hdop":72,"vdop":114,"flags":6} +{"crc":49369,"length":22,"msg_type":524,"payload":"wL8uEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271499200,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":57476,"length":6,"msg_type":528,"payload":"wL8uEP//","preamble":85,"sender":22963,"tow":271499200,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":58539,"length":53,"msg_type":167,"payload":"jABhY3F1aXNpdGlvbgBhbG1hbmFjc19lbmFibGVkAEZhbHNlAGVudW06RmFsc2UsVHJ1ZQA=","preamble":85,"sender":22963,"index":140,"setting":"acquisition\u0000almanacs_enabled\u0000False\u0000enum:False,True\u0000"} +{"crc":42631,"length":63,"msg_type":167,"payload":"jQBhY3F1aXNpdGlvbgBnbG9uYXNzX2FjcXVpc2l0aW9uX2VuYWJsZWQAVHJ1ZQBlbnVtOkZhbHNlLFRydWUA","preamble":85,"sender":22963,"index":141,"setting":"acquisition\u0000glonass_acquisition_enabled\u0000True\u0000enum:False,True\u0000"} +{"crc":52652,"length":60,"msg_type":167,"payload":"jgBhY3F1aXNpdGlvbgBzYmFzX2FjcXVpc2l0aW9uX2VuYWJsZWQAVHJ1ZQBlbnVtOkZhbHNlLFRydWUA","preamble":85,"sender":22963,"index":142,"setting":"acquisition\u0000sbas_acquisition_enabled\u0000True\u0000enum:False,True\u0000"} +{"crc":58021,"length":60,"msg_type":167,"payload":"jwBhY3F1aXNpdGlvbgBiZHMyX2FjcXVpc2l0aW9uX2VuYWJsZWQAVHJ1ZQBlbnVtOkZhbHNlLFRydWUA","preamble":85,"sender":22963,"index":143,"setting":"acquisition\u0000bds2_acquisition_enabled\u0000True\u0000enum:False,True\u0000"} +{"crc":42916,"length":61,"msg_type":167,"payload":"kABhY3F1aXNpdGlvbgBxenNzX2FjcXVpc2l0aW9uX2VuYWJsZWQARmFsc2UAZW51bTpGYWxzZSxUcnVlAA==","preamble":85,"sender":22963,"index":144,"setting":"acquisition\u0000qzss_acquisition_enabled\u0000False\u0000enum:False,True\u0000"} +{"crc":65111,"length":63,"msg_type":167,"payload":"kQBhY3F1aXNpdGlvbgBnYWxpbGVvX2FjcXVpc2l0aW9uX2VuYWJsZWQAVHJ1ZQBlbnVtOkZhbHNlLFRydWUA","preamble":85,"sender":22963,"index":145,"setting":"acquisition\u0000galileo_acquisition_enabled\u0000True\u0000enum:False,True\u0000"} +{"crc":46231,"length":53,"msg_type":167,"payload":"kgBzeXN0ZW1fbW9uaXRvcgBoZWFydGJlYXRfcGVyaW9kX21pbGxpc2Vjb25kcwAxMDAwAAA=","preamble":85,"sender":22963,"index":146,"setting":"system_monitor\u0000heartbeat_period_milliseconds\u00001000\u0000\u0000"} +{"crc":53002,"length":47,"msg_type":167,"payload":"kwBzeXN0ZW1fbW9uaXRvcgB3YXRjaGRvZwBUcnVlAGVudW06RmFsc2UsVHJ1ZQA=","preamble":85,"sender":22963,"index":147,"setting":"system_monitor\u0000watchdog\u0000True\u0000enum:False,True\u0000"} +{"crc":18500,"length":57,"msg_type":167,"payload":"lABzeXN0ZW1fbW9uaXRvcgBzcGVjdHJ1bV9hbmFseXplcgBGYWxzZQBlbnVtOkZhbHNlLFRydWUA","preamble":85,"sender":22963,"index":148,"setting":"system_monitor\u0000spectrum_analyzer\u0000False\u0000enum:False,True\u0000"} +{"crc":54284,"length":51,"msg_type":167,"payload":"lQBzdXJ2ZXllZF9wb3NpdGlvbgBicm9hZGNhc3QAVHJ1ZQBlbnVtOkZhbHNlLFRydWUA","preamble":85,"sender":22963,"index":149,"setting":"surveyed_position\u0000broadcast\u0000True\u0000enum:False,True\u0000"} +{"crc":60,"length":11,"msg_type":258,"payload":"MggkwC4QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271499300,"ns_residual":0,"flags":1} +{"crc":20844,"length":16,"msg_type":259,"payload":"ESTALhDkBwMZAxgp/qLhEQ==","preamble":85,"sender":22963,"flags":17,"tow":271499300,"year":2020,"month":3,"day":25,"hours":3,"minutes":24,"seconds":41,"ns":299999998} +{"crc":40450,"length":34,"msg_type":522,"payload":"JMAuEF6/uudl6kJApXG6IVaSXsAJn2Y53kExwAECWwQPBg==","preamble":85,"sender":22963,"tow":271499300,"lat":37.831234899697606,"lon":-122.28650706489005,"height":-17.257297122529994,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":16931,"length":22,"msg_type":526,"payload":"JMAuEAYAAAD4////6v////AAyQIPAg==","preamble":85,"sender":22963,"tow":271499300,"n":6,"e":-8,"d":-22,"h_accuracy":240,"v_accuracy":713,"n_sats":15,"flags":2} +{"crc":26527,"length":15,"msg_type":520,"payload":"JMAuEJsAhwBNAEgAcgAG","preamble":85,"sender":22963,"tow":271499300,"gdop":155,"pdop":135,"tdop":77,"hdop":72,"vdop":114,"flags":6} +{"crc":15372,"length":22,"msg_type":524,"payload":"JMAuEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271499300,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":5474,"length":6,"msg_type":528,"payload":"JMAuEP//","preamble":85,"sender":22963,"tow":271499300,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":20665,"length":48,"msg_type":167,"payload":"lgBzdXJ2ZXllZF9wb3NpdGlvbgBzdXJ2ZXllZF9sYXQAMzcuODMxMjMxNTMwNgAA","preamble":85,"sender":22963,"index":150,"setting":"surveyed_position\u0000surveyed_lat\u000037.8312315306\u0000\u0000"} +{"crc":61819,"length":49,"msg_type":167,"payload":"lwBzdXJ2ZXllZF9wb3NpdGlvbgBzdXJ2ZXllZF9sb24ALTEyMi4yODY1MDM1MTEAAA==","preamble":85,"sender":22963,"index":151,"setting":"surveyed_position\u0000surveyed_lon\u0000-122.286503511\u0000\u0000"} +{"crc":28041,"length":237,"msg_type":97,"payload":"BQDWFQC0AgC/HwCmAAAAAAAAGQDbDADPHQDVEgDQAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwLOGQHMDAG7HwGVEgHCHQHCAAAABQHBAAAAAAAAAAAAAAAAZAPVYgOuZgOtZQPQXQPOAAAAagO3aAPLYgSrZgTMAAAAZATIZQTCaAS6AAAAagSwIwzHGgyoIgyhGAy8GQybDAy4Ewy4Fgy+AAAADA3QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADA7EAAAAGQ7ACw69GA7NAAAAHw6hIQ6aGRTIGBTXCxTCHxSsDBTOAAAAIRSqAAAA","preamble":85,"sender":22963,"states":[{"mesid":{"sat":5,"code":0},"cn0":214},{"mesid":{"sat":21,"code":0},"cn0":180},{"mesid":{"sat":2,"code":0},"cn0":191},{"mesid":{"sat":31,"code":0},"cn0":166},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":25,"code":0},"cn0":219},{"mesid":{"sat":12,"code":0},"cn0":207},{"mesid":{"sat":29,"code":0},"cn0":213},{"mesid":{"sat":18,"code":0},"cn0":208},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":131,"code":2},"cn0":206},{"mesid":{"sat":25,"code":1},"cn0":204},{"mesid":{"sat":12,"code":1},"cn0":187},{"mesid":{"sat":31,"code":1},"cn0":149},{"mesid":{"sat":18,"code":1},"cn0":194},{"mesid":{"sat":29,"code":1},"cn0":194},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":5,"code":1},"cn0":193},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":100,"code":3},"cn0":213},{"mesid":{"sat":98,"code":3},"cn0":174},{"mesid":{"sat":102,"code":3},"cn0":173},{"mesid":{"sat":101,"code":3},"cn0":208},{"mesid":{"sat":93,"code":3},"cn0":206},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":106,"code":3},"cn0":183},{"mesid":{"sat":104,"code":3},"cn0":203},{"mesid":{"sat":98,"code":4},"cn0":171},{"mesid":{"sat":102,"code":4},"cn0":204},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":100,"code":4},"cn0":200},{"mesid":{"sat":101,"code":4},"cn0":194},{"mesid":{"sat":104,"code":4},"cn0":186},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":106,"code":4},"cn0":176},{"mesid":{"sat":35,"code":12},"cn0":199},{"mesid":{"sat":26,"code":12},"cn0":168},{"mesid":{"sat":34,"code":12},"cn0":161},{"mesid":{"sat":24,"code":12},"cn0":188},{"mesid":{"sat":25,"code":12},"cn0":155},{"mesid":{"sat":12,"code":12},"cn0":184},{"mesid":{"sat":19,"code":12},"cn0":184},{"mesid":{"sat":22,"code":12},"cn0":190},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":12,"code":13},"cn0":208},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":12,"code":14},"cn0":196},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":25,"code":14},"cn0":192},{"mesid":{"sat":11,"code":14},"cn0":189},{"mesid":{"sat":24,"code":14},"cn0":205},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":31,"code":14},"cn0":161},{"mesid":{"sat":33,"code":14},"cn0":154},{"mesid":{"sat":25,"code":20},"cn0":200},{"mesid":{"sat":24,"code":20},"cn0":215},{"mesid":{"sat":11,"code":20},"cn0":194},{"mesid":{"sat":31,"code":20},"cn0":172},{"mesid":{"sat":12,"code":20},"cn0":206},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":33,"code":20},"cn0":170},{"mesid":{"sat":0,"code":0},"cn0":0}]} +{"crc":37488,"length":42,"msg_type":167,"payload":"mABzdXJ2ZXllZF9wb3NpdGlvbgBzdXJ2ZXllZF9hbHQALTE3LjMxNAAA","preamble":85,"sender":22963,"index":152,"setting":"surveyed_position\u0000surveyed_alt\u0000-17.314\u0000\u0000"} +{"crc":39888,"length":28,"msg_type":167,"payload":"mQBzYnAAb2JzX21zZ19tYXhfc2l6ZQAyNTUAAA==","preamble":85,"sender":22963,"index":153,"setting":"sbp\u0000obs_msg_max_size\u0000255\u0000\u0000"} +{"crc":64630,"length":42,"msg_type":167,"payload":"mgBzaW11bGF0b3IAZW5hYmxlZABGYWxzZQBlbnVtOkZhbHNlLFRydWUA","preamble":85,"sender":22963,"index":154,"setting":"simulator\u0000enabled\u0000False\u0000enum:False,True\u0000"} +{"crc":26800,"length":38,"msg_type":167,"payload":"mwBzaW11bGF0b3IAYmFzZV9lY2VmX3gALTI3MDYwOTguODQ1AAA=","preamble":85,"sender":22963,"index":155,"setting":"simulator\u0000base_ecef_x\u0000-2706098.845\u0000\u0000"} +{"crc":51473,"length":38,"msg_type":167,"payload":"nABzaW11bGF0b3IAYmFzZV9lY2VmX3kALTQyNjEyMTYuNDc1AAA=","preamble":85,"sender":22963,"index":156,"setting":"simulator\u0000base_ecef_y\u0000-4261216.475\u0000\u0000"} +{"crc":7630,"length":37,"msg_type":167,"payload":"nQBzaW11bGF0b3IAYmFzZV9lY2VmX3oAMzg4NTU5Ny45MTIAAA==","preamble":85,"sender":22963,"index":157,"setting":"simulator\u0000base_ecef_z\u00003885597.912\u0000\u0000"} +{"crc":38856,"length":21,"msg_type":167,"payload":"ngBzaW11bGF0b3IAc3BlZWQANAAA","preamble":85,"sender":22963,"index":158,"setting":"simulator\u0000speed\u00004\u0000\u0000"} +{"crc":4094,"length":24,"msg_type":167,"payload":"nwBzaW11bGF0b3IAcmFkaXVzADEwMAAA","preamble":85,"sender":22963,"index":159,"setting":"simulator\u0000radius\u0000100\u0000\u0000"} +{"crc":44386,"length":11,"msg_type":258,"payload":"MgiIwC4QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271499400,"ns_residual":0,"flags":1} +{"crc":23198,"length":16,"msg_type":259,"payload":"EYjALhDkBwMZAxgp/oPXFw==","preamble":85,"sender":22963,"flags":17,"tow":271499400,"year":2020,"month":3,"day":25,"hours":3,"minutes":24,"seconds":41,"ns":399999998} +{"crc":43261,"length":34,"msg_type":522,"payload":"iMAuEDs6dOdl6kJAULvEIVaSXsCRudhDRUIxwAECWwQPBg==","preamble":85,"sender":22963,"tow":271499400,"lat":37.83123486685914,"lon":-122.28650707447127,"height":-17.258869400416703,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":27725,"length":22,"msg_type":526,"payload":"iMAuEAQAAAALAAAACAAAAPAAyQIPAg==","preamble":85,"sender":22963,"tow":271499400,"n":4,"e":11,"d":8,"h_accuracy":240,"v_accuracy":713,"n_sats":15,"flags":2} +{"crc":4718,"length":15,"msg_type":520,"payload":"iMAuEJsAhwBNAEgAcgAG","preamble":85,"sender":22963,"tow":271499400,"gdop":155,"pdop":135,"tdop":77,"hdop":72,"vdop":114,"flags":6} +{"crc":5590,"length":22,"msg_type":524,"payload":"iMAuEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271499400,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":65449,"length":6,"msg_type":528,"payload":"iMAuEP//","preamble":85,"sender":22963,"tow":271499400,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":23391,"length":27,"msg_type":167,"payload":"oABzaW11bGF0b3IAcG9zX3NpZ21hADEuNQAA","preamble":85,"sender":22963,"index":160,"setting":"simulator\u0000pos_sigma\u00001.5\u0000\u0000"} +{"crc":16492,"length":39,"msg_type":167,"payload":"oQBzaW11bGF0b3IAc3BlZWRfc2lnbWEAMC4xNTAwMDAwMDU5NgAA","preamble":85,"sender":22963,"index":161,"setting":"simulator\u0000speed_sigma\u00000.15000000596\u0000\u0000"} +{"crc":22476,"length":38,"msg_type":167,"payload":"ogBzaW11bGF0b3IAY24wX3NpZ21hADAuMzAwMDAwMDExOTIxAAA=","preamble":85,"sender":22963,"index":162,"setting":"simulator\u0000cn0_sigma\u00000.300000011921\u0000\u0000"} +{"crc":37629,"length":33,"msg_type":167,"payload":"owBzaW11bGF0b3IAcHNldWRvcmFuZ2Vfc2lnbWEANAAA","preamble":85,"sender":22963,"index":163,"setting":"simulator\u0000pseudorange_sigma\u00004\u0000\u0000"} +{"crc":7807,"length":41,"msg_type":167,"payload":"pABzaW11bGF0b3IAcGhhc2Vfc2lnbWEAMC4wMjk5OTk5OTkzMjk0AAA=","preamble":85,"sender":22963,"index":164,"setting":"simulator\u0000phase_sigma\u00000.0299999993294\u0000\u0000"} +{"crc":54299,"length":24,"msg_type":167,"payload":"pQBzaW11bGF0b3IAbnVtX3NhdHMAOQAA","preamble":85,"sender":22963,"index":165,"setting":"simulator\u0000num_sats\u00009\u0000\u0000"} +{"crc":6546,"length":26,"msg_type":167,"payload":"pgBzaW11bGF0b3IAbW9kZV9tYXNrADE1AAA=","preamble":85,"sender":22963,"index":166,"setting":"simulator\u0000mode_mask\u000015\u0000\u0000"} +{"crc":41191,"length":69,"msg_type":167,"payload":"pwBwcHMAcHJvcGFnYXRpb25fbW9kZQBUaW1lIExpbWl0ZWQAZW51bTpOb25lLFRpbWUgTGltaXRlZCxVbmxpbWl0ZWQA","preamble":85,"sender":22963,"index":167,"setting":"pps\u0000propagation_mode\u0000Time Limited\u0000enum:None,Time Limited,Unlimited\u0000"} +{"crc":54297,"length":18,"msg_type":167,"payload":"qABwcHMAd2lkdGgAMjAwMAAA","preamble":85,"sender":22963,"index":168,"setting":"pps\u0000width\u00002000\u0000\u0000"} +{"crc":49868,"length":18,"msg_type":167,"payload":"qQBwcHMAcG9sYXJpdHkAMQAA","preamble":85,"sender":22963,"index":169,"setting":"pps\u0000polarity\u00001\u0000\u0000"} +{"crc":49809,"length":9,"msg_type":117,"payload":"/wAAAAAAAAAA","preamble":85,"sender":22963,"mask":255,"l1ca_bias":0,"l1p_bias":0,"l2ca_bias":0,"l2p_bias":0} +{"crc":51624,"length":11,"msg_type":258,"payload":"MgjswC4QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271499500,"ns_residual":0,"flags":1} +{"crc":7778,"length":16,"msg_type":259,"payload":"EezALhDkBwMZAxgp/mTNHQ==","preamble":85,"sender":22963,"flags":17,"tow":271499500,"year":2020,"month":3,"day":25,"hours":3,"minutes":24,"seconds":41,"ns":499999998} +{"crc":9613,"length":34,"msg_type":522,"payload":"7MAuEBIVMedl6kJAbfjhIVaSXsAJuId8IUMxwAECWwQPBg==","preamble":85,"sender":22963,"tow":271499500,"lat":37.83123483559224,"lon":-122.28650710170196,"height":-17.26222971261453,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":50933,"length":22,"msg_type":526,"payload":"7MAuEPr////9////9/////AAyQIPAg==","preamble":85,"sender":22963,"tow":271499500,"n":-6,"e":-3,"d":-9,"h_accuracy":240,"v_accuracy":713,"n_sats":15,"flags":2} +{"crc":16065,"length":15,"msg_type":520,"payload":"7MAuEJsAhwBNAEgAcgAG","preamble":85,"sender":22963,"tow":271499500,"gdop":155,"pdop":135,"tdop":77,"hdop":72,"vdop":114,"flags":6} +{"crc":3424,"length":22,"msg_type":524,"payload":"7MAuEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271499500,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":42512,"length":6,"msg_type":528,"payload":"7MAuEP//","preamble":85,"sender":22963,"tow":271499500,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":47180,"length":16,"msg_type":167,"payload":"qgBwcHMAb2Zmc2V0ADAAAA==","preamble":85,"sender":22963,"index":170,"setting":"pps\u0000offset\u00000\u0000\u0000"} +{"crc":7400,"length":19,"msg_type":167,"payload":"qwBwcHMAZnJlcXVlbmN5ADEAAA==","preamble":85,"sender":22963,"index":171,"setting":"pps\u0000frequency\u00001\u0000\u0000"} +{"crc":60848,"length":29,"msg_type":167,"payload":"rABwcHMAcHJvcGFnYXRpb25fdGltZW91dAA1AAA=","preamble":85,"sender":22963,"index":172,"setting":"pps\u0000propagation_timeout\u00005\u0000\u0000"} +{"crc":60589,"length":63,"msg_type":167,"payload":"rQBpbnMAb3V0cHV0X21vZGUARGlzYWJsZWQAZW51bTpEaXNhYmxlZCxMb29zZWx5IENvdXBsZWQsRGVidWcA","preamble":85,"sender":22963,"index":173,"setting":"ins\u0000output_mode\u0000Disabled\u0000enum:Disabled,Loosely Coupled,Debug\u0000"} +{"crc":62569,"length":0,"msg_type":166,"payload":"","preamble":85,"sender":22963} +{"crc":62569,"length":0,"msg_type":166,"payload":"","preamble":85,"sender":22963} +{"crc":62569,"length":0,"msg_type":166,"payload":"","preamble":85,"sender":22963} +{"crc":62569,"length":0,"msg_type":166,"payload":"","preamble":85,"sender":22963} +{"crc":62569,"length":0,"msg_type":166,"payload":"","preamble":85,"sender":22963} +{"crc":62569,"length":0,"msg_type":166,"payload":"","preamble":85,"sender":22963} +{"crc":28891,"length":11,"msg_type":258,"payload":"MghQwS4QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271499600,"ns_residual":0,"flags":1} +{"crc":6940,"length":16,"msg_type":259,"payload":"EVDBLhDkBwMZAxgp/kXDIw==","preamble":85,"sender":22963,"flags":17,"tow":271499600,"year":2020,"month":3,"day":25,"hours":3,"minutes":24,"seconds":41,"ns":599999998} +{"crc":3943,"length":34,"msg_type":522,"payload":"UMEuEBZz++Zl6kJAoYkOIlaSXsBka8w4TUQxwAECWwQPBg==","preamble":85,"sender":22963,"tow":271499600,"lat":37.831234810617545,"lon":-122.2865071432084,"height":-17.266803312213042,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":25479,"length":22,"msg_type":526,"payload":"UMEuEAIAAAD1////CAAAAPAAyQIPAg==","preamble":85,"sender":22963,"tow":271499600,"n":2,"e":-11,"d":8,"h_accuracy":240,"v_accuracy":713,"n_sats":15,"flags":2} +{"crc":32475,"length":15,"msg_type":520,"payload":"UMEuEJsAhwBNAEgAcgAG","preamble":85,"sender":22963,"tow":271499600,"gdop":155,"pdop":135,"tdop":77,"hdop":72,"vdop":114,"flags":6} +{"crc":19466,"length":22,"msg_type":524,"payload":"UMEuEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271499600,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":64526,"length":6,"msg_type":528,"payload":"UMEuEP//","preamble":85,"sender":22963,"tow":271499600,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":35483,"length":34,"msg_type":30583,"payload":"gwLRwC4QGYyUAIBP9QAgAB/gAwJqkP/Pz/4////4D/jAkA==","preamble":85,"sender":22963,"sid":{"sat":131,"code":2},"tow":271499473,"message_type":25,"data":[140,148,0,128,79,245,0,32,0,31,224,3,2,106,144,255,207,207,254,63,255,255,248,15,248,192,144]} +{"crc":43939,"length":11,"msg_type":258,"payload":"Mgi0wS4QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271499700,"ns_residual":0,"flags":1} +{"crc":59202,"length":16,"msg_type":259,"payload":"EbTBLhDkBwMZAxgp/ia5KQ==","preamble":85,"sender":22963,"flags":17,"tow":271499700,"year":2020,"month":3,"day":25,"hours":3,"minutes":24,"seconds":41,"ns":699999998} +{"crc":35354,"length":34,"msg_type":522,"payload":"tMEuEBLlr+Zl6kJAfDMmIlaSXsCPUNMx30UxwAECWwQPBg==","preamble":85,"sender":22963,"tow":271499700,"lat":37.83123477543462,"lon":-122.28650716524675,"height":-17.272936929789065,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":14739,"length":22,"msg_type":526,"payload":"tMEuEP////8DAAAA//////AAyQIPAg==","preamble":85,"sender":22963,"tow":271499700,"n":-1,"e":3,"d":-1,"h_accuracy":240,"v_accuracy":713,"n_sats":15,"flags":2} +{"crc":1638,"length":15,"msg_type":520,"payload":"tMEuEJsAhwBNAEgAcgAG","preamble":85,"sender":22963,"tow":271499700,"gdop":155,"pdop":135,"tdop":77,"hdop":72,"vdop":114,"flags":6} +{"crc":60969,"length":22,"msg_type":524,"payload":"tMEuEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271499700,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":29079,"length":6,"msg_type":528,"payload":"tMEuEP//","preamble":85,"sender":22963,"tow":271499700,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":41336,"length":136,"msg_type":151,"payload":"AgAaHgUALDUMAFEtFQB9GRkAbUYaAKEBHQChNx8AlQ4EAxYWBQMyIQYDTggJA18OCgNxKQsDmCUMA6oDEwMiBxQDCzEVA5UlDAyUKRMMIyAUDA8CFgxDIxgMgiMZDJ0OGgxnFR0MLAAiDI4RIwwiLQsOizIMDg88GA5sNhkOlykfDlURIQ4fDw==","preamble":85,"sender":22963,"azel":[{"sid":{"sat":2,"code":0},"az":26,"el":30},{"sid":{"sat":5,"code":0},"az":44,"el":53},{"sid":{"sat":12,"code":0},"az":81,"el":45},{"sid":{"sat":21,"code":0},"az":125,"el":25},{"sid":{"sat":25,"code":0},"az":109,"el":70},{"sid":{"sat":26,"code":0},"az":161,"el":1},{"sid":{"sat":29,"code":0},"az":161,"el":55},{"sid":{"sat":31,"code":0},"az":149,"el":14},{"sid":{"sat":4,"code":3},"az":22,"el":22},{"sid":{"sat":5,"code":3},"az":50,"el":33},{"sid":{"sat":6,"code":3},"az":78,"el":8},{"sid":{"sat":9,"code":3},"az":95,"el":14},{"sid":{"sat":10,"code":3},"az":113,"el":41},{"sid":{"sat":11,"code":3},"az":152,"el":37},{"sid":{"sat":12,"code":3},"az":170,"el":3},{"sid":{"sat":19,"code":3},"az":34,"el":7},{"sid":{"sat":20,"code":3},"az":11,"el":49},{"sid":{"sat":21,"code":3},"az":149,"el":37},{"sid":{"sat":12,"code":12},"az":148,"el":41},{"sid":{"sat":19,"code":12},"az":35,"el":32},{"sid":{"sat":20,"code":12},"az":15,"el":2},{"sid":{"sat":22,"code":12},"az":67,"el":35},{"sid":{"sat":24,"code":12},"az":130,"el":35},{"sid":{"sat":25,"code":12},"az":157,"el":14},{"sid":{"sat":26,"code":12},"az":103,"el":21},{"sid":{"sat":29,"code":12},"az":44,"el":0},{"sid":{"sat":34,"code":12},"az":142,"el":17},{"sid":{"sat":35,"code":12},"az":34,"el":45},{"sid":{"sat":11,"code":14},"az":139,"el":50},{"sid":{"sat":12,"code":14},"az":15,"el":60},{"sid":{"sat":24,"code":14},"az":108,"el":54},{"sid":{"sat":25,"code":14},"az":151,"el":41},{"sid":{"sat":31,"code":14},"az":85,"el":17},{"sid":{"sat":33,"code":14},"az":31,"el":15}]} +{"crc":52872,"length":11,"msg_type":258,"payload":"MggYwi4QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271499800,"ns_residual":0,"flags":1} +{"crc":26613,"length":16,"msg_type":259,"payload":"ERjCLhDkBwMZAxgp/gevLw==","preamble":85,"sender":22963,"flags":17,"tow":271499800,"year":2020,"month":3,"day":25,"hours":3,"minutes":24,"seconds":41,"ns":799999998} +{"crc":58663,"length":34,"msg_type":522,"payload":"GMIuENBLU+Zl6kJAfEdAIlaSXsAe+0XdG0gxwAECWwQPBg==","preamble":85,"sender":22963,"tow":271499800,"lat":37.83123473231501,"lon":-122.28650718953389,"height":-17.281675176224887,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":29724,"length":22,"msg_type":526,"payload":"GMIuEPX///8AAAAAFQAAAPAAyQIPAg==","preamble":85,"sender":22963,"tow":271499800,"n":-11,"e":0,"d":21,"h_accuracy":240,"v_accuracy":713,"n_sats":15,"flags":2} +{"crc":65076,"length":15,"msg_type":520,"payload":"GMIuEJsAhwBNAEgAcgAG","preamble":85,"sender":22963,"tow":271499800,"gdop":155,"pdop":135,"tdop":77,"hdop":72,"vdop":114,"flags":6} +{"crc":43464,"length":22,"msg_type":524,"payload":"GMIuEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271499800,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":30094,"length":6,"msg_type":528,"payload":"GMIuEP//","preamble":85,"sender":22963,"tow":271499800,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":56113,"length":237,"msg_type":97,"payload":"BQDVFQC0AgC/HwCmAAAAAAAAGQDaDADPHQDVEgDPAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwLNGQHMDAG7HwGWEgHCHQHCAAAABQHCAAAAAAAAAAAAAAAACwPVCQOuFAOtBQPQCgPOAAAABAO3FQPMCQSrFATMCgRMCwTIBQTBAAS5AAAABASwIwzHGgyoIgyhGAy9GQycDAy4Ewy4Fgy/AAAADA3QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADA7EAAAAGQ7ACw69GA7NAAAAHw6hIQ6bGRTIGBTXCxTCHxSsDBTOAAAAIRSqAAAA","preamble":85,"sender":22963,"states":[{"mesid":{"sat":5,"code":0},"cn0":213},{"mesid":{"sat":21,"code":0},"cn0":180},{"mesid":{"sat":2,"code":0},"cn0":191},{"mesid":{"sat":31,"code":0},"cn0":166},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":25,"code":0},"cn0":218},{"mesid":{"sat":12,"code":0},"cn0":207},{"mesid":{"sat":29,"code":0},"cn0":213},{"mesid":{"sat":18,"code":0},"cn0":207},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":131,"code":2},"cn0":205},{"mesid":{"sat":25,"code":1},"cn0":204},{"mesid":{"sat":12,"code":1},"cn0":187},{"mesid":{"sat":31,"code":1},"cn0":150},{"mesid":{"sat":18,"code":1},"cn0":194},{"mesid":{"sat":29,"code":1},"cn0":194},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":5,"code":1},"cn0":194},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":11,"code":3},"cn0":213},{"mesid":{"sat":9,"code":3},"cn0":174},{"mesid":{"sat":20,"code":3},"cn0":173},{"mesid":{"sat":5,"code":3},"cn0":208},{"mesid":{"sat":10,"code":3},"cn0":206},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":4,"code":3},"cn0":183},{"mesid":{"sat":21,"code":3},"cn0":204},{"mesid":{"sat":9,"code":4},"cn0":171},{"mesid":{"sat":20,"code":4},"cn0":204},{"mesid":{"sat":10,"code":4},"cn0":76},{"mesid":{"sat":11,"code":4},"cn0":200},{"mesid":{"sat":5,"code":4},"cn0":193},{"mesid":{"sat":0,"code":4},"cn0":185},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":4,"code":4},"cn0":176},{"mesid":{"sat":35,"code":12},"cn0":199},{"mesid":{"sat":26,"code":12},"cn0":168},{"mesid":{"sat":34,"code":12},"cn0":161},{"mesid":{"sat":24,"code":12},"cn0":189},{"mesid":{"sat":25,"code":12},"cn0":156},{"mesid":{"sat":12,"code":12},"cn0":184},{"mesid":{"sat":19,"code":12},"cn0":184},{"mesid":{"sat":22,"code":12},"cn0":191},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":12,"code":13},"cn0":208},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":12,"code":14},"cn0":196},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":25,"code":14},"cn0":192},{"mesid":{"sat":11,"code":14},"cn0":189},{"mesid":{"sat":24,"code":14},"cn0":205},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":31,"code":14},"cn0":161},{"mesid":{"sat":33,"code":14},"cn0":155},{"mesid":{"sat":25,"code":20},"cn0":200},{"mesid":{"sat":24,"code":20},"cn0":215},{"mesid":{"sat":11,"code":20},"cn0":194},{"mesid":{"sat":31,"code":20},"cn0":172},{"mesid":{"sat":12,"code":20},"cn0":206},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":33,"code":20},"cn0":170},{"mesid":{"sat":0,"code":0},"cn0":0}]} +{"crc":43586,"length":11,"msg_type":258,"payload":"Mgh8wi4QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271499900,"ns_residual":0,"flags":1} +{"crc":43227,"length":16,"msg_type":259,"payload":"EXzCLhDkBwMZAxgp/uikNQ==","preamble":85,"sender":22963,"flags":17,"tow":271499900,"year":2020,"month":3,"day":25,"hours":3,"minutes":24,"seconds":41,"ns":899999998} +{"crc":55050,"length":34,"msg_type":522,"payload":"fMIuEJDRFuZl6kJAXBhIIlaSXsBFtb8nakkxwAECWwQPBg==","preamble":85,"sender":22963,"tow":271499900,"lat":37.83123470415296,"lon":-122.28650719681303,"height":-17.286776050857288,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":12504,"length":22,"msg_type":526,"payload":"fMIuEAcAAAAJAAAA9f////AAyQIPAg==","preamble":85,"sender":22963,"tow":271499900,"n":7,"e":9,"d":-11,"h_accuracy":240,"v_accuracy":713,"n_sats":15,"flags":2} +{"crc":53915,"length":15,"msg_type":520,"payload":"fMIuEJsAhwBNAEgAcgAG","preamble":85,"sender":22963,"tow":271499900,"gdop":155,"pdop":135,"tdop":77,"hdop":72,"vdop":114,"flags":6} +{"crc":45438,"length":22,"msg_type":524,"payload":"fMIuEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271499900,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":11319,"length":6,"msg_type":528,"payload":"fMIuEP//","preamble":85,"sender":22963,"tow":271499900,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":52229,"length":249,"msg_type":74,"payload":"4MIuEAAAAAAyCEBsm7M+FgmXBuZU/y/VDw8FAPiQG0VqZUMHnYEIyLQPDxUAsCvtRSNtWQdpUfZJvw8PAgAxtwFJak2sBzV+/humDw8fAJueIz0V/2wGhKP7e9sPDxkAH7GuQJhUzAYPbvTnzg8PDACWydM+6GqaBkzPBQ3VDw8dAMCeIz3S0AEFIZn8+MwPDxkB2LCuQCUaTAUZ+/anuw8PDAH+tgFJEqD6Ba3R/j+VDw8fAUzJ0z5jNSUFtIYEosIPDx0BM5uzPtWSIgVVef/Cwg8PBQEw3f4+u4q7BhGbBCDVDw8LA7tIzEQG+VgHKcruJ64PDwkD","preamble":85,"sender":22963,"header":{"t":{"tow":271500000,"ns_residual":0,"wn":2098},"n_obs":64},"obs":[{"P":1051958124,"L":{"i":110561558,"f":230},"D":{"i":-172,"f":47},"cn0":213,"lock":15,"flags":15,"sid":{"sat":5,"code":0}},{"P":1159434488,"L":{"i":121857386,"f":157},"D":{"i":2177,"f":200},"cn0":180,"lock":15,"flags":15,"sid":{"sat":21,"code":0}},{"P":1173171120,"L":{"i":123301155,"f":105},"D":{"i":-2479,"f":73},"cn0":191,"lock":15,"flags":15,"sid":{"sat":2,"code":0}},{"P":1224849201,"L":{"i":128732522,"f":53},"D":{"i":-386,"f":27},"cn0":166,"lock":15,"flags":15,"sid":{"sat":31,"code":0}},{"P":1025744539,"L":{"i":107806485,"f":132},"D":{"i":-1117,"f":123},"cn0":219,"lock":15,"flags":15,"sid":{"sat":25,"code":0}},{"P":1085190431,"L":{"i":114054296,"f":15},"D":{"i":-2962,"f":231},"cn0":206,"lock":15,"flags":15,"sid":{"sat":12,"code":0}},{"P":1054067094,"L":{"i":110783208,"f":76},"D":{"i":1487,"f":13},"cn0":213,"lock":15,"flags":15,"sid":{"sat":29,"code":0}},{"P":1025744576,"L":{"i":84005074,"f":33},"D":{"i":-871,"f":248},"cn0":204,"lock":15,"flags":15,"sid":{"sat":25,"code":1}},{"P":1085190360,"L":{"i":88873509,"f":25},"D":{"i":-2309,"f":167},"cn0":187,"lock":15,"flags":15,"sid":{"sat":12,"code":1}},{"P":1224849150,"L":{"i":100311058,"f":173},"D":{"i":-303,"f":63},"cn0":149,"lock":15,"flags":15,"sid":{"sat":31,"code":1}},{"P":1054067020,"L":{"i":86324579,"f":180},"D":{"i":1158,"f":162},"cn0":194,"lock":15,"flags":15,"sid":{"sat":29,"code":1}},{"P":1051958067,"L":{"i":86151893,"f":85},"D":{"i":-135,"f":194},"cn0":194,"lock":15,"flags":15,"sid":{"sat":5,"code":1}},{"P":1056890160,"L":{"i":112954043,"f":17},"D":{"i":1179,"f":32},"cn0":213,"lock":15,"flags":15,"sid":{"sat":11,"code":3}},{"P":1154238651,"L":{"i":123271430,"f":41},"D":{"i":-4406,"f":39},"cn0":174,"lock":15,"flags":15,"sid":{"sat":9,"code":3}}]} +{"crc":44285,"length":249,"msg_type":74,"payload":"4MIuEAAAAAAyCEFo5io9PLSKBg1I+5+tDw8UAxa/DUCGG9kGqKAIAdAPDwUDHiBfPp5GpgbzJfSszg8PCgM7pgRDRXYtB23n+uG3Dw8EA7n0LT+1AMMGX1kG98wPDxUDPEnMRJz6tgWrnfLnqw8PCQS35yo9UowWBW9W/CnMDw8UBEbe/j5iiDwF7pQD5sgPDwsEvr8NQDOHUwWhtgZMwg8PBQTppgRDDyOVBcUL/PawDw8EBAQXkkUz1j4Hwyf6GMcPDyMMtiLtSX/2sgemQPTxqA8PGgxpNxtMsBXtB/zJCFOhDw8iDE7FnUcFYHUHK/L6tr0PDxgM","preamble":85,"sender":22963,"header":{"t":{"tow":271500000,"ns_residual":0,"wn":2098},"n_obs":65},"obs":[{"P":1026221672,"L":{"i":109753404,"f":13},"D":{"i":-1208,"f":159},"cn0":173,"lock":15,"flags":15,"sid":{"sat":20,"code":3}},{"P":1074642710,"L":{"i":114891654,"f":168},"D":{"i":2208,"f":1},"cn0":208,"lock":15,"flags":15,"sid":{"sat":5,"code":3}},{"P":1046421534,"L":{"i":111560350,"f":243},"D":{"i":-3035,"f":172},"cn0":206,"lock":15,"flags":15,"sid":{"sat":10,"code":3}},{"P":1124378171,"L":{"i":120419909,"f":109},"D":{"i":-1305,"f":225},"cn0":183,"lock":15,"flags":15,"sid":{"sat":4,"code":3}},{"P":1059976377,"L":{"i":113442997,"f":95},"D":{"i":1625,"f":247},"cn0":204,"lock":15,"flags":15,"sid":{"sat":21,"code":3}},{"P":1154238780,"L":{"i":95877788,"f":171},"D":{"i":-3427,"f":231},"cn0":171,"lock":15,"flags":15,"sid":{"sat":9,"code":4}},{"P":1026222007,"L":{"i":85363794,"f":111},"D":{"i":-938,"f":41},"cn0":204,"lock":15,"flags":15,"sid":{"sat":20,"code":4}},{"P":1056890438,"L":{"i":87853154,"f":238},"D":{"i":916,"f":230},"cn0":200,"lock":15,"flags":15,"sid":{"sat":11,"code":4}},{"P":1074642878,"L":{"i":89360179,"f":161},"D":{"i":1718,"f":76},"cn0":194,"lock":15,"flags":15,"sid":{"sat":5,"code":4}},{"P":1124378345,"L":{"i":93659919,"f":197},"D":{"i":-1013,"f":246},"cn0":176,"lock":15,"flags":15,"sid":{"sat":4,"code":4}},{"P":1167202052,"L":{"i":121558579,"f":195},"D":{"i":-1497,"f":24},"cn0":199,"lock":15,"flags":15,"sid":{"sat":35,"code":12}},{"P":1240277686,"L":{"i":129169023,"f":166},"D":{"i":-3008,"f":241},"cn0":168,"lock":15,"flags":15,"sid":{"sat":26,"code":12}},{"P":1276852073,"L":{"i":132978096,"f":252},"D":{"i":2249,"f":83},"cn0":161,"lock":15,"flags":15,"sid":{"sat":34,"code":12}},{"P":1201521998,"L":{"i":125132805,"f":43},"D":{"i":-1294,"f":182},"cn0":189,"lock":15,"flags":15,"sid":{"sat":24,"code":12}}]} +{"crc":45866,"length":249,"msg_type":74,"payload":"4MIuEAAAAAAyCEITNBZNNzkHCIE0BcucDw8ZDExFUkWYMDgHT00GaLgPDwwMyKZCR7Hiawey6P4QuA8PEwxS/2NHuVtvB/hYCaO/Dw8WDANFUkVCI5UF0uAES9APDwwNgOwEQpJM8AYK/ft4xA8PDA4uSCNLU6TlB49HBHDADw8ZDjhTI0f2BXoHLRoEpb0PDwsOPw8kQzl6DgftNfljzQ8PGA7WQkFRLjqKCOKc82ShDw8fDoT/8VFwzZwIE6b3pZsPDyEODUgjS94MDQYERwPSyA8PGRRVESRDWy9oBVLL+rjXDw8YFIpSI0fElroFXiUDesIPDwsU","preamble":85,"sender":22963,"header":{"t":{"tow":271500000,"ns_residual":0,"wn":2098},"n_obs":66},"obs":[{"P":1293300755,"L":{"i":134691127,"f":129},"D":{"i":1332,"f":203},"cn0":156,"lock":15,"flags":15,"sid":{"sat":25,"code":12}},{"P":1163019596,"L":{"i":121122968,"f":79},"D":{"i":1613,"f":104},"cn0":184,"lock":15,"flags":15,"sid":{"sat":12,"code":12}},{"P":1195550408,"L":{"i":124510897,"f":178},"D":{"i":-280,"f":16},"cn0":184,"lock":15,"flags":15,"sid":{"sat":19,"code":12}},{"P":1197735762,"L":{"i":124738489,"f":248},"D":{"i":2392,"f":163},"cn0":191,"lock":15,"flags":15,"sid":{"sat":22,"code":12}},{"P":1163019523,"L":{"i":93659970,"f":210},"D":{"i":1248,"f":75},"cn0":208,"lock":15,"flags":15,"sid":{"sat":12,"code":13}},{"P":1107618944,"L":{"i":116411538,"f":10},"D":{"i":-1027,"f":120},"cn0":196,"lock":15,"flags":15,"sid":{"sat":12,"code":14}},{"P":1260603438,"L":{"i":132490323,"f":143},"D":{"i":1095,"f":112},"cn0":192,"lock":15,"flags":15,"sid":{"sat":25,"code":14}},{"P":1193497400,"L":{"i":125437430,"f":45},"D":{"i":1050,"f":165},"cn0":189,"lock":15,"flags":15,"sid":{"sat":11,"code":14}},{"P":1126436671,"L":{"i":118389305,"f":237},"D":{"i":-1739,"f":99},"cn0":205,"lock":15,"flags":15,"sid":{"sat":24,"code":14}},{"P":1363231446,"L":{"i":143276590,"f":226},"D":{"i":-3172,"f":100},"cn0":161,"lock":15,"flags":15,"sid":{"sat":31,"code":14}},{"P":1374814084,"L":{"i":144493936,"f":19},"D":{"i":-2138,"f":165},"cn0":155,"lock":15,"flags":15,"sid":{"sat":33,"code":14}},{"P":1260603405,"L":{"i":101518558,"f":4},"D":{"i":839,"f":210},"cn0":200,"lock":15,"flags":15,"sid":{"sat":25,"code":20}},{"P":1126437205,"L":{"i":90713947,"f":82},"D":{"i":-1333,"f":184},"cn0":215,"lock":15,"flags":15,"sid":{"sat":24,"code":20}},{"P":1193497226,"L":{"i":96114372,"f":94},"D":{"i":805,"f":122},"cn0":194,"lock":15,"flags":15,"sid":{"sat":11,"code":20}}]} +{"crc":47449,"length":62,"msg_type":74,"payload":"4MIuEAAAAAAyCEP3QkFRaymLBliB9gesDw8fFNrrBEKRD1EF0+387c4PDwwUX//xUStlmQZXl/kIqQ8PIRQ=","preamble":85,"sender":22963,"header":{"t":{"tow":271500000,"ns_residual":0,"wn":2098},"n_obs":67},"obs":[{"P":1363231479,"L":{"i":109783403,"f":88},"D":{"i":-2431,"f":7},"cn0":172,"lock":15,"flags":15,"sid":{"sat":31,"code":20}},{"P":1107618778,"L":{"i":89198481,"f":211},"D":{"i":-787,"f":237},"cn0":206,"lock":15,"flags":15,"sid":{"sat":12,"code":20}},{"P":1374814047,"L":{"i":110716203,"f":87},"D":{"i":-1641,"f":8},"cn0":169,"lock":15,"flags":15,"sid":{"sat":33,"code":20}}]} +{"crc":49809,"length":9,"msg_type":117,"payload":"/wAAAAAAAAAA","preamble":85,"sender":22963,"mask":255,"l1ca_bias":0,"l1p_bias":0,"l2ca_bias":0,"l2p_bias":0} +{"crc":62238,"length":11,"msg_type":258,"payload":"Mgjgwi4QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271500000,"ns_residual":0,"flags":1} +{"crc":30742,"length":16,"msg_type":259,"payload":"EeDCLhDkBwMZAxgp/smaOw==","preamble":85,"sender":22963,"flags":17,"tow":271500000,"year":2020,"month":3,"day":25,"hours":3,"minutes":24,"seconds":41,"ns":999999998} +{"crc":54548,"length":34,"msg_type":522,"payload":"4MIuEJRx1+Vl6kJASh1lIlaSXsBpXnJy40sxwAECWwQPBg==","preamble":85,"sender":22963,"tow":271500000,"lat":37.831234674641706,"lon":-122.28650722383932,"height":-17.29643931667525,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":13121,"length":22,"msg_type":526,"payload":"4MIuEP3///8BAAAA+/////AAyQIPAg==","preamble":85,"sender":22963,"tow":271500000,"n":-3,"e":1,"d":-5,"h_accuracy":240,"v_accuracy":713,"n_sats":15,"flags":2} +{"crc":29940,"length":15,"msg_type":520,"payload":"4MIuEJsAhwBNAEgAcgAG","preamble":85,"sender":22963,"tow":271500000,"gdop":155,"pdop":135,"tdop":77,"hdop":72,"vdop":114,"flags":6} +{"crc":20303,"length":22,"msg_type":524,"payload":"4MIuEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271500000,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":59760,"length":6,"msg_type":528,"payload":"4MIuEP//","preamble":85,"sender":22963,"tow":271500000,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":40942,"length":4,"msg_type":65535,"payload":"AAUCgA==","preamble":85,"sender":22963,"flags":2147616000} +{"crc":2168,"length":24,"msg_type":72,"payload":"UO0a3iqORMHK1UJhIkRQwc9nFIPvrk1B","preamble":85,"sender":22963,"x":-2694229.735196747,"y":-4264073.519704292,"z":3890655.0240602265} +{"crc":47991,"length":26,"msg_type":23,"payload":"bWFpbgAAAAAAAAAAAAAAAAAAAAAAAAx1AAA=","preamble":85,"sender":22963,"name":"main\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":0,"stack_free":29964} +{"crc":20597,"length":26,"msg_type":23,"payload":"aWRsZQAAAAAAAAAAAAAAAAAAAABTAXwAAAA=","preamble":85,"sender":22963,"name":"idle\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":339,"stack_free":124} +{"crc":20906,"length":26,"msg_type":23,"payload":"cnBtc2cAAAAAAAAAAAAAAAAAAAABAPQNAAA=","preamble":85,"sender":22963,"name":"rpmsg\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":1,"stack_free":3572} +{"crc":51784,"length":26,"msg_type":23,"payload":"U0JQAAAAAAAAAAAAAAAAAAAAAAAAAPz/AAA=","preamble":85,"sender":22963,"name":"SBP\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":0,"stack_free":65532} +{"crc":33651,"length":26,"msg_type":23,"payload":"TkFQAAAAAAAAAAAAAAAAAAAAAAAAAASAAAA=","preamble":85,"sender":22963,"name":"NAP\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":0,"stack_free":32772} +{"crc":29877,"length":26,"msg_type":23,"payload":"bWFuYWdlIFBWAAAAAAAAAAAAAAAAACQEAAA=","preamble":85,"sender":22963,"name":"manage PV\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":0,"stack_free":1060} +{"crc":14252,"length":26,"msg_type":23,"payload":"SU1VAAAAAAAAAAAAAAAAAAAAAAAAAPQHAAA=","preamble":85,"sender":22963,"name":"IMU\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":0,"stack_free":2036} +{"crc":18976,"length":26,"msg_type":23,"payload":"SU1VIGF1eAAAAAAAAAAAAAAAAAAAAEwIAAA=","preamble":85,"sender":22963,"name":"IMU aux\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":0,"stack_free":2124} +{"crc":26120,"length":26,"msg_type":23,"payload":"bmRiAAAAAAAAAAAAAAAAAAAAAAAAAFAMAAA=","preamble":85,"sender":22963,"name":"ndb\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":0,"stack_free":3152} +{"crc":25923,"length":26,"msg_type":23,"payload":"TkFQIFRyYWNraW5nAAAAAAAAAAAtAdR3AAA=","preamble":85,"sender":22963,"name":"NAP Tracking\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":301,"stack_free":30676} +{"crc":22929,"length":26,"msg_type":23,"payload":"ZGVjb2RlAAAAAAAAAAAAAAAAAAAHANQGAAA=","preamble":85,"sender":22963,"name":"decode\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":7,"stack_free":1748} +{"crc":21459,"length":26,"msg_type":23,"payload":"bWFuYWdlIGFjcQAAAAAAAAAAAAC1AKR3AAA=","preamble":85,"sender":22963,"name":"manage acq\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":181,"stack_free":30628} +{"crc":58531,"length":26,"msg_type":23,"payload":"c3lzdGVtIG1vbml0b3IAAAAAAAAAACwGAAA=","preamble":85,"sender":22963,"name":"system monitor\u0000\u0000\u0000\u0000\u0000\u0000","cpu":0,"stack_free":1580} +{"crc":44438,"length":26,"msg_type":23,"payload":"V2F0Y2hkb2cAAAAAAAAAAAAAAAAAAOQDAAA=","preamble":85,"sender":22963,"name":"Watchdog\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":0,"stack_free":996} +{"crc":30365,"length":26,"msg_type":23,"payload":"c3RhcmxpbmcAAAAAAAAAAAAAAACcAPz/AAA=","preamble":85,"sender":22963,"name":"starling\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":156,"stack_free":65532} +{"crc":57561,"length":26,"msg_type":23,"payload":"bWVfY2FsY19wdnQAAAAAAAAAAAAJAIwjAAA=","preamble":85,"sender":22963,"name":"me_calc_pvt\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":9,"stack_free":9100} +{"crc":38576,"length":26,"msg_type":23,"payload":"UFBTAAAAAAAAAAAAAAAAAAAAAAAAAEgHAAA=","preamble":85,"sender":22963,"name":"PPS\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":0,"stack_free":1864} +{"crc":50933,"length":26,"msg_type":23,"payload":"c3BlY3RydW0gYW5hbHl6ZXIAAAAAANQPAAA=","preamble":85,"sender":22963,"name":"spectrum analyzer\u0000\u0000\u0000","cpu":0,"stack_free":4052} +{"crc":55979,"length":10,"msg_type":181,"payload":"4xbdA/QGXRUJFg==","preamble":85,"sender":22963,"dev_vin":5859,"cpu_vint":989,"cpu_vaux":1780,"cpu_temperature":5469,"fe_temperature":5641} +{"crc":12396,"length":11,"msg_type":258,"payload":"MghEwy4QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271500100,"ns_residual":0,"flags":1} +{"crc":27599,"length":16,"msg_type":259,"payload":"EUTDLhDkBwMZAxgq/uD1BQ==","preamble":85,"sender":22963,"flags":17,"tow":271500100,"year":2020,"month":3,"day":25,"hours":3,"minutes":24,"seconds":42,"ns":99999998} +{"crc":31891,"length":34,"msg_type":522,"payload":"RMMuEAHTmuVl6kJAsSSBIlaSXsDQ2GQWp00xwAECWwQPBg==","preamble":85,"sender":22963,"tow":271500100,"lat":37.831234646413584,"lon":-122.28650724994328,"height":-17.303330802555877,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":58566,"length":22,"msg_type":526,"payload":"RMMuEPv///8AAAAABgAAAPAAyQIPAg==","preamble":85,"sender":22963,"tow":271500100,"n":-5,"e":0,"d":6,"h_accuracy":240,"v_accuracy":713,"n_sats":15,"flags":2} +{"crc":23841,"length":15,"msg_type":520,"payload":"RMMuEJsAhwBNAEgAcgAG","preamble":85,"sender":22963,"tow":271500100,"gdop":155,"pdop":135,"tdop":77,"hdop":72,"vdop":114,"flags":6} +{"crc":60864,"length":22,"msg_type":524,"payload":"RMMuEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271500100,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":42152,"length":6,"msg_type":528,"payload":"RMMuEP//","preamble":85,"sender":22963,"tow":271500100,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":49899,"length":11,"msg_type":258,"payload":"Mgiowy4QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271500200,"ns_residual":0,"flags":1} +{"crc":17523,"length":16,"msg_type":259,"payload":"EajDLhDkBwMZAxgq/sHrCw==","preamble":85,"sender":22963,"flags":17,"tow":271500200,"year":2020,"month":3,"day":25,"hours":3,"minutes":24,"seconds":42,"ns":199999998} +{"crc":43214,"length":34,"msg_type":522,"payload":"qMMuEGxYbeVl6kJA4eqTIlaSXsDCFTrUv04xwAECWwQPBg==","preamble":85,"sender":22963,"tow":271500200,"lat":37.83123462523585,"lon":-122.28650726742809,"height":-17.307614578419596,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":62719,"length":22,"msg_type":526,"payload":"qMMuEAkAAAADAAAA+P////AAyQIPAg==","preamble":85,"sender":22963,"tow":271500200,"n":9,"e":3,"d":-8,"h_accuracy":240,"v_accuracy":713,"n_sats":15,"flags":2} +{"crc":729,"length":15,"msg_type":520,"payload":"qMMuEJsAhwBNAEgAcgAG","preamble":85,"sender":22963,"tow":271500200,"gdop":155,"pdop":135,"tdop":77,"hdop":72,"vdop":114,"flags":6} +{"crc":4416,"length":22,"msg_type":524,"payload":"qMMuEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271500200,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":9331,"length":6,"msg_type":528,"payload":"qMMuEP//","preamble":85,"sender":22963,"tow":271500200,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":33106,"length":11,"msg_type":258,"payload":"MggMxC4QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271500300,"ns_residual":0,"flags":1} +{"crc":63562,"length":16,"msg_type":259,"payload":"EQzELhDkBwMZAxgq/qLhEQ==","preamble":85,"sender":22963,"flags":17,"tow":271500300,"year":2020,"month":3,"day":25,"hours":3,"minutes":24,"seconds":42,"ns":299999998} +{"crc":21170,"length":34,"msg_type":522,"payload":"DMQuEHjtLuVl6kJAzEWvIlaSXsC32OJERlExwAECWwQPBg==","preamble":85,"sender":22963,"tow":271500300,"lat":37.831234596170304,"lon":-122.28650729290456,"height":-17.317478471167046,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":33198,"length":22,"msg_type":526,"payload":"DMQuEP7///8AAAAAJAAAAPAAyQIPAg==","preamble":85,"sender":22963,"tow":271500300,"n":-2,"e":0,"d":36,"h_accuracy":240,"v_accuracy":713,"n_sats":15,"flags":2} +{"crc":8299,"length":15,"msg_type":520,"payload":"DMQuEJsAhwBNAEgAcgAG","preamble":85,"sender":22963,"tow":271500300,"gdop":155,"pdop":135,"tdop":77,"hdop":72,"vdop":114,"flags":6} +{"crc":28601,"length":22,"msg_type":524,"payload":"DMQuEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271500300,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":42030,"length":6,"msg_type":528,"payload":"DMQuEP//","preamble":85,"sender":22963,"tow":271500300,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":48467,"length":51,"msg_type":1025,"payload":"BkdMTyBMMk9GIE1FIDEgWysxMzQ4bXNdIGxvdyBDTjAgdG9vIGxvbmcsIGRyb3BwaW5n","preamble":85,"sender":22963,"level":6,"text":"GLO L2OF ME 1 [+1348ms] low CN0 too long, dropping"} +{"crc":54924,"length":237,"msg_type":97,"payload":"BQDVFQCzAgC/HwCmAAAAAAAAGQDbDADPHQDVEgDQAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwLOGQHMDAG7HwGVEgHCHQHCAAAABQHBAAAAAAAAAAAAAAAAZAPVYgOuZgOtZQPQXQPOAAAAagO3aAPMYgSsZgTMAAAAZATIZQTCaAS6AAAAagSwIwzHGgyoIgyhGAy9GQycDAy5Ewy4Fgy/AAAADA3QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADA7DAAAAGQ7ACw68GA7MAAAAHw6gIQ6bGRTIGBTXCxTCHxSsDBTOAAAAIRSqAAAA","preamble":85,"sender":22963,"states":[{"mesid":{"sat":5,"code":0},"cn0":213},{"mesid":{"sat":21,"code":0},"cn0":179},{"mesid":{"sat":2,"code":0},"cn0":191},{"mesid":{"sat":31,"code":0},"cn0":166},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":25,"code":0},"cn0":219},{"mesid":{"sat":12,"code":0},"cn0":207},{"mesid":{"sat":29,"code":0},"cn0":213},{"mesid":{"sat":18,"code":0},"cn0":208},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":131,"code":2},"cn0":206},{"mesid":{"sat":25,"code":1},"cn0":204},{"mesid":{"sat":12,"code":1},"cn0":187},{"mesid":{"sat":31,"code":1},"cn0":149},{"mesid":{"sat":18,"code":1},"cn0":194},{"mesid":{"sat":29,"code":1},"cn0":194},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":5,"code":1},"cn0":193},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":100,"code":3},"cn0":213},{"mesid":{"sat":98,"code":3},"cn0":174},{"mesid":{"sat":102,"code":3},"cn0":173},{"mesid":{"sat":101,"code":3},"cn0":208},{"mesid":{"sat":93,"code":3},"cn0":206},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":106,"code":3},"cn0":183},{"mesid":{"sat":104,"code":3},"cn0":204},{"mesid":{"sat":98,"code":4},"cn0":172},{"mesid":{"sat":102,"code":4},"cn0":204},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":100,"code":4},"cn0":200},{"mesid":{"sat":101,"code":4},"cn0":194},{"mesid":{"sat":104,"code":4},"cn0":186},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":106,"code":4},"cn0":176},{"mesid":{"sat":35,"code":12},"cn0":199},{"mesid":{"sat":26,"code":12},"cn0":168},{"mesid":{"sat":34,"code":12},"cn0":161},{"mesid":{"sat":24,"code":12},"cn0":189},{"mesid":{"sat":25,"code":12},"cn0":156},{"mesid":{"sat":12,"code":12},"cn0":185},{"mesid":{"sat":19,"code":12},"cn0":184},{"mesid":{"sat":22,"code":12},"cn0":191},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":12,"code":13},"cn0":208},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":12,"code":14},"cn0":195},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":25,"code":14},"cn0":192},{"mesid":{"sat":11,"code":14},"cn0":188},{"mesid":{"sat":24,"code":14},"cn0":204},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":31,"code":14},"cn0":160},{"mesid":{"sat":33,"code":14},"cn0":155},{"mesid":{"sat":25,"code":20},"cn0":200},{"mesid":{"sat":24,"code":20},"cn0":215},{"mesid":{"sat":11,"code":20},"cn0":194},{"mesid":{"sat":31,"code":20},"cn0":172},{"mesid":{"sat":12,"code":20},"cn0":206},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":33,"code":20},"cn0":170},{"mesid":{"sat":0,"code":0},"cn0":0}]} +{"crc":40857,"length":11,"msg_type":258,"payload":"MghwxC4QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271500400,"ns_residual":0,"flags":1} +{"crc":49961,"length":16,"msg_type":259,"payload":"EXDELhDkBwMZAxgq/oPXFw==","preamble":85,"sender":22963,"flags":17,"tow":271500400,"year":2020,"month":3,"day":25,"hours":3,"minutes":24,"seconds":42,"ns":399999998} +{"crc":26314,"length":34,"msg_type":522,"payload":"cMQuEIFI5eRl6kJAnvnLIlaSXsDbH0t/XVMxwAECWwQPBg==","preamble":85,"sender":22963,"tow":271500400,"lat":37.83123456187696,"lon":-122.28650731963577,"height":-17.32564540466397,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":48380,"length":22,"msg_type":526,"payload":"cMQuEP7////3////CgAAAPAAyQIPAg==","preamble":85,"sender":22963,"tow":271500400,"n":-2,"e":-9,"d":10,"h_accuracy":240,"v_accuracy":713,"n_sats":15,"flags":2} +{"crc":25867,"length":15,"msg_type":520,"payload":"cMQuEJsAhwBNAEgAcgAG","preamble":85,"sender":22963,"tow":271500400,"gdop":155,"pdop":135,"tdop":77,"hdop":72,"vdop":114,"flags":6} +{"crc":38122,"length":22,"msg_type":524,"payload":"cMQuEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271500400,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":59985,"length":6,"msg_type":528,"payload":"cMQuEP//","preamble":85,"sender":22963,"tow":271500400,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":49809,"length":9,"msg_type":117,"payload":"/wAAAAAAAAAA","preamble":85,"sender":22963,"mask":255,"l1ca_bias":0,"l1p_bias":0,"l2ca_bias":0,"l2p_bias":0} +{"crc":6968,"length":11,"msg_type":258,"payload":"MgjUxC4QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271500500,"ns_residual":0,"flags":1} +{"crc":63950,"length":16,"msg_type":259,"payload":"EdTELhDkBwMZAxgq/mTNHQ==","preamble":85,"sender":22963,"flags":17,"tow":271500500,"year":2020,"month":3,"day":25,"hours":3,"minutes":24,"seconds":42,"ns":499999998} +{"crc":51811,"length":34,"msg_type":522,"payload":"1MQuEJo5ouRl6kJASKX8IlaSXsAyp5Cn+lQxwAECWwQPBg==","preamble":85,"sender":22963,"tow":271500500,"lat":37.83123453065055,"lon":-122.28650736496377,"height":-17.33194968492098,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":48685,"length":22,"msg_type":526,"payload":"1MQuEPr////w/////P////AAyQIPAg==","preamble":85,"sender":22963,"tow":271500500,"n":-6,"e":-16,"d":-4,"h_accuracy":240,"v_accuracy":713,"n_sats":15,"flags":2} +{"crc":14271,"length":15,"msg_type":520,"payload":"1MQuEJsAhwBNAEgAcgAG","preamble":85,"sender":22963,"tow":271500500,"gdop":155,"pdop":135,"tdop":77,"hdop":72,"vdop":114,"flags":6} +{"crc":58259,"length":22,"msg_type":524,"payload":"1MQuEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271500500,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":3544,"length":6,"msg_type":528,"payload":"1MQuEP//","preamble":85,"sender":22963,"tow":271500500,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":44652,"length":11,"msg_type":258,"payload":"Mgg4xS4QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271500600,"ns_residual":0,"flags":1} +{"crc":38963,"length":16,"msg_type":259,"payload":"ETjFLhDkBwMZAxgq/kXDIw==","preamble":85,"sender":22963,"flags":17,"tow":271500600,"year":2020,"month":3,"day":25,"hours":3,"minutes":24,"seconds":42,"ns":599999998} +{"crc":34670,"length":34,"msg_type":522,"payload":"OMUuEO7+aORl6kJAcGgHI1aSXsBwXlg021YxwAECWwQPBg==","preamble":85,"sender":22963,"tow":271500600,"lat":37.83123450400113,"lon":-122.28650737498697,"height":-17.339282294821203,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":10093,"length":22,"msg_type":526,"payload":"OMUuEAUAAAANAAAACQAAAPAAyQIPAg==","preamble":85,"sender":22963,"tow":271500600,"n":5,"e":13,"d":9,"h_accuracy":240,"v_accuracy":713,"n_sats":15,"flags":2} +{"crc":4902,"length":15,"msg_type":520,"payload":"OMUuEJsAhwBNAEgAcgAG","preamble":85,"sender":22963,"tow":271500600,"gdop":155,"pdop":135,"tdop":77,"hdop":72,"vdop":114,"flags":6} +{"crc":51941,"length":22,"msg_type":524,"payload":"OMUuEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271500600,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":10066,"length":6,"msg_type":528,"payload":"OMUuEP//","preamble":85,"sender":22963,"tow":271500600,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":10957,"length":11,"msg_type":258,"payload":"MgicxS4QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271500700,"ns_residual":0,"flags":1} +{"crc":20068,"length":16,"msg_type":259,"payload":"EZzFLhDkBwMZAxgq/ia5KQ==","preamble":85,"sender":22963,"flags":17,"tow":271500700,"year":2020,"month":3,"day":25,"hours":3,"minutes":24,"seconds":42,"ns":699999998} +{"crc":3093,"length":34,"msg_type":522,"payload":"nMUuEAybLeRl6kJA2r8jI1aSXsAtAcC6VFgxwAECWwQPBg==","preamble":85,"sender":22963,"tow":271500700,"lat":37.83123447634543,"lon":-122.28650740138201,"height":-17.34504286944973,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":4954,"length":22,"msg_type":526,"payload":"nMUuEP3///8JAAAA7/////AAyQIPAg==","preamble":85,"sender":22963,"tow":271500700,"n":-3,"e":9,"d":-17,"h_accuracy":240,"v_accuracy":713,"n_sats":15,"flags":2} +{"crc":16786,"length":15,"msg_type":520,"payload":"nMUuEJsAhwBNAEgAcgAG","preamble":85,"sender":22963,"tow":271500700,"gdop":155,"pdop":135,"tdop":77,"hdop":72,"vdop":114,"flags":6} +{"crc":48540,"length":22,"msg_type":524,"payload":"nMUuEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271500700,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":49371,"length":6,"msg_type":528,"payload":"nMUuEP//","preamble":85,"sender":22963,"tow":271500700,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":35171,"length":34,"msg_type":30583,"payload":"gwLTxC4QGbIL/QBYDQCgAB//4vZtDv/v3AbAKBAX8BC90A==","preamble":85,"sender":22963,"sid":{"sat":131,"code":2},"tow":271500499,"message_type":25,"data":[178,11,253,0,88,13,0,160,0,31,255,226,246,109,14,255,239,220,6,192,40,16,23,240,16,189,208]} +{"crc":41336,"length":136,"msg_type":151,"payload":"AgAaHgUALDUMAFEtFQB9GRkAbUYaAKEBHQChNx8AlQ4EAxYWBQMyIQYDTggJA18OCgNxKQsDmCUMA6oDEwMiBxQDCzEVA5UlDAyUKRMMIyAUDA8CFgxDIxgMgiMZDJ0OGgxnFR0MLAAiDI4RIwwiLQsOizIMDg88GA5sNhkOlykfDlURIQ4fDw==","preamble":85,"sender":22963,"azel":[{"sid":{"sat":2,"code":0},"az":26,"el":30},{"sid":{"sat":5,"code":0},"az":44,"el":53},{"sid":{"sat":12,"code":0},"az":81,"el":45},{"sid":{"sat":21,"code":0},"az":125,"el":25},{"sid":{"sat":25,"code":0},"az":109,"el":70},{"sid":{"sat":26,"code":0},"az":161,"el":1},{"sid":{"sat":29,"code":0},"az":161,"el":55},{"sid":{"sat":31,"code":0},"az":149,"el":14},{"sid":{"sat":4,"code":3},"az":22,"el":22},{"sid":{"sat":5,"code":3},"az":50,"el":33},{"sid":{"sat":6,"code":3},"az":78,"el":8},{"sid":{"sat":9,"code":3},"az":95,"el":14},{"sid":{"sat":10,"code":3},"az":113,"el":41},{"sid":{"sat":11,"code":3},"az":152,"el":37},{"sid":{"sat":12,"code":3},"az":170,"el":3},{"sid":{"sat":19,"code":3},"az":34,"el":7},{"sid":{"sat":20,"code":3},"az":11,"el":49},{"sid":{"sat":21,"code":3},"az":149,"el":37},{"sid":{"sat":12,"code":12},"az":148,"el":41},{"sid":{"sat":19,"code":12},"az":35,"el":32},{"sid":{"sat":20,"code":12},"az":15,"el":2},{"sid":{"sat":22,"code":12},"az":67,"el":35},{"sid":{"sat":24,"code":12},"az":130,"el":35},{"sid":{"sat":25,"code":12},"az":157,"el":14},{"sid":{"sat":26,"code":12},"az":103,"el":21},{"sid":{"sat":29,"code":12},"az":44,"el":0},{"sid":{"sat":34,"code":12},"az":142,"el":17},{"sid":{"sat":35,"code":12},"az":34,"el":45},{"sid":{"sat":11,"code":14},"az":139,"el":50},{"sid":{"sat":12,"code":14},"az":15,"el":60},{"sid":{"sat":24,"code":14},"az":108,"el":54},{"sid":{"sat":25,"code":14},"az":151,"el":41},{"sid":{"sat":31,"code":14},"az":85,"el":17},{"sid":{"sat":33,"code":14},"az":31,"el":15}]} +{"crc":48100,"length":11,"msg_type":258,"payload":"MggAxi4QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271500800,"ns_residual":0,"flags":1} +{"crc":7501,"length":16,"msg_type":259,"payload":"EQDGLhDkBwMZAxgq/gevLw==","preamble":85,"sender":22963,"flags":17,"tow":271500800,"year":2020,"month":3,"day":25,"hours":3,"minutes":24,"seconds":42,"ns":799999998} +{"crc":20951,"length":34,"msg_type":522,"payload":"AMYuEPDC1uNl6kJAzDRHI1aSXsBaAjBhs1sxwAECWwQPBg==","preamble":85,"sender":22963,"tow":271500800,"lat":37.83123443590546,"lon":-122.28650743440375,"height":-17.35820586607074,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":65053,"length":22,"msg_type":526,"payload":"AMYuEPf///8DAAAAEwAAAPAAyQIPAg==","preamble":85,"sender":22963,"tow":271500800,"n":-9,"e":3,"d":19,"h_accuracy":240,"v_accuracy":713,"n_sats":15,"flags":2} +{"crc":27230,"length":15,"msg_type":520,"payload":"AMYuEJsAhwBNAEgAcgAG","preamble":85,"sender":22963,"tow":271500800,"gdop":155,"pdop":135,"tdop":77,"hdop":72,"vdop":114,"flags":6} +{"crc":11670,"length":22,"msg_type":524,"payload":"AMYuEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271500800,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":60238,"length":6,"msg_type":528,"payload":"AMYuEP//","preamble":85,"sender":22963,"tow":271500800,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":20927,"length":237,"msg_type":97,"payload":"BQDVFQCzAgC/HwClAAAAAAAAGQDaDADOHQDUEgDPAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwLNGQHMDAG7HwGWEgHCHQHCAAAABQHBAAAAAAAAAAAAAAAACwPVCQOvFAOtBQPQCgPOAAAABAO3FQPMCQSsFATNAAAACwTIBQTCAAS5AAAABASwIwzHGgypIgygGAy9GQydDAy5Ewy5Fgy/AAAADA3QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADA7DAAAAGQ7ACw69GA7NAAAAHw6gIQ6bGRTIGBTXCxTCHxStDBTPAAAAIRSqAAAA","preamble":85,"sender":22963,"states":[{"mesid":{"sat":5,"code":0},"cn0":213},{"mesid":{"sat":21,"code":0},"cn0":179},{"mesid":{"sat":2,"code":0},"cn0":191},{"mesid":{"sat":31,"code":0},"cn0":165},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":25,"code":0},"cn0":218},{"mesid":{"sat":12,"code":0},"cn0":206},{"mesid":{"sat":29,"code":0},"cn0":212},{"mesid":{"sat":18,"code":0},"cn0":207},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":131,"code":2},"cn0":205},{"mesid":{"sat":25,"code":1},"cn0":204},{"mesid":{"sat":12,"code":1},"cn0":187},{"mesid":{"sat":31,"code":1},"cn0":150},{"mesid":{"sat":18,"code":1},"cn0":194},{"mesid":{"sat":29,"code":1},"cn0":194},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":5,"code":1},"cn0":193},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":11,"code":3},"cn0":213},{"mesid":{"sat":9,"code":3},"cn0":175},{"mesid":{"sat":20,"code":3},"cn0":173},{"mesid":{"sat":5,"code":3},"cn0":208},{"mesid":{"sat":10,"code":3},"cn0":206},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":4,"code":3},"cn0":183},{"mesid":{"sat":21,"code":3},"cn0":204},{"mesid":{"sat":9,"code":4},"cn0":172},{"mesid":{"sat":20,"code":4},"cn0":205},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":11,"code":4},"cn0":200},{"mesid":{"sat":5,"code":4},"cn0":194},{"mesid":{"sat":0,"code":4},"cn0":185},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":4,"code":4},"cn0":176},{"mesid":{"sat":35,"code":12},"cn0":199},{"mesid":{"sat":26,"code":12},"cn0":169},{"mesid":{"sat":34,"code":12},"cn0":160},{"mesid":{"sat":24,"code":12},"cn0":189},{"mesid":{"sat":25,"code":12},"cn0":157},{"mesid":{"sat":12,"code":12},"cn0":185},{"mesid":{"sat":19,"code":12},"cn0":185},{"mesid":{"sat":22,"code":12},"cn0":191},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":12,"code":13},"cn0":208},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":12,"code":14},"cn0":195},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":25,"code":14},"cn0":192},{"mesid":{"sat":11,"code":14},"cn0":189},{"mesid":{"sat":24,"code":14},"cn0":205},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":31,"code":14},"cn0":160},{"mesid":{"sat":33,"code":14},"cn0":155},{"mesid":{"sat":25,"code":20},"cn0":200},{"mesid":{"sat":24,"code":20},"cn0":215},{"mesid":{"sat":11,"code":20},"cn0":194},{"mesid":{"sat":31,"code":20},"cn0":173},{"mesid":{"sat":12,"code":20},"cn0":207},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":33,"code":20},"cn0":170},{"mesid":{"sat":0,"code":0},"cn0":0}]} +{"crc":57134,"length":11,"msg_type":258,"payload":"Mghkxi4QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271500900,"ns_residual":0,"flags":1} +{"crc":53859,"length":16,"msg_type":259,"payload":"EWTGLhDkBwMZAxgq/uikNQ==","preamble":85,"sender":22963,"flags":17,"tow":271500900,"year":2020,"month":3,"day":25,"hours":3,"minutes":24,"seconds":42,"ns":899999998} +{"crc":49407,"length":34,"msg_type":522,"payload":"ZMYuEFq6luNl6kJARWp3I1aSXsB/Or+2kV4xwAECWwQPBg==","preamble":85,"sender":22963,"tow":271500900,"lat":37.83123440608752,"lon":-122.28650747930176,"height":-17.369410916983266,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":2626,"length":22,"msg_type":526,"payload":"ZMYuEAIAAAD9////AwAAAPAAyQIPAg==","preamble":85,"sender":22963,"tow":271500900,"n":2,"e":-3,"d":3,"h_accuracy":240,"v_accuracy":713,"n_sats":15,"flags":2} +{"crc":18161,"length":15,"msg_type":520,"payload":"ZMYuEJsAhwBNAEgAcgAG","preamble":85,"sender":22963,"tow":271500900,"gdop":155,"pdop":135,"tdop":77,"hdop":72,"vdop":114,"flags":6} +{"crc":13600,"length":22,"msg_type":524,"payload":"ZMYuEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271500900,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":45815,"length":6,"msg_type":528,"payload":"ZMYuEP//","preamble":85,"sender":22963,"tow":271500900,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":64239,"length":249,"msg_type":74,"payload":"yMYuEAAAAAAyCEDOobM+wgmXBqxS/4DVDw8FAPU/G0XoXEMHAIAIKbMPDxUA0IftRdF2WQcDUfbivw8PAgCQxQFJ7E6sB5Z7/tWlDw8fAB3IIz1xA20G8aL7btoPDxkAJx+vQChgzAZZbvQOzg8PDABGktM+F2WaBuHOBVfUDw8dAETIIz041AEFFpj8zswPDxkB3x6vQCcjTAXO+vbJuw8PDAFaxQFJP6H6Bb/Q/gmWDw8fAfqR0z7bMCUF5IcEHsIPDx0BlaGzPluTIgUuef9VwQ8PBQENsv4+H4a7BgKaBEnVDw8LA7XpzEQ7ClkHuMjumq8PDwkD","preamble":85,"sender":22963,"header":{"t":{"tow":271501000,"ns_residual":0,"wn":2098},"n_obs":64},"obs":[{"P":1051959758,"L":{"i":110561730,"f":172},"D":{"i":-174,"f":128},"cn0":213,"lock":15,"flags":15,"sid":{"sat":5,"code":0}},{"P":1159413749,"L":{"i":121855208,"f":0},"D":{"i":2176,"f":41},"cn0":179,"lock":15,"flags":15,"sid":{"sat":21,"code":0}},{"P":1173194704,"L":{"i":123303633,"f":3},"D":{"i":-2479,"f":226},"cn0":191,"lock":15,"flags":15,"sid":{"sat":2,"code":0}},{"P":1224852880,"L":{"i":128732908,"f":150},"D":{"i":-389,"f":213},"cn0":165,"lock":15,"flags":15,"sid":{"sat":31,"code":0}},{"P":1025755165,"L":{"i":107807601,"f":241},"D":{"i":-1118,"f":110},"cn0":218,"lock":15,"flags":15,"sid":{"sat":25,"code":0}},{"P":1085218599,"L":{"i":114057256,"f":89},"D":{"i":-2962,"f":14},"cn0":206,"lock":15,"flags":15,"sid":{"sat":12,"code":0}},{"P":1054052934,"L":{"i":110781719,"f":225},"D":{"i":1486,"f":87},"cn0":212,"lock":15,"flags":15,"sid":{"sat":29,"code":0}},{"P":1025755204,"L":{"i":84005944,"f":22},"D":{"i":-872,"f":206},"cn0":204,"lock":15,"flags":15,"sid":{"sat":25,"code":1}},{"P":1085218527,"L":{"i":88875815,"f":206},"D":{"i":-2310,"f":201},"cn0":187,"lock":15,"flags":15,"sid":{"sat":12,"code":1}},{"P":1224852826,"L":{"i":100311359,"f":191},"D":{"i":-304,"f":9},"cn0":150,"lock":15,"flags":15,"sid":{"sat":31,"code":1}},{"P":1054052858,"L":{"i":86323419,"f":228},"D":{"i":1159,"f":30},"cn0":194,"lock":15,"flags":15,"sid":{"sat":29,"code":1}},{"P":1051959701,"L":{"i":86152027,"f":46},"D":{"i":-135,"f":85},"cn0":193,"lock":15,"flags":15,"sid":{"sat":5,"code":1}},{"P":1056879117,"L":{"i":112952863,"f":2},"D":{"i":1178,"f":73},"cn0":213,"lock":15,"flags":15,"sid":{"sat":11,"code":3}},{"P":1154279861,"L":{"i":123275835,"f":184},"D":{"i":-4408,"f":154},"cn0":175,"lock":15,"flags":15,"sid":{"sat":9,"code":3}}]} +{"crc":59582,"length":249,"msg_type":74,"payload":"yMYuEAAAAAAyCEF3Eis98riKBmxI+0CtDw8UA0puDUDlEtkGKZ8IIs8PDwUDO49fPnhSpgb7I/Swzg8PCgO71QRDXHstBxXo+ou3Dw8EA2O5LT9a+sIGoVgGUMwPDxUDY+rMRP8HtwU0nfKJrA8PCQTSEys9/I8WBbpU/AvMDw8UBCKz/j7NhDwFHpQDhMcPDwsEDm8NQH2AUwUhtQZZwg8PBQRa1gRDBCeVBfUH/PawDw8EBC1PkkUM3D4HCSX6QMcPDyMMeJPtST0CsweQP/TvqQ8PGgzr4hpM5wztBwzHCNuhDw8iDNb1nUcTZXUHsu76W70PDxgM","preamble":85,"sender":22963,"header":{"t":{"tow":271501000,"ns_residual":0,"wn":2098},"n_obs":65},"obs":[{"P":1026232951,"L":{"i":109754610,"f":108},"D":{"i":-1208,"f":64},"cn0":173,"lock":15,"flags":15,"sid":{"sat":20,"code":3}},{"P":1074622026,"L":{"i":114889445,"f":41},"D":{"i":2207,"f":34},"cn0":207,"lock":15,"flags":15,"sid":{"sat":5,"code":3}},{"P":1046449979,"L":{"i":111563384,"f":251},"D":{"i":-3037,"f":176},"cn0":206,"lock":15,"flags":15,"sid":{"sat":10,"code":3}},{"P":1124390331,"L":{"i":120421212,"f":21},"D":{"i":-1304,"f":139},"cn0":183,"lock":15,"flags":15,"sid":{"sat":4,"code":3}},{"P":1059961187,"L":{"i":113441370,"f":161},"D":{"i":1624,"f":80},"cn0":204,"lock":15,"flags":15,"sid":{"sat":21,"code":3}},{"P":1154280035,"L":{"i":95881215,"f":52},"D":{"i":-3427,"f":137},"cn0":172,"lock":15,"flags":15,"sid":{"sat":9,"code":4}},{"P":1026233298,"L":{"i":85364732,"f":186},"D":{"i":-940,"f":11},"cn0":204,"lock":15,"flags":15,"sid":{"sat":20,"code":4}},{"P":1056879394,"L":{"i":87852237,"f":30},"D":{"i":916,"f":132},"cn0":199,"lock":15,"flags":15,"sid":{"sat":11,"code":4}},{"P":1074622222,"L":{"i":89358461,"f":33},"D":{"i":1717,"f":89},"cn0":194,"lock":15,"flags":15,"sid":{"sat":5,"code":4}},{"P":1124390490,"L":{"i":93660932,"f":245},"D":{"i":-1017,"f":246},"cn0":176,"lock":15,"flags":15,"sid":{"sat":4,"code":4}},{"P":1167216429,"L":{"i":121560076,"f":9},"D":{"i":-1499,"f":64},"cn0":199,"lock":15,"flags":15,"sid":{"sat":35,"code":12}},{"P":1240306552,"L":{"i":129172029,"f":144},"D":{"i":-3009,"f":239},"cn0":169,"lock":15,"flags":15,"sid":{"sat":26,"code":12}},{"P":1276830443,"L":{"i":132975847,"f":12},"D":{"i":2247,"f":219},"cn0":161,"lock":15,"flags":15,"sid":{"sat":34,"code":12}},{"P":1201534422,"L":{"i":125134099,"f":178},"D":{"i":-1298,"f":91},"cn0":189,"lock":15,"flags":15,"sid":{"sat":24,"code":12}}]} +{"crc":3129,"length":249,"msg_type":74,"payload":"yMYuEAAAAAAyCEIQAhZNAjQHCGYyBb+dDw8ZDMgIUkVKKjgHCkwG67kPDwwMSrFCR8njawfx5f6MuQ8PEwySpWNHYFJvB55XCZ2/Dw8WDHkIUkViHpUFkt8ENtAPDwwNlBIFQpJQ8AZL/vu/xA8PDA5xHyNLC6DlB9JEBJjBDw8ZDiwsI0fbAXoHahcE0b0PDwsO1U8kQwOBDgdCNPkpzQ8PGA66uEFRkUaKCJCc80mgDw8fDiZP8lHM1ZwIoaL3rJsPDyEOVB8jS5YJDQZqRQOayA8PGRTnUSRDjjRoBYbL+gXXDw8YFHorI0efk7oFPSMDd8IPDwsU","preamble":85,"sender":22963,"header":{"t":{"tow":271501000,"ns_residual":0,"wn":2098},"n_obs":66},"obs":[{"P":1293287952,"L":{"i":134689794,"f":102},"D":{"i":1330,"f":191},"cn0":157,"lock":15,"flags":15,"sid":{"sat":25,"code":12}},{"P":1163004104,"L":{"i":121121354,"f":10},"D":{"i":1612,"f":235},"cn0":185,"lock":15,"flags":15,"sid":{"sat":12,"code":12}},{"P":1195553098,"L":{"i":124511177,"f":241},"D":{"i":-283,"f":140},"cn0":185,"lock":15,"flags":15,"sid":{"sat":19,"code":12}},{"P":1197712786,"L":{"i":124736096,"f":158},"D":{"i":2391,"f":157},"cn0":191,"lock":15,"flags":15,"sid":{"sat":22,"code":12}},{"P":1163004025,"L":{"i":93658722,"f":146},"D":{"i":1247,"f":54},"cn0":208,"lock":15,"flags":15,"sid":{"sat":12,"code":13}},{"P":1107628692,"L":{"i":116412562,"f":75},"D":{"i":-1026,"f":191},"cn0":196,"lock":15,"flags":15,"sid":{"sat":12,"code":14}},{"P":1260593009,"L":{"i":132489227,"f":210},"D":{"i":1092,"f":152},"cn0":193,"lock":15,"flags":15,"sid":{"sat":25,"code":14}},{"P":1193487404,"L":{"i":125436379,"f":106},"D":{"i":1047,"f":209},"cn0":189,"lock":15,"flags":15,"sid":{"sat":11,"code":14}},{"P":1126453205,"L":{"i":118391043,"f":66},"D":{"i":-1740,"f":41},"cn0":205,"lock":15,"flags":15,"sid":{"sat":24,"code":14}},{"P":1363261626,"L":{"i":143279761,"f":144},"D":{"i":-3172,"f":73},"cn0":160,"lock":15,"flags":15,"sid":{"sat":31,"code":14}},{"P":1374834470,"L":{"i":144496076,"f":161},"D":{"i":-2142,"f":172},"cn0":155,"lock":15,"flags":15,"sid":{"sat":33,"code":14}},{"P":1260592980,"L":{"i":101517718,"f":106},"D":{"i":837,"f":154},"cn0":200,"lock":15,"flags":15,"sid":{"sat":25,"code":20}},{"P":1126453735,"L":{"i":90715278,"f":134},"D":{"i":-1333,"f":5},"cn0":215,"lock":15,"flags":15,"sid":{"sat":24,"code":20}},{"P":1193487226,"L":{"i":96113567,"f":61},"D":{"i":803,"f":119},"cn0":194,"lock":15,"flags":15,"sid":{"sat":11,"code":20}}]} +{"crc":42607,"length":62,"msg_type":74,"payload":"yMYuEAAAAAAyCEPHuEFR6DKLBteC9omtDw8fFOoRBUKiElEFpe38SM8PDwwU7k7yUZNrmQZ/l/lVqg8PIRQ=","preamble":85,"sender":22963,"header":{"t":{"tow":271501000,"ns_residual":0,"wn":2098},"n_obs":67},"obs":[{"P":1363261639,"L":{"i":109785832,"f":215},"D":{"i":-2430,"f":137},"cn0":173,"lock":15,"flags":15,"sid":{"sat":31,"code":20}},{"P":1107628522,"L":{"i":89199266,"f":165},"D":{"i":-787,"f":72},"cn0":207,"lock":15,"flags":15,"sid":{"sat":12,"code":20}},{"P":1374834414,"L":{"i":110717843,"f":127},"D":{"i":-1641,"f":85},"cn0":170,"lock":15,"flags":15,"sid":{"sat":33,"code":20}}]} +{"crc":49809,"length":9,"msg_type":117,"payload":"/wAAAAAAAAAA","preamble":85,"sender":22963,"mask":255,"l1ca_bias":0,"l1p_bias":0,"l2ca_bias":0,"l2p_bias":0} +{"crc":29296,"length":11,"msg_type":258,"payload":"MgjIxi4QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271501000,"ns_residual":0,"flags":1} +{"crc":53552,"length":16,"msg_type":259,"payload":"EcjGLhDkBwMZAxgq/smaOw==","preamble":85,"sender":22963,"flags":17,"tow":271501000,"year":2020,"month":3,"day":25,"hours":3,"minutes":24,"seconds":42,"ns":999999998} +{"crc":43924,"length":34,"msg_type":522,"payload":"yMYuEJMzdeNl6kJAujazI1aSXsCG7FFmYmAxwAECWwQPBg==","preamble":85,"sender":22963,"tow":271501000,"lat":37.83123439047554,"lon":-122.2865075349936,"height":-17.37650146007629,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":50351,"length":22,"msg_type":526,"payload":"yMYuEAwAAAD0////8/////AAyQIPAg==","preamble":85,"sender":22963,"tow":271501000,"n":12,"e":-12,"d":-13,"h_accuracy":240,"v_accuracy":713,"n_sats":15,"flags":2} +{"crc":13056,"length":15,"msg_type":520,"payload":"yMYuEJsAhwBNAEgAcgAG","preamble":85,"sender":22963,"tow":271501000,"gdop":155,"pdop":135,"tdop":77,"hdop":72,"vdop":114,"flags":6} +{"crc":7418,"length":22,"msg_type":524,"payload":"yMYuEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271501000,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":22588,"length":6,"msg_type":528,"payload":"yMYuEP//","preamble":85,"sender":22963,"tow":271501000,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":40942,"length":4,"msg_type":65535,"payload":"AAUCgA==","preamble":85,"sender":22963,"flags":2147616000} +{"crc":2168,"length":24,"msg_type":72,"payload":"UO0a3iqORMHK1UJhIkRQwc9nFIPvrk1B","preamble":85,"sender":22963,"x":-2694229.735196747,"y":-4264073.519704292,"z":3890655.0240602265} +{"crc":61147,"length":11,"msg_type":258,"payload":"Mggsxy4QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271501100,"ns_residual":0,"flags":1} +{"crc":44131,"length":16,"msg_type":259,"payload":"ESzHLhDkBwMZAxgr/uD1BQ==","preamble":85,"sender":22963,"flags":17,"tow":271501100,"year":2020,"month":3,"day":25,"hours":3,"minutes":24,"seconds":43,"ns":99999998} +{"crc":19195,"length":34,"msg_type":522,"payload":"LMcuECa9GuNl6kJAjAfXI1aSXsCCRuMho2MxwAECWwQPBg==","preamble":85,"sender":22963,"tow":271501100,"lat":37.831234348350606,"lon":-122.28650756834958,"height":-17.389207952487148,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":62123,"length":22,"msg_type":526,"payload":"LMcuEPP///8FAAAAEAAAAPAAyQIPAg==","preamble":85,"sender":22963,"tow":271501100,"n":-13,"e":5,"d":16,"h_accuracy":240,"v_accuracy":713,"n_sats":15,"flags":2} +{"crc":12508,"length":15,"msg_type":520,"payload":"LMcuEJsAhwBNAEgAcgAG","preamble":85,"sender":22963,"tow":271501100,"gdop":155,"pdop":135,"tdop":77,"hdop":72,"vdop":114,"flags":6} +{"crc":27439,"length":22,"msg_type":524,"payload":"LMcuEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271501100,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":32756,"length":6,"msg_type":528,"payload":"LMcuEP//","preamble":85,"sender":22963,"tow":271501100,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":4219,"length":11,"msg_type":258,"payload":"MgiQxy4QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271501200,"ns_residual":0,"flags":1} +{"crc":59228,"length":16,"msg_type":259,"payload":"EZDHLhDkBwMZAxgr/sHrCw==","preamble":85,"sender":22963,"flags":17,"tow":271501200,"year":2020,"month":3,"day":25,"hours":3,"minutes":24,"seconds":43,"ns":199999998} +{"crc":21201,"length":34,"msg_type":522,"payload":"kMcuEMfX0eJl6kJAj3T0I1aSXsBAjpTG4WUxwAECWwQPBg==","preamble":85,"sender":22963,"tow":271501200,"lat":37.83123431440577,"lon":-122.28650759575451,"height":-17.39797631384704,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":59162,"length":22,"msg_type":526,"payload":"kMcuEP////8EAAAAGwAAAPAAyQIPAg==","preamble":85,"sender":22963,"tow":271501200,"n":-1,"e":4,"d":27,"h_accuracy":240,"v_accuracy":713,"n_sats":15,"flags":2} +{"crc":2983,"length":15,"msg_type":520,"payload":"kMcuEJsAhwBNAEgAcgAG","preamble":85,"sender":22963,"tow":271501200,"gdop":155,"pdop":135,"tdop":77,"hdop":72,"vdop":114,"flags":6} +{"crc":65459,"length":22,"msg_type":524,"payload":"kMcuEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271501200,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":36795,"length":6,"msg_type":528,"payload":"kMcuEP//","preamble":85,"sender":22963,"tow":271501200,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":29873,"length":11,"msg_type":258,"payload":"Mgj0xy4QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271501300,"ns_residual":0,"flags":1} +{"crc":21880,"length":16,"msg_type":259,"payload":"EfTHLhDkBwMZAxgr/qLhEQ==","preamble":85,"sender":22963,"flags":17,"tow":271501300,"year":2020,"month":3,"day":25,"hours":3,"minutes":24,"seconds":43,"ns":299999998} +{"crc":54186,"length":34,"msg_type":522,"payload":"9McuEAJUfeJl6kJACXMFJFaSXsD7C/KkMmgxwAECWwQPBg==","preamble":85,"sender":22963,"tow":271501300,"lat":37.831234275050534,"lon":-122.28650761158146,"height":-17.40702277097078,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":16318,"length":22,"msg_type":526,"payload":"9McuEPf///8FAAAACQAAAPAAyQIPAg==","preamble":85,"sender":22963,"tow":271501300,"n":-9,"e":5,"d":9,"h_accuracy":240,"v_accuracy":713,"n_sats":15,"flags":2} +{"crc":9992,"length":15,"msg_type":520,"payload":"9McuEJsAhwBNAEgAcgAG","preamble":85,"sender":22963,"tow":271501300,"gdop":155,"pdop":135,"tdop":77,"hdop":72,"vdop":114,"flags":6} +{"crc":59141,"length":22,"msg_type":524,"payload":"9McuEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271501300,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":54786,"length":6,"msg_type":528,"payload":"9McuEP//","preamble":85,"sender":22963,"tow":271501300,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":42939,"length":237,"msg_type":97,"payload":"BQDUFQCzAgC+HwClAAAAAAAAGQDaDADOHQDUEgDOAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwLMGQHMDAG7HwGWEgHDHQHCAAAABQHCAAAAAAAAAAAAAAAAZAPVYgOwZgOtZQPPXQPOAAAAagO3aAPMYgSsZgTMAAAAZATHZQTCaAS5AAAAagSwIwzHGgypIgygGAy9GQydDAy5Ewy5Fgy/AAAADA3QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADA7EAAAAGQ7BCw69GA7NAAAAHw6gIQ6bGRTIGBTXCxTCHxSsDBTPAAAAIRSqAAAA","preamble":85,"sender":22963,"states":[{"mesid":{"sat":5,"code":0},"cn0":212},{"mesid":{"sat":21,"code":0},"cn0":179},{"mesid":{"sat":2,"code":0},"cn0":190},{"mesid":{"sat":31,"code":0},"cn0":165},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":25,"code":0},"cn0":218},{"mesid":{"sat":12,"code":0},"cn0":206},{"mesid":{"sat":29,"code":0},"cn0":212},{"mesid":{"sat":18,"code":0},"cn0":206},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":131,"code":2},"cn0":204},{"mesid":{"sat":25,"code":1},"cn0":204},{"mesid":{"sat":12,"code":1},"cn0":187},{"mesid":{"sat":31,"code":1},"cn0":150},{"mesid":{"sat":18,"code":1},"cn0":195},{"mesid":{"sat":29,"code":1},"cn0":194},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":5,"code":1},"cn0":194},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":100,"code":3},"cn0":213},{"mesid":{"sat":98,"code":3},"cn0":176},{"mesid":{"sat":102,"code":3},"cn0":173},{"mesid":{"sat":101,"code":3},"cn0":207},{"mesid":{"sat":93,"code":3},"cn0":206},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":106,"code":3},"cn0":183},{"mesid":{"sat":104,"code":3},"cn0":204},{"mesid":{"sat":98,"code":4},"cn0":172},{"mesid":{"sat":102,"code":4},"cn0":204},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":100,"code":4},"cn0":199},{"mesid":{"sat":101,"code":4},"cn0":194},{"mesid":{"sat":104,"code":4},"cn0":185},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":106,"code":4},"cn0":176},{"mesid":{"sat":35,"code":12},"cn0":199},{"mesid":{"sat":26,"code":12},"cn0":169},{"mesid":{"sat":34,"code":12},"cn0":160},{"mesid":{"sat":24,"code":12},"cn0":189},{"mesid":{"sat":25,"code":12},"cn0":157},{"mesid":{"sat":12,"code":12},"cn0":185},{"mesid":{"sat":19,"code":12},"cn0":185},{"mesid":{"sat":22,"code":12},"cn0":191},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":12,"code":13},"cn0":208},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":12,"code":14},"cn0":196},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":25,"code":14},"cn0":193},{"mesid":{"sat":11,"code":14},"cn0":189},{"mesid":{"sat":24,"code":14},"cn0":205},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":31,"code":14},"cn0":160},{"mesid":{"sat":33,"code":14},"cn0":155},{"mesid":{"sat":25,"code":20},"cn0":200},{"mesid":{"sat":24,"code":20},"cn0":215},{"mesid":{"sat":11,"code":20},"cn0":194},{"mesid":{"sat":31,"code":20},"cn0":172},{"mesid":{"sat":12,"code":20},"cn0":207},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":33,"code":20},"cn0":170},{"mesid":{"sat":0,"code":0},"cn0":0}]} +{"crc":45,"length":11,"msg_type":258,"payload":"MghYyC4QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271501400,"ns_residual":0,"flags":1} +{"crc":50663,"length":16,"msg_type":259,"payload":"EVjILhDkBwMZAxgr/oPXFw==","preamble":85,"sender":22963,"flags":17,"tow":271501400,"year":2020,"month":3,"day":25,"hours":3,"minutes":24,"seconds":43,"ns":399999998} +{"crc":25656,"length":34,"msg_type":522,"payload":"WMguEDVuIOJl6kJAsxceJFaSXsB97SkjFWkxwAECWwQPBg==","preamble":85,"sender":22963,"tow":271501400,"lat":37.83123423179169,"lon":-122.28650763453224,"height":-17.41047878049493,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":35578,"length":22,"msg_type":526,"payload":"WMguEPj///8CAAAA5/////AAyQIPAg==","preamble":85,"sender":22963,"tow":271501400,"n":-8,"e":2,"d":-25,"h_accuracy":240,"v_accuracy":713,"n_sats":15,"flags":2} +{"crc":51604,"length":15,"msg_type":520,"payload":"WMguEJsAhwBNAEgAcgAG","preamble":85,"sender":22963,"tow":271501400,"gdop":155,"pdop":135,"tdop":77,"hdop":72,"vdop":114,"flags":6} +{"crc":2089,"length":22,"msg_type":524,"payload":"WMguEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271501400,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":22832,"length":6,"msg_type":528,"payload":"WMguEP//","preamble":85,"sender":22963,"tow":271501400,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":49809,"length":9,"msg_type":117,"payload":"/wAAAAAAAAAA","preamble":85,"sender":22963,"mask":255,"l1ca_bias":0,"l1p_bias":0,"l2ca_bias":0,"l2p_bias":0} +{"crc":56149,"length":11,"msg_type":258,"payload":"Mgi8yC4QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271501500,"ns_residual":0,"flags":1} +{"crc":54537,"length":16,"msg_type":259,"payload":"EbzILhDkBwMZAxgr/mTNHQ==","preamble":85,"sender":22963,"flags":17,"tow":271501500,"year":2020,"month":3,"day":25,"hours":3,"minutes":24,"seconds":43,"ns":499999998} +{"crc":18114,"length":34,"msg_type":522,"payload":"vMguEKJR7OFl6kJAFHE7JFaSXsBFHumR+GkxwAECWwQPBg==","preamble":85,"sender":22963,"tow":271501500,"lat":37.83123420752533,"lon":-122.28650766186576,"height":-17.413949126638062,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":19054,"length":22,"msg_type":526,"payload":"vMguEAoAAAD7////CgAAAPAAyQIPAg==","preamble":85,"sender":22963,"tow":271501500,"n":10,"e":-5,"d":10,"h_accuracy":240,"v_accuracy":713,"n_sats":15,"flags":2} +{"crc":45353,"length":15,"msg_type":520,"payload":"vMguEJsAhwBNAEgAcgAG","preamble":85,"sender":22963,"tow":271501500,"gdop":155,"pdop":135,"tdop":77,"hdop":72,"vdop":114,"flags":6} +{"crc":43530,"length":22,"msg_type":524,"payload":"vMguEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271501500,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":54441,"length":6,"msg_type":528,"payload":"vMguEP//","preamble":85,"sender":22963,"tow":271501500,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":50650,"length":11,"msg_type":258,"payload":"MgggyS4QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271501600,"ns_residual":0,"flags":1} +{"crc":19811,"length":16,"msg_type":259,"payload":"ESDJLhDkBwMZAxgr/kXDIw==","preamble":85,"sender":22963,"flags":17,"tow":271501600,"year":2020,"month":3,"day":25,"hours":3,"minutes":24,"seconds":43,"ns":599999998} +{"crc":32002,"length":34,"msg_type":522,"payload":"IMkuEIDVsOFl6kJA5sNkJFaSXsDcFZu4T2sxwAECWwQPBg==","preamble":85,"sender":22963,"tow":271501600,"lat":37.831234179825515,"lon":-122.28650770035128,"height":-17.419185197699207,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":11014,"length":22,"msg_type":526,"payload":"IMkuEP/////9////CwAAAPAAyQIPAg==","preamble":85,"sender":22963,"tow":271501600,"n":-1,"e":-3,"d":11,"h_accuracy":240,"v_accuracy":713,"n_sats":15,"flags":2} +{"crc":27687,"length":15,"msg_type":520,"payload":"IMkuEJsAhwBNAEgAcgAG","preamble":85,"sender":22963,"tow":271501600,"gdop":155,"pdop":135,"tdop":77,"hdop":72,"vdop":114,"flags":6} +{"crc":33229,"length":22,"msg_type":524,"payload":"IMkuEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271501600,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":48063,"length":6,"msg_type":528,"payload":"IMkuEP//","preamble":85,"sender":22963,"tow":271501600,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":16763,"length":11,"msg_type":258,"payload":"MgiEyS4QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271501700,"ns_residual":0,"flags":1} +{"crc":39732,"length":16,"msg_type":259,"payload":"EYTJLhDkBwMZAxgr/ia5KQ==","preamble":85,"sender":22963,"flags":17,"tow":271501700,"year":2020,"month":3,"day":25,"hours":3,"minutes":24,"seconds":43,"ns":699999998} +{"crc":35769,"length":34,"msg_type":522,"payload":"hMkuEFN7huFl6kJA526JJFaSXsBlZseAQWwxwAECWwQPBg==","preamble":85,"sender":22963,"tow":271501700,"lat":37.83123416010371,"lon":-122.286507734501,"height":-17.42287449711002,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":21374,"length":22,"msg_type":526,"payload":"hMkuEAQAAAD9////9P////AAyQIPAg==","preamble":85,"sender":22963,"tow":271501700,"n":4,"e":-3,"d":-12,"h_accuracy":240,"v_accuracy":713,"n_sats":15,"flags":2} +{"crc":16019,"length":15,"msg_type":520,"payload":"hMkuEJsAhwBNAEgAcgAG","preamble":85,"sender":22963,"tow":271501700,"gdop":155,"pdop":135,"tdop":77,"hdop":72,"vdop":114,"flags":6} +{"crc":63156,"length":22,"msg_type":524,"payload":"hMkuEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271501700,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":23606,"length":6,"msg_type":528,"payload":"hMkuEP//","preamble":85,"sender":22963,"tow":271501700,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":59324,"length":34,"msg_type":30583,"payload":"gwKfyC4QHFAHhDGEQCfzHt6z3nvMmYumKBAkgOSvni06YA==","preamble":85,"sender":22963,"sid":{"sat":131,"code":2},"tow":271501471,"message_type":28,"data":[80,7,132,49,132,64,39,243,30,222,179,222,123,204,153,139,166,40,16,36,128,228,175,158,45,58,96]} +{"crc":41336,"length":136,"msg_type":151,"payload":"AgAaHgUALDUMAFEtFQB9GRkAbUYaAKEBHQChNx8AlQ4EAxYWBQMyIQYDTggJA18OCgNxKQsDmCUMA6oDEwMiBxQDCzEVA5UlDAyUKRMMIyAUDA8CFgxDIxgMgiMZDJ0OGgxnFR0MLAAiDI4RIwwiLQsOizIMDg88GA5sNhkOlykfDlURIQ4fDw==","preamble":85,"sender":22963,"azel":[{"sid":{"sat":2,"code":0},"az":26,"el":30},{"sid":{"sat":5,"code":0},"az":44,"el":53},{"sid":{"sat":12,"code":0},"az":81,"el":45},{"sid":{"sat":21,"code":0},"az":125,"el":25},{"sid":{"sat":25,"code":0},"az":109,"el":70},{"sid":{"sat":26,"code":0},"az":161,"el":1},{"sid":{"sat":29,"code":0},"az":161,"el":55},{"sid":{"sat":31,"code":0},"az":149,"el":14},{"sid":{"sat":4,"code":3},"az":22,"el":22},{"sid":{"sat":5,"code":3},"az":50,"el":33},{"sid":{"sat":6,"code":3},"az":78,"el":8},{"sid":{"sat":9,"code":3},"az":95,"el":14},{"sid":{"sat":10,"code":3},"az":113,"el":41},{"sid":{"sat":11,"code":3},"az":152,"el":37},{"sid":{"sat":12,"code":3},"az":170,"el":3},{"sid":{"sat":19,"code":3},"az":34,"el":7},{"sid":{"sat":20,"code":3},"az":11,"el":49},{"sid":{"sat":21,"code":3},"az":149,"el":37},{"sid":{"sat":12,"code":12},"az":148,"el":41},{"sid":{"sat":19,"code":12},"az":35,"el":32},{"sid":{"sat":20,"code":12},"az":15,"el":2},{"sid":{"sat":22,"code":12},"az":67,"el":35},{"sid":{"sat":24,"code":12},"az":130,"el":35},{"sid":{"sat":25,"code":12},"az":157,"el":14},{"sid":{"sat":26,"code":12},"az":103,"el":21},{"sid":{"sat":29,"code":12},"az":44,"el":0},{"sid":{"sat":34,"code":12},"az":142,"el":17},{"sid":{"sat":35,"code":12},"az":34,"el":45},{"sid":{"sat":11,"code":14},"az":139,"el":50},{"sid":{"sat":12,"code":14},"az":15,"el":60},{"sid":{"sat":24,"code":14},"az":108,"el":54},{"sid":{"sat":25,"code":14},"az":151,"el":41},{"sid":{"sat":31,"code":14},"az":85,"el":17},{"sid":{"sat":33,"code":14},"az":31,"el":15}]} +{"crc":3150,"length":11,"msg_type":258,"payload":"MgjoyS4QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271501800,"ns_residual":0,"flags":1} +{"crc":59451,"length":16,"msg_type":259,"payload":"EejJLhDkBwMZAxgr/gevLw==","preamble":85,"sender":22963,"flags":17,"tow":271501800,"year":2020,"month":3,"day":25,"hours":3,"minutes":24,"seconds":43,"ns":799999998} +{"crc":63822,"length":34,"msg_type":522,"payload":"6MkuEHHTM+Fl6kJAvrCdJFaSXsAFDWR8W20xwAECWwQPBg==","preamble":85,"sender":22963,"tow":271501800,"lat":37.83123412161411,"lon":-122.28650775336698,"height":-17.427177214075545,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":50525,"length":22,"msg_type":526,"payload":"6MkuEPf///8AAAAA/f////AAyQIPAg==","preamble":85,"sender":22963,"tow":271501800,"n":-9,"e":0,"d":-3,"h_accuracy":240,"v_accuracy":713,"n_sats":15,"flags":2} +{"crc":13689,"length":15,"msg_type":520,"payload":"6MkuEJsAhwBNAEgAcgAG","preamble":85,"sender":22963,"tow":271501800,"gdop":155,"pdop":135,"tdop":77,"hdop":72,"vdop":114,"flags":6} +{"crc":45217,"length":22,"msg_type":524,"payload":"6MkuEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271501800,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":2253,"length":6,"msg_type":528,"payload":"6MkuEP//","preamble":85,"sender":22963,"tow":271501800,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":39138,"length":237,"msg_type":97,"payload":"BQDVFQCzAgC+HwCmAAAAAAAAGQDaDADOHQDUEgDOAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwLMGQHMDAG8HwGVEgHDHQHDAAAABQHCAAAAAAAAAAAAAAAACwPWCQOxFAOtBQPPCgPOAAAABAO3FQPMCQSsFATMAAAACwTIBQTCAAS5AAAABASwIwzIGgypIgyhGAy9GQycDAy5Ewy5Fgy/AAAADA3RAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADA7EAAAAGQ7BCw69GA7NAAAAHw6gIQ6aGRTIGBTXCxTCHxSsDBTPAAAAIRSqAAAA","preamble":85,"sender":22963,"states":[{"mesid":{"sat":5,"code":0},"cn0":213},{"mesid":{"sat":21,"code":0},"cn0":179},{"mesid":{"sat":2,"code":0},"cn0":190},{"mesid":{"sat":31,"code":0},"cn0":166},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":25,"code":0},"cn0":218},{"mesid":{"sat":12,"code":0},"cn0":206},{"mesid":{"sat":29,"code":0},"cn0":212},{"mesid":{"sat":18,"code":0},"cn0":206},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":131,"code":2},"cn0":204},{"mesid":{"sat":25,"code":1},"cn0":204},{"mesid":{"sat":12,"code":1},"cn0":188},{"mesid":{"sat":31,"code":1},"cn0":149},{"mesid":{"sat":18,"code":1},"cn0":195},{"mesid":{"sat":29,"code":1},"cn0":195},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":5,"code":1},"cn0":194},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":11,"code":3},"cn0":214},{"mesid":{"sat":9,"code":3},"cn0":177},{"mesid":{"sat":20,"code":3},"cn0":173},{"mesid":{"sat":5,"code":3},"cn0":207},{"mesid":{"sat":10,"code":3},"cn0":206},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":4,"code":3},"cn0":183},{"mesid":{"sat":21,"code":3},"cn0":204},{"mesid":{"sat":9,"code":4},"cn0":172},{"mesid":{"sat":20,"code":4},"cn0":204},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":11,"code":4},"cn0":200},{"mesid":{"sat":5,"code":4},"cn0":194},{"mesid":{"sat":0,"code":4},"cn0":185},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":4,"code":4},"cn0":176},{"mesid":{"sat":35,"code":12},"cn0":200},{"mesid":{"sat":26,"code":12},"cn0":169},{"mesid":{"sat":34,"code":12},"cn0":161},{"mesid":{"sat":24,"code":12},"cn0":189},{"mesid":{"sat":25,"code":12},"cn0":156},{"mesid":{"sat":12,"code":12},"cn0":185},{"mesid":{"sat":19,"code":12},"cn0":185},{"mesid":{"sat":22,"code":12},"cn0":191},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":12,"code":13},"cn0":209},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":12,"code":14},"cn0":196},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":25,"code":14},"cn0":193},{"mesid":{"sat":11,"code":14},"cn0":189},{"mesid":{"sat":24,"code":14},"cn0":205},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":31,"code":14},"cn0":160},{"mesid":{"sat":33,"code":14},"cn0":154},{"mesid":{"sat":25,"code":20},"cn0":200},{"mesid":{"sat":24,"code":20},"cn0":215},{"mesid":{"sat":11,"code":20},"cn0":194},{"mesid":{"sat":31,"code":20},"cn0":172},{"mesid":{"sat":12,"code":20},"cn0":207},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":33,"code":20},"cn0":170},{"mesid":{"sat":0,"code":0},"cn0":0}]} +{"crc":16538,"length":11,"msg_type":258,"payload":"MghMyi4QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271501900,"ns_residual":0,"flags":1} +{"crc":54445,"length":16,"msg_type":259,"payload":"EUzKLhDkBwMZAxgr/uikNQ==","preamble":85,"sender":22963,"flags":17,"tow":271501900,"year":2020,"month":3,"day":25,"hours":3,"minutes":24,"seconds":43,"ns":899999998} +{"crc":21530,"length":34,"msg_type":522,"payload":"TMouEPJB/+Bl6kJAq0GtJFaSXsBJGIRUCnAxwAECWwQPBg==","preamble":85,"sender":22963,"tow":271501900,"lat":37.83123409713507,"lon":-122.28650776786405,"height":-17.43765762543652,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":31336,"length":22,"msg_type":526,"payload":"TMouEAQAAAAFAAAAGgAAAPAAyQIPAg==","preamble":85,"sender":22963,"tow":271501900,"n":4,"e":5,"d":26,"h_accuracy":240,"v_accuracy":713,"n_sats":15,"flags":2} +{"crc":60014,"length":15,"msg_type":520,"payload":"TMouEJsAhwBNAEgAcgAG","preamble":85,"sender":22963,"tow":271501900,"gdop":155,"pdop":135,"tdop":77,"hdop":72,"vdop":114,"flags":6} +{"crc":43491,"length":22,"msg_type":524,"payload":"TMouEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271501900,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":406,"length":6,"msg_type":528,"payload":"TMouEP//","preamble":85,"sender":22963,"tow":271501900,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":9387,"length":249,"msg_type":74,"payload":"sMouEAAAAAAyCEBDqLM+bwqXBtRU/53VDw8FAA3vGkVmVEMHXoQIb7MPDxUA6OPtRX+AWQdZVPZbvg8PAgD50wFJcFCsBz99/jemDw8fAK7xIz3PB20GtaP7IdoPDxkALo2vQLlrzAa6cfRHzg8PDAAAW9M+SF+aBmHQBanUDw8dAMfxIz2f1wEFEZr8ZMwPDxkB+IyvQCssTAVh//ZGuw8PDAGj0wFJbaL6BdDT/s2VDw8fAbRa0z5ULCUF0YgEK8MPDx0BAaizPuKTIgUeev/Dwg8PBQHyhv4+hIG7BoabBMXVDw8LAxGLzURyG1kHDMvujLEPDwkD","preamble":85,"sender":22963,"header":{"t":{"tow":271502000,"ns_residual":0,"wn":2098},"n_obs":64},"obs":[{"P":1051961411,"L":{"i":110561903,"f":212},"D":{"i":-172,"f":157},"cn0":213,"lock":15,"flags":15,"sid":{"sat":5,"code":0}},{"P":1159393037,"L":{"i":121853030,"f":94},"D":{"i":2180,"f":111},"cn0":179,"lock":15,"flags":15,"sid":{"sat":21,"code":0}},{"P":1173218280,"L":{"i":123306111,"f":89},"D":{"i":-2476,"f":91},"cn0":190,"lock":15,"flags":15,"sid":{"sat":2,"code":0}},{"P":1224856569,"L":{"i":128733296,"f":63},"D":{"i":-387,"f":55},"cn0":166,"lock":15,"flags":15,"sid":{"sat":31,"code":0}},{"P":1025765806,"L":{"i":107808719,"f":181},"D":{"i":-1117,"f":33},"cn0":218,"lock":15,"flags":15,"sid":{"sat":25,"code":0}},{"P":1085246766,"L":{"i":114060217,"f":186},"D":{"i":-2959,"f":71},"cn0":206,"lock":15,"flags":15,"sid":{"sat":12,"code":0}},{"P":1054038784,"L":{"i":110780232,"f":97},"D":{"i":1488,"f":169},"cn0":212,"lock":15,"flags":15,"sid":{"sat":29,"code":0}},{"P":1025765831,"L":{"i":84006815,"f":17},"D":{"i":-870,"f":100},"cn0":204,"lock":15,"flags":15,"sid":{"sat":25,"code":1}},{"P":1085246712,"L":{"i":88878123,"f":97},"D":{"i":-2305,"f":70},"cn0":187,"lock":15,"flags":15,"sid":{"sat":12,"code":1}},{"P":1224856483,"L":{"i":100311661,"f":208},"D":{"i":-301,"f":205},"cn0":149,"lock":15,"flags":15,"sid":{"sat":31,"code":1}},{"P":1054038708,"L":{"i":86322260,"f":209},"D":{"i":1160,"f":43},"cn0":195,"lock":15,"flags":15,"sid":{"sat":29,"code":1}},{"P":1051961345,"L":{"i":86152162,"f":30},"D":{"i":-134,"f":195},"cn0":194,"lock":15,"flags":15,"sid":{"sat":5,"code":1}},{"P":1056868082,"L":{"i":112951684,"f":134},"D":{"i":1179,"f":197},"cn0":213,"lock":15,"flags":15,"sid":{"sat":11,"code":3}},{"P":1154321169,"L":{"i":123280242,"f":12},"D":{"i":-4405,"f":140},"cn0":177,"lock":15,"flags":15,"sid":{"sat":9,"code":3}}]} +{"crc":18554,"length":249,"msg_type":74,"payload":"sMouEAAAAAAyCEGTPis9qb2KBrlK+36tDw8UA4gdDUBFCtkGF6EIs88PDwUDdv5fPlRepgZPJfTGzg8PCgM8BQVDdIAtB1Po+oO3Dw8EAwN+LT8A9MIG0loG2cwPDxUDp4vNRGIVtwVXnPK2rA8PCQTePys9p5MWBbpV/LDMDw8UBAyI/j44gTwFhZUDPMgPDwsEeR4NQMd5UwW/tgbkwg8PBQQFBgVD+yqVBVsK/AWwDw8EBFKHkkXl4T4HJSf6osgPDyMMMQTuSfwNswc+Q/TwqQ8PGgyfjhpMHQTtB9nLCIGgDw8iDHAmnkcjanUHZvD6770PDxgM","preamble":85,"sender":22963,"header":{"t":{"tow":271502000,"ns_residual":0,"wn":2098},"n_obs":65},"obs":[{"P":1026244243,"L":{"i":109755817,"f":185},"D":{"i":-1206,"f":126},"cn0":173,"lock":15,"flags":15,"sid":{"sat":20,"code":3}},{"P":1074601352,"L":{"i":114887237,"f":23},"D":{"i":2209,"f":179},"cn0":207,"lock":15,"flags":15,"sid":{"sat":5,"code":3}},{"P":1046478454,"L":{"i":111566420,"f":79},"D":{"i":-3035,"f":198},"cn0":206,"lock":15,"flags":15,"sid":{"sat":10,"code":3}},{"P":1124402492,"L":{"i":120422516,"f":83},"D":{"i":-1304,"f":131},"cn0":183,"lock":15,"flags":15,"sid":{"sat":4,"code":3}},{"P":1059945987,"L":{"i":113439744,"f":210},"D":{"i":1626,"f":217},"cn0":204,"lock":15,"flags":15,"sid":{"sat":21,"code":3}},{"P":1154321319,"L":{"i":95884642,"f":87},"D":{"i":-3428,"f":182},"cn0":172,"lock":15,"flags":15,"sid":{"sat":9,"code":4}},{"P":1026244574,"L":{"i":85365671,"f":186},"D":{"i":-939,"f":176},"cn0":204,"lock":15,"flags":15,"sid":{"sat":20,"code":4}},{"P":1056868364,"L":{"i":87851320,"f":133},"D":{"i":917,"f":60},"cn0":200,"lock":15,"flags":15,"sid":{"sat":11,"code":4}},{"P":1074601593,"L":{"i":89356743,"f":191},"D":{"i":1718,"f":228},"cn0":194,"lock":15,"flags":15,"sid":{"sat":5,"code":4}},{"P":1124402693,"L":{"i":93661947,"f":91},"D":{"i":-1014,"f":5},"cn0":176,"lock":15,"flags":15,"sid":{"sat":4,"code":4}},{"P":1167230802,"L":{"i":121561573,"f":37},"D":{"i":-1497,"f":162},"cn0":200,"lock":15,"flags":15,"sid":{"sat":35,"code":12}},{"P":1240335409,"L":{"i":129175036,"f":62},"D":{"i":-3005,"f":240},"cn0":169,"lock":15,"flags":15,"sid":{"sat":26,"code":12}},{"P":1276808863,"L":{"i":132973597,"f":217},"D":{"i":2251,"f":129},"cn0":160,"lock":15,"flags":15,"sid":{"sat":34,"code":12}},{"P":1201546864,"L":{"i":125135395,"f":102},"D":{"i":-1296,"f":239},"cn0":189,"lock":15,"flags":15,"sid":{"sat":24,"code":12}}]} +{"crc":29286,"length":249,"msg_type":74,"payload":"sMouEAAAAAAyCEIZ0BVNzi4HCH01BTKcDw8ZDE3MUUX8IzgHl04GO7kPDwwM1btCR+Pkawdz5v7ZuQ8PEwziS2NHCElvB0xZCVW/Dw8WDPPLUUWCGZUF8eAEudEPDwwNmzgFQpNU8AZgAPyJxA8PDA7J9iJLxZvlBztHBJTBDw8ZDikFI0fB/XkHixwEWr0PDwsOa5AkQ82HDgexNvlxzQ8PGA6VLkJR9VKKCAGf81KhDw8fDq+e8lEp3pwIzaX3mZsPDyEOpPYiS08GDQa3SAO8yA8PGRSCkiRDwjloBZTN+hjXDw8YFHEEI0d6kLoFzyYDA8IPDwsU","preamble":85,"sender":22963,"header":{"t":{"tow":271502000,"ns_residual":0,"wn":2098},"n_obs":66},"obs":[{"P":1293275161,"L":{"i":134688462,"f":125},"D":{"i":1333,"f":50},"cn0":156,"lock":15,"flags":15,"sid":{"sat":25,"code":12}},{"P":1162988621,"L":{"i":121119740,"f":151},"D":{"i":1614,"f":59},"cn0":185,"lock":15,"flags":15,"sid":{"sat":12,"code":12}},{"P":1195555797,"L":{"i":124511459,"f":115},"D":{"i":-282,"f":217},"cn0":185,"lock":15,"flags":15,"sid":{"sat":19,"code":12}},{"P":1197689826,"L":{"i":124733704,"f":76},"D":{"i":2393,"f":85},"cn0":191,"lock":15,"flags":15,"sid":{"sat":22,"code":12}},{"P":1162988531,"L":{"i":93657474,"f":241},"D":{"i":1248,"f":185},"cn0":209,"lock":15,"flags":15,"sid":{"sat":12,"code":13}},{"P":1107638427,"L":{"i":116413587,"f":96},"D":{"i":-1024,"f":137},"cn0":196,"lock":15,"flags":15,"sid":{"sat":12,"code":14}},{"P":1260582601,"L":{"i":132488133,"f":59},"D":{"i":1095,"f":148},"cn0":193,"lock":15,"flags":15,"sid":{"sat":25,"code":14}},{"P":1193477417,"L":{"i":125435329,"f":139},"D":{"i":1052,"f":90},"cn0":189,"lock":15,"flags":15,"sid":{"sat":11,"code":14}},{"P":1126469739,"L":{"i":118392781,"f":177},"D":{"i":-1738,"f":113},"cn0":205,"lock":15,"flags":15,"sid":{"sat":24,"code":14}},{"P":1363291797,"L":{"i":143282933,"f":1},"D":{"i":-3169,"f":82},"cn0":161,"lock":15,"flags":15,"sid":{"sat":31,"code":14}},{"P":1374854831,"L":{"i":144498217,"f":205},"D":{"i":-2139,"f":153},"cn0":155,"lock":15,"flags":15,"sid":{"sat":33,"code":14}},{"P":1260582564,"L":{"i":101516879,"f":183},"D":{"i":840,"f":188},"cn0":200,"lock":15,"flags":15,"sid":{"sat":25,"code":20}},{"P":1126470274,"L":{"i":90716610,"f":148},"D":{"i":-1331,"f":24},"cn0":215,"lock":15,"flags":15,"sid":{"sat":24,"code":20}},{"P":1193477233,"L":{"i":96112762,"f":207},"D":{"i":806,"f":3},"cn0":194,"lock":15,"flags":15,"sid":{"sat":11,"code":20}}]} +{"crc":38695,"length":62,"msg_type":74,"payload":"sMouEAAAAAAyCEOuLkJRZjyLBuyE9kGsDw8fFAM4BUK0FVEFGfH8Jc8PDwwUh57yUfxxmQYqmflKqg8PIRQ=","preamble":85,"sender":22963,"header":{"t":{"tow":271502000,"ns_residual":0,"wn":2098},"n_obs":67},"obs":[{"P":1363291822,"L":{"i":109788262,"f":236},"D":{"i":-2428,"f":65},"cn0":172,"lock":15,"flags":15,"sid":{"sat":31,"code":20}},{"P":1107638275,"L":{"i":89200052,"f":25},"D":{"i":-783,"f":37},"cn0":207,"lock":15,"flags":15,"sid":{"sat":12,"code":20}},{"P":1374854791,"L":{"i":110719484,"f":42},"D":{"i":-1639,"f":74},"cn0":170,"lock":15,"flags":15,"sid":{"sat":33,"code":20}}]} +{"crc":49809,"length":9,"msg_type":117,"payload":"/wAAAAAAAAAA","preamble":85,"sender":22963,"mask":255,"l1ca_bias":0,"l1p_bias":0,"l2ca_bias":0,"l2p_bias":0} +{"crc":57827,"length":11,"msg_type":258,"payload":"Mgiwyi4QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271502000,"ns_residual":0,"flags":1} +{"crc":45949,"length":16,"msg_type":259,"payload":"EbDKLhDkBwMZAxgr/smaOw==","preamble":85,"sender":22963,"flags":17,"tow":271502000,"year":2020,"month":3,"day":25,"hours":3,"minutes":24,"seconds":43,"ns":999999998} +{"crc":65292,"length":34,"msg_type":522,"payload":"sMouEDMQv+Bl6kJAtK7CJFaSXsC2Rdw593ExwAECWwQPBg==","preamble":85,"sender":22963,"tow":271502000,"lat":37.83123406724226,"lon":-122.2865077878185,"height":-17.445178619649333,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":6208,"length":22,"msg_type":526,"payload":"sMouEPH///8CAAAA+/////AAyQIPAg==","preamble":85,"sender":22963,"tow":271502000,"n":-15,"e":2,"d":-5,"h_accuracy":240,"v_accuracy":713,"n_sats":15,"flags":2} +{"crc":64284,"length":15,"msg_type":520,"payload":"sMouEJsAhwBNAEgAcgAG","preamble":85,"sender":22963,"tow":271502000,"gdop":155,"pdop":135,"tdop":77,"hdop":72,"vdop":114,"flags":6} +{"crc":59429,"length":22,"msg_type":524,"payload":"sMouEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271502000,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":39881,"length":6,"msg_type":528,"payload":"sMouEP//","preamble":85,"sender":22963,"tow":271502000,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":40942,"length":4,"msg_type":65535,"payload":"AAUCgA==","preamble":85,"sender":22963,"flags":2147616000} +{"crc":2168,"length":24,"msg_type":72,"payload":"UO0a3iqORMHK1UJhIkRQwc9nFIPvrk1B","preamble":85,"sender":22963,"x":-2694229.735196747,"y":-4264073.519704292,"z":3890655.0240602265} +{"crc":47991,"length":26,"msg_type":23,"payload":"bWFpbgAAAAAAAAAAAAAAAAAAAAAAAAx1AAA=","preamble":85,"sender":22963,"name":"main\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":0,"stack_free":29964} +{"crc":32761,"length":26,"msg_type":23,"payload":"aWRsZQAAAAAAAAAAAAAAAAAAAABjAXwAAAA=","preamble":85,"sender":22963,"name":"idle\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":355,"stack_free":124} +{"crc":53198,"length":26,"msg_type":23,"payload":"cnBtc2cAAAAAAAAAAAAAAAAAAAABAOwNAAA=","preamble":85,"sender":22963,"name":"rpmsg\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":1,"stack_free":3564} +{"crc":51784,"length":26,"msg_type":23,"payload":"U0JQAAAAAAAAAAAAAAAAAAAAAAAAAPz/AAA=","preamble":85,"sender":22963,"name":"SBP\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":0,"stack_free":65532} +{"crc":33651,"length":26,"msg_type":23,"payload":"TkFQAAAAAAAAAAAAAAAAAAAAAAAAAASAAAA=","preamble":85,"sender":22963,"name":"NAP\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":0,"stack_free":32772} +{"crc":29877,"length":26,"msg_type":23,"payload":"bWFuYWdlIFBWAAAAAAAAAAAAAAAAACQEAAA=","preamble":85,"sender":22963,"name":"manage PV\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":0,"stack_free":1060} +{"crc":14252,"length":26,"msg_type":23,"payload":"SU1VAAAAAAAAAAAAAAAAAAAAAAAAAPQHAAA=","preamble":85,"sender":22963,"name":"IMU\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":0,"stack_free":2036} +{"crc":18976,"length":26,"msg_type":23,"payload":"SU1VIGF1eAAAAAAAAAAAAAAAAAAAAEwIAAA=","preamble":85,"sender":22963,"name":"IMU aux\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":0,"stack_free":2124} +{"crc":26120,"length":26,"msg_type":23,"payload":"bmRiAAAAAAAAAAAAAAAAAAAAAAAAAFAMAAA=","preamble":85,"sender":22963,"name":"ndb\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":0,"stack_free":3152} +{"crc":33839,"length":26,"msg_type":23,"payload":"TkFQIFRyYWNraW5nAAAAAAAAAAAeAdR3AAA=","preamble":85,"sender":22963,"name":"NAP Tracking\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":286,"stack_free":30676} +{"crc":55602,"length":26,"msg_type":23,"payload":"ZGVjb2RlAAAAAAAAAAAAAAAAAAAJANQGAAA=","preamble":85,"sender":22963,"name":"decode\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":9,"stack_free":1748} +{"crc":54128,"length":26,"msg_type":23,"payload":"bWFuYWdlIGFjcQAAAAAAAAAAAAC7AKR3AAA=","preamble":85,"sender":22963,"name":"manage acq\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":187,"stack_free":30628} +{"crc":58531,"length":26,"msg_type":23,"payload":"c3lzdGVtIG1vbml0b3IAAAAAAAAAACwGAAA=","preamble":85,"sender":22963,"name":"system monitor\u0000\u0000\u0000\u0000\u0000\u0000","cpu":0,"stack_free":1580} +{"crc":44438,"length":26,"msg_type":23,"payload":"V2F0Y2hkb2cAAAAAAAAAAAAAAAAAAOQDAAA=","preamble":85,"sender":22963,"name":"Watchdog\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":0,"stack_free":996} +{"crc":15999,"length":26,"msg_type":23,"payload":"c3RhcmxpbmcAAAAAAAAAAAAAAACVAPz/AAA=","preamble":85,"sender":22963,"name":"starling\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":149,"stack_free":65532} +{"crc":57561,"length":26,"msg_type":23,"payload":"bWVfY2FsY19wdnQAAAAAAAAAAAAJAIwjAAA=","preamble":85,"sender":22963,"name":"me_calc_pvt\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":9,"stack_free":9100} +{"crc":38576,"length":26,"msg_type":23,"payload":"UFBTAAAAAAAAAAAAAAAAAAAAAAAAAEgHAAA=","preamble":85,"sender":22963,"name":"PPS\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":0,"stack_free":1864} +{"crc":50933,"length":26,"msg_type":23,"payload":"c3BlY3RydW0gYW5hbHl6ZXIAAAAAANQPAAA=","preamble":85,"sender":22963,"name":"spectrum analyzer\u0000\u0000\u0000","cpu":0,"stack_free":4052} +{"crc":8849,"length":11,"msg_type":258,"payload":"MggUyy4QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271502100,"ns_residual":0,"flags":1} +{"crc":10658,"length":16,"msg_type":259,"payload":"ERTLLhDkBwMZAxgs/uD1BQ==","preamble":85,"sender":22963,"flags":17,"tow":271502100,"year":2020,"month":3,"day":25,"hours":3,"minutes":24,"seconds":44,"ns":99999998} +{"crc":14006,"length":34,"msg_type":522,"payload":"FMsuEOogtuBl6kJAkNrHJFaSXsAVgY8XYHQxwAECWwQPBg==","preamble":85,"sender":22963,"tow":271502100,"lat":37.83123406308171,"lon":-122.28650779263467,"height":-17.45459124806901,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":22326,"length":22,"msg_type":526,"payload":"FMsuEAcAAAANAAAAEwAAAPAAyQIPAg==","preamble":85,"sender":22963,"tow":271502100,"n":7,"e":13,"d":19,"h_accuracy":240,"v_accuracy":713,"n_sats":15,"flags":2} +{"crc":53961,"length":15,"msg_type":520,"payload":"FMsuEJsAhwBNAEgAcgAG","preamble":85,"sender":22963,"tow":271502100,"gdop":155,"pdop":135,"tdop":77,"hdop":72,"vdop":114,"flags":6} +{"crc":19114,"length":22,"msg_type":524,"payload":"FMsuEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271502100,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":54801,"length":6,"msg_type":528,"payload":"FMsuEP//","preamble":85,"sender":22963,"tow":271502100,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":28580,"length":11,"msg_type":258,"payload":"Mgh4yy4QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271502200,"ns_residual":0,"flags":1} +{"crc":21004,"length":16,"msg_type":259,"payload":"EXjLLhDkBwMZAxgs/sHrCw==","preamble":85,"sender":22963,"flags":17,"tow":271502200,"year":2020,"month":3,"day":25,"hours":3,"minutes":24,"seconds":44,"ns":199999998} +{"crc":54217,"length":34,"msg_type":522,"payload":"eMsuENt0i+Bl6kJA4hvoJFaSXsAWgKHeyHUxwAECWwQPBg==","preamble":85,"sender":22963,"tow":271502200,"lat":37.83123404321096,"lon":-122.28650782267462,"height":-17.460096277645867,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":6437,"length":22,"msg_type":526,"payload":"eMsuEPv////7////5P////AAyQIPAg==","preamble":85,"sender":22963,"tow":271502200,"n":-5,"e":-5,"d":-28,"h_accuracy":240,"v_accuracy":713,"n_sats":15,"flags":2} +{"crc":55587,"length":15,"msg_type":520,"payload":"eMsuEJsAhwBNAEgAcgAG","preamble":85,"sender":22963,"tow":271502200,"gdop":155,"pdop":135,"tdop":77,"hdop":72,"vdop":114,"flags":6} +{"crc":3263,"length":22,"msg_type":524,"payload":"eMsuEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271502200,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":33514,"length":6,"msg_type":528,"payload":"eMsuEP//","preamble":85,"sender":22963,"tow":271502200,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":60165,"length":11,"msg_type":258,"payload":"Mgjcyy4QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271502300,"ns_residual":0,"flags":1} +{"crc":40499,"length":16,"msg_type":259,"payload":"EdzLLhDkBwMZAxgs/qLhEQ==","preamble":85,"sender":22963,"flags":17,"tow":271502300,"year":2020,"month":3,"day":25,"hours":3,"minutes":24,"seconds":44,"ns":299999998} +{"crc":26149,"length":34,"msg_type":522,"payload":"3MsuENHvdOBl6kJAeAz6JFaSXsAcdGBdg3gxwAECWwQPBg==","preamble":85,"sender":22963,"tow":271502300,"lat":37.83123403272442,"lon":-122.28650783938235,"height":-17.470754467056494,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":32383,"length":22,"msg_type":526,"payload":"3MsuEAcAAAD6////CwAAAPAAyQIPAg==","preamble":85,"sender":22963,"tow":271502300,"n":7,"e":-6,"d":11,"h_accuracy":240,"v_accuracy":713,"n_sats":15,"flags":2} +{"crc":35735,"length":15,"msg_type":520,"payload":"3MsuEJsAhwBNAEgAcgAG","preamble":85,"sender":22963,"tow":271502300,"gdop":155,"pdop":135,"tdop":77,"hdop":72,"vdop":114,"flags":6} +{"crc":31686,"length":22,"msg_type":524,"payload":"3MsuEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271502300,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":25955,"length":6,"msg_type":528,"payload":"3MsuEP//","preamble":85,"sender":22963,"tow":271502300,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":36413,"length":237,"msg_type":97,"payload":"BQDVFQCzAgC+HwCmAAAAAAAAGQDaDADNHQDUEgDOAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwLNGQHMDAG7HwGWEgHDHQHCAAAABQHCAAAAAAAAAAAAAAAAZAPVYgOxZgOtZQPPXQPOAAAAagO3aAPMYgSsZgTNXQRNZATHZQTCaAS5AAAAagSvIwzIGgypIgyhGAy9GQycDAy5Ewy5Fgy/AAAADA3RAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADA7EAAAAGQ7BCw69GA7NAAAAHw6hIQ6aGRTIGBTXCxTCHxStDBTOAAAAIRSqAAAA","preamble":85,"sender":22963,"states":[{"mesid":{"sat":5,"code":0},"cn0":213},{"mesid":{"sat":21,"code":0},"cn0":179},{"mesid":{"sat":2,"code":0},"cn0":190},{"mesid":{"sat":31,"code":0},"cn0":166},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":25,"code":0},"cn0":218},{"mesid":{"sat":12,"code":0},"cn0":205},{"mesid":{"sat":29,"code":0},"cn0":212},{"mesid":{"sat":18,"code":0},"cn0":206},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":131,"code":2},"cn0":205},{"mesid":{"sat":25,"code":1},"cn0":204},{"mesid":{"sat":12,"code":1},"cn0":187},{"mesid":{"sat":31,"code":1},"cn0":150},{"mesid":{"sat":18,"code":1},"cn0":195},{"mesid":{"sat":29,"code":1},"cn0":194},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":5,"code":1},"cn0":194},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":100,"code":3},"cn0":213},{"mesid":{"sat":98,"code":3},"cn0":177},{"mesid":{"sat":102,"code":3},"cn0":173},{"mesid":{"sat":101,"code":3},"cn0":207},{"mesid":{"sat":93,"code":3},"cn0":206},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":106,"code":3},"cn0":183},{"mesid":{"sat":104,"code":3},"cn0":204},{"mesid":{"sat":98,"code":4},"cn0":172},{"mesid":{"sat":102,"code":4},"cn0":205},{"mesid":{"sat":93,"code":4},"cn0":77},{"mesid":{"sat":100,"code":4},"cn0":199},{"mesid":{"sat":101,"code":4},"cn0":194},{"mesid":{"sat":104,"code":4},"cn0":185},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":106,"code":4},"cn0":175},{"mesid":{"sat":35,"code":12},"cn0":200},{"mesid":{"sat":26,"code":12},"cn0":169},{"mesid":{"sat":34,"code":12},"cn0":161},{"mesid":{"sat":24,"code":12},"cn0":189},{"mesid":{"sat":25,"code":12},"cn0":156},{"mesid":{"sat":12,"code":12},"cn0":185},{"mesid":{"sat":19,"code":12},"cn0":185},{"mesid":{"sat":22,"code":12},"cn0":191},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":12,"code":13},"cn0":209},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":12,"code":14},"cn0":196},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":25,"code":14},"cn0":193},{"mesid":{"sat":11,"code":14},"cn0":189},{"mesid":{"sat":24,"code":14},"cn0":205},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":31,"code":14},"cn0":161},{"mesid":{"sat":33,"code":14},"cn0":154},{"mesid":{"sat":25,"code":20},"cn0":200},{"mesid":{"sat":24,"code":20},"cn0":215},{"mesid":{"sat":11,"code":20},"cn0":194},{"mesid":{"sat":31,"code":20},"cn0":173},{"mesid":{"sat":12,"code":20},"cn0":206},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":33,"code":20},"cn0":170},{"mesid":{"sat":0,"code":0},"cn0":0}]} +{"crc":30017,"length":11,"msg_type":258,"payload":"MghAzC4QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271502400,"ns_residual":0,"flags":1} +{"crc":13913,"length":16,"msg_type":259,"payload":"EUDMLhDkBwMZAxgs/oPXFw==","preamble":85,"sender":22963,"flags":17,"tow":271502400,"year":2020,"month":3,"day":25,"hours":3,"minutes":24,"seconds":44,"ns":399999998} +{"crc":21818,"length":34,"msg_type":522,"payload":"QMwuEM/0KuBl6kJAZboIJVaSXsAsPczQ+HkxwAECWwQPBg==","preamble":85,"sender":22963,"tow":271502400,"lat":37.83123399827456,"lon":-122.2865078530536,"height":-17.4764528750067,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":28536,"length":22,"msg_type":526,"payload":"QMwuEPj////8////DgAAAPAAyQIPAg==","preamble":85,"sender":22963,"tow":271502400,"n":-8,"e":-4,"d":14,"h_accuracy":240,"v_accuracy":713,"n_sats":15,"flags":2} +{"crc":24062,"length":15,"msg_type":520,"payload":"QMwuEJsAhwBNAEgAcgAG","preamble":85,"sender":22963,"tow":271502400,"gdop":155,"pdop":135,"tdop":77,"hdop":72,"vdop":114,"flags":6} +{"crc":35959,"length":22,"msg_type":524,"payload":"QMwuEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271502400,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":51184,"length":6,"msg_type":528,"payload":"QMwuEP//","preamble":85,"sender":22963,"tow":271502400,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":49809,"length":9,"msg_type":117,"payload":"/wAAAAAAAAAA","preamble":85,"sender":22963,"mask":255,"l1ca_bias":0,"l1p_bias":0,"l2ca_bias":0,"l2p_bias":0} +{"crc":44601,"length":11,"msg_type":258,"payload":"MgikzC4QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271502500,"ns_residual":0,"flags":1} +{"crc":9911,"length":16,"msg_type":259,"payload":"EaTMLhDkBwMZAxgs/mTNHQ==","preamble":85,"sender":22963,"flags":17,"tow":271502500,"year":2020,"month":3,"day":25,"hours":3,"minutes":24,"seconds":44,"ns":499999998} +{"crc":22430,"length":34,"msg_type":522,"payload":"pMwuEMjb/d9l6kJArev9JFaSXsDHE42kQnwxwAECWwQPBg==","preamble":85,"sender":22963,"tow":271502500,"lat":37.83123397727428,"lon":-122.28650784298834,"height":-17.485391888086976,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":54181,"length":22,"msg_type":526,"payload":"pMwuEAAAAAAFAAAAAgAAAPAAyQIPAg==","preamble":85,"sender":22963,"tow":271502500,"n":0,"e":5,"d":2,"h_accuracy":240,"v_accuracy":713,"n_sats":15,"flags":2} +{"crc":9539,"length":15,"msg_type":520,"payload":"pMwuEJsAhwBNAEgAcgAG","preamble":85,"sender":22963,"tow":271502500,"gdop":155,"pdop":135,"tdop":77,"hdop":72,"vdop":114,"flags":6} +{"crc":11860,"length":22,"msg_type":524,"payload":"pMwuEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271502500,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":19049,"length":6,"msg_type":528,"payload":"pMwuEP//","preamble":85,"sender":22963,"tow":271502500,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":17588,"length":11,"msg_type":258,"payload":"MggIzS4QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271502600,"ns_residual":0,"flags":1} +{"crc":27971,"length":16,"msg_type":259,"payload":"EQjNLhDkBwMZAxgs/kXDIw==","preamble":85,"sender":22963,"flags":17,"tow":271502600,"year":2020,"month":3,"day":25,"hours":3,"minutes":24,"seconds":44,"ns":599999998} +{"crc":12765,"length":34,"msg_type":522,"payload":"CM0uENta3N9l6kJAJkP8JFaSXsAPW/BfjX0xwAECWwQPBg==","preamble":85,"sender":22963,"tow":271502600,"lat":37.83123396167294,"lon":-122.28650784144392,"height":-17.490438457661238,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":58278,"length":22,"msg_type":526,"payload":"CM0uEAEAAAADAAAA8f////AAyQIPAg==","preamble":85,"sender":22963,"tow":271502600,"n":1,"e":3,"d":-15,"h_accuracy":240,"v_accuracy":713,"n_sats":15,"flags":2} +{"crc":11219,"length":15,"msg_type":520,"payload":"CM0uEJsAhwBNAEgAcgAG","preamble":85,"sender":22963,"tow":271502600,"gdop":155,"pdop":135,"tdop":77,"hdop":72,"vdop":114,"flags":6} +{"crc":53880,"length":22,"msg_type":524,"payload":"CM0uEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271502600,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":2803,"length":6,"msg_type":528,"payload":"CM0uEP//","preamble":85,"sender":22963,"tow":271502600,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":30051,"length":147,"msg_type":137,"payload":"Iwy+HgQAMggAAABAMCoAAAEAwwCGscMAhrEAgPlBANjTQgCwzDUAHFQ3AABIsgAAOjMUuSw6w7kuPn/O4GKYQgBAAAAAgJKsSD8AAEDjnqK0QJ1VR5JSigbAf+7mjHBQPL5w7E/+60+tv7WNXBae1O4/TfYYl9sb7T0AAACArUROvwAGni0AAAAAvh4EADIIh4cA","preamble":85,"sender":22963,"common":{"sid":{"sat":35,"code":12},"toe":{"tow":270014,"wn":2098},"ura":2.0,"fit_interval":10800,"valid":1,"health_bits":0},"tgd1":-3.9e-9,"tgd2":-3.9e-9,"c_rs":31.1875,"c_rc":105.921875,"c_uc":0.0000015250407,"c_us":0.000012642704,"c_ic":-1.1641532e-8,"c_is":4.33065e-8,"dn":3.576934707973788e-9,"m0":2.03251721619182,"ecc":0.000752994092181325,"sqrta":5282.620655059814,"omega0":-2.817540304948763,"omegadot":-6.592417457791331e-9,"w":-0.05725038031956664,"inc":0.963454288172605,"inc_dot":2.1179453637827823e-10,"af0":-0.000923714367672801,"af1":1.7965185e-11,"af2":0.0,"toc":{"tow":270014,"wn":2098},"iode":135,"iodc":135} +{"crc":36026,"length":147,"msg_type":137,"payload":"Ggy+HgQAMggAAABAMCoAAAEAjyjOsY8ozrEACItCAAKUQwDIajYAMFE2AACGMwAAADHP95QuoDAyPiLf2/NWewdAAAAAAAXqRT8AAKA5nqK0QPup189o9PU//N6OmJlDP77QO8wk88PUP5/Et3R4h+4/gsMdrMKq/D0AAACAiUhEPwAwdy0AAAAAvh4EADIIh4cA","preamble":85,"sender":22963,"common":{"sid":{"sat":26,"code":12},"toe":{"tow":270014,"wn":2098},"ura":2.0,"fit_interval":10800,"valid":1,"health_bits":0},"tgd1":-6e-9,"tgd2":-6e-9,"c_rs":69.515625,"c_rc":296.01562,"c_uc":0.0000034985133,"c_us":0.0000031171367,"c_ic":6.239861e-8,"c_is":1.8626451e-9,"dn":4.235176412097173e-9,"m0":2.935224442622613,"ecc":0.0006687664426863194,"sqrta":5282.61806678772,"omega0":1.372170268902322,"omegadot":-7.279231780650402e-9,"w":0.32445982545408203,"inc":0.9540369300504102,"inc_dot":4.1716023354102695e-10,"af0":0.0006189986597746611,"af1":1.4050983e-11,"af2":0.0,"toc":{"tow":270014,"wn":2098},"iode":135,"iodc":135} +{"crc":37866,"length":147,"msg_type":137,"payload":"GAy+HgQAMggAAABAMCoAAAEA/+bbMf/m2zEA+IVCAKiTQwBQXjYAoEo2AABYMwAAjLIVM8pGpbAyPiifS3+Dnf4/AAAAwBY8Qz8AAEACnaK0QCg91PljXPY/lGvUpVN9P742eTqWOAfjP+Iz0JJ5fe4/ndgi/RFG+D0AAABAEg5NvwAkli0AAAAAvh4EADIIh4cA","preamble":85,"sender":22963,"common":{"sid":{"sat":24,"code":12},"toe":{"tow":270014,"wn":2098},"ura":2.0,"fit_interval":10800,"valid":1,"health_bits":0},"tgd1":6.4e-9,"tgd2":6.4e-9,"c_rs":66.984375,"c_rc":295.3125,"c_uc":0.0000033127144,"c_us":0.0000030193478,"c_ic":5.029142e-8,"c_is":-1.6298145e-8,"dn":4.351609833445096e-9,"m0":1.9134554836727578,"ecc":0.0005869971355423331,"sqrta":5282.613315582275,"omega0":1.397556281943091,"omegadot":-7.331733967577227e-9,"w":0.5946314748905823,"inc":0.9528167598197081,"inc_dot":3.532289991199278e-10,"af0":-0.0008866871939972043,"af1":1.7069013e-11,"af2":0.0,"toc":{"tow":270014,"wn":2098},"iode":135,"iodc":135} +{"crc":42543,"length":147,"msg_type":137,"payload":"DAy+HgQAMggAAABAMCoAAAEAzy4XMV9wCbAAABtCAMjSQgAw7zUArGE3AACoMgAAALJoI1sFfXQqPnhZ35WZjwVAAAAA4LVyUj8AAIB2oKK0QPC50DJHWwbA+Cbw+HE4O76Vghpf7of+v3czuyPlpO8/MRP6+nc/8D0AAAAAZh82PwCo3iwAAAAAvh4EADIIh4cA","preamble":85,"sender":22963,"common":{"sid":{"sat":12,"code":12},"toe":{"tow":270014,"wn":2098},"ura":2.0,"fit_interval":10800,"valid":1,"health_bits":0},"tgd1":2.2e-9,"tgd2":-5e-10,"c_rs":38.75,"c_rc":105.390625,"c_uc":0.0000017820857,"c_us":0.000013451092,"c_ic":1.9557774e-8,"c_is":-7.450581e-9,"dn":3.0797711419728383e-9,"m0":2.695117159727655,"ecc":0.0011259819148108363,"sqrta":5282.626808166504,"omega0":-2.794569394106695,"omegadot":-6.337763993309523e-9,"w":-1.9081863131506556,"inc":0.9888787935138755,"inc_dot":2.3643842003780805e-10,"af0":0.0003375648520886898,"af1":6.3282712e-12,"af2":0.0,"toc":{"tow":270014,"wn":2098},"iode":135,"iodc":135} +{"crc":22496,"length":147,"msg_type":137,"payload":"Ewy+HgQAMggAAABAMCoAAAEAUbI+MlGyPjIAILLCAMhnQwCQkbYAWNA2AAB4sgAAhbO3JwNJRSExPsX1sYGVhf4/AAAAwGZgTj8AACA1oKK0QLpUxzpa1+a/nPmKHYAmPr66HEOqzv3zv9CGs83N0u4/GoYZD6w0Bb4AAACAEbc3PwD8SC0AAAAAvh4EADIIh4cA","preamble":85,"sender":22963,"common":{"sid":{"sat":19,"code":12},"toe":{"tow":270014,"wn":2098},"ura":2.0,"fit_interval":10800,"valid":1,"health_bits":0},"tgd1":1.11e-8,"tgd2":1.11e-8,"c_rs":-89.0625,"c_rc":231.78125,"c_uc":-0.0000043381006,"c_us":0.0000062091276,"c_ic":-1.44355e-8,"c_is":-6.193295e-8,"dn":3.988380417767678e-9,"m0":1.9076132837502524,"ecc":0.0009270192822441459,"sqrta":5282.625810623169,"omega0":-0.7137881420154806,"omegadot":-7.019935265624045e-9,"w":-1.2494646693101417,"inc":0.9632329003909152,"inc_dot":-6.171685646908344e-10,"af0":0.0003618638729676604,"af1":1.1424639e-11,"af2":0.0,"toc":{"tow":270014,"wn":2098},"iode":135,"iodc":135} +{"crc":61525,"length":147,"msg_type":137,"payload":"Fgy+HgQAMggAAABAMCoAAAEA5fp/MuX6fzIAKLXCAChjQwDUmrYAhN02AADksgAAgDLoZ92aQewwPiTcBIFHTtQ/AAAAwEvARD8AAGDun6K0QNF2psYWw+a/K084KavnPb4H1cEaEa7cv5y4HRYKze4/0Nr8rnXhBb4AAAAAlSpMvwDsfy0AAAAAvh4EADIIh4cA","preamble":85,"sender":22963,"common":{"sid":{"sat":22,"code":12},"toe":{"tow":270014,"wn":2098},"ura":2.0,"fit_interval":10800,"valid":1,"health_bits":0},"tgd1":1.49e-8,"tgd2":1.49e-8,"c_rs":-90.578125,"c_rc":227.15625,"c_uc":-0.0000046142377,"c_us":0.00000660168,"c_ic":-2.6542693e-8,"c_is":1.4901161e-8,"dn":3.9401641236512066e-9,"m0":0.31727779006490864,"ecc":0.0006332750199362636,"sqrta":5282.624731063843,"omega0":-0.711314571369906,"omegadot":-6.962790028152671e-9,"w":-0.4481241952228889,"inc":0.962529223628525,"inc_dot":-6.36812240071619e-10,"af0":-0.0008595683611929417,"af1":1.4547474e-11,"af2":0.0,"toc":{"tow":270014,"wn":2098},"iode":135,"iodc":135} +{"crc":62150,"length":147,"msg_type":137,"payload":"Igy+HgQAMggAAABAMCoAAAEAWdkAslnZALIAAPZBAAi9QgBwyTUA2mA3AABwMgAAKDJjDrfYncEuPsrGdL5ZIcw/AAAAQGOWQj8AAICzoKK0QIU/AkIEigbAJhks3F1UPL4vPWpWu+3FP6YFBUkK1O4/ejptkv007T0AAACAtNxCvwCgC64AAAAAvh4EADIIh4cA","preamble":85,"sender":22963,"common":{"sid":{"sat":34,"code":12},"toe":{"tow":270014,"wn":2098},"ura":2.0,"fit_interval":10800,"valid":1,"health_bits":0},"tgd1":-7.5e-9,"tgd2":-7.5e-9,"c_rs":30.75,"c_rc":94.515625,"c_uc":0.0000015008263,"c_us":0.0000134021975,"c_ic":1.3969839e-8,"c_is":9.778887e-9,"dn":3.5805062853157493e-9,"m0":0.21976777839295486,"ecc":0.0005672440165653825,"sqrta":5282.627738952637,"omega0":-2.8173909336982796,"omegadot":-6.595989035133292e-9,"w":0.17131749839288932,"inc":0.9633838106312183,"inc_dot":2.125088518466704e-10,"af0":-0.0005756265018135309,"af1":-3.174705e-11,"af2":0.0,"toc":{"tow":270014,"wn":2098},"iode":135,"iodc":135} +{"crc":4271,"length":147,"msg_type":137,"payload":"GQy+HgQAMggAAABAMCoAAAEAP+2krz/tpK8AcI5CAByQQwC4bDYAIGo2AACUsgAAtLNlYpFiOUYyPjyioq2B4/M/AAAAANawOj8AAOBanqK0QNMn20Uo8vU/daM2E0QKP75XmFPFLSfdPykqFKcEh+4/DQoOoigw+j0AAACA/ldCvwCgZK0AAAAAvh4EADIIh4cA","preamble":85,"sender":22963,"common":{"sid":{"sat":25,"code":12},"toe":{"tow":270014,"wn":2098},"ura":2.0,"fit_interval":10800,"valid":1,"health_bits":0},"tgd1":-3e-10,"tgd2":-3e-10,"c_rs":71.21875,"c_rc":288.21875,"c_uc":0.0000035273843,"c_us":0.0000034887344,"c_ic":-1.7229468e-8,"c_is":-8.381903e-8,"dn":4.254820087477957e-9,"m0":1.2430435927036703,"ecc":0.0004072687588632107,"sqrta":5282.618574142456,"omega0":1.37162043845682,"omegadot":-7.227086751457774e-9,"w":0.4555162837044739,"inc":0.9539817107445902,"inc_dot":3.8108730238722235e-10,"af0":-0.0005598061252385378,"af1":-1.2995827e-11,"af2":0.0,"toc":{"tow":270014,"wn":2098},"iode":135,"iodc":135} +{"crc":8318,"length":11,"msg_type":258,"payload":"MghszS4QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271502700,"ns_residual":0,"flags":1} +{"crc":50447,"length":16,"msg_type":259,"payload":"EWzNLhDkBwMZAxgs/ia5KQ==","preamble":85,"sender":22963,"flags":17,"tow":271502700,"year":2020,"month":3,"day":25,"hours":3,"minutes":24,"seconds":44,"ns":699999998} +{"crc":1734,"length":34,"msg_type":522,"payload":"bM0uEBfhwd9l6kJAixnvJFaSXsDmLXhhx34xwAECWwQPBg==","preamble":85,"sender":22963,"tow":271502700,"lat":37.83123394934426,"lon":-122.28650782918537,"height":-17.495229808655402,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":56213,"length":22,"msg_type":526,"payload":"bM0uEAYAAAADAAAAFAAAAPAAyQIPAg==","preamble":85,"sender":22963,"tow":271502700,"n":6,"e":3,"d":20,"h_accuracy":240,"v_accuracy":713,"n_sats":15,"flags":2} +{"crc":1916,"length":15,"msg_type":520,"payload":"bM0uEJsAhwBNAEgAcgAG","preamble":85,"sender":22963,"tow":271502700,"gdop":155,"pdop":135,"tdop":77,"hdop":72,"vdop":114,"flags":6} +{"crc":51918,"length":22,"msg_type":524,"payload":"bM0uEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271502700,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":21322,"length":6,"msg_type":528,"payload":"bM0uEP//","preamble":85,"sender":22963,"tow":271502700,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":21291,"length":34,"msg_type":30583,"payload":"gwKNzC4QA5f/AB/9f/f/ABf//+f/f/AAAAAA6M725+/lcA==","preamble":85,"sender":22963,"sid":{"sat":131,"code":2},"tow":271502477,"message_type":3,"data":[151,255,0,31,253,127,247,255,0,23,255,255,231,255,127,240,0,0,0,0,232,206,246,231,239,229,112]} +{"crc":41336,"length":136,"msg_type":151,"payload":"AgAaHgUALDUMAFEtFQB9GRkAbUYaAKEBHQChNx8AlQ4EAxYWBQMyIQYDTggJA18OCgNxKQsDmCUMA6oDEwMiBxQDCzEVA5UlDAyUKRMMIyAUDA8CFgxDIxgMgiMZDJ0OGgxnFR0MLAAiDI4RIwwiLQsOizIMDg88GA5sNhkOlykfDlURIQ4fDw==","preamble":85,"sender":22963,"azel":[{"sid":{"sat":2,"code":0},"az":26,"el":30},{"sid":{"sat":5,"code":0},"az":44,"el":53},{"sid":{"sat":12,"code":0},"az":81,"el":45},{"sid":{"sat":21,"code":0},"az":125,"el":25},{"sid":{"sat":25,"code":0},"az":109,"el":70},{"sid":{"sat":26,"code":0},"az":161,"el":1},{"sid":{"sat":29,"code":0},"az":161,"el":55},{"sid":{"sat":31,"code":0},"az":149,"el":14},{"sid":{"sat":4,"code":3},"az":22,"el":22},{"sid":{"sat":5,"code":3},"az":50,"el":33},{"sid":{"sat":6,"code":3},"az":78,"el":8},{"sid":{"sat":9,"code":3},"az":95,"el":14},{"sid":{"sat":10,"code":3},"az":113,"el":41},{"sid":{"sat":11,"code":3},"az":152,"el":37},{"sid":{"sat":12,"code":3},"az":170,"el":3},{"sid":{"sat":19,"code":3},"az":34,"el":7},{"sid":{"sat":20,"code":3},"az":11,"el":49},{"sid":{"sat":21,"code":3},"az":149,"el":37},{"sid":{"sat":12,"code":12},"az":148,"el":41},{"sid":{"sat":19,"code":12},"az":35,"el":32},{"sid":{"sat":20,"code":12},"az":15,"el":2},{"sid":{"sat":22,"code":12},"az":67,"el":35},{"sid":{"sat":24,"code":12},"az":130,"el":35},{"sid":{"sat":25,"code":12},"az":157,"el":14},{"sid":{"sat":26,"code":12},"az":103,"el":21},{"sid":{"sat":29,"code":12},"az":44,"el":0},{"sid":{"sat":34,"code":12},"az":142,"el":17},{"sid":{"sat":35,"code":12},"az":34,"el":45},{"sid":{"sat":11,"code":14},"az":139,"el":50},{"sid":{"sat":12,"code":14},"az":15,"el":60},{"sid":{"sat":24,"code":14},"az":108,"el":54},{"sid":{"sat":25,"code":14},"az":151,"el":41},{"sid":{"sat":31,"code":14},"az":85,"el":17},{"sid":{"sat":33,"code":14},"az":31,"el":15}]} +{"crc":57054,"length":11,"msg_type":258,"payload":"MgjQzS4QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271502800,"ns_residual":0,"flags":1} +{"crc":34449,"length":16,"msg_type":259,"payload":"EdDNLhDkBwMZAxgs/gevLw==","preamble":85,"sender":22963,"flags":17,"tow":271502800,"year":2020,"month":3,"day":25,"hours":3,"minutes":24,"seconds":44,"ns":799999998} +{"crc":51660,"length":34,"msg_type":522,"payload":"0M0uECOzfd9l6kJAE9fKJFaSXsCTCKZLuH8xwAECWwQPBg==","preamble":85,"sender":22963,"tow":271502800,"lat":37.8312339175957,"lon":-122.28650779541594,"height":-17.498905876193543,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":49936,"length":22,"msg_type":526,"payload":"0M0uEPn///8DAAAA7f////AAyQIPAg==","preamble":85,"sender":22963,"tow":271502800,"n":-7,"e":3,"d":-19,"h_accuracy":240,"v_accuracy":713,"n_sats":15,"flags":2} +{"crc":15367,"length":15,"msg_type":520,"payload":"0M0uEJsAhwBNAEgAcgAG","preamble":85,"sender":22963,"tow":271502800,"gdop":155,"pdop":135,"tdop":77,"hdop":72,"vdop":114,"flags":6} +{"crc":24146,"length":22,"msg_type":524,"payload":"0M0uEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271502800,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":41733,"length":6,"msg_type":528,"payload":"0M0uEP//","preamble":85,"sender":22963,"tow":271502800,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":4273,"length":237,"msg_type":97,"payload":"BQDVFQCzAgC+HwClAAAAAAAAGQDaDADNHQDUEgDOAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwLNGQHNDAG7HwGWEgHDHQHCAAAABQHCAAAAAAAAAAAAAAAACwPVCQOxFAOtBQPOCgPOAAAABAO3FQPMCQSsFATMCgRGCwTHBQTCAAS5AAAABASwIwzIGgypIgyhGAy9GQycDAy5Ewy5Fgy/AAAADA3RAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADA7EAAAAGQ7BCw6+GA7NAAAAHw6hIQ6bGRTJGBTXCxTCHxStDBTPAAAAIRSrAAAA","preamble":85,"sender":22963,"states":[{"mesid":{"sat":5,"code":0},"cn0":213},{"mesid":{"sat":21,"code":0},"cn0":179},{"mesid":{"sat":2,"code":0},"cn0":190},{"mesid":{"sat":31,"code":0},"cn0":165},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":25,"code":0},"cn0":218},{"mesid":{"sat":12,"code":0},"cn0":205},{"mesid":{"sat":29,"code":0},"cn0":212},{"mesid":{"sat":18,"code":0},"cn0":206},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":131,"code":2},"cn0":205},{"mesid":{"sat":25,"code":1},"cn0":205},{"mesid":{"sat":12,"code":1},"cn0":187},{"mesid":{"sat":31,"code":1},"cn0":150},{"mesid":{"sat":18,"code":1},"cn0":195},{"mesid":{"sat":29,"code":1},"cn0":194},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":5,"code":1},"cn0":194},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":11,"code":3},"cn0":213},{"mesid":{"sat":9,"code":3},"cn0":177},{"mesid":{"sat":20,"code":3},"cn0":173},{"mesid":{"sat":5,"code":3},"cn0":206},{"mesid":{"sat":10,"code":3},"cn0":206},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":4,"code":3},"cn0":183},{"mesid":{"sat":21,"code":3},"cn0":204},{"mesid":{"sat":9,"code":4},"cn0":172},{"mesid":{"sat":20,"code":4},"cn0":204},{"mesid":{"sat":10,"code":4},"cn0":70},{"mesid":{"sat":11,"code":4},"cn0":199},{"mesid":{"sat":5,"code":4},"cn0":194},{"mesid":{"sat":0,"code":4},"cn0":185},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":4,"code":4},"cn0":176},{"mesid":{"sat":35,"code":12},"cn0":200},{"mesid":{"sat":26,"code":12},"cn0":169},{"mesid":{"sat":34,"code":12},"cn0":161},{"mesid":{"sat":24,"code":12},"cn0":189},{"mesid":{"sat":25,"code":12},"cn0":156},{"mesid":{"sat":12,"code":12},"cn0":185},{"mesid":{"sat":19,"code":12},"cn0":185},{"mesid":{"sat":22,"code":12},"cn0":191},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":12,"code":13},"cn0":209},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":12,"code":14},"cn0":196},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":25,"code":14},"cn0":193},{"mesid":{"sat":11,"code":14},"cn0":190},{"mesid":{"sat":24,"code":14},"cn0":205},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":31,"code":14},"cn0":161},{"mesid":{"sat":33,"code":14},"cn0":155},{"mesid":{"sat":25,"code":20},"cn0":201},{"mesid":{"sat":24,"code":20},"cn0":215},{"mesid":{"sat":11,"code":20},"cn0":194},{"mesid":{"sat":31,"code":20},"cn0":173},{"mesid":{"sat":12,"code":20},"cn0":207},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":33,"code":20},"cn0":171},{"mesid":{"sat":0,"code":0},"cn0":0}]} +{"crc":24511,"length":51,"msg_type":1025,"payload":"BkdMTyBMMk9GIE1FIDEgWysxMzI2bXNdIGxvdyBDTjAgdG9vIGxvbmcsIGRyb3BwaW5n","preamble":85,"sender":22963,"level":6,"text":"GLO L2OF ME 1 [+1326ms] low CN0 too long, dropping"} +{"crc":52691,"length":11,"msg_type":258,"payload":"Mgg0zi4QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271502900,"ns_residual":0,"flags":1} +{"crc":36878,"length":16,"msg_type":259,"payload":"ETTOLhDkBwMZAxgs/uikNQ==","preamble":85,"sender":22963,"flags":17,"tow":271502900,"year":2020,"month":3,"day":25,"hours":3,"minutes":24,"seconds":44,"ns":899999998} +{"crc":61668,"length":34,"msg_type":522,"payload":"NM4uEFAsP99l6kJAGNOpJFaSXsBGsXFWWYIxwAECWwQPBg==","preamble":85,"sender":22963,"tow":271502900,"lat":37.83123388847946,"lon":-122.28650776466782,"height":-17.509175684697105,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":49783,"length":22,"msg_type":526,"payload":"NM4uEAAAAAAFAAAAKAAAAPAAyQIPAg==","preamble":85,"sender":22963,"tow":271502900,"n":0,"e":5,"d":40,"h_accuracy":240,"v_accuracy":713,"n_sats":15,"flags":2} +{"crc":51481,"length":15,"msg_type":520,"payload":"NM4uEJsAhwBNAEgAcgAG","preamble":85,"sender":22963,"tow":271502900,"gdop":155,"pdop":135,"tdop":77,"hdop":72,"vdop":114,"flags":6} +{"crc":37450,"length":22,"msg_type":524,"payload":"NM4uEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271502900,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":49230,"length":6,"msg_type":528,"payload":"NM4uEP//","preamble":85,"sender":22963,"tow":271502900,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":12198,"length":249,"msg_type":74,"payload":"mM4uEAAAAAAyCEC2rrM+HQuXBnhR/wDVDw8FACGeGkXkS0MHyoEILrMPDxUACkDuRS2KWQeBT/ZDvg8PAgBz4gFJ9FGsBzV7/iKmDw8fADgbJD0tDG0G46H7ANoPDxkAP/uvQEt3zAZPbfR1zg8PDACyI9M+eFmaBuHOBe/UDw8dAF8bJD0G2wEFYZf8nM0PDxkBBfuvQC81TAUa+fbOuw8PDAEa4gFJnKP6BSLP/u+WDw8fAWgj0z7NJyUFuYYEEMMPDx0BbK6zPmmUIgVsef8Lwg8PBQHoW/4+6ny7Bq+YBKvVDw8LAywszkSoLFkHPsjuybEPDwkD","preamble":85,"sender":22963,"header":{"t":{"tow":271503000,"ns_residual":0,"wn":2098},"n_obs":64},"obs":[{"P":1051963062,"L":{"i":110562077,"f":120},"D":{"i":-175,"f":0},"cn0":213,"lock":15,"flags":15,"sid":{"sat":5,"code":0}},{"P":1159372321,"L":{"i":121850852,"f":202},"D":{"i":2177,"f":46},"cn0":179,"lock":15,"flags":15,"sid":{"sat":21,"code":0}},{"P":1173241866,"L":{"i":123308589,"f":129},"D":{"i":-2481,"f":67},"cn0":190,"lock":15,"flags":15,"sid":{"sat":2,"code":0}},{"P":1224860275,"L":{"i":128733684,"f":53},"D":{"i":-389,"f":34},"cn0":166,"lock":15,"flags":15,"sid":{"sat":31,"code":0}},{"P":1025776440,"L":{"i":107809837,"f":227},"D":{"i":-1119,"f":0},"cn0":218,"lock":15,"flags":15,"sid":{"sat":25,"code":0}},{"P":1085274943,"L":{"i":114063179,"f":79},"D":{"i":-2963,"f":117},"cn0":206,"lock":15,"flags":15,"sid":{"sat":12,"code":0}},{"P":1054024626,"L":{"i":110778744,"f":225},"D":{"i":1486,"f":239},"cn0":212,"lock":15,"flags":15,"sid":{"sat":29,"code":0}},{"P":1025776479,"L":{"i":84007686,"f":97},"D":{"i":-873,"f":156},"cn0":205,"lock":15,"flags":15,"sid":{"sat":25,"code":1}},{"P":1085274885,"L":{"i":88880431,"f":26},"D":{"i":-2311,"f":206},"cn0":187,"lock":15,"flags":15,"sid":{"sat":12,"code":1}},{"P":1224860186,"L":{"i":100311964,"f":34},"D":{"i":-305,"f":239},"cn0":150,"lock":15,"flags":15,"sid":{"sat":31,"code":1}},{"P":1054024552,"L":{"i":86321101,"f":185},"D":{"i":1158,"f":16},"cn0":195,"lock":15,"flags":15,"sid":{"sat":29,"code":1}},{"P":1051962988,"L":{"i":86152297,"f":108},"D":{"i":-135,"f":11},"cn0":194,"lock":15,"flags":15,"sid":{"sat":5,"code":1}},{"P":1056857064,"L":{"i":112950506,"f":175},"D":{"i":1176,"f":171},"cn0":213,"lock":15,"flags":15,"sid":{"sat":11,"code":3}},{"P":1154362412,"L":{"i":123284648,"f":62},"D":{"i":-4408,"f":201},"cn0":177,"lock":15,"flags":15,"sid":{"sat":9,"code":3}}]} +{"crc":26425,"length":249,"msg_type":74,"payload":"mM4uEAAAAAAyCEGCais9YMKKBvZI+7quDw8UA9DMDEClAdkGhJ4INs4PDwUDpW1gPjBqpgYGI/SEzg8PCgP8NAVDjYUtBynl+pq3Dw8EA59CLT+m7cIG/FgG/cwPDxUD0yzORMUitwVgnfI3rA8PCQTvays9UpcWBbNU/PfMDw8UBO5c/j6kfTwFa5IDhMcPDwsExs0MQBJzUwW+tAaIwg8PBQRpNQVD8i6VBT0G/MmwDw8EBH+/kkW+5z4HLCb6QsgPDyMMAHXuSboZswfIQPTEqQ8PGgwuOhpMVPvsB3PICNmhDw8iDAVXnkczb3UHWO76yb0PDxgM","preamble":85,"sender":22963,"header":{"t":{"tow":271503000,"ns_residual":0,"wn":2098},"n_obs":65},"obs":[{"P":1026255490,"L":{"i":109757024,"f":246},"D":{"i":-1208,"f":186},"cn0":174,"lock":15,"flags":15,"sid":{"sat":20,"code":3}},{"P":1074580688,"L":{"i":114885029,"f":132},"D":{"i":2206,"f":54},"cn0":206,"lock":15,"flags":15,"sid":{"sat":5,"code":3}},{"P":1046506917,"L":{"i":111569456,"f":6},"D":{"i":-3037,"f":132},"cn0":206,"lock":15,"flags":15,"sid":{"sat":10,"code":3}},{"P":1124414716,"L":{"i":120423821,"f":41},"D":{"i":-1307,"f":154},"cn0":183,"lock":15,"flags":15,"sid":{"sat":4,"code":3}},{"P":1059930783,"L":{"i":113438118,"f":252},"D":{"i":1624,"f":253},"cn0":204,"lock":15,"flags":15,"sid":{"sat":21,"code":3}},{"P":1154362579,"L":{"i":95888069,"f":96},"D":{"i":-3427,"f":55},"cn0":172,"lock":15,"flags":15,"sid":{"sat":9,"code":4}},{"P":1026255855,"L":{"i":85366610,"f":179},"D":{"i":-940,"f":247},"cn0":204,"lock":15,"flags":15,"sid":{"sat":20,"code":4}},{"P":1056857326,"L":{"i":87850404,"f":107},"D":{"i":914,"f":132},"cn0":199,"lock":15,"flags":15,"sid":{"sat":11,"code":4}},{"P":1074580934,"L":{"i":89355026,"f":190},"D":{"i":1716,"f":136},"cn0":194,"lock":15,"flags":15,"sid":{"sat":5,"code":4}},{"P":1124414825,"L":{"i":93662962,"f":61},"D":{"i":-1018,"f":201},"cn0":176,"lock":15,"flags":15,"sid":{"sat":4,"code":4}},{"P":1167245183,"L":{"i":121563070,"f":44},"D":{"i":-1498,"f":66},"cn0":200,"lock":15,"flags":15,"sid":{"sat":35,"code":12}},{"P":1240364288,"L":{"i":129178042,"f":200},"D":{"i":-3008,"f":196},"cn0":169,"lock":15,"flags":15,"sid":{"sat":26,"code":12}},{"P":1276787246,"L":{"i":132971348,"f":115},"D":{"i":2248,"f":217},"cn0":161,"lock":15,"flags":15,"sid":{"sat":34,"code":12}},{"P":1201559301,"L":{"i":125136691,"f":88},"D":{"i":-1298,"f":201},"cn0":189,"lock":15,"flags":15,"sid":{"sat":24,"code":12}}]} +{"crc":21882,"length":249,"msg_type":74,"payload":"mM4uEAAAAAAyCEIbnhVNmikHCOAzBRycDw8ZDMaPUUWvHTgHBUsGmbkPDwwMa8ZCR/3lawdK5f6buA8PEwwh8mJHsD9vBxlWCfHADw8WDGqPUUWjFJUFOd4EmNEPDwwNvV4FQpRY8AZX/PtUxA8PDA4nziJLfpflB99EBGzBDw8ZDijeIken+XkHnxcEX74PDwsODtEkQ5iODgdSNPltzQ8PGA5WpEJRWF+KCEid892hDw8fDkXu8lGG5pwIzKL3HJsPDyEO+80iSwkDDQYqRQOqyQ8PGRQj0yRD9j5oBcPJ+u/XDw8YFG7dIkdWjboFTSMDesIPDwsU","preamble":85,"sender":22963,"header":{"t":{"tow":271503000,"ns_residual":0,"wn":2098},"n_obs":66},"obs":[{"P":1293262363,"L":{"i":134687130,"f":224},"D":{"i":1331,"f":28},"cn0":156,"lock":15,"flags":15,"sid":{"sat":25,"code":12}},{"P":1162973126,"L":{"i":121118127,"f":5},"D":{"i":1611,"f":153},"cn0":185,"lock":15,"flags":15,"sid":{"sat":12,"code":12}},{"P":1195558507,"L":{"i":124511741,"f":74},"D":{"i":-283,"f":155},"cn0":184,"lock":15,"flags":15,"sid":{"sat":19,"code":12}},{"P":1197666849,"L":{"i":124731312,"f":25},"D":{"i":2390,"f":241},"cn0":192,"lock":15,"flags":15,"sid":{"sat":22,"code":12}},{"P":1162973034,"L":{"i":93656227,"f":57},"D":{"i":1246,"f":152},"cn0":209,"lock":15,"flags":15,"sid":{"sat":12,"code":13}},{"P":1107648189,"L":{"i":116414612,"f":87},"D":{"i":-1028,"f":84},"cn0":196,"lock":15,"flags":15,"sid":{"sat":12,"code":14}},{"P":1260572199,"L":{"i":132487038,"f":223},"D":{"i":1092,"f":108},"cn0":193,"lock":15,"flags":15,"sid":{"sat":25,"code":14}},{"P":1193467432,"L":{"i":125434279,"f":159},"D":{"i":1047,"f":95},"cn0":190,"lock":15,"flags":15,"sid":{"sat":11,"code":14}},{"P":1126486286,"L":{"i":118394520,"f":82},"D":{"i":-1740,"f":109},"cn0":205,"lock":15,"flags":15,"sid":{"sat":24,"code":14}},{"P":1363321942,"L":{"i":143286104,"f":72},"D":{"i":-3171,"f":221},"cn0":161,"lock":15,"flags":15,"sid":{"sat":31,"code":14}},{"P":1374875205,"L":{"i":144500358,"f":204},"D":{"i":-2142,"f":28},"cn0":155,"lock":15,"flags":15,"sid":{"sat":33,"code":14}},{"P":1260572155,"L":{"i":101516041,"f":42},"D":{"i":837,"f":170},"cn0":201,"lock":15,"flags":15,"sid":{"sat":25,"code":20}},{"P":1126486819,"L":{"i":90717942,"f":195},"D":{"i":-1335,"f":239},"cn0":215,"lock":15,"flags":15,"sid":{"sat":24,"code":20}},{"P":1193467246,"L":{"i":96111958,"f":77},"D":{"i":803,"f":122},"cn0":194,"lock":15,"flags":15,"sid":{"sat":11,"code":20}}]} +{"crc":50056,"length":62,"msg_type":74,"payload":"mM4uEAAAAAAyCEOKpEJR5EWLBtmC9rutDw8fFBxeBULFGFEFcu38kM8PDwwUH+7yUWR4mQaglflFqg8PIRQ=","preamble":85,"sender":22963,"header":{"t":{"tow":271503000,"ns_residual":0,"wn":2098},"n_obs":67},"obs":[{"P":1363321994,"L":{"i":109790692,"f":217},"D":{"i":-2430,"f":187},"cn0":173,"lock":15,"flags":15,"sid":{"sat":31,"code":20}},{"P":1107648028,"L":{"i":89200837,"f":114},"D":{"i":-787,"f":144},"cn0":207,"lock":15,"flags":15,"sid":{"sat":12,"code":20}},{"P":1374875167,"L":{"i":110721124,"f":160},"D":{"i":-1643,"f":69},"cn0":170,"lock":15,"flags":15,"sid":{"sat":33,"code":20}}]} +{"crc":49809,"length":9,"msg_type":117,"payload":"/wAAAAAAAAAA","preamble":85,"sender":22963,"mask":255,"l1ca_bias":0,"l1p_bias":0,"l2ca_bias":0,"l2p_bias":0} +{"crc":24717,"length":11,"msg_type":258,"payload":"MgiYzi4QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271503000,"ns_residual":0,"flags":1} +{"crc":37725,"length":16,"msg_type":259,"payload":"EZjOLhDkBwMZAxgs/smaOw==","preamble":85,"sender":22963,"flags":17,"tow":271503000,"year":2020,"month":3,"day":25,"hours":3,"minutes":24,"seconds":44,"ns":999999998} +{"crc":13898,"length":34,"msg_type":522,"payload":"mM4uEOxgC99l6kJAgUOgJFaSXsAsqJRWNIMxwAECWwQPBg==","preamble":85,"sender":22963,"tow":271503000,"lat":37.83123386436077,"lon":-122.28650775576354,"height":-17.512517367642587,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":6454,"length":22,"msg_type":526,"payload":"mM4uEPr////5////5/////AAyQIPAg==","preamble":85,"sender":22963,"tow":271503000,"n":-6,"e":-7,"d":-25,"h_accuracy":240,"v_accuracy":713,"n_sats":15,"flags":2} +{"crc":48360,"length":15,"msg_type":520,"payload":"mM4uEJsAhwBNAEgAcgAG","preamble":85,"sender":22963,"tow":271503000,"gdop":155,"pdop":135,"tdop":77,"hdop":72,"vdop":114,"flags":6} +{"crc":48016,"length":22,"msg_type":524,"payload":"mM4uEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271503000,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":10885,"length":6,"msg_type":528,"payload":"mM4uEP//","preamble":85,"sender":22963,"tow":271503000,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":40942,"length":4,"msg_type":65535,"payload":"AAUCgA==","preamble":85,"sender":22963,"flags":2147616000} +{"crc":2168,"length":24,"msg_type":72,"payload":"UO0a3iqORMHK1UJhIkRQwc9nFIPvrk1B","preamble":85,"sender":22963,"x":-2694229.735196747,"y":-4264073.519704292,"z":3890655.0240602265} +{"crc":25495,"length":10,"msg_type":181,"payload":"6xbdA/QGVBUJFg==","preamble":85,"sender":22963,"dev_vin":5867,"cpu_vint":989,"cpu_vaux":1780,"cpu_temperature":5460,"fe_temperature":5641} +{"crc":1095,"length":11,"msg_type":258,"payload":"Mgj8zi4QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271503100,"ns_residual":0,"flags":1} +{"crc":49533,"length":16,"msg_type":259,"payload":"EfzOLhDkBwMZAxgt/uD1BQ==","preamble":85,"sender":22963,"flags":17,"tow":271503100,"year":2020,"month":3,"day":25,"hours":3,"minutes":24,"seconds":45,"ns":99999998} +{"crc":49812,"length":34,"msg_type":522,"payload":"/M4uEHtm7d5l6kJARpiLJFaSXsDte6AtEYUxwAECWwQPBg==","preamble":85,"sender":22963,"tow":271503100,"lat":37.83123385040104,"lon":-122.28650773651415,"height":-17.51979336898869,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":31534,"length":22,"msg_type":526,"payload":"/M4uEAIAAAADAAAAGgAAAPAAyQIPAg==","preamble":85,"sender":22963,"tow":271503100,"n":2,"e":3,"d":26,"h_accuracy":240,"v_accuracy":713,"n_sats":15,"flags":2} +{"crc":36935,"length":15,"msg_type":520,"payload":"/M4uEJsAhwBNAEgAcgAG","preamble":85,"sender":22963,"tow":271503100,"gdop":155,"pdop":135,"tdop":77,"hdop":72,"vdop":114,"flags":6} +{"crc":41766,"length":22,"msg_type":524,"payload":"/M4uEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271503100,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":29500,"length":6,"msg_type":528,"payload":"/M4uEP//","preamble":85,"sender":22963,"tow":271503100,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":6856,"length":11,"msg_type":258,"payload":"Mghgzy4QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271503200,"ns_residual":0,"flags":1} +{"crc":27703,"length":16,"msg_type":259,"payload":"EWDPLhDkBwMZAxgt/sHrCw==","preamble":85,"sender":22963,"flags":17,"tow":271503200,"year":2020,"month":3,"day":25,"hours":3,"minutes":24,"seconds":45,"ns":199999998} +{"crc":8014,"length":34,"msg_type":522,"payload":"YM8uECPRy95l6kJAeAZ9JFaSXsCavE+IPIYxwAECWwQPBg==","preamble":85,"sender":22963,"tow":271503200,"lat":37.831233834762564,"lon":-122.2865077229452,"height":-17.524361152140592,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":13948,"length":22,"msg_type":526,"payload":"YM8uEP/////5////+v////AAyQIPAg==","preamble":85,"sender":22963,"tow":271503200,"n":-1,"e":-7,"d":-6,"h_accuracy":240,"v_accuracy":713,"n_sats":15,"flags":2} +{"crc":19785,"length":15,"msg_type":520,"payload":"YM8uEJsAhwBNAEgAcgAG","preamble":85,"sender":22963,"tow":271503200,"gdop":155,"pdop":135,"tdop":77,"hdop":72,"vdop":114,"flags":6} +{"crc":35041,"length":22,"msg_type":524,"payload":"YM8uEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271503200,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":7210,"length":6,"msg_type":528,"payload":"YM8uEP//","preamble":85,"sender":22963,"tow":271503200,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":40553,"length":11,"msg_type":258,"payload":"MgjEzy4QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271503300,"ns_residual":0,"flags":1} +{"crc":40968,"length":16,"msg_type":259,"payload":"EcTPLhDkBwMZAxgt/qLhEQ==","preamble":85,"sender":22963,"flags":17,"tow":271503300,"year":2020,"month":3,"day":25,"hours":3,"minutes":24,"seconds":45,"ns":299999998} +{"crc":39585,"length":34,"msg_type":522,"payload":"xM8uEILLqt5l6kJA6adJJFaSXsBufKqsZYgxwAECWwQPBg==","preamble":85,"sender":22963,"tow":271503300,"lat":37.8312338193855,"lon":-122.28650767510375,"height":-17.53280142938859,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":30451,"length":22,"msg_type":526,"payload":"xM8uEAAAAAALAAAAEgAAAPAAyQIPAg==","preamble":85,"sender":22963,"tow":271503300,"n":0,"e":11,"d":18,"h_accuracy":240,"v_accuracy":713,"n_sats":15,"flags":2} +{"crc":8189,"length":15,"msg_type":520,"payload":"xM8uEJsAhwBNAEgAcgAG","preamble":85,"sender":22963,"tow":271503300,"gdop":155,"pdop":135,"tdop":77,"hdop":72,"vdop":114,"flags":6} +{"crc":65432,"length":22,"msg_type":524,"payload":"xM8uEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271503300,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":64419,"length":6,"msg_type":528,"payload":"xM8uEP//","preamble":85,"sender":22963,"tow":271503300,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":63950,"length":237,"msg_type":97,"payload":"BQDVFQC0AgC+HwCmAAAAAAAAGQDbDADOHQDVEgDPAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwLNGQHNDAG7HwGUEgHDHQHDAAAABQHCAAAAAAAAAAAAAAAAZAPVYgOxZgOtZQPOXQPOAAAAagO3aAPMYgSsZgTMAAAAZATHZQTCaAS5AAAAagSwIwzIGgypIgyhGAy9GQydDAy5Ewy5FgzAAAAADA3QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADA7EAAAAGQ7BCw69GA7NAAAAHw6hIQ6bGRTJGBTXCxTBHxStDBTOAAAAIRSrAAAA","preamble":85,"sender":22963,"states":[{"mesid":{"sat":5,"code":0},"cn0":213},{"mesid":{"sat":21,"code":0},"cn0":180},{"mesid":{"sat":2,"code":0},"cn0":190},{"mesid":{"sat":31,"code":0},"cn0":166},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":25,"code":0},"cn0":219},{"mesid":{"sat":12,"code":0},"cn0":206},{"mesid":{"sat":29,"code":0},"cn0":213},{"mesid":{"sat":18,"code":0},"cn0":207},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":131,"code":2},"cn0":205},{"mesid":{"sat":25,"code":1},"cn0":205},{"mesid":{"sat":12,"code":1},"cn0":187},{"mesid":{"sat":31,"code":1},"cn0":148},{"mesid":{"sat":18,"code":1},"cn0":195},{"mesid":{"sat":29,"code":1},"cn0":195},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":5,"code":1},"cn0":194},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":100,"code":3},"cn0":213},{"mesid":{"sat":98,"code":3},"cn0":177},{"mesid":{"sat":102,"code":3},"cn0":173},{"mesid":{"sat":101,"code":3},"cn0":206},{"mesid":{"sat":93,"code":3},"cn0":206},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":106,"code":3},"cn0":183},{"mesid":{"sat":104,"code":3},"cn0":204},{"mesid":{"sat":98,"code":4},"cn0":172},{"mesid":{"sat":102,"code":4},"cn0":204},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":100,"code":4},"cn0":199},{"mesid":{"sat":101,"code":4},"cn0":194},{"mesid":{"sat":104,"code":4},"cn0":185},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":106,"code":4},"cn0":176},{"mesid":{"sat":35,"code":12},"cn0":200},{"mesid":{"sat":26,"code":12},"cn0":169},{"mesid":{"sat":34,"code":12},"cn0":161},{"mesid":{"sat":24,"code":12},"cn0":189},{"mesid":{"sat":25,"code":12},"cn0":157},{"mesid":{"sat":12,"code":12},"cn0":185},{"mesid":{"sat":19,"code":12},"cn0":185},{"mesid":{"sat":22,"code":12},"cn0":192},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":12,"code":13},"cn0":208},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":12,"code":14},"cn0":196},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":25,"code":14},"cn0":193},{"mesid":{"sat":11,"code":14},"cn0":189},{"mesid":{"sat":24,"code":14},"cn0":205},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":31,"code":14},"cn0":161},{"mesid":{"sat":33,"code":14},"cn0":155},{"mesid":{"sat":25,"code":20},"cn0":201},{"mesid":{"sat":24,"code":20},"cn0":215},{"mesid":{"sat":11,"code":20},"cn0":193},{"mesid":{"sat":31,"code":20},"cn0":173},{"mesid":{"sat":12,"code":20},"cn0":206},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":33,"code":20},"cn0":171},{"mesid":{"sat":0,"code":0},"cn0":0}]} +{"crc":34968,"length":11,"msg_type":258,"payload":"Mggo0C4QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271503400,"ns_residual":0,"flags":1} +{"crc":56425,"length":16,"msg_type":259,"payload":"ESjQLhDkBwMZAxgt/oPXFw==","preamble":85,"sender":22963,"flags":17,"tow":271503400,"year":2020,"month":3,"day":25,"hours":3,"minutes":24,"seconds":45,"ns":399999998} +{"crc":23239,"length":34,"msg_type":522,"payload":"KNAuEHZlnt5l6kJA4WklJFaSXsBY96QLgokxwAECWwQPBg==","preamble":85,"sender":22963,"tow":271503400,"lat":37.831233813611945,"lon":-122.28650764135047,"height":-17.5371405866384,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":29280,"length":22,"msg_type":526,"payload":"KNAuEAEAAAD8////+P////AAyQIPAg==","preamble":85,"sender":22963,"tow":271503400,"n":1,"e":-4,"d":-8,"h_accuracy":240,"v_accuracy":713,"n_sats":15,"flags":2} +{"crc":7583,"length":15,"msg_type":520,"payload":"KNAuEJsAhwBNAEgAcgAG","preamble":85,"sender":22963,"tow":271503400,"gdop":155,"pdop":135,"tdop":77,"hdop":72,"vdop":114,"flags":6} +{"crc":19235,"length":22,"msg_type":524,"payload":"KNAuEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271503400,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":6875,"length":6,"msg_type":528,"payload":"KNAuEP//","preamble":85,"sender":22963,"tow":271503400,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":49809,"length":9,"msg_type":117,"payload":"/wAAAAAAAAAA","preamble":85,"sender":22963,"mask":255,"l1ca_bias":0,"l1p_bias":0,"l2ca_bias":0,"l2p_bias":0} +{"crc":3129,"length":11,"msg_type":258,"payload":"MgiM0C4QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271503500,"ns_residual":0,"flags":1} +{"crc":59022,"length":16,"msg_type":259,"payload":"EYzQLhDkBwMZAxgt/mTNHQ==","preamble":85,"sender":22963,"flags":17,"tow":271503500,"year":2020,"month":3,"day":25,"hours":3,"minutes":24,"seconds":45,"ns":499999998} +{"crc":42755,"length":34,"msg_type":522,"payload":"jNAuEFvslt5l6kJAccL3I1aSXsA7l2jTK4sxwAECWwQPBg==","preamble":85,"sender":22963,"tow":271503500,"lat":37.83123381013203,"lon":-122.28650759883182,"height":-17.543637478861665,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":61626,"length":22,"msg_type":526,"payload":"jNAuEP3///8OAAAADwAAAPAAyQIPAg==","preamble":85,"sender":22963,"tow":271503500,"n":-3,"e":14,"d":15,"h_accuracy":240,"v_accuracy":713,"n_sats":15,"flags":2} +{"crc":20267,"length":15,"msg_type":520,"payload":"jNAuEJsAhwBNAEgAcgAG","preamble":85,"sender":22963,"tow":271503500,"gdop":155,"pdop":135,"tdop":77,"hdop":72,"vdop":114,"flags":6} +{"crc":15450,"length":22,"msg_type":524,"payload":"jNAuEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271503500,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":64850,"length":6,"msg_type":528,"payload":"jNAuEP//","preamble":85,"sender":22963,"tow":271503500,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":4850,"length":11,"msg_type":258,"payload":"Mgjw0C4QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271503600,"ns_residual":0,"flags":1} +{"crc":59018,"length":16,"msg_type":259,"payload":"EfDQLhDkBwMZAxgt/kXDIw==","preamble":85,"sender":22963,"flags":17,"tow":271503600,"year":2020,"month":3,"day":25,"hours":3,"minutes":24,"seconds":45,"ns":599999998} +{"crc":51630,"length":34,"msg_type":522,"payload":"8NAuEFH5fd5l6kJAXSPqI1aSXsAN0VqIIYsxwAECWwQPBg==","preamble":85,"sender":22963,"tow":271503600,"lat":37.83123379851407,"lon":-122.2865075861459,"height":-17.54348041741564,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":49109,"length":22,"msg_type":526,"payload":"8NAuEPT////8////4/////AAyQIPAg==","preamble":85,"sender":22963,"tow":271503600,"n":-12,"e":-4,"d":-29,"h_accuracy":240,"v_accuracy":713,"n_sats":15,"flags":2} +{"crc":2635,"length":15,"msg_type":520,"payload":"8NAuEJsAhwBNAEgAcgAG","preamble":85,"sender":22963,"tow":271503600,"gdop":155,"pdop":135,"tdop":77,"hdop":72,"vdop":114,"flags":6} +{"crc":50953,"length":22,"msg_type":524,"payload":"8NAuEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271503600,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":45869,"length":6,"msg_type":528,"payload":"8NAuEP//","preamble":85,"sender":22963,"tow":271503600,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":25189,"length":34,"msg_type":30583,"payload":"gwJv0C4QBJf/f//9f/ABf//+/+/7f/f/f/f/7l5uqq//8A==","preamble":85,"sender":22963,"sid":{"sat":131,"code":2},"tow":271503471,"message_type":4,"data":[151,255,127,255,253,127,240,1,127,255,254,255,239,251,127,247,255,127,247,255,238,94,110,170,175,255,240]} +{"crc":53632,"length":11,"msg_type":258,"payload":"MghU0S4QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271503700,"ns_residual":0,"flags":1} +{"crc":19388,"length":16,"msg_type":259,"payload":"EVTRLhDkBwMZAxgt/ia5KQ==","preamble":85,"sender":22963,"flags":17,"tow":271503700,"year":2020,"month":3,"day":25,"hours":3,"minutes":24,"seconds":45,"ns":699999998} +{"crc":48536,"length":34,"msg_type":522,"payload":"VNEuEPj4pN5l6kJAX5biI1aSXsBnWlz/ZYwxwAECWwQPBg==","preamble":85,"sender":22963,"tow":271503700,"lat":37.83123381667423,"lon":-122.28650757911372,"height":-17.54843135838237,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":51072,"length":22,"msg_type":526,"payload":"VNEuEAgAAAD8////FQAAAPAAyQIPAg==","preamble":85,"sender":22963,"tow":271503700,"n":8,"e":-4,"d":21,"h_accuracy":240,"v_accuracy":713,"n_sats":15,"flags":2} +{"crc":9118,"length":15,"msg_type":520,"payload":"VNEuEJsAhwBNAEgAcgAG","preamble":85,"sender":22963,"tow":271503700,"gdop":155,"pdop":135,"tdop":77,"hdop":72,"vdop":114,"flags":6} +{"crc":25990,"length":22,"msg_type":524,"payload":"VNEuEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271503700,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":65269,"length":6,"msg_type":528,"payload":"VNEuEP//","preamble":85,"sender":22963,"tow":271503700,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":41336,"length":136,"msg_type":151,"payload":"AgAaHgUALDUMAFEtFQB9GRkAbUYaAKEBHQChNx8AlQ4EAxYWBQMyIQYDTggJA18OCgNxKQsDmCUMA6oDEwMiBxQDCzEVA5UlDAyUKRMMIyAUDA8CFgxDIxgMgiMZDJ0OGgxnFR0MLAAiDI4RIwwiLQsOizIMDg88GA5sNhkOlykfDlURIQ4fDw==","preamble":85,"sender":22963,"azel":[{"sid":{"sat":2,"code":0},"az":26,"el":30},{"sid":{"sat":5,"code":0},"az":44,"el":53},{"sid":{"sat":12,"code":0},"az":81,"el":45},{"sid":{"sat":21,"code":0},"az":125,"el":25},{"sid":{"sat":25,"code":0},"az":109,"el":70},{"sid":{"sat":26,"code":0},"az":161,"el":1},{"sid":{"sat":29,"code":0},"az":161,"el":55},{"sid":{"sat":31,"code":0},"az":149,"el":14},{"sid":{"sat":4,"code":3},"az":22,"el":22},{"sid":{"sat":5,"code":3},"az":50,"el":33},{"sid":{"sat":6,"code":3},"az":78,"el":8},{"sid":{"sat":9,"code":3},"az":95,"el":14},{"sid":{"sat":10,"code":3},"az":113,"el":41},{"sid":{"sat":11,"code":3},"az":152,"el":37},{"sid":{"sat":12,"code":3},"az":170,"el":3},{"sid":{"sat":19,"code":3},"az":34,"el":7},{"sid":{"sat":20,"code":3},"az":11,"el":49},{"sid":{"sat":21,"code":3},"az":149,"el":37},{"sid":{"sat":12,"code":12},"az":148,"el":41},{"sid":{"sat":19,"code":12},"az":35,"el":32},{"sid":{"sat":20,"code":12},"az":15,"el":2},{"sid":{"sat":22,"code":12},"az":67,"el":35},{"sid":{"sat":24,"code":12},"az":130,"el":35},{"sid":{"sat":25,"code":12},"az":157,"el":14},{"sid":{"sat":26,"code":12},"az":103,"el":21},{"sid":{"sat":29,"code":12},"az":44,"el":0},{"sid":{"sat":34,"code":12},"az":142,"el":17},{"sid":{"sat":35,"code":12},"az":34,"el":45},{"sid":{"sat":11,"code":14},"az":139,"el":50},{"sid":{"sat":12,"code":14},"az":15,"el":60},{"sid":{"sat":24,"code":14},"az":108,"el":54},{"sid":{"sat":25,"code":14},"az":151,"el":41},{"sid":{"sat":31,"code":14},"az":85,"el":17},{"sid":{"sat":33,"code":14},"az":31,"el":15}]} +{"crc":8967,"length":11,"msg_type":258,"payload":"Mgi40S4QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271503800,"ns_residual":0,"flags":1} +{"crc":27809,"length":16,"msg_type":259,"payload":"EbjRLhDkBwMZAxgt/gevLw==","preamble":85,"sender":22963,"flags":17,"tow":271503800,"year":2020,"month":3,"day":25,"hours":3,"minutes":24,"seconds":45,"ns":799999998} +{"crc":40381,"length":34,"msg_type":522,"payload":"uNEuEPLE3d5l6kJArzbNI1aSXsCKtvn/7I0xwAECWwQPBg==","preamble":85,"sender":22963,"tow":271503800,"lat":37.83123384312229,"lon":-122.28650755920783,"height":-17.554397581544016,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":13993,"length":22,"msg_type":526,"payload":"uNEuEBEAAAABAAAABgAAAPAAyQIPAg==","preamble":85,"sender":22963,"tow":271503800,"n":17,"e":1,"d":6,"h_accuracy":240,"v_accuracy":713,"n_sats":15,"flags":2} +{"crc":31846,"length":15,"msg_type":520,"payload":"uNEuEJsAhwBNAEgAcgAG","preamble":85,"sender":22963,"tow":271503800,"gdop":155,"pdop":135,"tdop":77,"hdop":72,"vdop":114,"flags":6} +{"crc":39174,"length":22,"msg_type":524,"payload":"uNEuEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271503800,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":32302,"length":6,"msg_type":528,"payload":"uNEuEP//","preamble":85,"sender":22963,"tow":271503800,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":60393,"length":237,"msg_type":97,"payload":"BQDWFQC1AgC/HwCnAAAAAAAAGQDbDADPHQDVEgDPAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwLOGQHNDAG7HwGWEgHEHQHDAAAABQHDAAAAAAAAAAAAAAAACwPVCQOxFAOuBQPOCgPOAAAABAO4FQPMCQSrFATMCgRBCwTHBQTCAAS6AAAABASwIwzIGgypIgyhGAy9GQydDAy5Ewy4FgzAAAAADA3QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADA7DAAAAGQ7BCw69GA7MAAAAHw6gIQ6aGRTJGBTXCxTBHxSsDBTOAAAAIRSqAAAA","preamble":85,"sender":22963,"states":[{"mesid":{"sat":5,"code":0},"cn0":214},{"mesid":{"sat":21,"code":0},"cn0":181},{"mesid":{"sat":2,"code":0},"cn0":191},{"mesid":{"sat":31,"code":0},"cn0":167},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":25,"code":0},"cn0":219},{"mesid":{"sat":12,"code":0},"cn0":207},{"mesid":{"sat":29,"code":0},"cn0":213},{"mesid":{"sat":18,"code":0},"cn0":207},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":131,"code":2},"cn0":206},{"mesid":{"sat":25,"code":1},"cn0":205},{"mesid":{"sat":12,"code":1},"cn0":187},{"mesid":{"sat":31,"code":1},"cn0":150},{"mesid":{"sat":18,"code":1},"cn0":196},{"mesid":{"sat":29,"code":1},"cn0":195},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":5,"code":1},"cn0":195},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":11,"code":3},"cn0":213},{"mesid":{"sat":9,"code":3},"cn0":177},{"mesid":{"sat":20,"code":3},"cn0":174},{"mesid":{"sat":5,"code":3},"cn0":206},{"mesid":{"sat":10,"code":3},"cn0":206},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":4,"code":3},"cn0":184},{"mesid":{"sat":21,"code":3},"cn0":204},{"mesid":{"sat":9,"code":4},"cn0":171},{"mesid":{"sat":20,"code":4},"cn0":204},{"mesid":{"sat":10,"code":4},"cn0":65},{"mesid":{"sat":11,"code":4},"cn0":199},{"mesid":{"sat":5,"code":4},"cn0":194},{"mesid":{"sat":0,"code":4},"cn0":186},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":4,"code":4},"cn0":176},{"mesid":{"sat":35,"code":12},"cn0":200},{"mesid":{"sat":26,"code":12},"cn0":169},{"mesid":{"sat":34,"code":12},"cn0":161},{"mesid":{"sat":24,"code":12},"cn0":189},{"mesid":{"sat":25,"code":12},"cn0":157},{"mesid":{"sat":12,"code":12},"cn0":185},{"mesid":{"sat":19,"code":12},"cn0":184},{"mesid":{"sat":22,"code":12},"cn0":192},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":12,"code":13},"cn0":208},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":12,"code":14},"cn0":195},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":25,"code":14},"cn0":193},{"mesid":{"sat":11,"code":14},"cn0":189},{"mesid":{"sat":24,"code":14},"cn0":204},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":31,"code":14},"cn0":160},{"mesid":{"sat":33,"code":14},"cn0":154},{"mesid":{"sat":25,"code":20},"cn0":201},{"mesid":{"sat":24,"code":20},"cn0":215},{"mesid":{"sat":11,"code":20},"cn0":193},{"mesid":{"sat":31,"code":20},"cn0":172},{"mesid":{"sat":12,"code":20},"cn0":206},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":33,"code":20},"cn0":170},{"mesid":{"sat":0,"code":0},"cn0":0}]} +{"crc":28627,"length":11,"msg_type":258,"payload":"Mggc0i4QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271503900,"ns_residual":0,"flags":1} +{"crc":20535,"length":16,"msg_type":259,"payload":"ERzSLhDkBwMZAxgt/uikNQ==","preamble":85,"sender":22963,"flags":17,"tow":271503900,"year":2020,"month":3,"day":25,"hours":3,"minutes":24,"seconds":45,"ns":899999998} +{"crc":37637,"length":34,"msg_type":522,"payload":"HNIuECbN6N5l6kJAEEe0I1aSXsCIC9uj/o8xwAECWwQPBg==","preamble":85,"sender":22963,"tow":271503900,"lat":37.83123384825949,"lon":-122.28650753598436,"height":-17.562479248979372,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":49661,"length":22,"msg_type":526,"payload":"HNIuEPb///8BAAAAGQAAAPAAyQIPAg==","preamble":85,"sender":22963,"tow":271503900,"n":-10,"e":1,"d":25,"h_accuracy":240,"v_accuracy":713,"n_sats":15,"flags":2} +{"crc":41841,"length":15,"msg_type":520,"payload":"HNIuEJsAhwBNAEgAcgAG","preamble":85,"sender":22963,"tow":271503900,"gdop":155,"pdop":135,"tdop":77,"hdop":72,"vdop":114,"flags":6} +{"crc":32836,"length":22,"msg_type":524,"payload":"HNIuEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271503900,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":30581,"length":6,"msg_type":528,"payload":"HNIuEP//","preamble":85,"sender":22963,"tow":271503900,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":12493,"length":249,"msg_type":74,"payload":"gNIuEAAAAAAyCEAztbM+ywuXBtZS/zLVDw8FAC9NGkVjQ0MHgoAI0bQPDxUAH5zuRduTWQe5Ufbrvg8PAgDj8AFJeFOsB8J6/s6mDw8fANJEJD2MEG0GuKL7E9sPDxkAWmmwQN2CzAZRbfQNzg8PDABt7NI+qVOaBp7PBYzVDw8dAPFEJD1u3gEFMpn8O80PDxkBFWmwQDM+TAUp+/bCvA8PDAGV8AFJyqT6BefO/k+WDw8fARvs0j5GIyUF1IYEzcMPDx0B47SzPvGUIgVLd/95wg8PBQHiMP4+UXi7BsOZBMDVDw8LA0XNzkTePVkHhcruZ7EPDwkD","preamble":85,"sender":22963,"header":{"t":{"tow":271504000,"ns_residual":0,"wn":2098},"n_obs":64},"obs":[{"P":1051964723,"L":{"i":110562251,"f":214},"D":{"i":-174,"f":50},"cn0":213,"lock":15,"flags":15,"sid":{"sat":5,"code":0}},{"P":1159351599,"L":{"i":121848675,"f":130},"D":{"i":2176,"f":209},"cn0":180,"lock":15,"flags":15,"sid":{"sat":21,"code":0}},{"P":1173265439,"L":{"i":123311067,"f":185},"D":{"i":-2479,"f":235},"cn0":190,"lock":15,"flags":15,"sid":{"sat":2,"code":0}},{"P":1224863971,"L":{"i":128734072,"f":194},"D":{"i":-390,"f":206},"cn0":166,"lock":15,"flags":15,"sid":{"sat":31,"code":0}},{"P":1025787090,"L":{"i":107810956,"f":184},"D":{"i":-1118,"f":19},"cn0":219,"lock":15,"flags":15,"sid":{"sat":25,"code":0}},{"P":1085303130,"L":{"i":114066141,"f":81},"D":{"i":-2963,"f":13},"cn0":206,"lock":15,"flags":15,"sid":{"sat":12,"code":0}},{"P":1054010477,"L":{"i":110777257,"f":158},"D":{"i":1487,"f":140},"cn0":213,"lock":15,"flags":15,"sid":{"sat":29,"code":0}},{"P":1025787121,"L":{"i":84008558,"f":50},"D":{"i":-871,"f":59},"cn0":205,"lock":15,"flags":15,"sid":{"sat":25,"code":1}},{"P":1085303061,"L":{"i":88882739,"f":41},"D":{"i":-2309,"f":194},"cn0":188,"lock":15,"flags":15,"sid":{"sat":12,"code":1}},{"P":1224863893,"L":{"i":100312266,"f":231},"D":{"i":-306,"f":79},"cn0":150,"lock":15,"flags":15,"sid":{"sat":31,"code":1}},{"P":1054010395,"L":{"i":86319942,"f":212},"D":{"i":1158,"f":205},"cn0":195,"lock":15,"flags":15,"sid":{"sat":29,"code":1}},{"P":1051964643,"L":{"i":86152433,"f":75},"D":{"i":-137,"f":121},"cn0":194,"lock":15,"flags":15,"sid":{"sat":5,"code":1}},{"P":1056846050,"L":{"i":112949329,"f":195},"D":{"i":1177,"f":192},"cn0":213,"lock":15,"flags":15,"sid":{"sat":11,"code":3}},{"P":1154403653,"L":{"i":123289054,"f":133},"D":{"i":-4406,"f":103},"cn0":177,"lock":15,"flags":15,"sid":{"sat":9,"code":3}}]} +{"crc":44911,"length":249,"msg_type":74,"payload":"gNIuEAAAAAAyCEGSlis9GMeKBmlI+xCuDw8UAxd8DEAG+dgGqJ4IdM4PDwUD6txgPgx2pgZaJPQKzg8PCgOZZAVDpootB9fl+u64Dw8EA1UHLT9N58IGW1kGsMwPDxUD+s3ORCgwtwV7nPLtrA8PCQQUmCs9/ZoWBdJU/CrMDw8UBPYx/j4RejwFCpMDc8cPDwsEPX0MQF5sUwVPtQY4wg8PBQQlZQVD6TKVBcYI/JCwDw8EBKT3kkWX7T4HWyb69cgPDyMMx+XuSXklswdoQPReqQ8PGgzQ5RlMi/LsByDJCC+hDw8iDKyHnkdDdHUHx+/6Rb0PDxgM","preamble":85,"sender":22963,"header":{"t":{"tow":271504000,"ns_residual":0,"wn":2098},"n_obs":65},"obs":[{"P":1026266770,"L":{"i":109758232,"f":105},"D":{"i":-1208,"f":16},"cn0":174,"lock":15,"flags":15,"sid":{"sat":20,"code":3}},{"P":1074560023,"L":{"i":114882822,"f":168},"D":{"i":2206,"f":116},"cn0":206,"lock":15,"flags":15,"sid":{"sat":5,"code":3}},{"P":1046535402,"L":{"i":111572492,"f":90},"D":{"i":-3036,"f":10},"cn0":206,"lock":15,"flags":15,"sid":{"sat":10,"code":3}},{"P":1124426905,"L":{"i":120425126,"f":215},"D":{"i":-1307,"f":238},"cn0":184,"lock":15,"flags":15,"sid":{"sat":4,"code":3}},{"P":1059915605,"L":{"i":113436493,"f":91},"D":{"i":1625,"f":176},"cn0":204,"lock":15,"flags":15,"sid":{"sat":21,"code":3}},{"P":1154403834,"L":{"i":95891496,"f":123},"D":{"i":-3428,"f":237},"cn0":172,"lock":15,"flags":15,"sid":{"sat":9,"code":4}},{"P":1026267156,"L":{"i":85367549,"f":210},"D":{"i":-940,"f":42},"cn0":204,"lock":15,"flags":15,"sid":{"sat":20,"code":4}},{"P":1056846326,"L":{"i":87849489,"f":10},"D":{"i":915,"f":115},"cn0":199,"lock":15,"flags":15,"sid":{"sat":11,"code":4}},{"P":1074560317,"L":{"i":89353310,"f":79},"D":{"i":1717,"f":56},"cn0":194,"lock":15,"flags":15,"sid":{"sat":5,"code":4}},{"P":1124427045,"L":{"i":93663977,"f":198},"D":{"i":-1016,"f":144},"cn0":176,"lock":15,"flags":15,"sid":{"sat":4,"code":4}},{"P":1167259556,"L":{"i":121564567,"f":91},"D":{"i":-1498,"f":245},"cn0":200,"lock":15,"flags":15,"sid":{"sat":35,"code":12}},{"P":1240393159,"L":{"i":129181049,"f":104},"D":{"i":-3008,"f":94},"cn0":169,"lock":15,"flags":15,"sid":{"sat":26,"code":12}},{"P":1276765648,"L":{"i":132969099,"f":32},"D":{"i":2249,"f":47},"cn0":161,"lock":15,"flags":15,"sid":{"sat":34,"code":12}},{"P":1201571756,"L":{"i":125137987,"f":199},"D":{"i":-1297,"f":69},"cn0":189,"lock":15,"flags":15,"sid":{"sat":24,"code":12}}]} +{"crc":63141,"length":249,"msg_type":74,"payload":"gNIuEAAAAAAyCEImbBVNZyQHCLkzBT6dDw8ZDERTUUVhFzgHk04G67kPDwwM/tBCRxfnawe25f6OuA8PEwxtmGJHWDZvBz9XCbbADw8WDOtSUUXDD5UFmt8Ey9APDwwN1YQFQpVc8AZw/vttww8PDA51pSJLOJPlB/hHBEXBDw8ZDiu3IkeN9XkH2xsEGL0PDwsOsBElQ2OVDgdiNPmDzQ8PGA5KGkNRu2uKCKud8+ahDw8fDs0981Hj7pwItJ/39ZoPDyEOVKUiS8L/DAb/RgOgyQ8PGRTGEyVDK0RoBUvK+tzXDw8YFGm2IkcxiroF9iQDBMIPDwsU","preamble":85,"sender":22963,"header":{"t":{"tow":271504000,"ns_residual":0,"wn":2098},"n_obs":66},"obs":[{"P":1293249574,"L":{"i":134685799,"f":185},"D":{"i":1331,"f":62},"cn0":157,"lock":15,"flags":15,"sid":{"sat":25,"code":12}},{"P":1162957636,"L":{"i":121116513,"f":147},"D":{"i":1614,"f":235},"cn0":185,"lock":15,"flags":15,"sid":{"sat":12,"code":12}},{"P":1195561214,"L":{"i":124512023,"f":182},"D":{"i":-283,"f":142},"cn0":184,"lock":15,"flags":15,"sid":{"sat":19,"code":12}},{"P":1197643885,"L":{"i":124728920,"f":63},"D":{"i":2391,"f":182},"cn0":192,"lock":15,"flags":15,"sid":{"sat":22,"code":12}},{"P":1162957547,"L":{"i":93654979,"f":154},"D":{"i":1247,"f":203},"cn0":208,"lock":15,"flags":15,"sid":{"sat":12,"code":13}},{"P":1107657941,"L":{"i":116415637,"f":112},"D":{"i":-1026,"f":109},"cn0":195,"lock":15,"flags":15,"sid":{"sat":12,"code":14}},{"P":1260561781,"L":{"i":132485944,"f":248},"D":{"i":1095,"f":69},"cn0":193,"lock":15,"flags":15,"sid":{"sat":25,"code":14}},{"P":1193457451,"L":{"i":125433229,"f":219},"D":{"i":1051,"f":24},"cn0":189,"lock":15,"flags":15,"sid":{"sat":11,"code":14}},{"P":1126502832,"L":{"i":118396259,"f":98},"D":{"i":-1740,"f":131},"cn0":205,"lock":15,"flags":15,"sid":{"sat":24,"code":14}},{"P":1363352138,"L":{"i":143289275,"f":171},"D":{"i":-3171,"f":230},"cn0":161,"lock":15,"flags":15,"sid":{"sat":31,"code":14}},{"P":1374895565,"L":{"i":144502499,"f":180},"D":{"i":-2145,"f":245},"cn0":154,"lock":15,"flags":15,"sid":{"sat":33,"code":14}},{"P":1260561748,"L":{"i":101515202,"f":255},"D":{"i":838,"f":160},"cn0":201,"lock":15,"flags":15,"sid":{"sat":25,"code":20}},{"P":1126503366,"L":{"i":90719275,"f":75},"D":{"i":-1334,"f":220},"cn0":215,"lock":15,"flags":15,"sid":{"sat":24,"code":20}},{"P":1193457257,"L":{"i":96111153,"f":246},"D":{"i":804,"f":4},"cn0":194,"lock":15,"flags":15,"sid":{"sat":11,"code":20}}]} +{"crc":265,"length":62,"msg_type":74,"payload":"gNIuEAAAAAAyCENqGkNRYk+LBt6C9uKtDw8fFDeEBULWG1EF7u787M4PDwwUrT3zUc1+mQYZmPlYqg8PIRQ=","preamble":85,"sender":22963,"header":{"t":{"tow":271504000,"ns_residual":0,"wn":2098},"n_obs":67},"obs":[{"P":1363352170,"L":{"i":109793122,"f":222},"D":{"i":-2430,"f":226},"cn0":173,"lock":15,"flags":15,"sid":{"sat":31,"code":20}},{"P":1107657783,"L":{"i":89201622,"f":238},"D":{"i":-786,"f":236},"cn0":206,"lock":15,"flags":15,"sid":{"sat":12,"code":20}},{"P":1374895533,"L":{"i":110722765,"f":25},"D":{"i":-1640,"f":88},"cn0":170,"lock":15,"flags":15,"sid":{"sat":33,"code":20}}]} +{"crc":49809,"length":9,"msg_type":117,"payload":"/wAAAAAAAAAA","preamble":85,"sender":22963,"mask":255,"l1ca_bias":0,"l1p_bias":0,"l2ca_bias":0,"l2p_bias":0} +{"crc":13967,"length":11,"msg_type":258,"payload":"MgiA0i4QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271504000,"ns_residual":0,"flags":1} +{"crc":33018,"length":16,"msg_type":259,"payload":"EYDSLhDkBwMZAxgt/smaOw==","preamble":85,"sender":22963,"flags":17,"tow":271504000,"year":2020,"month":3,"day":25,"hours":3,"minutes":24,"seconds":45,"ns":999999998} +{"crc":50172,"length":34,"msg_type":522,"payload":"gNIuEHWrBN9l6kJA3PywI1aSXsDeCU+5HZAxwAECWwQPBg==","preamble":85,"sender":22963,"tow":271504000,"lat":37.83123386123672,"lon":-122.28650753292044,"height":-17.56295355014469,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":40391,"length":22,"msg_type":526,"payload":"gNIuEP//////////2/////AAyQIPAg==","preamble":85,"sender":22963,"tow":271504000,"n":-1,"e":-1,"d":-37,"h_accuracy":240,"v_accuracy":713,"n_sats":15,"flags":2} +{"crc":1310,"length":15,"msg_type":520,"payload":"gNIuEJsAhwBNAEgAcgAG","preamble":85,"sender":22963,"tow":271504000,"gdop":155,"pdop":135,"tdop":77,"hdop":72,"vdop":114,"flags":6} +{"crc":32373,"length":22,"msg_type":524,"payload":"gNIuEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271504000,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":45618,"length":6,"msg_type":528,"payload":"gNIuEP//","preamble":85,"sender":22963,"tow":271504000,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":40942,"length":4,"msg_type":65535,"payload":"AAUCgA==","preamble":85,"sender":22963,"flags":2147616000} +{"crc":2168,"length":24,"msg_type":72,"payload":"UO0a3iqORMHK1UJhIkRQwc9nFIPvrk1B","preamble":85,"sender":22963,"x":-2694229.735196747,"y":-4264073.519704292,"z":3890655.0240602265} +{"crc":47991,"length":26,"msg_type":23,"payload":"bWFpbgAAAAAAAAAAAAAAAAAAAAAAAAx1AAA=","preamble":85,"sender":22963,"name":"main\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":0,"stack_free":29964} +{"crc":23863,"length":26,"msg_type":23,"payload":"aWRsZQAAAAAAAAAAAAAAAAAAAABbAXwAAAA=","preamble":85,"sender":22963,"name":"idle\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":347,"stack_free":124} +{"crc":58151,"length":26,"msg_type":23,"payload":"cnBtc2cAAAAAAAAAAAAAAAAAAAABANwNAAA=","preamble":85,"sender":22963,"name":"rpmsg\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":1,"stack_free":3548} +{"crc":51784,"length":26,"msg_type":23,"payload":"U0JQAAAAAAAAAAAAAAAAAAAAAAAAAPz/AAA=","preamble":85,"sender":22963,"name":"SBP\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":0,"stack_free":65532} +{"crc":33651,"length":26,"msg_type":23,"payload":"TkFQAAAAAAAAAAAAAAAAAAAAAAAAAASAAAA=","preamble":85,"sender":22963,"name":"NAP\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":0,"stack_free":32772} +{"crc":29877,"length":26,"msg_type":23,"payload":"bWFuYWdlIFBWAAAAAAAAAAAAAAAAACQEAAA=","preamble":85,"sender":22963,"name":"manage PV\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":0,"stack_free":1060} +{"crc":14252,"length":26,"msg_type":23,"payload":"SU1VAAAAAAAAAAAAAAAAAAAAAAAAAPQHAAA=","preamble":85,"sender":22963,"name":"IMU\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":0,"stack_free":2036} +{"crc":18976,"length":26,"msg_type":23,"payload":"SU1VIGF1eAAAAAAAAAAAAAAAAAAAAEwIAAA=","preamble":85,"sender":22963,"name":"IMU aux\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":0,"stack_free":2124} +{"crc":26120,"length":26,"msg_type":23,"payload":"bmRiAAAAAAAAAAAAAAAAAAAAAAAAAFAMAAA=","preamble":85,"sender":22963,"name":"ndb\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":0,"stack_free":3152} +{"crc":58848,"length":26,"msg_type":23,"payload":"TkFQIFRyYWNraW5nAAAAAAAAAAAjAdR3AAA=","preamble":85,"sender":22963,"name":"NAP Tracking\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":291,"stack_free":30676} +{"crc":40082,"length":26,"msg_type":23,"payload":"ZGVjb2RlAAAAAAAAAAAAAAAAAAAIANQGAAA=","preamble":85,"sender":22963,"name":"decode\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":8,"stack_free":1748} +{"crc":54128,"length":26,"msg_type":23,"payload":"bWFuYWdlIGFjcQAAAAAAAAAAAAC7AKR3AAA=","preamble":85,"sender":22963,"name":"manage acq\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":187,"stack_free":30628} +{"crc":58531,"length":26,"msg_type":23,"payload":"c3lzdGVtIG1vbml0b3IAAAAAAAAAACwGAAA=","preamble":85,"sender":22963,"name":"system monitor\u0000\u0000\u0000\u0000\u0000\u0000","cpu":0,"stack_free":1580} +{"crc":44438,"length":26,"msg_type":23,"payload":"V2F0Y2hkb2cAAAAAAAAAAAAAAAAAAOQDAAA=","preamble":85,"sender":22963,"name":"Watchdog\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":0,"stack_free":996} +{"crc":28732,"length":26,"msg_type":23,"payload":"c3RhcmxpbmcAAAAAAAAAAAAAAACYAPz/AAA=","preamble":85,"sender":22963,"name":"starling\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":152,"stack_free":65532} +{"crc":57561,"length":26,"msg_type":23,"payload":"bWVfY2FsY19wdnQAAAAAAAAAAAAJAIwjAAA=","preamble":85,"sender":22963,"name":"me_calc_pvt\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":9,"stack_free":9100} +{"crc":38576,"length":26,"msg_type":23,"payload":"UFBTAAAAAAAAAAAAAAAAAAAAAAAAAEgHAAA=","preamble":85,"sender":22963,"name":"PPS\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":0,"stack_free":1864} +{"crc":50933,"length":26,"msg_type":23,"payload":"c3BlY3RydW0gYW5hbHl6ZXIAAAAAANQPAAA=","preamble":85,"sender":22963,"name":"spectrum analyzer\u0000\u0000\u0000","cpu":0,"stack_free":4052} +{"crc":21061,"length":11,"msg_type":258,"payload":"Mgjk0i4QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271504100,"ns_residual":0,"flags":1} +{"crc":38489,"length":16,"msg_type":259,"payload":"EeTSLhDkBwMZAxgu/uD1BQ==","preamble":85,"sender":22963,"flags":17,"tow":271504100,"year":2020,"month":3,"day":25,"hours":3,"minutes":24,"seconds":46,"ns":99999998} +{"crc":27957,"length":34,"msg_type":522,"payload":"5NIuEB7PBt9l6kJAj1OeI1aSXsClI5ypKZIxwAECWwQPBg==","preamble":85,"sender":22963,"tow":271504100,"lat":37.83123386223291,"lon":-122.28650751554072,"height":-17.57094821989053,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":22516,"length":22,"msg_type":526,"payload":"5NIuEP7///8KAAAADwAAAPAAyQIPAg==","preamble":85,"sender":22963,"tow":271504100,"n":-2,"e":10,"d":15,"h_accuracy":240,"v_accuracy":713,"n_sats":15,"flags":2} +{"crc":10673,"length":15,"msg_type":520,"payload":"5NIuEJsAhwBNAEgAcgAG","preamble":85,"sender":22963,"tow":271504100,"gdop":155,"pdop":135,"tdop":77,"hdop":72,"vdop":114,"flags":6} +{"crc":26307,"length":22,"msg_type":524,"payload":"5NIuEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271504100,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":60299,"length":6,"msg_type":528,"payload":"5NIuEP//","preamble":85,"sender":22963,"tow":271504100,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":27804,"length":51,"msg_type":1025,"payload":"BkdMTyBMMk9GIE1FIDEgWysxMjA0bXNdIGxvdyBDTjAgdG9vIGxvbmcsIGRyb3BwaW5n","preamble":85,"sender":22963,"level":6,"text":"GLO L2OF ME 1 [+1204ms] low CN0 too long, dropping"} +{"crc":47304,"length":11,"msg_type":258,"payload":"MghI0y4QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271504200,"ns_residual":0,"flags":1} +{"crc":59533,"length":16,"msg_type":259,"payload":"EUjTLhDkBwMZAxgu/sHrCw==","preamble":85,"sender":22963,"flags":17,"tow":271504200,"year":2020,"month":3,"day":25,"hours":3,"minutes":24,"seconds":46,"ns":199999998} +{"crc":54181,"length":34,"msg_type":522,"payload":"SNMuEEfmHt9l6kJAvrSaI1aSXsBUpdlvfZQxwAECWwQPBg==","preamble":85,"sender":22963,"tow":271504200,"lat":37.831233873450905,"lon":-122.28650751216898,"height":-17.580039015422997,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":25912,"length":22,"msg_type":526,"payload":"SNMuEAwAAAACAAAAHgAAAPAAyQIPAg==","preamble":85,"sender":22963,"tow":271504200,"n":12,"e":2,"d":30,"h_accuracy":240,"v_accuracy":713,"n_sats":15,"flags":2} +{"crc":10017,"length":15,"msg_type":520,"payload":"SNMuEJsAhwBNAEgAcgAG","preamble":85,"sender":22963,"tow":271504200,"gdop":155,"pdop":135,"tdop":77,"hdop":72,"vdop":114,"flags":6} +{"crc":39663,"length":22,"msg_type":524,"payload":"SNMuEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271504200,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":43793,"length":6,"msg_type":528,"payload":"SNMuEP//","preamble":85,"sender":22963,"tow":271504200,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":25520,"length":11,"msg_type":258,"payload":"Mgis0y4QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271504300,"ns_residual":0,"flags":1} +{"crc":3771,"length":16,"msg_type":259,"payload":"EazTLhDkBwMZAxgu/qLhEQ==","preamble":85,"sender":22963,"flags":17,"tow":271504300,"year":2020,"month":3,"day":25,"hours":3,"minutes":24,"seconds":46,"ns":299999998} +{"crc":59944,"length":34,"msg_type":522,"payload":"rNMuEMGoFd9l6kJAC/igI1aSXsBkYKDK55UxwAECWwQPBg==","preamble":85,"sender":22963,"tow":271504300,"lat":37.83123386914804,"lon":-122.28650751800176,"height":-17.585568107752252,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":38593,"length":22,"msg_type":526,"payload":"rNMuEPX////7////9v////AAyQIPAg==","preamble":85,"sender":22963,"tow":271504300,"n":-11,"e":-5,"d":-10,"h_accuracy":240,"v_accuracy":713,"n_sats":15,"flags":2} +{"crc":24476,"length":15,"msg_type":520,"payload":"rNMuEJsAhwBNAEgAcgAG","preamble":85,"sender":22963,"tow":271504300,"gdop":155,"pdop":135,"tdop":77,"hdop":72,"vdop":114,"flags":6} +{"crc":14540,"length":22,"msg_type":524,"payload":"rNMuEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271504300,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":9864,"length":6,"msg_type":528,"payload":"rNMuEP//","preamble":85,"sender":22963,"tow":271504300,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":54568,"length":237,"msg_type":97,"payload":"BQDVFQC0AgC+HwCmAAAAAAAAGQDaDADOHQDUEgDOAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwLNGQHNDAG7HwGXEgHDHQHDAAAABQHCAAAAAAAAAAAAAAAAZAPVYgOxZgOtZQPOXQPOAAAAagO4aAPMYgSrZgTMAAAAZATHZQTDaAS6AAAAagSwIwzIGgyoIgygGAy9GQycDAy5Ewy4FgzAAAAADA3QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADA7DAAAAGQ7BCw69GA7MAAAAHw6hIQ6aGRTJGBTXCxTBHxStDBTPAAAAIRSqAAAA","preamble":85,"sender":22963,"states":[{"mesid":{"sat":5,"code":0},"cn0":213},{"mesid":{"sat":21,"code":0},"cn0":180},{"mesid":{"sat":2,"code":0},"cn0":190},{"mesid":{"sat":31,"code":0},"cn0":166},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":25,"code":0},"cn0":218},{"mesid":{"sat":12,"code":0},"cn0":206},{"mesid":{"sat":29,"code":0},"cn0":212},{"mesid":{"sat":18,"code":0},"cn0":206},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":131,"code":2},"cn0":205},{"mesid":{"sat":25,"code":1},"cn0":205},{"mesid":{"sat":12,"code":1},"cn0":187},{"mesid":{"sat":31,"code":1},"cn0":151},{"mesid":{"sat":18,"code":1},"cn0":195},{"mesid":{"sat":29,"code":1},"cn0":195},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":5,"code":1},"cn0":194},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":100,"code":3},"cn0":213},{"mesid":{"sat":98,"code":3},"cn0":177},{"mesid":{"sat":102,"code":3},"cn0":173},{"mesid":{"sat":101,"code":3},"cn0":206},{"mesid":{"sat":93,"code":3},"cn0":206},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":106,"code":3},"cn0":184},{"mesid":{"sat":104,"code":3},"cn0":204},{"mesid":{"sat":98,"code":4},"cn0":171},{"mesid":{"sat":102,"code":4},"cn0":204},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":100,"code":4},"cn0":199},{"mesid":{"sat":101,"code":4},"cn0":195},{"mesid":{"sat":104,"code":4},"cn0":186},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":106,"code":4},"cn0":176},{"mesid":{"sat":35,"code":12},"cn0":200},{"mesid":{"sat":26,"code":12},"cn0":168},{"mesid":{"sat":34,"code":12},"cn0":160},{"mesid":{"sat":24,"code":12},"cn0":189},{"mesid":{"sat":25,"code":12},"cn0":156},{"mesid":{"sat":12,"code":12},"cn0":185},{"mesid":{"sat":19,"code":12},"cn0":184},{"mesid":{"sat":22,"code":12},"cn0":192},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":12,"code":13},"cn0":208},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":12,"code":14},"cn0":195},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":25,"code":14},"cn0":193},{"mesid":{"sat":11,"code":14},"cn0":189},{"mesid":{"sat":24,"code":14},"cn0":204},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":31,"code":14},"cn0":161},{"mesid":{"sat":33,"code":14},"cn0":154},{"mesid":{"sat":25,"code":20},"cn0":201},{"mesid":{"sat":24,"code":20},"cn0":215},{"mesid":{"sat":11,"code":20},"cn0":193},{"mesid":{"sat":31,"code":20},"cn0":173},{"mesid":{"sat":12,"code":20},"cn0":207},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":33,"code":20},"cn0":170},{"mesid":{"sat":0,"code":0},"cn0":0}]} +{"crc":23048,"length":11,"msg_type":258,"payload":"MggQ1C4QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271504400,"ns_residual":0,"flags":1} +{"crc":15301,"length":16,"msg_type":259,"payload":"ERDULhDkBwMZAxgu/oPXFw==","preamble":85,"sender":22963,"flags":17,"tow":271504400,"year":2020,"month":3,"day":25,"hours":3,"minutes":24,"seconds":46,"ns":399999998} +{"crc":46816,"length":34,"msg_type":522,"payload":"ENQuEB0sLd9l6kJABTmYI1aSXsAlo5Be0pcxwAECWwQPBg==","preamble":85,"sender":22963,"tow":271504400,"lat":37.831233880097194,"lon":-122.28650750985624,"height":-17.593053732215726,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":52421,"length":22,"msg_type":526,"payload":"ENQuEAMAAAAFAAAAEgAAAPAAyQIPAg==","preamble":85,"sender":22963,"tow":271504400,"n":3,"e":5,"d":18,"h_accuracy":240,"v_accuracy":713,"n_sats":15,"flags":2} +{"crc":5345,"length":15,"msg_type":520,"payload":"ENQuEJsAhwBNAEgAcgAG","preamble":85,"sender":22963,"tow":271504400,"gdop":155,"pdop":135,"tdop":77,"hdop":72,"vdop":114,"flags":6} +{"crc":42448,"length":22,"msg_type":524,"payload":"ENQuEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271504400,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":45331,"length":6,"msg_type":528,"payload":"ENQuEP//","preamble":85,"sender":22963,"tow":271504400,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":49809,"length":9,"msg_type":117,"payload":"/wAAAAAAAAAA","preamble":85,"sender":22963,"mask":255,"l1ca_bias":0,"l1p_bias":0,"l2ca_bias":0,"l2p_bias":0} +{"crc":16066,"length":11,"msg_type":258,"payload":"Mgh01C4QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271504500,"ns_residual":0,"flags":1} +{"crc":32569,"length":16,"msg_type":259,"payload":"EXTULhDkBwMZAxgu/mTNHQ==","preamble":85,"sender":22963,"flags":17,"tow":271504500,"year":2020,"month":3,"day":25,"hours":3,"minutes":24,"seconds":46,"ns":499999998} +{"crc":39867,"length":34,"msg_type":522,"payload":"dNQuEEqeN99l6kJAxSGPI1aSXsC0pCx0IJkxwAECWwQPBg==","preamble":85,"sender":22963,"tow":271504500,"lat":37.83123388496149,"lon":-122.28650750138975,"height":-17.59815145578314,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":56083,"length":22,"msg_type":526,"payload":"dNQuEP////8DAAAA/P////AAyQIPAg==","preamble":85,"sender":22963,"tow":271504500,"n":-1,"e":3,"d":-4,"h_accuracy":240,"v_accuracy":713,"n_sats":15,"flags":2} +{"crc":14414,"length":15,"msg_type":520,"payload":"dNQuEJsAhwBNAEgAcgAG","preamble":85,"sender":22963,"tow":271504500,"gdop":155,"pdop":135,"tdop":77,"hdop":72,"vdop":114,"flags":6} +{"crc":48486,"length":22,"msg_type":524,"payload":"dNQuEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271504500,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":59562,"length":6,"msg_type":528,"payload":"dNQuEP//","preamble":85,"sender":22963,"tow":271504500,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":37788,"length":11,"msg_type":258,"payload":"MgjY1C4QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271504600,"ns_residual":0,"flags":1} +{"crc":20396,"length":16,"msg_type":259,"payload":"EdjULhDkBwMZAxgu/kXDIw==","preamble":85,"sender":22963,"flags":17,"tow":271504600,"year":2020,"month":3,"day":25,"hours":3,"minutes":24,"seconds":46,"ns":599999998} +{"crc":5725,"length":34,"msg_type":522,"payload":"2NQuEMunJt9l6kJAkZCII1aSXsB6fpJwBpsxwAECWwQPBg==","preamble":85,"sender":22963,"tow":271504600,"lat":37.83123387706254,"lon":-122.28650749527357,"height":-17.605567012562894,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":38442,"length":22,"msg_type":526,"payload":"2NQuEPn///8AAAAAFwAAAPAAyQIPAg==","preamble":85,"sender":22963,"tow":271504600,"n":-7,"e":0,"d":23,"h_accuracy":240,"v_accuracy":713,"n_sats":15,"flags":2} +{"crc":19903,"length":15,"msg_type":520,"payload":"2NQuEJsAhwBNAEgAcgAG","preamble":85,"sender":22963,"tow":271504600,"gdop":155,"pdop":135,"tdop":77,"hdop":72,"vdop":114,"flags":6} +{"crc":38076,"length":22,"msg_type":524,"payload":"2NQuEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271504600,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":609,"length":6,"msg_type":528,"payload":"2NQuEP//","preamble":85,"sender":22963,"tow":271504600,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":55465,"length":34,"msg_type":30583,"payload":"gwJd1C4QAhf/AAf/AC/+AAf/f///f/f///AC5edV7m7lcA==","preamble":85,"sender":22963,"sid":{"sat":131,"code":2},"tow":271504477,"message_type":2,"data":[23,255,0,7,255,0,47,254,0,7,255,127,255,255,127,247,255,255,240,2,229,231,85,238,110,229,112]} +{"crc":3895,"length":11,"msg_type":258,"payload":"Mgg81S4QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271504700,"ns_residual":0,"flags":1} +{"crc":51347,"length":16,"msg_type":259,"payload":"ETzVLhDkBwMZAxgu/ia5KQ==","preamble":85,"sender":22963,"flags":17,"tow":271504700,"year":2020,"month":3,"day":25,"hours":3,"minutes":24,"seconds":46,"ns":699999998} +{"crc":57778,"length":34,"msg_type":522,"payload":"PNUuEGucf99l6kJAHxl0I1aSXsDx3/7NApwxwAECWwQPBg==","preamble":85,"sender":22963,"tow":271504700,"lat":37.8312339184857,"lon":-122.28650747621258,"height":-17.60941779587296,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":19487,"length":22,"msg_type":526,"payload":"PNUuEAwAAAD9////5f////AAyQIPAg==","preamble":85,"sender":22963,"tow":271504700,"n":12,"e":-3,"d":-27,"h_accuracy":240,"v_accuracy":713,"n_sats":15,"flags":2} +{"crc":20067,"length":15,"msg_type":520,"payload":"PNUuEJsAhwBNAEgAcgAG","preamble":85,"sender":22963,"tow":271504700,"gdop":155,"pdop":135,"tdop":77,"hdop":72,"vdop":114,"flags":6} +{"crc":58217,"length":22,"msg_type":524,"payload":"PNUuEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271504700,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":9641,"length":6,"msg_type":528,"payload":"PNUuEP//","preamble":85,"sender":22963,"tow":271504700,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":41336,"length":136,"msg_type":151,"payload":"AgAaHgUALDUMAFEtFQB9GRkAbUYaAKEBHQChNx8AlQ4EAxYWBQMyIQYDTggJA18OCgNxKQsDmCUMA6oDEwMiBxQDCzEVA5UlDAyUKRMMIyAUDA8CFgxDIxgMgiMZDJ0OGgxnFR0MLAAiDI4RIwwiLQsOizIMDg88GA5sNhkOlykfDlURIQ4fDw==","preamble":85,"sender":22963,"azel":[{"sid":{"sat":2,"code":0},"az":26,"el":30},{"sid":{"sat":5,"code":0},"az":44,"el":53},{"sid":{"sat":12,"code":0},"az":81,"el":45},{"sid":{"sat":21,"code":0},"az":125,"el":25},{"sid":{"sat":25,"code":0},"az":109,"el":70},{"sid":{"sat":26,"code":0},"az":161,"el":1},{"sid":{"sat":29,"code":0},"az":161,"el":55},{"sid":{"sat":31,"code":0},"az":149,"el":14},{"sid":{"sat":4,"code":3},"az":22,"el":22},{"sid":{"sat":5,"code":3},"az":50,"el":33},{"sid":{"sat":6,"code":3},"az":78,"el":8},{"sid":{"sat":9,"code":3},"az":95,"el":14},{"sid":{"sat":10,"code":3},"az":113,"el":41},{"sid":{"sat":11,"code":3},"az":152,"el":37},{"sid":{"sat":12,"code":3},"az":170,"el":3},{"sid":{"sat":19,"code":3},"az":34,"el":7},{"sid":{"sat":20,"code":3},"az":11,"el":49},{"sid":{"sat":21,"code":3},"az":149,"el":37},{"sid":{"sat":12,"code":12},"az":148,"el":41},{"sid":{"sat":19,"code":12},"az":35,"el":32},{"sid":{"sat":20,"code":12},"az":15,"el":2},{"sid":{"sat":22,"code":12},"az":67,"el":35},{"sid":{"sat":24,"code":12},"az":130,"el":35},{"sid":{"sat":25,"code":12},"az":157,"el":14},{"sid":{"sat":26,"code":12},"az":103,"el":21},{"sid":{"sat":29,"code":12},"az":44,"el":0},{"sid":{"sat":34,"code":12},"az":142,"el":17},{"sid":{"sat":35,"code":12},"az":34,"el":45},{"sid":{"sat":11,"code":14},"az":139,"el":50},{"sid":{"sat":12,"code":14},"az":15,"el":60},{"sid":{"sat":24,"code":14},"az":108,"el":54},{"sid":{"sat":25,"code":14},"az":151,"el":41},{"sid":{"sat":31,"code":14},"az":85,"el":17},{"sid":{"sat":33,"code":14},"az":31,"el":15}]} +{"crc":22123,"length":11,"msg_type":258,"payload":"Mgig1S4QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271504800,"ns_residual":0,"flags":1} +{"crc":5657,"length":16,"msg_type":259,"payload":"EaDVLhDkBwMZAxgu/gevLw==","preamble":85,"sender":22963,"flags":17,"tow":271504800,"year":2020,"month":3,"day":25,"hours":3,"minutes":24,"seconds":46,"ns":799999998} +{"crc":45916,"length":34,"msg_type":522,"payload":"oNUuEDcN0N9l6kJAoE9KI1aSXsBEj2iaVp4xwAECWwQPBg==","preamble":85,"sender":22963,"tow":271504800,"lat":37.83123395594378,"lon":-122.28650743729531,"height":-17.618508959319357,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":57277,"length":22,"msg_type":526,"payload":"oNUuEAUAAAABAAAAHQAAAPAAyQIPAg==","preamble":85,"sender":22963,"tow":271504800,"n":5,"e":1,"d":29,"h_accuracy":240,"v_accuracy":713,"n_sats":15,"flags":2} +{"crc":59404,"length":15,"msg_type":520,"payload":"oNUuEJsAhwBNAEgAcgAG","preamble":85,"sender":22963,"tow":271504800,"gdop":155,"pdop":135,"tdop":77,"hdop":72,"vdop":114,"flags":6} +{"crc":7512,"length":22,"msg_type":524,"payload":"oNUuEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271504800,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":57582,"length":6,"msg_type":528,"payload":"oNUuEP//","preamble":85,"sender":22963,"tow":271504800,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":44572,"length":237,"msg_type":97,"payload":"BQDVFQC0AgC9HwCmAAAAAAAAGQDaDADOHQDUEgDOAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwLNGQHNDAG8HwGXEgHDHQHDAAAABQHCAAAAAAAAAAAAAAAACwPVCQOwFAOsBQPOCgPOAAAABAO3FQPLCQSrFATMAAAACwTHBQTCAAS6AAAABASwIwzIGgyoIgyhGAy9GQycDAy5Ewy4Fgy/AAAADA3PAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADA7DAAAAGQ7ACw69GA7MAAAAHw6gIQ6aGRTIGBTXCxTBHxStDBTPAAAAIRSqAAAA","preamble":85,"sender":22963,"states":[{"mesid":{"sat":5,"code":0},"cn0":213},{"mesid":{"sat":21,"code":0},"cn0":180},{"mesid":{"sat":2,"code":0},"cn0":189},{"mesid":{"sat":31,"code":0},"cn0":166},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":25,"code":0},"cn0":218},{"mesid":{"sat":12,"code":0},"cn0":206},{"mesid":{"sat":29,"code":0},"cn0":212},{"mesid":{"sat":18,"code":0},"cn0":206},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":131,"code":2},"cn0":205},{"mesid":{"sat":25,"code":1},"cn0":205},{"mesid":{"sat":12,"code":1},"cn0":188},{"mesid":{"sat":31,"code":1},"cn0":151},{"mesid":{"sat":18,"code":1},"cn0":195},{"mesid":{"sat":29,"code":1},"cn0":195},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":5,"code":1},"cn0":194},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":11,"code":3},"cn0":213},{"mesid":{"sat":9,"code":3},"cn0":176},{"mesid":{"sat":20,"code":3},"cn0":172},{"mesid":{"sat":5,"code":3},"cn0":206},{"mesid":{"sat":10,"code":3},"cn0":206},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":4,"code":3},"cn0":183},{"mesid":{"sat":21,"code":3},"cn0":203},{"mesid":{"sat":9,"code":4},"cn0":171},{"mesid":{"sat":20,"code":4},"cn0":204},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":11,"code":4},"cn0":199},{"mesid":{"sat":5,"code":4},"cn0":194},{"mesid":{"sat":0,"code":4},"cn0":186},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":4,"code":4},"cn0":176},{"mesid":{"sat":35,"code":12},"cn0":200},{"mesid":{"sat":26,"code":12},"cn0":168},{"mesid":{"sat":34,"code":12},"cn0":161},{"mesid":{"sat":24,"code":12},"cn0":189},{"mesid":{"sat":25,"code":12},"cn0":156},{"mesid":{"sat":12,"code":12},"cn0":185},{"mesid":{"sat":19,"code":12},"cn0":184},{"mesid":{"sat":22,"code":12},"cn0":191},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":12,"code":13},"cn0":207},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":12,"code":14},"cn0":195},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":25,"code":14},"cn0":192},{"mesid":{"sat":11,"code":14},"cn0":189},{"mesid":{"sat":24,"code":14},"cn0":204},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":31,"code":14},"cn0":160},{"mesid":{"sat":33,"code":14},"cn0":154},{"mesid":{"sat":25,"code":20},"cn0":200},{"mesid":{"sat":24,"code":20},"cn0":215},{"mesid":{"sat":11,"code":20},"cn0":193},{"mesid":{"sat":31,"code":20},"cn0":173},{"mesid":{"sat":12,"code":20},"cn0":207},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":33,"code":20},"cn0":170},{"mesid":{"sat":0,"code":0},"cn0":0}]} +{"crc":6847,"length":11,"msg_type":258,"payload":"MggE1i4QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271504900,"ns_residual":0,"flags":1} +{"crc":10895,"length":16,"msg_type":259,"payload":"EQTWLhDkBwMZAxgu/uikNQ==","preamble":85,"sender":22963,"flags":17,"tow":271504900,"year":2020,"month":3,"day":25,"hours":3,"minutes":24,"seconds":46,"ns":899999998} +{"crc":24508,"length":34,"msg_type":522,"payload":"BNYuEDBrAOBl6kJAXWcTI1aSXsAKApp0Wp8xwAECWwQPBg==","preamble":85,"sender":22963,"tow":271504900,"lat":37.83123397846646,"lon":-122.28650738615893,"height":-17.622473991012193,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":16877,"length":22,"msg_type":526,"payload":"BNYuEPf///8OAAAAAgAAAPAAyQIPAg==","preamble":85,"sender":22963,"tow":271504900,"n":-9,"e":14,"d":2,"h_accuracy":240,"v_accuracy":713,"n_sats":15,"flags":2} +{"crc":14107,"length":15,"msg_type":520,"payload":"BNYuEJsAhwBNAEgAcgAG","preamble":85,"sender":22963,"tow":271504900,"gdop":155,"pdop":135,"tdop":77,"hdop":72,"vdop":114,"flags":6} +{"crc":1050,"length":22,"msg_type":524,"payload":"BNYuEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271504900,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":59829,"length":6,"msg_type":528,"payload":"BNYuEP//","preamble":85,"sender":22963,"tow":271504900,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":36578,"length":249,"msg_type":74,"payload":"aNYuEAAAAAAyCECvu7M+egyXBnpP/x/VDw8FAFX8GUXiOkMHFH8I6bQPDxUALvjuRYmdWQeMUPaivQ8PAgBP/wFJ/VSsB2Z4/kimDw8fAGhuJD3rFG0GxaD7d9oPDxkAa9ewQG+OzAZQbfQOzQ8PDAAotdI+2k2aBiXOBfzUDw8dAI5uJD3W4QEFL5b8ZM0PDxkBLNewQDdHTAUz+fb/uw8PDAH8/gFJ+aX6Bb/P/l+WDw8fAdK00j6/HiUFwYQE9MIPDx0BabuzPnmVIgVhdv+Mwg8PBQHnBf4+uXO7BkqWBCTVDw8LA4xuz0QUT1kHacnuCrAPDwkD","preamble":85,"sender":22963,"header":{"t":{"tow":271505000,"ns_residual":0,"wn":2098},"n_obs":64},"obs":[{"P":1051966383,"L":{"i":110562426,"f":122},"D":{"i":-177,"f":31},"cn0":213,"lock":15,"flags":15,"sid":{"sat":5,"code":0}},{"P":1159330901,"L":{"i":121846498,"f":20},"D":{"i":2175,"f":233},"cn0":180,"lock":15,"flags":15,"sid":{"sat":21,"code":0}},{"P":1173289006,"L":{"i":123313545,"f":140},"D":{"i":-2480,"f":162},"cn0":189,"lock":15,"flags":15,"sid":{"sat":2,"code":0}},{"P":1224867663,"L":{"i":128734461,"f":102},"D":{"i":-392,"f":72},"cn0":166,"lock":15,"flags":15,"sid":{"sat":31,"code":0}},{"P":1025797736,"L":{"i":107812075,"f":197},"D":{"i":-1120,"f":119},"cn0":218,"lock":15,"flags":15,"sid":{"sat":25,"code":0}},{"P":1085331307,"L":{"i":114069103,"f":80},"D":{"i":-2963,"f":14},"cn0":205,"lock":15,"flags":15,"sid":{"sat":12,"code":0}},{"P":1053996328,"L":{"i":110775770,"f":37},"D":{"i":1486,"f":252},"cn0":212,"lock":15,"flags":15,"sid":{"sat":29,"code":0}},{"P":1025797774,"L":{"i":84009430,"f":47},"D":{"i":-874,"f":100},"cn0":205,"lock":15,"flags":15,"sid":{"sat":25,"code":1}},{"P":1085331244,"L":{"i":88885047,"f":51},"D":{"i":-2311,"f":255},"cn0":187,"lock":15,"flags":15,"sid":{"sat":12,"code":1}},{"P":1224867580,"L":{"i":100312569,"f":191},"D":{"i":-305,"f":95},"cn0":150,"lock":15,"flags":15,"sid":{"sat":31,"code":1}},{"P":1053996242,"L":{"i":86318783,"f":193},"D":{"i":1156,"f":244},"cn0":194,"lock":15,"flags":15,"sid":{"sat":29,"code":1}},{"P":1051966313,"L":{"i":86152569,"f":97},"D":{"i":-138,"f":140},"cn0":194,"lock":15,"flags":15,"sid":{"sat":5,"code":1}},{"P":1056835047,"L":{"i":112948153,"f":74},"D":{"i":1174,"f":36},"cn0":213,"lock":15,"flags":15,"sid":{"sat":11,"code":3}},{"P":1154444940,"L":{"i":123293460,"f":105},"D":{"i":-4407,"f":10},"cn0":176,"lock":15,"flags":15,"sid":{"sat":9,"code":3}}]} +{"crc":6752,"length":249,"msg_type":74,"payload":"aNYuEAAAAAAyCEHBwis9z8uKBplI+ymtDw8UA28rDEBo8NgGDZwIb84PDwUDPUxhPuiBpgbZIvQ7zg8PCgNLlAVDwI8tB+Hk+iO3Dw8EA/LLLD/z4MIGhlgGC8sPDxUD/W7PRIs9twVLn/IQqw8PCQQkxCs9qJ4WBcBT/K/MDw8UBN4G/j5+djwFAZID/ccPDwsEmSwMQKplUwUMswYHwg8PBQS2lAVD4TaVBZQG/I+wDw8EBNYvk0Vw8z4HRCb6R8gPDyMMc1bvSTcxswe6P/S/qA8PGgxpkRlMwensB2XICEKgDw8iDEe4nkdUeXUHSO76ELwPDxgM","preamble":85,"sender":22963,"header":{"t":{"tow":271505000,"ns_residual":0,"wn":2098},"n_obs":65},"obs":[{"P":1026278081,"L":{"i":109759439,"f":153},"D":{"i":-1208,"f":41},"cn0":173,"lock":15,"flags":15,"sid":{"sat":20,"code":3}},{"P":1074539375,"L":{"i":114880616,"f":13},"D":{"i":2204,"f":111},"cn0":206,"lock":15,"flags":15,"sid":{"sat":5,"code":3}},{"P":1046563901,"L":{"i":111575528,"f":217},"D":{"i":-3038,"f":59},"cn0":206,"lock":15,"flags":15,"sid":{"sat":10,"code":3}},{"P":1124439115,"L":{"i":120426432,"f":225},"D":{"i":-1308,"f":35},"cn0":183,"lock":15,"flags":15,"sid":{"sat":4,"code":3}},{"P":1059900402,"L":{"i":113434867,"f":134},"D":{"i":1624,"f":11},"cn0":203,"lock":15,"flags":15,"sid":{"sat":21,"code":3}},{"P":1154445053,"L":{"i":95894923,"f":75},"D":{"i":-3425,"f":16},"cn0":171,"lock":15,"flags":15,"sid":{"sat":9,"code":4}},{"P":1026278436,"L":{"i":85368488,"f":192},"D":{"i":-941,"f":175},"cn0":204,"lock":15,"flags":15,"sid":{"sat":20,"code":4}},{"P":1056835294,"L":{"i":87848574,"f":1},"D":{"i":914,"f":253},"cn0":199,"lock":15,"flags":15,"sid":{"sat":11,"code":4}},{"P":1074539673,"L":{"i":89351594,"f":12},"D":{"i":1715,"f":7},"cn0":194,"lock":15,"flags":15,"sid":{"sat":5,"code":4}},{"P":1124439222,"L":{"i":93664993,"f":148},"D":{"i":-1018,"f":143},"cn0":176,"lock":15,"flags":15,"sid":{"sat":4,"code":4}},{"P":1167273942,"L":{"i":121566064,"f":68},"D":{"i":-1498,"f":71},"cn0":200,"lock":15,"flags":15,"sid":{"sat":35,"code":12}},{"P":1240422003,"L":{"i":129184055,"f":186},"D":{"i":-3009,"f":191},"cn0":168,"lock":15,"flags":15,"sid":{"sat":26,"code":12}},{"P":1276744041,"L":{"i":132966849,"f":101},"D":{"i":2248,"f":66},"cn0":160,"lock":15,"flags":15,"sid":{"sat":34,"code":12}},{"P":1201584199,"L":{"i":125139284,"f":72},"D":{"i":-1298,"f":16},"cn0":188,"lock":15,"flags":15,"sid":{"sat":24,"code":12}}]} +{"crc":26445,"length":249,"msg_type":74,"payload":"aNYuEAAAAAAyCEI6OhVNNB8HCK4xBZKbDw8ZDMQWUUUTETgHz04GMrkPDwwMlttCRzLoawdE4/4suA8PEwyyPmJHAC1vB0xWCfq/Dw8WDGYWUUXjCpUFvd8El88PDwwN6aoFQpZg8AY+/ftyww8PDA7UfCJL847lBxpCBOrADw8ZDiKQIkdz8XkH4xoEDr0PDwsOT1IlQy6cDgdrM/krzA8PGA4nkENRHniKCKec80qgDw8fDmON81FA95wIN6T3i5kPDyEOqnwiS3z8DAbXRQP8yA8PGRRoVCVDX0loBc7K+p7XDw8YFGOPIkcNh7oFbSED0sIPDwsU","preamble":85,"sender":22963,"header":{"t":{"tow":271505000,"ns_residual":0,"wn":2098},"n_obs":66},"obs":[{"P":1293236794,"L":{"i":134684468,"f":174},"D":{"i":1329,"f":146},"cn0":155,"lock":15,"flags":15,"sid":{"sat":25,"code":12}},{"P":1162942148,"L":{"i":121114899,"f":207},"D":{"i":1614,"f":50},"cn0":185,"lock":15,"flags":15,"sid":{"sat":12,"code":12}},{"P":1195563926,"L":{"i":124512306,"f":68},"D":{"i":-285,"f":44},"cn0":184,"lock":15,"flags":15,"sid":{"sat":19,"code":12}},{"P":1197620914,"L":{"i":124726528,"f":76},"D":{"i":2390,"f":250},"cn0":191,"lock":15,"flags":15,"sid":{"sat":22,"code":12}},{"P":1162942054,"L":{"i":93653731,"f":189},"D":{"i":1247,"f":151},"cn0":207,"lock":15,"flags":15,"sid":{"sat":12,"code":13}},{"P":1107667689,"L":{"i":116416662,"f":62},"D":{"i":-1027,"f":114},"cn0":195,"lock":15,"flags":15,"sid":{"sat":12,"code":14}},{"P":1260551380,"L":{"i":132484851,"f":26},"D":{"i":1090,"f":234},"cn0":192,"lock":15,"flags":15,"sid":{"sat":25,"code":14}},{"P":1193447458,"L":{"i":125432179,"f":227},"D":{"i":1050,"f":14},"cn0":189,"lock":15,"flags":15,"sid":{"sat":11,"code":14}},{"P":1126519375,"L":{"i":118397998,"f":107},"D":{"i":-1741,"f":43},"cn0":204,"lock":15,"flags":15,"sid":{"sat":24,"code":14}},{"P":1363382311,"L":{"i":143292446,"f":167},"D":{"i":-3172,"f":74},"cn0":160,"lock":15,"flags":15,"sid":{"sat":31,"code":14}},{"P":1374915939,"L":{"i":144504640,"f":55},"D":{"i":-2140,"f":139},"cn0":153,"lock":15,"flags":15,"sid":{"sat":33,"code":14}},{"P":1260551338,"L":{"i":101514364,"f":215},"D":{"i":837,"f":252},"cn0":200,"lock":15,"flags":15,"sid":{"sat":25,"code":20}},{"P":1126519912,"L":{"i":90720607,"f":206},"D":{"i":-1334,"f":158},"cn0":215,"lock":15,"flags":15,"sid":{"sat":24,"code":20}},{"P":1193447267,"L":{"i":96110349,"f":109},"D":{"i":801,"f":210},"cn0":194,"lock":15,"flags":15,"sid":{"sat":11,"code":20}}]} +{"crc":6758,"length":62,"msg_type":74,"payload":"aNYuEAAAAAAyCENJkENR4FiLBpN/9vutDw8fFEuqBULoHlEFKu78Ac8PDwwUNo3zUTWFmQYzmPl1qg8PIRQ=","preamble":85,"sender":22963,"header":{"t":{"tow":271505000,"ns_residual":0,"wn":2098},"n_obs":67},"obs":[{"P":1363382345,"L":{"i":109795552,"f":147},"D":{"i":-2433,"f":251},"cn0":173,"lock":15,"flags":15,"sid":{"sat":31,"code":20}},{"P":1107667531,"L":{"i":89202408,"f":42},"D":{"i":-786,"f":1},"cn0":207,"lock":15,"flags":15,"sid":{"sat":12,"code":20}},{"P":1374915894,"L":{"i":110724405,"f":51},"D":{"i":-1640,"f":117},"cn0":170,"lock":15,"flags":15,"sid":{"sat":33,"code":20}}]} +{"crc":49809,"length":9,"msg_type":117,"payload":"/wAAAAAAAAAA","preamble":85,"sender":22963,"mask":255,"l1ca_bias":0,"l1p_bias":0,"l2ca_bias":0,"l2p_bias":0} +{"crc":22410,"length":11,"msg_type":258,"payload":"Mgho1i4QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271505000,"ns_residual":0,"flags":1} +{"crc":22471,"length":16,"msg_type":259,"payload":"EWjWLhDkBwMZAxgu/smaOw==","preamble":85,"sender":22963,"flags":17,"tow":271505000,"year":2020,"month":3,"day":25,"hours":3,"minutes":24,"seconds":46,"ns":999999998} +{"crc":32103,"length":34,"msg_type":522,"payload":"aNYuEEg8TeBl6kJAdNPwIlaSXsC7AMDweZ8xwAECWwQPBg==","preamble":85,"sender":22963,"tow":271505000,"lat":37.831234014237054,"lon":-122.28650735395587,"height":-17.622954413295457,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":40511,"length":22,"msg_type":526,"payload":"aNYuEAMAAAD4/////P////EAyQIPAg==","preamble":85,"sender":22963,"tow":271505000,"n":3,"e":-8,"d":-4,"h_accuracy":241,"v_accuracy":713,"n_sats":15,"flags":2} +{"crc":15601,"length":15,"msg_type":520,"payload":"aNYuEJsAhwBNAEgAcgAG","preamble":85,"sender":22963,"tow":271505000,"gdop":155,"pdop":135,"tdop":77,"hdop":72,"vdop":114,"flags":6} +{"crc":16911,"length":22,"msg_type":524,"payload":"aNYuEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271505000,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":48462,"length":6,"msg_type":528,"payload":"aNYuEP//","preamble":85,"sender":22963,"tow":271505000,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":40942,"length":4,"msg_type":65535,"payload":"AAUCgA==","preamble":85,"sender":22963,"flags":2147616000} +{"crc":2168,"length":24,"msg_type":72,"payload":"UO0a3iqORMHK1UJhIkRQwc9nFIPvrk1B","preamble":85,"sender":22963,"x":-2694229.735196747,"y":-4264073.519704292,"z":3890655.0240602265} +{"crc":54059,"length":11,"msg_type":258,"payload":"MgjM1i4QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271505100,"ns_residual":0,"flags":1} +{"crc":31740,"length":16,"msg_type":259,"payload":"EczWLhDkBwMZAxgv/uD1BQ==","preamble":85,"sender":22963,"flags":17,"tow":271505100,"year":2020,"month":3,"day":25,"hours":3,"minutes":24,"seconds":47,"ns":99999998} +{"crc":65188,"length":34,"msg_type":522,"payload":"zNYuEONvr+Bl6kJAgSHNIlaSXsCW4kCsI58xwAECWwQPBg==","preamble":85,"sender":22963,"tow":271505100,"lat":37.83123405996573,"lon":-122.2865073207122,"height":-17.62163807472333,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":38748,"length":22,"msg_type":526,"payload":"zNYuEAEAAAACAAAA9f////EAyQIPAg==","preamble":85,"sender":22963,"tow":271505100,"n":1,"e":2,"d":-11,"h_accuracy":241,"v_accuracy":713,"n_sats":15,"flags":2} +{"crc":28229,"length":15,"msg_type":520,"payload":"zNYuEJsAhwBNAEgAcgAG","preamble":85,"sender":22963,"tow":271505100,"gdop":155,"pdop":135,"tdop":77,"hdop":72,"vdop":114,"flags":6} +{"crc":13686,"length":22,"msg_type":524,"payload":"zNYuEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271505100,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":23239,"length":6,"msg_type":528,"payload":"zNYuEP//","preamble":85,"sender":22963,"tow":271505100,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":13697,"length":11,"msg_type":258,"payload":"Mggw1y4QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271505200,"ns_residual":0,"flags":1} +{"crc":25003,"length":16,"msg_type":259,"payload":"ETDXLhDkBwMZAxgv/sHrCw==","preamble":85,"sender":22963,"flags":17,"tow":271505200,"year":2020,"month":3,"day":25,"hours":3,"minutes":24,"seconds":47,"ns":199999998} +{"crc":178,"length":34,"msg_type":522,"payload":"MNcuEPM/J+Fl6kJAavG5IlaSXsClF6NzGJ4xwAECWwQPBg==","preamble":85,"sender":22963,"tow":271505200,"lat":37.83123411575789,"lon":-122.28650730284213,"height":-17.61756060344455,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":54209,"length":22,"msg_type":526,"payload":"MNcuEA4AAAD2////AgAAAPEAyQIPAg==","preamble":85,"sender":22963,"tow":271505200,"n":14,"e":-10,"d":2,"h_accuracy":241,"v_accuracy":713,"n_sats":15,"flags":2} +{"crc":1110,"length":15,"msg_type":520,"payload":"MNcuEJsAhwBNAEgAcgAG","preamble":85,"sender":22963,"tow":271505200,"gdop":155,"pdop":135,"tdop":77,"hdop":72,"vdop":114,"flags":6} +{"crc":41286,"length":22,"msg_type":524,"payload":"MNcuEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271505200,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":27337,"length":6,"msg_type":528,"payload":"MNcuEP//","preamble":85,"sender":22963,"tow":271505200,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":45344,"length":11,"msg_type":258,"payload":"MgiU1y4QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271505300,"ns_residual":0,"flags":1} +{"crc":44436,"length":16,"msg_type":259,"payload":"EZTXLhDkBwMZAxgv/qLhEQ==","preamble":85,"sender":22963,"flags":17,"tow":271505300,"year":2020,"month":3,"day":25,"hours":3,"minutes":24,"seconds":47,"ns":299999998} +{"crc":46384,"length":34,"msg_type":522,"payload":"lNcuEAUhbOFl6kJAzNmKIlaSXsDev2ldep0xwAECWwQPBg==","preamble":85,"sender":22963,"tow":271505300,"lat":37.831234147832255,"lon":-122.28650725898405,"height":-17.61514839011931,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":30693,"length":22,"msg_type":526,"payload":"lNcuEPz///8KAAAABgAAAPEAyQIPAg==","preamble":85,"sender":22963,"tow":271505300,"n":-4,"e":10,"d":6,"h_accuracy":241,"v_accuracy":713,"n_sats":15,"flags":2} +{"crc":22242,"length":15,"msg_type":520,"payload":"lNcuEJsAhwBNAEgAcgAG","preamble":85,"sender":22963,"tow":271505300,"gdop":155,"pdop":135,"tdop":77,"hdop":72,"vdop":114,"flags":6} +{"crc":54847,"length":22,"msg_type":524,"payload":"lNcuEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271505300,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":36160,"length":6,"msg_type":528,"payload":"lNcuEP//","preamble":85,"sender":22963,"tow":271505300,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":58103,"length":237,"msg_type":97,"payload":"BQDVFQC1AgC9HwCmAAAAAAAAGQDaDADNHQDUEgDOAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwLNGQHMDAG7HwGWEgHDHQHCAAAABQHCAAAAAAAAAAAAAAAAZAPVYgOwZgOtZQPOXQPOAAAAagO3aAPMYgSrZgTMXQRWZATHZQTCaAS6AAAAagSwIwzIGgyoIgygGAy9GQydDAy5Ewy4Fgy/AAAADA3QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADA7DAAAAGQ7ACw68GA7MAAAAHw6gIQ6aGRTIGBTXCxTCHxStDBTPAAAAIRSqAAAA","preamble":85,"sender":22963,"states":[{"mesid":{"sat":5,"code":0},"cn0":213},{"mesid":{"sat":21,"code":0},"cn0":181},{"mesid":{"sat":2,"code":0},"cn0":189},{"mesid":{"sat":31,"code":0},"cn0":166},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":25,"code":0},"cn0":218},{"mesid":{"sat":12,"code":0},"cn0":205},{"mesid":{"sat":29,"code":0},"cn0":212},{"mesid":{"sat":18,"code":0},"cn0":206},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":131,"code":2},"cn0":205},{"mesid":{"sat":25,"code":1},"cn0":204},{"mesid":{"sat":12,"code":1},"cn0":187},{"mesid":{"sat":31,"code":1},"cn0":150},{"mesid":{"sat":18,"code":1},"cn0":195},{"mesid":{"sat":29,"code":1},"cn0":194},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":5,"code":1},"cn0":194},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":100,"code":3},"cn0":213},{"mesid":{"sat":98,"code":3},"cn0":176},{"mesid":{"sat":102,"code":3},"cn0":173},{"mesid":{"sat":101,"code":3},"cn0":206},{"mesid":{"sat":93,"code":3},"cn0":206},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":106,"code":3},"cn0":183},{"mesid":{"sat":104,"code":3},"cn0":204},{"mesid":{"sat":98,"code":4},"cn0":171},{"mesid":{"sat":102,"code":4},"cn0":204},{"mesid":{"sat":93,"code":4},"cn0":86},{"mesid":{"sat":100,"code":4},"cn0":199},{"mesid":{"sat":101,"code":4},"cn0":194},{"mesid":{"sat":104,"code":4},"cn0":186},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":106,"code":4},"cn0":176},{"mesid":{"sat":35,"code":12},"cn0":200},{"mesid":{"sat":26,"code":12},"cn0":168},{"mesid":{"sat":34,"code":12},"cn0":160},{"mesid":{"sat":24,"code":12},"cn0":189},{"mesid":{"sat":25,"code":12},"cn0":157},{"mesid":{"sat":12,"code":12},"cn0":185},{"mesid":{"sat":19,"code":12},"cn0":184},{"mesid":{"sat":22,"code":12},"cn0":191},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":12,"code":13},"cn0":208},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":12,"code":14},"cn0":195},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":25,"code":14},"cn0":192},{"mesid":{"sat":11,"code":14},"cn0":188},{"mesid":{"sat":24,"code":14},"cn0":204},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":31,"code":14},"cn0":160},{"mesid":{"sat":33,"code":14},"cn0":154},{"mesid":{"sat":25,"code":20},"cn0":200},{"mesid":{"sat":24,"code":20},"cn0":215},{"mesid":{"sat":11,"code":20},"cn0":194},{"mesid":{"sat":31,"code":20},"cn0":173},{"mesid":{"sat":12,"code":20},"cn0":207},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":33,"code":20},"cn0":170},{"mesid":{"sat":0,"code":0},"cn0":0}]} +{"crc":64533,"length":11,"msg_type":258,"payload":"Mgj41y4QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271505400,"ns_residual":0,"flags":1} +{"crc":55421,"length":16,"msg_type":259,"payload":"EfjXLhDkBwMZAxgv/oPXFw==","preamble":85,"sender":22963,"flags":17,"tow":271505400,"year":2020,"month":3,"day":25,"hours":3,"minutes":24,"seconds":47,"ns":399999998} +{"crc":10135,"length":34,"msg_type":522,"payload":"+NcuEGIbwuFl6kJA8ChyIlaSXsD3443t+pwxwAECWwQPBg==","preamble":85,"sender":22963,"tow":271505400,"lat":37.83123418786887,"lon":-122.28650723598889,"height":-17.61320385660289,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":48222,"length":22,"msg_type":526,"payload":"+NcuEAYAAAAFAAAACAAAAPEAyQIPAg==","preamble":85,"sender":22963,"tow":271505400,"n":6,"e":5,"d":8,"h_accuracy":241,"v_accuracy":713,"n_sats":15,"flags":2} +{"crc":23816,"length":15,"msg_type":520,"payload":"+NcuEJsAhwBNAEgAcgAG","preamble":85,"sender":22963,"tow":271505400,"gdop":155,"pdop":135,"tdop":77,"hdop":72,"vdop":114,"flags":6} +{"crc":36906,"length":22,"msg_type":524,"payload":"+NcuEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271505400,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":55739,"length":6,"msg_type":528,"payload":"+NcuEP//","preamble":85,"sender":22963,"tow":271505400,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":49809,"length":9,"msg_type":117,"payload":"/wAAAAAAAAAA","preamble":85,"sender":22963,"mask":255,"l1ca_bias":0,"l1p_bias":0,"l2ca_bias":0,"l2p_bias":0} +{"crc":41334,"length":11,"msg_type":258,"payload":"Mghc2C4QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271505500,"ns_residual":0,"flags":1} +{"crc":31223,"length":16,"msg_type":259,"payload":"EVzYLhDkBwMZAxgv/mTNHQ==","preamble":85,"sender":22963,"flags":17,"tow":271505500,"year":2020,"month":3,"day":25,"hours":3,"minutes":24,"seconds":47,"ns":499999998} +{"crc":51344,"length":34,"msg_type":522,"payload":"XNguEJPj/+Fl6kJAA21aIlaSXsDf9h2fWJ0xwAECWwQPBg==","preamble":85,"sender":22963,"tow":271505500,"lat":37.83123421663836,"lon":-122.2865072138848,"height":-17.614633507552636,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":22352,"length":22,"msg_type":526,"payload":"XNguEPb///8LAAAAGAAAAPEAyQIPAg==","preamble":85,"sender":22963,"tow":271505500,"n":-10,"e":11,"d":24,"h_accuracy":241,"v_accuracy":713,"n_sats":15,"flags":2} +{"crc":38097,"length":15,"msg_type":520,"payload":"XNguEJsAhwBNAEgAcgAG","preamble":85,"sender":22963,"tow":271505500,"gdop":155,"pdop":135,"tdop":77,"hdop":72,"vdop":114,"flags":6} +{"crc":8613,"length":22,"msg_type":524,"payload":"XNguEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271505500,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":23499,"length":6,"msg_type":528,"payload":"XNguEP//","preamble":85,"sender":22963,"tow":271505500,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":63530,"length":11,"msg_type":258,"payload":"MgjA2C4QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271505600,"ns_residual":0,"flags":1} +{"crc":39676,"length":16,"msg_type":259,"payload":"EcDYLhDkBwMZAxgv/kXDIw==","preamble":85,"sender":22963,"flags":17,"tow":271505600,"year":2020,"month":3,"day":25,"hours":3,"minutes":24,"seconds":47,"ns":599999998} +{"crc":957,"length":34,"msg_type":522,"payload":"wNguEO0sTOJl6kJA7+9VIlaSXsAMw/2PSZ0xwAECWwQPBg==","preamble":85,"sender":22963,"tow":271505600,"lat":37.83123425216204,"lon":-122.28650720970448,"height":-17.614403724149312,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":32253,"length":22,"msg_type":526,"payload":"wNguEAEAAAD8////+v////EAyQIPAg==","preamble":85,"sender":22963,"tow":271505600,"n":1,"e":-4,"d":-6,"h_accuracy":241,"v_accuracy":713,"n_sats":15,"flags":2} +{"crc":12990,"length":15,"msg_type":520,"payload":"wNguEJsAhwBNAEgAcgAG","preamble":85,"sender":22963,"tow":271505600,"gdop":155,"pdop":135,"tdop":77,"hdop":72,"vdop":114,"flags":6} +{"crc":57236,"length":22,"msg_type":524,"payload":"wNguEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271505600,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":40588,"length":6,"msg_type":528,"payload":"wNguEP//","preamble":85,"sender":22963,"tow":271505600,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":22801,"length":34,"msg_type":30583,"payload":"gwJB2C4QPwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"sid":{"sat":131,"code":2},"tow":271505473,"message_type":63,"data":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]} +{"crc":25729,"length":11,"msg_type":258,"payload":"Mggk2S4QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271505700,"ns_residual":0,"flags":1} +{"crc":7619,"length":16,"msg_type":259,"payload":"ESTZLhDkBwMZAxgv/ia5KQ==","preamble":85,"sender":22963,"flags":17,"tow":271505700,"year":2020,"month":3,"day":25,"hours":3,"minutes":24,"seconds":47,"ns":699999998} +{"crc":59371,"length":34,"msg_type":522,"payload":"JNkuEDtYyeJl6kJAk/o7IlaSXsB7zWNgr50xwAECWwQPBg==","preamble":85,"sender":22963,"tow":271505700,"lat":37.83123431044847,"lon":-122.2865071855288,"height":-17.615957283368953,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":14191,"length":22,"msg_type":526,"payload":"JNkuEA8AAAAHAAAA/f////EAyQIPAg==","preamble":85,"sender":22963,"tow":271505700,"n":15,"e":7,"d":-3,"h_accuracy":241,"v_accuracy":713,"n_sats":15,"flags":2} +{"crc":12642,"length":15,"msg_type":520,"payload":"JNkuEJsAhwBNAEgAcgAG","preamble":85,"sender":22963,"tow":271505700,"gdop":155,"pdop":135,"tdop":77,"hdop":72,"vdop":114,"flags":6} +{"crc":43073,"length":22,"msg_type":524,"payload":"JNkuEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271505700,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":47428,"length":6,"msg_type":528,"payload":"JNkuEP//","preamble":85,"sender":22963,"tow":271505700,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":51679,"length":11,"msg_type":258,"payload":"MgiI2S4QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271505800,"ns_residual":0,"flags":1} +{"crc":4311,"length":16,"msg_type":259,"payload":"EYjZLhDkBwMZAxgv/gevLw==","preamble":85,"sender":22963,"flags":17,"tow":271505800,"year":2020,"month":3,"day":25,"hours":3,"minutes":24,"seconds":47,"ns":799999998} +{"crc":40857,"length":34,"msg_type":522,"payload":"iNkuEI5IK+Nl6kJAzUIwIlaSXsDKp2N83p4xwAECWwQPBg==","preamble":85,"sender":22963,"tow":271505800,"lat":37.831234356054765,"lon":-122.28650717461569,"height":-17.620582365350664,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":19041,"length":22,"msg_type":526,"payload":"iNkuEAAAAAD7////EQAAAPEAyQIPAg==","preamble":85,"sender":22963,"tow":271505800,"n":0,"e":-5,"d":17,"h_accuracy":241,"v_accuracy":713,"n_sats":15,"flags":2} +{"crc":17555,"length":15,"msg_type":520,"payload":"iNkuEJsAhwBNAEgAcgAG","preamble":85,"sender":22963,"tow":271505800,"gdop":155,"pdop":135,"tdop":77,"hdop":72,"vdop":114,"flags":6} +{"crc":33179,"length":22,"msg_type":524,"payload":"iNkuEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271505800,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":21391,"length":6,"msg_type":528,"payload":"iNkuEP//","preamble":85,"sender":22963,"tow":271505800,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":32118,"length":237,"msg_type":97,"payload":"BQDVFQC0AgC9HwCmAAAAAAAAGQDaDADOHQDUEgDOAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwLNGQHMDAG7HwGWEgHDHQHCAAAABQHCAAAAAAAAAAAAAAAACwPWCQOwFAOtBQPPCgPPAAAABAO4FQPLCQSrFATNCgRACwTHBQTCAAS7AAAABASwIwzIGgypIgygGAy9GQycDAy5Ewy4Fgy/AAAADA3QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADA7DAAAAGQ7ACw68GA7MAAAAHw6gIQ6ZGRTIGBTXCxTCHxStDBTPAAAAIRSpAAAA","preamble":85,"sender":22963,"states":[{"mesid":{"sat":5,"code":0},"cn0":213},{"mesid":{"sat":21,"code":0},"cn0":180},{"mesid":{"sat":2,"code":0},"cn0":189},{"mesid":{"sat":31,"code":0},"cn0":166},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":25,"code":0},"cn0":218},{"mesid":{"sat":12,"code":0},"cn0":206},{"mesid":{"sat":29,"code":0},"cn0":212},{"mesid":{"sat":18,"code":0},"cn0":206},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":131,"code":2},"cn0":205},{"mesid":{"sat":25,"code":1},"cn0":204},{"mesid":{"sat":12,"code":1},"cn0":187},{"mesid":{"sat":31,"code":1},"cn0":150},{"mesid":{"sat":18,"code":1},"cn0":195},{"mesid":{"sat":29,"code":1},"cn0":194},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":5,"code":1},"cn0":194},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":11,"code":3},"cn0":214},{"mesid":{"sat":9,"code":3},"cn0":176},{"mesid":{"sat":20,"code":3},"cn0":173},{"mesid":{"sat":5,"code":3},"cn0":207},{"mesid":{"sat":10,"code":3},"cn0":207},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":4,"code":3},"cn0":184},{"mesid":{"sat":21,"code":3},"cn0":203},{"mesid":{"sat":9,"code":4},"cn0":171},{"mesid":{"sat":20,"code":4},"cn0":205},{"mesid":{"sat":10,"code":4},"cn0":64},{"mesid":{"sat":11,"code":4},"cn0":199},{"mesid":{"sat":5,"code":4},"cn0":194},{"mesid":{"sat":0,"code":4},"cn0":187},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":4,"code":4},"cn0":176},{"mesid":{"sat":35,"code":12},"cn0":200},{"mesid":{"sat":26,"code":12},"cn0":169},{"mesid":{"sat":34,"code":12},"cn0":160},{"mesid":{"sat":24,"code":12},"cn0":189},{"mesid":{"sat":25,"code":12},"cn0":156},{"mesid":{"sat":12,"code":12},"cn0":185},{"mesid":{"sat":19,"code":12},"cn0":184},{"mesid":{"sat":22,"code":12},"cn0":191},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":12,"code":13},"cn0":208},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":12,"code":14},"cn0":195},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":25,"code":14},"cn0":192},{"mesid":{"sat":11,"code":14},"cn0":188},{"mesid":{"sat":24,"code":14},"cn0":204},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":31,"code":14},"cn0":160},{"mesid":{"sat":33,"code":14},"cn0":153},{"mesid":{"sat":25,"code":20},"cn0":200},{"mesid":{"sat":24,"code":20},"cn0":215},{"mesid":{"sat":11,"code":20},"cn0":194},{"mesid":{"sat":31,"code":20},"cn0":173},{"mesid":{"sat":12,"code":20},"cn0":207},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":33,"code":20},"cn0":169},{"mesid":{"sat":0,"code":0},"cn0":0}]} +{"crc":41336,"length":136,"msg_type":151,"payload":"AgAaHgUALDUMAFEtFQB9GRkAbUYaAKEBHQChNx8AlQ4EAxYWBQMyIQYDTggJA18OCgNxKQsDmCUMA6oDEwMiBxQDCzEVA5UlDAyUKRMMIyAUDA8CFgxDIxgMgiMZDJ0OGgxnFR0MLAAiDI4RIwwiLQsOizIMDg88GA5sNhkOlykfDlURIQ4fDw==","preamble":85,"sender":22963,"azel":[{"sid":{"sat":2,"code":0},"az":26,"el":30},{"sid":{"sat":5,"code":0},"az":44,"el":53},{"sid":{"sat":12,"code":0},"az":81,"el":45},{"sid":{"sat":21,"code":0},"az":125,"el":25},{"sid":{"sat":25,"code":0},"az":109,"el":70},{"sid":{"sat":26,"code":0},"az":161,"el":1},{"sid":{"sat":29,"code":0},"az":161,"el":55},{"sid":{"sat":31,"code":0},"az":149,"el":14},{"sid":{"sat":4,"code":3},"az":22,"el":22},{"sid":{"sat":5,"code":3},"az":50,"el":33},{"sid":{"sat":6,"code":3},"az":78,"el":8},{"sid":{"sat":9,"code":3},"az":95,"el":14},{"sid":{"sat":10,"code":3},"az":113,"el":41},{"sid":{"sat":11,"code":3},"az":152,"el":37},{"sid":{"sat":12,"code":3},"az":170,"el":3},{"sid":{"sat":19,"code":3},"az":34,"el":7},{"sid":{"sat":20,"code":3},"az":11,"el":49},{"sid":{"sat":21,"code":3},"az":149,"el":37},{"sid":{"sat":12,"code":12},"az":148,"el":41},{"sid":{"sat":19,"code":12},"az":35,"el":32},{"sid":{"sat":20,"code":12},"az":15,"el":2},{"sid":{"sat":22,"code":12},"az":67,"el":35},{"sid":{"sat":24,"code":12},"az":130,"el":35},{"sid":{"sat":25,"code":12},"az":157,"el":14},{"sid":{"sat":26,"code":12},"az":103,"el":21},{"sid":{"sat":29,"code":12},"az":44,"el":0},{"sid":{"sat":34,"code":12},"az":142,"el":17},{"sid":{"sat":35,"code":12},"az":34,"el":45},{"sid":{"sat":11,"code":14},"az":139,"el":50},{"sid":{"sat":12,"code":14},"az":15,"el":60},{"sid":{"sat":24,"code":14},"az":108,"el":54},{"sid":{"sat":25,"code":14},"az":151,"el":41},{"sid":{"sat":31,"code":14},"az":85,"el":17},{"sid":{"sat":33,"code":14},"az":31,"el":15}]} +{"crc":44309,"length":11,"msg_type":258,"payload":"Mgjs2S4QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271505900,"ns_residual":0,"flags":1} +{"crc":57337,"length":16,"msg_type":259,"payload":"EezZLhDkBwMZAxgv/uikNQ==","preamble":85,"sender":22963,"flags":17,"tow":271505900,"year":2020,"month":3,"day":25,"hours":3,"minutes":24,"seconds":47,"ns":899999998} +{"crc":12032,"length":34,"msg_type":522,"payload":"7NkuEBtWlONl6kJAvSAdIlaSXsDyWcTn1p0xwAECWwQPBg==","preamble":85,"sender":22963,"tow":271505900,"lat":37.83123440497385,"lon":-122.28650715679665,"height":-17.61656044524893,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":45951,"length":22,"msg_type":526,"payload":"7NkuEAEAAAD8////9/////EAyQIPAg==","preamble":85,"sender":22963,"tow":271505900,"n":1,"e":-4,"d":-9,"h_accuracy":241,"v_accuracy":713,"n_sats":15,"flags":2} +{"crc":26684,"length":15,"msg_type":520,"payload":"7NkuEJsAhwBNAEgAcgAG","preamble":85,"sender":22963,"tow":271505900,"gdop":155,"pdop":135,"tdop":77,"hdop":72,"vdop":114,"flags":6} +{"crc":39213,"length":22,"msg_type":524,"payload":"7NkuEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271505900,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":2614,"length":6,"msg_type":528,"payload":"7NkuEP//","preamble":85,"sender":22963,"tow":271505900,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":26851,"length":249,"msg_type":74,"payload":"UNouEAAAAAAyCEA7wrM+Kg2XBstP///VDw8FAHSrGUVhMkMH5YAIKLUPDxUATlTvRTinWQdmU/Y4vQ8PAgDPDQJJg1asB5F5/vWmDw8fAAyYJD1MGW0GbZ/7Q9oPDxkAmEWxQAKazAawbPQBzg8PDADqfdI+C0iaBt/OBcvUDw8dADqYJD0/5QEFbJb8W8wPDxkBU0WxQDxQTAVT+vY3uw8PDAF7DQJJKaf6BcHQ/pWWDw8fAY190j45GiUFnoUEpsIPDx0B98GzPgKWIgXDd/+Ewg8PBQH/2v0+Im+7BqeWBPzWDw8LA6UP0ERLYFkHW8nu3rAPDwkD","preamble":85,"sender":22963,"header":{"t":{"tow":271506000,"ns_residual":0,"wn":2098},"n_obs":64},"obs":[{"P":1051968059,"L":{"i":110562602,"f":203},"D":{"i":-177,"f":255},"cn0":213,"lock":15,"flags":15,"sid":{"sat":5,"code":0}},{"P":1159310196,"L":{"i":121844321,"f":229},"D":{"i":2176,"f":40},"cn0":181,"lock":15,"flags":15,"sid":{"sat":21,"code":0}},{"P":1173312590,"L":{"i":123316024,"f":102},"D":{"i":-2477,"f":56},"cn0":189,"lock":15,"flags":15,"sid":{"sat":2,"code":0}},{"P":1224871375,"L":{"i":128734851,"f":145},"D":{"i":-391,"f":245},"cn0":166,"lock":15,"flags":15,"sid":{"sat":31,"code":0}},{"P":1025808396,"L":{"i":107813196,"f":109},"D":{"i":-1121,"f":67},"cn0":218,"lock":15,"flags":15,"sid":{"sat":25,"code":0}},{"P":1085359512,"L":{"i":114072066,"f":176},"D":{"i":-2964,"f":1},"cn0":206,"lock":15,"flags":15,"sid":{"sat":12,"code":0}},{"P":1053982186,"L":{"i":110774283,"f":223},"D":{"i":1486,"f":203},"cn0":212,"lock":15,"flags":15,"sid":{"sat":29,"code":0}},{"P":1025808442,"L":{"i":84010303,"f":108},"D":{"i":-874,"f":91},"cn0":204,"lock":15,"flags":15,"sid":{"sat":25,"code":1}},{"P":1085359443,"L":{"i":88887356,"f":83},"D":{"i":-2310,"f":55},"cn0":187,"lock":15,"flags":15,"sid":{"sat":12,"code":1}},{"P":1224871291,"L":{"i":100312873,"f":193},"D":{"i":-304,"f":149},"cn0":150,"lock":15,"flags":15,"sid":{"sat":31,"code":1}},{"P":1053982093,"L":{"i":86317625,"f":158},"D":{"i":1157,"f":166},"cn0":194,"lock":15,"flags":15,"sid":{"sat":29,"code":1}},{"P":1051967991,"L":{"i":86152706,"f":195},"D":{"i":-137,"f":132},"cn0":194,"lock":15,"flags":15,"sid":{"sat":5,"code":1}},{"P":1056824063,"L":{"i":112946978,"f":167},"D":{"i":1174,"f":252},"cn0":214,"lock":15,"flags":15,"sid":{"sat":11,"code":3}},{"P":1154486181,"L":{"i":123297867,"f":91},"D":{"i":-4407,"f":222},"cn0":176,"lock":15,"flags":15,"sid":{"sat":9,"code":3}}]} +{"crc":12702,"length":249,"msg_type":74,"payload":"UNouEAAAAAAyCEG/7is9h9CKBvNH+5CtDw8UA+vaC0DL59gGHZ0IYs4PDwUDkbthPsaNpgbwIvTrzw8PCgPvwwVD3JQtB7nj+nq3Dw8EA6GQLD+a2sIG6FgGA8wPDxUDPBDQRO5KtwXqm/Kcqg8PCQRd8Cs9VKIWBZRU/NHNDw8UBOXb/T7scjwFZJEDHccPDwsEEtwLQPdeUwUaswYowg8PBQSQxAVD2jqVBcwF/C+wDw8EBAVok0VK+T4HRSb6zsgPDyMMRcfvSfc8swcQP/QGqA8PGgwZPRlM+ODsB6/HCOSgDw8iDP3onkdmfnUHNe36Ur0PDxgM","preamble":85,"sender":22963,"header":{"t":{"tow":271506000,"ns_residual":0,"wn":2098},"n_obs":65},"obs":[{"P":1026289343,"L":{"i":109760647,"f":243},"D":{"i":-1209,"f":144},"cn0":173,"lock":15,"flags":15,"sid":{"sat":20,"code":3}},{"P":1074518763,"L":{"i":114878411,"f":29},"D":{"i":2205,"f":98},"cn0":206,"lock":15,"flags":15,"sid":{"sat":5,"code":3}},{"P":1046592401,"L":{"i":111578566,"f":240},"D":{"i":-3038,"f":235},"cn0":207,"lock":15,"flags":15,"sid":{"sat":10,"code":3}},{"P":1124451311,"L":{"i":120427740,"f":185},"D":{"i":-1309,"f":122},"cn0":183,"lock":15,"flags":15,"sid":{"sat":4,"code":3}},{"P":1059885217,"L":{"i":113433242,"f":232},"D":{"i":1624,"f":3},"cn0":204,"lock":15,"flags":15,"sid":{"sat":21,"code":3}},{"P":1154486332,"L":{"i":95898350,"f":234},"D":{"i":-3429,"f":156},"cn0":170,"lock":15,"flags":15,"sid":{"sat":9,"code":4}},{"P":1026289757,"L":{"i":85369428,"f":148},"D":{"i":-940,"f":209},"cn0":205,"lock":15,"flags":15,"sid":{"sat":20,"code":4}},{"P":1056824293,"L":{"i":87847660,"f":100},"D":{"i":913,"f":29},"cn0":199,"lock":15,"flags":15,"sid":{"sat":11,"code":4}},{"P":1074519058,"L":{"i":89349879,"f":26},"D":{"i":1715,"f":40},"cn0":194,"lock":15,"flags":15,"sid":{"sat":5,"code":4}},{"P":1124451472,"L":{"i":93666010,"f":204},"D":{"i":-1019,"f":47},"cn0":176,"lock":15,"flags":15,"sid":{"sat":4,"code":4}},{"P":1167288325,"L":{"i":121567562,"f":69},"D":{"i":-1498,"f":206},"cn0":200,"lock":15,"flags":15,"sid":{"sat":35,"code":12}},{"P":1240450885,"L":{"i":129187063,"f":16},"D":{"i":-3009,"f":6},"cn0":168,"lock":15,"flags":15,"sid":{"sat":26,"code":12}},{"P":1276722457,"L":{"i":132964600,"f":175},"D":{"i":2247,"f":228},"cn0":160,"lock":15,"flags":15,"sid":{"sat":34,"code":12}},{"P":1201596669,"L":{"i":125140582,"f":53},"D":{"i":-1299,"f":82},"cn0":189,"lock":15,"flags":15,"sid":{"sat":24,"code":12}}]} +{"crc":35120,"length":249,"msg_type":74,"payload":"UNouEAAAAAAyCEJqCBVNAxoHCBMyBTudDw8ZDEnaUEXHCjgHG0wGzbkPDwwMQeZCR07pawdS4v73uA8PEwwL5WFHqSNvB6ZXCT2/Dw8WDOnZUEUEBpUFtOAEGNAPDwwNDtEFQphk8AYi/vuiww8PDA4+VCJLrorlB6lEBKnADw8ZDilpIkdb7XkHBxoErbwPDwsO/JIlQ/qiDgfYM/kjzA8PGA4PBkRRgoSKCK2Z8/ygDw8fDgbd81Gd/5wIoqP3cJgPDyEOD1QiSzf5DAbFRQPQyA8PGRQYlSVDlU5oBWDK+lPXDw8YFGloIkfpg7oFxCQDgsIPDwsU","preamble":85,"sender":22963,"header":{"t":{"tow":271506000,"ns_residual":0,"wn":2098},"n_obs":66},"obs":[{"P":1293224042,"L":{"i":134683139,"f":19},"D":{"i":1330,"f":59},"cn0":157,"lock":15,"flags":15,"sid":{"sat":25,"code":12}},{"P":1162926665,"L":{"i":121113287,"f":27},"D":{"i":1612,"f":205},"cn0":185,"lock":15,"flags":15,"sid":{"sat":12,"code":12}},{"P":1195566657,"L":{"i":124512590,"f":82},"D":{"i":-286,"f":247},"cn0":184,"lock":15,"flags":15,"sid":{"sat":19,"code":12}},{"P":1197597963,"L":{"i":124724137,"f":166},"D":{"i":2391,"f":61},"cn0":191,"lock":15,"flags":15,"sid":{"sat":22,"code":12}},{"P":1162926569,"L":{"i":93652484,"f":180},"D":{"i":1248,"f":24},"cn0":208,"lock":15,"flags":15,"sid":{"sat":12,"code":13}},{"P":1107677454,"L":{"i":116417688,"f":34},"D":{"i":-1026,"f":162},"cn0":195,"lock":15,"flags":15,"sid":{"sat":12,"code":14}},{"P":1260540990,"L":{"i":132483758,"f":169},"D":{"i":1092,"f":169},"cn0":192,"lock":15,"flags":15,"sid":{"sat":25,"code":14}},{"P":1193437481,"L":{"i":125431131,"f":7},"D":{"i":1050,"f":173},"cn0":188,"lock":15,"flags":15,"sid":{"sat":11,"code":14}},{"P":1126535932,"L":{"i":118399738,"f":216},"D":{"i":-1741,"f":35},"cn0":204,"lock":15,"flags":15,"sid":{"sat":24,"code":14}},{"P":1363412495,"L":{"i":143295618,"f":173},"D":{"i":-3175,"f":252},"cn0":160,"lock":15,"flags":15,"sid":{"sat":31,"code":14}},{"P":1374936326,"L":{"i":144506781,"f":162},"D":{"i":-2141,"f":112},"cn0":152,"lock":15,"flags":15,"sid":{"sat":33,"code":14}},{"P":1260540943,"L":{"i":101513527,"f":197},"D":{"i":837,"f":208},"cn0":200,"lock":15,"flags":15,"sid":{"sat":25,"code":20}},{"P":1126536472,"L":{"i":90721941,"f":96},"D":{"i":-1334,"f":83},"cn0":215,"lock":15,"flags":15,"sid":{"sat":24,"code":20}},{"P":1193437289,"L":{"i":96109545,"f":196},"D":{"i":804,"f":130},"cn0":194,"lock":15,"flags":15,"sid":{"sat":11,"code":20}}]} +{"crc":34924,"length":62,"msg_type":74,"payload":"UNouEAAAAAAyCEMyBkRRX2KLBhmD9pWsDw8fFGvQBUL6IVEFPO/8e84PDwwUy9zzUZ6LmQYMmflYqQ8PIRQ=","preamble":85,"sender":22963,"header":{"t":{"tow":271506000,"ns_residual":0,"wn":2098},"n_obs":67},"obs":[{"P":1363412530,"L":{"i":109797983,"f":25},"D":{"i":-2429,"f":149},"cn0":172,"lock":15,"flags":15,"sid":{"sat":31,"code":20}},{"P":1107677291,"L":{"i":89203194,"f":60},"D":{"i":-785,"f":123},"cn0":206,"lock":15,"flags":15,"sid":{"sat":12,"code":20}},{"P":1374936267,"L":{"i":110726046,"f":12},"D":{"i":-1639,"f":88},"cn0":169,"lock":15,"flags":15,"sid":{"sat":33,"code":20}}]} +{"crc":49809,"length":9,"msg_type":117,"payload":"/wAAAAAAAAAA","preamble":85,"sender":22963,"mask":255,"l1ca_bias":0,"l1p_bias":0,"l2ca_bias":0,"l2p_bias":0} +{"crc":39872,"length":11,"msg_type":258,"payload":"MghQ2i4QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271506000,"ns_residual":0,"flags":1} +{"crc":8067,"length":16,"msg_type":259,"payload":"EVDaLhDkBwMZAxgv/smaOw==","preamble":85,"sender":22963,"flags":17,"tow":271506000,"year":2020,"month":3,"day":25,"hours":3,"minutes":24,"seconds":47,"ns":999999998} +{"crc":26937,"length":34,"msg_type":522,"payload":"UNouEE3WDuRl6kJAECv6IVaSXsDGF+A8lp0xwAECWwQPBg==","preamble":85,"sender":22963,"tow":271506000,"lat":37.83123446201771,"lon":-122.28650712423791,"height":-17.615573696813748,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":39603,"length":22,"msg_type":526,"payload":"UNouEAQAAAAFAAAAAQAAAPEAyQIPAg==","preamble":85,"sender":22963,"tow":271506000,"n":4,"e":5,"d":1,"h_accuracy":241,"v_accuracy":713,"n_sats":15,"flags":2} +{"crc":57060,"length":15,"msg_type":520,"payload":"UNouEJsAhwBNAEgAcgAG","preamble":85,"sender":22963,"tow":271506000,"gdop":155,"pdop":135,"tdop":77,"hdop":72,"vdop":114,"flags":6} +{"crc":25482,"length":22,"msg_type":524,"payload":"UNouEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271506000,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":5291,"length":6,"msg_type":528,"payload":"UNouEP//","preamble":85,"sender":22963,"tow":271506000,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":40942,"length":4,"msg_type":65535,"payload":"AAUCgA==","preamble":85,"sender":22963,"flags":2147616000} +{"crc":2168,"length":24,"msg_type":72,"payload":"UO0a3iqORMHK1UJhIkRQwc9nFIPvrk1B","preamble":85,"sender":22963,"x":-2694229.735196747,"y":-4264073.519704292,"z":3890655.0240602265} +{"crc":47991,"length":26,"msg_type":23,"payload":"bWFpbgAAAAAAAAAAAAAAAAAAAAAAAAx1AAA=","preamble":85,"sender":22963,"name":"main\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":0,"stack_free":29964} +{"crc":55510,"length":26,"msg_type":23,"payload":"aWRsZQAAAAAAAAAAAAAAAAAAAAAaAHwAAAA=","preamble":85,"sender":22963,"name":"idle\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":26,"stack_free":124} +{"crc":18957,"length":26,"msg_type":23,"payload":"cnBtc2cAAAAAAAAAAAAAAAAAAAABAOQNAAA=","preamble":85,"sender":22963,"name":"rpmsg\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":1,"stack_free":3556} +{"crc":51784,"length":26,"msg_type":23,"payload":"U0JQAAAAAAAAAAAAAAAAAAAAAAAAAPz/AAA=","preamble":85,"sender":22963,"name":"SBP\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":0,"stack_free":65532} +{"crc":33651,"length":26,"msg_type":23,"payload":"TkFQAAAAAAAAAAAAAAAAAAAAAAAAAASAAAA=","preamble":85,"sender":22963,"name":"NAP\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":0,"stack_free":32772} +{"crc":29877,"length":26,"msg_type":23,"payload":"bWFuYWdlIFBWAAAAAAAAAAAAAAAAACQEAAA=","preamble":85,"sender":22963,"name":"manage PV\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":0,"stack_free":1060} +{"crc":14252,"length":26,"msg_type":23,"payload":"SU1VAAAAAAAAAAAAAAAAAAAAAAAAAPQHAAA=","preamble":85,"sender":22963,"name":"IMU\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":0,"stack_free":2036} +{"crc":18976,"length":26,"msg_type":23,"payload":"SU1VIGF1eAAAAAAAAAAAAAAAAAAAAEwIAAA=","preamble":85,"sender":22963,"name":"IMU aux\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":0,"stack_free":2124} +{"crc":26120,"length":26,"msg_type":23,"payload":"bmRiAAAAAAAAAAAAAAAAAAAAAAAAAFAMAAA=","preamble":85,"sender":22963,"name":"ndb\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":0,"stack_free":3152} +{"crc":9794,"length":26,"msg_type":23,"payload":"TkFQIFRyYWNraW5nAAAAAAAAAAAoAdR3AAA=","preamble":85,"sender":22963,"name":"NAP Tracking\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":296,"stack_free":30676} +{"crc":40082,"length":26,"msg_type":23,"payload":"ZGVjb2RlAAAAAAAAAAAAAAAAAAAIANQGAAA=","preamble":85,"sender":22963,"name":"decode\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":8,"stack_free":1748} +{"crc":4913,"length":26,"msg_type":23,"payload":"bWFuYWdlIGFjcQAAAAAAAAAAAAD7AaR3AAA=","preamble":85,"sender":22963,"name":"manage acq\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":507,"stack_free":30628} +{"crc":58531,"length":26,"msg_type":23,"payload":"c3lzdGVtIG1vbml0b3IAAAAAAAAAACwGAAA=","preamble":85,"sender":22963,"name":"system monitor\u0000\u0000\u0000\u0000\u0000\u0000","cpu":0,"stack_free":1580} +{"crc":44438,"length":26,"msg_type":23,"payload":"V2F0Y2hkb2cAAAAAAAAAAAAAAAAAAOQDAAA=","preamble":85,"sender":22963,"name":"Watchdog\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":0,"stack_free":996} +{"crc":61599,"length":26,"msg_type":23,"payload":"c3RhcmxpbmcAAAAAAAAAAAAAAACWAPz/AAA=","preamble":85,"sender":22963,"name":"starling\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":150,"stack_free":65532} +{"crc":42361,"length":26,"msg_type":23,"payload":"bWVfY2FsY19wdnQAAAAAAAAAAAAIAIwjAAA=","preamble":85,"sender":22963,"name":"me_calc_pvt\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":8,"stack_free":9100} +{"crc":38576,"length":26,"msg_type":23,"payload":"UFBTAAAAAAAAAAAAAAAAAAAAAAAAAEgHAAA=","preamble":85,"sender":22963,"name":"PPS\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":0,"stack_free":1864} +{"crc":50933,"length":26,"msg_type":23,"payload":"c3BlY3RydW0gYW5hbHl6ZXIAAAAAANQPAAA=","preamble":85,"sender":22963,"name":"spectrum analyzer\u0000\u0000\u0000","cpu":0,"stack_free":4052} +{"crc":22055,"length":152,"msg_type":149,"payload":"DA4IIQQAMggUrkdAQDgAAAEAAABcsgAAXLIAENRCALgCQwAApjYACC03AABAsgAAgDNL+3P5s60nPnUMqQwPaP4/AAAAwAaFQD8AAIBTm0C1QIrkGgU4CAPAN7MGedwuN77+6PiV5Dfcv4P9KHoHme8/6TII/sTfAj7///9/qx14P///////m7S9AAAAAAghBAAyCEMAQwA=","preamble":85,"sender":22963,"common":{"sid":{"sat":12,"code":14},"toe":{"tow":270600,"wn":2098},"ura":3.12,"fit_interval":14400,"valid":1,"health_bits":0},"bgd_e1e5a":-1.2805685e-8,"bgd_e1e5b":-1.2805685e-8,"c_rs":106.03125,"c_rc":130.71875,"c_uc":0.0000049471855,"c_us":0.000010313466,"c_ic":-1.1175871e-8,"c_is":5.9604645e-8,"dn":2.7565433925253817e-9,"m0":1.9004049772782114,"ecc":0.0005041392287239432,"sqrta":5440.606742858887,"omega0":-2.379013099559022,"omegadot":-5.397724836905428e-9,"w":-0.44091143270237854,"inc":0.9874303232135592,"inc_dot":5.493085951935782e-10,"af0":0.005887670442461967,"af1":-1.874411736935144e-11,"af2":0.0,"toc":{"tow":270600,"wn":2098},"iode":67,"iodc":67} +{"crc":34412,"length":10,"msg_type":181,"payload":"5RbcA/QGVxUJFg==","preamble":85,"sender":22963,"dev_vin":5861,"cpu_vint":988,"cpu_vaux":1780,"cpu_temperature":5463,"fe_temperature":5641} +{"crc":17160,"length":152,"msg_type":149,"payload":"GA4IIQQAMggUrkdAQDgAAAEAAABDMwAAWjMAwLDBACiiQwAAerUAwKE1AADAMgAAkLIDohqtQvkrPghvDWj2Cv8/AAAAAO8HRT8AACApmUC1QAE7BZsOMv0/fijCh1SQOb6TYpEkRKLpP79dPRTHYe8/dQCRpGwQsr3///9LCLR2P///////07W9AAAAAAghBAAyCEMAQwA=","preamble":85,"sender":22963,"common":{"sid":{"sat":24,"code":14},"toe":{"tow":270600,"wn":2098},"ura":3.12,"fit_interval":14400,"valid":1,"health_bits":0},"bgd_e1e5a":4.5401976e-8,"bgd_e1e5b":5.075708e-8,"c_rs":-22.09375,"c_rc":324.3125,"c_uc":-9.313226e-7,"c_us":0.0000012051314,"c_ic":2.2351742e-8,"c_is":-1.6763806e-8,"dn":3.2565642203999004e-9,"m0":1.9401763977575133,"ecc":0.000641814898699522,"sqrta":5440.5982837677,"omega0":1.8247209601865395,"omegadot":-5.952033640377751e-9,"w":0.8010578836647987,"inc":0.9806857486063832,"inc_dot":-1.6429255773019897e-11,"af0":0.005542786035221069,"af1":-1.9852564037137196e-11,"af2":0.0,"toc":{"tow":270600,"wn":2098},"iode":67,"iodc":67} +{"crc":2583,"length":152,"msg_type":149,"payload":"Cw4IIQQAMggUrkdAQDgAAAEAAACEsgAAkLIAgNtCAHAEQwDQpjYAAC43AADAMQAA8DIJ2QezQtAnPuz3xuNXe+U/AAAAAPZQPD8AAIBGm0C1QK3tOpsxCAPAXpX5kcEpN74w4dX1xQeQv9UhC83qmO8/RLuw9AgSAz7///8/oT9fP/7/////ces9AAAAIgghBAAyCEMAQwA=","preamble":85,"sender":22963,"common":{"sid":{"sat":11,"code":14},"toe":{"tow":270600,"wn":2098},"ura":3.12,"fit_interval":14400,"valid":1,"health_bits":0},"bgd_e1e5a":-1.5366822e-8,"bgd_e1e5b":-1.6763806e-8,"c_rs":109.75,"c_rc":132.4375,"c_uc":0.0000049714,"c_us":0.000010371208,"c_ic":5.5879354e-9,"c_is":2.7939677e-8,"dn":2.7722583328300094e-9,"m0":0.6713065575383985,"ecc":0.0004320717416703701,"sqrta":5440.606544494629,"omega0":-2.379000866638043,"omegadot":-5.393081786360879e-9,"w":-0.015654652719122086,"inc":0.9874166493182722,"inc_dot":5.550231189407157e-10,"af0":0.001907260389998555,"af1":1.996909304580185e-10,"af2":1.7347235e-18,"toc":{"tow":270600,"wn":2098},"iode":67,"iodc":67} +{"crc":3,"length":152,"msg_type":149,"payload":"Hw4IIQQAMggUrkdAQDgAAAEAAAAgMQAAMDEAAHbBAHijQwCANLUAQJw1AAAAsQAA8DL+96xunkQrPkZyn/wvcwHAAAAAAPRGET8AAMBxnEC1QJaRgpusG/0/YRMSO3ZTOb6iNeqgzZXiv43JI3Ekcu8/wO8/t+Srsb3///+/R/A+v/7//////y+9AAAAAAghBAAyCEMAQwA=","preamble":85,"sender":22963,"common":{"sid":{"sat":31,"code":14},"toe":{"tow":270600,"wn":2098},"ura":3.12,"fit_interval":14400,"valid":1,"health_bits":0},"bgd_e1e5a":2.3283064e-9,"bgd_e1e5b":2.561137e-9,"c_rs":-15.375,"c_rc":326.9375,"c_uc":-6.724149e-7,"c_us":0.0000011641532,"c_ic":-1.8626451e-9,"c_is":2.7939677e-8,"dn":3.1744179415348008e-9,"m0":-2.181243871322553,"ecc":0.00006590713746845722,"sqrta":5440.611110687256,"omega0":1.8192564081774427,"omegadot":-5.8966741915773585e-9,"w":-0.5807865279072539,"inc":0.9826833925019841,"inc_dot":-1.607209803882381e-11,"af0":-0.00047208549221977586,"af1":-5.6843418860808e-14,"af2":0.0,"toc":{"tow":270600,"wn":2098},"iode":67,"iodc":67} +{"crc":15891,"length":51,"msg_type":1025,"payload":"BkdMTyBMMk9GIE1FIDEgWysxMzYwbXNdIGxvdyBDTjAgdG9vIGxvbmcsIGRyb3BwaW5n","preamble":85,"sender":22963,"level":6,"text":"GLO L2OF ME 1 [+1360ms] low CN0 too long, dropping"} +{"crc":16568,"length":11,"msg_type":258,"payload":"Mgi02i4QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271506100,"ns_residual":0,"flags":1} +{"crc":53827,"length":16,"msg_type":259,"payload":"EbTaLhDkBwMZAxgw/uD1BQ==","preamble":85,"sender":22963,"flags":17,"tow":271506100,"year":2020,"month":3,"day":25,"hours":3,"minutes":24,"seconds":48,"ns":99999998} +{"crc":20116,"length":34,"msg_type":522,"payload":"tNouEH56gORl6kJA8q7PIVaSXsBJ6AS4uZ0xwAECWwQPBg==","preamble":85,"sender":22963,"tow":271506100,"lat":37.8312345149361,"lon":-122.28650708467083,"height":-17.616115094373786,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":9597,"length":22,"msg_type":526,"payload":"tNouEAAAAAAJAAAACgAAAPEAyQIPAg==","preamble":85,"sender":22963,"tow":271506100,"n":0,"e":9,"d":10,"h_accuracy":241,"v_accuracy":713,"n_sats":15,"flags":2} +{"crc":42585,"length":15,"msg_type":520,"payload":"tNouEJsAhwBNAEgAcgAG","preamble":85,"sender":22963,"tow":271506100,"gdop":155,"pdop":135,"tdop":77,"hdop":72,"vdop":114,"flags":6} +{"crc":49577,"length":22,"msg_type":524,"payload":"tNouEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271506100,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":39218,"length":6,"msg_type":528,"payload":"tNouEP//","preamble":85,"sender":22963,"tow":271506100,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":18815,"length":152,"msg_type":149,"payload":"IQ6wHgQAMggUrkdAQDgAAAEAAACwsQAA0LEAMLNCALgFQwCgjzYAQC03AACIswAAwLE7r4zPtuAmPkwWPLbJbwhAAAAAgIPwOT8AAGAvnEC1QDTgM7QeEQPA+GrXryTfNr7k8TuFtX/sv6HbAEo2s+8/tGUD6d1QAz7///8/Bb8+v/7//////109AAAAALAeBAAyCEIAQgA=","preamble":85,"sender":22963,"common":{"sid":{"sat":33,"code":14},"toe":{"tow":270000,"wn":2098},"ura":3.12,"fit_interval":14400,"valid":1,"health_bits":0},"bgd_e1e5a":-5.122274e-9,"bgd_e1e5b":-6.0535967e-9,"c_rs":89.59375,"c_rc":133.71875,"c_uc":0.0000042803586,"c_us":0.000010326505,"c_ic":-6.3329935e-8,"c_is":-5.5879354e-9,"dn":2.6633252239002037e-9,"m0":3.0545839535796286,"ecc":0.00039580545853823423,"sqrta":5440.610097885132,"omega0":-2.383359344323276,"omegadot":-5.325221816863623e-9,"w":-0.8905894853810961,"inc":0.9906264729860262,"inc_dot":5.621662736246373e-10,"af0":-0.00046914938138797874,"af1":4.2632564145606e-13,"af2":0.0,"toc":{"tow":270000,"wn":2098},"iode":66,"iodc":66} +{"crc":43573,"length":11,"msg_type":258,"payload":"MggY2y4QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271506200,"ns_residual":0,"flags":1} +{"crc":44183,"length":16,"msg_type":259,"payload":"ERjbLhDkBwMZAxgw/sHrCw==","preamble":85,"sender":22963,"flags":17,"tow":271506200,"year":2020,"month":3,"day":25,"hours":3,"minutes":24,"seconds":48,"ns":199999998} +{"crc":12543,"length":34,"msg_type":522,"payload":"GNsuEFREAeVl6kJAvfOpIVaSXsDc/tsbJJ0xwAECWwQPBg==","preamble":85,"sender":22963,"tow":271506200,"lat":37.83123457490788,"lon":-122.28650704953084,"height":-17.613832226953363,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":51496,"length":22,"msg_type":526,"payload":"GNsuEAYAAAAEAAAA8f////EAyQIPAg==","preamble":85,"sender":22963,"tow":271506200,"n":6,"e":4,"d":-15,"h_accuracy":241,"v_accuracy":713,"n_sats":15,"flags":2} +{"crc":43209,"length":15,"msg_type":520,"payload":"GNsuEJsAhwBNAEgAcgAG","preamble":85,"sender":22963,"tow":271506200,"gdop":155,"pdop":135,"tdop":77,"hdop":72,"vdop":114,"flags":6} +{"crc":15749,"length":22,"msg_type":524,"payload":"GNsuEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271506200,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":55720,"length":6,"msg_type":528,"payload":"GNsuEP//","preamble":85,"sender":22963,"tow":271506200,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":52991,"length":11,"msg_type":258,"payload":"Mgh82y4QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271506300,"ns_residual":0,"flags":1} +{"crc":7859,"length":16,"msg_type":259,"payload":"EXzbLhDkBwMZAxgw/qLhEQ==","preamble":85,"sender":22963,"flags":17,"tow":271506300,"year":2020,"month":3,"day":25,"hours":3,"minutes":24,"seconds":48,"ns":299999998} +{"crc":52051,"length":34,"msg_type":522,"payload":"fNsuEDq8YuVl6kJArKV/IVaSXsBkGbfhhJwxwAECWwQPBg==","preamble":85,"sender":22963,"tow":271506300,"lat":37.83123462029512,"lon":-122.28650701013129,"height":-17.611402613832425,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":61730,"length":22,"msg_type":526,"payload":"fNsuEPr///8BAAAACwAAAPEAygIPAg==","preamble":85,"sender":22963,"tow":271506300,"n":-6,"e":1,"d":11,"h_accuracy":241,"v_accuracy":714,"n_sats":15,"flags":2} +{"crc":33894,"length":15,"msg_type":520,"payload":"fNsuEJsAhwBNAEgAcgAG","preamble":85,"sender":22963,"tow":271506300,"gdop":155,"pdop":135,"tdop":77,"hdop":72,"vdop":114,"flags":6} +{"crc":9523,"length":22,"msg_type":524,"payload":"fNsuEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271506300,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":32785,"length":6,"msg_type":528,"payload":"fNsuEP//","preamble":85,"sender":22963,"tow":271506300,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":31743,"length":237,"msg_type":97,"payload":"BQDVFQC0AgC9HwCnAAAAAAAAGQDaDADOHQDVEgDOAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwLNGQHMDAG7HwGWEgHDHQHCAAAABQHBAAAAAAAAAAAAAAAAZAPWYgOwZgOtZQPOXQPPAAAAagO3aAPMYgSqZgTNAAAAZATHZQTCaAS7AAAAagSwIwzIGgyoIgygGAy9GQydDAy5Ewy4Fgy/AAAADA3QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADA7DAAAAGQ7ACw68GA7MAAAAHw6eIQ6ZGRTJGBTXCxTCHxStDBTPAAAAIRSpAAAA","preamble":85,"sender":22963,"states":[{"mesid":{"sat":5,"code":0},"cn0":213},{"mesid":{"sat":21,"code":0},"cn0":180},{"mesid":{"sat":2,"code":0},"cn0":189},{"mesid":{"sat":31,"code":0},"cn0":167},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":25,"code":0},"cn0":218},{"mesid":{"sat":12,"code":0},"cn0":206},{"mesid":{"sat":29,"code":0},"cn0":213},{"mesid":{"sat":18,"code":0},"cn0":206},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":131,"code":2},"cn0":205},{"mesid":{"sat":25,"code":1},"cn0":204},{"mesid":{"sat":12,"code":1},"cn0":187},{"mesid":{"sat":31,"code":1},"cn0":150},{"mesid":{"sat":18,"code":1},"cn0":195},{"mesid":{"sat":29,"code":1},"cn0":194},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":5,"code":1},"cn0":193},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":100,"code":3},"cn0":214},{"mesid":{"sat":98,"code":3},"cn0":176},{"mesid":{"sat":102,"code":3},"cn0":173},{"mesid":{"sat":101,"code":3},"cn0":206},{"mesid":{"sat":93,"code":3},"cn0":207},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":106,"code":3},"cn0":183},{"mesid":{"sat":104,"code":3},"cn0":204},{"mesid":{"sat":98,"code":4},"cn0":170},{"mesid":{"sat":102,"code":4},"cn0":205},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":100,"code":4},"cn0":199},{"mesid":{"sat":101,"code":4},"cn0":194},{"mesid":{"sat":104,"code":4},"cn0":187},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":106,"code":4},"cn0":176},{"mesid":{"sat":35,"code":12},"cn0":200},{"mesid":{"sat":26,"code":12},"cn0":168},{"mesid":{"sat":34,"code":12},"cn0":160},{"mesid":{"sat":24,"code":12},"cn0":189},{"mesid":{"sat":25,"code":12},"cn0":157},{"mesid":{"sat":12,"code":12},"cn0":185},{"mesid":{"sat":19,"code":12},"cn0":184},{"mesid":{"sat":22,"code":12},"cn0":191},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":12,"code":13},"cn0":208},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":12,"code":14},"cn0":195},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":25,"code":14},"cn0":192},{"mesid":{"sat":11,"code":14},"cn0":188},{"mesid":{"sat":24,"code":14},"cn0":204},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":31,"code":14},"cn0":158},{"mesid":{"sat":33,"code":14},"cn0":153},{"mesid":{"sat":25,"code":20},"cn0":201},{"mesid":{"sat":24,"code":20},"cn0":215},{"mesid":{"sat":11,"code":20},"cn0":194},{"mesid":{"sat":31,"code":20},"cn0":173},{"mesid":{"sat":12,"code":20},"cn0":207},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":33,"code":20},"cn0":169},{"mesid":{"sat":0,"code":0},"cn0":0}]} +{"crc":38819,"length":11,"msg_type":258,"payload":"Mgjg2y4QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271506400,"ns_residual":0,"flags":1} +{"crc":50911,"length":16,"msg_type":259,"payload":"EeDbLhDkBwMZAxgw/oPXFw==","preamble":85,"sender":22963,"flags":17,"tow":271506400,"year":2020,"month":3,"day":25,"hours":3,"minutes":24,"seconds":48,"ns":399999998} +{"crc":18781,"length":34,"msg_type":522,"payload":"4NsuEKkA8uVl6kJAPVJoIVaSXsC8mkocDpwxwAECWwQPBg==","preamble":85,"sender":22963,"tow":271506400,"lat":37.831234687009164,"lon":-122.28650698840734,"height":-17.609590309347126,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":31274,"length":22,"msg_type":526,"payload":"4NsuEA8AAAD9////AAAAAPEAygIPAg==","preamble":85,"sender":22963,"tow":271506400,"n":15,"e":-3,"d":0,"h_accuracy":241,"v_accuracy":714,"n_sats":15,"flags":2} +{"crc":8713,"length":15,"msg_type":520,"payload":"4NsuEJsAhwBNAEgAcgAG","preamble":85,"sender":22963,"tow":271506400,"gdop":155,"pdop":135,"tdop":77,"hdop":72,"vdop":114,"flags":6} +{"crc":56066,"length":22,"msg_type":524,"payload":"4NsuEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271506400,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":17750,"length":6,"msg_type":528,"payload":"4NsuEP//","preamble":85,"sender":22963,"tow":271506400,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":49809,"length":9,"msg_type":117,"payload":"/wAAAAAAAAAA","preamble":85,"sender":22963,"mask":255,"l1ca_bias":0,"l1p_bias":0,"l2ca_bias":0,"l2p_bias":0} +{"crc":54298,"length":11,"msg_type":258,"payload":"MghE3C4QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271506500,"ns_residual":0,"flags":1} +{"crc":35902,"length":16,"msg_type":259,"payload":"EUTcLhDkBwMZAxgw/mTNHQ==","preamble":85,"sender":22963,"flags":17,"tow":271506500,"year":2020,"month":3,"day":25,"hours":3,"minutes":24,"seconds":48,"ns":499999998} +{"crc":44973,"length":34,"msg_type":522,"payload":"RNwuENWBWuZl6kJAmDpFIVaSXsAlVk4qapwxwAECWwQPBg==","preamble":85,"sender":22963,"tow":271506500,"lat":37.8312347356729,"lon":-122.28650695572503,"height":-17.610994953274844,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":33799,"length":22,"msg_type":526,"payload":"RNwuEP////8EAAAADQAAAPEAygIPAg==","preamble":85,"sender":22963,"tow":271506500,"n":-1,"e":4,"d":13,"h_accuracy":241,"v_accuracy":714,"n_sats":15,"flags":2} +{"crc":187,"length":15,"msg_type":520,"payload":"RNwuEJsAhwBNAEgAcgAG","preamble":85,"sender":22963,"tow":271506500,"gdop":155,"pdop":135,"tdop":77,"hdop":72,"vdop":114,"flags":6} +{"crc":42491,"length":22,"msg_type":524,"payload":"RNwuEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271506500,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":50443,"length":6,"msg_type":528,"payload":"RNwuEP//","preamble":85,"sender":22963,"tow":271506500,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":9885,"length":11,"msg_type":258,"payload":"Mgio3C4QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271506600,"ns_residual":0,"flags":1} +{"crc":38562,"length":16,"msg_type":259,"payload":"EajcLhDkBwMZAxgw/kXDIw==","preamble":85,"sender":22963,"flags":17,"tow":271506600,"year":2020,"month":3,"day":25,"hours":3,"minutes":24,"seconds":48,"ns":599999998} +{"crc":33617,"length":34,"msg_type":522,"payload":"qNwuEE660eZl6kJAfq8fIVaSXsD8JtW2M5wxwAECWwQPBg==","preamble":85,"sender":22963,"tow":271506600,"lat":37.83123479118932,"lon":-122.28650692076005,"height":-17.61016409591592,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":25197,"length":22,"msg_type":526,"payload":"qNwuEAwAAAD9////9/////EAygIPAg==","preamble":85,"sender":22963,"tow":271506600,"n":12,"e":-3,"d":-9,"h_accuracy":241,"v_accuracy":714,"n_sats":15,"flags":2} +{"crc":24387,"length":15,"msg_type":520,"payload":"qNwuEJsAhwBNAEgAcgAG","preamble":85,"sender":22963,"tow":271506600,"gdop":155,"pdop":135,"tdop":77,"hdop":72,"vdop":114,"flags":6} +{"crc":22907,"length":22,"msg_type":524,"payload":"qNwuEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271506600,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":17872,"length":6,"msg_type":528,"payload":"qNwuEP//","preamble":85,"sender":22963,"tow":271506600,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":58863,"length":11,"msg_type":258,"payload":"MggM3S4QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271506700,"ns_residual":0,"flags":1} +{"crc":15252,"length":16,"msg_type":259,"payload":"EQzdLhDkBwMZAxgw/ia5KQ==","preamble":85,"sender":22963,"flags":17,"tow":271506700,"year":2020,"month":3,"day":25,"hours":3,"minutes":24,"seconds":48,"ns":699999998} +{"crc":12487,"length":34,"msg_type":522,"payload":"DN0uECt+Nudl6kJAFD0FIVaSXsANoSeddpwxwAECWwQPBg==","preamble":85,"sender":22963,"tow":271506700,"lat":37.83123483811172,"lon":-122.28650689612942,"height":-17.611184904265475,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":32884,"length":22,"msg_type":526,"payload":"DN0uEAMAAAD7//////////EAygIPAg==","preamble":85,"sender":22963,"tow":271506700,"n":3,"e":-5,"d":-1,"h_accuracy":241,"v_accuracy":714,"n_sats":15,"flags":2} +{"crc":30358,"length":15,"msg_type":520,"payload":"DN0uEJsAhwBNAEgAcgAG","preamble":85,"sender":22963,"tow":271506700,"gdop":155,"pdop":135,"tdop":77,"hdop":72,"vdop":114,"flags":6} +{"crc":64500,"length":22,"msg_type":524,"payload":"DN0uEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271506700,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":2056,"length":6,"msg_type":528,"payload":"DN0uEP//","preamble":85,"sender":22963,"tow":271506700,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":55020,"length":34,"msg_type":30583,"payload":"gwIv3C4QPwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"sid":{"sat":131,"code":2},"tow":271506479,"message_type":63,"data":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]} +{"crc":64292,"length":11,"msg_type":258,"payload":"Mghw3S4QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271506800,"ns_residual":0,"flags":1} +{"crc":1553,"length":16,"msg_type":259,"payload":"EXDdLhDkBwMZAxgw/gevLw==","preamble":85,"sender":22963,"flags":17,"tow":271506800,"year":2020,"month":3,"day":25,"hours":3,"minutes":24,"seconds":48,"ns":799999998} +{"crc":29489,"length":34,"msg_type":522,"payload":"cN0uEKqEludl6kJAADDfIFaSXsDpU6JRXZ0xwAECWwQPBg==","preamble":85,"sender":22963,"tow":271506800,"lat":37.83123488282702,"lon":-122.28650686069159,"height":-17.61470518315392,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":58507,"length":22,"msg_type":526,"payload":"cN0uEP3///8JAAAA//////EAygIPAg==","preamble":85,"sender":22963,"tow":271506800,"n":-3,"e":9,"d":-1,"h_accuracy":241,"v_accuracy":714,"n_sats":15,"flags":2} +{"crc":13302,"length":15,"msg_type":520,"payload":"cN0uEJsAhwBNAEgAcgAG","preamble":85,"sender":22963,"tow":271506800,"gdop":155,"pdop":135,"tdop":77,"hdop":72,"vdop":114,"flags":6} +{"crc":167,"length":22,"msg_type":524,"payload":"cN0uEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271506800,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":18039,"length":6,"msg_type":528,"payload":"cN0uEP//","preamble":85,"sender":22963,"tow":271506800,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":14970,"length":237,"msg_type":97,"payload":"BQDVFQC1AgC9HwCnAAAAAAAAGQDaDADOHQDVEgDOAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwLNGQHNDAG7HwGWEgHDHQHCAAAABQHCAAAAAAAAAAAAAAAACwPWCQOwFAOtBQPOCgPPAAAABAO3FQPLCQSqFATNCgRTCwTHBQTCAAS7AAAABASxIwzIGgypIgygGAy9GQydDAy5Ewy4Fgy/AAAADA3QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADA7CAAAAGQ6/Cw68GA7MAAAAHw6fIQ6ZGRTJGBTXCxTCHxStDBTPAAAAIRSpAAAA","preamble":85,"sender":22963,"states":[{"mesid":{"sat":5,"code":0},"cn0":213},{"mesid":{"sat":21,"code":0},"cn0":181},{"mesid":{"sat":2,"code":0},"cn0":189},{"mesid":{"sat":31,"code":0},"cn0":167},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":25,"code":0},"cn0":218},{"mesid":{"sat":12,"code":0},"cn0":206},{"mesid":{"sat":29,"code":0},"cn0":213},{"mesid":{"sat":18,"code":0},"cn0":206},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":131,"code":2},"cn0":205},{"mesid":{"sat":25,"code":1},"cn0":205},{"mesid":{"sat":12,"code":1},"cn0":187},{"mesid":{"sat":31,"code":1},"cn0":150},{"mesid":{"sat":18,"code":1},"cn0":195},{"mesid":{"sat":29,"code":1},"cn0":194},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":5,"code":1},"cn0":194},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":11,"code":3},"cn0":214},{"mesid":{"sat":9,"code":3},"cn0":176},{"mesid":{"sat":20,"code":3},"cn0":173},{"mesid":{"sat":5,"code":3},"cn0":206},{"mesid":{"sat":10,"code":3},"cn0":207},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":4,"code":3},"cn0":183},{"mesid":{"sat":21,"code":3},"cn0":203},{"mesid":{"sat":9,"code":4},"cn0":170},{"mesid":{"sat":20,"code":4},"cn0":205},{"mesid":{"sat":10,"code":4},"cn0":83},{"mesid":{"sat":11,"code":4},"cn0":199},{"mesid":{"sat":5,"code":4},"cn0":194},{"mesid":{"sat":0,"code":4},"cn0":187},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":4,"code":4},"cn0":177},{"mesid":{"sat":35,"code":12},"cn0":200},{"mesid":{"sat":26,"code":12},"cn0":169},{"mesid":{"sat":34,"code":12},"cn0":160},{"mesid":{"sat":24,"code":12},"cn0":189},{"mesid":{"sat":25,"code":12},"cn0":157},{"mesid":{"sat":12,"code":12},"cn0":185},{"mesid":{"sat":19,"code":12},"cn0":184},{"mesid":{"sat":22,"code":12},"cn0":191},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":12,"code":13},"cn0":208},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":12,"code":14},"cn0":194},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":25,"code":14},"cn0":191},{"mesid":{"sat":11,"code":14},"cn0":188},{"mesid":{"sat":24,"code":14},"cn0":204},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":31,"code":14},"cn0":159},{"mesid":{"sat":33,"code":14},"cn0":153},{"mesid":{"sat":25,"code":20},"cn0":201},{"mesid":{"sat":24,"code":20},"cn0":215},{"mesid":{"sat":11,"code":20},"cn0":194},{"mesid":{"sat":31,"code":20},"cn0":173},{"mesid":{"sat":12,"code":20},"cn0":207},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":33,"code":20},"cn0":169},{"mesid":{"sat":0,"code":0},"cn0":0}]} +{"crc":41336,"length":136,"msg_type":151,"payload":"AgAaHgUALDUMAFEtFQB9GRkAbUYaAKEBHQChNx8AlQ4EAxYWBQMyIQYDTggJA18OCgNxKQsDmCUMA6oDEwMiBxQDCzEVA5UlDAyUKRMMIyAUDA8CFgxDIxgMgiMZDJ0OGgxnFR0MLAAiDI4RIwwiLQsOizIMDg88GA5sNhkOlykfDlURIQ4fDw==","preamble":85,"sender":22963,"azel":[{"sid":{"sat":2,"code":0},"az":26,"el":30},{"sid":{"sat":5,"code":0},"az":44,"el":53},{"sid":{"sat":12,"code":0},"az":81,"el":45},{"sid":{"sat":21,"code":0},"az":125,"el":25},{"sid":{"sat":25,"code":0},"az":109,"el":70},{"sid":{"sat":26,"code":0},"az":161,"el":1},{"sid":{"sat":29,"code":0},"az":161,"el":55},{"sid":{"sat":31,"code":0},"az":149,"el":14},{"sid":{"sat":4,"code":3},"az":22,"el":22},{"sid":{"sat":5,"code":3},"az":50,"el":33},{"sid":{"sat":6,"code":3},"az":78,"el":8},{"sid":{"sat":9,"code":3},"az":95,"el":14},{"sid":{"sat":10,"code":3},"az":113,"el":41},{"sid":{"sat":11,"code":3},"az":152,"el":37},{"sid":{"sat":12,"code":3},"az":170,"el":3},{"sid":{"sat":19,"code":3},"az":34,"el":7},{"sid":{"sat":20,"code":3},"az":11,"el":49},{"sid":{"sat":21,"code":3},"az":149,"el":37},{"sid":{"sat":12,"code":12},"az":148,"el":41},{"sid":{"sat":19,"code":12},"az":35,"el":32},{"sid":{"sat":20,"code":12},"az":15,"el":2},{"sid":{"sat":22,"code":12},"az":67,"el":35},{"sid":{"sat":24,"code":12},"az":130,"el":35},{"sid":{"sat":25,"code":12},"az":157,"el":14},{"sid":{"sat":26,"code":12},"az":103,"el":21},{"sid":{"sat":29,"code":12},"az":44,"el":0},{"sid":{"sat":34,"code":12},"az":142,"el":17},{"sid":{"sat":35,"code":12},"az":34,"el":45},{"sid":{"sat":11,"code":14},"az":139,"el":50},{"sid":{"sat":12,"code":14},"az":15,"el":60},{"sid":{"sat":24,"code":14},"az":108,"el":54},{"sid":{"sat":25,"code":14},"az":151,"el":41},{"sid":{"sat":31,"code":14},"az":85,"el":17},{"sid":{"sat":33,"code":14},"az":31,"el":15}]} +{"crc":32645,"length":11,"msg_type":258,"payload":"MgjU3S4QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271506900,"ns_residual":0,"flags":1} +{"crc":46884,"length":16,"msg_type":259,"payload":"EdTdLhDkBwMZAxgw/uikNQ==","preamble":85,"sender":22963,"flags":17,"tow":271506900,"year":2020,"month":3,"day":25,"hours":3,"minutes":24,"seconds":48,"ns":899999998} +{"crc":24564,"length":34,"msg_type":522,"payload":"1N0uEKtx8edl6kJAngOiIFaSXsCbH22om54xwAECWwQPBg==","preamble":85,"sender":22963,"tow":271506900,"lat":37.83123492516764,"lon":-122.28650680371945,"height":-17.619562651292295,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":2315,"length":22,"msg_type":526,"payload":"1N0uEP3///8QAAAAKQAAAPEAygIPAg==","preamble":85,"sender":22963,"tow":271506900,"n":-3,"e":16,"d":41,"h_accuracy":241,"v_accuracy":714,"n_sats":15,"flags":2} +{"crc":24898,"length":15,"msg_type":520,"payload":"1N0uEJsAhwBNAEgAcgAG","preamble":85,"sender":22963,"tow":271506900,"gdop":155,"pdop":135,"tdop":77,"hdop":72,"vdop":114,"flags":6} +{"crc":30686,"length":22,"msg_type":524,"payload":"1N0uEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271506900,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":41470,"length":6,"msg_type":528,"payload":"1N0uEP//","preamble":85,"sender":22963,"tow":271506900,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":23747,"length":249,"msg_type":74,"payload":"ON4uEAAAAAAyCEC+yLM+2g2XBj1O/5HVDw8FAINaGUXgKUMHYn8IgLQPDxUAWLDvReWwWQe2UfbXvQ8PAgBGHAJJCFisB7V4/uWnDw8fAKPBJD2sHW0GJZ77uNoPDxkAtLOxQJSlzAbmbPTizg8PDACgRtI+PEKaBj7OBTTVDw8dANPBJD2n6AEF7Zb8+cwPDxkBZLOxQEBZTAWK+fYquw8PDAEDHAJJWKj6Bf3O/uGXDw8fATxG0j6yFSUFa4YEjsIPDx0BdsizPouWIgV4df/Hwg8PBQEQsP0+i2q7Bj2VBJrWDw8LA9+w0ESAcVkH0Mru37EPDwkD","preamble":85,"sender":22963,"header":{"t":{"tow":271507000,"ns_residual":0,"wn":2098},"n_obs":64},"obs":[{"P":1051969726,"L":{"i":110562778,"f":61},"D":{"i":-178,"f":145},"cn0":213,"lock":15,"flags":15,"sid":{"sat":5,"code":0}},{"P":1159289475,"L":{"i":121842144,"f":98},"D":{"i":2175,"f":128},"cn0":180,"lock":15,"flags":15,"sid":{"sat":21,"code":0}},{"P":1173336152,"L":{"i":123318501,"f":182},"D":{"i":-2479,"f":215},"cn0":189,"lock":15,"flags":15,"sid":{"sat":2,"code":0}},{"P":1224875078,"L":{"i":128735240,"f":181},"D":{"i":-392,"f":229},"cn0":167,"lock":15,"flags":15,"sid":{"sat":31,"code":0}},{"P":1025819043,"L":{"i":107814316,"f":37},"D":{"i":-1122,"f":184},"cn0":218,"lock":15,"flags":15,"sid":{"sat":25,"code":0}},{"P":1085387700,"L":{"i":114075028,"f":230},"D":{"i":-2964,"f":226},"cn0":206,"lock":15,"flags":15,"sid":{"sat":12,"code":0}},{"P":1053968032,"L":{"i":110772796,"f":62},"D":{"i":1486,"f":52},"cn0":213,"lock":15,"flags":15,"sid":{"sat":29,"code":0}},{"P":1025819091,"L":{"i":84011175,"f":237},"D":{"i":-874,"f":249},"cn0":204,"lock":15,"flags":15,"sid":{"sat":25,"code":1}},{"P":1085387620,"L":{"i":88889664,"f":138},"D":{"i":-2311,"f":42},"cn0":187,"lock":15,"flags":15,"sid":{"sat":12,"code":1}},{"P":1224875011,"L":{"i":100313176,"f":253},"D":{"i":-306,"f":225},"cn0":151,"lock":15,"flags":15,"sid":{"sat":31,"code":1}},{"P":1053967932,"L":{"i":86316466,"f":107},"D":{"i":1158,"f":142},"cn0":194,"lock":15,"flags":15,"sid":{"sat":29,"code":1}},{"P":1051969654,"L":{"i":86152843,"f":120},"D":{"i":-139,"f":199},"cn0":194,"lock":15,"flags":15,"sid":{"sat":5,"code":1}},{"P":1056813072,"L":{"i":112945803,"f":61},"D":{"i":1173,"f":154},"cn0":214,"lock":15,"flags":15,"sid":{"sat":11,"code":3}},{"P":1154527455,"L":{"i":123302272,"f":208},"D":{"i":-4406,"f":223},"cn0":177,"lock":15,"flags":15,"sid":{"sat":9,"code":3}}]} +{"crc":33589,"length":249,"msg_type":74,"payload":"ON4uEAAAAAAyCEH/Giw9PtWKBt9H+9GtDw8UA1OKC0At39gGQZsI284PDwUD3SpiPqSZpgYJIfRGzw8PCgOV8wVD95ktB9Hj+gq3Dw8EA0RVLD9A1MIG4lgGhssPDxUDaLHQRFFYtwVnmvKBqg8PCQR3HCw9/6UWBU5U/B/NDw8UBPSw/T5abzwFLpADIMcPDwsEiosLQENYUwVusgacww8PBQRU9AVD0z6VBWsG/BCxDw8EBCKgk0Ui/z4H3Cb6H8gPDyMMATjwSbRIswfsP/SAqQ8PGgyv6BhMLtjsB3jJCMmgDw8iDK8Zn0d3g3UHCO36Nr0PDxgM","preamble":85,"sender":22963,"header":{"t":{"tow":271507000,"ns_residual":0,"wn":2098},"n_obs":65},"obs":[{"P":1026300671,"L":{"i":109761854,"f":223},"D":{"i":-1209,"f":209},"cn0":173,"lock":15,"flags":15,"sid":{"sat":20,"code":3}},{"P":1074498131,"L":{"i":114876205,"f":65},"D":{"i":2203,"f":219},"cn0":206,"lock":15,"flags":15,"sid":{"sat":5,"code":3}},{"P":1046620893,"L":{"i":111581604,"f":9},"D":{"i":-3039,"f":70},"cn0":207,"lock":15,"flags":15,"sid":{"sat":10,"code":3}},{"P":1124463509,"L":{"i":120429047,"f":209},"D":{"i":-1309,"f":10},"cn0":183,"lock":15,"flags":15,"sid":{"sat":4,"code":3}},{"P":1059870020,"L":{"i":113431616,"f":226},"D":{"i":1624,"f":134},"cn0":203,"lock":15,"flags":15,"sid":{"sat":21,"code":3}},{"P":1154527592,"L":{"i":95901777,"f":103},"D":{"i":-3430,"f":129},"cn0":170,"lock":15,"flags":15,"sid":{"sat":9,"code":4}},{"P":1026301047,"L":{"i":85370367,"f":78},"D":{"i":-940,"f":31},"cn0":205,"lock":15,"flags":15,"sid":{"sat":20,"code":4}},{"P":1056813300,"L":{"i":87846746,"f":46},"D":{"i":912,"f":32},"cn0":199,"lock":15,"flags":15,"sid":{"sat":11,"code":4}},{"P":1074498442,"L":{"i":89348163,"f":110},"D":{"i":1714,"f":156},"cn0":195,"lock":15,"flags":15,"sid":{"sat":5,"code":4}},{"P":1124463700,"L":{"i":93667027,"f":107},"D":{"i":-1018,"f":16},"cn0":177,"lock":15,"flags":15,"sid":{"sat":4,"code":4}},{"P":1167302690,"L":{"i":121569058,"f":220},"D":{"i":-1498,"f":31},"cn0":200,"lock":15,"flags":15,"sid":{"sat":35,"code":12}},{"P":1240479745,"L":{"i":129190068,"f":236},"D":{"i":-3009,"f":128},"cn0":169,"lock":15,"flags":15,"sid":{"sat":26,"code":12}},{"P":1276700847,"L":{"i":132962350,"f":120},"D":{"i":2249,"f":201},"cn0":160,"lock":15,"flags":15,"sid":{"sat":34,"code":12}},{"P":1201609135,"L":{"i":125141879,"f":8},"D":{"i":-1299,"f":54},"cn0":189,"lock":15,"flags":15,"sid":{"sat":24,"code":12}}]} +{"crc":15726,"length":249,"msg_type":74,"payload":"ON4uEAAAAAAyCEJ61hRN0BQHCGMxBWOcDw8ZDLudUEV4BDgH9EwGArkPDwwM3/BCR2nqawdn4/5ZuA8PEwxLi2FHURpvB8ZVCZy/Dw8WDGKdUEUkAZUFit4E/tAPDwwNIPcFQpho8AaQ/fuFwg8PDA6PKyJLaYblBxdDBKrADw8ZDjBCIkdA6XkHzhcEqbwPDwsOpNMlQ8apDgcYM/mQzA8PGA7be0RR5ZCKCCyc8+ufDw8fDnws9FH5B50IeqP34pkPDyEObSsiS/H1DAbXRAP8yQ8PGRS81SVDylNoBQzJ+nHXDw8YFF9BIkfFgLoFCCIDoMIPDwsU","preamble":85,"sender":22963,"header":{"t":{"tow":271507000,"ns_residual":0,"wn":2098},"n_obs":66},"obs":[{"P":1293211258,"L":{"i":134681808,"f":99},"D":{"i":1329,"f":99},"cn0":156,"lock":15,"flags":15,"sid":{"sat":25,"code":12}},{"P":1162911163,"L":{"i":121111672,"f":244},"D":{"i":1612,"f":2},"cn0":185,"lock":15,"flags":15,"sid":{"sat":12,"code":12}},{"P":1195569375,"L":{"i":124512873,"f":103},"D":{"i":-285,"f":89},"cn0":184,"lock":15,"flags":15,"sid":{"sat":19,"code":12}},{"P":1197574987,"L":{"i":124721745,"f":198},"D":{"i":2389,"f":156},"cn0":191,"lock":15,"flags":15,"sid":{"sat":22,"code":12}},{"P":1162911074,"L":{"i":93651236,"f":138},"D":{"i":1246,"f":254},"cn0":208,"lock":15,"flags":15,"sid":{"sat":12,"code":13}},{"P":1107687200,"L":{"i":116418712,"f":144},"D":{"i":-1027,"f":133},"cn0":194,"lock":15,"flags":15,"sid":{"sat":12,"code":14}},{"P":1260530575,"L":{"i":132482665,"f":23},"D":{"i":1091,"f":170},"cn0":192,"lock":15,"flags":15,"sid":{"sat":25,"code":14}},{"P":1193427504,"L":{"i":125430080,"f":206},"D":{"i":1047,"f":169},"cn0":188,"lock":15,"flags":15,"sid":{"sat":11,"code":14}},{"P":1126552484,"L":{"i":118401478,"f":24},"D":{"i":-1741,"f":144},"cn0":204,"lock":15,"flags":15,"sid":{"sat":24,"code":14}},{"P":1363442651,"L":{"i":143298789,"f":44},"D":{"i":-3172,"f":235},"cn0":159,"lock":15,"flags":15,"sid":{"sat":31,"code":14}},{"P":1374956668,"L":{"i":144508921,"f":122},"D":{"i":-2141,"f":226},"cn0":153,"lock":15,"flags":15,"sid":{"sat":33,"code":14}},{"P":1260530541,"L":{"i":101512689,"f":215},"D":{"i":836,"f":252},"cn0":201,"lock":15,"flags":15,"sid":{"sat":25,"code":20}},{"P":1126553020,"L":{"i":90723274,"f":12},"D":{"i":-1335,"f":113},"cn0":215,"lock":15,"flags":15,"sid":{"sat":24,"code":20}},{"P":1193427295,"L":{"i":96108741,"f":8},"D":{"i":802,"f":160},"cn0":194,"lock":15,"flags":15,"sid":{"sat":11,"code":20}}]} +{"crc":20711,"length":62,"msg_type":74,"payload":"ON4uEAAAAAAyCEMAfERR3GuLBnCC9rWtDw8fFH32BUILJVEFMOz8q88PDwwUUiz0UQWSmQarmPmIqg8PIRQ=","preamble":85,"sender":22963,"header":{"t":{"tow":271507000,"ns_residual":0,"wn":2098},"n_obs":67},"obs":[{"P":1363442688,"L":{"i":109800412,"f":112},"D":{"i":-2430,"f":181},"cn0":173,"lock":15,"flags":15,"sid":{"sat":31,"code":20}},{"P":1107687037,"L":{"i":89203979,"f":48},"D":{"i":-788,"f":171},"cn0":207,"lock":15,"flags":15,"sid":{"sat":12,"code":20}},{"P":1374956626,"L":{"i":110727685,"f":171},"D":{"i":-1640,"f":136},"cn0":170,"lock":15,"flags":15,"sid":{"sat":33,"code":20}}]} +{"crc":49809,"length":9,"msg_type":117,"payload":"/wAAAAAAAAAA","preamble":85,"sender":22963,"mask":255,"l1ca_bias":0,"l1p_bias":0,"l2ca_bias":0,"l2p_bias":0} +{"crc":17783,"length":11,"msg_type":258,"payload":"Mgg43i4QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271507000,"ns_residual":0,"flags":1} +{"crc":5085,"length":16,"msg_type":259,"payload":"ETjeLhDkBwMZAxgw/smaOw==","preamble":85,"sender":22963,"flags":17,"tow":271507000,"year":2020,"month":3,"day":25,"hours":3,"minutes":24,"seconds":48,"ns":999999998} +{"crc":47292,"length":34,"msg_type":522,"payload":"ON4uEPoTRuhl6kJAfjOAIFaSXsAg1vv5sZ4xwAECWwQPBg==","preamble":85,"sender":22963,"tow":271507000,"lat":37.83123496457843,"lon":-122.28650677222865,"height":-17.61990320585585,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":35365,"length":22,"msg_type":526,"payload":"ON4uEAUAAAD6/////v////EAygIPAg==","preamble":85,"sender":22963,"tow":271507000,"n":5,"e":-6,"d":-2,"h_accuracy":241,"v_accuracy":714,"n_sats":15,"flags":2} +{"crc":45849,"length":15,"msg_type":520,"payload":"ON4uEJsAhwBNAEgAcgAG","preamble":85,"sender":22963,"tow":271507000,"gdop":155,"pdop":135,"tdop":77,"hdop":72,"vdop":114,"flags":6} +{"crc":58725,"length":22,"msg_type":524,"payload":"ON4uEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271507000,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":53239,"length":6,"msg_type":528,"payload":"ON4uEP//","preamble":85,"sender":22963,"tow":271507000,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":40942,"length":4,"msg_type":65535,"payload":"AAUCgA==","preamble":85,"sender":22963,"flags":2147616000} +{"crc":2168,"length":24,"msg_type":72,"payload":"UO0a3iqORMHK1UJhIkRQwc9nFIPvrk1B","preamble":85,"sender":22963,"x":-2694229.735196747,"y":-4264073.519704292,"z":3890655.0240602265} +{"crc":49622,"length":11,"msg_type":258,"payload":"Mgic3i4QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271507100,"ns_residual":0,"flags":1} +{"crc":16358,"length":16,"msg_type":259,"payload":"EZzeLhDkBwMZAxgx/uD1BQ==","preamble":85,"sender":22963,"flags":17,"tow":271507100,"year":2020,"month":3,"day":25,"hours":3,"minutes":24,"seconds":49,"ns":99999998} +{"crc":38169,"length":34,"msg_type":522,"payload":"nN4uEO3qhuhl6kJA14hMIFaSXsB3lJQDDJ4xwAECWwQPBg==","preamble":85,"sender":22963,"tow":271507100,"lat":37.83123499477174,"lon":-122.28650672411037,"height":-17.617370818876648,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":22904,"length":22,"msg_type":526,"payload":"nN4uEP3///8AAAAAAQAAAPEAygIPAg==","preamble":85,"sender":22963,"tow":271507100,"n":-3,"e":0,"d":1,"h_accuracy":241,"v_accuracy":714,"n_sats":15,"flags":2} +{"crc":57773,"length":15,"msg_type":520,"payload":"nN4uEJsAhwBNAEgAcgAG","preamble":85,"sender":22963,"tow":271507100,"gdop":155,"pdop":135,"tdop":77,"hdop":72,"vdop":114,"flags":6} +{"crc":37404,"length":22,"msg_type":524,"payload":"nN4uEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271507100,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":10366,"length":6,"msg_type":528,"payload":"nN4uEP//","preamble":85,"sender":22963,"tow":271507100,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":57177,"length":11,"msg_type":258,"payload":"MggA3y4QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271507200,"ns_residual":0,"flags":1} +{"crc":37548,"length":16,"msg_type":259,"payload":"EQDfLhDkBwMZAxgx/sHrCw==","preamble":85,"sender":22963,"flags":17,"tow":271507200,"year":2020,"month":3,"day":25,"hours":3,"minutes":24,"seconds":49,"ns":199999998} +{"crc":43634,"length":34,"msg_type":522,"payload":"AN8uEHP98Ohl6kJAT1URIFaSXsBGfV/fFJ0xwAECWwQPBg==","preamble":85,"sender":22963,"tow":271507200,"lat":37.83123504416553,"lon":-122.28650666897487,"height":-17.61359973984988,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":41331,"length":22,"msg_type":526,"payload":"AN8uEA4AAAAEAAAAAQAAAPEAygIPAg==","preamble":85,"sender":22963,"tow":271507200,"n":14,"e":4,"d":1,"h_accuracy":241,"v_accuracy":714,"n_sats":15,"flags":2} +{"crc":15523,"length":15,"msg_type":520,"payload":"AN8uEJsAhwBNAEgAcgAG","preamble":85,"sender":22963,"tow":271507200,"gdop":155,"pdop":135,"tdop":77,"hdop":72,"vdop":114,"flags":6} +{"crc":47579,"length":22,"msg_type":524,"payload":"AN8uEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271507200,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":18280,"length":6,"msg_type":528,"payload":"AN8uEP//","preamble":85,"sender":22963,"tow":271507200,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":17495,"length":139,"msg_type":138,"payload":"BQDALAQAMggAAABAQDgAAAEAAABAsgBALsIAFJZDAKALtgDAdzYAAACxAACAMRHWGb5eZzY+T/dUY52P0T8AAAAgg6d3PwAAIDCfIbRARtfJCOom8b9M1QV73plCvqU6ueguN+k/EhTM+Tx17j/o1QJxDTj7vQCAIrcAAECrAAAAAMAsBAAyCBsbAA==","preamble":85,"sender":22963,"common":{"sid":{"sat":5,"code":0},"toe":{"tow":273600,"wn":2098},"ura":2.0,"fit_interval":14400,"valid":1,"health_bits":0},"tgd":-1.1175871e-8,"c_rs":-43.5625,"c_rc":300.15625,"c_uc":-0.0000020805746,"c_us":0.0000036917627,"c_ic":-1.8626451e-9,"c_is":3.7252903e-9,"dn":5.216288707933817e-9,"m0":0.2743905515707085,"ecc":0.00577498646453023,"sqrta":5153.621828079224,"omega0":-1.0720005362795333,"omegadot":-8.661789369723447e-9,"w":0.7879862351781709,"inc":0.9518113020755001,"inc_dot":-3.9608792722345795e-10,"af0":-0.000009685755,"af1":-6.82121e-13,"af2":0.0,"toc":{"tow":273600,"wn":2098},"iode":27,"iodc":27} +{"crc":19841,"length":139,"msg_type":138,"payload":"GQDALAQAMggAAABAQDgAAAEAAADAMQAgX8IA/JZDAGBGtgDwizYAADa0AAAotFSYPIsW8TM+5hz4wc+O/z8AAAAsFe+CPwAAYP2RIbRAFhvTsJnQAEDKAtIKQNlBvuja0oEnP+0/Qj1ZqGzq7j/cS8aiBt3svQDk8rYAABgsAAAAAMAsBAAyCAUFAA==","preamble":85,"sender":22963,"common":{"sid":{"sat":25,"code":0},"toe":{"tow":273600,"wn":2098},"ura":2.0,"fit_interval":14400,"valid":1,"health_bits":0},"tgd":5.5879354e-9,"c_rs":-55.78125,"c_rc":301.96875,"c_uc":-0.0000029560179,"c_us":0.0000041704625,"c_ic":-1.6950071e-7,"c_is":-1.5646219e-7,"dn":4.643050544549101e-9,"m0":1.9723661019250414,"ecc":0.009245076566003263,"sqrta":5153.570272445679,"omega0":2.101855641786993,"omegadot":-8.311417632477088e-9,"w":0.913959268152067,"inc":0.9661162651117723,"inc_dot":-2.100087477072978e-10,"af0":-0.0000072387047,"af1":2.16005e-12,"af2":0.0,"toc":{"tow":273600,"wn":2098},"iode":5,"iodc":5} +{"crc":50178,"length":139,"msg_type":138,"payload":"DADALAQAMggAAABAQDgAAAEAAABYsgCge8IApJZDAABgtgDwlzYAAKAyAAAgtI3VKOguUzI+msQrVfHbAUAAAACUY5OAPwAAoMK4IbRAOKAgCzJcAUCtOHejHT9BvuQZXGWA/fE/c6ROYnhS7z8M3+7JXEfxvcCPDzkAAJisAAAAAMAsBAAyCBcXAA==","preamble":85,"sender":22963,"common":{"sid":{"sat":12,"code":0},"toe":{"tow":273600,"wn":2098},"ura":2.0,"fit_interval":14400,"valid":1,"health_bits":0},"tgd":-1.2572855e-8,"c_rs":-62.90625,"c_rc":301.28125,"c_uc":-0.00000333786,"c_us":0.0000045280904,"c_ic":1.8626451e-8,"c_is":-1.4901161e-7,"dn":4.266606292706428e-9,"m0":2.2323938993436743,"ecc":0.00809362216386944,"sqrta":5153.721719741821,"omega0":2.1700173253375645,"omegadot":-8.031048811133161e-9,"w":1.124390026032068,"inc":0.9788171691954076,"inc_dot":-2.5143904487404365e-10,"af0":0.00013691094,"af1":-4.3201e-12,"af2":0.0,"toc":{"tow":273600,"wn":2098},"iode":23,"iodc":23} +{"crc":20617,"length":139,"msg_type":138,"payload":"HQDALAQAMggAAABAQDgAAAEAAAAwsgCAYsEAABlDAMCCtQAQUDcAAOAyAACQMqWXiWwGDDA+XB/TSA2OvL8AAABACjNUPwAA4CSdIbRAtqOeydGKCMBFFRj0+k5AvgMu88xB7f0/FO/KteyN7z8ahhkPrDSlvUDRh7gAACKtAAAAAMAsBAAyCEREAA==","preamble":85,"sender":22963,"common":{"sid":{"sat":29,"code":0},"toe":{"tow":273600,"wn":2098},"ura":2.0,"fit_interval":14400,"valid":1,"health_bits":0},"tgd":-1.0244548e-8,"c_rs":-14.15625,"c_rc":153.0,"c_uc":-9.741634e-7,"c_us":0.000012401491,"c_ic":2.6077032e-8,"c_is":1.6763806e-8,"dn":3.736227057425242e-9,"m0":-0.11154253986307822,"ecc":0.0012328720185905695,"sqrta":5153.613843917847,"omega0":-3.067782950547975,"omegadot":-7.594244902211349e-9,"w":1.8704240804535182,"inc":0.9860747862471464,"inc_dot":-9.643258823294287e-12,"af0":-0.000064762775,"af1":-9.208634e-12,"af2":0.0,"toc":{"tow":273600,"wn":2098},"iode":68,"iodc":68} +{"crc":18755,"length":139,"msg_type":138,"payload":"AgDALAQAMggAAABAQDgAAAEAAACYsgCwpkIAuGpDAPCTNgCw8jYAAGg0AAAsNA3HXKiZKzQ+FOBzlwsNA8AAAAD6JUCUPwAAwIqpIbRAOU/fvEhCAcC2dBUDFOtAvp68qRqkSfq/uJiunyKq7j/puaCuBosEPjBM4LkAAOisAAAAAMAsBAAyCDQ0AA==","preamble":85,"sender":22963,"common":{"sid":{"sat":2,"code":0},"toe":{"tow":273600,"wn":2098},"ura":2.0,"fit_interval":14400,"valid":1,"health_bits":0},"tgd":-1.7695129e-8,"c_rs":83.34375,"c_rc":234.71875,"c_uc":0.000004408881,"c_us":0.000007232651,"c_ic":2.1606684e-7,"c_is":1.6018748e-7,"dn":4.696267046944317e-9,"m0":-2.3813697654950463,"ecc":0.0197759565198794,"sqrta":5153.662273406982,"omega0":-2.1573652988098755,"omegadot":-7.878185300897237e-9,"w":-1.6429787675404337,"inc":0.9582684630193148,"inc_dot":5.978820470442458e-10,"af0":-0.00042781373,"af1":-6.5938366e-12,"af2":0.0,"toc":{"tow":273600,"wn":2098},"iode":52,"iodc":52} +{"crc":48019,"length":11,"msg_type":258,"payload":"Mghk3y4QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271507300,"ns_residual":0,"flags":1} +{"crc":8328,"length":16,"msg_type":259,"payload":"EWTfLhDkBwMZAxgx/qLhEQ==","preamble":85,"sender":22963,"flags":17,"tow":271507300,"year":2020,"month":3,"day":25,"hours":3,"minutes":24,"seconds":49,"ns":299999998} +{"crc":15426,"length":34,"msg_type":522,"payload":"ZN8uEPhxMOll6kJAFWvvH1aSXsDoPHLimZwxwAECWwQPBg==","preamble":85,"sender":22963,"tow":271507300,"lat":37.83123507371414,"lon":-122.28650663738911,"height":-17.61172309197437,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":54207,"length":22,"msg_type":526,"payload":"ZN8uEPj////6////+/////EAygIPAg==","preamble":85,"sender":22963,"tow":271507300,"n":-8,"e":-6,"d":-5,"h_accuracy":241,"v_accuracy":714,"n_sats":15,"flags":2} +{"crc":4108,"length":15,"msg_type":520,"payload":"ZN8uEJsAhwBNAEgAcgAG","preamble":85,"sender":22963,"tow":271507300,"gdop":155,"pdop":135,"tdop":77,"hdop":72,"vdop":114,"flags":6} +{"crc":41325,"length":22,"msg_type":524,"payload":"ZN8uEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271507300,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":7889,"length":6,"msg_type":528,"payload":"ZN8uEP//","preamble":85,"sender":22963,"tow":271507300,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":24695,"length":237,"msg_type":97,"payload":"BQDWFQC1AgC9HwCnAAAAAAAAGQDaDADPHQDVEgDPAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwLNGQHMDAG7HwGWEgHDHQHCAAAABQHCAAAAAAAAAAAAAAAAZAPWYgOwZgOtZQPOXQPPAAAAagO3aAPLYgSqZgTNXQRFZATHZQTDaAS7AAAAagSxIwzIGgypIgygGAy9GQydDAy5Ewy4Fgy/AAAADA3RAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADA7CAAAAGQ6/Cw68GA7MAAAAHw6eIQ6ZGRTIGBTXCxTCHxStDBTPAAAAIRSqAAAA","preamble":85,"sender":22963,"states":[{"mesid":{"sat":5,"code":0},"cn0":214},{"mesid":{"sat":21,"code":0},"cn0":181},{"mesid":{"sat":2,"code":0},"cn0":189},{"mesid":{"sat":31,"code":0},"cn0":167},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":25,"code":0},"cn0":218},{"mesid":{"sat":12,"code":0},"cn0":207},{"mesid":{"sat":29,"code":0},"cn0":213},{"mesid":{"sat":18,"code":0},"cn0":207},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":131,"code":2},"cn0":205},{"mesid":{"sat":25,"code":1},"cn0":204},{"mesid":{"sat":12,"code":1},"cn0":187},{"mesid":{"sat":31,"code":1},"cn0":150},{"mesid":{"sat":18,"code":1},"cn0":195},{"mesid":{"sat":29,"code":1},"cn0":194},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":5,"code":1},"cn0":194},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":100,"code":3},"cn0":214},{"mesid":{"sat":98,"code":3},"cn0":176},{"mesid":{"sat":102,"code":3},"cn0":173},{"mesid":{"sat":101,"code":3},"cn0":206},{"mesid":{"sat":93,"code":3},"cn0":207},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":106,"code":3},"cn0":183},{"mesid":{"sat":104,"code":3},"cn0":203},{"mesid":{"sat":98,"code":4},"cn0":170},{"mesid":{"sat":102,"code":4},"cn0":205},{"mesid":{"sat":93,"code":4},"cn0":69},{"mesid":{"sat":100,"code":4},"cn0":199},{"mesid":{"sat":101,"code":4},"cn0":195},{"mesid":{"sat":104,"code":4},"cn0":187},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":106,"code":4},"cn0":177},{"mesid":{"sat":35,"code":12},"cn0":200},{"mesid":{"sat":26,"code":12},"cn0":169},{"mesid":{"sat":34,"code":12},"cn0":160},{"mesid":{"sat":24,"code":12},"cn0":189},{"mesid":{"sat":25,"code":12},"cn0":157},{"mesid":{"sat":12,"code":12},"cn0":185},{"mesid":{"sat":19,"code":12},"cn0":184},{"mesid":{"sat":22,"code":12},"cn0":191},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":12,"code":13},"cn0":209},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":12,"code":14},"cn0":194},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":25,"code":14},"cn0":191},{"mesid":{"sat":11,"code":14},"cn0":188},{"mesid":{"sat":24,"code":14},"cn0":204},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":31,"code":14},"cn0":158},{"mesid":{"sat":33,"code":14},"cn0":153},{"mesid":{"sat":25,"code":20},"cn0":200},{"mesid":{"sat":24,"code":20},"cn0":215},{"mesid":{"sat":11,"code":20},"cn0":194},{"mesid":{"sat":31,"code":20},"cn0":173},{"mesid":{"sat":12,"code":20},"cn0":207},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":33,"code":20},"cn0":170},{"mesid":{"sat":0,"code":0},"cn0":0}]} +{"crc":5837,"length":11,"msg_type":258,"payload":"MgjI3y4QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271507400,"ns_residual":0,"flags":1} +{"crc":11130,"length":16,"msg_type":259,"payload":"EcjfLhDkBwMZAxgx/oPXFw==","preamble":85,"sender":22963,"flags":17,"tow":271507400,"year":2020,"month":3,"day":25,"hours":3,"minutes":24,"seconds":49,"ns":399999998} +{"crc":13030,"length":34,"msg_type":522,"payload":"yN8uEIuHe+ll6kJAs/XEH1aSXsA91Xo0e5wxwAECWwQPBg==","preamble":85,"sender":22963,"tow":271507400,"lat":37.83123510867798,"lon":-122.28650659784653,"height":-17.611254959095493,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":18222,"length":22,"msg_type":526,"payload":"yN8uEAkAAAAJAAAACQAAAPEAygIPAg==","preamble":85,"sender":22963,"tow":271507400,"n":9,"e":9,"d":9,"h_accuracy":241,"v_accuracy":714,"n_sats":15,"flags":2} +{"crc":26109,"length":15,"msg_type":520,"payload":"yN8uEJsAhwBNAEgAcgAG","preamble":85,"sender":22963,"tow":271507400,"gdop":155,"pdop":135,"tdop":77,"hdop":72,"vdop":114,"flags":6} +{"crc":34999,"length":22,"msg_type":524,"payload":"yN8uEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271507400,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":62490,"length":6,"msg_type":528,"payload":"yN8uEP//","preamble":85,"sender":22963,"tow":271507400,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":49809,"length":9,"msg_type":117,"payload":"/wAAAAAAAAAA","preamble":85,"sender":22963,"mask":255,"l1ca_bias":0,"l1p_bias":0,"l2ca_bias":0,"l2p_bias":0} +{"crc":48467,"length":51,"msg_type":1025,"payload":"BkdMTyBMMk9GIE1FIDEgWysxMzQ4bXNdIGxvdyBDTjAgdG9vIGxvbmcsIGRyb3BwaW5n","preamble":85,"sender":22963,"level":6,"text":"GLO L2OF ME 1 [+1348ms] low CN0 too long, dropping"} +{"crc":21163,"length":11,"msg_type":258,"payload":"Mggs4C4QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271507500,"ns_residual":0,"flags":1} +{"crc":64449,"length":16,"msg_type":259,"payload":"ESzgLhDkBwMZAxgx/mTNHQ==","preamble":85,"sender":22963,"flags":17,"tow":271507500,"year":2020,"month":3,"day":25,"hours":3,"minutes":24,"seconds":49,"ns":499999998} +{"crc":9149,"length":34,"msg_type":522,"payload":"LOAuEM2jmell6kJArsmnH1aSXsCe/EsLypoxwAECWwQPBg==","preamble":85,"sender":22963,"tow":271507500,"lat":37.83123512269922,"lon":-122.28650657067803,"height":-17.60464544873377,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":55690,"length":22,"msg_type":526,"payload":"LOAuEP7////+////2/////EAygIPAg==","preamble":85,"sender":22963,"tow":271507500,"n":-2,"e":-2,"d":-37,"h_accuracy":241,"v_accuracy":714,"n_sats":15,"flags":2} +{"crc":56597,"length":15,"msg_type":520,"payload":"LOAuEJsAhwBNAEgAcgAG","preamble":85,"sender":22963,"tow":271507500,"gdop":155,"pdop":135,"tdop":77,"hdop":72,"vdop":114,"flags":6} +{"crc":28436,"length":22,"msg_type":524,"payload":"LOAuEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271507500,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":4244,"length":6,"msg_type":528,"payload":"LOAuEP//","preamble":85,"sender":22963,"tow":271507500,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":44043,"length":11,"msg_type":258,"payload":"MgiQ4C4QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271507600,"ns_residual":0,"flags":1} +{"crc":34270,"length":16,"msg_type":259,"payload":"EZDgLhDkBwMZAxgx/kXDIw==","preamble":85,"sender":22963,"flags":17,"tow":271507600,"year":2020,"month":3,"day":25,"hours":3,"minutes":24,"seconds":49,"ns":599999998} +{"crc":10728,"length":34,"msg_type":522,"payload":"kOAuEEr5pell6kJAZtdzH1aSXsCjI5tLCJsxwAECWwQPBg==","preamble":85,"sender":22963,"tow":271507600,"lat":37.83123512844266,"lon":-122.28650652229916,"height":-17.60559532678202,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":21199,"length":22,"msg_type":526,"payload":"kOAuEAAAAAARAAAAGwAAAPEAygIPAg==","preamble":85,"sender":22963,"tow":271507600,"n":0,"e":17,"d":27,"h_accuracy":241,"v_accuracy":714,"n_sats":15,"flags":2} +{"crc":58990,"length":15,"msg_type":520,"payload":"kOAuEJsAhwBNAEgAcgAG","preamble":85,"sender":22963,"tow":271507600,"gdop":155,"pdop":135,"tdop":77,"hdop":72,"vdop":114,"flags":6} +{"crc":64392,"length":22,"msg_type":524,"payload":"kOAuEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271507600,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":57563,"length":6,"msg_type":528,"payload":"kOAuEP//","preamble":85,"sender":22963,"tow":271507600,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":51393,"length":11,"msg_type":258,"payload":"Mgj04C4QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271507700,"ns_residual":0,"flags":1} +{"crc":11666,"length":16,"msg_type":259,"payload":"EfTgLhDkBwMZAxgx/ia5KQ==","preamble":85,"sender":22963,"flags":17,"tow":271507700,"year":2020,"month":3,"day":25,"hours":3,"minutes":24,"seconds":49,"ns":699999998} +{"crc":53143,"length":34,"msg_type":522,"payload":"9OAuEFuQuOll6kJAj+JLH1aSXsDaZvuUmpoxwAECWwQPBg==","preamble":85,"sender":22963,"tow":271507700,"lat":37.83123513709935,"lon":-122.28650648508686,"height":-17.603921233537086,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":15960,"length":22,"msg_type":526,"payload":"9OAuEAIAAAAAAAAAFQAAAPEAygIPAg==","preamble":85,"sender":22963,"tow":271507700,"n":2,"e":0,"d":21,"h_accuracy":241,"v_accuracy":714,"n_sats":15,"flags":2} +{"crc":51905,"length":15,"msg_type":520,"payload":"9OAuEJsAhwBNAEgAcgAG","preamble":85,"sender":22963,"tow":271507700,"gdop":155,"pdop":135,"tdop":77,"hdop":72,"vdop":114,"flags":6} +{"crc":58174,"length":22,"msg_type":524,"payload":"9OAuEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271507700,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":47458,"length":6,"msg_type":528,"payload":"9OAuEP//","preamble":85,"sender":22963,"tow":271507700,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":37406,"length":34,"msg_type":30583,"payload":"gwIT4C4QGiEByAaANgewRIHkDyBpAsgOQFQBoDWB6A8wAA==","preamble":85,"sender":22963,"sid":{"sat":131,"code":2},"tow":271507475,"message_type":26,"data":[33,1,200,6,128,54,7,176,68,129,228,15,32,105,2,200,14,64,84,1,160,53,129,232,15,48,0]} +{"crc":8780,"length":11,"msg_type":258,"payload":"MghY4S4QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271507800,"ns_residual":0,"flags":1} +{"crc":23527,"length":16,"msg_type":259,"payload":"EVjhLhDkBwMZAxgx/gevLw==","preamble":85,"sender":22963,"flags":17,"tow":271507800,"year":2020,"month":3,"day":25,"hours":3,"minutes":24,"seconds":49,"ns":799999998} +{"crc":7717,"length":34,"msg_type":522,"payload":"WOEuEP3xwOll6kJAIUwjH1aSXsCF+xgPtpgxwAECWwQPBg==","preamble":85,"sender":22963,"tow":271507800,"lat":37.83123514100223,"lon":-122.2865064472867,"height":-17.596527999495738,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":19205,"length":22,"msg_type":526,"payload":"WOEuEPv////9////9P////EAygIPAg==","preamble":85,"sender":22963,"tow":271507800,"n":-5,"e":-3,"d":-12,"h_accuracy":241,"v_accuracy":714,"n_sats":15,"flags":2} +{"crc":50257,"length":15,"msg_type":520,"payload":"WOEuEJsAhwBNAEgAcgAG","preamble":85,"sender":22963,"tow":271507800,"gdop":155,"pdop":135,"tdop":77,"hdop":72,"vdop":114,"flags":6} +{"crc":7954,"length":22,"msg_type":524,"payload":"WOEuEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271507800,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":63992,"length":6,"msg_type":528,"payload":"WOEuEP//","preamble":85,"sender":22963,"tow":271507800,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":36631,"length":237,"msg_type":97,"payload":"BQDWFQC1AgC+HwCnAAAAAAAAGQDbDADPHQDWEgDPAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwLOGQHMDAG6HwGXEgHDHQHCAAAABQHCAAAAAAAAAAAAAAAACwPWCQOwFAOtBQPOCgPPAAAABAO3FQPLCQSqFATNAAAACwTHBQTDAAS8AAAABASxIwzIGgyoIgyfGAy9GQydDAy5Ewy4Fgy/AAAADA3RAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADA7CAAAAGQ6/Cw68GA7MAAAAHw6eIQ6aGRTJGBTXCxTCHxStDBTPAAAAIRSpAAAA","preamble":85,"sender":22963,"states":[{"mesid":{"sat":5,"code":0},"cn0":214},{"mesid":{"sat":21,"code":0},"cn0":181},{"mesid":{"sat":2,"code":0},"cn0":190},{"mesid":{"sat":31,"code":0},"cn0":167},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":25,"code":0},"cn0":219},{"mesid":{"sat":12,"code":0},"cn0":207},{"mesid":{"sat":29,"code":0},"cn0":214},{"mesid":{"sat":18,"code":0},"cn0":207},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":131,"code":2},"cn0":206},{"mesid":{"sat":25,"code":1},"cn0":204},{"mesid":{"sat":12,"code":1},"cn0":186},{"mesid":{"sat":31,"code":1},"cn0":151},{"mesid":{"sat":18,"code":1},"cn0":195},{"mesid":{"sat":29,"code":1},"cn0":194},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":5,"code":1},"cn0":194},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":11,"code":3},"cn0":214},{"mesid":{"sat":9,"code":3},"cn0":176},{"mesid":{"sat":20,"code":3},"cn0":173},{"mesid":{"sat":5,"code":3},"cn0":206},{"mesid":{"sat":10,"code":3},"cn0":207},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":4,"code":3},"cn0":183},{"mesid":{"sat":21,"code":3},"cn0":203},{"mesid":{"sat":9,"code":4},"cn0":170},{"mesid":{"sat":20,"code":4},"cn0":205},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":11,"code":4},"cn0":199},{"mesid":{"sat":5,"code":4},"cn0":195},{"mesid":{"sat":0,"code":4},"cn0":188},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":4,"code":4},"cn0":177},{"mesid":{"sat":35,"code":12},"cn0":200},{"mesid":{"sat":26,"code":12},"cn0":168},{"mesid":{"sat":34,"code":12},"cn0":159},{"mesid":{"sat":24,"code":12},"cn0":189},{"mesid":{"sat":25,"code":12},"cn0":157},{"mesid":{"sat":12,"code":12},"cn0":185},{"mesid":{"sat":19,"code":12},"cn0":184},{"mesid":{"sat":22,"code":12},"cn0":191},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":12,"code":13},"cn0":209},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":12,"code":14},"cn0":194},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":25,"code":14},"cn0":191},{"mesid":{"sat":11,"code":14},"cn0":188},{"mesid":{"sat":24,"code":14},"cn0":204},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":31,"code":14},"cn0":158},{"mesid":{"sat":33,"code":14},"cn0":154},{"mesid":{"sat":25,"code":20},"cn0":201},{"mesid":{"sat":24,"code":20},"cn0":215},{"mesid":{"sat":11,"code":20},"cn0":194},{"mesid":{"sat":31,"code":20},"cn0":173},{"mesid":{"sat":12,"code":20},"cn0":207},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":33,"code":20},"cn0":169},{"mesid":{"sat":0,"code":0},"cn0":0}]} +{"crc":41336,"length":136,"msg_type":151,"payload":"AgAaHgUALDUMAFEtFQB9GRkAbUYaAKEBHQChNx8AlQ4EAxYWBQMyIQYDTggJA18OCgNxKQsDmCUMA6oDEwMiBxQDCzEVA5UlDAyUKRMMIyAUDA8CFgxDIxgMgiMZDJ0OGgxnFR0MLAAiDI4RIwwiLQsOizIMDg88GA5sNhkOlykfDlURIQ4fDw==","preamble":85,"sender":22963,"azel":[{"sid":{"sat":2,"code":0},"az":26,"el":30},{"sid":{"sat":5,"code":0},"az":44,"el":53},{"sid":{"sat":12,"code":0},"az":81,"el":45},{"sid":{"sat":21,"code":0},"az":125,"el":25},{"sid":{"sat":25,"code":0},"az":109,"el":70},{"sid":{"sat":26,"code":0},"az":161,"el":1},{"sid":{"sat":29,"code":0},"az":161,"el":55},{"sid":{"sat":31,"code":0},"az":149,"el":14},{"sid":{"sat":4,"code":3},"az":22,"el":22},{"sid":{"sat":5,"code":3},"az":50,"el":33},{"sid":{"sat":6,"code":3},"az":78,"el":8},{"sid":{"sat":9,"code":3},"az":95,"el":14},{"sid":{"sat":10,"code":3},"az":113,"el":41},{"sid":{"sat":11,"code":3},"az":152,"el":37},{"sid":{"sat":12,"code":3},"az":170,"el":3},{"sid":{"sat":19,"code":3},"az":34,"el":7},{"sid":{"sat":20,"code":3},"az":11,"el":49},{"sid":{"sat":21,"code":3},"az":149,"el":37},{"sid":{"sat":12,"code":12},"az":148,"el":41},{"sid":{"sat":19,"code":12},"az":35,"el":32},{"sid":{"sat":20,"code":12},"az":15,"el":2},{"sid":{"sat":22,"code":12},"az":67,"el":35},{"sid":{"sat":24,"code":12},"az":130,"el":35},{"sid":{"sat":25,"code":12},"az":157,"el":14},{"sid":{"sat":26,"code":12},"az":103,"el":21},{"sid":{"sat":29,"code":12},"az":44,"el":0},{"sid":{"sat":34,"code":12},"az":142,"el":17},{"sid":{"sat":35,"code":12},"az":34,"el":45},{"sid":{"sat":11,"code":14},"az":139,"el":50},{"sid":{"sat":12,"code":14},"az":15,"el":60},{"sid":{"sat":24,"code":14},"az":108,"el":54},{"sid":{"sat":25,"code":14},"az":151,"el":41},{"sid":{"sat":31,"code":14},"az":85,"el":17},{"sid":{"sat":33,"code":14},"az":31,"el":15}]} +{"crc":63796,"length":11,"msg_type":258,"payload":"Mgi84S4QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271507900,"ns_residual":0,"flags":1} +{"crc":49371,"length":16,"msg_type":259,"payload":"EbzhLhDkBwMZAxgx/uikNQ==","preamble":85,"sender":22963,"flags":17,"tow":271507900,"year":2020,"month":3,"day":25,"hours":3,"minutes":24,"seconds":49,"ns":899999998} +{"crc":48420,"length":34,"msg_type":522,"payload":"vOEuENN67+ll6kJAVi/3HlaSXsDkIr5SL5cxwAECWwQPBg==","preamble":85,"sender":22963,"tow":271507900,"lat":37.831235162671554,"lon":-122.28650640620376,"height":-17.590565844936364,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":48338,"length":22,"msg_type":526,"payload":"vOEuEBYAAAAAAAAADQAAAPEAygIPAg==","preamble":85,"sender":22963,"tow":271507900,"n":22,"e":0,"d":13,"h_accuracy":241,"v_accuracy":714,"n_sats":15,"flags":2} +{"crc":48364,"length":15,"msg_type":520,"payload":"vOEuEJsAhwBNAEgAcgAG","preamble":85,"sender":22963,"tow":271507900,"gdop":155,"pdop":135,"tdop":77,"hdop":72,"vdop":114,"flags":6} +{"crc":48433,"length":22,"msg_type":524,"payload":"vOEuEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271507900,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":29793,"length":6,"msg_type":528,"payload":"vOEuEP//","preamble":85,"sender":22963,"tow":271507900,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":44064,"length":249,"msg_type":74,"payload":"IOIuEAAAAAAyCEBOz7M+iw6XBlVM/73WDw8FAJoJGUVgIUMHIn0IhbUPDxUAfwzwRZS6WQcGUfZjvg8PAgDvKgJJj1msB1p1/peoDw8fAE3rJD0NIm0Gc5z79tsPDxkA0CGyQCixzAZ1avTizw8PDABnD9I+bTyaBsTNBUzWDw8dAIbrJD0R7AEFrZT808wPDxkBiiGyQEViTAXP+vYxug8PDAGXKgJJian6BV3P/u6WDw8fAfkO0j4sESUFIYUE+MIPDx0BCs+zPhWXIgV2c/+Awg8PBQEnhf0+9WW7BqmTBE7WDw8LA+ZR0US3glkHSMruL7APDwkD","preamble":85,"sender":22963,"header":{"t":{"tow":271508000,"ns_residual":0,"wn":2098},"n_obs":64},"obs":[{"P":1051971406,"L":{"i":110562955,"f":85},"D":{"i":-180,"f":189},"cn0":214,"lock":15,"flags":15,"sid":{"sat":5,"code":0}},{"P":1159268762,"L":{"i":121839968,"f":34},"D":{"i":2173,"f":133},"cn0":181,"lock":15,"flags":15,"sid":{"sat":21,"code":0}},{"P":1173359743,"L":{"i":123320980,"f":6},"D":{"i":-2479,"f":99},"cn0":190,"lock":15,"flags":15,"sid":{"sat":2,"code":0}},{"P":1224878831,"L":{"i":128735631,"f":90},"D":{"i":-395,"f":151},"cn0":168,"lock":15,"flags":15,"sid":{"sat":31,"code":0}},{"P":1025829709,"L":{"i":107815437,"f":115},"D":{"i":-1124,"f":246},"cn0":219,"lock":15,"flags":15,"sid":{"sat":25,"code":0}},{"P":1085415888,"L":{"i":114077992,"f":117},"D":{"i":-2966,"f":226},"cn0":207,"lock":15,"flags":15,"sid":{"sat":12,"code":0}},{"P":1053953895,"L":{"i":110771309,"f":196},"D":{"i":1485,"f":76},"cn0":214,"lock":15,"flags":15,"sid":{"sat":29,"code":0}},{"P":1025829766,"L":{"i":84012049,"f":173},"D":{"i":-876,"f":211},"cn0":204,"lock":15,"flags":15,"sid":{"sat":25,"code":1}},{"P":1085415818,"L":{"i":88891973,"f":207},"D":{"i":-2310,"f":49},"cn0":186,"lock":15,"flags":15,"sid":{"sat":12,"code":1}},{"P":1224878743,"L":{"i":100313481,"f":93},"D":{"i":-305,"f":238},"cn0":150,"lock":15,"flags":15,"sid":{"sat":31,"code":1}},{"P":1053953785,"L":{"i":86315308,"f":33},"D":{"i":1157,"f":248},"cn0":194,"lock":15,"flags":15,"sid":{"sat":29,"code":1}},{"P":1051971338,"L":{"i":86152981,"f":118},"D":{"i":-141,"f":128},"cn0":194,"lock":15,"flags":15,"sid":{"sat":5,"code":1}},{"P":1056802087,"L":{"i":112944629,"f":169},"D":{"i":1171,"f":78},"cn0":214,"lock":15,"flags":15,"sid":{"sat":11,"code":3}},{"P":1154568678,"L":{"i":123306679,"f":72},"D":{"i":-4406,"f":47},"cn0":176,"lock":15,"flags":15,"sid":{"sat":9,"code":3}}]} +{"crc":11311,"length":249,"msg_type":74,"payload":"IOIuEAAAAAAyCEEoRyw99tmKBvVH+x+tDw8UA705C0CR1tgGDZsIW84PDwUDOJpiPoKlpgawH/Sczw8PCgNSIwZDFJ8tB7jh+hW3Dw8EA+kZLD/nzcIG/1cGQ8sPDxUDdlLRRLRltwWjm/L7qg8PCQSQSCw9qqkWBetT/C7NDw8UBByG/T7JazwFZ5ADescPDwsEBzsLQJFRUwUOsQZtww8PBQQGJAZDzUKVBXEF/EixDw8EBFbYk0X8BD8HhiT6WcgPDyMMyqjwSXNUswfXPvTeqA8PGgxQlBhMZc/sBzXJCEefDw8iDF5Kn0eJiHUHRuv6vr0PDxgM","preamble":85,"sender":22963,"header":{"t":{"tow":271508000,"ns_residual":0,"wn":2098},"n_obs":65},"obs":[{"P":1026311976,"L":{"i":109763062,"f":245},"D":{"i":-1209,"f":31},"cn0":173,"lock":15,"flags":15,"sid":{"sat":20,"code":3}},{"P":1074477501,"L":{"i":114874001,"f":13},"D":{"i":2203,"f":91},"cn0":206,"lock":15,"flags":15,"sid":{"sat":5,"code":3}},{"P":1046649400,"L":{"i":111584642,"f":176},"D":{"i":-3041,"f":156},"cn0":207,"lock":15,"flags":15,"sid":{"sat":10,"code":3}},{"P":1124475730,"L":{"i":120430356,"f":184},"D":{"i":-1311,"f":21},"cn0":183,"lock":15,"flags":15,"sid":{"sat":4,"code":3}},{"P":1059854825,"L":{"i":113429991,"f":255},"D":{"i":1623,"f":67},"cn0":203,"lock":15,"flags":15,"sid":{"sat":21,"code":3}},{"P":1154568822,"L":{"i":95905204,"f":163},"D":{"i":-3429,"f":251},"cn0":170,"lock":15,"flags":15,"sid":{"sat":9,"code":4}},{"P":1026312336,"L":{"i":85371306,"f":235},"D":{"i":-941,"f":46},"cn0":205,"lock":15,"flags":15,"sid":{"sat":20,"code":4}},{"P":1056802332,"L":{"i":87845833,"f":103},"D":{"i":912,"f":122},"cn0":199,"lock":15,"flags":15,"sid":{"sat":11,"code":4}},{"P":1074477831,"L":{"i":89346449,"f":14},"D":{"i":1713,"f":109},"cn0":195,"lock":15,"flags":15,"sid":{"sat":5,"code":4}},{"P":1124475910,"L":{"i":93668045,"f":113},"D":{"i":-1019,"f":72},"cn0":177,"lock":15,"flags":15,"sid":{"sat":4,"code":4}},{"P":1167317078,"L":{"i":121570556,"f":134},"D":{"i":-1500,"f":89},"cn0":200,"lock":15,"flags":15,"sid":{"sat":35,"code":12}},{"P":1240508618,"L":{"i":129193075,"f":215},"D":{"i":-3010,"f":222},"cn0":168,"lock":15,"flags":15,"sid":{"sat":26,"code":12}},{"P":1276679248,"L":{"i":132960101,"f":53},"D":{"i":2249,"f":71},"cn0":159,"lock":15,"flags":15,"sid":{"sat":34,"code":12}},{"P":1201621598,"L":{"i":125143177,"f":70},"D":{"i":-1301,"f":190},"cn0":189,"lock":15,"flags":15,"sid":{"sat":24,"code":12}}]} +{"crc":11695,"length":249,"msg_type":74,"payload":"IOIuEAAAAAAyCEKmpBRNnw8HCCEvBYGdDw8ZDDJhUEUr/jcH2ksGCrkPDwwMg/tCR4Xrawf14/4PuA8PEwyWMWFH+xBvBylVCSG/Dw8WDOVgUEVF/JQFMt4EWtEPDwwNOB0GQpps8AYO/Ps9wg8PDA78AiJLJILlB+xBBHK/Dw8ZDiQbIkcn5XkHpxcE2LwPDwsOVRQmQ5KwDgeyMfkZzA8PGA688URRSJ2KCLeb86GeDw8fDgp89FFWEJ0INKP3+JkPDyEO1AIiS6zyDAb7QwPPyQ8PGRRsFiZD/1hoBcTJ+jHXDw8YFGEaIkehfboFJSIDuMIPDwsU","preamble":85,"sender":22963,"header":{"t":{"tow":271508000,"ns_residual":0,"wn":2098},"n_obs":66},"obs":[{"P":1293198502,"L":{"i":134680479,"f":33},"D":{"i":1327,"f":129},"cn0":157,"lock":15,"flags":15,"sid":{"sat":25,"code":12}},{"P":1162895666,"L":{"i":121110059,"f":218},"D":{"i":1611,"f":10},"cn0":185,"lock":15,"flags":15,"sid":{"sat":12,"code":12}},{"P":1195572099,"L":{"i":124513157,"f":245},"D":{"i":-285,"f":15},"cn0":184,"lock":15,"flags":15,"sid":{"sat":19,"code":12}},{"P":1197552022,"L":{"i":124719355,"f":41},"D":{"i":2389,"f":33},"cn0":191,"lock":15,"flags":15,"sid":{"sat":22,"code":12}},{"P":1162895589,"L":{"i":93649989,"f":50},"D":{"i":1246,"f":90},"cn0":209,"lock":15,"flags":15,"sid":{"sat":12,"code":13}},{"P":1107696952,"L":{"i":116419738,"f":14},"D":{"i":-1028,"f":61},"cn0":194,"lock":15,"flags":15,"sid":{"sat":12,"code":14}},{"P":1260520188,"L":{"i":132481572,"f":236},"D":{"i":1089,"f":114},"cn0":191,"lock":15,"flags":15,"sid":{"sat":25,"code":14}},{"P":1193417508,"L":{"i":125429031,"f":167},"D":{"i":1047,"f":216},"cn0":188,"lock":15,"flags":15,"sid":{"sat":11,"code":14}},{"P":1126569045,"L":{"i":118403218,"f":178},"D":{"i":-1743,"f":25},"cn0":204,"lock":15,"flags":15,"sid":{"sat":24,"code":14}},{"P":1363472828,"L":{"i":143301960,"f":183},"D":{"i":-3173,"f":161},"cn0":158,"lock":15,"flags":15,"sid":{"sat":31,"code":14}},{"P":1374977034,"L":{"i":144511062,"f":52},"D":{"i":-2141,"f":248},"cn0":153,"lock":15,"flags":15,"sid":{"sat":33,"code":14}},{"P":1260520148,"L":{"i":101511852,"f":251},"D":{"i":835,"f":207},"cn0":201,"lock":15,"flags":15,"sid":{"sat":25,"code":20}},{"P":1126569580,"L":{"i":90724607,"f":196},"D":{"i":-1335,"f":49},"cn0":215,"lock":15,"flags":15,"sid":{"sat":24,"code":20}},{"P":1193417313,"L":{"i":96107937,"f":37},"D":{"i":802,"f":184},"cn0":194,"lock":15,"flags":15,"sid":{"sat":11,"code":20}}]} +{"crc":45399,"length":62,"msg_type":74,"payload":"IOIuEAAAAAAyCEPg8URRWnWLBpaB9kOtDw8fFJgcBkIcKFEF9u38O88PDwwU4Hv0UW2YmQb1lfnbqg8PIRQ=","preamble":85,"sender":22963,"header":{"t":{"tow":271508000,"ns_residual":0,"wn":2098},"n_obs":67},"obs":[{"P":1363472864,"L":{"i":109802842,"f":150},"D":{"i":-2431,"f":67},"cn0":173,"lock":15,"flags":15,"sid":{"sat":31,"code":20}},{"P":1107696792,"L":{"i":89204764,"f":246},"D":{"i":-787,"f":59},"cn0":207,"lock":15,"flags":15,"sid":{"sat":12,"code":20}},{"P":1374976992,"L":{"i":110729325,"f":245},"D":{"i":-1643,"f":219},"cn0":170,"lock":15,"flags":15,"sid":{"sat":33,"code":20}}]} +{"crc":49809,"length":9,"msg_type":117,"payload":"/wAAAAAAAAAA","preamble":85,"sender":22963,"mask":255,"l1ca_bias":0,"l1p_bias":0,"l2ca_bias":0,"l2p_bias":0} +{"crc":26653,"length":11,"msg_type":258,"payload":"Mggg4i4QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271508000,"ns_residual":0,"flags":1} +{"crc":40373,"length":16,"msg_type":259,"payload":"ESDiLhDkBwMZAxgx/smaOw==","preamble":85,"sender":22963,"flags":17,"tow":271508000,"year":2020,"month":3,"day":25,"hours":3,"minutes":24,"seconds":49,"ns":999999998} +{"crc":33654,"length":34,"msg_type":522,"payload":"IOIuEDfB6+ll6kJAWnPMHlaSXsCAAbIOOZUxwAECWwQPBg==","preamble":85,"sender":22963,"tow":271508000,"lat":37.83123516093695,"lon":-122.28650636640432,"height":-17.582901876886808,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":52076,"length":22,"msg_type":526,"payload":"IOIuEPz////8////+v////EAygIPAg==","preamble":85,"sender":22963,"tow":271508000,"n":-4,"e":-4,"d":-6,"h_accuracy":241,"v_accuracy":714,"n_sats":15,"flags":2} +{"crc":38688,"length":15,"msg_type":520,"payload":"IOIuEJsAhwBNAEgAcgAG","preamble":85,"sender":22963,"tow":271508000,"gdop":155,"pdop":135,"tdop":77,"hdop":72,"vdop":114,"flags":6} +{"crc":11579,"length":22,"msg_type":524,"payload":"IOIuEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271508000,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":24564,"length":6,"msg_type":528,"payload":"IOIuEP//","preamble":85,"sender":22963,"tow":271508000,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":40942,"length":4,"msg_type":65535,"payload":"AAUCgA==","preamble":85,"sender":22963,"flags":2147616000} +{"crc":2168,"length":24,"msg_type":72,"payload":"UO0a3iqORMHK1UJhIkRQwc9nFIPvrk1B","preamble":85,"sender":22963,"x":-2694229.735196747,"y":-4264073.519704292,"z":3890655.0240602265} +{"crc":47991,"length":26,"msg_type":23,"payload":"bWFpbgAAAAAAAAAAAAAAAAAAAAAAAAx1AAA=","preamble":85,"sender":22963,"name":"main\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":0,"stack_free":29964} +{"crc":24639,"length":26,"msg_type":23,"payload":"aWRsZQAAAAAAAAAAAAAAAAAAAAA8AHwAAAA=","preamble":85,"sender":22963,"name":"idle\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":60,"stack_free":124} +{"crc":26340,"length":26,"msg_type":23,"payload":"cnBtc2cAAAAAAAAAAAAAAAAAAAABANQNAAA=","preamble":85,"sender":22963,"name":"rpmsg\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":1,"stack_free":3540} +{"crc":51784,"length":26,"msg_type":23,"payload":"U0JQAAAAAAAAAAAAAAAAAAAAAAAAAPz/AAA=","preamble":85,"sender":22963,"name":"SBP\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":0,"stack_free":65532} +{"crc":33651,"length":26,"msg_type":23,"payload":"TkFQAAAAAAAAAAAAAAAAAAAAAAAAAASAAAA=","preamble":85,"sender":22963,"name":"NAP\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":0,"stack_free":32772} +{"crc":29877,"length":26,"msg_type":23,"payload":"bWFuYWdlIFBWAAAAAAAAAAAAAAAAACQEAAA=","preamble":85,"sender":22963,"name":"manage PV\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":0,"stack_free":1060} +{"crc":14252,"length":26,"msg_type":23,"payload":"SU1VAAAAAAAAAAAAAAAAAAAAAAAAAPQHAAA=","preamble":85,"sender":22963,"name":"IMU\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":0,"stack_free":2036} +{"crc":18976,"length":26,"msg_type":23,"payload":"SU1VIGF1eAAAAAAAAAAAAAAAAAAAAEwIAAA=","preamble":85,"sender":22963,"name":"IMU aux\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":0,"stack_free":2124} +{"crc":26120,"length":26,"msg_type":23,"payload":"bmRiAAAAAAAAAAAAAAAAAAAAAAAAAFAMAAA=","preamble":85,"sender":22963,"name":"ndb\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":0,"stack_free":3152} +{"crc":44290,"length":26,"msg_type":23,"payload":"TkFQIFRyYWNraW5nAAAAAAAAAAAqAdR3AAA=","preamble":85,"sender":22963,"name":"NAP Tracking\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":298,"stack_free":30676} +{"crc":6098,"length":26,"msg_type":23,"payload":"ZGVjb2RlAAAAAAAAAAAAAAAAAAAKANQGAAA=","preamble":85,"sender":22963,"name":"decode\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":10,"stack_free":1748} +{"crc":11131,"length":26,"msg_type":23,"payload":"bWFuYWdlIGFjcQAAAAAAAAAAAADTAaR3AAA=","preamble":85,"sender":22963,"name":"manage acq\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":467,"stack_free":30628} +{"crc":58531,"length":26,"msg_type":23,"payload":"c3lzdGVtIG1vbml0b3IAAAAAAAAAACwGAAA=","preamble":85,"sender":22963,"name":"system monitor\u0000\u0000\u0000\u0000\u0000\u0000","cpu":0,"stack_free":1580} +{"crc":44438,"length":26,"msg_type":23,"payload":"V2F0Y2hkb2cAAAAAAAAAAAAAAAAAAOQDAAA=","preamble":85,"sender":22963,"name":"Watchdog\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":0,"stack_free":996} +{"crc":61599,"length":26,"msg_type":23,"payload":"c3RhcmxpbmcAAAAAAAAAAAAAAACWAPz/AAA=","preamble":85,"sender":22963,"name":"starling\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":150,"stack_free":65532} +{"crc":57561,"length":26,"msg_type":23,"payload":"bWVfY2FsY19wdnQAAAAAAAAAAAAJAIwjAAA=","preamble":85,"sender":22963,"name":"me_calc_pvt\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":9,"stack_free":9100} +{"crc":38576,"length":26,"msg_type":23,"payload":"UFBTAAAAAAAAAAAAAAAAAAAAAAAAAEgHAAA=","preamble":85,"sender":22963,"name":"PPS\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":0,"stack_free":1864} +{"crc":50933,"length":26,"msg_type":23,"payload":"c3BlY3RydW0gYW5hbHl6ZXIAAAAAANQPAAA=","preamble":85,"sender":22963,"name":"spectrum analyzer\u0000\u0000\u0000","cpu":0,"stack_free":4052} +{"crc":60604,"length":11,"msg_type":258,"payload":"MgiE4i4QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271508100,"ns_residual":0,"flags":1} +{"crc":62733,"length":16,"msg_type":259,"payload":"EYTiLhDkBwMZAxgy/uD1BQ==","preamble":85,"sender":22963,"flags":17,"tow":271508100,"year":2020,"month":3,"day":25,"hours":3,"minutes":24,"seconds":50,"ns":99999998} +{"crc":49497,"length":34,"msg_type":522,"payload":"hOIuEB13vull6kJAcJGGHlaSXsC4V3QPZZMxwAECWwQPBg==","preamble":85,"sender":22963,"tow":271508100,"lat":37.8312351398474,"lon":-122.2865063013212,"height":-17.57576080885312,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":48204,"length":22,"msg_type":526,"payload":"hOIuEO3///8TAAAACwAAAPEAygIPAg==","preamble":85,"sender":22963,"tow":271508100,"n":-19,"e":19,"d":11,"h_accuracy":241,"v_accuracy":714,"n_sats":15,"flags":2} +{"crc":50580,"length":15,"msg_type":520,"payload":"hOIuEJsAhwBNAEgAcgAG","preamble":85,"sender":22963,"tow":271508100,"gdop":155,"pdop":135,"tdop":77,"hdop":72,"vdop":114,"flags":6} +{"crc":23106,"length":22,"msg_type":524,"payload":"hOIuEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271508100,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":47229,"length":6,"msg_type":528,"payload":"hOIuEP//","preamble":85,"sender":22963,"tow":271508100,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":41353,"length":11,"msg_type":258,"payload":"Mgjo4i4QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271508200,"ns_residual":0,"flags":1} +{"crc":36515,"length":16,"msg_type":259,"payload":"EejiLhDkBwMZAxgy/sHrCw==","preamble":85,"sender":22963,"flags":17,"tow":271508200,"year":2020,"month":3,"day":25,"hours":3,"minutes":24,"seconds":50,"ns":199999998} +{"crc":62222,"length":34,"msg_type":522,"payload":"6OIuEOvfxOll6kJALrBPHlaSXsApyY05VpExwAECWwQPBg==","preamble":85,"sender":22963,"tow":271508200,"lat":37.83123514283201,"lon":-122.2865062502103,"height":-17.567721936336202,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":2477,"length":22,"msg_type":526,"payload":"6OIuEA0AAAD9////7/////EAygIPAg==","preamble":85,"sender":22963,"tow":271508200,"n":13,"e":-3,"d":-17,"h_accuracy":241,"v_accuracy":714,"n_sats":15,"flags":2} +{"crc":52862,"length":15,"msg_type":520,"payload":"6OIuEJsAhwBNAEgAcgAG","preamble":85,"sender":22963,"tow":271508200,"gdop":155,"pdop":135,"tdop":77,"hdop":72,"vdop":114,"flags":6} +{"crc":7255,"length":22,"msg_type":524,"payload":"6OIuEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271508200,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":60550,"length":6,"msg_type":528,"payload":"6OIuEP//","preamble":85,"sender":22963,"tow":271508200,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":25339,"length":11,"msg_type":258,"payload":"MghM4y4QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271508300,"ns_residual":0,"flags":1} +{"crc":14845,"length":16,"msg_type":259,"payload":"EUzjLhDkBwMZAxgy/qLhEQ==","preamble":85,"sender":22963,"flags":17,"tow":271508300,"year":2020,"month":3,"day":25,"hours":3,"minutes":24,"seconds":50,"ns":299999998} +{"crc":33663,"length":34,"msg_type":522,"payload":"TOMuEJaI2Oll6kJAO9ESHlaSXsDQwgzR6Y8xwAECWwQPBg==","preamble":85,"sender":22963,"tow":271508300,"lat":37.83123515198638,"lon":-122.28650619351986,"height":-17.56216150819347,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":28727,"length":22,"msg_type":526,"payload":"TOMuEAoAAAADAAAAFAAAAPEAygIPAg==","preamble":85,"sender":22963,"tow":271508300,"n":10,"e":3,"d":20,"h_accuracy":241,"v_accuracy":714,"n_sats":15,"flags":2} +{"crc":59307,"length":15,"msg_type":520,"payload":"TOMuEJsAhwBNAEgAcgAG","preamble":85,"sender":22963,"tow":271508300,"gdop":155,"pdop":135,"tdop":77,"hdop":72,"vdop":114,"flags":6} +{"crc":48856,"length":22,"msg_type":524,"payload":"TOMuEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271508300,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":41310,"length":6,"msg_type":528,"payload":"TOMuEP//","preamble":85,"sender":22963,"tow":271508300,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":46534,"length":237,"msg_type":97,"payload":"BQDWFQC1AgC+HwCoAAAAAAAAGQDaDADOHQDWEgDPAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwLOGQHMDAG6HwGWEgHDHQHCAAAABQHBAAAAAAAAAAAAAAAAZAPWYgOwZgOtZQPOXQPPAAAAagO3aAPKYgSqZgTNAAAAZATHZQTDaAS7AAAAagSwIwzIGgypIgygGAy9GQydDAy5Ewy4Fgy/AAAADA3RAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADA7DAAAAGQ7ACw68GA7MAAAAHw6fIQ6aGRTJGBTXCxTCHxStDBTPAAAAIRSpAAAA","preamble":85,"sender":22963,"states":[{"mesid":{"sat":5,"code":0},"cn0":214},{"mesid":{"sat":21,"code":0},"cn0":181},{"mesid":{"sat":2,"code":0},"cn0":190},{"mesid":{"sat":31,"code":0},"cn0":168},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":25,"code":0},"cn0":218},{"mesid":{"sat":12,"code":0},"cn0":206},{"mesid":{"sat":29,"code":0},"cn0":214},{"mesid":{"sat":18,"code":0},"cn0":207},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":131,"code":2},"cn0":206},{"mesid":{"sat":25,"code":1},"cn0":204},{"mesid":{"sat":12,"code":1},"cn0":186},{"mesid":{"sat":31,"code":1},"cn0":150},{"mesid":{"sat":18,"code":1},"cn0":195},{"mesid":{"sat":29,"code":1},"cn0":194},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":5,"code":1},"cn0":193},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":100,"code":3},"cn0":214},{"mesid":{"sat":98,"code":3},"cn0":176},{"mesid":{"sat":102,"code":3},"cn0":173},{"mesid":{"sat":101,"code":3},"cn0":206},{"mesid":{"sat":93,"code":3},"cn0":207},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":106,"code":3},"cn0":183},{"mesid":{"sat":104,"code":3},"cn0":202},{"mesid":{"sat":98,"code":4},"cn0":170},{"mesid":{"sat":102,"code":4},"cn0":205},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":100,"code":4},"cn0":199},{"mesid":{"sat":101,"code":4},"cn0":195},{"mesid":{"sat":104,"code":4},"cn0":187},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":106,"code":4},"cn0":176},{"mesid":{"sat":35,"code":12},"cn0":200},{"mesid":{"sat":26,"code":12},"cn0":169},{"mesid":{"sat":34,"code":12},"cn0":160},{"mesid":{"sat":24,"code":12},"cn0":189},{"mesid":{"sat":25,"code":12},"cn0":157},{"mesid":{"sat":12,"code":12},"cn0":185},{"mesid":{"sat":19,"code":12},"cn0":184},{"mesid":{"sat":22,"code":12},"cn0":191},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":12,"code":13},"cn0":209},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":12,"code":14},"cn0":195},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":25,"code":14},"cn0":192},{"mesid":{"sat":11,"code":14},"cn0":188},{"mesid":{"sat":24,"code":14},"cn0":204},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":31,"code":14},"cn0":159},{"mesid":{"sat":33,"code":14},"cn0":154},{"mesid":{"sat":25,"code":20},"cn0":201},{"mesid":{"sat":24,"code":20},"cn0":215},{"mesid":{"sat":11,"code":20},"cn0":194},{"mesid":{"sat":31,"code":20},"cn0":173},{"mesid":{"sat":12,"code":20},"cn0":207},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":33,"code":20},"cn0":169},{"mesid":{"sat":0,"code":0},"cn0":0}]} +{"crc":50050,"length":11,"msg_type":258,"payload":"Mgiw4y4QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271508400,"ns_residual":0,"flags":1} +{"crc":22156,"length":16,"msg_type":259,"payload":"EbDjLhDkBwMZAxgy/oPXFw==","preamble":85,"sender":22963,"flags":17,"tow":271508400,"year":2020,"month":3,"day":25,"hours":3,"minutes":24,"seconds":50,"ns":399999998} +{"crc":55776,"length":34,"msg_type":522,"payload":"sOMuEOEi1ull6kJAesPbHVaSXsDX7iagEo4xwAECWwQPBg==","preamble":85,"sender":22963,"tow":271508400,"lat":37.83123515087005,"lon":-122.28650614224708,"height":-17.554971704011077,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":1875,"length":22,"msg_type":526,"payload":"sOMuEAIAAAAFAAAA9v////EAygIPAg==","preamble":85,"sender":22963,"tow":271508400,"n":2,"e":5,"d":-10,"h_accuracy":241,"v_accuracy":714,"n_sats":15,"flags":2} +{"crc":63193,"length":15,"msg_type":520,"payload":"sOMuEJsAhwBNAEgAcgAG","preamble":85,"sender":22963,"tow":271508400,"gdop":155,"pdop":135,"tdop":77,"hdop":72,"vdop":114,"flags":6} +{"crc":65310,"length":22,"msg_type":524,"payload":"sOMuEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271508400,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":15105,"length":6,"msg_type":528,"payload":"sOMuEP//","preamble":85,"sender":22963,"tow":271508400,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":49809,"length":9,"msg_type":117,"payload":"/wAAAAAAAAAA","preamble":85,"sender":22963,"mask":255,"l1ca_bias":0,"l1p_bias":0,"l2ca_bias":0,"l2p_bias":0} +{"crc":32827,"length":11,"msg_type":258,"payload":"MggU5C4QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271508500,"ns_residual":0,"flags":1} +{"crc":7277,"length":16,"msg_type":259,"payload":"ERTkLhDkBwMZAxgy/mTNHQ==","preamble":85,"sender":22963,"flags":17,"tow":271508500,"year":2020,"month":3,"day":25,"hours":3,"minutes":24,"seconds":50,"ns":499999998} +{"crc":25557,"length":34,"msg_type":522,"payload":"FOQuEASh4+ll6kJA8dG5HVaSXsCxE0fcx40xwAECWwQPBg==","preamble":85,"sender":22963,"tow":271508500,"lat":37.83123515715309,"lon":-122.28650611063473,"height":-17.553830878594173,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":16440,"length":22,"msg_type":526,"payload":"FOQuEAIAAAD+////HQAAAPEAygIPAg==","preamble":85,"sender":22963,"tow":271508500,"n":2,"e":-2,"d":29,"h_accuracy":241,"v_accuracy":714,"n_sats":15,"flags":2} +{"crc":54379,"length":15,"msg_type":520,"payload":"FOQuEJsAhwBNAEgAcgAG","preamble":85,"sender":22963,"tow":271508500,"gdop":155,"pdop":135,"tdop":77,"hdop":72,"vdop":114,"flags":6} +{"crc":33255,"length":22,"msg_type":524,"payload":"FOQuEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271508500,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":47964,"length":6,"msg_type":528,"payload":"FOQuEP//","preamble":85,"sender":22963,"tow":271508500,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":52494,"length":11,"msg_type":258,"payload":"Mgh45C4QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271508600,"ns_residual":0,"flags":1} +{"crc":21219,"length":16,"msg_type":259,"payload":"EXjkLhDkBwMZAxgy/kXDIw==","preamble":85,"sender":22963,"flags":17,"tow":271508600,"year":2020,"month":3,"day":25,"hours":3,"minutes":24,"seconds":50,"ns":599999998} +{"crc":57497,"length":34,"msg_type":522,"payload":"eOQuEKTpxull6kJAZ52MHVaSXsAsVc/1sYsxwAECWwQPBg==","preamble":85,"sender":22963,"tow":271508600,"lat":37.831235143781015,"lon":-122.28650606853408,"height":-17.54568420707544,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":57736,"length":22,"msg_type":526,"payload":"eOQuEPX///8FAAAA2P////EAygIPAg==","preamble":85,"sender":22963,"tow":271508600,"n":-11,"e":5,"d":-40,"h_accuracy":241,"v_accuracy":714,"n_sats":15,"flags":2} +{"crc":57217,"length":15,"msg_type":520,"payload":"eOQuEJsAhwBNAEgAcgAG","preamble":85,"sender":22963,"tow":271508600,"gdop":155,"pdop":135,"tdop":77,"hdop":72,"vdop":114,"flags":6} +{"crc":51186,"length":22,"msg_type":524,"payload":"eOQuEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271508600,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":61351,"length":6,"msg_type":528,"payload":"eOQuEP//","preamble":85,"sender":22963,"tow":271508600,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":16960,"length":34,"msg_type":30583,"payload":"gwL14y4QAxf/AB/+f/f/AAf//9f/f/AA////6M725+/lcA==","preamble":85,"sender":22963,"sid":{"sat":131,"code":2},"tow":271508469,"message_type":3,"data":[23,255,0,31,254,127,247,255,0,7,255,255,215,255,127,240,0,255,255,255,232,206,246,231,239,229,112]} +{"crc":18863,"length":11,"msg_type":258,"payload":"Mgjc5C4QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271508700,"ns_residual":0,"flags":1} +{"crc":33972,"length":16,"msg_type":259,"payload":"EdzkLhDkBwMZAxgy/ia5KQ==","preamble":85,"sender":22963,"flags":17,"tow":271508700,"year":2020,"month":3,"day":25,"hours":3,"minutes":24,"seconds":50,"ns":699999998} +{"crc":7659,"length":34,"msg_type":522,"payload":"3OQuEOxexell6kJAYih+HVaSXsDHBr7whooxwAECWwQPBg==","preamble":85,"sender":22963,"tow":271508700,"lat":37.831235143063026,"lon":-122.28650605506985,"height":-17.541121527093107,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":30755,"length":22,"msg_type":526,"payload":"3OQuEAkAAAD5////CgAAAPEAygIPAg==","preamble":85,"sender":22963,"tow":271508700,"n":9,"e":-7,"d":10,"h_accuracy":241,"v_accuracy":714,"n_sats":15,"flags":2} +{"crc":36149,"length":15,"msg_type":520,"payload":"3OQuEJsAhwBNAEgAcgAG","preamble":85,"sender":22963,"tow":271508700,"gdop":155,"pdop":135,"tdop":77,"hdop":72,"vdop":114,"flags":6} +{"crc":45195,"length":22,"msg_type":524,"payload":"3OQuEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271508700,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":2094,"length":6,"msg_type":528,"payload":"3OQuEP//","preamble":85,"sender":22963,"tow":271508700,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":22304,"length":11,"msg_type":258,"payload":"MghA5S4QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271508800,"ns_residual":0,"flags":1} +{"crc":8543,"length":16,"msg_type":259,"payload":"EUDlLhDkBwMZAxgy/gevLw==","preamble":85,"sender":22963,"flags":17,"tow":271508800,"year":2020,"month":3,"day":25,"hours":3,"minutes":24,"seconds":50,"ns":799999998} +{"crc":61392,"length":34,"msg_type":522,"payload":"QOUuEGWypOll6kJAgW9oHVaSXsA1wj5wC4oxwAECWwQPBg==","preamble":85,"sender":22963,"tow":271508800,"lat":37.83123512784804,"lon":-122.28650603483949,"height":-17.539237037012033,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":29447,"length":22,"msg_type":526,"payload":"QOUuEP3///8EAAAAAwAAAPEAygIPAg==","preamble":85,"sender":22963,"tow":271508800,"n":-3,"e":4,"d":3,"h_accuracy":241,"v_accuracy":714,"n_sats":15,"flags":2} +{"crc":20539,"length":15,"msg_type":520,"payload":"QOUuEJsAhwBNAEgAcgAG","preamble":85,"sender":22963,"tow":271508800,"gdop":155,"pdop":135,"tdop":77,"hdop":72,"vdop":114,"flags":6} +{"crc":39756,"length":22,"msg_type":524,"payload":"QOUuEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271508800,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":26424,"length":6,"msg_type":528,"payload":"QOUuEP//","preamble":85,"sender":22963,"tow":271508800,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":9989,"length":237,"msg_type":97,"payload":"BQDVFQC1AgC9HwCnAAAAAAAAGQDaDADOHQDVEgDPAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwLOGQHMDAG6HwGYEgHDHQHCAAAABQHBAAAAAAAAAAAAAAAACwPWCQOwFAOtBQPPCgPPAAAABAO2FQPKCQSqFATOAAAACwTHBQTDAAS8AAAABASxIwzIGgyoIgyfGAy9GQycDAy6Ewy4Fgy/AAAADA3RAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADA7CAAAAGQ6/Cw68GA7MAAAAHw6fIQ6ZGRTJGBTXCxTCHxStDBTPAAAAIRSqAAAA","preamble":85,"sender":22963,"states":[{"mesid":{"sat":5,"code":0},"cn0":213},{"mesid":{"sat":21,"code":0},"cn0":181},{"mesid":{"sat":2,"code":0},"cn0":189},{"mesid":{"sat":31,"code":0},"cn0":167},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":25,"code":0},"cn0":218},{"mesid":{"sat":12,"code":0},"cn0":206},{"mesid":{"sat":29,"code":0},"cn0":213},{"mesid":{"sat":18,"code":0},"cn0":207},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":131,"code":2},"cn0":206},{"mesid":{"sat":25,"code":1},"cn0":204},{"mesid":{"sat":12,"code":1},"cn0":186},{"mesid":{"sat":31,"code":1},"cn0":152},{"mesid":{"sat":18,"code":1},"cn0":195},{"mesid":{"sat":29,"code":1},"cn0":194},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":5,"code":1},"cn0":193},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":11,"code":3},"cn0":214},{"mesid":{"sat":9,"code":3},"cn0":176},{"mesid":{"sat":20,"code":3},"cn0":173},{"mesid":{"sat":5,"code":3},"cn0":207},{"mesid":{"sat":10,"code":3},"cn0":207},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":4,"code":3},"cn0":182},{"mesid":{"sat":21,"code":3},"cn0":202},{"mesid":{"sat":9,"code":4},"cn0":170},{"mesid":{"sat":20,"code":4},"cn0":206},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":11,"code":4},"cn0":199},{"mesid":{"sat":5,"code":4},"cn0":195},{"mesid":{"sat":0,"code":4},"cn0":188},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":4,"code":4},"cn0":177},{"mesid":{"sat":35,"code":12},"cn0":200},{"mesid":{"sat":26,"code":12},"cn0":168},{"mesid":{"sat":34,"code":12},"cn0":159},{"mesid":{"sat":24,"code":12},"cn0":189},{"mesid":{"sat":25,"code":12},"cn0":156},{"mesid":{"sat":12,"code":12},"cn0":186},{"mesid":{"sat":19,"code":12},"cn0":184},{"mesid":{"sat":22,"code":12},"cn0":191},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":12,"code":13},"cn0":209},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":12,"code":14},"cn0":194},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":25,"code":14},"cn0":191},{"mesid":{"sat":11,"code":14},"cn0":188},{"mesid":{"sat":24,"code":14},"cn0":204},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":31,"code":14},"cn0":159},{"mesid":{"sat":33,"code":14},"cn0":153},{"mesid":{"sat":25,"code":20},"cn0":201},{"mesid":{"sat":24,"code":20},"cn0":215},{"mesid":{"sat":11,"code":20},"cn0":194},{"mesid":{"sat":31,"code":20},"cn0":173},{"mesid":{"sat":12,"code":20},"cn0":207},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":33,"code":20},"cn0":170},{"mesid":{"sat":0,"code":0},"cn0":0}]} +{"crc":41336,"length":136,"msg_type":151,"payload":"AgAaHgUALDUMAFEtFQB9GRkAbUYaAKEBHQChNx8AlQ4EAxYWBQMyIQYDTggJA18OCgNxKQsDmCUMA6oDEwMiBxQDCzEVA5UlDAyUKRMMIyAUDA8CFgxDIxgMgiMZDJ0OGgxnFR0MLAAiDI4RIwwiLQsOizIMDg88GA5sNhkOlykfDlURIQ4fDw==","preamble":85,"sender":22963,"azel":[{"sid":{"sat":2,"code":0},"az":26,"el":30},{"sid":{"sat":5,"code":0},"az":44,"el":53},{"sid":{"sat":12,"code":0},"az":81,"el":45},{"sid":{"sat":21,"code":0},"az":125,"el":25},{"sid":{"sat":25,"code":0},"az":109,"el":70},{"sid":{"sat":26,"code":0},"az":161,"el":1},{"sid":{"sat":29,"code":0},"az":161,"el":55},{"sid":{"sat":31,"code":0},"az":149,"el":14},{"sid":{"sat":4,"code":3},"az":22,"el":22},{"sid":{"sat":5,"code":3},"az":50,"el":33},{"sid":{"sat":6,"code":3},"az":78,"el":8},{"sid":{"sat":9,"code":3},"az":95,"el":14},{"sid":{"sat":10,"code":3},"az":113,"el":41},{"sid":{"sat":11,"code":3},"az":152,"el":37},{"sid":{"sat":12,"code":3},"az":170,"el":3},{"sid":{"sat":19,"code":3},"az":34,"el":7},{"sid":{"sat":20,"code":3},"az":11,"el":49},{"sid":{"sat":21,"code":3},"az":149,"el":37},{"sid":{"sat":12,"code":12},"az":148,"el":41},{"sid":{"sat":19,"code":12},"az":35,"el":32},{"sid":{"sat":20,"code":12},"az":15,"el":2},{"sid":{"sat":22,"code":12},"az":67,"el":35},{"sid":{"sat":24,"code":12},"az":130,"el":35},{"sid":{"sat":25,"code":12},"az":157,"el":14},{"sid":{"sat":26,"code":12},"az":103,"el":21},{"sid":{"sat":29,"code":12},"az":44,"el":0},{"sid":{"sat":34,"code":12},"az":142,"el":17},{"sid":{"sat":35,"code":12},"az":34,"el":45},{"sid":{"sat":11,"code":14},"az":139,"el":50},{"sid":{"sat":12,"code":14},"az":15,"el":60},{"sid":{"sat":24,"code":14},"az":108,"el":54},{"sid":{"sat":25,"code":14},"az":151,"el":41},{"sid":{"sat":31,"code":14},"az":85,"el":17},{"sid":{"sat":33,"code":14},"az":31,"el":15}]} +{"crc":35928,"length":11,"msg_type":258,"payload":"Mgik5S4QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271508900,"ns_residual":0,"flags":1} +{"crc":47715,"length":16,"msg_type":259,"payload":"EaTlLhDkBwMZAxgy/uikNQ==","preamble":85,"sender":22963,"flags":17,"tow":271508900,"year":2020,"month":3,"day":25,"hours":3,"minutes":24,"seconds":50,"ns":899999998} +{"crc":9870,"length":34,"msg_type":522,"payload":"pOUuEI5gj+ll6kJArxVWHVaSXsCC2tzSgIkxwAECWwQPBg==","preamble":85,"sender":22963,"tow":271508900,"lat":37.831235117920286,"lon":-122.28650601774892,"height":-17.537121943396876,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":23569,"length":22,"msg_type":526,"payload":"pOUuEAsAAAABAAAACgAAAPEAygIPAg==","preamble":85,"sender":22963,"tow":271508900,"n":11,"e":1,"d":10,"h_accuracy":241,"v_accuracy":714,"n_sats":15,"flags":2} +{"crc":10374,"length":15,"msg_type":520,"payload":"pOUuEJsAhwBNAEgAcgAG","preamble":85,"sender":22963,"tow":271508900,"gdop":155,"pdop":135,"tdop":77,"hdop":72,"vdop":114,"flags":6} +{"crc":14703,"length":22,"msg_type":524,"payload":"pOUuEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271508900,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":60065,"length":6,"msg_type":528,"payload":"pOUuEP//","preamble":85,"sender":22963,"tow":271508900,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":11696,"length":249,"msg_type":74,"payload":"COYuEAAAAAAyCEDn1bM+PA+XBqRL/5TVDw8FAKq4GEXfGEMHqX0IfrQPDxUAj2jwRUHEWQfiT/ZkvQ8PAgB0OQJJFlusBwt2/rimDw8fAPkUJT1uJm0G6Zv7o9oPDxkA+4+yQLu8zAb0avQkzg8PDAAm2NE+nzaaBgjMBdPVDw8dADMVJT177wEFiJP8gMwPDxkBsI+yQEtrTAUG+fYjuw8PDAEjOQJJuar6Bc7M/pqZDw8fAcDX0T6lDCUFoIYEfMIPDx0BpNWzPp+XIgWgc/8cwg8PBQFFWv0+YGG7BoOSBCfWDw8LAwnz0UTtk1kHWMnu/7APDwkD","preamble":85,"sender":22963,"header":{"t":{"tow":271509000,"ns_residual":0,"wn":2098},"n_obs":64},"obs":[{"P":1051973095,"L":{"i":110563132,"f":164},"D":{"i":-181,"f":148},"cn0":213,"lock":15,"flags":15,"sid":{"sat":5,"code":0}},{"P":1159248042,"L":{"i":121837791,"f":169},"D":{"i":2173,"f":126},"cn0":180,"lock":15,"flags":15,"sid":{"sat":21,"code":0}},{"P":1173383311,"L":{"i":123323457,"f":226},"D":{"i":-2481,"f":100},"cn0":189,"lock":15,"flags":15,"sid":{"sat":2,"code":0}},{"P":1224882548,"L":{"i":128736022,"f":11},"D":{"i":-394,"f":184},"cn0":166,"lock":15,"flags":15,"sid":{"sat":31,"code":0}},{"P":1025840377,"L":{"i":107816558,"f":233},"D":{"i":-1125,"f":163},"cn0":218,"lock":15,"flags":15,"sid":{"sat":25,"code":0}},{"P":1085444091,"L":{"i":114080955,"f":244},"D":{"i":-2966,"f":36},"cn0":206,"lock":15,"flags":15,"sid":{"sat":12,"code":0}},{"P":1053939750,"L":{"i":110769823,"f":8},"D":{"i":1484,"f":211},"cn0":213,"lock":15,"flags":15,"sid":{"sat":29,"code":0}},{"P":1025840435,"L":{"i":84012923,"f":136},"D":{"i":-877,"f":128},"cn0":204,"lock":15,"flags":15,"sid":{"sat":25,"code":1}},{"P":1085444016,"L":{"i":88894283,"f":6},"D":{"i":-2311,"f":35},"cn0":187,"lock":15,"flags":15,"sid":{"sat":12,"code":1}},{"P":1224882467,"L":{"i":100313785,"f":206},"D":{"i":-308,"f":154},"cn0":153,"lock":15,"flags":15,"sid":{"sat":31,"code":1}},{"P":1053939648,"L":{"i":86314149,"f":160},"D":{"i":1158,"f":124},"cn0":194,"lock":15,"flags":15,"sid":{"sat":29,"code":1}},{"P":1051973028,"L":{"i":86153119,"f":160},"D":{"i":-141,"f":28},"cn0":194,"lock":15,"flags":15,"sid":{"sat":5,"code":1}},{"P":1056791109,"L":{"i":112943456,"f":131},"D":{"i":1170,"f":39},"cn0":214,"lock":15,"flags":15,"sid":{"sat":11,"code":3}},{"P":1154609929,"L":{"i":123311085,"f":88},"D":{"i":-4407,"f":255},"cn0":176,"lock":15,"flags":15,"sid":{"sat":9,"code":3}}]} +{"crc":41134,"length":249,"msg_type":74,"payload":"COYuEAAAAAAyCEFLcyw9rt6KBr1G+0OtDw8UA0jpCkD1zdgGEJkIA88PDwUDewljPmGxpgZ4HvRpzw8PCgMdUwZDMaQtB/Pg+pq2Dw8EA4zeKz+Ox8IG0lcGRsoPDxUDivPRRBdztwWSnfIhqg8PCQSsdCw9Vq0WBU9T/GzNDw8UBD9b/T44aDwF844DGMcPDwsEdeoKQN5KUwXWrwbUww8PBQTjUwZDx0aVBb8C/M+xDw8EBH0QlEXVCj8H2SP608gPDyMMlBnxSTJgswdSQPQcqA8PGgzzPxhMm8bsB3/ICH6fDw8iDAl7n0ebjXUHhOz6Ab0PDxgM","preamble":85,"sender":22963,"header":{"t":{"tow":271509000,"ns_residual":0,"wn":2098},"n_obs":65},"obs":[{"P":1026323275,"L":{"i":109764270,"f":189},"D":{"i":-1210,"f":67},"cn0":173,"lock":15,"flags":15,"sid":{"sat":20,"code":3}},{"P":1074456904,"L":{"i":114871797,"f":16},"D":{"i":2201,"f":3},"cn0":207,"lock":15,"flags":15,"sid":{"sat":5,"code":3}},{"P":1046677883,"L":{"i":111587681,"f":120},"D":{"i":-3042,"f":105},"cn0":207,"lock":15,"flags":15,"sid":{"sat":10,"code":3}},{"P":1124487965,"L":{"i":120431665,"f":243},"D":{"i":-1312,"f":154},"cn0":182,"lock":15,"flags":15,"sid":{"sat":4,"code":3}},{"P":1059839628,"L":{"i":113428366,"f":210},"D":{"i":1623,"f":70},"cn0":202,"lock":15,"flags":15,"sid":{"sat":21,"code":3}},{"P":1154610058,"L":{"i":95908631,"f":146},"D":{"i":-3427,"f":33},"cn0":170,"lock":15,"flags":15,"sid":{"sat":9,"code":4}},{"P":1026323628,"L":{"i":85372246,"f":79},"D":{"i":-941,"f":108},"cn0":205,"lock":15,"flags":15,"sid":{"sat":20,"code":4}},{"P":1056791359,"L":{"i":87844920,"f":243},"D":{"i":910,"f":24},"cn0":199,"lock":15,"flags":15,"sid":{"sat":11,"code":4}},{"P":1074457205,"L":{"i":89344734,"f":214},"D":{"i":1711,"f":212},"cn0":195,"lock":15,"flags":15,"sid":{"sat":5,"code":4}},{"P":1124488163,"L":{"i":93669063,"f":191},"D":{"i":-1022,"f":207},"cn0":177,"lock":15,"flags":15,"sid":{"sat":4,"code":4}},{"P":1167331453,"L":{"i":121572053,"f":217},"D":{"i":-1501,"f":211},"cn0":200,"lock":15,"flags":15,"sid":{"sat":35,"code":12}},{"P":1240537492,"L":{"i":129196082,"f":82},"D":{"i":-3008,"f":28},"cn0":168,"lock":15,"flags":15,"sid":{"sat":26,"code":12}},{"P":1276657651,"L":{"i":132957851,"f":127},"D":{"i":2248,"f":126},"cn0":159,"lock":15,"flags":15,"sid":{"sat":34,"code":12}},{"P":1201634057,"L":{"i":125144475,"f":132},"D":{"i":-1300,"f":1},"cn0":189,"lock":15,"flags":15,"sid":{"sat":24,"code":12}}]} +{"crc":8177,"length":249,"msg_type":74,"payload":"COYuEAAAAAAyCELYchRNbQoHCOMtBZScDw8ZDLEkUEXe9zcHYEwGNLkPDwwMMQZDR6Lsawea4f43uA8PEwzt12BHpAdvB2lUCUa/Dw8WDGYkUEVl95QFit0EoNEPDwwNUEMGQptw8AYw/Puawg8PDA5e2iFL4H3lB7hDBFK/Dw8ZDin0IUcO4XkHQRcEv7wPDwsOA1UmQ1+3Dgc6MPn3zA8PGA6MZ0VRq6mKCMmb8wKfDw8fDobL9FGyGJ0IaqD3TJkPDyEOO9ohS2jvDAYWQgN4yQ8PGRQcVyZDNV5oBWjH+t7XDw8YFF7zIUd9eroFCiEDccIPDwsU","preamble":85,"sender":22963,"header":{"t":{"tow":271509000,"ns_residual":0,"wn":2098},"n_obs":66},"obs":[{"P":1293185752,"L":{"i":134679149,"f":227},"D":{"i":1325,"f":148},"cn0":156,"lock":15,"flags":15,"sid":{"sat":25,"code":12}},{"P":1162880177,"L":{"i":121108446,"f":96},"D":{"i":1612,"f":52},"cn0":185,"lock":15,"flags":15,"sid":{"sat":12,"code":12}},{"P":1195574833,"L":{"i":124513442,"f":154},"D":{"i":-287,"f":55},"cn0":184,"lock":15,"flags":15,"sid":{"sat":19,"code":12}},{"P":1197529069,"L":{"i":124716964,"f":105},"D":{"i":2388,"f":70},"cn0":191,"lock":15,"flags":15,"sid":{"sat":22,"code":12}},{"P":1162880102,"L":{"i":93648741,"f":138},"D":{"i":1245,"f":160},"cn0":209,"lock":15,"flags":15,"sid":{"sat":12,"code":13}},{"P":1107706704,"L":{"i":116420763,"f":48},"D":{"i":-1028,"f":154},"cn0":194,"lock":15,"flags":15,"sid":{"sat":12,"code":14}},{"P":1260509790,"L":{"i":132480480,"f":184},"D":{"i":1091,"f":82},"cn0":191,"lock":15,"flags":15,"sid":{"sat":25,"code":14}},{"P":1193407529,"L":{"i":125427982,"f":65},"D":{"i":1047,"f":191},"cn0":188,"lock":15,"flags":15,"sid":{"sat":11,"code":14}},{"P":1126585603,"L":{"i":118404959,"f":58},"D":{"i":-1744,"f":247},"cn0":204,"lock":15,"flags":15,"sid":{"sat":24,"code":14}},{"P":1363502988,"L":{"i":143305131,"f":201},"D":{"i":-3173,"f":2},"cn0":159,"lock":15,"flags":15,"sid":{"sat":31,"code":14}},{"P":1374997382,"L":{"i":144513202,"f":106},"D":{"i":-2144,"f":76},"cn0":153,"lock":15,"flags":15,"sid":{"sat":33,"code":14}},{"P":1260509755,"L":{"i":101511016,"f":22},"D":{"i":834,"f":120},"cn0":201,"lock":15,"flags":15,"sid":{"sat":25,"code":20}},{"P":1126586140,"L":{"i":90725941,"f":104},"D":{"i":-1337,"f":222},"cn0":215,"lock":15,"flags":15,"sid":{"sat":24,"code":20}},{"P":1193407326,"L":{"i":96107133,"f":10},"D":{"i":801,"f":113},"cn0":194,"lock":15,"flags":15,"sid":{"sat":11,"code":20}}]} +{"crc":56491,"length":62,"msg_type":74,"payload":"COYuEAAAAAAyCEO/Z0VR2H6LBluB9nmtDw8fFLRCBkIuK1EFcuz8Fs8PDwwUacv0UdWemQbfmPl/qQ8PIRQ=","preamble":85,"sender":22963,"header":{"t":{"tow":271509000,"ns_residual":0,"wn":2098},"n_obs":67},"obs":[{"P":1363503039,"L":{"i":109805272,"f":91},"D":{"i":-2431,"f":121},"cn0":173,"lock":15,"flags":15,"sid":{"sat":31,"code":20}},{"P":1107706548,"L":{"i":89205550,"f":114},"D":{"i":-788,"f":22},"cn0":207,"lock":15,"flags":15,"sid":{"sat":12,"code":20}},{"P":1374997353,"L":{"i":110730965,"f":223},"D":{"i":-1640,"f":127},"cn0":169,"lock":15,"flags":15,"sid":{"sat":33,"code":20}}]} +{"crc":49809,"length":9,"msg_type":117,"payload":"/wAAAAAAAAAA","preamble":85,"sender":22963,"mask":255,"l1ca_bias":0,"l1p_bias":0,"l2ca_bias":0,"l2p_bias":0} +{"crc":59763,"length":11,"msg_type":258,"payload":"MggI5i4QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271509000,"ns_residual":0,"flags":1} +{"crc":13459,"length":16,"msg_type":259,"payload":"EQjmLhDkBwMZAxgy/smaOw==","preamble":85,"sender":22963,"flags":17,"tow":271509000,"year":2020,"month":3,"day":25,"hours":3,"minutes":24,"seconds":50,"ns":999999998} +{"crc":49935,"length":34,"msg_type":522,"payload":"COYuEC15e+ll6kJA50U4HVaSXsBv7Q3yiokxwAECWwQPBg==","preamble":85,"sender":22963,"tow":271509000,"lat":37.831235108651846,"lon":-122.28650598998466,"height":-17.537276390457404,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":44542,"length":22,"msg_type":526,"payload":"COYuEP7///8JAAAAFgAAAPEAygIPAg==","preamble":85,"sender":22963,"tow":271509000,"n":-2,"e":9,"d":22,"h_accuracy":241,"v_accuracy":714,"n_sats":15,"flags":2} +{"crc":53460,"length":15,"msg_type":520,"payload":"COYuEJsAhwBNAEgAcgAG","preamble":85,"sender":22963,"tow":271509000,"gdop":155,"pdop":135,"tdop":77,"hdop":72,"vdop":114,"flags":6} +{"crc":32398,"length":22,"msg_type":524,"payload":"COYuEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271509000,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":61112,"length":6,"msg_type":528,"payload":"COYuEP//","preamble":85,"sender":22963,"tow":271509000,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":40942,"length":4,"msg_type":65535,"payload":"AAUCgA==","preamble":85,"sender":22963,"flags":2147616000} +{"crc":2168,"length":24,"msg_type":72,"payload":"UO0a3iqORMHK1UJhIkRQwc9nFIPvrk1B","preamble":85,"sender":22963,"x":-2694229.735196747,"y":-4264073.519704292,"z":3890655.0240602265} +{"crc":1319,"length":10,"msg_type":181,"payload":"6BbcA/QGYRUJFg==","preamble":85,"sender":22963,"dev_vin":5864,"cpu_vint":988,"cpu_vaux":1780,"cpu_temperature":5473,"fe_temperature":5641} +{"crc":36281,"length":11,"msg_type":258,"payload":"Mghs5i4QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271509100,"ns_residual":0,"flags":1} +{"crc":26291,"length":16,"msg_type":259,"payload":"EWzmLhDkBwMZAxgz/uD1BQ==","preamble":85,"sender":22963,"flags":17,"tow":271509100,"year":2020,"month":3,"day":25,"hours":3,"minutes":24,"seconds":51,"ns":99999998} +{"crc":19652,"length":34,"msg_type":522,"payload":"bOYuEBsTTull6kJAhyMVHVaSXsAFmS32IokxwAECWwQPBg==","preamble":85,"sender":22963,"tow":271509100,"lat":37.83123508751142,"lon":-122.28650595726332,"height":-17.53568972218729,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":41426,"length":22,"msg_type":526,"payload":"bOYuEPL///8HAAAA+v////EAygIPAg==","preamble":85,"sender":22963,"tow":271509100,"n":-14,"e":7,"d":-6,"h_accuracy":241,"v_accuracy":714,"n_sats":15,"flags":2} +{"crc":64635,"length":15,"msg_type":520,"payload":"bOYuEJsAhwBNAEgAcgAG","preamble":85,"sender":22963,"tow":271509100,"gdop":155,"pdop":135,"tdop":77,"hdop":72,"vdop":114,"flags":6} +{"crc":26168,"length":22,"msg_type":524,"payload":"bOYuEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271509100,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":46849,"length":6,"msg_type":528,"payload":"bOYuEP//","preamble":85,"sender":22963,"tow":271509100,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":29465,"length":11,"msg_type":258,"payload":"MgjQ5i4QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271509200,"ns_residual":0,"flags":1} +{"crc":11660,"length":16,"msg_type":259,"payload":"EdDmLhDkBwMZAxgz/sHrCw==","preamble":85,"sender":22963,"flags":17,"tow":271509200,"year":2020,"month":3,"day":25,"hours":3,"minutes":24,"seconds":51,"ns":199999998} +{"crc":4556,"length":34,"msg_type":522,"payload":"0OYuEFmiQull6kJAUt0CHVaSXsCX6CQ/C4gxwAECWwQPBg==","preamble":85,"sender":22963,"tow":271509200,"lat":37.831235082184044,"lon":-122.2865059402441,"height":-17.53142161036575,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":26400,"length":22,"msg_type":526,"payload":"0OYuEAEAAAD2////4/////EAygIPAg==","preamble":85,"sender":22963,"tow":271509200,"n":1,"e":-10,"d":-29,"h_accuracy":241,"v_accuracy":714,"n_sats":15,"flags":2} +{"crc":50944,"length":15,"msg_type":520,"payload":"0OYuEJsAhwBNAEgAcgAG","preamble":85,"sender":22963,"tow":271509200,"gdop":155,"pdop":135,"tdop":77,"hdop":72,"vdop":114,"flags":6} +{"crc":62116,"length":22,"msg_type":524,"payload":"0OYuEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271509200,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":18254,"length":6,"msg_type":528,"payload":"0OYuEP//","preamble":85,"sender":22963,"tow":271509200,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":61362,"length":11,"msg_type":258,"payload":"Mgg05y4QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271509300,"ns_residual":0,"flags":1} +{"crc":45275,"length":16,"msg_type":259,"payload":"ETTnLhDkBwMZAxgz/qLhEQ==","preamble":85,"sender":22963,"flags":17,"tow":271509300,"year":2020,"month":3,"day":25,"hours":3,"minutes":24,"seconds":51,"ns":299999998} +{"crc":21203,"length":34,"msg_type":522,"payload":"NOcuECZZQ+ll6kJA3d/dHFaSXsAiZfAMcYgxwAECWwQPBg==","preamble":85,"sender":22963,"tow":271509300,"lat":37.83123508251656,"lon":-122.28650590579441,"height":-17.532975014391134,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":38337,"length":22,"msg_type":526,"payload":"NOcuEA8AAAD9////GQAAAPEAygIPAg==","preamble":85,"sender":22963,"tow":271509300,"n":15,"e":-3,"d":25,"h_accuracy":241,"v_accuracy":714,"n_sats":15,"flags":2} +{"crc":50396,"length":15,"msg_type":520,"payload":"NOcuEJsAhwBNAEgAcgAG","preamble":85,"sender":22963,"tow":271509300,"gdop":155,"pdop":135,"tdop":77,"hdop":72,"vdop":114,"flags":6} +{"crc":34161,"length":22,"msg_type":524,"payload":"NOcuEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271509300,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":24710,"length":6,"msg_type":528,"payload":"NOcuEP//","preamble":85,"sender":22963,"tow":271509300,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":1145,"length":237,"msg_type":97,"payload":"BQDVFQC0AgC8HwCmAAAAAAAAGQDZDADOHQDVEgDOAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwLNGQHMDAG6HwGYEgHDHQHCAAAABQHCAAAAAAAAAAAAAAAAZAPWYgOwZgOtZQPPXQPPAAAAagO2aAPKYgSqZgTNAAAAZATHZQTDaAS8AAAAagSxIwzHGgypIgyfGAy9GQycDAy5Ewy4Fgy/AAAADA3QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADA7CAAAAGQ6/Cw68GA7LAAAAHw6fIQ6ZGRTJGBTXCxTCHxStDBTOAAAAIRSpAAAA","preamble":85,"sender":22963,"states":[{"mesid":{"sat":5,"code":0},"cn0":213},{"mesid":{"sat":21,"code":0},"cn0":180},{"mesid":{"sat":2,"code":0},"cn0":188},{"mesid":{"sat":31,"code":0},"cn0":166},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":25,"code":0},"cn0":217},{"mesid":{"sat":12,"code":0},"cn0":206},{"mesid":{"sat":29,"code":0},"cn0":213},{"mesid":{"sat":18,"code":0},"cn0":206},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":131,"code":2},"cn0":205},{"mesid":{"sat":25,"code":1},"cn0":204},{"mesid":{"sat":12,"code":1},"cn0":186},{"mesid":{"sat":31,"code":1},"cn0":152},{"mesid":{"sat":18,"code":1},"cn0":195},{"mesid":{"sat":29,"code":1},"cn0":194},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":5,"code":1},"cn0":194},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":100,"code":3},"cn0":214},{"mesid":{"sat":98,"code":3},"cn0":176},{"mesid":{"sat":102,"code":3},"cn0":173},{"mesid":{"sat":101,"code":3},"cn0":207},{"mesid":{"sat":93,"code":3},"cn0":207},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":106,"code":3},"cn0":182},{"mesid":{"sat":104,"code":3},"cn0":202},{"mesid":{"sat":98,"code":4},"cn0":170},{"mesid":{"sat":102,"code":4},"cn0":205},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":100,"code":4},"cn0":199},{"mesid":{"sat":101,"code":4},"cn0":195},{"mesid":{"sat":104,"code":4},"cn0":188},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":106,"code":4},"cn0":177},{"mesid":{"sat":35,"code":12},"cn0":199},{"mesid":{"sat":26,"code":12},"cn0":169},{"mesid":{"sat":34,"code":12},"cn0":159},{"mesid":{"sat":24,"code":12},"cn0":189},{"mesid":{"sat":25,"code":12},"cn0":156},{"mesid":{"sat":12,"code":12},"cn0":185},{"mesid":{"sat":19,"code":12},"cn0":184},{"mesid":{"sat":22,"code":12},"cn0":191},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":12,"code":13},"cn0":208},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":12,"code":14},"cn0":194},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":25,"code":14},"cn0":191},{"mesid":{"sat":11,"code":14},"cn0":188},{"mesid":{"sat":24,"code":14},"cn0":203},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":31,"code":14},"cn0":159},{"mesid":{"sat":33,"code":14},"cn0":153},{"mesid":{"sat":25,"code":20},"cn0":201},{"mesid":{"sat":24,"code":20},"cn0":215},{"mesid":{"sat":11,"code":20},"cn0":194},{"mesid":{"sat":31,"code":20},"cn0":173},{"mesid":{"sat":12,"code":20},"cn0":206},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":33,"code":20},"cn0":169},{"mesid":{"sat":0,"code":0},"cn0":0}]} +{"crc":17132,"length":11,"msg_type":258,"payload":"MgiY5y4QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271509400,"ns_residual":0,"flags":1} +{"crc":47913,"length":16,"msg_type":259,"payload":"EZjnLhDkBwMZAxgz/oPXFw==","preamble":85,"sender":22963,"flags":17,"tow":271509400,"year":2020,"month":3,"day":25,"hours":3,"minutes":24,"seconds":51,"ns":399999998} +{"crc":44083,"length":34,"msg_type":522,"payload":"mOcuEJDyH+ll6kJAgxnDHFaSXsBDR6LsrYYxwAECWwQPBg==","preamble":85,"sender":22963,"tow":271509400,"lat":37.83123506603181,"lon":-122.28650588085843,"height":-17.526091374987356,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":28800,"length":22,"msg_type":526,"payload":"mOcuEP////8FAAAA/f////EAygIPAg==","preamble":85,"sender":22963,"tow":271509400,"n":-1,"e":5,"d":-3,"h_accuracy":241,"v_accuracy":714,"n_sats":15,"flags":2} +{"crc":45357,"length":15,"msg_type":520,"payload":"mOcuEJsAhwBNAEgAcgAG","preamble":85,"sender":22963,"tow":271509400,"gdop":155,"pdop":135,"tdop":77,"hdop":72,"vdop":114,"flags":6} +{"crc":44203,"length":22,"msg_type":524,"payload":"mOcuEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271509400,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":35405,"length":6,"msg_type":528,"payload":"mOcuEP//","preamble":85,"sender":22963,"tow":271509400,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":49809,"length":9,"msg_type":117,"payload":"/wAAAAAAAAAA","preamble":85,"sender":22963,"mask":255,"l1ca_bias":0,"l1p_bias":0,"l2ca_bias":0,"l2p_bias":0} +{"crc":9766,"length":11,"msg_type":258,"payload":"Mgj85y4QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271509500,"ns_residual":0,"flags":1} +{"crc":65493,"length":16,"msg_type":259,"payload":"EfznLhDkBwMZAxgz/mTNHQ==","preamble":85,"sender":22963,"flags":17,"tow":271509500,"year":2020,"month":3,"day":25,"hours":3,"minutes":24,"seconds":51,"ns":499999998} +{"crc":10626,"length":34,"msg_type":522,"payload":"/OcuEH928+hl6kJA/6O2HFaSXsAau1RRXYUxwAECWwQPBg==","preamble":85,"sender":22963,"tow":271509500,"lat":37.83123504531704,"lon":-122.28650586925504,"height":-17.52095516508698,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":25447,"length":22,"msg_type":526,"payload":"/OcuEPv///8AAAAABgAAAPEAygIPAg==","preamble":85,"sender":22963,"tow":271509500,"n":-5,"e":0,"d":6,"h_accuracy":241,"v_accuracy":714,"n_sats":15,"flags":2} +{"crc":40322,"length":15,"msg_type":520,"payload":"/OcuEJsAhwBNAEgAcgAG","preamble":85,"sender":22963,"tow":271509500,"gdop":155,"pdop":135,"tdop":77,"hdop":72,"vdop":114,"flags":6} +{"crc":46109,"length":22,"msg_type":524,"payload":"/OcuEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271509500,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":54260,"length":6,"msg_type":528,"payload":"/OcuEP//","preamble":85,"sender":22963,"tow":271509500,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":42680,"length":11,"msg_type":258,"payload":"Mghg6C4QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271509600,"ns_residual":0,"flags":1} +{"crc":34739,"length":16,"msg_type":259,"payload":"EWDoLhDkBwMZAxgz/kXDIw==","preamble":85,"sender":22963,"flags":17,"tow":271509600,"year":2020,"month":3,"day":25,"hours":3,"minutes":24,"seconds":51,"ns":599999998} +{"crc":20295,"length":34,"msg_type":522,"payload":"YOguEH5uxuhl6kJAwF6hHFaSXsC+VU52OoQxwAECWwQPBg==","preamble":85,"sender":22963,"tow":271509600,"lat":37.83123502434772,"lon":-122.28650584944535,"height":-17.51651706135248,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":48282,"length":22,"msg_type":526,"payload":"YOguEP////8GAAAAAQAAAPEAygIPAg==","preamble":85,"sender":22963,"tow":271509600,"n":-1,"e":6,"d":1,"h_accuracy":241,"v_accuracy":714,"n_sats":15,"flags":2} +{"crc":41088,"length":15,"msg_type":520,"payload":"YOguEJsAhwBNAEgAcgAG","preamble":85,"sender":22963,"tow":271509600,"gdop":155,"pdop":135,"tdop":77,"hdop":72,"vdop":114,"flags":6} +{"crc":36058,"length":22,"msg_type":524,"payload":"YOguEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271509600,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":29514,"length":6,"msg_type":528,"payload":"YOguEP//","preamble":85,"sender":22963,"tow":271509600,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":666,"length":34,"msg_type":30583,"payload":"gwLj5y4QBBf/f//+f/AAf//9///8f/f/f/f/7l5uqq//8A==","preamble":85,"sender":22963,"sid":{"sat":131,"code":2},"tow":271509475,"message_type":4,"data":[23,255,127,255,254,127,240,0,127,255,253,255,255,252,127,247,255,127,247,255,238,94,110,170,175,255,240]} +{"crc":8729,"length":11,"msg_type":258,"payload":"MgjE6C4QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271509700,"ns_residual":0,"flags":1} +{"crc":20964,"length":16,"msg_type":259,"payload":"EcToLhDkBwMZAxgz/ia5KQ==","preamble":85,"sender":22963,"flags":17,"tow":271509700,"year":2020,"month":3,"day":25,"hours":3,"minutes":24,"seconds":51,"ns":699999998} +{"crc":33583,"length":34,"msg_type":522,"payload":"xOguEBPpdehl6kJACw2UHFaSXsB7Z7G8HIMxwAECWwQPBg==","preamble":85,"sender":22963,"tow":271509700,"lat":37.83123498685213,"lon":-122.2865058370409,"height":-17.512157243072107,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":57365,"length":22,"msg_type":526,"payload":"xOguEPj////+////8f////EAygIPAg==","preamble":85,"sender":22963,"tow":271509700,"n":-8,"e":-2,"d":-15,"h_accuracy":241,"v_accuracy":714,"n_sats":15,"flags":2} +{"crc":62004,"length":15,"msg_type":520,"payload":"xOguEJsAhwBNAEgAcgAG","preamble":85,"sender":22963,"tow":271509700,"gdop":155,"pdop":135,"tdop":77,"hdop":72,"vdop":114,"flags":6} +{"crc":64419,"length":22,"msg_type":524,"payload":"xOguEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271509700,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":38083,"length":6,"msg_type":528,"payload":"xOguEP//","preamble":85,"sender":22963,"tow":271509700,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":38733,"length":11,"msg_type":258,"payload":"Mggo6S4QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271509800,"ns_residual":0,"flags":1} +{"crc":3480,"length":16,"msg_type":259,"payload":"ESjpLhDkBwMZAxgz/gevLw==","preamble":85,"sender":22963,"flags":17,"tow":271509800,"year":2020,"month":3,"day":25,"hours":3,"minutes":24,"seconds":51,"ns":799999998} +{"crc":48795,"length":34,"msg_type":522,"payload":"KOkuEKJWMOhl6kJAT+mEHFaSXsA4Hbz6GIIxwAECWwQPBg==","preamble":85,"sender":22963,"tow":271509800,"lat":37.83123495445513,"lon":-122.28650582294107,"height":-17.50819365589743,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":24603,"length":22,"msg_type":526,"payload":"KOkuEAEAAAD7////3/////EAygIPAg==","preamble":85,"sender":22963,"tow":271509800,"n":1,"e":-5,"d":-33,"h_accuracy":241,"v_accuracy":714,"n_sats":15,"flags":2} +{"crc":54957,"length":15,"msg_type":520,"payload":"KOkuEJsAhwBNAEgAcgAG","preamble":85,"sender":22963,"tow":271509800,"gdop":155,"pdop":135,"tdop":77,"hdop":72,"vdop":114,"flags":6} +{"crc":53973,"length":22,"msg_type":524,"payload":"KOkuEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271509800,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":48713,"length":6,"msg_type":528,"payload":"KOkuEP//","preamble":85,"sender":22963,"tow":271509800,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":32353,"length":237,"msg_type":97,"payload":"BQDVFQC0AgC8HwCmAAAAAAAAGQDZDADOHQDVEgDOAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwLNGQHMDAG7HwGXEgHDHQHCAAAABQHCAAAAAAAAAAAAAAAACwPVCQOxFAOtBQPPCgPPAAAABAO2FQPKCQSqFATNAAAACwTHBQTDAAS8AAAABASxIwzIGgypIgyfGAy9GQycDAy5Ewy3Fgy/AAAADA3QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADA7DAAAAGQ6/Cw68GA7MAAAAHw6fIQ6XGRTJGBTXCxTCHxSuDBTPAAAAIRSoAAAA","preamble":85,"sender":22963,"states":[{"mesid":{"sat":5,"code":0},"cn0":213},{"mesid":{"sat":21,"code":0},"cn0":180},{"mesid":{"sat":2,"code":0},"cn0":188},{"mesid":{"sat":31,"code":0},"cn0":166},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":25,"code":0},"cn0":217},{"mesid":{"sat":12,"code":0},"cn0":206},{"mesid":{"sat":29,"code":0},"cn0":213},{"mesid":{"sat":18,"code":0},"cn0":206},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":131,"code":2},"cn0":205},{"mesid":{"sat":25,"code":1},"cn0":204},{"mesid":{"sat":12,"code":1},"cn0":187},{"mesid":{"sat":31,"code":1},"cn0":151},{"mesid":{"sat":18,"code":1},"cn0":195},{"mesid":{"sat":29,"code":1},"cn0":194},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":5,"code":1},"cn0":194},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":11,"code":3},"cn0":213},{"mesid":{"sat":9,"code":3},"cn0":177},{"mesid":{"sat":20,"code":3},"cn0":173},{"mesid":{"sat":5,"code":3},"cn0":207},{"mesid":{"sat":10,"code":3},"cn0":207},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":4,"code":3},"cn0":182},{"mesid":{"sat":21,"code":3},"cn0":202},{"mesid":{"sat":9,"code":4},"cn0":170},{"mesid":{"sat":20,"code":4},"cn0":205},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":11,"code":4},"cn0":199},{"mesid":{"sat":5,"code":4},"cn0":195},{"mesid":{"sat":0,"code":4},"cn0":188},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":4,"code":4},"cn0":177},{"mesid":{"sat":35,"code":12},"cn0":200},{"mesid":{"sat":26,"code":12},"cn0":169},{"mesid":{"sat":34,"code":12},"cn0":159},{"mesid":{"sat":24,"code":12},"cn0":189},{"mesid":{"sat":25,"code":12},"cn0":156},{"mesid":{"sat":12,"code":12},"cn0":185},{"mesid":{"sat":19,"code":12},"cn0":183},{"mesid":{"sat":22,"code":12},"cn0":191},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":12,"code":13},"cn0":208},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":12,"code":14},"cn0":195},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":25,"code":14},"cn0":191},{"mesid":{"sat":11,"code":14},"cn0":188},{"mesid":{"sat":24,"code":14},"cn0":204},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":31,"code":14},"cn0":159},{"mesid":{"sat":33,"code":14},"cn0":151},{"mesid":{"sat":25,"code":20},"cn0":201},{"mesid":{"sat":24,"code":20},"cn0":215},{"mesid":{"sat":11,"code":20},"cn0":194},{"mesid":{"sat":31,"code":20},"cn0":174},{"mesid":{"sat":12,"code":20},"cn0":207},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":33,"code":20},"cn0":168},{"mesid":{"sat":0,"code":0},"cn0":0}]} +{"crc":41336,"length":136,"msg_type":151,"payload":"AgAaHgUALDUMAFEtFQB9GRkAbUYaAKEBHQChNx8AlQ4EAxYWBQMyIQYDTggJA18OCgNxKQsDmCUMA6oDEwMiBxQDCzEVA5UlDAyUKRMMIyAUDA8CFgxDIxgMgiMZDJ0OGgxnFR0MLAAiDI4RIwwiLQsOizIMDg88GA5sNhkOlykfDlURIQ4fDw==","preamble":85,"sender":22963,"azel":[{"sid":{"sat":2,"code":0},"az":26,"el":30},{"sid":{"sat":5,"code":0},"az":44,"el":53},{"sid":{"sat":12,"code":0},"az":81,"el":45},{"sid":{"sat":21,"code":0},"az":125,"el":25},{"sid":{"sat":25,"code":0},"az":109,"el":70},{"sid":{"sat":26,"code":0},"az":161,"el":1},{"sid":{"sat":29,"code":0},"az":161,"el":55},{"sid":{"sat":31,"code":0},"az":149,"el":14},{"sid":{"sat":4,"code":3},"az":22,"el":22},{"sid":{"sat":5,"code":3},"az":50,"el":33},{"sid":{"sat":6,"code":3},"az":78,"el":8},{"sid":{"sat":9,"code":3},"az":95,"el":14},{"sid":{"sat":10,"code":3},"az":113,"el":41},{"sid":{"sat":11,"code":3},"az":152,"el":37},{"sid":{"sat":12,"code":3},"az":170,"el":3},{"sid":{"sat":19,"code":3},"az":34,"el":7},{"sid":{"sat":20,"code":3},"az":11,"el":49},{"sid":{"sat":21,"code":3},"az":149,"el":37},{"sid":{"sat":12,"code":12},"az":148,"el":41},{"sid":{"sat":19,"code":12},"az":35,"el":32},{"sid":{"sat":20,"code":12},"az":15,"el":2},{"sid":{"sat":22,"code":12},"az":67,"el":35},{"sid":{"sat":24,"code":12},"az":130,"el":35},{"sid":{"sat":25,"code":12},"az":157,"el":14},{"sid":{"sat":26,"code":12},"az":103,"el":21},{"sid":{"sat":29,"code":12},"az":44,"el":0},{"sid":{"sat":34,"code":12},"az":142,"el":17},{"sid":{"sat":35,"code":12},"az":34,"el":45},{"sid":{"sat":11,"code":14},"az":139,"el":50},{"sid":{"sat":12,"code":14},"az":15,"el":60},{"sid":{"sat":24,"code":14},"az":108,"el":54},{"sid":{"sat":25,"code":14},"az":151,"el":41},{"sid":{"sat":31,"code":14},"az":85,"el":17},{"sid":{"sat":33,"code":14},"az":31,"el":15}]} +{"crc":5100,"length":11,"msg_type":258,"payload":"MgiM6S4QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271509900,"ns_residual":0,"flags":1} +{"crc":48301,"length":16,"msg_type":259,"payload":"EYzpLhDkBwMZAxgz/uikNQ==","preamble":85,"sender":22963,"flags":17,"tow":271509900,"year":2020,"month":3,"day":25,"hours":3,"minutes":24,"seconds":51,"ns":899999998} +{"crc":10120,"length":34,"msg_type":522,"payload":"jOkuEDwC4udl6kJATPZZHFaSXsBRBYydqIMxwAECWwQPBg==","preamble":85,"sender":22963,"tow":271509900,"lat":37.83123491798003,"lon":-122.28650578294145,"height":-17.514291617092855,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":44686,"length":22,"msg_type":526,"payload":"jOkuEP7///8NAAAAMQAAAPEAygIPAg==","preamble":85,"sender":22963,"tow":271509900,"n":-2,"e":13,"d":49,"h_accuracy":241,"v_accuracy":714,"n_sats":15,"flags":2} +{"crc":33817,"length":15,"msg_type":520,"payload":"jOkuEJsAhwBNAEgAcgAG","preamble":85,"sender":22963,"tow":271509900,"gdop":155,"pdop":135,"tdop":77,"hdop":72,"vdop":114,"flags":6} +{"crc":42412,"length":22,"msg_type":524,"payload":"jOkuEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271509900,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":22976,"length":6,"msg_type":528,"payload":"jOkuEP//","preamble":85,"sender":22963,"tow":271509900,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":43069,"length":249,"msg_type":74,"payload":"8OkuEAAAAAAyCECL3LM+7g+XBuBM/w7VDw8FANVnGEVfEEMHr38IaLQPDxUAoMTwRfDNWQcEUvZVvA8PAgD1RwJJnVysB4h3/hymDw8fAK0+JT3RKm0GNpz7StkPDxkAHv6yQFDIzAYSavTCzg8PDADnoNE+0DCaBrvNBS/VDw8dAO4+JT3m8gEFDpT8fswPDxkB0/2yQFB0TAW6+Pacuw8PDAGuRwJJ6qv6Bd7N/tSXDw8fAYGg0T4fCCUFeYQEscIPDx0BStyzPiqYIgWDc/8bwg8PBQFjL/0+zFy7BnuSBHnVDw8LAyKU0kQjpVkHssnuV7EPDwkD","preamble":85,"sender":22963,"header":{"t":{"tow":271510000,"ns_residual":0,"wn":2098},"n_obs":64},"obs":[{"P":1051974795,"L":{"i":110563310,"f":224},"D":{"i":-180,"f":14},"cn0":213,"lock":15,"flags":15,"sid":{"sat":5,"code":0}},{"P":1159227349,"L":{"i":121835615,"f":175},"D":{"i":2175,"f":104},"cn0":180,"lock":15,"flags":15,"sid":{"sat":21,"code":0}},{"P":1173406880,"L":{"i":123325936,"f":4},"D":{"i":-2478,"f":85},"cn0":188,"lock":15,"flags":15,"sid":{"sat":2,"code":0}},{"P":1224886261,"L":{"i":128736413,"f":136},"D":{"i":-393,"f":28},"cn0":166,"lock":15,"flags":15,"sid":{"sat":31,"code":0}},{"P":1025851053,"L":{"i":107817681,"f":54},"D":{"i":-1124,"f":74},"cn0":217,"lock":15,"flags":15,"sid":{"sat":25,"code":0}},{"P":1085472286,"L":{"i":114083920,"f":18},"D":{"i":-2966,"f":194},"cn0":206,"lock":15,"flags":15,"sid":{"sat":12,"code":0}},{"P":1053925607,"L":{"i":110768336,"f":187},"D":{"i":1485,"f":47},"cn0":213,"lock":15,"flags":15,"sid":{"sat":29,"code":0}},{"P":1025851118,"L":{"i":84013798,"f":14},"D":{"i":-876,"f":126},"cn0":204,"lock":15,"flags":15,"sid":{"sat":25,"code":1}},{"P":1085472211,"L":{"i":88896592,"f":186},"D":{"i":-2312,"f":156},"cn0":187,"lock":15,"flags":15,"sid":{"sat":12,"code":1}},{"P":1224886190,"L":{"i":100314090,"f":222},"D":{"i":-307,"f":212},"cn0":151,"lock":15,"flags":15,"sid":{"sat":31,"code":1}},{"P":1053925505,"L":{"i":86312991,"f":121},"D":{"i":1156,"f":177},"cn0":194,"lock":15,"flags":15,"sid":{"sat":29,"code":1}},{"P":1051974730,"L":{"i":86153258,"f":131},"D":{"i":-141,"f":27},"cn0":194,"lock":15,"flags":15,"sid":{"sat":5,"code":1}},{"P":1056780131,"L":{"i":112942284,"f":123},"D":{"i":1170,"f":121},"cn0":213,"lock":15,"flags":15,"sid":{"sat":11,"code":3}},{"P":1154651170,"L":{"i":123315491,"f":178},"D":{"i":-4407,"f":87},"cn0":177,"lock":15,"flags":15,"sid":{"sat":9,"code":3}}]} +{"crc":1753,"length":249,"msg_type":74,"payload":"8OkuEAAAAAAyCEF9nyw9ZuOKBvhH+9mtDw8UA8+YCkBZxdgG+poIFM8PDwUD4nhjPkG9pgYRHvSOzw8PCgPkggZDUKktBzbg+j22Dw8EAzajKz82wcIGElcG0coPDxUDtpTSRHqAtwW7m/JXqg8PCQTVoCw9ArEWBQhS/DTNDw8UBFww/T6pZDwFXo4D1scPDwsEBZoKQC1EUwVUsAYVww8PBQSpgwZDwkqVBdgC/PiwDw8EBKhIlEWvED8HiCX6nMgPDyMMbIrxSfFrswcfQfTVqQ8PGgyV6xdM0r3sBwzICPKfDw8iDMirn0euknUHcOv6vb0PDxgM","preamble":85,"sender":22963,"header":{"t":{"tow":271510000,"ns_residual":0,"wn":2098},"n_obs":65},"obs":[{"P":1026334589,"L":{"i":109765478,"f":248},"D":{"i":-1209,"f":217},"cn0":173,"lock":15,"flags":15,"sid":{"sat":20,"code":3}},{"P":1074436303,"L":{"i":114869593,"f":250},"D":{"i":2202,"f":20},"cn0":207,"lock":15,"flags":15,"sid":{"sat":5,"code":3}},{"P":1046706402,"L":{"i":111590721,"f":17},"D":{"i":-3042,"f":142},"cn0":207,"lock":15,"flags":15,"sid":{"sat":10,"code":3}},{"P":1124500196,"L":{"i":120432976,"f":54},"D":{"i":-1312,"f":61},"cn0":182,"lock":15,"flags":15,"sid":{"sat":4,"code":3}},{"P":1059824438,"L":{"i":113426742,"f":18},"D":{"i":1623,"f":209},"cn0":202,"lock":15,"flags":15,"sid":{"sat":21,"code":3}},{"P":1154651318,"L":{"i":95912058,"f":187},"D":{"i":-3429,"f":87},"cn0":170,"lock":15,"flags":15,"sid":{"sat":9,"code":4}},{"P":1026334933,"L":{"i":85373186,"f":8},"D":{"i":-942,"f":52},"cn0":205,"lock":15,"flags":15,"sid":{"sat":20,"code":4}},{"P":1056780380,"L":{"i":87844009,"f":94},"D":{"i":910,"f":214},"cn0":199,"lock":15,"flags":15,"sid":{"sat":11,"code":4}},{"P":1074436613,"L":{"i":89343021,"f":84},"D":{"i":1712,"f":21},"cn0":195,"lock":15,"flags":15,"sid":{"sat":5,"code":4}},{"P":1124500393,"L":{"i":93670082,"f":216},"D":{"i":-1022,"f":248},"cn0":176,"lock":15,"flags":15,"sid":{"sat":4,"code":4}},{"P":1167345832,"L":{"i":121573551,"f":136},"D":{"i":-1499,"f":156},"cn0":200,"lock":15,"flags":15,"sid":{"sat":35,"code":12}},{"P":1240566380,"L":{"i":129199089,"f":31},"D":{"i":-3007,"f":213},"cn0":169,"lock":15,"flags":15,"sid":{"sat":26,"code":12}},{"P":1276636053,"L":{"i":132955602,"f":12},"D":{"i":2248,"f":242},"cn0":159,"lock":15,"flags":15,"sid":{"sat":34,"code":12}},{"P":1201646536,"L":{"i":125145774,"f":112},"D":{"i":-1301,"f":189},"cn0":189,"lock":15,"flags":15,"sid":{"sat":24,"code":12}}]} +{"crc":19312,"length":249,"msg_type":74,"payload":"8OkuEAAAAAAyCELkQBRNPQUHCFwxBT+cDw8ZDCvoT0WR8TcHOEsGxLkPDwwM4RBDR8DtawcF4v42tw8PEww/fmBHTv5uBzZUCdG/Dw8WDOfnT0WG8pQFJd4EVtAPDwwNbWkGQpx08Aan/Pv9wg8PDA7VsSFLnXnlBzBCBEe/Dw8ZDijNIUf13HkHLBcEtrwPDwsOt5UmQyy+DgdhMPnAzA8PGA5q3UVRD7aKCCOa896fDw8fDh0b9VEOIZ0I1aH3opcPDyEOrLEhSyPsDAa7QwP3yA8PGRTRlyZDa2NoBYrJ+jHXDw8YFGHMIUdZd7oFNSMDicIPDwsU","preamble":85,"sender":22963,"header":{"t":{"tow":271510000,"ns_residual":0,"wn":2098},"n_obs":66},"obs":[{"P":1293172964,"L":{"i":134677821,"f":92},"D":{"i":1329,"f":63},"cn0":156,"lock":15,"flags":15,"sid":{"sat":25,"code":12}},{"P":1162864683,"L":{"i":121106833,"f":56},"D":{"i":1611,"f":196},"cn0":185,"lock":15,"flags":15,"sid":{"sat":12,"code":12}},{"P":1195577569,"L":{"i":124513728,"f":5},"D":{"i":-286,"f":54},"cn0":183,"lock":15,"flags":15,"sid":{"sat":19,"code":12}},{"P":1197506111,"L":{"i":124714574,"f":54},"D":{"i":2388,"f":209},"cn0":191,"lock":15,"flags":15,"sid":{"sat":22,"code":12}},{"P":1162864615,"L":{"i":93647494,"f":37},"D":{"i":1246,"f":86},"cn0":208,"lock":15,"flags":15,"sid":{"sat":12,"code":13}},{"P":1107716461,"L":{"i":116421788,"f":167},"D":{"i":-1028,"f":253},"cn0":194,"lock":15,"flags":15,"sid":{"sat":12,"code":14}},{"P":1260499413,"L":{"i":132479389,"f":48},"D":{"i":1090,"f":71},"cn0":191,"lock":15,"flags":15,"sid":{"sat":25,"code":14}},{"P":1193397544,"L":{"i":125426933,"f":44},"D":{"i":1047,"f":182},"cn0":188,"lock":15,"flags":15,"sid":{"sat":11,"code":14}},{"P":1126602167,"L":{"i":118406700,"f":97},"D":{"i":-1744,"f":192},"cn0":204,"lock":15,"flags":15,"sid":{"sat":24,"code":14}},{"P":1363533162,"L":{"i":143308303,"f":35},"D":{"i":-3174,"f":222},"cn0":159,"lock":15,"flags":15,"sid":{"sat":31,"code":14}},{"P":1375017757,"L":{"i":144515342,"f":213},"D":{"i":-2143,"f":162},"cn0":151,"lock":15,"flags":15,"sid":{"sat":33,"code":14}},{"P":1260499372,"L":{"i":101510179,"f":187},"D":{"i":835,"f":247},"cn0":200,"lock":15,"flags":15,"sid":{"sat":25,"code":20}},{"P":1126602705,"L":{"i":90727275,"f":138},"D":{"i":-1335,"f":49},"cn0":215,"lock":15,"flags":15,"sid":{"sat":24,"code":20}},{"P":1193397345,"L":{"i":96106329,"f":53},"D":{"i":803,"f":137},"cn0":194,"lock":15,"flags":15,"sid":{"sat":11,"code":20}}]} +{"crc":3887,"length":62,"msg_type":74,"payload":"8OkuEAAAAAAyCEOl3UVRVoiLBmCD9nytDw8fFNFoBkJALlEFMOz8y88PDwwU9xr1UT2lmQbrmflCqQ8PIRQ=","preamble":85,"sender":22963,"header":{"t":{"tow":271510000,"ns_residual":0,"wn":2098},"n_obs":67},"obs":[{"P":1363533221,"L":{"i":109807702,"f":96},"D":{"i":-2429,"f":124},"cn0":173,"lock":15,"flags":15,"sid":{"sat":31,"code":20}},{"P":1107716305,"L":{"i":89206336,"f":48},"D":{"i":-788,"f":203},"cn0":207,"lock":15,"flags":15,"sid":{"sat":12,"code":20}},{"P":1375017719,"L":{"i":110732605,"f":235},"D":{"i":-1639,"f":66},"cn0":169,"lock":15,"flags":15,"sid":{"sat":33,"code":20}}]} +{"crc":49809,"length":9,"msg_type":117,"payload":"/wAAAAAAAAAA","preamble":85,"sender":22963,"mask":255,"l1ca_bias":0,"l1p_bias":0,"l2ca_bias":0,"l2p_bias":0} +{"crc":3367,"length":11,"msg_type":258,"payload":"Mgjw6S4QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271510000,"ns_residual":0,"flags":1} +{"crc":36719,"length":16,"msg_type":259,"payload":"EfDpLhDkBwMZAxgz/smaOw==","preamble":85,"sender":22963,"flags":17,"tow":271510000,"year":2020,"month":3,"day":25,"hours":3,"minutes":24,"seconds":51,"ns":999999998} +{"crc":12794,"length":34,"msg_type":522,"payload":"8OkuEF/ksudl6kJA/2lNHFaSXsDByzD6EIQxwAECWwQPBg==","preamble":85,"sender":22963,"tow":271510000,"lat":37.831234896039625,"lon":-122.28650577125516,"height":-17.515884053147378,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":34790,"length":22,"msg_type":526,"payload":"8OkuEAMAAAD0////8f////EAygIPAg==","preamble":85,"sender":22963,"tow":271510000,"n":3,"e":-12,"d":-15,"h_accuracy":241,"v_accuracy":714,"n_sats":15,"flags":2} +{"crc":31000,"length":15,"msg_type":520,"payload":"8OkuEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271510000,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":24319,"length":22,"msg_type":524,"payload":"8OkuEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271510000,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":6079,"length":6,"msg_type":528,"payload":"8OkuEP//","preamble":85,"sender":22963,"tow":271510000,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":40942,"length":4,"msg_type":65535,"payload":"AAUCgA==","preamble":85,"sender":22963,"flags":2147616000} +{"crc":2168,"length":24,"msg_type":72,"payload":"UO0a3iqORMHK1UJhIkRQwc9nFIPvrk1B","preamble":85,"sender":22963,"x":-2694229.735196747,"y":-4264073.519704292,"z":3890655.0240602265} +{"crc":47991,"length":26,"msg_type":23,"payload":"bWFpbgAAAAAAAAAAAAAAAAAAAAAAAAx1AAA=","preamble":85,"sender":22963,"name":"main\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":0,"stack_free":29964} +{"crc":16658,"length":26,"msg_type":23,"payload":"aWRsZQAAAAAAAAAAAAAAAAAAAABPAXwAAAA=","preamble":85,"sender":22963,"name":"idle\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":335,"stack_free":124} +{"crc":53198,"length":26,"msg_type":23,"payload":"cnBtc2cAAAAAAAAAAAAAAAAAAAABAOwNAAA=","preamble":85,"sender":22963,"name":"rpmsg\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":1,"stack_free":3564} +{"crc":51784,"length":26,"msg_type":23,"payload":"U0JQAAAAAAAAAAAAAAAAAAAAAAAAAPz/AAA=","preamble":85,"sender":22963,"name":"SBP\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":0,"stack_free":65532} +{"crc":33651,"length":26,"msg_type":23,"payload":"TkFQAAAAAAAAAAAAAAAAAAAAAAAAAASAAAA=","preamble":85,"sender":22963,"name":"NAP\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":0,"stack_free":32772} +{"crc":29877,"length":26,"msg_type":23,"payload":"bWFuYWdlIFBWAAAAAAAAAAAAAAAAACQEAAA=","preamble":85,"sender":22963,"name":"manage PV\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":0,"stack_free":1060} +{"crc":14252,"length":26,"msg_type":23,"payload":"SU1VAAAAAAAAAAAAAAAAAAAAAAAAAPQHAAA=","preamble":85,"sender":22963,"name":"IMU\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":0,"stack_free":2036} +{"crc":18976,"length":26,"msg_type":23,"payload":"SU1VIGF1eAAAAAAAAAAAAAAAAAAAAEwIAAA=","preamble":85,"sender":22963,"name":"IMU aux\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":0,"stack_free":2124} +{"crc":26120,"length":26,"msg_type":23,"payload":"bmRiAAAAAAAAAAAAAAAAAAAAAAAAAFAMAAA=","preamble":85,"sender":22963,"name":"ndb\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":0,"stack_free":3152} +{"crc":28320,"length":26,"msg_type":23,"payload":"TkFQIFRyYWNraW5nAAAAAAAAAAAhAdR3AAA=","preamble":85,"sender":22963,"name":"NAP Tracking\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":289,"stack_free":30676} +{"crc":40082,"length":26,"msg_type":23,"payload":"ZGVjb2RlAAAAAAAAAAAAAAAAAAAIANQGAAA=","preamble":85,"sender":22963,"name":"decode\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":8,"stack_free":1748} +{"crc":54765,"length":26,"msg_type":23,"payload":"bWFuYWdlIGFjcQAAAAAAAAAAAADOAKR3AAA=","preamble":85,"sender":22963,"name":"manage acq\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":206,"stack_free":30628} +{"crc":58531,"length":26,"msg_type":23,"payload":"c3lzdGVtIG1vbml0b3IAAAAAAAAAACwGAAA=","preamble":85,"sender":22963,"name":"system monitor\u0000\u0000\u0000\u0000\u0000\u0000","cpu":0,"stack_free":1580} +{"crc":44438,"length":26,"msg_type":23,"payload":"V2F0Y2hkb2cAAAAAAAAAAAAAAAAAAOQDAAA=","preamble":85,"sender":22963,"name":"Watchdog\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":0,"stack_free":996} +{"crc":15999,"length":26,"msg_type":23,"payload":"c3RhcmxpbmcAAAAAAAAAAAAAAACVAPz/AAA=","preamble":85,"sender":22963,"name":"starling\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":149,"stack_free":65532} +{"crc":57561,"length":26,"msg_type":23,"payload":"bWVfY2FsY19wdnQAAAAAAAAAAAAJAIwjAAA=","preamble":85,"sender":22963,"name":"me_calc_pvt\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":9,"stack_free":9100} +{"crc":38576,"length":26,"msg_type":23,"payload":"UFBTAAAAAAAAAAAAAAAAAAAAAAAAAEgHAAA=","preamble":85,"sender":22963,"name":"PPS\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":0,"stack_free":1864} +{"crc":50933,"length":26,"msg_type":23,"payload":"c3BlY3RydW0gYW5hbHl6ZXIAAAAAANQPAAA=","preamble":85,"sender":22963,"name":"spectrum analyzer\u0000\u0000\u0000","cpu":0,"stack_free":4052} +{"crc":16883,"length":11,"msg_type":258,"payload":"MghU6i4QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271510100,"ns_residual":0,"flags":1} +{"crc":58226,"length":16,"msg_type":259,"payload":"EVTqLhDkBwMZAxg0/uD1BQ==","preamble":85,"sender":22963,"flags":17,"tow":271510100,"year":2020,"month":3,"day":25,"hours":3,"minutes":24,"seconds":52,"ns":99999998} +{"crc":11734,"length":34,"msg_type":522,"payload":"VOouEBMxdudl6kJAeAEtHFaSXsD4QWWF+IUxwAECWwQPBg==","preamble":85,"sender":22963,"tow":271510100,"lat":37.83123486777381,"lon":-122.28650574107257,"height":-17.52332338068115,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":21008,"length":22,"msg_type":526,"payload":"VOouEP3////+////DAAAAPEAygIPAg==","preamble":85,"sender":22963,"tow":271510100,"n":-3,"e":-2,"d":12,"h_accuracy":241,"v_accuracy":714,"n_sats":15,"flags":2} +{"crc":42511,"length":15,"msg_type":520,"payload":"VOouEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271510100,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":18365,"length":22,"msg_type":524,"payload":"VOouEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271510100,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":7908,"length":6,"msg_type":528,"payload":"VOouEP//","preamble":85,"sender":22963,"tow":271510100,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":45940,"length":11,"msg_type":258,"payload":"Mgi46i4QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271510200,"ns_residual":0,"flags":1} +{"crc":52430,"length":16,"msg_type":259,"payload":"EbjqLhDkBwMZAxg0/sHrCw==","preamble":85,"sender":22963,"flags":17,"tow":271510200,"year":2020,"month":3,"day":25,"hours":3,"minutes":24,"seconds":52,"ns":199999998} +{"crc":59388,"length":34,"msg_type":522,"payload":"uOouEKsKRudl6kJAb0oEHFaSXsCA+KhvUogxwAECWwQPBg==","preamble":85,"sender":22963,"tow":271510200,"lat":37.831234845352206,"lon":-122.2865057031538,"height":-17.532507876160253,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":60075,"length":22,"msg_type":526,"payload":"uOouEAIAAAAJAAAAEgAAAPEAygIPAg==","preamble":85,"sender":22963,"tow":271510200,"n":2,"e":9,"d":18,"h_accuracy":241,"v_accuracy":714,"n_sats":15,"flags":2} +{"crc":63991,"length":15,"msg_type":520,"payload":"uOouEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271510200,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":47933,"length":22,"msg_type":524,"payload":"uOouEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271510200,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":40511,"length":6,"msg_type":528,"payload":"uOouEP//","preamble":85,"sender":22963,"tow":271510200,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":28678,"length":11,"msg_type":258,"payload":"Mggc6y4QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271510300,"ns_residual":0,"flags":1} +{"crc":31632,"length":16,"msg_type":259,"payload":"ERzrLhDkBwMZAxg0/qLhEQ==","preamble":85,"sender":22963,"flags":17,"tow":271510300,"year":2020,"month":3,"day":25,"hours":3,"minutes":24,"seconds":52,"ns":299999998} +{"crc":29052,"length":34,"msg_type":522,"payload":"HOsuENaICOdl6kJApybaG1aSXsBxMqZD4okxwAECWwQPBg==","preamble":85,"sender":22963,"tow":271510300,"lat":37.831234816710705,"lon":-122.28650566390807,"height":-17.538608768535088,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":56133,"length":22,"msg_type":526,"payload":"HOsuEAAAAAAEAAAA7/////EAygIPAg==","preamble":85,"sender":22963,"tow":271510300,"n":0,"e":4,"d":-17,"h_accuracy":241,"v_accuracy":714,"n_sats":15,"flags":2} +{"crc":53282,"length":15,"msg_type":520,"payload":"HOsuEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271510300,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":6578,"length":22,"msg_type":524,"payload":"HOsuEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271510300,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":54247,"length":6,"msg_type":528,"payload":"HOsuEP//","preamble":85,"sender":22963,"tow":271510300,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":63247,"length":237,"msg_type":97,"payload":"BQDUFQC0AgC8HwCmAAAAAAAAGQDZDADOHQDVEgDNAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwLNGQHMDAG7HwGYEgHDHQHCAAAABQHCAAAAAAAAAAAAAAAAZAPVYgOxZgOtZQPPXQPOAAAAagO2aAPKYgSqZgTNAAAAZATHZQTDaAS8AAAAagSwIwzHGgyoIgyeGAy8GQycDAy4Ewy3Fgy+AAAADA3QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADA7CAAAAGQ6/Cw68GA7MAAAAHw6fIQ6YGRTIGBTXCxTCHxStDBTOAAAAIRSpAAAA","preamble":85,"sender":22963,"states":[{"mesid":{"sat":5,"code":0},"cn0":212},{"mesid":{"sat":21,"code":0},"cn0":180},{"mesid":{"sat":2,"code":0},"cn0":188},{"mesid":{"sat":31,"code":0},"cn0":166},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":25,"code":0},"cn0":217},{"mesid":{"sat":12,"code":0},"cn0":206},{"mesid":{"sat":29,"code":0},"cn0":213},{"mesid":{"sat":18,"code":0},"cn0":205},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":131,"code":2},"cn0":205},{"mesid":{"sat":25,"code":1},"cn0":204},{"mesid":{"sat":12,"code":1},"cn0":187},{"mesid":{"sat":31,"code":1},"cn0":152},{"mesid":{"sat":18,"code":1},"cn0":195},{"mesid":{"sat":29,"code":1},"cn0":194},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":5,"code":1},"cn0":194},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":100,"code":3},"cn0":213},{"mesid":{"sat":98,"code":3},"cn0":177},{"mesid":{"sat":102,"code":3},"cn0":173},{"mesid":{"sat":101,"code":3},"cn0":207},{"mesid":{"sat":93,"code":3},"cn0":206},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":106,"code":3},"cn0":182},{"mesid":{"sat":104,"code":3},"cn0":202},{"mesid":{"sat":98,"code":4},"cn0":170},{"mesid":{"sat":102,"code":4},"cn0":205},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":100,"code":4},"cn0":199},{"mesid":{"sat":101,"code":4},"cn0":195},{"mesid":{"sat":104,"code":4},"cn0":188},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":106,"code":4},"cn0":176},{"mesid":{"sat":35,"code":12},"cn0":199},{"mesid":{"sat":26,"code":12},"cn0":168},{"mesid":{"sat":34,"code":12},"cn0":158},{"mesid":{"sat":24,"code":12},"cn0":188},{"mesid":{"sat":25,"code":12},"cn0":156},{"mesid":{"sat":12,"code":12},"cn0":184},{"mesid":{"sat":19,"code":12},"cn0":183},{"mesid":{"sat":22,"code":12},"cn0":190},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":12,"code":13},"cn0":208},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":12,"code":14},"cn0":194},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":25,"code":14},"cn0":191},{"mesid":{"sat":11,"code":14},"cn0":188},{"mesid":{"sat":24,"code":14},"cn0":204},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":31,"code":14},"cn0":159},{"mesid":{"sat":33,"code":14},"cn0":152},{"mesid":{"sat":25,"code":20},"cn0":200},{"mesid":{"sat":24,"code":20},"cn0":215},{"mesid":{"sat":11,"code":20},"cn0":194},{"mesid":{"sat":31,"code":20},"cn0":173},{"mesid":{"sat":12,"code":20},"cn0":206},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":33,"code":20},"cn0":169},{"mesid":{"sat":0,"code":0},"cn0":0}]} +{"crc":10586,"length":11,"msg_type":258,"payload":"MgiA6y4QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271510400,"ns_residual":0,"flags":1} +{"crc":41980,"length":16,"msg_type":259,"payload":"EYDrLhDkBwMZAxg0/oPXFw==","preamble":85,"sender":22963,"flags":17,"tow":271510400,"year":2020,"month":3,"day":25,"hours":3,"minutes":24,"seconds":52,"ns":399999998} +{"crc":22633,"length":34,"msg_type":522,"payload":"gOsuEByXw+Zl6kJAhyauG1aSXsB8Drk3PYsxwAECWwQPBg==","preamble":85,"sender":22963,"tow":271510400,"lat":37.83123478460604,"lon":-122.28650562292943,"height":-17.543902857475118,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":1640,"length":22,"msg_type":526,"payload":"gOsuEPr///8QAAAAHAAAAPEAygIPAg==","preamble":85,"sender":22963,"tow":271510400,"n":-6,"e":16,"d":28,"h_accuracy":241,"v_accuracy":714,"n_sats":15,"flags":2} +{"crc":30285,"length":15,"msg_type":520,"payload":"gOsuEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271510400,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":59267,"length":22,"msg_type":524,"payload":"gOsuEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271510400,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":5792,"length":6,"msg_type":528,"payload":"gOsuEP//","preamble":85,"sender":22963,"tow":271510400,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":49809,"length":9,"msg_type":117,"payload":"/wAAAAAAAAAA","preamble":85,"sender":22963,"mask":255,"l1ca_bias":0,"l1p_bias":0,"l2ca_bias":0,"l2p_bias":0} +{"crc":19856,"length":11,"msg_type":258,"payload":"Mgjk6y4QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271510500,"ns_residual":0,"flags":1} +{"crc":59136,"length":16,"msg_type":259,"payload":"EeTrLhDkBwMZAxg0/mTNHQ==","preamble":85,"sender":22963,"flags":17,"tow":271510500,"year":2020,"month":3,"day":25,"hours":3,"minutes":24,"seconds":52,"ns":499999998} +{"crc":56252,"length":34,"msg_type":522,"payload":"5OsuECzki+Zl6kJAKlCxG1aSXsD+D0Unw4sxwAECWwQPBg==","preamble":85,"sender":22963,"tow":271510500,"lat":37.83123475866918,"lon":-122.28650562587487,"height":-17.545946554528193,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":31107,"length":22,"msg_type":526,"payload":"5OsuEAgAAADv////DAAAAPEAygIPAg==","preamble":85,"sender":22963,"tow":271510500,"n":8,"e":-17,"d":12,"h_accuracy":241,"v_accuracy":714,"n_sats":15,"flags":2} +{"crc":23266,"length":15,"msg_type":520,"payload":"5OsuEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271510500,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":65333,"length":22,"msg_type":524,"payload":"5OsuEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271510500,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":20249,"length":6,"msg_type":528,"payload":"5OsuEP//","preamble":85,"sender":22963,"tow":271510500,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":10198,"length":11,"msg_type":258,"payload":"MghI7C4QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271510600,"ns_residual":0,"flags":1} +{"crc":42899,"length":16,"msg_type":259,"payload":"EUjsLhDkBwMZAxg0/kXDIw==","preamble":85,"sender":22963,"flags":17,"tow":271510600,"year":2020,"month":3,"day":25,"hours":3,"minutes":24,"seconds":52,"ns":599999998} +{"crc":31566,"length":34,"msg_type":522,"payload":"SOwuEFkRMOZl6kJAGoGiG1aSXsA0br0P3IkxwAECWwQPBg==","preamble":85,"sender":22963,"tow":271510600,"lat":37.83123471591052,"lon":-122.28650561208306,"height":-17.538514121768642,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":40899,"length":22,"msg_type":526,"payload":"SOwuEPj///8CAAAAzv////EAygIPAg==","preamble":85,"sender":22963,"tow":271510600,"n":-8,"e":2,"d":-50,"h_accuracy":241,"v_accuracy":714,"n_sats":15,"flags":2} +{"crc":24341,"length":15,"msg_type":520,"payload":"SOwuEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271510600,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":57199,"length":22,"msg_type":524,"payload":"SOwuEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271510600,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":49670,"length":6,"msg_type":528,"payload":"SOwuEP//","preamble":85,"sender":22963,"tow":271510600,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":17420,"length":34,"msg_type":30583,"payload":"gwLL6y4QAlf/ABf/AB////f/f///f/f//+AB5edV7m7lcA==","preamble":85,"sender":22963,"sid":{"sat":131,"code":2},"tow":271510475,"message_type":2,"data":[87,255,0,23,255,0,31,255,255,247,255,127,255,255,127,247,255,255,224,1,229,231,85,238,110,229,112]} +{"crc":64686,"length":11,"msg_type":258,"payload":"Mgis7C4QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271510700,"ns_residual":0,"flags":1} +{"crc":23501,"length":16,"msg_type":259,"payload":"EazsLhDkBwMZAxg0/ia5KQ==","preamble":85,"sender":22963,"flags":17,"tow":271510700,"year":2020,"month":3,"day":25,"hours":3,"minutes":24,"seconds":52,"ns":699999998} +{"crc":14273,"length":34,"msg_type":522,"payload":"rOwuEPe9wOVl6kJARBWjG1aSXsCF0b+V34kxwAECWwQPBg==","preamble":85,"sender":22963,"tow":271510700,"lat":37.83123466407044,"lon":-122.28650561262208,"height":-17.53856788571422,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":27720,"length":22,"msg_type":526,"payload":"rOwuEAIAAAD7////JgAAAPEAygIPAg==","preamble":85,"sender":22963,"tow":271510700,"n":2,"e":-5,"d":38,"h_accuracy":241,"v_accuracy":714,"n_sats":15,"flags":2} +{"crc":10152,"length":15,"msg_type":520,"payload":"rOwuEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271510700,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":32076,"length":22,"msg_type":524,"payload":"rOwuEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271510700,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":20383,"length":6,"msg_type":528,"payload":"rOwuEP//","preamble":85,"sender":22963,"tow":271510700,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":17885,"length":11,"msg_type":258,"payload":"MggQ7S4QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271510800,"ns_residual":0,"flags":1} +{"crc":25394,"length":16,"msg_type":259,"payload":"ERDtLhDkBwMZAxg0/gevLw==","preamble":85,"sender":22963,"flags":17,"tow":271510800,"year":2020,"month":3,"day":25,"hours":3,"minutes":24,"seconds":52,"ns":799999998} +{"crc":36081,"length":34,"msg_type":522,"payload":"EO0uEF4TYeVl6kJA6TGiG1aSXsDs72PQ6YgxwAECWwQPBg==","preamble":85,"sender":22963,"tow":271510800,"lat":37.831234619522306,"lon":-122.28650561179496,"height":-17.534817718886117,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":17132,"length":22,"msg_type":526,"payload":"EO0uEAIAAAD+////+f////EAygIPAg==","preamble":85,"sender":22963,"tow":271510800,"n":2,"e":-2,"d":-7,"h_accuracy":241,"v_accuracy":714,"n_sats":15,"flags":2} +{"crc":26546,"length":15,"msg_type":520,"payload":"EO0uEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271510800,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":15398,"length":22,"msg_type":524,"payload":"EO0uEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271510800,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":5505,"length":6,"msg_type":528,"payload":"EO0uEP//","preamble":85,"sender":22963,"tow":271510800,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":34743,"length":237,"msg_type":97,"payload":"BQDUFQCzAgC8HwClAAAAAAAAGQDYDADNHQDUEgDNAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwLMGQHMDAG7HwGYEgHDHQHCAAAABQHCAAAAAAAAAAAAAAAACwPUCQOxFAOtBQPOCgPOAAAABAO1FQPJCQSqFATNAAAACwTHBQTDAAS8AAAABASwIwzHGgyoIgydGAy8GQycDAy4Ewy3Fgy+AAAADA3QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADA7CAAAAGQ6+Cw68GA7LAAAAHw6fIQ6YGRTIGBTXCxTBHxStDBTOAAAAIRSoAAAA","preamble":85,"sender":22963,"states":[{"mesid":{"sat":5,"code":0},"cn0":212},{"mesid":{"sat":21,"code":0},"cn0":179},{"mesid":{"sat":2,"code":0},"cn0":188},{"mesid":{"sat":31,"code":0},"cn0":165},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":25,"code":0},"cn0":216},{"mesid":{"sat":12,"code":0},"cn0":205},{"mesid":{"sat":29,"code":0},"cn0":212},{"mesid":{"sat":18,"code":0},"cn0":205},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":131,"code":2},"cn0":204},{"mesid":{"sat":25,"code":1},"cn0":204},{"mesid":{"sat":12,"code":1},"cn0":187},{"mesid":{"sat":31,"code":1},"cn0":152},{"mesid":{"sat":18,"code":1},"cn0":195},{"mesid":{"sat":29,"code":1},"cn0":194},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":5,"code":1},"cn0":194},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":11,"code":3},"cn0":212},{"mesid":{"sat":9,"code":3},"cn0":177},{"mesid":{"sat":20,"code":3},"cn0":173},{"mesid":{"sat":5,"code":3},"cn0":206},{"mesid":{"sat":10,"code":3},"cn0":206},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":4,"code":3},"cn0":181},{"mesid":{"sat":21,"code":3},"cn0":201},{"mesid":{"sat":9,"code":4},"cn0":170},{"mesid":{"sat":20,"code":4},"cn0":205},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":11,"code":4},"cn0":199},{"mesid":{"sat":5,"code":4},"cn0":195},{"mesid":{"sat":0,"code":4},"cn0":188},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":4,"code":4},"cn0":176},{"mesid":{"sat":35,"code":12},"cn0":199},{"mesid":{"sat":26,"code":12},"cn0":168},{"mesid":{"sat":34,"code":12},"cn0":157},{"mesid":{"sat":24,"code":12},"cn0":188},{"mesid":{"sat":25,"code":12},"cn0":156},{"mesid":{"sat":12,"code":12},"cn0":184},{"mesid":{"sat":19,"code":12},"cn0":183},{"mesid":{"sat":22,"code":12},"cn0":190},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":12,"code":13},"cn0":208},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":12,"code":14},"cn0":194},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":25,"code":14},"cn0":190},{"mesid":{"sat":11,"code":14},"cn0":188},{"mesid":{"sat":24,"code":14},"cn0":203},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":31,"code":14},"cn0":159},{"mesid":{"sat":33,"code":14},"cn0":152},{"mesid":{"sat":25,"code":20},"cn0":200},{"mesid":{"sat":24,"code":20},"cn0":215},{"mesid":{"sat":11,"code":20},"cn0":193},{"mesid":{"sat":31,"code":20},"cn0":173},{"mesid":{"sat":12,"code":20},"cn0":206},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":33,"code":20},"cn0":168},{"mesid":{"sat":0,"code":0},"cn0":0}]} +{"crc":41336,"length":136,"msg_type":151,"payload":"AgAaHgUALDUMAFEtFQB9GRkAbUYaAKEBHQChNx8AlQ4EAxYWBQMyIQYDTggJA18OCgNxKQsDmCUMA6oDEwMiBxQDCzEVA5UlDAyUKRMMIyAUDA8CFgxDIxgMgiMZDJ0OGgxnFR0MLAAiDI4RIwwiLQsOizIMDg88GA5sNhkOlykfDlURIQ4fDw==","preamble":85,"sender":22963,"azel":[{"sid":{"sat":2,"code":0},"az":26,"el":30},{"sid":{"sat":5,"code":0},"az":44,"el":53},{"sid":{"sat":12,"code":0},"az":81,"el":45},{"sid":{"sat":21,"code":0},"az":125,"el":25},{"sid":{"sat":25,"code":0},"az":109,"el":70},{"sid":{"sat":26,"code":0},"az":161,"el":1},{"sid":{"sat":29,"code":0},"az":161,"el":55},{"sid":{"sat":31,"code":0},"az":149,"el":14},{"sid":{"sat":4,"code":3},"az":22,"el":22},{"sid":{"sat":5,"code":3},"az":50,"el":33},{"sid":{"sat":6,"code":3},"az":78,"el":8},{"sid":{"sat":9,"code":3},"az":95,"el":14},{"sid":{"sat":10,"code":3},"az":113,"el":41},{"sid":{"sat":11,"code":3},"az":152,"el":37},{"sid":{"sat":12,"code":3},"az":170,"el":3},{"sid":{"sat":19,"code":3},"az":34,"el":7},{"sid":{"sat":20,"code":3},"az":11,"el":49},{"sid":{"sat":21,"code":3},"az":149,"el":37},{"sid":{"sat":12,"code":12},"az":148,"el":41},{"sid":{"sat":19,"code":12},"az":35,"el":32},{"sid":{"sat":20,"code":12},"az":15,"el":2},{"sid":{"sat":22,"code":12},"az":67,"el":35},{"sid":{"sat":24,"code":12},"az":130,"el":35},{"sid":{"sat":25,"code":12},"az":157,"el":14},{"sid":{"sat":26,"code":12},"az":103,"el":21},{"sid":{"sat":29,"code":12},"az":44,"el":0},{"sid":{"sat":34,"code":12},"az":142,"el":17},{"sid":{"sat":35,"code":12},"az":34,"el":45},{"sid":{"sat":11,"code":14},"az":139,"el":50},{"sid":{"sat":12,"code":14},"az":15,"el":60},{"sid":{"sat":24,"code":14},"az":108,"el":54},{"sid":{"sat":25,"code":14},"az":151,"el":41},{"sid":{"sat":31,"code":14},"az":85,"el":17},{"sid":{"sat":33,"code":14},"az":31,"el":15}]} +{"crc":8471,"length":11,"msg_type":258,"payload":"Mgh07S4QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271510900,"ns_residual":0,"flags":1} +{"crc":44060,"length":16,"msg_type":259,"payload":"EXTtLhDkBwMZAxg0/uikNQ==","preamble":85,"sender":22963,"flags":17,"tow":271510900,"year":2020,"month":3,"day":25,"hours":3,"minutes":24,"seconds":52,"ns":899999998} +{"crc":7911,"length":34,"msg_type":522,"payload":"dO0uEBvC7uRl6kJAZo+QG1aSXsC63gzs8IcxwAECWwQPBg==","preamble":85,"sender":22963,"tow":271510900,"lat":37.831234566289105,"lon":-122.28650559537127,"height":-17.531019929067703,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":3700,"length":22,"msg_type":526,"payload":"dO0uEPX///8IAAAACgAAAPEAygIPAg==","preamble":85,"sender":22963,"tow":271510900,"n":-11,"e":8,"d":10,"h_accuracy":241,"v_accuracy":714,"n_sats":15,"flags":2} +{"crc":19229,"length":15,"msg_type":520,"payload":"dO0uEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271510900,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":9360,"length":22,"msg_type":524,"payload":"dO0uEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271510900,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":19512,"length":6,"msg_type":528,"payload":"dO0uEP//","preamble":85,"sender":22963,"tow":271510900,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":3838,"length":249,"msg_type":74,"payload":"2O0uEAAAAAAyCEA147M+ohCXBjtM/wXUDw8FAP0WGEXgB0MHZH4I2rQPDxUAxiDxRZ7XWQebT/Z9vA8PAgCJVgJJJV6sB/V1/gqlDw8fAGpoJT00L20Gkpz7QdkPDxkAUWyzQOXTzAYGa/SuzQ8PDAC0adE+AyuaBhLNBanVDw8dAKxoJT1R9gEFaJL838wPDxkBCWyzQFd9TAUS+fYtuw8PDAFCVgJJHK36BaPN/qaYDw8fAVRp0T6ZAyUF0oUEmsMPDx0B9OKzPraYIgVFcv/8wg8PBQGKBP0+OVi7BreSBIXVDw8LA4s100RatlkHj8juEbEPDwkD","preamble":85,"sender":22963,"header":{"t":{"tow":271511000,"ns_residual":0,"wn":2098},"n_obs":64},"obs":[{"P":1051976501,"L":{"i":110563490,"f":59},"D":{"i":-180,"f":5},"cn0":212,"lock":15,"flags":15,"sid":{"sat":5,"code":0}},{"P":1159206653,"L":{"i":121833440,"f":100},"D":{"i":2174,"f":218},"cn0":180,"lock":15,"flags":15,"sid":{"sat":21,"code":0}},{"P":1173430470,"L":{"i":123328414,"f":155},"D":{"i":-2481,"f":125},"cn0":188,"lock":15,"flags":15,"sid":{"sat":2,"code":0}},{"P":1224889993,"L":{"i":128736805,"f":245},"D":{"i":-395,"f":10},"cn0":165,"lock":15,"flags":15,"sid":{"sat":31,"code":0}},{"P":1025861738,"L":{"i":107818804,"f":146},"D":{"i":-1124,"f":65},"cn0":217,"lock":15,"flags":15,"sid":{"sat":25,"code":0}},{"P":1085500497,"L":{"i":114086885,"f":6},"D":{"i":-2965,"f":174},"cn0":205,"lock":15,"flags":15,"sid":{"sat":12,"code":0}},{"P":1053911476,"L":{"i":110766851,"f":18},"D":{"i":1485,"f":169},"cn0":213,"lock":15,"flags":15,"sid":{"sat":29,"code":0}},{"P":1025861804,"L":{"i":84014673,"f":104},"D":{"i":-878,"f":223},"cn0":204,"lock":15,"flags":15,"sid":{"sat":25,"code":1}},{"P":1085500425,"L":{"i":88898903,"f":18},"D":{"i":-2311,"f":45},"cn0":187,"lock":15,"flags":15,"sid":{"sat":12,"code":1}},{"P":1224889922,"L":{"i":100314396,"f":163},"D":{"i":-307,"f":166},"cn0":152,"lock":15,"flags":15,"sid":{"sat":31,"code":1}},{"P":1053911380,"L":{"i":86311833,"f":210},"D":{"i":1157,"f":154},"cn0":195,"lock":15,"flags":15,"sid":{"sat":29,"code":1}},{"P":1051976436,"L":{"i":86153398,"f":69},"D":{"i":-142,"f":252},"cn0":194,"lock":15,"flags":15,"sid":{"sat":5,"code":1}},{"P":1056769162,"L":{"i":112941113,"f":183},"D":{"i":1170,"f":133},"cn0":213,"lock":15,"flags":15,"sid":{"sat":11,"code":3}},{"P":1154692491,"L":{"i":123319898,"f":143},"D":{"i":-4408,"f":17},"cn0":177,"lock":15,"flags":15,"sid":{"sat":9,"code":3}}]} +{"crc":33326,"length":249,"msg_type":74,"payload":"2O0uEAAAAAAyCEGFyyw9H+iKBs1G+2itDw8UA2BICkDAvNgGBJgI+s8PDwUDTOhjPiHJpgaxHvTbzg8PCgOwsgZDb64tB7nf+ke1Dw8EA/FnKz/dusIG91cGmskPDxUDCTbTRN6NtwVLnfIhqg8PCQT0zCw9rrQWBT1U/ATNDw8UBJcF/T4aYTwFxYwDn8cPDwsEiUkKQHw9UwWwrwa9wg8PBQRPswZDvk6VBeUC/IuwDw8EBNmAlEWJFj8HxSX6VscPDyMMMvvxSbB3swdqQPQMqA8PGgwtlxdMCbXsBxPJCGGdDw8iDIfcn0fCl3UHQOv6mrwPDxgM","preamble":85,"sender":22963,"header":{"t":{"tow":271511000,"ns_residual":0,"wn":2098},"n_obs":65},"obs":[{"P":1026345861,"L":{"i":109766687,"f":205},"D":{"i":-1210,"f":104},"cn0":173,"lock":15,"flags":15,"sid":{"sat":20,"code":3}},{"P":1074415712,"L":{"i":114867392,"f":4},"D":{"i":2200,"f":250},"cn0":207,"lock":15,"flags":15,"sid":{"sat":5,"code":3}},{"P":1046734924,"L":{"i":111593761,"f":177},"D":{"i":-3042,"f":219},"cn0":206,"lock":15,"flags":15,"sid":{"sat":10,"code":3}},{"P":1124512432,"L":{"i":120434287,"f":185},"D":{"i":-1313,"f":71},"cn0":181,"lock":15,"flags":15,"sid":{"sat":4,"code":3}},{"P":1059809265,"L":{"i":113425117,"f":247},"D":{"i":1623,"f":154},"cn0":201,"lock":15,"flags":15,"sid":{"sat":21,"code":3}},{"P":1154692617,"L":{"i":95915486,"f":75},"D":{"i":-3427,"f":33},"cn0":170,"lock":15,"flags":15,"sid":{"sat":9,"code":4}},{"P":1026346228,"L":{"i":85374126,"f":61},"D":{"i":-940,"f":4},"cn0":205,"lock":15,"flags":15,"sid":{"sat":20,"code":4}},{"P":1056769431,"L":{"i":87843098,"f":197},"D":{"i":908,"f":159},"cn0":199,"lock":15,"flags":15,"sid":{"sat":11,"code":4}},{"P":1074416009,"L":{"i":89341308,"f":176},"D":{"i":1711,"f":189},"cn0":194,"lock":15,"flags":15,"sid":{"sat":5,"code":4}},{"P":1124512591,"L":{"i":93671102,"f":229},"D":{"i":-1022,"f":139},"cn0":176,"lock":15,"flags":15,"sid":{"sat":4,"code":4}},{"P":1167360217,"L":{"i":121575049,"f":197},"D":{"i":-1499,"f":86},"cn0":199,"lock":15,"flags":15,"sid":{"sat":35,"code":12}},{"P":1240595250,"L":{"i":129202096,"f":106},"D":{"i":-3008,"f":12},"cn0":168,"lock":15,"flags":15,"sid":{"sat":26,"code":12}},{"P":1276614445,"L":{"i":132953353,"f":19},"D":{"i":2249,"f":97},"cn0":157,"lock":15,"flags":15,"sid":{"sat":34,"code":12}},{"P":1201659015,"L":{"i":125147074,"f":64},"D":{"i":-1301,"f":154},"cn0":188,"lock":15,"flags":15,"sid":{"sat":24,"code":12}}]} +{"crc":21082,"length":249,"msg_type":74,"payload":"2O0uEAAAAAAyCEIZDxRNDQAHCLUtBcqcDw8ZDLGrT0VE6zcHlUoGi7gPDwwMoRtDR97uawdo3/6ptw8PEwySJGBH+PRuB8NTCdi+Dw8WDGqrT0Wn7ZQFJ90EidAPDwwNi48GQp548Aan/fsXwg8PDA5DiSFLWnXlB4VCBES/Dw8ZDi2mIUfc2HkHuxcEGbwPDwsOddYmQ/rEDgddMflBzA8PGA5SU0ZRcsKKCPqa8yWfDw8fDq9q9VFrKZ0IqKP3e5gPDyEOJIkhS+DoDAYEQwMeyA8PGRST2CZDomhoBU3I+j/XDw8YFGilIUc1dLoF3SMD/sEPDwsU","preamble":85,"sender":22963,"header":{"t":{"tow":271511000,"ns_residual":0,"wn":2098},"n_obs":66},"obs":[{"P":1293160217,"L":{"i":134676493,"f":181},"D":{"i":1325,"f":202},"cn0":156,"lock":15,"flags":15,"sid":{"sat":25,"code":12}},{"P":1162849201,"L":{"i":121105220,"f":149},"D":{"i":1610,"f":139},"cn0":184,"lock":15,"flags":15,"sid":{"sat":12,"code":12}},{"P":1195580321,"L":{"i":124514014,"f":104},"D":{"i":-289,"f":169},"cn0":183,"lock":15,"flags":15,"sid":{"sat":19,"code":12}},{"P":1197483154,"L":{"i":124712184,"f":195},"D":{"i":2387,"f":216},"cn0":190,"lock":15,"flags":15,"sid":{"sat":22,"code":12}},{"P":1162849130,"L":{"i":93646247,"f":39},"D":{"i":1245,"f":137},"cn0":208,"lock":15,"flags":15,"sid":{"sat":12,"code":13}},{"P":1107726219,"L":{"i":116422814,"f":167},"D":{"i":-1027,"f":23},"cn0":194,"lock":15,"flags":15,"sid":{"sat":12,"code":14}},{"P":1260489027,"L":{"i":132478298,"f":133},"D":{"i":1090,"f":68},"cn0":191,"lock":15,"flags":15,"sid":{"sat":25,"code":14}},{"P":1193387565,"L":{"i":125425884,"f":187},"D":{"i":1047,"f":25},"cn0":188,"lock":15,"flags":15,"sid":{"sat":11,"code":14}},{"P":1126618741,"L":{"i":118408442,"f":93},"D":{"i":-1743,"f":65},"cn0":204,"lock":15,"flags":15,"sid":{"sat":24,"code":14}},{"P":1363563346,"L":{"i":143311474,"f":250},"D":{"i":-3174,"f":37},"cn0":159,"lock":15,"flags":15,"sid":{"sat":31,"code":14}},{"P":1375038127,"L":{"i":144517483,"f":168},"D":{"i":-2141,"f":123},"cn0":152,"lock":15,"flags":15,"sid":{"sat":33,"code":14}},{"P":1260488996,"L":{"i":101509344,"f":4},"D":{"i":835,"f":30},"cn0":200,"lock":15,"flags":15,"sid":{"sat":25,"code":20}},{"P":1126619283,"L":{"i":90728610,"f":77},"D":{"i":-1336,"f":63},"cn0":215,"lock":15,"flags":15,"sid":{"sat":24,"code":20}},{"P":1193387368,"L":{"i":96105525,"f":221},"D":{"i":803,"f":254},"cn0":193,"lock":15,"flags":15,"sid":{"sat":11,"code":20}}]} +{"crc":14455,"length":62,"msg_type":74,"payload":"2O0uEAAAAAAyCEOHU0ZR1JGLBr6A9iStDw8fFPSOBkJSMVEFWe38ys4PDwwUhWr1UaarmQZDlvlJqQ8PIRQ=","preamble":85,"sender":22963,"header":{"t":{"tow":271511000,"ns_residual":0,"wn":2098},"n_obs":67},"obs":[{"P":1363563399,"L":{"i":109810132,"f":190},"D":{"i":-2432,"f":36},"cn0":173,"lock":15,"flags":15,"sid":{"sat":31,"code":20}},{"P":1107726068,"L":{"i":89207122,"f":89},"D":{"i":-787,"f":202},"cn0":206,"lock":15,"flags":15,"sid":{"sat":12,"code":20}},{"P":1375038085,"L":{"i":110734246,"f":67},"D":{"i":-1642,"f":73},"cn0":169,"lock":15,"flags":15,"sid":{"sat":33,"code":20}}]} +{"crc":49809,"length":9,"msg_type":117,"payload":"/wAAAAAAAAAA","preamble":85,"sender":22963,"mask":255,"l1ca_bias":0,"l1p_bias":0,"l2ca_bias":0,"l2p_bias":0} +{"crc":35913,"length":11,"msg_type":258,"payload":"MgjY7S4QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271511000,"ns_residual":0,"flags":1} +{"crc":44879,"length":16,"msg_type":259,"payload":"EdjtLhDkBwMZAxg0/smaOw==","preamble":85,"sender":22963,"flags":17,"tow":271511000,"year":2020,"month":3,"day":25,"hours":3,"minutes":24,"seconds":52,"ns":999999998} +{"crc":11783,"length":34,"msg_type":522,"payload":"2O0uEOgsiORl6kJAT2aPG1aSXsBpkiTCvYcxwAECWwQPBg==","preamble":85,"sender":22963,"tow":271511000,"lat":37.83123451852026,"lon":-122.28650559429046,"height":-17.53023923294896,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":2099,"length":22,"msg_type":526,"payload":"2O0uEAAAAAD8////AgAAAPEAygIPAg==","preamble":85,"sender":22963,"tow":271511000,"n":0,"e":-4,"d":2,"h_accuracy":241,"v_accuracy":714,"n_sats":15,"flags":2} +{"crc":16108,"length":15,"msg_type":520,"payload":"2O0uEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271511000,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":3402,"length":22,"msg_type":524,"payload":"2O0uEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271511000,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":42739,"length":6,"msg_type":528,"payload":"2O0uEP//","preamble":85,"sender":22963,"tow":271511000,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":40942,"length":4,"msg_type":65535,"payload":"AAUCgA==","preamble":85,"sender":22963,"flags":2147616000} +{"crc":2168,"length":24,"msg_type":72,"payload":"UO0a3iqORMHK1UJhIkRQwc9nFIPvrk1B","preamble":85,"sender":22963,"x":-2694229.735196747,"y":-4264073.519704292,"z":3890655.0240602265} +{"crc":40772,"length":11,"msg_type":258,"payload":"Mgg87i4QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271511100,"ns_residual":0,"flags":1} +{"crc":9438,"length":16,"msg_type":259,"payload":"ETzuLhDkBwMZAxg1/uD1BQ==","preamble":85,"sender":22963,"flags":17,"tow":271511100,"year":2020,"month":3,"day":25,"hours":3,"minutes":24,"seconds":53,"ns":99999998} +{"crc":10589,"length":34,"msg_type":522,"payload":"PO4uEFLOJORl6kJA1dyAG1aSXsAofEGfxIYxwAECWwQPBg==","preamble":85,"sender":22963,"tow":271511100,"lat":37.83123447224774,"lon":-122.28650558075181,"height":-17.52643771504168,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":723,"length":22,"msg_type":526,"payload":"PO4uEAAAAAALAAAAAgAAAPEAygIPAg==","preamble":85,"sender":22963,"tow":271511100,"n":0,"e":11,"d":2,"h_accuracy":241,"v_accuracy":714,"n_sats":15,"flags":2} +{"crc":52210,"length":15,"msg_type":520,"payload":"PO4uEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271511100,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":49490,"length":22,"msg_type":524,"payload":"PO4uEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271511100,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":50616,"length":6,"msg_type":528,"payload":"PO4uEP//","preamble":85,"sender":22963,"tow":271511100,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":50712,"length":11,"msg_type":258,"payload":"Mgig7i4QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271511200,"ns_residual":0,"flags":1} +{"crc":62197,"length":16,"msg_type":259,"payload":"EaDuLhDkBwMZAxg1/sHrCw==","preamble":85,"sender":22963,"flags":17,"tow":271511200,"year":2020,"month":3,"day":25,"hours":3,"minutes":24,"seconds":53,"ns":199999998} +{"crc":33361,"length":34,"msg_type":522,"payload":"oO4uEDeA0eNl6kJA42mCG1aSXsByWYPpcoYxwAECWwQPBg==","preamble":85,"sender":22963,"tow":271511200,"lat":37.83123443345578,"lon":-122.28650558219628,"height":-17.525190920417522,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":45651,"length":22,"msg_type":526,"payload":"oO4uEAAAAAD5//////////EAygIPAg==","preamble":85,"sender":22963,"tow":271511200,"n":0,"e":-7,"d":-1,"h_accuracy":241,"v_accuracy":714,"n_sats":15,"flags":2} +{"crc":28061,"length":15,"msg_type":520,"payload":"oO4uEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271511200,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":16227,"length":22,"msg_type":524,"payload":"oO4uEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271511200,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":255,"length":6,"msg_type":528,"payload":"oO4uEP//","preamble":85,"sender":22963,"tow":271511200,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":1386,"length":11,"msg_type":258,"payload":"MggE7y4QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271511300,"ns_residual":0,"flags":1} +{"crc":17835,"length":16,"msg_type":259,"payload":"EQTvLhDkBwMZAxg1/qLhEQ==","preamble":85,"sender":22963,"flags":17,"tow":271511300,"year":2020,"month":3,"day":25,"hours":3,"minutes":24,"seconds":53,"ns":299999998} +{"crc":59145,"length":34,"msg_type":522,"payload":"BO8uEJmEhuNl6kJAOMWJG1aSXsC0M1mj94YxwAECWwQPBg==","preamble":85,"sender":22963,"tow":271511300,"lat":37.83123439853916,"lon":-122.2865055890478,"height":-17.527216157224487,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":461,"length":22,"msg_type":526,"payload":"BO8uEPj////x////9v////EAygIPAg==","preamble":85,"sender":22963,"tow":271511300,"n":-8,"e":-15,"d":-10,"h_accuracy":241,"v_accuracy":714,"n_sats":15,"flags":2} +{"crc":17480,"length":15,"msg_type":520,"payload":"BO8uEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271511300,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":40428,"length":22,"msg_type":524,"payload":"BO8uEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271511300,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":19751,"length":6,"msg_type":528,"payload":"BO8uEP//","preamble":85,"sender":22963,"tow":271511300,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":56052,"length":237,"msg_type":97,"payload":"BQDVFQC0AgC8HwCmAAAAAAAAGQDZDADOHQDVEgDNAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwLMGQHNDAG7HwGYEgHEHQHDAAAABQHCAAAAAAAAAAAAAAAAZAPVYgOxZgOtZQPPXQPOAAAAagO1aAPJYgSrZgTNAAAAZATHZQTDaAS8AAAAagSvIwzHGgyoIgyeGAy8GQycDAy4Ewy3Fgy+AAAADA3PAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADA7DAAAAGQ6/Cw68GA7MAAAAHw6fIQ6ZGRTIGBTXCxTBHxStDBTPAAAAIRSpAAAA","preamble":85,"sender":22963,"states":[{"mesid":{"sat":5,"code":0},"cn0":213},{"mesid":{"sat":21,"code":0},"cn0":180},{"mesid":{"sat":2,"code":0},"cn0":188},{"mesid":{"sat":31,"code":0},"cn0":166},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":25,"code":0},"cn0":217},{"mesid":{"sat":12,"code":0},"cn0":206},{"mesid":{"sat":29,"code":0},"cn0":213},{"mesid":{"sat":18,"code":0},"cn0":205},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":131,"code":2},"cn0":204},{"mesid":{"sat":25,"code":1},"cn0":205},{"mesid":{"sat":12,"code":1},"cn0":187},{"mesid":{"sat":31,"code":1},"cn0":152},{"mesid":{"sat":18,"code":1},"cn0":196},{"mesid":{"sat":29,"code":1},"cn0":195},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":5,"code":1},"cn0":194},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":100,"code":3},"cn0":213},{"mesid":{"sat":98,"code":3},"cn0":177},{"mesid":{"sat":102,"code":3},"cn0":173},{"mesid":{"sat":101,"code":3},"cn0":207},{"mesid":{"sat":93,"code":3},"cn0":206},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":106,"code":3},"cn0":181},{"mesid":{"sat":104,"code":3},"cn0":201},{"mesid":{"sat":98,"code":4},"cn0":171},{"mesid":{"sat":102,"code":4},"cn0":205},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":100,"code":4},"cn0":199},{"mesid":{"sat":101,"code":4},"cn0":195},{"mesid":{"sat":104,"code":4},"cn0":188},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":106,"code":4},"cn0":175},{"mesid":{"sat":35,"code":12},"cn0":199},{"mesid":{"sat":26,"code":12},"cn0":168},{"mesid":{"sat":34,"code":12},"cn0":158},{"mesid":{"sat":24,"code":12},"cn0":188},{"mesid":{"sat":25,"code":12},"cn0":156},{"mesid":{"sat":12,"code":12},"cn0":184},{"mesid":{"sat":19,"code":12},"cn0":183},{"mesid":{"sat":22,"code":12},"cn0":190},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":12,"code":13},"cn0":207},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":12,"code":14},"cn0":195},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":25,"code":14},"cn0":191},{"mesid":{"sat":11,"code":14},"cn0":188},{"mesid":{"sat":24,"code":14},"cn0":204},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":31,"code":14},"cn0":159},{"mesid":{"sat":33,"code":14},"cn0":153},{"mesid":{"sat":25,"code":20},"cn0":200},{"mesid":{"sat":24,"code":20},"cn0":215},{"mesid":{"sat":11,"code":20},"cn0":193},{"mesid":{"sat":31,"code":20},"cn0":173},{"mesid":{"sat":12,"code":20},"cn0":207},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":33,"code":20},"cn0":169},{"mesid":{"sat":0,"code":0},"cn0":0}]} +{"crc":18527,"length":11,"msg_type":258,"payload":"Mgho7y4QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271511400,"ns_residual":0,"flags":1} +{"crc":12354,"length":16,"msg_type":259,"payload":"EWjvLhDkBwMZAxg1/oPXFw==","preamble":85,"sender":22963,"flags":17,"tow":271511400,"year":2020,"month":3,"day":25,"hours":3,"minutes":24,"seconds":53,"ns":399999998} +{"crc":44591,"length":34,"msg_type":522,"payload":"aO8uEPqGMeNl6kJApqVsG1aSXsA4CjElSIcxwAECWwQPBg==","preamble":85,"sender":22963,"tow":271511400,"lat":37.83123435896228,"lon":-122.2865055619246,"height":-17.528444599602352,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":43187,"length":22,"msg_type":526,"payload":"aO8uEPP///8HAAAAFQAAAPEAygIPAg==","preamble":85,"sender":22963,"tow":271511400,"n":-13,"e":7,"d":21,"h_accuracy":241,"v_accuracy":714,"n_sats":15,"flags":2} +{"crc":20386,"length":15,"msg_type":520,"payload":"aO8uEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271511400,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":56313,"length":22,"msg_type":524,"payload":"aO8uEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271511400,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":6620,"length":6,"msg_type":528,"payload":"aO8uEP//","preamble":85,"sender":22963,"tow":271511400,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":49809,"length":9,"msg_type":117,"payload":"/wAAAAAAAAAA","preamble":85,"sender":22963,"mask":255,"l1ca_bias":0,"l1p_bias":0,"l2ca_bias":0,"l2p_bias":0} +{"crc":52478,"length":11,"msg_type":258,"payload":"MgjM7y4QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271511500,"ns_residual":0,"flags":1} +{"crc":2725,"length":16,"msg_type":259,"payload":"EczvLhDkBwMZAxg1/mTNHQ==","preamble":85,"sender":22963,"flags":17,"tow":271511500,"year":2020,"month":3,"day":25,"hours":3,"minutes":24,"seconds":53,"ns":499999998} +{"crc":38829,"length":34,"msg_type":522,"payload":"zO8uEOWAEeNl6kJAkY9oG1aSXsBtj6vvH4cxwAECWwQPBg==","preamble":85,"sender":22963,"tow":271511500,"lat":37.83123434405005,"lon":-122.28650555811898,"height":-17.527831057915524,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":21114,"length":22,"msg_type":526,"payload":"zO8uEAcAAAABAAAA/f////EAygIPAg==","preamble":85,"sender":22963,"tow":271511500,"n":7,"e":1,"d":-3,"h_accuracy":241,"v_accuracy":714,"n_sats":15,"flags":2} +{"crc":7446,"length":15,"msg_type":520,"payload":"zO8uEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271511500,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":44160,"length":22,"msg_type":524,"payload":"zO8uEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271511500,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":65109,"length":6,"msg_type":528,"payload":"zO8uEP//","preamble":85,"sender":22963,"tow":271511500,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":35313,"length":11,"msg_type":258,"payload":"Mggw8C4QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271511600,"ns_residual":0,"flags":1} +{"crc":809,"length":16,"msg_type":259,"payload":"ETDwLhDkBwMZAxg1/kXDIw==","preamble":85,"sender":22963,"flags":17,"tow":271511600,"year":2020,"month":3,"day":25,"hours":3,"minutes":24,"seconds":53,"ns":599999998} +{"crc":8380,"length":34,"msg_type":522,"payload":"MPAuELQi0OJl6kJAzSpqG1aSXsB3PEc1BoYxwAECWwQPBg==","preamble":85,"sender":22963,"tow":271511600,"lat":37.831234313610736,"lon":-122.28650555961504,"height":-17.523532228366516,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":37229,"length":22,"msg_type":526,"payload":"MPAuEAAAAAADAAAABQAAAPEAygIPAg==","preamble":85,"sender":22963,"tow":271511600,"n":0,"e":3,"d":5,"h_accuracy":241,"v_accuracy":714,"n_sats":15,"flags":2} +{"crc":20990,"length":15,"msg_type":520,"payload":"MPAuEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271511600,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":42365,"length":22,"msg_type":524,"payload":"MPAuEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271511600,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":1449,"length":6,"msg_type":528,"payload":"MPAuEP//","preamble":85,"sender":22963,"tow":271511600,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":3408,"length":11,"msg_type":258,"payload":"MgiU8C4QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271511700,"ns_residual":0,"flags":1} +{"crc":54654,"length":16,"msg_type":259,"payload":"EZTwLhDkBwMZAxg1/ia5KQ==","preamble":85,"sender":22963,"flags":17,"tow":271511700,"year":2020,"month":3,"day":25,"hours":3,"minutes":24,"seconds":53,"ns":699999998} +{"crc":60977,"length":34,"msg_type":522,"payload":"lPAuEFmRpeJl6kJABWVpG1aSXsBZmzjZWoQxwAECWwQPBg==","preamble":85,"sender":22963,"tow":271511700,"lat":37.83123429378856,"lon":-122.28650555889551,"height":-17.517011238403345,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":29191,"length":22,"msg_type":526,"payload":"lPAuEAEAAAAFAAAABAAAAPEAygIPAg==","preamble":85,"sender":22963,"tow":271511700,"n":1,"e":5,"d":4,"h_accuracy":241,"v_accuracy":714,"n_sats":15,"flags":2} +{"crc":842,"length":15,"msg_type":520,"payload":"lPAuEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271511700,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":53764,"length":22,"msg_type":524,"payload":"lPAuEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271511700,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":57888,"length":6,"msg_type":528,"payload":"lPAuEP//","preamble":85,"sender":22963,"tow":271511700,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":274,"length":34,"msg_type":30583,"payload":"gwLD7y4QHEwvai2sIEWLZ2/akQRGlmtKGBAIBI964/2JMA==","preamble":85,"sender":22963,"sid":{"sat":131,"code":2},"tow":271511491,"message_type":28,"data":[76,47,106,45,172,32,69,139,103,111,218,145,4,70,150,107,74,24,16,8,4,143,122,227,253,137,48]} +{"crc":16485,"length":11,"msg_type":258,"payload":"Mgj48C4QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271511800,"ns_residual":0,"flags":1} +{"crc":42609,"length":16,"msg_type":259,"payload":"EfjwLhDkBwMZAxg1/gevLw==","preamble":85,"sender":22963,"flags":17,"tow":271511800,"year":2020,"month":3,"day":25,"hours":3,"minutes":24,"seconds":53,"ns":799999998} +{"crc":9943,"length":34,"msg_type":522,"payload":"+PAuEIv8a+Jl6kJA7cZ1G1aSXsDcEkusYIMxwAECWwQPBg==","preamble":85,"sender":22963,"tow":271511800,"lat":37.831234266975194,"lon":-122.28650557042756,"height":-17.513193863228352,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":12572,"length":22,"msg_type":526,"payload":"+PAuEPf///8AAAAAAAAAAPEAygIPAg==","preamble":85,"sender":22963,"tow":271511800,"n":-9,"e":0,"d":0,"h_accuracy":241,"v_accuracy":714,"n_sats":15,"flags":2} +{"crc":2208,"length":15,"msg_type":520,"payload":"+PAuEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271511800,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":37905,"length":22,"msg_type":524,"payload":"+PAuEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271511800,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":46811,"length":6,"msg_type":528,"payload":"+PAuEP//","preamble":85,"sender":22963,"tow":271511800,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":31893,"length":237,"msg_type":97,"payload":"BQDWFQC1AgC9HwCnAAAAAAAAGQDaDADPHQDWEgDOAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwLNGQHNDAG8HwGZEgHEHQHEAAAABQHDAAAAAAAAAAAAAAAACwPVCQOyFAOtBQPPCgPPAAAABAO2FQPKCQSrFATNAAAACwTHBQTDAAS8AAAABASwIwzHGgypIgyeGAy8GQycDAy5Ewy3Fgy+AAAADA3PAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADA7DAAAAGQ7ACw69GA7NAAAAHw6gIQ6ZGRTIGBTXCxTCHxStDBTOAAAAIRSpAAAA","preamble":85,"sender":22963,"states":[{"mesid":{"sat":5,"code":0},"cn0":214},{"mesid":{"sat":21,"code":0},"cn0":181},{"mesid":{"sat":2,"code":0},"cn0":189},{"mesid":{"sat":31,"code":0},"cn0":167},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":25,"code":0},"cn0":218},{"mesid":{"sat":12,"code":0},"cn0":207},{"mesid":{"sat":29,"code":0},"cn0":214},{"mesid":{"sat":18,"code":0},"cn0":206},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":131,"code":2},"cn0":205},{"mesid":{"sat":25,"code":1},"cn0":205},{"mesid":{"sat":12,"code":1},"cn0":188},{"mesid":{"sat":31,"code":1},"cn0":153},{"mesid":{"sat":18,"code":1},"cn0":196},{"mesid":{"sat":29,"code":1},"cn0":196},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":5,"code":1},"cn0":195},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":11,"code":3},"cn0":213},{"mesid":{"sat":9,"code":3},"cn0":178},{"mesid":{"sat":20,"code":3},"cn0":173},{"mesid":{"sat":5,"code":3},"cn0":207},{"mesid":{"sat":10,"code":3},"cn0":207},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":4,"code":3},"cn0":182},{"mesid":{"sat":21,"code":3},"cn0":202},{"mesid":{"sat":9,"code":4},"cn0":171},{"mesid":{"sat":20,"code":4},"cn0":205},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":11,"code":4},"cn0":199},{"mesid":{"sat":5,"code":4},"cn0":195},{"mesid":{"sat":0,"code":4},"cn0":188},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":4,"code":4},"cn0":176},{"mesid":{"sat":35,"code":12},"cn0":199},{"mesid":{"sat":26,"code":12},"cn0":169},{"mesid":{"sat":34,"code":12},"cn0":158},{"mesid":{"sat":24,"code":12},"cn0":188},{"mesid":{"sat":25,"code":12},"cn0":156},{"mesid":{"sat":12,"code":12},"cn0":185},{"mesid":{"sat":19,"code":12},"cn0":183},{"mesid":{"sat":22,"code":12},"cn0":190},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":12,"code":13},"cn0":207},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":12,"code":14},"cn0":195},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":25,"code":14},"cn0":192},{"mesid":{"sat":11,"code":14},"cn0":189},{"mesid":{"sat":24,"code":14},"cn0":205},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":31,"code":14},"cn0":160},{"mesid":{"sat":33,"code":14},"cn0":153},{"mesid":{"sat":25,"code":20},"cn0":200},{"mesid":{"sat":24,"code":20},"cn0":215},{"mesid":{"sat":11,"code":20},"cn0":194},{"mesid":{"sat":31,"code":20},"cn0":173},{"mesid":{"sat":12,"code":20},"cn0":206},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":33,"code":20},"cn0":169},{"mesid":{"sat":0,"code":0},"cn0":0}]} +{"crc":41336,"length":136,"msg_type":151,"payload":"AgAaHgUALDUMAFEtFQB9GRkAbUYaAKEBHQChNx8AlQ4EAxYWBQMyIQYDTggJA18OCgNxKQsDmCUMA6oDEwMiBxQDCzEVA5UlDAyUKRMMIyAUDA8CFgxDIxgMgiMZDJ0OGgxnFR0MLAAiDI4RIwwiLQsOizIMDg88GA5sNhkOlykfDlURIQ4fDw==","preamble":85,"sender":22963,"azel":[{"sid":{"sat":2,"code":0},"az":26,"el":30},{"sid":{"sat":5,"code":0},"az":44,"el":53},{"sid":{"sat":12,"code":0},"az":81,"el":45},{"sid":{"sat":21,"code":0},"az":125,"el":25},{"sid":{"sat":25,"code":0},"az":109,"el":70},{"sid":{"sat":26,"code":0},"az":161,"el":1},{"sid":{"sat":29,"code":0},"az":161,"el":55},{"sid":{"sat":31,"code":0},"az":149,"el":14},{"sid":{"sat":4,"code":3},"az":22,"el":22},{"sid":{"sat":5,"code":3},"az":50,"el":33},{"sid":{"sat":6,"code":3},"az":78,"el":8},{"sid":{"sat":9,"code":3},"az":95,"el":14},{"sid":{"sat":10,"code":3},"az":113,"el":41},{"sid":{"sat":11,"code":3},"az":152,"el":37},{"sid":{"sat":12,"code":3},"az":170,"el":3},{"sid":{"sat":19,"code":3},"az":34,"el":7},{"sid":{"sat":20,"code":3},"az":11,"el":49},{"sid":{"sat":21,"code":3},"az":149,"el":37},{"sid":{"sat":12,"code":12},"az":148,"el":41},{"sid":{"sat":19,"code":12},"az":35,"el":32},{"sid":{"sat":20,"code":12},"az":15,"el":2},{"sid":{"sat":22,"code":12},"az":67,"el":35},{"sid":{"sat":24,"code":12},"az":130,"el":35},{"sid":{"sat":25,"code":12},"az":157,"el":14},{"sid":{"sat":26,"code":12},"az":103,"el":21},{"sid":{"sat":29,"code":12},"az":44,"el":0},{"sid":{"sat":34,"code":12},"az":142,"el":17},{"sid":{"sat":35,"code":12},"az":34,"el":45},{"sid":{"sat":11,"code":14},"az":139,"el":50},{"sid":{"sat":12,"code":14},"az":15,"el":60},{"sid":{"sat":24,"code":14},"az":108,"el":54},{"sid":{"sat":25,"code":14},"az":151,"el":41},{"sid":{"sat":31,"code":14},"az":85,"el":17},{"sid":{"sat":33,"code":14},"az":31,"el":15}]} +{"crc":33559,"length":11,"msg_type":258,"payload":"Mghc8S4QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271511900,"ns_residual":0,"flags":1} +{"crc":27685,"length":16,"msg_type":259,"payload":"EVzxLhDkBwMZAxg1/uikNQ==","preamble":85,"sender":22963,"flags":17,"tow":271511900,"year":2020,"month":3,"day":25,"hours":3,"minutes":24,"seconds":53,"ns":899999998} +{"crc":48206,"length":34,"msg_type":522,"payload":"XPEuEGZ1P+Jl6kJAS1+OG1aSXsD8njsCVoIxwAECWwQPBg==","preamble":85,"sender":22963,"tow":271511900,"lat":37.83123424624027,"lon":-122.28650559333362,"height":-17.509124888950268,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":54068,"length":22,"msg_type":526,"payload":"XPEuEPj////9////9/////EAygIPAg==","preamble":85,"sender":22963,"tow":271511900,"n":-8,"e":-3,"d":-9,"h_accuracy":241,"v_accuracy":714,"n_sats":15,"flags":2} +{"crc":8565,"length":15,"msg_type":520,"payload":"XPEuEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271511900,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":13982,"length":22,"msg_type":524,"payload":"XPEuEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271511900,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":64259,"length":6,"msg_type":528,"payload":"XPEuEP//","preamble":85,"sender":22963,"tow":271511900,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":18810,"length":249,"msg_type":74,"payload":"wPEuEAAAAAAyCEDo6bM+VRGXBvFM/77WDw8FAC3GF0Vh/0IHCoAIt7UPDxUA5HzxRUzhWQffUfZEvQ8PAgAZZQJJrl+sB5J3/gynDw8fACqSJT2YM20GN5z79doPDxkAkNqzQHrfzAYHavS0zw8PDAB8MtE+NSWaBknNBd/WDw8dAHOSJT28+QEF+ZP8z80PDxkBT9qzQF2GTAV4+fbuvA8PDAHMZAJJTq76BZ/N/rWZDw8fARgy0T4U/yQFD4cEG8QPDx0BoemzPkKZIgVOcv+7ww8PBQG92fw+p1O7Bm+SBBTVDw8LA9bW00SRx1kHHcnu9LIPDwkD","preamble":85,"sender":22963,"header":{"t":{"tow":271512000,"ns_residual":0,"wn":2098},"n_obs":64},"obs":[{"P":1051978216,"L":{"i":110563669,"f":241},"D":{"i":-180,"f":190},"cn0":214,"lock":15,"flags":15,"sid":{"sat":5,"code":0}},{"P":1159185965,"L":{"i":121831265,"f":10},"D":{"i":2176,"f":183},"cn0":181,"lock":15,"flags":15,"sid":{"sat":21,"code":0}},{"P":1173454052,"L":{"i":123330892,"f":223},"D":{"i":-2479,"f":68},"cn0":189,"lock":15,"flags":15,"sid":{"sat":2,"code":0}},{"P":1224893721,"L":{"i":128737198,"f":146},"D":{"i":-393,"f":12},"cn0":167,"lock":15,"flags":15,"sid":{"sat":31,"code":0}},{"P":1025872426,"L":{"i":107819928,"f":55},"D":{"i":-1124,"f":245},"cn0":218,"lock":15,"flags":15,"sid":{"sat":25,"code":0}},{"P":1085528720,"L":{"i":114089850,"f":7},"D":{"i":-2966,"f":180},"cn0":207,"lock":15,"flags":15,"sid":{"sat":12,"code":0}},{"P":1053897340,"L":{"i":110765365,"f":73},"D":{"i":1485,"f":223},"cn0":214,"lock":15,"flags":15,"sid":{"sat":29,"code":0}},{"P":1025872499,"L":{"i":84015548,"f":249},"D":{"i":-877,"f":207},"cn0":205,"lock":15,"flags":15,"sid":{"sat":25,"code":1}},{"P":1085528655,"L":{"i":88901213,"f":120},"D":{"i":-2311,"f":238},"cn0":188,"lock":15,"flags":15,"sid":{"sat":12,"code":1}},{"P":1224893644,"L":{"i":100314702,"f":159},"D":{"i":-307,"f":181},"cn0":153,"lock":15,"flags":15,"sid":{"sat":31,"code":1}},{"P":1053897240,"L":{"i":86310676,"f":15},"D":{"i":1159,"f":27},"cn0":196,"lock":15,"flags":15,"sid":{"sat":29,"code":1}},{"P":1051978145,"L":{"i":86153538,"f":78},"D":{"i":-142,"f":187},"cn0":195,"lock":15,"flags":15,"sid":{"sat":5,"code":1}},{"P":1056758205,"L":{"i":112939943,"f":111},"D":{"i":1170,"f":20},"cn0":213,"lock":15,"flags":15,"sid":{"sat":11,"code":3}},{"P":1154733782,"L":{"i":123324305,"f":29},"D":{"i":-4407,"f":244},"cn0":178,"lock":15,"flags":15,"sid":{"sat":9,"code":3}}]} +{"crc":55295,"length":249,"msg_type":74,"payload":"wPEuEAAAAAAyCEHJ9yw92OyKBn9H+6qtDw8UA/r3CUAmtNgGZ5kIi88PDwUDx1dkPgLVpgaOHfTEzw8PCgNu4gZDj7MtB7Xg+ji2Dw8EA7IsKz+FtMIGulgGocoPDxUDRtfTREGbtwWgnPLiqg8PCQQw+Sw9WrgWBVVT/IPNDw8UBNDa/D6MXTwFkI4DHscPDwsELPkJQMw2UwVSrwZ5ww8PBQRX4wZDu1KVBVQF/F2wDw8EBAm5lEVjHD8Hyyb6GscPDyMMBWzySW+DswduQfRdqQ8PGgzCQhdMP6zsB8HKCGGeDw8iDEINoEfWnHUHMuv6R7wPDxgM","preamble":85,"sender":22963,"header":{"t":{"tow":271512000,"ns_residual":0,"wn":2098},"n_obs":65},"obs":[{"P":1026357193,"L":{"i":109767896,"f":127},"D":{"i":-1209,"f":170},"cn0":173,"lock":15,"flags":15,"sid":{"sat":20,"code":3}},{"P":1074395130,"L":{"i":114865190,"f":103},"D":{"i":2201,"f":139},"cn0":207,"lock":15,"flags":15,"sid":{"sat":5,"code":3}},{"P":1046763463,"L":{"i":111596802,"f":142},"D":{"i":-3043,"f":196},"cn0":207,"lock":15,"flags":15,"sid":{"sat":10,"code":3}},{"P":1124524654,"L":{"i":120435599,"f":181},"D":{"i":-1312,"f":56},"cn0":182,"lock":15,"flags":15,"sid":{"sat":4,"code":3}},{"P":1059794098,"L":{"i":113423493,"f":186},"D":{"i":1624,"f":161},"cn0":202,"lock":15,"flags":15,"sid":{"sat":21,"code":3}},{"P":1154733894,"L":{"i":95918913,"f":160},"D":{"i":-3428,"f":226},"cn0":170,"lock":15,"flags":15,"sid":{"sat":9,"code":4}},{"P":1026357552,"L":{"i":85375066,"f":85},"D":{"i":-941,"f":131},"cn0":205,"lock":15,"flags":15,"sid":{"sat":20,"code":4}},{"P":1056758480,"L":{"i":87842188,"f":144},"D":{"i":910,"f":30},"cn0":199,"lock":15,"flags":15,"sid":{"sat":11,"code":4}},{"P":1074395436,"L":{"i":89339596,"f":82},"D":{"i":1711,"f":121},"cn0":195,"lock":15,"flags":15,"sid":{"sat":5,"code":4}},{"P":1124524887,"L":{"i":93672123,"f":84},"D":{"i":-1019,"f":93},"cn0":176,"lock":15,"flags":15,"sid":{"sat":4,"code":4}},{"P":1167374601,"L":{"i":121576547,"f":203},"D":{"i":-1498,"f":26},"cn0":199,"lock":15,"flags":15,"sid":{"sat":35,"code":12}},{"P":1240624133,"L":{"i":129205103,"f":110},"D":{"i":-3007,"f":93},"cn0":169,"lock":15,"flags":15,"sid":{"sat":26,"code":12}},{"P":1276592834,"L":{"i":132951103,"f":193},"D":{"i":2250,"f":97},"cn0":158,"lock":15,"flags":15,"sid":{"sat":34,"code":12}},{"P":1201671490,"L":{"i":125148374,"f":50},"D":{"i":-1301,"f":71},"cn0":188,"lock":15,"flags":15,"sid":{"sat":24,"code":12}}]} +{"crc":41497,"length":249,"msg_type":74,"payload":"wPEuEAAAAAAyCEJD3RNN3voGCEAuBfScDw8ZDDVvT0X35DcHtE0GVrgPDwwMXiZDR/3vawcB4f5mtw8PEwzvyl9Ho+tuB01WCTy+Dw8WDOpuT0XH6JQF+d8EoM8PDwwNtLUGQqB88AZr/fv6ww8PDA66YCFLF3HlB/JBBNfADw8ZDjR/IUfE1HkHFhkEmb0PDwsOMxcnQ8jLDgdlMfnBzQ8PGA4hyUZR1s6KCICZ89KgDw8fDkS69VHIMZ0IDaX3bZkPDyEOm2AhS5zlDAZkQwOnyA8PGRRRGSdD2W1oBRzI+sbXDw8YFG1+IUcScboFWyIDTMEPDwsU","preamble":85,"sender":22963,"header":{"t":{"tow":271512000,"ns_residual":0,"wn":2098},"n_obs":66},"obs":[{"P":1293147459,"L":{"i":134675166,"f":64},"D":{"i":1326,"f":244},"cn0":156,"lock":15,"flags":15,"sid":{"sat":25,"code":12}},{"P":1162833717,"L":{"i":121103607,"f":180},"D":{"i":1613,"f":86},"cn0":184,"lock":15,"flags":15,"sid":{"sat":12,"code":12}},{"P":1195583070,"L":{"i":124514301,"f":1},"D":{"i":-287,"f":102},"cn0":183,"lock":15,"flags":15,"sid":{"sat":19,"code":12}},{"P":1197460207,"L":{"i":124709795,"f":77},"D":{"i":2390,"f":60},"cn0":190,"lock":15,"flags":15,"sid":{"sat":22,"code":12}},{"P":1162833642,"L":{"i":93644999,"f":249},"D":{"i":1247,"f":160},"cn0":207,"lock":15,"flags":15,"sid":{"sat":12,"code":13}},{"P":1107735988,"L":{"i":116423840,"f":107},"D":{"i":-1027,"f":250},"cn0":195,"lock":15,"flags":15,"sid":{"sat":12,"code":14}},{"P":1260478650,"L":{"i":132477207,"f":242},"D":{"i":1089,"f":215},"cn0":192,"lock":15,"flags":15,"sid":{"sat":25,"code":14}},{"P":1193377588,"L":{"i":125424836,"f":22},"D":{"i":1049,"f":153},"cn0":189,"lock":15,"flags":15,"sid":{"sat":11,"code":14}},{"P":1126635315,"L":{"i":118410184,"f":101},"D":{"i":-1743,"f":193},"cn0":205,"lock":15,"flags":15,"sid":{"sat":24,"code":14}},{"P":1363593505,"L":{"i":143314646,"f":128},"D":{"i":-3175,"f":210},"cn0":160,"lock":15,"flags":15,"sid":{"sat":31,"code":14}},{"P":1375058500,"L":{"i":144519624,"f":13},"D":{"i":-2139,"f":109},"cn0":153,"lock":15,"flags":15,"sid":{"sat":33,"code":14}},{"P":1260478619,"L":{"i":101508508,"f":100},"D":{"i":835,"f":167},"cn0":200,"lock":15,"flags":15,"sid":{"sat":25,"code":20}},{"P":1126635857,"L":{"i":90729945,"f":28},"D":{"i":-1336,"f":198},"cn0":215,"lock":15,"flags":15,"sid":{"sat":24,"code":20}},{"P":1193377389,"L":{"i":96104722,"f":91},"D":{"i":802,"f":76},"cn0":193,"lock":15,"flags":15,"sid":{"sat":11,"code":20}}]} +{"crc":56651,"length":62,"msg_type":74,"payload":"wPEuEAAAAAAyCENryUZRUpuLBt6D9rKsDw8fFBK1BkJkNFEFU+78js4PDwwUEbr1UQ6ymQZUmPnIqQ8PIRQ=","preamble":85,"sender":22963,"header":{"t":{"tow":271512000,"ns_residual":0,"wn":2098},"n_obs":67},"obs":[{"P":1363593579,"L":{"i":109812562,"f":222},"D":{"i":-2429,"f":178},"cn0":172,"lock":15,"flags":15,"sid":{"sat":31,"code":20}},{"P":1107735826,"L":{"i":89207908,"f":83},"D":{"i":-786,"f":142},"cn0":206,"lock":15,"flags":15,"sid":{"sat":12,"code":20}},{"P":1375058449,"L":{"i":110735886,"f":84},"D":{"i":-1640,"f":200},"cn0":169,"lock":15,"flags":15,"sid":{"sat":33,"code":20}}]} +{"crc":49809,"length":9,"msg_type":117,"payload":"/wAAAAAAAAAA","preamble":85,"sender":22963,"mask":255,"l1ca_bias":0,"l1p_bias":0,"l2ca_bias":0,"l2p_bias":0} +{"crc":55883,"length":11,"msg_type":258,"payload":"MgjA8S4QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271512000,"ns_residual":0,"flags":1} +{"crc":48360,"length":16,"msg_type":259,"payload":"EcDxLhDkBwMZAxg1/smaOw==","preamble":85,"sender":22963,"flags":17,"tow":271512000,"year":2020,"month":3,"day":25,"hours":3,"minutes":24,"seconds":53,"ns":999999998} +{"crc":51573,"length":34,"msg_type":522,"payload":"wPEuEKiORuJl6kJAF4O0G1aSXsDJxzBGN4IxwAECWwQPBg==","preamble":85,"sender":22963,"tow":271512000,"lat":37.831234249545844,"lon":-122.2865056288541,"height":-17.508655917081146,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":47668,"length":22,"msg_type":526,"payload":"wPEuEAUAAAD1////DgAAAPEAygIPAg==","preamble":85,"sender":22963,"tow":271512000,"n":5,"e":-11,"d":14,"h_accuracy":241,"v_accuracy":714,"n_sats":15,"flags":2} +{"crc":34586,"length":15,"msg_type":520,"payload":"wPEuEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271512000,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":51375,"length":22,"msg_type":524,"payload":"wPEuEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271512000,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":15940,"length":6,"msg_type":528,"payload":"wPEuEP//","preamble":85,"sender":22963,"tow":271512000,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":40942,"length":4,"msg_type":65535,"payload":"AAUCgA==","preamble":85,"sender":22963,"flags":2147616000} +{"crc":2168,"length":24,"msg_type":72,"payload":"UO0a3iqORMHK1UJhIkRQwc9nFIPvrk1B","preamble":85,"sender":22963,"x":-2694229.735196747,"y":-4264073.519704292,"z":3890655.0240602265} +{"crc":47991,"length":26,"msg_type":23,"payload":"bWFpbgAAAAAAAAAAAAAAAAAAAAAAAAx1AAA=","preamble":85,"sender":22963,"name":"main\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":0,"stack_free":29964} +{"crc":32761,"length":26,"msg_type":23,"payload":"aWRsZQAAAAAAAAAAAAAAAAAAAABjAXwAAAA=","preamble":85,"sender":22963,"name":"idle\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":355,"stack_free":124} +{"crc":53198,"length":26,"msg_type":23,"payload":"cnBtc2cAAAAAAAAAAAAAAAAAAAABAOwNAAA=","preamble":85,"sender":22963,"name":"rpmsg\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":1,"stack_free":3564} +{"crc":51784,"length":26,"msg_type":23,"payload":"U0JQAAAAAAAAAAAAAAAAAAAAAAAAAPz/AAA=","preamble":85,"sender":22963,"name":"SBP\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":0,"stack_free":65532} +{"crc":33651,"length":26,"msg_type":23,"payload":"TkFQAAAAAAAAAAAAAAAAAAAAAAAAAASAAAA=","preamble":85,"sender":22963,"name":"NAP\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":0,"stack_free":32772} +{"crc":61814,"length":26,"msg_type":23,"payload":"bWFuYWdlIFBWAAAAAAAAAAAAAAAAACwEAAA=","preamble":85,"sender":22963,"name":"manage PV\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":0,"stack_free":1068} +{"crc":14252,"length":26,"msg_type":23,"payload":"SU1VAAAAAAAAAAAAAAAAAAAAAAAAAPQHAAA=","preamble":85,"sender":22963,"name":"IMU\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":0,"stack_free":2036} +{"crc":18976,"length":26,"msg_type":23,"payload":"SU1VIGF1eAAAAAAAAAAAAAAAAAAAAEwIAAA=","preamble":85,"sender":22963,"name":"IMU aux\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":0,"stack_free":2124} +{"crc":26120,"length":26,"msg_type":23,"payload":"bmRiAAAAAAAAAAAAAAAAAAAAAAAAAFAMAAA=","preamble":85,"sender":22963,"name":"ndb\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":0,"stack_free":3152} +{"crc":33839,"length":26,"msg_type":23,"payload":"TkFQIFRyYWNraW5nAAAAAAAAAAAeAdR3AAA=","preamble":85,"sender":22963,"name":"NAP Tracking\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":286,"stack_free":30676} +{"crc":22929,"length":26,"msg_type":23,"payload":"ZGVjb2RlAAAAAAAAAAAAAAAAAAAHANQGAAA=","preamble":85,"sender":22963,"name":"decode\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":7,"stack_free":1748} +{"crc":24209,"length":26,"msg_type":23,"payload":"bWFuYWdlIGFjcQAAAAAAAAAAAAC9AKR3AAA=","preamble":85,"sender":22963,"name":"manage acq\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":189,"stack_free":30628} +{"crc":58531,"length":26,"msg_type":23,"payload":"c3lzdGVtIG1vbml0b3IAAAAAAAAAACwGAAA=","preamble":85,"sender":22963,"name":"system monitor\u0000\u0000\u0000\u0000\u0000\u0000","cpu":0,"stack_free":1580} +{"crc":44438,"length":26,"msg_type":23,"payload":"V2F0Y2hkb2cAAAAAAAAAAAAAAAAAAOQDAAA=","preamble":85,"sender":22963,"name":"Watchdog\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":0,"stack_free":996} +{"crc":15999,"length":26,"msg_type":23,"payload":"c3RhcmxpbmcAAAAAAAAAAAAAAACVAPz/AAA=","preamble":85,"sender":22963,"name":"starling\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":149,"stack_free":65532} +{"crc":57561,"length":26,"msg_type":23,"payload":"bWVfY2FsY19wdnQAAAAAAAAAAAAJAIwjAAA=","preamble":85,"sender":22963,"name":"me_calc_pvt\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":9,"stack_free":9100} +{"crc":38576,"length":26,"msg_type":23,"payload":"UFBTAAAAAAAAAAAAAAAAAAAAAAAAAEgHAAA=","preamble":85,"sender":22963,"name":"PPS\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":0,"stack_free":1864} +{"crc":50933,"length":26,"msg_type":23,"payload":"c3BlY3RydW0gYW5hbHl6ZXIAAAAAANQPAAA=","preamble":85,"sender":22963,"name":"spectrum analyzer\u0000\u0000\u0000","cpu":0,"stack_free":4052} +{"crc":20678,"length":10,"msg_type":181,"payload":"7xbdA/QGTBUJFg==","preamble":85,"sender":22963,"dev_vin":5871,"cpu_vint":989,"cpu_vaux":1780,"cpu_temperature":5452,"fe_temperature":5641} +{"crc":51526,"length":11,"msg_type":258,"payload":"Mggk8i4QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271512100,"ns_residual":0,"flags":1} +{"crc":29690,"length":16,"msg_type":259,"payload":"ESTyLhDkBwMZAxg2/uD1BQ==","preamble":85,"sender":22963,"flags":17,"tow":271512100,"year":2020,"month":3,"day":25,"hours":3,"minutes":24,"seconds":54,"ns":99999998} +{"crc":24835,"length":34,"msg_type":522,"payload":"JPIuEE7qRuJl6kJAJUvVG1aSXsD6MbH1QoAxwAECWwQPBg==","preamble":85,"sender":22963,"tow":271512100,"lat":37.83123424971255,"lon":-122.28650565938422,"height":-17.501021724472572,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":47630,"length":22,"msg_type":526,"payload":"JPIuEA0AAAD5////+v////EAygIPAg==","preamble":85,"sender":22963,"tow":271512100,"n":13,"e":-7,"d":-6,"h_accuracy":241,"v_accuracy":714,"n_sats":15,"flags":2} +{"crc":29188,"length":15,"msg_type":520,"payload":"JPIuEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271512100,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":1207,"length":22,"msg_type":524,"payload":"JPIuEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271512100,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":23823,"length":6,"msg_type":528,"payload":"JPIuEP//","preamble":85,"sender":22963,"tow":271512100,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":25624,"length":11,"msg_type":258,"payload":"MgiI8i4QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271512200,"ns_residual":0,"flags":1} +{"crc":30287,"length":16,"msg_type":259,"payload":"EYjyLhDkBwMZAxg2/sHrCw==","preamble":85,"sender":22963,"flags":17,"tow":271512200,"year":2020,"month":3,"day":25,"hours":3,"minutes":24,"seconds":54,"ns":199999998} +{"crc":52490,"length":34,"msg_type":522,"payload":"iPIuEBQlCuJl6kJAOGHWG1aSXsCw5U+GYH4xwAECWwQPBg==","preamble":85,"sender":22963,"tow":271512200,"lat":37.83123422141412,"lon":-122.28650566039585,"height":-17.49366034937492,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":44818,"length":22,"msg_type":526,"payload":"iPIuEPH///8IAAAA+P////EAygIPAg==","preamble":85,"sender":22963,"tow":271512200,"n":-15,"e":8,"d":-8,"h_accuracy":241,"v_accuracy":714,"n_sats":15,"flags":2} +{"crc":2037,"length":15,"msg_type":520,"payload":"iPIuEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271512200,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":11629,"length":22,"msg_type":524,"payload":"iPIuEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271512200,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":47044,"length":6,"msg_type":528,"payload":"iPIuEP//","preamble":85,"sender":22963,"tow":271512200,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":210,"length":11,"msg_type":258,"payload":"Mgjs8i4QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271512300,"ns_residual":0,"flags":1} +{"crc":50283,"length":16,"msg_type":259,"payload":"EezyLhDkBwMZAxg2/qLhEQ==","preamble":85,"sender":22963,"flags":17,"tow":271512300,"year":2020,"month":3,"day":25,"hours":3,"minutes":24,"seconds":54,"ns":299999998} +{"crc":64742,"length":34,"msg_type":522,"payload":"7PIuEGxKyOFl6kJATdLVG1aSXsDT6vLO03wxwAECWwQPBg==","preamble":85,"sender":22963,"tow":271512300,"lat":37.831234190748404,"lon":-122.28650565987591,"height":-17.4876069396076,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":16008,"length":22,"msg_type":526,"payload":"7PIuEPX///8EAAAA+f////EAygIPAg==","preamble":85,"sender":22963,"tow":271512300,"n":-11,"e":4,"d":-7,"h_accuracy":241,"v_accuracy":714,"n_sats":15,"flags":2} +{"crc":11098,"length":15,"msg_type":520,"payload":"7PIuEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271512300,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":13787,"length":22,"msg_type":524,"payload":"7PIuEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271512300,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":61053,"length":6,"msg_type":528,"payload":"7PIuEP//","preamble":85,"sender":22963,"tow":271512300,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":43056,"length":237,"msg_type":97,"payload":"BQDWFQC1AgC9HwCnAAAAAAAAGQDaDADPHQDWEgDOAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwLNGQHNDAG8HwGZEgHEHQHEAAAABQHDAAAAAAAAAAAAAAAAZAPVYgOzZgOuZQPPXQPPAAAAagO1aAPKYgSqZgTNXQRcZATHZQTDaAS8AAAAagSwIwzIGgypIgyeGAy8GQydDAy4Ewy3Fgy+AAAADA3QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADA7DAAAAGQ7ACw69GA7NAAAAHw6gIQ6bGRTIGBTXCxTCHxStDBTOAAAAIRSpAAAA","preamble":85,"sender":22963,"states":[{"mesid":{"sat":5,"code":0},"cn0":214},{"mesid":{"sat":21,"code":0},"cn0":181},{"mesid":{"sat":2,"code":0},"cn0":189},{"mesid":{"sat":31,"code":0},"cn0":167},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":25,"code":0},"cn0":218},{"mesid":{"sat":12,"code":0},"cn0":207},{"mesid":{"sat":29,"code":0},"cn0":214},{"mesid":{"sat":18,"code":0},"cn0":206},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":131,"code":2},"cn0":205},{"mesid":{"sat":25,"code":1},"cn0":205},{"mesid":{"sat":12,"code":1},"cn0":188},{"mesid":{"sat":31,"code":1},"cn0":153},{"mesid":{"sat":18,"code":1},"cn0":196},{"mesid":{"sat":29,"code":1},"cn0":196},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":5,"code":1},"cn0":195},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":100,"code":3},"cn0":213},{"mesid":{"sat":98,"code":3},"cn0":179},{"mesid":{"sat":102,"code":3},"cn0":174},{"mesid":{"sat":101,"code":3},"cn0":207},{"mesid":{"sat":93,"code":3},"cn0":207},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":106,"code":3},"cn0":181},{"mesid":{"sat":104,"code":3},"cn0":202},{"mesid":{"sat":98,"code":4},"cn0":170},{"mesid":{"sat":102,"code":4},"cn0":205},{"mesid":{"sat":93,"code":4},"cn0":92},{"mesid":{"sat":100,"code":4},"cn0":199},{"mesid":{"sat":101,"code":4},"cn0":195},{"mesid":{"sat":104,"code":4},"cn0":188},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":106,"code":4},"cn0":176},{"mesid":{"sat":35,"code":12},"cn0":200},{"mesid":{"sat":26,"code":12},"cn0":169},{"mesid":{"sat":34,"code":12},"cn0":158},{"mesid":{"sat":24,"code":12},"cn0":188},{"mesid":{"sat":25,"code":12},"cn0":157},{"mesid":{"sat":12,"code":12},"cn0":184},{"mesid":{"sat":19,"code":12},"cn0":183},{"mesid":{"sat":22,"code":12},"cn0":190},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":12,"code":13},"cn0":208},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":12,"code":14},"cn0":195},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":25,"code":14},"cn0":192},{"mesid":{"sat":11,"code":14},"cn0":189},{"mesid":{"sat":24,"code":14},"cn0":205},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":31,"code":14},"cn0":160},{"mesid":{"sat":33,"code":14},"cn0":155},{"mesid":{"sat":25,"code":20},"cn0":200},{"mesid":{"sat":24,"code":20},"cn0":215},{"mesid":{"sat":11,"code":20},"cn0":194},{"mesid":{"sat":31,"code":20},"cn0":173},{"mesid":{"sat":12,"code":20},"cn0":206},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":33,"code":20},"cn0":169},{"mesid":{"sat":0,"code":0},"cn0":0}]} +{"crc":47521,"length":11,"msg_type":258,"payload":"MghQ8y4QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271512400,"ns_residual":0,"flags":1} +{"crc":64114,"length":16,"msg_type":259,"payload":"EVDzLhDkBwMZAxg2/oPXFw==","preamble":85,"sender":22963,"flags":17,"tow":271512400,"year":2020,"month":3,"day":25,"hours":3,"minutes":24,"seconds":54,"ns":399999998} +{"crc":340,"length":34,"msg_type":522,"payload":"UPMuEDuotuFl6kJA/83dG1aSXsDIjYPyy3sxwAECWwQPBg==","preamble":85,"sender":22963,"tow":271512400,"lat":37.83123418253714,"lon":-122.28650566731083,"height":-17.483580739133487,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":3150,"length":22,"msg_type":526,"payload":"UPMuEAEAAAABAAAAFwAAAPEAygIPAg==","preamble":85,"sender":22963,"tow":271512400,"n":1,"e":1,"d":23,"h_accuracy":241,"v_accuracy":714,"n_sats":15,"flags":2} +{"crc":27456,"length":15,"msg_type":520,"payload":"UPMuEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271512400,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":29873,"length":22,"msg_type":524,"payload":"UPMuEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271512400,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":46179,"length":6,"msg_type":528,"payload":"UPMuEP//","preamble":85,"sender":22963,"tow":271512400,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":49809,"length":9,"msg_type":117,"payload":"/wAAAAAAAAAA","preamble":85,"sender":22963,"mask":255,"l1ca_bias":0,"l1p_bias":0,"l2ca_bias":0,"l2p_bias":0} +{"crc":25305,"length":11,"msg_type":258,"payload":"Mgi08y4QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271512500,"ns_residual":0,"flags":1} +{"crc":60060,"length":16,"msg_type":259,"payload":"EbTzLhDkBwMZAxg2/mTNHQ==","preamble":85,"sender":22963,"flags":17,"tow":271512500,"year":2020,"month":3,"day":25,"hours":3,"minutes":24,"seconds":54,"ns":499999998} +{"crc":24208,"length":34,"msg_type":522,"payload":"tPMuEDpto+Fl6kJAYbfjG1aSXsATvJxI+XgxwAECWwQPBg==","preamble":85,"sender":22963,"tow":271512500,"lat":37.831234173582246,"lon":-122.28650567281649,"height":-17.47255376650362,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":23959,"length":22,"msg_type":526,"payload":"tPMuEAAAAAADAAAA4f////EAygIPAg==","preamble":85,"sender":22963,"tow":271512500,"n":0,"e":3,"d":-31,"h_accuracy":241,"v_accuracy":714,"n_sats":15,"flags":2} +{"crc":5117,"length":15,"msg_type":520,"payload":"tPMuEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271512500,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":54930,"length":22,"msg_type":524,"payload":"tPMuEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271512500,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":14842,"length":6,"msg_type":528,"payload":"tPMuEP//","preamble":85,"sender":22963,"tow":271512500,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":2207,"length":11,"msg_type":258,"payload":"MggY9C4QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271512600,"ns_residual":0,"flags":1} +{"crc":43535,"length":16,"msg_type":259,"payload":"ERj0LhDkBwMZAxg2/kXDIw==","preamble":85,"sender":22963,"flags":17,"tow":271512600,"year":2020,"month":3,"day":25,"hours":3,"minutes":24,"seconds":54,"ns":599999998} +{"crc":30449,"length":34,"msg_type":522,"payload":"GPQuEPvCiOFl6kJAY6/oG1aSXsCy7SZH3ncxwAECWwQPBg==","preamble":85,"sender":22963,"tow":271512600,"lat":37.831234161165376,"lon":-122.28650567744403,"height":-17.4682354421654,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":969,"length":22,"msg_type":526,"payload":"GPQuEP/////2////BwAAAPEAygIPAg==","preamble":85,"sender":22963,"tow":271512600,"n":-1,"e":-10,"d":7,"h_accuracy":241,"v_accuracy":714,"n_sats":15,"flags":2} +{"crc":5642,"length":15,"msg_type":520,"payload":"GPQuEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271512600,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":63176,"length":22,"msg_type":524,"payload":"GPQuEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271512600,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":46309,"length":6,"msg_type":528,"payload":"GPQuEP//","preamble":85,"sender":22963,"tow":271512600,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":27733,"length":11,"msg_type":258,"payload":"Mgh89C4QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271512700,"ns_residual":0,"flags":1} +{"crc":579,"length":16,"msg_type":259,"payload":"EXz0LhDkBwMZAxg2/ia5KQ==","preamble":85,"sender":22963,"flags":17,"tow":271512700,"year":2020,"month":3,"day":25,"hours":3,"minutes":24,"seconds":54,"ns":699999998} +{"crc":57264,"length":34,"msg_type":522,"payload":"fPQuEHcyc+Fl6kJAXX3gG1aSXsC3l6+fyXYxwAECWwQPBg==","preamble":85,"sender":22963,"tow":271512700,"lat":37.83123415112362,"lon":-122.28650566981146,"height":-17.46401403462343,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":39398,"length":22,"msg_type":526,"payload":"fPQuEAkAAAD8////BAAAAPEAygIPAg==","preamble":85,"sender":22963,"tow":271512700,"n":9,"e":-4,"d":4,"h_accuracy":241,"v_accuracy":714,"n_sats":15,"flags":2} +{"crc":15013,"length":15,"msg_type":520,"payload":"fPQuEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271512700,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":61054,"length":22,"msg_type":524,"payload":"fPQuEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271512700,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":60764,"length":6,"msg_type":528,"payload":"fPQuEP//","preamble":85,"sender":22963,"tow":271512700,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":35058,"length":34,"msg_type":30583,"payload":"gwKZ8y4QGYRp/cAX/f6f4AAAAv5osH+wK/6/sAAICAC/kA==","preamble":85,"sender":22963,"sid":{"sat":131,"code":2},"tow":271512473,"message_type":25,"data":[132,105,253,192,23,253,254,159,224,0,0,2,254,104,176,127,176,43,254,191,176,0,8,8,0,191,144]} +{"crc":13577,"length":11,"msg_type":258,"payload":"Mgjg9C4QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271512800,"ns_residual":0,"flags":1} +{"crc":56521,"length":16,"msg_type":259,"payload":"EeD0LhDkBwMZAxg2/gevLw==","preamble":85,"sender":22963,"flags":17,"tow":271512800,"year":2020,"month":3,"day":25,"hours":3,"minutes":24,"seconds":54,"ns":799999998} +{"crc":62474,"length":34,"msg_type":522,"payload":"4PQuEChSQeFl6kJANnXTG1aSXsDBhL1lsXUxwAECWwQPBg==","preamble":85,"sender":22963,"tow":271512800,"lat":37.8312341278982,"lon":-122.28650565767461,"height":-17.459738119858915,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":21939,"length":22,"msg_type":526,"payload":"4PQuEPj////6////EgAAAPEAygIPAg==","preamble":85,"sender":22963,"tow":271512800,"n":-8,"e":-6,"d":18,"h_accuracy":241,"v_accuracy":714,"n_sats":15,"flags":2} +{"crc":40138,"length":15,"msg_type":520,"payload":"4PQuEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271512800,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":4175,"length":22,"msg_type":524,"payload":"4PQuEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271512800,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":10267,"length":6,"msg_type":528,"payload":"4PQuEP//","preamble":85,"sender":22963,"tow":271512800,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":45023,"length":237,"msg_type":97,"payload":"BQDWFQC1AgC+HwCnAAAAAAAAGQDaDADPHQDWEgDOAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwLOGQHNDAG8HwGZEgHEHQHEAAAABQHDAAAAAAAAAAAAAAAACwPVCQOzFAOuBQPQCgPPAAAABAO2FQPKCQSrFATNCgQ9CwTHBQTDAAS8AAAABASwIwzIGgypIgyeGAy9GQydDAy5Ewy4Fgy+AAAADA3PAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADA7EAAAAGQ7BCw6+GA7NAAAAHw6gIQ6aGRTIGBTXCxTBHxStDBTOAAAAIRSpAAAA","preamble":85,"sender":22963,"states":[{"mesid":{"sat":5,"code":0},"cn0":214},{"mesid":{"sat":21,"code":0},"cn0":181},{"mesid":{"sat":2,"code":0},"cn0":190},{"mesid":{"sat":31,"code":0},"cn0":167},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":25,"code":0},"cn0":218},{"mesid":{"sat":12,"code":0},"cn0":207},{"mesid":{"sat":29,"code":0},"cn0":214},{"mesid":{"sat":18,"code":0},"cn0":206},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":131,"code":2},"cn0":206},{"mesid":{"sat":25,"code":1},"cn0":205},{"mesid":{"sat":12,"code":1},"cn0":188},{"mesid":{"sat":31,"code":1},"cn0":153},{"mesid":{"sat":18,"code":1},"cn0":196},{"mesid":{"sat":29,"code":1},"cn0":196},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":5,"code":1},"cn0":195},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":11,"code":3},"cn0":213},{"mesid":{"sat":9,"code":3},"cn0":179},{"mesid":{"sat":20,"code":3},"cn0":174},{"mesid":{"sat":5,"code":3},"cn0":208},{"mesid":{"sat":10,"code":3},"cn0":207},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":4,"code":3},"cn0":182},{"mesid":{"sat":21,"code":3},"cn0":202},{"mesid":{"sat":9,"code":4},"cn0":171},{"mesid":{"sat":20,"code":4},"cn0":205},{"mesid":{"sat":10,"code":4},"cn0":61},{"mesid":{"sat":11,"code":4},"cn0":199},{"mesid":{"sat":5,"code":4},"cn0":195},{"mesid":{"sat":0,"code":4},"cn0":188},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":4,"code":4},"cn0":176},{"mesid":{"sat":35,"code":12},"cn0":200},{"mesid":{"sat":26,"code":12},"cn0":169},{"mesid":{"sat":34,"code":12},"cn0":158},{"mesid":{"sat":24,"code":12},"cn0":189},{"mesid":{"sat":25,"code":12},"cn0":157},{"mesid":{"sat":12,"code":12},"cn0":185},{"mesid":{"sat":19,"code":12},"cn0":184},{"mesid":{"sat":22,"code":12},"cn0":190},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":12,"code":13},"cn0":207},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":12,"code":14},"cn0":196},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":25,"code":14},"cn0":193},{"mesid":{"sat":11,"code":14},"cn0":190},{"mesid":{"sat":24,"code":14},"cn0":205},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":31,"code":14},"cn0":160},{"mesid":{"sat":33,"code":14},"cn0":154},{"mesid":{"sat":25,"code":20},"cn0":200},{"mesid":{"sat":24,"code":20},"cn0":215},{"mesid":{"sat":11,"code":20},"cn0":193},{"mesid":{"sat":31,"code":20},"cn0":173},{"mesid":{"sat":12,"code":20},"cn0":206},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":33,"code":20},"cn0":169},{"mesid":{"sat":0,"code":0},"cn0":0}]} +{"crc":41336,"length":136,"msg_type":151,"payload":"AgAaHgUALDUMAFEtFQB9GRkAbUYaAKEBHQChNx8AlQ4EAxYWBQMyIQYDTggJA18OCgNxKQsDmCUMA6oDEwMiBxQDCzEVA5UlDAyUKRMMIyAUDA8CFgxDIxgMgiMZDJ0OGgxnFR0MLAAiDI4RIwwiLQsOizIMDg88GA5sNhkOlykfDlURIQ4fDw==","preamble":85,"sender":22963,"azel":[{"sid":{"sat":2,"code":0},"az":26,"el":30},{"sid":{"sat":5,"code":0},"az":44,"el":53},{"sid":{"sat":12,"code":0},"az":81,"el":45},{"sid":{"sat":21,"code":0},"az":125,"el":25},{"sid":{"sat":25,"code":0},"az":109,"el":70},{"sid":{"sat":26,"code":0},"az":161,"el":1},{"sid":{"sat":29,"code":0},"az":161,"el":55},{"sid":{"sat":31,"code":0},"az":149,"el":14},{"sid":{"sat":4,"code":3},"az":22,"el":22},{"sid":{"sat":5,"code":3},"az":50,"el":33},{"sid":{"sat":6,"code":3},"az":78,"el":8},{"sid":{"sat":9,"code":3},"az":95,"el":14},{"sid":{"sat":10,"code":3},"az":113,"el":41},{"sid":{"sat":11,"code":3},"az":152,"el":37},{"sid":{"sat":12,"code":3},"az":170,"el":3},{"sid":{"sat":19,"code":3},"az":34,"el":7},{"sid":{"sat":20,"code":3},"az":11,"el":49},{"sid":{"sat":21,"code":3},"az":149,"el":37},{"sid":{"sat":12,"code":12},"az":148,"el":41},{"sid":{"sat":19,"code":12},"az":35,"el":32},{"sid":{"sat":20,"code":12},"az":15,"el":2},{"sid":{"sat":22,"code":12},"az":67,"el":35},{"sid":{"sat":24,"code":12},"az":130,"el":35},{"sid":{"sat":25,"code":12},"az":157,"el":14},{"sid":{"sat":26,"code":12},"az":103,"el":21},{"sid":{"sat":29,"code":12},"az":44,"el":0},{"sid":{"sat":34,"code":12},"az":142,"el":17},{"sid":{"sat":35,"code":12},"az":34,"el":45},{"sid":{"sat":11,"code":14},"az":139,"el":50},{"sid":{"sat":12,"code":14},"az":15,"el":60},{"sid":{"sat":24,"code":14},"az":108,"el":54},{"sid":{"sat":25,"code":14},"az":151,"el":41},{"sid":{"sat":31,"code":14},"az":85,"el":17},{"sid":{"sat":33,"code":14},"az":31,"el":15}]} +{"crc":63099,"length":11,"msg_type":258,"payload":"MghE9S4QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271512900,"ns_residual":0,"flags":1} +{"crc":5789,"length":16,"msg_type":259,"payload":"EUT1LhDkBwMZAxg2/uikNQ==","preamble":85,"sender":22963,"flags":17,"tow":271512900,"year":2020,"month":3,"day":25,"hours":3,"minutes":24,"seconds":54,"ns":899999998} +{"crc":11556,"length":34,"msg_type":522,"payload":"RPUuEA2NHeFl6kJA+cqkG1aSXsBUs+KM6XIxwAECWwQPBg==","preamble":85,"sender":22963,"tow":271512900,"lat":37.83123411124152,"lon":-122.28650561421445,"height":-17.448876195284655,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":38093,"length":22,"msg_type":526,"payload":"RPUuEPv///8QAAAA2/////EAygIPAg==","preamble":85,"sender":22963,"tow":271512900,"n":-5,"e":16,"d":-37,"h_accuracy":241,"v_accuracy":714,"n_sats":15,"flags":2} +{"crc":46367,"length":15,"msg_type":520,"payload":"RPUuEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271512900,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":45760,"length":22,"msg_type":524,"payload":"RPUuEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271512900,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":26051,"length":6,"msg_type":528,"payload":"RPUuEP//","preamble":85,"sender":22963,"tow":271512900,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":42801,"length":249,"msg_type":74,"payload":"qPUuEAAAAAAyCECS8LM+CRKXBrNM/+DWDw8FAFd1F0Xh9kIHTX4IlbUPDxUA+NjxRfrqWQeIVPYevg8PAgCxcwJJN2GsBx92/kenDw8fAO27JT37N20G2Jz7M9oPDxkAwki0QA7rzAbLa/Sezw8PDAA9+9A+Zx+aBg/NBerWDw8dADW8JT0o/QEFhZT8AM0PDxkBgEi0QGOPTAWt+va/vA8PDAF7cwJJgK/6BXzP/kCaDw8fAev60D6N+iQF+YYE9sQPDx0BT/CzPs6ZIgVhc//9ww8PBQH2rvw+FU+7BmaRBJfVDw8LA+t31ETH2FkHDsnu5LMPDwkD","preamble":85,"sender":22963,"header":{"t":{"tow":271513000,"ns_residual":0,"wn":2098},"n_obs":64},"obs":[{"P":1051979922,"L":{"i":110563849,"f":179},"D":{"i":-180,"f":224},"cn0":214,"lock":15,"flags":15,"sid":{"sat":5,"code":0}},{"P":1159165271,"L":{"i":121829089,"f":77},"D":{"i":2174,"f":149},"cn0":181,"lock":15,"flags":15,"sid":{"sat":21,"code":0}},{"P":1173477624,"L":{"i":123333370,"f":136},"D":{"i":-2476,"f":30},"cn0":190,"lock":15,"flags":15,"sid":{"sat":2,"code":0}},{"P":1224897457,"L":{"i":128737591,"f":31},"D":{"i":-394,"f":71},"cn0":167,"lock":15,"flags":15,"sid":{"sat":31,"code":0}},{"P":1025883117,"L":{"i":107821051,"f":216},"D":{"i":-1124,"f":51},"cn0":218,"lock":15,"flags":15,"sid":{"sat":25,"code":0}},{"P":1085556930,"L":{"i":114092814,"f":203},"D":{"i":-2965,"f":158},"cn0":207,"lock":15,"flags":15,"sid":{"sat":12,"code":0}},{"P":1053883197,"L":{"i":110763879,"f":15},"D":{"i":1485,"f":234},"cn0":214,"lock":15,"flags":15,"sid":{"sat":29,"code":0}},{"P":1025883189,"L":{"i":84016424,"f":133},"D":{"i":-876,"f":0},"cn0":205,"lock":15,"flags":15,"sid":{"sat":25,"code":1}},{"P":1085556864,"L":{"i":88903523,"f":173},"D":{"i":-2310,"f":191},"cn0":188,"lock":15,"flags":15,"sid":{"sat":12,"code":1}},{"P":1224897403,"L":{"i":100315008,"f":124},"D":{"i":-305,"f":64},"cn0":154,"lock":15,"flags":15,"sid":{"sat":31,"code":1}},{"P":1053883115,"L":{"i":86309517,"f":249},"D":{"i":1158,"f":246},"cn0":196,"lock":15,"flags":15,"sid":{"sat":29,"code":1}},{"P":1051979855,"L":{"i":86153678,"f":97},"D":{"i":-141,"f":253},"cn0":195,"lock":15,"flags":15,"sid":{"sat":5,"code":1}},{"P":1056747254,"L":{"i":112938773,"f":102},"D":{"i":1169,"f":151},"cn0":213,"lock":15,"flags":15,"sid":{"sat":11,"code":3}},{"P":1154775019,"L":{"i":123328711,"f":14},"D":{"i":-4407,"f":228},"cn0":179,"lock":15,"flags":15,"sid":{"sat":9,"code":3}}]} +{"crc":14559,"length":249,"msg_type":74,"payload":"qPUuEAAAAAAyCEH4Iy09kPGKBrdI+7quDw8UA36nCUCMq9gG1JkIYNAPDwUDK8dkPuPgpgZfH/Qwzw8PCgM6EgdDr7gtB+De+oq1Dw8EA2rxKj8trsIGCVkGD8oPDxUDWHjURKSotwV4nfImqw8PCQRPJS09BrwWBQ9V/A7NDw8UBBqw/D7+WTwFiY4D/8cPDwsEvKgJQBswUwX8sAYUxA8PBQQxEwdDt1aVBecD/IywDw8EBDfxlEU9Ij8HUiX68sgPDyMMwdzySS2PswflQvSGqQ8PGgxd7hZMdaPsB97JCEaeDw8iDPo9oEfpoXUH+Ov6Cr0PDxgM","preamble":85,"sender":22963,"header":{"t":{"tow":271513000,"ns_residual":0,"wn":2098},"n_obs":65},"obs":[{"P":1026368504,"L":{"i":109769104,"f":183},"D":{"i":-1208,"f":186},"cn0":174,"lock":15,"flags":15,"sid":{"sat":20,"code":3}},{"P":1074374526,"L":{"i":114862988,"f":212},"D":{"i":2201,"f":96},"cn0":208,"lock":15,"flags":15,"sid":{"sat":5,"code":3}},{"P":1046791979,"L":{"i":111599843,"f":95},"D":{"i":-3041,"f":48},"cn0":207,"lock":15,"flags":15,"sid":{"sat":10,"code":3}},{"P":1124536890,"L":{"i":120436911,"f":224},"D":{"i":-1314,"f":138},"cn0":181,"lock":15,"flags":15,"sid":{"sat":4,"code":3}},{"P":1059778922,"L":{"i":113421869,"f":9},"D":{"i":1625,"f":15},"cn0":202,"lock":15,"flags":15,"sid":{"sat":21,"code":3}},{"P":1154775128,"L":{"i":95922340,"f":120},"D":{"i":-3427,"f":38},"cn0":171,"lock":15,"flags":15,"sid":{"sat":9,"code":4}},{"P":1026368847,"L":{"i":85376006,"f":15},"D":{"i":-939,"f":14},"cn0":205,"lock":15,"flags":15,"sid":{"sat":20,"code":4}},{"P":1056747546,"L":{"i":87841278,"f":137},"D":{"i":910,"f":255},"cn0":199,"lock":15,"flags":15,"sid":{"sat":11,"code":4}},{"P":1074374844,"L":{"i":89337883,"f":252},"D":{"i":1712,"f":20},"cn0":196,"lock":15,"flags":15,"sid":{"sat":5,"code":4}},{"P":1124537137,"L":{"i":93673143,"f":231},"D":{"i":-1021,"f":140},"cn0":176,"lock":15,"flags":15,"sid":{"sat":4,"code":4}},{"P":1167388983,"L":{"i":121578045,"f":82},"D":{"i":-1499,"f":242},"cn0":200,"lock":15,"flags":15,"sid":{"sat":35,"code":12}},{"P":1240652993,"L":{"i":129208109,"f":229},"D":{"i":-3006,"f":134},"cn0":169,"lock":15,"flags":15,"sid":{"sat":26,"code":12}},{"P":1276571229,"L":{"i":132948853,"f":222},"D":{"i":2249,"f":70},"cn0":158,"lock":15,"flags":15,"sid":{"sat":34,"code":12}},{"P":1201683962,"L":{"i":125149673,"f":248},"D":{"i":-1301,"f":10},"cn0":189,"lock":15,"flags":15,"sid":{"sat":24,"code":12}}]} +{"crc":16407,"length":249,"msg_type":74,"payload":"qPUuEAAAAAAyCEJuqxNNrvUGCJYwBb6dDw8ZDKwyT0Wq3jcHSk4G0LkPDwwMJDFDRxvxaweH4v4RuA8PEwxNcV9HTeJuB4pWCYm+Dw8WDGUyT0Xo45QFYeAEedAPDwwNyNsGQqGA8Aaq/vvxxA8PDA4vOCFL1WzlBzBDBFHBDw8ZDjRYIUeq0HkH/xkE5r4PDwsO9FcnQ5bSDgcxMfnbzQ8PGA4DP0dROduKCHaa8wGhDw8fDs0J9lEjOp0Ix6X3lpsPDyEOEDghS1jiDAadQwOnyA8PGRQNWidDD3NoBbrJ+sHXDw8YFG9XIUfubboFgiQDFcIPDwsU","preamble":85,"sender":22963,"header":{"t":{"tow":271513000,"ns_residual":0,"wn":2098},"n_obs":66},"obs":[{"P":1293134702,"L":{"i":134673838,"f":150},"D":{"i":1328,"f":190},"cn0":157,"lock":15,"flags":15,"sid":{"sat":25,"code":12}},{"P":1162818220,"L":{"i":121101994,"f":74},"D":{"i":1614,"f":208},"cn0":185,"lock":15,"flags":15,"sid":{"sat":12,"code":12}},{"P":1195585828,"L":{"i":124514587,"f":135},"D":{"i":-286,"f":17},"cn0":184,"lock":15,"flags":15,"sid":{"sat":19,"code":12}},{"P":1197437261,"L":{"i":124707405,"f":138},"D":{"i":2390,"f":137},"cn0":190,"lock":15,"flags":15,"sid":{"sat":22,"code":12}},{"P":1162818149,"L":{"i":93643752,"f":97},"D":{"i":1248,"f":121},"cn0":208,"lock":15,"flags":15,"sid":{"sat":12,"code":13}},{"P":1107745736,"L":{"i":116424865,"f":170},"D":{"i":-1026,"f":241},"cn0":196,"lock":15,"flags":15,"sid":{"sat":12,"code":14}},{"P":1260468271,"L":{"i":132476117,"f":48},"D":{"i":1091,"f":81},"cn0":193,"lock":15,"flags":15,"sid":{"sat":25,"code":14}},{"P":1193367604,"L":{"i":125423786,"f":255},"D":{"i":1049,"f":230},"cn0":190,"lock":15,"flags":15,"sid":{"sat":11,"code":14}},{"P":1126651892,"L":{"i":118411926,"f":49},"D":{"i":-1743,"f":219},"cn0":205,"lock":15,"flags":15,"sid":{"sat":24,"code":14}},{"P":1363623683,"L":{"i":143317817,"f":118},"D":{"i":-3174,"f":1},"cn0":161,"lock":15,"flags":15,"sid":{"sat":31,"code":14}},{"P":1375078861,"L":{"i":144521763,"f":199},"D":{"i":-2139,"f":150},"cn0":155,"lock":15,"flags":15,"sid":{"sat":33,"code":14}},{"P":1260468240,"L":{"i":101507672,"f":157},"D":{"i":835,"f":167},"cn0":200,"lock":15,"flags":15,"sid":{"sat":25,"code":20}},{"P":1126652429,"L":{"i":90731279,"f":186},"D":{"i":-1335,"f":193},"cn0":215,"lock":15,"flags":15,"sid":{"sat":24,"code":20}},{"P":1193367407,"L":{"i":96103918,"f":130},"D":{"i":804,"f":21},"cn0":194,"lock":15,"flags":15,"sid":{"sat":11,"code":20}}]} +{"crc":33942,"length":62,"msg_type":74,"payload":"qPUuEAAAAAAyCENEP0dR0KSLBpKB9rStDw8fFC3bBkJ1N1EF5u78kc4PDwwUlQn2UXW4mQbcmPkwqQ8PIRQ=","preamble":85,"sender":22963,"header":{"t":{"tow":271513000,"ns_residual":0,"wn":2098},"n_obs":67},"obs":[{"P":1363623748,"L":{"i":109814992,"f":146},"D":{"i":-2431,"f":180},"cn0":173,"lock":15,"flags":15,"sid":{"sat":31,"code":20}},{"P":1107745581,"L":{"i":89208693,"f":230},"D":{"i":-786,"f":145},"cn0":206,"lock":15,"flags":15,"sid":{"sat":12,"code":20}},{"P":1375078805,"L":{"i":110737525,"f":220},"D":{"i":-1640,"f":48},"cn0":169,"lock":15,"flags":15,"sid":{"sat":33,"code":20}}]} +{"crc":49809,"length":9,"msg_type":117,"payload":"/wAAAAAAAAAA","preamble":85,"sender":22963,"mask":255,"l1ca_bias":0,"l1p_bias":0,"l2ca_bias":0,"l2p_bias":0} +{"crc":1276,"length":11,"msg_type":258,"payload":"Mgio9S4QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271513000,"ns_residual":0,"flags":1} +{"crc":16327,"length":16,"msg_type":259,"payload":"Eaj1LhDkBwMZAxg2/smaOw==","preamble":85,"sender":22963,"flags":17,"tow":271513000,"year":2020,"month":3,"day":25,"hours":3,"minutes":24,"seconds":54,"ns":999999998} +{"crc":47314,"length":34,"msg_type":522,"payload":"qPUuEN/s7uBl6kJAYQWRG1aSXsCkb6Kt8nExwAECWwQPBg==","preamble":85,"sender":22963,"tow":271513000,"lat":37.83123408952974,"lon":-122.28650559580048,"height":-17.445109226376772,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":33155,"length":22,"msg_type":526,"payload":"qPUuEPP///8FAAAAHQAAAPEAygIPAg==","preamble":85,"sender":22963,"tow":271513000,"n":-13,"e":5,"d":29,"h_accuracy":241,"v_accuracy":714,"n_sats":15,"flags":2} +{"crc":60135,"length":15,"msg_type":520,"payload":"qPUuEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271513000,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":20032,"length":22,"msg_type":524,"payload":"qPUuEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271513000,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":58648,"length":6,"msg_type":528,"payload":"qPUuEP//","preamble":85,"sender":22963,"tow":271513000,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":40942,"length":4,"msg_type":65535,"payload":"AAUCgA==","preamble":85,"sender":22963,"flags":2147616000} +{"crc":2168,"length":24,"msg_type":72,"payload":"UO0a3iqORMHK1UJhIkRQwc9nFIPvrk1B","preamble":85,"sender":22963,"x":-2694229.735196747,"y":-4264073.519704292,"z":3890655.0240602265} +{"crc":18472,"length":11,"msg_type":258,"payload":"MggM9i4QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271513100,"ns_residual":0,"flags":1} +{"crc":40543,"length":16,"msg_type":259,"payload":"EQz2LhDkBwMZAxg3/uD1BQ==","preamble":85,"sender":22963,"flags":17,"tow":271513100,"year":2020,"month":3,"day":25,"hours":3,"minutes":24,"seconds":55,"ns":99999998} +{"crc":26328,"length":34,"msg_type":522,"payload":"DPYuEOKb6+Bl6kJA1rGPG1aSXsBXqkZ7JXAxwAECWwQPBg==","preamble":85,"sender":22963,"tow":271513100,"lat":37.831234087985436,"lon":-122.28650559456523,"height":-17.438071923019688,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":33432,"length":22,"msg_type":526,"payload":"DPYuEAYAAAD8/////f////EAygIPAg==","preamble":85,"sender":22963,"tow":271513100,"n":6,"e":-4,"d":-3,"h_accuracy":241,"v_accuracy":714,"n_sats":15,"flags":2} +{"crc":13808,"length":15,"msg_type":520,"payload":"DPYuEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271513100,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":22274,"length":22,"msg_type":524,"payload":"DPYuEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271513100,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":60483,"length":6,"msg_type":528,"payload":"DPYuEP//","preamble":85,"sender":22963,"tow":271513100,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":38922,"length":51,"msg_type":1025,"payload":"BkdMTyBMMk9GIE1FIDEgWysxMzQ2bXNdIGxvdyBDTjAgdG9vIGxvbmcsIGRyb3BwaW5n","preamble":85,"sender":22963,"level":6,"text":"GLO L2OF ME 1 [+1346ms] low CN0 too long, dropping"} +{"crc":22243,"length":11,"msg_type":258,"payload":"Mghw9i4QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271513200,"ns_residual":0,"flags":1} +{"crc":43899,"length":16,"msg_type":259,"payload":"EXD2LhDkBwMZAxg3/sHrCw==","preamble":85,"sender":22963,"flags":17,"tow":271513200,"year":2020,"month":3,"day":25,"hours":3,"minutes":24,"seconds":55,"ns":199999998} +{"crc":18314,"length":34,"msg_type":522,"payload":"cPYuEHgA2uBl6kJA3GOVG1aSXsDqQLhVt20xwAECWwQPBg==","preamble":85,"sender":22963,"tow":271513200,"lat":37.8312340797865,"lon":-122.28650559986949,"height":-17.42857871769312,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":5202,"length":22,"msg_type":526,"payload":"cPYuEAEAAAD3////9v////EAygIPAg==","preamble":85,"sender":22963,"tow":271513200,"n":1,"e":-9,"d":-10,"h_accuracy":241,"v_accuracy":714,"n_sats":15,"flags":2} +{"crc":28816,"length":15,"msg_type":520,"payload":"cPYuEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271513200,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":44113,"length":22,"msg_type":524,"payload":"cPYuEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271513200,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":41532,"length":6,"msg_type":528,"payload":"cPYuEP//","preamble":85,"sender":22963,"tow":271513200,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":59056,"length":139,"msg_type":138,"payload":"FQDALAQAMggAAABAQDgAAAEAAAAwsgCwk0IAcGpDAOBtNgAg6zYAgAQ1AABmtKhKIq7G4zQ+zoPVH/LR/D8AAAD4MWaZPwAAwDyJIbRATXV4Dg49AcAnH2j36ClBvpWVt822ivW/nz9Vvld47j/jWw9tDf79PQDTwrcAALQsAAAAAMAsBAAyCCEhAA==","preamble":85,"sender":22963,"common":{"sid":{"sat":21,"code":0},"toe":{"tow":273600,"wn":2098},"ura":2.0,"fit_interval":14400,"valid":1,"health_bits":0},"tgd":-1.0244548e-8,"c_rs":73.84375,"c_rc":234.4375,"c_uc":0.0000035446137,"c_us":0.000007007271,"c_ic":4.9360096e-7,"c_is":-2.1420419e-7,"dn":4.863774024282281e-9,"m0":1.8012562984006197,"ecc":0.024803906213492155,"sqrta":5153.536083221436,"omega0":-2.154811966944783,"omegadot":-7.992475775839984e-9,"w":-1.3463657413316004,"inc":0.9521902768556066,"inc_dot":4.364467511876155e-10,"af0":-0.000023224857,"af1":5.1159077e-12,"af2":0.0,"toc":{"tow":273600,"wn":2098},"iode":33,"iodc":33} +{"crc":15733,"length":139,"msg_type":138,"payload":"HwCwLAQAMggAAABAQDgAAAEAAABosgBwr0IAuHZDAKCVNgAA6TYAALyzAADwMmzcL2LIITQ+jRvCTcbTA0AAAAB80IWDPwAAIJyLIbRAgzPjXdBF8T/3kXvrHZVBvmQ5Ig1ffr8/craUyTun7j8RGcu37Wv8PYChBLgAADCsAAAAALAsBAAyCCgoAA==","preamble":85,"sender":22963,"common":{"sid":{"sat":31,"code":0},"toe":{"tow":273584,"wn":2098},"ura":2.0,"fit_interval":14400,"valid":1,"health_bits":0},"tgd":-1.3504177e-8,"c_rs":87.71875,"c_rc":246.71875,"c_uc":0.0000044591725,"c_us":0.000006943941,"c_ic":-8.754432e-8,"c_is":2.7939677e-8,"dn":4.687338103589416e-9,"m0":2.478405578123278,"ecc":0.0095325744478032,"sqrta":5153.545351028442,"omega0":1.0795444171410231,"omegadot":-8.187483898711045e-9,"w":0.12302202292105374,"inc":0.9579142510535361,"inc_dot":4.135886561990661e-10,"af0":-0.00003162166,"af1":-2.5011104e-12,"af2":0.0,"toc":{"tow":273584,"wn":2098},"iode":40,"iodc":40} +{"crc":53826,"length":11,"msg_type":258,"payload":"MgjU9i4QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271513300,"ns_residual":0,"flags":1} +{"crc":26436,"length":16,"msg_type":259,"payload":"EdT2LhDkBwMZAxg3/qLhEQ==","preamble":85,"sender":22963,"flags":17,"tow":271513300,"year":2020,"month":3,"day":25,"hours":3,"minutes":24,"seconds":55,"ns":299999998} +{"crc":45405,"length":34,"msg_type":522,"payload":"1PYuEMJ10OBl6kJAONGQG1aSXsDptXdFzmoxwAECWwQPBg==","preamble":85,"sender":22963,"tow":271513300,"lat":37.83123407534323,"lon":-122.28650559561072,"height":-17.417209951139657,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":21876,"length":22,"msg_type":526,"payload":"1PYuEAUAAAAAAAAA9v////EAygIPAg==","preamble":85,"sender":22963,"tow":271513300,"n":5,"e":0,"d":-10,"h_accuracy":241,"v_accuracy":714,"n_sats":15,"flags":2} +{"crc":8740,"length":15,"msg_type":520,"payload":"1PYuEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271513300,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":56104,"length":22,"msg_type":524,"payload":"1PYuEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271513300,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":17845,"length":6,"msg_type":528,"payload":"1PYuEP//","preamble":85,"sender":22963,"tow":271513300,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":36709,"length":237,"msg_type":97,"payload":"BQDWFQC0AgC+HwCmAAAAAAAAGQDaDADPHQDVEgDOAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwLNGQHNDAG8HwGZEgHEHQHEAAAABQHDAAAAAAAAAAAAAAAAZAPVYgOzZgOtZQPQXQPQAAAAagO1aAPKYgSqZgTNAAAAZATHZQTDaAS8AAAAagSwIwzIGgypIgydGAy9GQydDAy5Ewy4Fgy+AAAADA3RAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADA7EAAAAGQ7BCw6+GA7OAAAAHw6gIQ6aGRTIGBTXCxTBHxStDBTOAAAAIRSpAAAA","preamble":85,"sender":22963,"states":[{"mesid":{"sat":5,"code":0},"cn0":214},{"mesid":{"sat":21,"code":0},"cn0":180},{"mesid":{"sat":2,"code":0},"cn0":190},{"mesid":{"sat":31,"code":0},"cn0":166},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":25,"code":0},"cn0":218},{"mesid":{"sat":12,"code":0},"cn0":207},{"mesid":{"sat":29,"code":0},"cn0":213},{"mesid":{"sat":18,"code":0},"cn0":206},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":131,"code":2},"cn0":205},{"mesid":{"sat":25,"code":1},"cn0":205},{"mesid":{"sat":12,"code":1},"cn0":188},{"mesid":{"sat":31,"code":1},"cn0":153},{"mesid":{"sat":18,"code":1},"cn0":196},{"mesid":{"sat":29,"code":1},"cn0":196},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":5,"code":1},"cn0":195},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":100,"code":3},"cn0":213},{"mesid":{"sat":98,"code":3},"cn0":179},{"mesid":{"sat":102,"code":3},"cn0":173},{"mesid":{"sat":101,"code":3},"cn0":208},{"mesid":{"sat":93,"code":3},"cn0":208},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":106,"code":3},"cn0":181},{"mesid":{"sat":104,"code":3},"cn0":202},{"mesid":{"sat":98,"code":4},"cn0":170},{"mesid":{"sat":102,"code":4},"cn0":205},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":100,"code":4},"cn0":199},{"mesid":{"sat":101,"code":4},"cn0":195},{"mesid":{"sat":104,"code":4},"cn0":188},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":106,"code":4},"cn0":176},{"mesid":{"sat":35,"code":12},"cn0":200},{"mesid":{"sat":26,"code":12},"cn0":169},{"mesid":{"sat":34,"code":12},"cn0":157},{"mesid":{"sat":24,"code":12},"cn0":189},{"mesid":{"sat":25,"code":12},"cn0":157},{"mesid":{"sat":12,"code":12},"cn0":185},{"mesid":{"sat":19,"code":12},"cn0":184},{"mesid":{"sat":22,"code":12},"cn0":190},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":12,"code":13},"cn0":209},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":12,"code":14},"cn0":196},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":25,"code":14},"cn0":193},{"mesid":{"sat":11,"code":14},"cn0":190},{"mesid":{"sat":24,"code":14},"cn0":206},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":31,"code":14},"cn0":160},{"mesid":{"sat":33,"code":14},"cn0":154},{"mesid":{"sat":25,"code":20},"cn0":200},{"mesid":{"sat":24,"code":20},"cn0":215},{"mesid":{"sat":11,"code":20},"cn0":193},{"mesid":{"sat":31,"code":20},"cn0":173},{"mesid":{"sat":12,"code":20},"cn0":206},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":33,"code":20},"cn0":169},{"mesid":{"sat":0,"code":0},"cn0":0}]} +{"crc":26390,"length":11,"msg_type":258,"payload":"Mgg49y4QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271513400,"ns_residual":0,"flags":1} +{"crc":15838,"length":16,"msg_type":259,"payload":"ETj3LhDkBwMZAxg3/oPXFw==","preamble":85,"sender":22963,"flags":17,"tow":271513400,"year":2020,"month":3,"day":25,"hours":3,"minutes":24,"seconds":55,"ns":399999998} +{"crc":14207,"length":34,"msg_type":522,"payload":"OPcuECGwlOBl6kJAfUR5G1aSXsAEAPh96GkxwAECWwQPBg==","preamble":85,"sender":22963,"tow":271513400,"lat":37.83123404750973,"lon":-122.28650557367833,"height":-17.41370379738511,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":63893,"length":22,"msg_type":526,"payload":"OPcuEPH///8HAAAANgAAAPEAygIPAg==","preamble":85,"sender":22963,"tow":271513400,"n":-15,"e":7,"d":54,"h_accuracy":241,"v_accuracy":714,"n_sats":15,"flags":2} +{"crc":1725,"length":15,"msg_type":520,"payload":"OPcuEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271513400,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":62046,"length":22,"msg_type":524,"payload":"OPcuEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271513400,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":28479,"length":6,"msg_type":528,"payload":"OPcuEP//","preamble":85,"sender":22963,"tow":271513400,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":49809,"length":9,"msg_type":117,"payload":"/wAAAAAAAAAA","preamble":85,"sender":22963,"mask":255,"l1ca_bias":0,"l1p_bias":0,"l2ca_bias":0,"l2p_bias":0} +{"crc":58295,"length":11,"msg_type":258,"payload":"Mgic9y4QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271513500,"ns_residual":0,"flags":1} +{"crc":1849,"length":16,"msg_type":259,"payload":"EZz3LhDkBwMZAxg3/mTNHQ==","preamble":85,"sender":22963,"flags":17,"tow":271513500,"year":2020,"month":3,"day":25,"hours":3,"minutes":24,"seconds":55,"ns":499999998} +{"crc":51417,"length":34,"msg_type":522,"payload":"nPcuEIaHlOBl6kJAo0F7G1aSXsCsZoGSc2YxwAECWwQPBg==","preamble":85,"sender":22963,"tow":271513500,"lat":37.83123404743587,"lon":-122.2865055755306,"height":-17.400200993148857,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":56369,"length":22,"msg_type":526,"payload":"nPcuEAcAAADz////xf////EAygIPAg==","preamble":85,"sender":22963,"tow":271513500,"n":7,"e":-13,"d":-59,"h_accuracy":241,"v_accuracy":714,"n_sats":15,"flags":2} +{"crc":21513,"length":15,"msg_type":520,"payload":"nPcuEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271513500,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":34087,"length":22,"msg_type":524,"payload":"nPcuEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271513500,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":34998,"length":6,"msg_type":528,"payload":"nPcuEP//","preamble":85,"sender":22963,"tow":271513500,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":25385,"length":11,"msg_type":258,"payload":"MggA+C4QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271513600,"ns_residual":0,"flags":1} +{"crc":32607,"length":16,"msg_type":259,"payload":"EQD4LhDkBwMZAxg3/kXDIw==","preamble":85,"sender":22963,"flags":17,"tow":271513600,"year":2020,"month":3,"day":25,"hours":3,"minutes":24,"seconds":55,"ns":599999998} +{"crc":32756,"length":34,"msg_type":522,"payload":"APguEGK7neBl6kJAqNNjG1aSXsD6k/kxS2QxwAECWwQPBg==","preamble":85,"sender":22963,"tow":271513600,"lat":37.831234051721154,"lon":-122.28650555371007,"height":-17.391772387916696,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":32770,"length":22,"msg_type":526,"payload":"APguEAoAAAACAAAAAwAAAPEAygIPAg==","preamble":85,"sender":22963,"tow":271513600,"n":10,"e":2,"d":3,"h_accuracy":241,"v_accuracy":714,"n_sats":15,"flags":2} +{"crc":26891,"length":15,"msg_type":520,"payload":"APguEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271513600,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":48608,"length":22,"msg_type":524,"payload":"APguEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271513600,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":10248,"length":6,"msg_type":528,"payload":"APguEP//","preamble":85,"sender":22963,"tow":271513600,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":9713,"length":34,"msg_type":30583,"payload":"gwKF9y4QPwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"sid":{"sat":131,"code":2},"tow":271513477,"message_type":63,"data":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]} +{"crc":2019,"length":11,"msg_type":258,"payload":"Mghk+C4QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271513700,"ns_residual":0,"flags":1} +{"crc":55059,"length":16,"msg_type":259,"payload":"EWT4LhDkBwMZAxg3/ia5KQ==","preamble":85,"sender":22963,"flags":17,"tow":271513700,"year":2020,"month":3,"day":25,"hours":3,"minutes":24,"seconds":55,"ns":699999998} +{"crc":21293,"length":34,"msg_type":522,"payload":"ZPguEDTqaeBl6kJAxV5CG1aSXsCdPlNDmmIxwAECWwQPBg==","preamble":85,"sender":22963,"tow":271513700,"lat":37.83123402759193,"lon":-122.2865055225512,"height":-17.385166366408715,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":29645,"length":22,"msg_type":526,"payload":"ZPguEO////8HAAAAAAAAAPEAygIPAg==","preamble":85,"sender":22963,"tow":271513700,"n":-17,"e":7,"d":0,"h_accuracy":241,"v_accuracy":714,"n_sats":15,"flags":2} +{"crc":17828,"length":15,"msg_type":520,"payload":"ZPguEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271513700,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":42326,"length":22,"msg_type":524,"payload":"ZPguEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271513700,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":29105,"length":6,"msg_type":528,"payload":"ZPguEP//","preamble":85,"sender":22963,"tow":271513700,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":43709,"length":11,"msg_type":258,"payload":"MgjI+C4QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271513800,"ns_residual":0,"flags":1} +{"crc":55815,"length":16,"msg_type":259,"payload":"Ecj4LhDkBwMZAxg3/gevLw==","preamble":85,"sender":22963,"flags":17,"tow":271513800,"year":2020,"month":3,"day":25,"hours":3,"minutes":24,"seconds":55,"ns":799999998} +{"crc":17143,"length":34,"msg_type":522,"payload":"yPguEPnLaOBl6kJA+hAjG1aSXsAvlZNkMmIxwAECWwQPBg==","preamble":85,"sender":22963,"tow":271513800,"lat":37.83123402707128,"lon":-122.28650549339719,"height":-17.38358143427939,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":36800,"length":22,"msg_type":526,"payload":"yPguEAAAAAAGAAAAHAAAAPEAygIPAg==","preamble":85,"sender":22963,"tow":271513800,"n":0,"e":6,"d":28,"h_accuracy":241,"v_accuracy":714,"n_sats":15,"flags":2} +{"crc":12373,"length":15,"msg_type":520,"payload":"yPguEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271513800,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":35980,"length":22,"msg_type":524,"payload":"yPguEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271513800,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":39802,"length":6,"msg_type":528,"payload":"yPguEP//","preamble":85,"sender":22963,"tow":271513800,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":59629,"length":237,"msg_type":97,"payload":"BQDWFQC1AgC9HwCnAAAAAAAAGQDaDADPHQDVEgDOAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwLOGQHNDAG8HwGZEgHFHQHEAAAABQHDAAAAAAAAAAAAAAAACwPVCQOzFAOtBQPQCgPQAAAABAO1FQPKCQSrFATNAAAACwTHBQTDAAS8AAAABASwIwzIGgypIgydGAy9GQydDAy4Ewy4Fgy/AAAADA3SAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADA7EAAAAGQ7BCw6/GA7OAAAAHw6hIQ6aGRTJGBTXCxTCHxStDBTOAAAAIRSpAAAA","preamble":85,"sender":22963,"states":[{"mesid":{"sat":5,"code":0},"cn0":214},{"mesid":{"sat":21,"code":0},"cn0":181},{"mesid":{"sat":2,"code":0},"cn0":189},{"mesid":{"sat":31,"code":0},"cn0":167},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":25,"code":0},"cn0":218},{"mesid":{"sat":12,"code":0},"cn0":207},{"mesid":{"sat":29,"code":0},"cn0":213},{"mesid":{"sat":18,"code":0},"cn0":206},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":131,"code":2},"cn0":206},{"mesid":{"sat":25,"code":1},"cn0":205},{"mesid":{"sat":12,"code":1},"cn0":188},{"mesid":{"sat":31,"code":1},"cn0":153},{"mesid":{"sat":18,"code":1},"cn0":197},{"mesid":{"sat":29,"code":1},"cn0":196},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":5,"code":1},"cn0":195},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":11,"code":3},"cn0":213},{"mesid":{"sat":9,"code":3},"cn0":179},{"mesid":{"sat":20,"code":3},"cn0":173},{"mesid":{"sat":5,"code":3},"cn0":208},{"mesid":{"sat":10,"code":3},"cn0":208},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":4,"code":3},"cn0":181},{"mesid":{"sat":21,"code":3},"cn0":202},{"mesid":{"sat":9,"code":4},"cn0":171},{"mesid":{"sat":20,"code":4},"cn0":205},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":11,"code":4},"cn0":199},{"mesid":{"sat":5,"code":4},"cn0":195},{"mesid":{"sat":0,"code":4},"cn0":188},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":4,"code":4},"cn0":176},{"mesid":{"sat":35,"code":12},"cn0":200},{"mesid":{"sat":26,"code":12},"cn0":169},{"mesid":{"sat":34,"code":12},"cn0":157},{"mesid":{"sat":24,"code":12},"cn0":189},{"mesid":{"sat":25,"code":12},"cn0":157},{"mesid":{"sat":12,"code":12},"cn0":184},{"mesid":{"sat":19,"code":12},"cn0":184},{"mesid":{"sat":22,"code":12},"cn0":191},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":12,"code":13},"cn0":210},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":12,"code":14},"cn0":196},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":25,"code":14},"cn0":193},{"mesid":{"sat":11,"code":14},"cn0":191},{"mesid":{"sat":24,"code":14},"cn0":206},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":31,"code":14},"cn0":161},{"mesid":{"sat":33,"code":14},"cn0":154},{"mesid":{"sat":25,"code":20},"cn0":201},{"mesid":{"sat":24,"code":20},"cn0":215},{"mesid":{"sat":11,"code":20},"cn0":194},{"mesid":{"sat":31,"code":20},"cn0":173},{"mesid":{"sat":12,"code":20},"cn0":206},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":33,"code":20},"cn0":169},{"mesid":{"sat":0,"code":0},"cn0":0}]} +{"crc":41336,"length":136,"msg_type":151,"payload":"AgAaHgUALDUMAFEtFQB9GRkAbUYaAKEBHQChNx8AlQ4EAxYWBQMyIQYDTggJA18OCgNxKQsDmCUMA6oDEwMiBxQDCzEVA5UlDAyUKRMMIyAUDA8CFgxDIxgMgiMZDJ0OGgxnFR0MLAAiDI4RIwwiLQsOizIMDg88GA5sNhkOlykfDlURIQ4fDw==","preamble":85,"sender":22963,"azel":[{"sid":{"sat":2,"code":0},"az":26,"el":30},{"sid":{"sat":5,"code":0},"az":44,"el":53},{"sid":{"sat":12,"code":0},"az":81,"el":45},{"sid":{"sat":21,"code":0},"az":125,"el":25},{"sid":{"sat":25,"code":0},"az":109,"el":70},{"sid":{"sat":26,"code":0},"az":161,"el":1},{"sid":{"sat":29,"code":0},"az":161,"el":55},{"sid":{"sat":31,"code":0},"az":149,"el":14},{"sid":{"sat":4,"code":3},"az":22,"el":22},{"sid":{"sat":5,"code":3},"az":50,"el":33},{"sid":{"sat":6,"code":3},"az":78,"el":8},{"sid":{"sat":9,"code":3},"az":95,"el":14},{"sid":{"sat":10,"code":3},"az":113,"el":41},{"sid":{"sat":11,"code":3},"az":152,"el":37},{"sid":{"sat":12,"code":3},"az":170,"el":3},{"sid":{"sat":19,"code":3},"az":34,"el":7},{"sid":{"sat":20,"code":3},"az":11,"el":49},{"sid":{"sat":21,"code":3},"az":149,"el":37},{"sid":{"sat":12,"code":12},"az":148,"el":41},{"sid":{"sat":19,"code":12},"az":35,"el":32},{"sid":{"sat":20,"code":12},"az":15,"el":2},{"sid":{"sat":22,"code":12},"az":67,"el":35},{"sid":{"sat":24,"code":12},"az":130,"el":35},{"sid":{"sat":25,"code":12},"az":157,"el":14},{"sid":{"sat":26,"code":12},"az":103,"el":21},{"sid":{"sat":29,"code":12},"az":44,"el":0},{"sid":{"sat":34,"code":12},"az":142,"el":17},{"sid":{"sat":35,"code":12},"az":34,"el":45},{"sid":{"sat":11,"code":14},"az":139,"el":50},{"sid":{"sat":12,"code":14},"az":15,"el":60},{"sid":{"sat":24,"code":14},"az":108,"el":54},{"sid":{"sat":25,"code":14},"az":151,"el":41},{"sid":{"sat":31,"code":14},"az":85,"el":17},{"sid":{"sat":33,"code":14},"az":31,"el":15}]} +{"crc":13846,"length":11,"msg_type":258,"payload":"Mggs+S4QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271513900,"ns_residual":0,"flags":1} +{"crc":14938,"length":16,"msg_type":259,"payload":"ESz5LhDkBwMZAxg3/uikNQ==","preamble":85,"sender":22963,"flags":17,"tow":271513900,"year":2020,"month":3,"day":25,"hours":3,"minutes":24,"seconds":55,"ns":899999998} +{"crc":56521,"length":34,"msg_type":522,"payload":"LPkuEKtwcOBl6kJANIsLG1aSXsCMF6sQx2AxwAECWwQPBg==","preamble":85,"sender":22963,"tow":271513900,"lat":37.83123403063049,"lon":-122.2865054714901,"height":-17.37803749253321,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":33963,"length":22,"msg_type":526,"payload":"LPkuEAgAAAAAAAAA7P////EAygIPAg==","preamble":85,"sender":22963,"tow":271513900,"n":8,"e":0,"d":-20,"h_accuracy":241,"v_accuracy":714,"n_sats":15,"flags":2} +{"crc":13193,"length":15,"msg_type":520,"payload":"LPkuEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271513900,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":64345,"length":22,"msg_type":524,"payload":"LPkuEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271513900,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":48306,"length":6,"msg_type":528,"payload":"LPkuEP//","preamble":85,"sender":22963,"tow":271513900,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":8480,"length":249,"msg_type":74,"payload":"kPkuEAAAAAAyCEBH97M+vhKXBihJ/2rVDw8FAHkkF0Vh7kIH0H0I8LUPDxUADzXyRaj0WQc7T/akvQ8PAgBeggJJwGKsByl1/qinDw8fALblJT1gPG0GFZr7cNoPDxkA+La0QKP2zAb1aPQpzw8PDAAAxNA+mRmaBgvLBc7VDw8dAPblJT2UAAIFjpL8mc0PDxkBr7a0QGqYTAUv9vazvA8PDAEHggJJsrD6BcHL/v2aDw8fAa7D0D4I9iQFCoQEWsMPDx0BAvezPlqaIgX9cf/1ww8PBQE7hPw+hEq7BjKOBNXVDw8LAyEZ1UT96VkHFsfu57MPDwkD","preamble":85,"sender":22963,"header":{"t":{"tow":271514000,"ns_residual":0,"wn":2098},"n_obs":64},"obs":[{"P":1051981639,"L":{"i":110564030,"f":40},"D":{"i":-183,"f":106},"cn0":213,"lock":15,"flags":15,"sid":{"sat":5,"code":0}},{"P":1159144569,"L":{"i":121826913,"f":208},"D":{"i":2173,"f":240},"cn0":181,"lock":15,"flags":15,"sid":{"sat":21,"code":0}},{"P":1173501199,"L":{"i":123335848,"f":59},"D":{"i":-2481,"f":164},"cn0":189,"lock":15,"flags":15,"sid":{"sat":2,"code":0}},{"P":1224901214,"L":{"i":128737984,"f":41},"D":{"i":-395,"f":168},"cn0":167,"lock":15,"flags":15,"sid":{"sat":31,"code":0}},{"P":1025893814,"L":{"i":107822176,"f":21},"D":{"i":-1126,"f":112},"cn0":218,"lock":15,"flags":15,"sid":{"sat":25,"code":0}},{"P":1085585144,"L":{"i":114095779,"f":245},"D":{"i":-2968,"f":41},"cn0":207,"lock":15,"flags":15,"sid":{"sat":12,"code":0}},{"P":1053869056,"L":{"i":110762393,"f":11},"D":{"i":1483,"f":206},"cn0":213,"lock":15,"flags":15,"sid":{"sat":29,"code":0}},{"P":1025893878,"L":{"i":84017300,"f":142},"D":{"i":-878,"f":153},"cn0":205,"lock":15,"flags":15,"sid":{"sat":25,"code":1}},{"P":1085585071,"L":{"i":88905834,"f":47},"D":{"i":-2314,"f":179},"cn0":188,"lock":15,"flags":15,"sid":{"sat":12,"code":1}},{"P":1224901127,"L":{"i":100315314,"f":193},"D":{"i":-309,"f":253},"cn0":154,"lock":15,"flags":15,"sid":{"sat":31,"code":1}},{"P":1053868974,"L":{"i":86308360,"f":10},"D":{"i":1156,"f":90},"cn0":195,"lock":15,"flags":15,"sid":{"sat":29,"code":1}},{"P":1051981570,"L":{"i":86153818,"f":253},"D":{"i":-143,"f":245},"cn0":195,"lock":15,"flags":15,"sid":{"sat":5,"code":1}},{"P":1056736315,"L":{"i":112937604,"f":50},"D":{"i":1166,"f":213},"cn0":213,"lock":15,"flags":15,"sid":{"sat":11,"code":3}},{"P":1154816289,"L":{"i":123333117,"f":22},"D":{"i":-4409,"f":231},"cn0":179,"lock":15,"flags":15,"sid":{"sat":9,"code":3}}]} +{"crc":49216,"length":249,"msg_type":74,"payload":"kPkuEAAAAAAyCEHtTy09SfaKBhRG+w6tDw8UAxpXCUDzotgG6pcIVtAPDwUDnjZlPsTspgbLHPSr0A8PCgMAQgdD0L0tB9Hc+tG1Dw8EAym2Kj/Up8IGhVYGn8oPDxUDdhnVRAe2twVknPJ+qw8PCQRaUS09sb8WBeZT/EnNDw8UBFeF/D5xVjwFKIwDbccPDwsEUlgJQGwpUwUqrQa3ww8PBQT/QgdDtVqVBRIB/FawDw8EBGsplUUWKD8H+CT6acgPDyMMhU3zSeyaswdqQPQDqg8PGgwBmhZMq5rsB/bHCNKeDw8iDMRuoEf+pnUHLun6eb0PDxgM","preamble":85,"sender":22963,"header":{"t":{"tow":271514000,"ns_residual":0,"wn":2098},"n_obs":65},"obs":[{"P":1026379757,"L":{"i":109770313,"f":20},"D":{"i":-1210,"f":14},"cn0":173,"lock":15,"flags":15,"sid":{"sat":20,"code":3}},{"P":1074353946,"L":{"i":114860787,"f":234},"D":{"i":2199,"f":86},"cn0":208,"lock":15,"flags":15,"sid":{"sat":5,"code":3}},{"P":1046820510,"L":{"i":111602884,"f":203},"D":{"i":-3044,"f":171},"cn0":208,"lock":15,"flags":15,"sid":{"sat":10,"code":3}},{"P":1124549120,"L":{"i":120438224,"f":209},"D":{"i":-1316,"f":209},"cn0":181,"lock":15,"flags":15,"sid":{"sat":4,"code":3}},{"P":1059763753,"L":{"i":113420244,"f":133},"D":{"i":1622,"f":159},"cn0":202,"lock":15,"flags":15,"sid":{"sat":21,"code":3}},{"P":1154816374,"L":{"i":95925767,"f":100},"D":{"i":-3428,"f":126},"cn0":171,"lock":15,"flags":15,"sid":{"sat":9,"code":4}},{"P":1026380122,"L":{"i":85376945,"f":230},"D":{"i":-941,"f":73},"cn0":205,"lock":15,"flags":15,"sid":{"sat":20,"code":4}},{"P":1056736599,"L":{"i":87840369,"f":40},"D":{"i":908,"f":109},"cn0":199,"lock":15,"flags":15,"sid":{"sat":11,"code":4}},{"P":1074354258,"L":{"i":89336172,"f":42},"D":{"i":1709,"f":183},"cn0":195,"lock":15,"flags":15,"sid":{"sat":5,"code":4}},{"P":1124549375,"L":{"i":93674165,"f":18},"D":{"i":-1023,"f":86},"cn0":176,"lock":15,"flags":15,"sid":{"sat":4,"code":4}},{"P":1167403371,"L":{"i":121579542,"f":248},"D":{"i":-1500,"f":105},"cn0":200,"lock":15,"flags":15,"sid":{"sat":35,"code":12}},{"P":1240681861,"L":{"i":129211116,"f":106},"D":{"i":-3008,"f":3},"cn0":170,"lock":15,"flags":15,"sid":{"sat":26,"code":12}},{"P":1276549633,"L":{"i":132946603,"f":246},"D":{"i":2247,"f":210},"cn0":158,"lock":15,"flags":15,"sid":{"sat":34,"code":12}},{"P":1201696452,"L":{"i":125150974,"f":46},"D":{"i":-1303,"f":121},"cn0":189,"lock":15,"flags":15,"sid":{"sat":24,"code":12}}]} +{"crc":36103,"length":249,"msg_type":74,"payload":"kPkuEAAAAAAyCEKreRNNf/AGCGouBR6dDw8ZDB/2TkVc2DcH90wGKbgPDwwM7DtDRzryaweR3/4muA8PEwytF19H+NhuBw5TCR2/Dw8WDOD1TkUI35QF3N4ECNIPDwwN2wEHQqKE8Ab9/PuexA8PDA6oDyFLkmjlB9tBBLnBDw8ZDjYxIUeSzHkHBxcE874PDwsOtZgnQ2TZDgdgL/nPzg8PGA7ktEdRnOeKCHuZ84uhDw8fDkVZ9lF/Qp0Id5/3sJkPDyEOiQ8hSxXfDAYqQQOuyA8PGRTNmidDRnhoBafH+oXXDw8YFHEwIUfKaroFwiEDKsIPDwsU","preamble":85,"sender":22963,"header":{"t":{"tow":271514000,"ns_residual":0,"wn":2098},"n_obs":66},"obs":[{"P":1293121963,"L":{"i":134672511,"f":106},"D":{"i":1326,"f":30},"cn0":157,"lock":15,"flags":15,"sid":{"sat":25,"code":12}},{"P":1162802719,"L":{"i":121100380,"f":247},"D":{"i":1612,"f":41},"cn0":184,"lock":15,"flags":15,"sid":{"sat":12,"code":12}},{"P":1195588588,"L":{"i":124514874,"f":145},"D":{"i":-289,"f":38},"cn0":184,"lock":15,"flags":15,"sid":{"sat":19,"code":12}},{"P":1197414317,"L":{"i":124705016,"f":14},"D":{"i":2387,"f":29},"cn0":191,"lock":15,"flags":15,"sid":{"sat":22,"code":12}},{"P":1162802656,"L":{"i":93642504,"f":220},"D":{"i":1246,"f":8},"cn0":210,"lock":15,"flags":15,"sid":{"sat":12,"code":13}},{"P":1107755483,"L":{"i":116425890,"f":253},"D":{"i":-1028,"f":158},"cn0":196,"lock":15,"flags":15,"sid":{"sat":12,"code":14}},{"P":1260457896,"L":{"i":132475026,"f":219},"D":{"i":1089,"f":185},"cn0":193,"lock":15,"flags":15,"sid":{"sat":25,"code":14}},{"P":1193357622,"L":{"i":125422738,"f":7},"D":{"i":1047,"f":243},"cn0":190,"lock":15,"flags":15,"sid":{"sat":11,"code":14}},{"P":1126668469,"L":{"i":118413668,"f":96},"D":{"i":-1745,"f":207},"cn0":206,"lock":15,"flags":15,"sid":{"sat":24,"code":14}},{"P":1363653860,"L":{"i":143320988,"f":123},"D":{"i":-3175,"f":139},"cn0":161,"lock":15,"flags":15,"sid":{"sat":31,"code":14}},{"P":1375099205,"L":{"i":144523903,"f":119},"D":{"i":-2145,"f":176},"cn0":153,"lock":15,"flags":15,"sid":{"sat":33,"code":14}},{"P":1260457865,"L":{"i":101506837,"f":42},"D":{"i":833,"f":174},"cn0":200,"lock":15,"flags":15,"sid":{"sat":25,"code":20}},{"P":1126669005,"L":{"i":90732614,"f":167},"D":{"i":-1337,"f":133},"cn0":215,"lock":15,"flags":15,"sid":{"sat":24,"code":20}},{"P":1193357425,"L":{"i":96103114,"f":194},"D":{"i":801,"f":42},"cn0":194,"lock":15,"flags":15,"sid":{"sat":11,"code":20}}]} +{"crc":43274,"length":62,"msg_type":74,"payload":"kPkuEAAAAAAyCEMctUdRTq6LBkiA9hqtDw8fFEoBB0KHOlEFjez8Zs4PDwwUHVn2Ud2+mQZel/lNqQ8PIRQ=","preamble":85,"sender":22963,"header":{"t":{"tow":271514000,"ns_residual":0,"wn":2098},"n_obs":67},"obs":[{"P":1363653916,"L":{"i":109817422,"f":72},"D":{"i":-2432,"f":26},"cn0":173,"lock":15,"flags":15,"sid":{"sat":31,"code":20}},{"P":1107755338,"L":{"i":89209479,"f":141},"D":{"i":-788,"f":102},"cn0":206,"lock":15,"flags":15,"sid":{"sat":12,"code":20}},{"P":1375099165,"L":{"i":110739165,"f":94},"D":{"i":-1641,"f":77},"cn0":169,"lock":15,"flags":15,"sid":{"sat":33,"code":20}}]} +{"crc":49809,"length":9,"msg_type":117,"payload":"/wAAAAAAAAAA","preamble":85,"sender":22963,"mask":255,"l1ca_bias":0,"l1p_bias":0,"l2ca_bias":0,"l2p_bias":0} +{"crc":51382,"length":11,"msg_type":258,"payload":"MgiQ+S4QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271514000,"ns_residual":0,"flags":1} +{"crc":30595,"length":16,"msg_type":259,"payload":"EZD5LhDkBwMZAxg3/smaOw==","preamble":85,"sender":22963,"flags":17,"tow":271514000,"year":2020,"month":3,"day":25,"hours":3,"minutes":24,"seconds":55,"ns":999999998} +{"crc":53697,"length":34,"msg_type":522,"payload":"kPkuEPYhaOBl6kJAug8JG1aSXsByy6SeNF8xwAECWwQPBg==","preamble":85,"sender":22963,"tow":271514000,"lat":37.83123402676203,"lon":-122.28650546917825,"height":-17.371896662934383,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":48875,"length":22,"msg_type":526,"payload":"kPkuEP/////5////+f////EAygIPAg==","preamble":85,"sender":22963,"tow":271514000,"n":-1,"e":-7,"d":-7,"h_accuracy":241,"v_accuracy":714,"n_sats":15,"flags":2} +{"crc":2290,"length":15,"msg_type":520,"payload":"kPkuEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271514000,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":28613,"length":22,"msg_type":524,"payload":"kPkuEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271514000,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":19709,"length":6,"msg_type":528,"payload":"kPkuEP//","preamble":85,"sender":22963,"tow":271514000,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":40942,"length":4,"msg_type":65535,"payload":"AAUCgA==","preamble":85,"sender":22963,"flags":2147616000} +{"crc":2168,"length":24,"msg_type":72,"payload":"UO0a3iqORMHK1UJhIkRQwc9nFIPvrk1B","preamble":85,"sender":22963,"x":-2694229.735196747,"y":-4264073.519704292,"z":3890655.0240602265} +{"crc":47991,"length":26,"msg_type":23,"payload":"bWFpbgAAAAAAAAAAAAAAAAAAAAAAAAx1AAA=","preamble":85,"sender":22963,"name":"main\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":0,"stack_free":29964} +{"crc":35155,"length":26,"msg_type":23,"payload":"aWRsZQAAAAAAAAAAAAAAAAAAAABIAXwAAAA=","preamble":85,"sender":22963,"name":"idle\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":328,"stack_free":124} +{"crc":38839,"length":26,"msg_type":23,"payload":"cnBtc2cAAAAAAAAAAAAAAAAAAAABAAQOAAA=","preamble":85,"sender":22963,"name":"rpmsg\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":1,"stack_free":3588} +{"crc":51784,"length":26,"msg_type":23,"payload":"U0JQAAAAAAAAAAAAAAAAAAAAAAAAAPz/AAA=","preamble":85,"sender":22963,"name":"SBP\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":0,"stack_free":65532} +{"crc":33651,"length":26,"msg_type":23,"payload":"TkFQAAAAAAAAAAAAAAAAAAAAAAAAAASAAAA=","preamble":85,"sender":22963,"name":"NAP\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":0,"stack_free":32772} +{"crc":61814,"length":26,"msg_type":23,"payload":"bWFuYWdlIFBWAAAAAAAAAAAAAAAAACwEAAA=","preamble":85,"sender":22963,"name":"manage PV\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":0,"stack_free":1068} +{"crc":14252,"length":26,"msg_type":23,"payload":"SU1VAAAAAAAAAAAAAAAAAAAAAAAAAPQHAAA=","preamble":85,"sender":22963,"name":"IMU\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":0,"stack_free":2036} +{"crc":18976,"length":26,"msg_type":23,"payload":"SU1VIGF1eAAAAAAAAAAAAAAAAAAAAEwIAAA=","preamble":85,"sender":22963,"name":"IMU aux\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":0,"stack_free":2124} +{"crc":26120,"length":26,"msg_type":23,"payload":"bmRiAAAAAAAAAAAAAAAAAAAAAAAAAFAMAAA=","preamble":85,"sender":22963,"name":"ndb\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":0,"stack_free":3152} +{"crc":26625,"length":26,"msg_type":23,"payload":"TkFQIFRyYWNraW5nAAAAAAAAAAAlAdR3AAA=","preamble":85,"sender":22963,"name":"NAP Tracking\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":293,"stack_free":30676} +{"crc":55602,"length":26,"msg_type":23,"payload":"ZGVjb2RlAAAAAAAAAAAAAAAAAAAJANQGAAA=","preamble":85,"sender":22963,"name":"decode\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":9,"stack_free":1748} +{"crc":38636,"length":26,"msg_type":23,"payload":"bWFuYWdlIGFjcQAAAAAAAAAAAADLAKR3AAA=","preamble":85,"sender":22963,"name":"manage acq\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":203,"stack_free":30628} +{"crc":58531,"length":26,"msg_type":23,"payload":"c3lzdGVtIG1vbml0b3IAAAAAAAAAACwGAAA=","preamble":85,"sender":22963,"name":"system monitor\u0000\u0000\u0000\u0000\u0000\u0000","cpu":0,"stack_free":1580} +{"crc":44438,"length":26,"msg_type":23,"payload":"V2F0Y2hkb2cAAAAAAAAAAAAAAAAAAOQDAAA=","preamble":85,"sender":22963,"name":"Watchdog\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":0,"stack_free":996} +{"crc":28732,"length":26,"msg_type":23,"payload":"c3RhcmxpbmcAAAAAAAAAAAAAAACYAPz/AAA=","preamble":85,"sender":22963,"name":"starling\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":152,"stack_free":65532} +{"crc":57561,"length":26,"msg_type":23,"payload":"bWVfY2FsY19wdnQAAAAAAAAAAAAJAIwjAAA=","preamble":85,"sender":22963,"name":"me_calc_pvt\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":9,"stack_free":9100} +{"crc":38576,"length":26,"msg_type":23,"payload":"UFBTAAAAAAAAAAAAAAAAAAAAAAAAAEgHAAA=","preamble":85,"sender":22963,"name":"PPS\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":0,"stack_free":1864} +{"crc":50933,"length":26,"msg_type":23,"payload":"c3BlY3RydW0gYW5hbHl6ZXIAAAAAANQPAAA=","preamble":85,"sender":22963,"name":"spectrum analyzer\u0000\u0000\u0000","cpu":0,"stack_free":4052} +{"crc":44156,"length":11,"msg_type":258,"payload":"Mgj0+S4QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271514100,"ns_residual":0,"flags":1} +{"crc":59915,"length":16,"msg_type":259,"payload":"EfT5LhDkBwMZAxg4/uD1BQ==","preamble":85,"sender":22963,"flags":17,"tow":271514100,"year":2020,"month":3,"day":25,"hours":3,"minutes":24,"seconds":56,"ns":99999998} +{"crc":14225,"length":34,"msg_type":522,"payload":"9PkuEPcWW+Bl6kJA1DMBG1aSXsBIPjX6I18xwAECWwQPBg==","preamble":85,"sender":22963,"tow":271514100,"lat":37.831234020688434,"lon":-122.28650546185901,"height":-17.37164272117505,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":31130,"length":22,"msg_type":526,"payload":"9PkuEAIAAAD8////EwAAAPEAygIPAg==","preamble":85,"sender":22963,"tow":271514100,"n":2,"e":-4,"d":19,"h_accuracy":241,"v_accuracy":714,"n_sats":15,"flags":2} +{"crc":9309,"length":15,"msg_type":520,"payload":"9PkuEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271514100,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":30579,"length":22,"msg_type":524,"payload":"9PkuEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271514100,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":5444,"length":6,"msg_type":528,"payload":"9PkuEP//","preamble":85,"sender":22963,"tow":271514100,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":51543,"length":11,"msg_type":258,"payload":"MghY+i4QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271514200,"ns_residual":0,"flags":1} +{"crc":25117,"length":16,"msg_type":259,"payload":"EVj6LhDkBwMZAxg4/sHrCw==","preamble":85,"sender":22963,"flags":17,"tow":271514200,"year":2020,"month":3,"day":25,"hours":3,"minutes":24,"seconds":56,"ns":199999998} +{"crc":48947,"length":34,"msg_type":522,"payload":"WPouEHSMSOBl6kJA4x7kGlaSXsDCjcYdz14xwAECWwQPBg==","preamble":85,"sender":22963,"tow":271514200,"lat":37.83123401205458,"lon":-122.28650543477447,"height":-17.37034784410003,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":14781,"length":22,"msg_type":526,"payload":"WPouEAAAAAAKAAAAAQAAAPEAygIPAg==","preamble":85,"sender":22963,"tow":271514200,"n":0,"e":10,"d":1,"h_accuracy":241,"v_accuracy":714,"n_sats":15,"flags":2} +{"crc":56335,"length":15,"msg_type":520,"payload":"WPouEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271514200,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":12434,"length":22,"msg_type":524,"payload":"WPouEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271514200,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":4445,"length":6,"msg_type":528,"payload":"WPouEP//","preamble":85,"sender":22963,"tow":271514200,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":4655,"length":11,"msg_type":258,"payload":"Mgi8+i4QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271514300,"ns_residual":0,"flags":1} +{"crc":33835,"length":16,"msg_type":259,"payload":"Ebz6LhDkBwMZAxg4/qLhEQ==","preamble":85,"sender":22963,"flags":17,"tow":271514300,"year":2020,"month":3,"day":25,"hours":3,"minutes":24,"seconds":56,"ns":299999998} +{"crc":50773,"length":34,"msg_type":522,"payload":"vPouEEKxQuBl6kJAkBrmGlaSXsADMv8wPl4xwAECWwQPBg==","preamble":85,"sender":22963,"tow":271514300,"lat":37.83123400932756,"lon":-122.28650543662138,"height":-17.368136465362124,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":28854,"length":22,"msg_type":526,"payload":"vPouEAMAAAD5/////v////EAygIPAg==","preamble":85,"sender":22963,"tow":271514300,"n":3,"e":-7,"d":-2,"h_accuracy":241,"v_accuracy":714,"n_sats":15,"flags":2} +{"crc":42162,"length":15,"msg_type":520,"payload":"vPouEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271514300,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":37553,"length":22,"msg_type":524,"payload":"vPouEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271514300,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":40132,"length":6,"msg_type":528,"payload":"vPouEP//","preamble":85,"sender":22963,"tow":271514300,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":51226,"length":237,"msg_type":97,"payload":"BQDWFQC1AgC9HwCnAAAAAAAAGQDaDADPHQDVEgDOAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwLOGQHNDAG8HwGaEgHFHQHEAAAABQHDAAAAAAAAAAAAAAAAZAPVYgOzZgOtZQPQXQPQAAAAagO1aAPKYgSrZgTNXQRDZATHZQTEaAS8AAAAagSvIwzIGgyqIgydGAy9GQyeDAy5Ewy4Fgy/AAAADA3SAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADA7EAAAAGQ7BCw6+GA7OAAAAHw6gIQ6aGRTJGBTXCxTCHxStDBTOAAAAIRSpAAAA","preamble":85,"sender":22963,"states":[{"mesid":{"sat":5,"code":0},"cn0":214},{"mesid":{"sat":21,"code":0},"cn0":181},{"mesid":{"sat":2,"code":0},"cn0":189},{"mesid":{"sat":31,"code":0},"cn0":167},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":25,"code":0},"cn0":218},{"mesid":{"sat":12,"code":0},"cn0":207},{"mesid":{"sat":29,"code":0},"cn0":213},{"mesid":{"sat":18,"code":0},"cn0":206},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":131,"code":2},"cn0":206},{"mesid":{"sat":25,"code":1},"cn0":205},{"mesid":{"sat":12,"code":1},"cn0":188},{"mesid":{"sat":31,"code":1},"cn0":154},{"mesid":{"sat":18,"code":1},"cn0":197},{"mesid":{"sat":29,"code":1},"cn0":196},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":5,"code":1},"cn0":195},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":100,"code":3},"cn0":213},{"mesid":{"sat":98,"code":3},"cn0":179},{"mesid":{"sat":102,"code":3},"cn0":173},{"mesid":{"sat":101,"code":3},"cn0":208},{"mesid":{"sat":93,"code":3},"cn0":208},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":106,"code":3},"cn0":181},{"mesid":{"sat":104,"code":3},"cn0":202},{"mesid":{"sat":98,"code":4},"cn0":171},{"mesid":{"sat":102,"code":4},"cn0":205},{"mesid":{"sat":93,"code":4},"cn0":67},{"mesid":{"sat":100,"code":4},"cn0":199},{"mesid":{"sat":101,"code":4},"cn0":196},{"mesid":{"sat":104,"code":4},"cn0":188},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":106,"code":4},"cn0":175},{"mesid":{"sat":35,"code":12},"cn0":200},{"mesid":{"sat":26,"code":12},"cn0":170},{"mesid":{"sat":34,"code":12},"cn0":157},{"mesid":{"sat":24,"code":12},"cn0":189},{"mesid":{"sat":25,"code":12},"cn0":158},{"mesid":{"sat":12,"code":12},"cn0":185},{"mesid":{"sat":19,"code":12},"cn0":184},{"mesid":{"sat":22,"code":12},"cn0":191},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":12,"code":13},"cn0":210},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":12,"code":14},"cn0":196},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":25,"code":14},"cn0":193},{"mesid":{"sat":11,"code":14},"cn0":190},{"mesid":{"sat":24,"code":14},"cn0":206},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":31,"code":14},"cn0":160},{"mesid":{"sat":33,"code":14},"cn0":154},{"mesid":{"sat":25,"code":20},"cn0":201},{"mesid":{"sat":24,"code":20},"cn0":215},{"mesid":{"sat":11,"code":20},"cn0":194},{"mesid":{"sat":31,"code":20},"cn0":173},{"mesid":{"sat":12,"code":20},"cn0":206},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":33,"code":20},"cn0":169},{"mesid":{"sat":0,"code":0},"cn0":0}]} +{"crc":3232,"length":11,"msg_type":258,"payload":"Mggg+y4QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271514400,"ns_residual":0,"flags":1} +{"crc":10022,"length":16,"msg_type":259,"payload":"ESD7LhDkBwMZAxg4/oPXFw==","preamble":85,"sender":22963,"flags":17,"tow":271514400,"year":2020,"month":3,"day":25,"hours":3,"minutes":24,"seconds":56,"ns":399999998} +{"crc":56297,"length":34,"msg_type":522,"payload":"IPsuEABqJOBl6kJARVjhGlaSXsCkKbLpiV0xwAECWwQPBg==","preamble":85,"sender":22963,"tow":271514400,"lat":37.831233995228104,"lon":-122.28650543218926,"height":-17.36538563346552,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":28201,"length":22,"msg_type":526,"payload":"IPsuEPv///8FAAAA7P////EAygIPAg==","preamble":85,"sender":22963,"tow":271514400,"n":-5,"e":5,"d":-20,"h_accuracy":241,"v_accuracy":714,"n_sats":15,"flags":2} +{"crc":31164,"length":15,"msg_type":520,"payload":"IPsuEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271514400,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":47478,"length":22,"msg_type":524,"payload":"IPsuEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271514400,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":62418,"length":6,"msg_type":528,"payload":"IPsuEP//","preamble":85,"sender":22963,"tow":271514400,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":11977,"length":51,"msg_type":1025,"payload":"BkdMTyBMMk9GIE1FIDEgWysxMzExbXNdIGxvdyBDTjAgdG9vIGxvbmcsIGRyb3BwaW5n","preamble":85,"sender":22963,"level":6,"text":"GLO L2OF ME 1 [+1311ms] low CN0 too long, dropping"} +{"crc":49809,"length":9,"msg_type":117,"payload":"/wAAAAAAAAAA","preamble":85,"sender":22963,"mask":255,"l1ca_bias":0,"l1p_bias":0,"l2ca_bias":0,"l2p_bias":0} +{"crc":34817,"length":11,"msg_type":258,"payload":"MgiE+y4QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271514500,"ns_residual":0,"flags":1} +{"crc":7617,"length":16,"msg_type":259,"payload":"EYT7LhDkBwMZAxg4/mTNHQ==","preamble":85,"sender":22963,"flags":17,"tow":271514500,"year":2020,"month":3,"day":25,"hours":3,"minutes":24,"seconds":56,"ns":499999998} +{"crc":24487,"length":34,"msg_type":522,"payload":"hPsuEJPtLuBl6kJAYi/qGlaSXsDaw90Nyl0xwAECWwQPBg==","preamble":85,"sender":22963,"tow":271514500,"lat":37.83123400012405,"lon":-122.28650544042242,"height":-17.366364351884705,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":43301,"length":22,"msg_type":526,"payload":"hPsuEAQAAAAGAAAAFgAAAPEAygIPAg==","preamble":85,"sender":22963,"tow":271514500,"n":4,"e":6,"d":22,"h_accuracy":241,"v_accuracy":714,"n_sats":15,"flags":2} +{"crc":11016,"length":15,"msg_type":520,"payload":"hPsuEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271514500,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":52751,"length":22,"msg_type":524,"payload":"hPsuEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271514500,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":5211,"length":6,"msg_type":528,"payload":"hPsuEP//","preamble":85,"sender":22963,"tow":271514500,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":50484,"length":11,"msg_type":258,"payload":"Mgjo+y4QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271514600,"ns_residual":0,"flags":1} +{"crc":21327,"length":16,"msg_type":259,"payload":"Eej7LhDkBwMZAxg4/kXDIw==","preamble":85,"sender":22963,"flags":17,"tow":271514600,"year":2020,"month":3,"day":25,"hours":3,"minutes":24,"seconds":56,"ns":599999998} +{"crc":59804,"length":34,"msg_type":522,"payload":"6PsuEJYVAuBl6kJAzPvoGlaSXsDDeVSu4F0xwAECWwQPBg==","preamble":85,"sender":22963,"tow":271514600,"lat":37.83123397924207,"lon":-122.28650543930343,"height":-17.366709609626707,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":45763,"length":22,"msg_type":526,"payload":"6PsuEPT///8GAAAACgAAAPEAygIPAg==","preamble":85,"sender":22963,"tow":271514600,"n":-12,"e":6,"d":10,"h_accuracy":241,"v_accuracy":714,"n_sats":15,"flags":2} +{"crc":8418,"length":15,"msg_type":520,"payload":"6PsuEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271514600,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":34842,"length":22,"msg_type":524,"payload":"6PsuEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271514600,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":16544,"length":6,"msg_type":528,"payload":"6PsuEP//","preamble":85,"sender":22963,"tow":271514600,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":34358,"length":34,"msg_type":30583,"payload":"gwJp+y4QA1f/AB/9f/f/ABf//+f/f/AA//AA6M725+/lcA==","preamble":85,"sender":22963,"sid":{"sat":131,"code":2},"tow":271514473,"message_type":3,"data":[87,255,0,31,253,127,247,255,0,23,255,255,231,255,127,240,0,255,240,0,232,206,246,231,239,229,112]} +{"crc":34445,"length":11,"msg_type":258,"payload":"MghM/C4QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271514700,"ns_residual":0,"flags":1} +{"crc":62750,"length":16,"msg_type":259,"payload":"EUz8LhDkBwMZAxg4/ia5KQ==","preamble":85,"sender":22963,"flags":17,"tow":271514700,"year":2020,"month":3,"day":25,"hours":3,"minutes":24,"seconds":56,"ns":699999998} +{"crc":11894,"length":34,"msg_type":522,"payload":"TPwuECwIDOBl6kJAmPoEG1aSXsBBUM45YVsxwAECWwQPBg==","preamble":85,"sender":22963,"tow":271514700,"lat":37.831233983874284,"lon":-122.28650546537608,"height":-17.356952298039918,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":16212,"length":22,"msg_type":526,"payload":"TPwuEAoAAADv////8v////EAygIPAg==","preamble":85,"sender":22963,"tow":271514700,"n":10,"e":-17,"d":-14,"h_accuracy":241,"v_accuracy":714,"n_sats":15,"flags":2} +{"crc":592,"length":15,"msg_type":520,"payload":"TPwuEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271514700,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":63203,"length":22,"msg_type":524,"payload":"TPwuEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271514700,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":49405,"length":6,"msg_type":528,"payload":"TPwuEP//","preamble":85,"sender":22963,"tow":271514700,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":10228,"length":11,"msg_type":258,"payload":"Mgiw/C4QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271514800,"ns_residual":0,"flags":1} +{"crc":40073,"length":16,"msg_type":259,"payload":"EbD8LhDkBwMZAxg4/gevLw==","preamble":85,"sender":22963,"flags":17,"tow":271514800,"year":2020,"month":3,"day":25,"hours":3,"minutes":24,"seconds":56,"ns":799999998} +{"crc":45198,"length":34,"msg_type":522,"payload":"sPwuEAXECeBl6kJAnJYJG1aSXsCaofq61VcxwAECWwQPBg==","preamble":85,"sender":22963,"tow":271514800,"lat":37.83123398281899,"lon":-122.28650546966895,"height":-17.343105016888877,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":51430,"length":22,"msg_type":526,"payload":"sPwuEAsAAAD+////4/////EAygIPAg==","preamble":85,"sender":22963,"tow":271514800,"n":11,"e":-2,"d":-29,"h_accuracy":241,"v_accuracy":714,"n_sats":15,"flags":2} +{"crc":4898,"length":15,"msg_type":520,"payload":"sPwuEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271514800,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":46885,"length":22,"msg_type":524,"payload":"sPwuEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271514800,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":23202,"length":6,"msg_type":528,"payload":"sPwuEP//","preamble":85,"sender":22963,"tow":271514800,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":17210,"length":237,"msg_type":97,"payload":"BQDVFQC0AgC9HwCnAAAAAAAAGQDaDADPHQDVEgDOAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwLNGQHNDAG8HwGaEgHFHQHEAAAABQHDAAAAAAAAAAAAAAAACwPVCQOzFAOuBQPQCgPPAAAABAO1FQPLCQSrFATNAAAACwTHBQTDAAS8AAAABASvIwzIGgyqIgycGAy9GQydDAy4Ewy4Fgy/AAAADA3SAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADA7EAAAAGQ7BCw6+GA7NAAAAHw6fIQ6ZGRTJGBTXCxTCHxStDBTOAAAAIRSpAAAA","preamble":85,"sender":22963,"states":[{"mesid":{"sat":5,"code":0},"cn0":213},{"mesid":{"sat":21,"code":0},"cn0":180},{"mesid":{"sat":2,"code":0},"cn0":189},{"mesid":{"sat":31,"code":0},"cn0":167},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":25,"code":0},"cn0":218},{"mesid":{"sat":12,"code":0},"cn0":207},{"mesid":{"sat":29,"code":0},"cn0":213},{"mesid":{"sat":18,"code":0},"cn0":206},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":131,"code":2},"cn0":205},{"mesid":{"sat":25,"code":1},"cn0":205},{"mesid":{"sat":12,"code":1},"cn0":188},{"mesid":{"sat":31,"code":1},"cn0":154},{"mesid":{"sat":18,"code":1},"cn0":197},{"mesid":{"sat":29,"code":1},"cn0":196},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":5,"code":1},"cn0":195},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":11,"code":3},"cn0":213},{"mesid":{"sat":9,"code":3},"cn0":179},{"mesid":{"sat":20,"code":3},"cn0":174},{"mesid":{"sat":5,"code":3},"cn0":208},{"mesid":{"sat":10,"code":3},"cn0":207},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":4,"code":3},"cn0":181},{"mesid":{"sat":21,"code":3},"cn0":203},{"mesid":{"sat":9,"code":4},"cn0":171},{"mesid":{"sat":20,"code":4},"cn0":205},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":11,"code":4},"cn0":199},{"mesid":{"sat":5,"code":4},"cn0":195},{"mesid":{"sat":0,"code":4},"cn0":188},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":4,"code":4},"cn0":175},{"mesid":{"sat":35,"code":12},"cn0":200},{"mesid":{"sat":26,"code":12},"cn0":170},{"mesid":{"sat":34,"code":12},"cn0":156},{"mesid":{"sat":24,"code":12},"cn0":189},{"mesid":{"sat":25,"code":12},"cn0":157},{"mesid":{"sat":12,"code":12},"cn0":184},{"mesid":{"sat":19,"code":12},"cn0":184},{"mesid":{"sat":22,"code":12},"cn0":191},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":12,"code":13},"cn0":210},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":12,"code":14},"cn0":196},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":25,"code":14},"cn0":193},{"mesid":{"sat":11,"code":14},"cn0":190},{"mesid":{"sat":24,"code":14},"cn0":205},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":31,"code":14},"cn0":159},{"mesid":{"sat":33,"code":14},"cn0":153},{"mesid":{"sat":25,"code":20},"cn0":201},{"mesid":{"sat":24,"code":20},"cn0":215},{"mesid":{"sat":11,"code":20},"cn0":194},{"mesid":{"sat":31,"code":20},"cn0":173},{"mesid":{"sat":12,"code":20},"cn0":206},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":33,"code":20},"cn0":169},{"mesid":{"sat":0,"code":0},"cn0":0}]} +{"crc":41336,"length":136,"msg_type":151,"payload":"AgAaHgUALDUMAFEtFQB9GRkAbUYaAKEBHQChNx8AlQ4EAxYWBQMyIQYDTggJA18OCgNxKQsDmCUMA6oDEwMiBxQDCzEVA5UlDAyUKRMMIyAUDA8CFgxDIxgMgiMZDJ0OGgxnFR0MLAAiDI4RIwwiLQsOizIMDg88GA5sNhkOlykfDlURIQ4fDw==","preamble":85,"sender":22963,"azel":[{"sid":{"sat":2,"code":0},"az":26,"el":30},{"sid":{"sat":5,"code":0},"az":44,"el":53},{"sid":{"sat":12,"code":0},"az":81,"el":45},{"sid":{"sat":21,"code":0},"az":125,"el":25},{"sid":{"sat":25,"code":0},"az":109,"el":70},{"sid":{"sat":26,"code":0},"az":161,"el":1},{"sid":{"sat":29,"code":0},"az":161,"el":55},{"sid":{"sat":31,"code":0},"az":149,"el":14},{"sid":{"sat":4,"code":3},"az":22,"el":22},{"sid":{"sat":5,"code":3},"az":50,"el":33},{"sid":{"sat":6,"code":3},"az":78,"el":8},{"sid":{"sat":9,"code":3},"az":95,"el":14},{"sid":{"sat":10,"code":3},"az":113,"el":41},{"sid":{"sat":11,"code":3},"az":152,"el":37},{"sid":{"sat":12,"code":3},"az":170,"el":3},{"sid":{"sat":19,"code":3},"az":34,"el":7},{"sid":{"sat":20,"code":3},"az":11,"el":49},{"sid":{"sat":21,"code":3},"az":149,"el":37},{"sid":{"sat":12,"code":12},"az":148,"el":41},{"sid":{"sat":19,"code":12},"az":35,"el":32},{"sid":{"sat":20,"code":12},"az":15,"el":2},{"sid":{"sat":22,"code":12},"az":67,"el":35},{"sid":{"sat":24,"code":12},"az":130,"el":35},{"sid":{"sat":25,"code":12},"az":157,"el":14},{"sid":{"sat":26,"code":12},"az":103,"el":21},{"sid":{"sat":29,"code":12},"az":44,"el":0},{"sid":{"sat":34,"code":12},"az":142,"el":17},{"sid":{"sat":35,"code":12},"az":34,"el":45},{"sid":{"sat":11,"code":14},"az":139,"el":50},{"sid":{"sat":12,"code":14},"az":15,"el":60},{"sid":{"sat":24,"code":14},"az":108,"el":54},{"sid":{"sat":25,"code":14},"az":151,"el":41},{"sid":{"sat":31,"code":14},"az":85,"el":17},{"sid":{"sat":33,"code":14},"az":31,"el":15}]} +{"crc":58502,"length":11,"msg_type":258,"payload":"MggU/S4QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271514900,"ns_residual":0,"flags":1} +{"crc":22237,"length":16,"msg_type":259,"payload":"ERT9LhDkBwMZAxg4/uikNQ==","preamble":85,"sender":22963,"flags":17,"tow":271514900,"year":2020,"month":3,"day":25,"hours":3,"minutes":24,"seconds":56,"ns":899999998} +{"crc":17440,"length":34,"msg_type":522,"payload":"FP0uENy9699l6kJAsMwXG1aSXsBZaU2bPFUxwAECWwQPBg==","preamble":85,"sender":22963,"tow":271514900,"lat":37.83123396883795,"lon":-122.2865054829042,"height":-17.332956034087463,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":44417,"length":22,"msg_type":526,"payload":"FP0uEPv////+////EgAAAPEAygIPAg==","preamble":85,"sender":22963,"tow":271514900,"n":-5,"e":-2,"d":18,"h_accuracy":241,"v_accuracy":714,"n_sats":15,"flags":2} +{"crc":15095,"length":15,"msg_type":520,"payload":"FP0uEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271514900,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":5546,"length":22,"msg_type":524,"payload":"FP0uEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271514900,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":6010,"length":6,"msg_type":528,"payload":"FP0uEP//","preamble":85,"sender":22963,"tow":271514900,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":53832,"length":249,"msg_type":74,"payload":"eP0uEAAAAAAyCEAQ/rM+dBOXBn9J/zjWDw8FAKLTFkXj5UIH0n0IJbQPDxUAL5HyRVf+WQcjUPbDvQ8PAgAOkQJJSmSsB/Vz/gqoDw8fAI4PJj3GQG0GKpn7zNoPDxkAOiW1QDoCzQa6afQYzw8PDADUjNA+zBOaBnHNBRjVDw8dAM0PJj0CBAIFBpL8b80PDxkB+CS1QHGhTAX39/YnvA8PDAG8kAJJ5rH6BWbL/hSaDw8fAX2M0D6D8SQFNIQEHcQPDx0B0/2zPumaIgUTcf+gww8PBQGZWfw+9UW7BhCOBJ7VDw8LA4261UQ0+1kHXMfub7QPDwkD","preamble":85,"sender":22963,"header":{"t":{"tow":271515000,"ns_residual":0,"wn":2098},"n_obs":64},"obs":[{"P":1051983376,"L":{"i":110564212,"f":127},"D":{"i":-183,"f":56},"cn0":214,"lock":15,"flags":15,"sid":{"sat":5,"code":0}},{"P":1159123874,"L":{"i":121824739,"f":210},"D":{"i":2173,"f":37},"cn0":180,"lock":15,"flags":15,"sid":{"sat":21,"code":0}},{"P":1173524783,"L":{"i":123338327,"f":35},"D":{"i":-2480,"f":195},"cn0":189,"lock":15,"flags":15,"sid":{"sat":2,"code":0}},{"P":1224904974,"L":{"i":128738378,"f":245},"D":{"i":-397,"f":10},"cn0":168,"lock":15,"flags":15,"sid":{"sat":31,"code":0}},{"P":1025904526,"L":{"i":107823302,"f":42},"D":{"i":-1127,"f":204},"cn0":218,"lock":15,"flags":15,"sid":{"sat":25,"code":0}},{"P":1085613370,"L":{"i":114098746,"f":186},"D":{"i":-2967,"f":24},"cn0":207,"lock":15,"flags":15,"sid":{"sat":12,"code":0}},{"P":1053854932,"L":{"i":110760908,"f":113},"D":{"i":1485,"f":24},"cn0":213,"lock":15,"flags":15,"sid":{"sat":29,"code":0}},{"P":1025904589,"L":{"i":84018178,"f":6},"D":{"i":-878,"f":111},"cn0":205,"lock":15,"flags":15,"sid":{"sat":25,"code":1}},{"P":1085613304,"L":{"i":88908145,"f":247},"D":{"i":-2313,"f":39},"cn0":188,"lock":15,"flags":15,"sid":{"sat":12,"code":1}},{"P":1224904892,"L":{"i":100315622,"f":102},"D":{"i":-309,"f":20},"cn0":154,"lock":15,"flags":15,"sid":{"sat":31,"code":1}},{"P":1053854845,"L":{"i":86307203,"f":52},"D":{"i":1156,"f":29},"cn0":196,"lock":15,"flags":15,"sid":{"sat":29,"code":1}},{"P":1051983315,"L":{"i":86153961,"f":19},"D":{"i":-143,"f":160},"cn0":195,"lock":15,"flags":15,"sid":{"sat":5,"code":1}},{"P":1056725401,"L":{"i":112936437,"f":16},"D":{"i":1166,"f":158},"cn0":213,"lock":15,"flags":15,"sid":{"sat":11,"code":3}},{"P":1154857613,"L":{"i":123337524,"f":92},"D":{"i":-4409,"f":111},"cn0":180,"lock":15,"flags":15,"sid":{"sat":9,"code":3}}]} +{"crc":61055,"length":249,"msg_type":74,"payload":"eP0uEAAAAAAyCEEdfC09AvuKBthF++6uDw8UA8cGCUBcmtgG6ZYIStAPDwUDC6ZlPqj4pgYHHPTrzw8PCgMGcgdD88ItB8nc+iG1Dw8EA+V6Kj99ocIGY1YG4MsPDxUDp7rVRGvDtwVHmvK/qw8PCQSRfS09XsMWBdZU/DTNDw8UBK1a/D7lUjwFY4sDU8cPDwsE8AcJQL0iUwXWrgZ/ww8PBQTvcgdDs16VBdUA/IyvDw8EBKRhlUXxLT8H8SX6mMgPDyMMUb7zSaymswcwQvQQqg8PGgyYRRZM45HsB1HHCO+dDw8iDJmfoEcUrHUHDOn6w7wPDxgM","preamble":85,"sender":22963,"header":{"t":{"tow":271515000,"ns_residual":0,"wn":2098},"n_obs":65},"obs":[{"P":1026391069,"L":{"i":109771522,"f":216},"D":{"i":-1211,"f":238},"cn0":174,"lock":15,"flags":15,"sid":{"sat":20,"code":3}},{"P":1074333383,"L":{"i":114858588,"f":233},"D":{"i":2198,"f":74},"cn0":208,"lock":15,"flags":15,"sid":{"sat":5,"code":3}},{"P":1046849035,"L":{"i":111605928,"f":7},"D":{"i":-3044,"f":235},"cn0":207,"lock":15,"flags":15,"sid":{"sat":10,"code":3}},{"P":1124561414,"L":{"i":120439539,"f":201},"D":{"i":-1316,"f":33},"cn0":181,"lock":15,"flags":15,"sid":{"sat":4,"code":3}},{"P":1059748581,"L":{"i":113418621,"f":99},"D":{"i":1622,"f":224},"cn0":203,"lock":15,"flags":15,"sid":{"sat":21,"code":3}},{"P":1154857639,"L":{"i":95929195,"f":71},"D":{"i":-3430,"f":191},"cn0":171,"lock":15,"flags":15,"sid":{"sat":9,"code":4}},{"P":1026391441,"L":{"i":85377886,"f":214},"D":{"i":-940,"f":52},"cn0":205,"lock":15,"flags":15,"sid":{"sat":20,"code":4}},{"P":1056725677,"L":{"i":87839461,"f":99},"D":{"i":907,"f":83},"cn0":199,"lock":15,"flags":15,"sid":{"sat":11,"code":4}},{"P":1074333680,"L":{"i":89334461,"f":214},"D":{"i":1710,"f":127},"cn0":195,"lock":15,"flags":15,"sid":{"sat":5,"code":4}},{"P":1124561647,"L":{"i":93675187,"f":213},"D":{"i":-1024,"f":140},"cn0":175,"lock":15,"flags":15,"sid":{"sat":4,"code":4}},{"P":1167417764,"L":{"i":121581041,"f":241},"D":{"i":-1499,"f":152},"cn0":200,"lock":15,"flags":15,"sid":{"sat":35,"code":12}},{"P":1240710737,"L":{"i":129214124,"f":48},"D":{"i":-3006,"f":16},"cn0":170,"lock":15,"flags":15,"sid":{"sat":26,"code":12}},{"P":1276528024,"L":{"i":132944355,"f":81},"D":{"i":2247,"f":239},"cn0":157,"lock":15,"flags":15,"sid":{"sat":34,"code":12}},{"P":1201708953,"L":{"i":125152276,"f":12},"D":{"i":-1303,"f":195},"cn0":188,"lock":15,"flags":15,"sid":{"sat":24,"code":12}}]} +{"crc":10633,"length":249,"msg_type":74,"payload":"eP0uEAAAAAAyCEIKSBNNUesGCOotBeOdDw8ZDKi5TkUQ0jcH7UsGO7gPDwwMwkZDR1vzawdf4P5SuA8PEwwivl5HpM9uBx9TCaS/Dw8WDGi5TkUq2pQFU94EbNIPDwwNBigHQqWI8Aak/fu+xA8PDA405yBLUmTlBy1ABEXBDw8ZDkIKIUd6yHkHchkEIL4PDwsOgdknQzTgDgcpLvnwzQ8PGA7UKkhRAPSKCK2b86ufDw8fDuio9lHcSp0ISqX3HZoPDyEOFOcgS9LbDAb6QgNcyQ8PGRSe2ydDfn1oBcrG+mnXDw8YFIEJIUeoZ7oFDiMDf8IPDwsU","preamble":85,"sender":22963,"header":{"t":{"tow":271515000,"ns_residual":0,"wn":2098},"n_obs":66},"obs":[{"P":1293109258,"L":{"i":134671185,"f":234},"D":{"i":1325,"f":227},"cn0":157,"lock":15,"flags":15,"sid":{"sat":25,"code":12}},{"P":1162787240,"L":{"i":121098768,"f":237},"D":{"i":1611,"f":59},"cn0":184,"lock":15,"flags":15,"sid":{"sat":12,"code":12}},{"P":1195591362,"L":{"i":124515163,"f":95},"D":{"i":-288,"f":82},"cn0":184,"lock":15,"flags":15,"sid":{"sat":19,"code":12}},{"P":1197391394,"L":{"i":124702628,"f":31},"D":{"i":2387,"f":164},"cn0":191,"lock":15,"flags":15,"sid":{"sat":22,"code":12}},{"P":1162787176,"L":{"i":93641258,"f":83},"D":{"i":1246,"f":108},"cn0":210,"lock":15,"flags":15,"sid":{"sat":12,"code":13}},{"P":1107765254,"L":{"i":116426917,"f":164},"D":{"i":-1027,"f":190},"cn0":196,"lock":15,"flags":15,"sid":{"sat":12,"code":14}},{"P":1260447540,"L":{"i":132473938,"f":45},"D":{"i":1088,"f":69},"cn0":193,"lock":15,"flags":15,"sid":{"sat":25,"code":14}},{"P":1193347650,"L":{"i":125421690,"f":114},"D":{"i":1049,"f":32},"cn0":190,"lock":15,"flags":15,"sid":{"sat":11,"code":14}},{"P":1126685057,"L":{"i":118415412,"f":41},"D":{"i":-1746,"f":240},"cn0":205,"lock":15,"flags":15,"sid":{"sat":24,"code":14}},{"P":1363684052,"L":{"i":143324160,"f":173},"D":{"i":-3173,"f":171},"cn0":159,"lock":15,"flags":15,"sid":{"sat":31,"code":14}},{"P":1375119592,"L":{"i":144526044,"f":74},"D":{"i":-2139,"f":29},"cn0":154,"lock":15,"flags":15,"sid":{"sat":33,"code":14}},{"P":1260447508,"L":{"i":101506002,"f":250},"D":{"i":834,"f":92},"cn0":201,"lock":15,"flags":15,"sid":{"sat":25,"code":20}},{"P":1126685598,"L":{"i":90733950,"f":202},"D":{"i":-1338,"f":105},"cn0":215,"lock":15,"flags":15,"sid":{"sat":24,"code":20}},{"P":1193347457,"L":{"i":96102312,"f":14},"D":{"i":803,"f":127},"cn0":194,"lock":15,"flags":15,"sid":{"sat":11,"code":20}}]} +{"crc":23433,"length":62,"msg_type":74,"payload":"eP0uEAAAAAAyCEMBK0hRzLeLBveB9tStDw8fFHEnB0KaPVEFMOz8DM4PDwwUq6j2UUXFmQbAl/l/qQ8PIRQ=","preamble":85,"sender":22963,"header":{"t":{"tow":271515000,"ns_residual":0,"wn":2098},"n_obs":67},"obs":[{"P":1363684097,"L":{"i":109819852,"f":247},"D":{"i":-2431,"f":212},"cn0":173,"lock":15,"flags":15,"sid":{"sat":31,"code":20}},{"P":1107765105,"L":{"i":89210266,"f":48},"D":{"i":-788,"f":12},"cn0":206,"lock":15,"flags":15,"sid":{"sat":12,"code":20}},{"P":1375119531,"L":{"i":110740805,"f":192},"D":{"i":-1641,"f":127},"cn0":169,"lock":15,"flags":15,"sid":{"sat":33,"code":20}}]} +{"crc":49809,"length":9,"msg_type":117,"payload":"/wAAAAAAAAAA","preamble":85,"sender":22963,"mask":255,"l1ca_bias":0,"l1p_bias":0,"l2ca_bias":0,"l2p_bias":0} +{"crc":43443,"length":11,"msg_type":258,"payload":"Mgh4/S4QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271515000,"ns_residual":0,"flags":1} +{"crc":11157,"length":16,"msg_type":259,"payload":"EXj9LhDkBwMZAxg4/smaOw==","preamble":85,"sender":22963,"flags":17,"tow":271515000,"year":2020,"month":3,"day":25,"hours":3,"minutes":24,"seconds":56,"ns":999999998} +{"crc":65118,"length":34,"msg_type":522,"payload":"eP0uEEOz2t9l6kJA9f4ZG1aSXsDneujTlFMxwAECWwQPBg==","preamble":85,"sender":22963,"tow":271515000,"lat":37.83123396090243,"lon":-122.28650548494973,"height":-17.326489681489786,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":58369,"length":22,"msg_type":526,"payload":"eP0uEPz///8QAAAAEwAAAPEAygIPAg==","preamble":85,"sender":22963,"tow":271515000,"n":-4,"e":16,"d":19,"h_accuracy":241,"v_accuracy":714,"n_sats":15,"flags":2} +{"crc":12573,"length":15,"msg_type":520,"payload":"eP0uEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271515000,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":21439,"length":22,"msg_type":524,"payload":"eP0uEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271515000,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":17281,"length":6,"msg_type":528,"payload":"eP0uEP//","preamble":85,"sender":22963,"tow":271515000,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":40942,"length":4,"msg_type":65535,"payload":"AAUCgA==","preamble":85,"sender":22963,"flags":2147616000} +{"crc":2168,"length":24,"msg_type":72,"payload":"UO0a3iqORMHK1UJhIkRQwc9nFIPvrk1B","preamble":85,"sender":22963,"x":-2694229.735196747,"y":-4264073.519704292,"z":3890655.0240602265} +{"crc":61152,"length":10,"msg_type":181,"payload":"7BbcA/MGXxUJFg==","preamble":85,"sender":22963,"dev_vin":5868,"cpu_vint":988,"cpu_vaux":1779,"cpu_temperature":5471,"fe_temperature":5641} +{"crc":11538,"length":11,"msg_type":258,"payload":"Mgjc/S4QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271515100,"ns_residual":0,"flags":1} +{"crc":1966,"length":16,"msg_type":259,"payload":"Edz9LhDkBwMZAxg5/uD1BQ==","preamble":85,"sender":22963,"flags":17,"tow":271515100,"year":2020,"month":3,"day":25,"hours":3,"minutes":24,"seconds":57,"ns":99999998} +{"crc":30716,"length":34,"msg_type":522,"payload":"3P0uEPPxv99l6kJAPZshG1aSXsBAp4D6TFIxwAECWwQPBg==","preamble":85,"sender":22963,"tow":271515100,"lat":37.831233948443604,"lon":-122.28650549203753,"height":-17.32148709908438,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":40025,"length":22,"msg_type":526,"payload":"3P0uEPr///8DAAAA/P////EAygIPAg==","preamble":85,"sender":22963,"tow":271515100,"n":-6,"e":3,"d":-4,"h_accuracy":241,"v_accuracy":714,"n_sats":15,"flags":2} +{"crc":25513,"length":15,"msg_type":520,"payload":"3P0uEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271515100,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":9414,"length":22,"msg_type":524,"payload":"3P0uEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271515100,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":41992,"length":6,"msg_type":528,"payload":"3P0uEP//","preamble":85,"sender":22963,"tow":271515100,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":48187,"length":11,"msg_type":258,"payload":"MghA/i4QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271515200,"ns_residual":0,"flags":1} +{"crc":23590,"length":16,"msg_type":259,"payload":"EUD+LhDkBwMZAxg5/sHrCw==","preamble":85,"sender":22963,"flags":17,"tow":271515200,"year":2020,"month":3,"day":25,"hours":3,"minutes":24,"seconds":57,"ns":199999998} +{"crc":21345,"length":34,"msg_type":522,"payload":"QP4uEH+Yu99l6kJArEA4G1aSXsDFo0mgyFAxwAECWwQPBg==","preamble":85,"sender":22963,"tow":271515200,"lat":37.831233946418244,"lon":-122.28650551312847,"height":-17.31556131170125,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":23600,"length":22,"msg_type":526,"payload":"QP4uEAQAAADz////3P////EAygIPAg==","preamble":85,"sender":22963,"tow":271515200,"n":4,"e":-13,"d":-36,"h_accuracy":241,"v_accuracy":714,"n_sats":15,"flags":2} +{"crc":18533,"length":15,"msg_type":520,"payload":"QP4uEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271515200,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":46284,"length":22,"msg_type":524,"payload":"QP4uEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271515200,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":36765,"length":6,"msg_type":528,"payload":"QP4uEP//","preamble":85,"sender":22963,"tow":271515200,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":26435,"length":11,"msg_type":258,"payload":"Mgik/i4QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271515300,"ns_residual":0,"flags":1} +{"crc":47632,"length":16,"msg_type":259,"payload":"EaT+LhDkBwMZAxg5/qLhEQ==","preamble":85,"sender":22963,"flags":17,"tow":271515300,"year":2020,"month":3,"day":25,"hours":3,"minutes":24,"seconds":57,"ns":299999998} +{"crc":40351,"length":34,"msg_type":522,"payload":"pP4uEM+yvd9l6kJAqRwzG1aSXsCXeaYXJFExwAECWwQPBg==","preamble":85,"sender":22963,"tow":271515300,"lat":37.83123394739743,"lon":-122.28650550834085,"height":-17.316956976073552,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":54643,"length":22,"msg_type":526,"payload":"pP4uEAYAAAALAAAALAAAAPEAygIPAg==","preamble":85,"sender":22963,"tow":271515300,"n":6,"e":11,"d":44,"h_accuracy":241,"v_accuracy":714,"n_sats":15,"flags":2} +{"crc":12504,"length":15,"msg_type":520,"payload":"pP4uEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271515300,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":5871,"length":22,"msg_type":524,"payload":"pP4uEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271515300,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":516,"length":6,"msg_type":528,"payload":"pP4uEP//","preamble":85,"sender":22963,"tow":271515300,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":48972,"length":237,"msg_type":97,"payload":"BQDVFQC0AgC9HwCnAAAAAAAAGQDZDADOHQDVEgDOAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwLNGQHNDAG8HwGYEgHEHQHDAAAABQHCAAAAAAAAAAAAAAAAZAPVYgO0ZgOtZQPQXQPPAAAAagO1aAPLYgSrZgTNXQREZATHZQTEaAS8AAAAagSvIwzIGgyqIgycGAy9GQyeDAy5Ewy4Fgy/AAAADA3RAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADA7DAAAAGQ7ACw69GA7NAAAAHw6fIQ6ZGRTJGBTXCxTCHxSuDBTPAAAAIRSpAAAA","preamble":85,"sender":22963,"states":[{"mesid":{"sat":5,"code":0},"cn0":213},{"mesid":{"sat":21,"code":0},"cn0":180},{"mesid":{"sat":2,"code":0},"cn0":189},{"mesid":{"sat":31,"code":0},"cn0":167},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":25,"code":0},"cn0":217},{"mesid":{"sat":12,"code":0},"cn0":206},{"mesid":{"sat":29,"code":0},"cn0":213},{"mesid":{"sat":18,"code":0},"cn0":206},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":131,"code":2},"cn0":205},{"mesid":{"sat":25,"code":1},"cn0":205},{"mesid":{"sat":12,"code":1},"cn0":188},{"mesid":{"sat":31,"code":1},"cn0":152},{"mesid":{"sat":18,"code":1},"cn0":196},{"mesid":{"sat":29,"code":1},"cn0":195},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":5,"code":1},"cn0":194},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":100,"code":3},"cn0":213},{"mesid":{"sat":98,"code":3},"cn0":180},{"mesid":{"sat":102,"code":3},"cn0":173},{"mesid":{"sat":101,"code":3},"cn0":208},{"mesid":{"sat":93,"code":3},"cn0":207},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":106,"code":3},"cn0":181},{"mesid":{"sat":104,"code":3},"cn0":203},{"mesid":{"sat":98,"code":4},"cn0":171},{"mesid":{"sat":102,"code":4},"cn0":205},{"mesid":{"sat":93,"code":4},"cn0":68},{"mesid":{"sat":100,"code":4},"cn0":199},{"mesid":{"sat":101,"code":4},"cn0":196},{"mesid":{"sat":104,"code":4},"cn0":188},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":106,"code":4},"cn0":175},{"mesid":{"sat":35,"code":12},"cn0":200},{"mesid":{"sat":26,"code":12},"cn0":170},{"mesid":{"sat":34,"code":12},"cn0":156},{"mesid":{"sat":24,"code":12},"cn0":189},{"mesid":{"sat":25,"code":12},"cn0":158},{"mesid":{"sat":12,"code":12},"cn0":185},{"mesid":{"sat":19,"code":12},"cn0":184},{"mesid":{"sat":22,"code":12},"cn0":191},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":12,"code":13},"cn0":209},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":12,"code":14},"cn0":195},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":25,"code":14},"cn0":192},{"mesid":{"sat":11,"code":14},"cn0":189},{"mesid":{"sat":24,"code":14},"cn0":205},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":31,"code":14},"cn0":159},{"mesid":{"sat":33,"code":14},"cn0":153},{"mesid":{"sat":25,"code":20},"cn0":201},{"mesid":{"sat":24,"code":20},"cn0":215},{"mesid":{"sat":11,"code":20},"cn0":194},{"mesid":{"sat":31,"code":20},"cn0":174},{"mesid":{"sat":12,"code":20},"cn0":207},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":33,"code":20},"cn0":169},{"mesid":{"sat":0,"code":0},"cn0":0}]} +{"crc":36302,"length":11,"msg_type":258,"payload":"MggI/y4QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271515400,"ns_residual":0,"flags":1} +{"crc":51843,"length":16,"msg_type":259,"payload":"EQj/LhDkBwMZAxg5/oPXFw==","preamble":85,"sender":22963,"flags":17,"tow":271515400,"year":2020,"month":3,"day":25,"hours":3,"minutes":24,"seconds":57,"ns":399999998} +{"crc":29665,"length":34,"msg_type":522,"payload":"CP8uEJqjsd9l6kJAWONTG1aSXsDi1opnZlAxwAECWwQPBg==","preamble":85,"sender":22963,"tow":271515400,"lat":37.83123394178183,"lon":-122.28650553886598,"height":-17.31406256808885,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":36382,"length":22,"msg_type":526,"payload":"CP8uEP3////2////4f////EAygIPAg==","preamble":85,"sender":22963,"tow":271515400,"n":-3,"e":-10,"d":-31,"h_accuracy":241,"v_accuracy":714,"n_sats":15,"flags":2} +{"crc":15944,"length":15,"msg_type":520,"payload":"CP8uEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271515400,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":60099,"length":22,"msg_type":524,"payload":"CP8uEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271515400,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":17054,"length":6,"msg_type":528,"payload":"CP8uEP//","preamble":85,"sender":22963,"tow":271515400,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":49809,"length":9,"msg_type":117,"payload":"/wAAAAAAAAAA","preamble":85,"sender":22963,"mask":255,"l1ca_bias":0,"l1p_bias":0,"l2ca_bias":0,"l2p_bias":0} +{"crc":59652,"length":11,"msg_type":258,"payload":"Mghs/y4QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271515500,"ns_residual":0,"flags":1} +{"crc":36479,"length":16,"msg_type":259,"payload":"EWz/LhDkBwMZAxg5/mTNHQ==","preamble":85,"sender":22963,"flags":17,"tow":271515500,"year":2020,"month":3,"day":25,"hours":3,"minutes":24,"seconds":57,"ns":499999998} +{"crc":42205,"length":34,"msg_type":522,"payload":"bP8uEPKMpt9l6kJAWlNmG1aSXsAO63Aug08xwAECWwQPBg==","preamble":85,"sender":22963,"tow":271515500,"lat":37.83123393661835,"lon":-122.28650555603727,"height":-17.31059541947166,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":8087,"length":22,"msg_type":526,"payload":"bP8uEP7////5////AQAAAPEAygIPAg==","preamble":85,"sender":22963,"tow":271515500,"n":-2,"e":-7,"d":1,"h_accuracy":241,"v_accuracy":714,"n_sats":15,"flags":2} +{"crc":4839,"length":15,"msg_type":520,"payload":"bP8uEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271515500,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":62069,"length":22,"msg_type":524,"payload":"bP8uEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271515500,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":6951,"length":6,"msg_type":528,"payload":"bP8uEP//","preamble":85,"sender":22963,"tow":271515500,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":6052,"length":11,"msg_type":258,"payload":"MgjQ/y4QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271515600,"ns_residual":0,"flags":1} +{"crc":61536,"length":16,"msg_type":259,"payload":"EdD/LhDkBwMZAxg5/kXDIw==","preamble":85,"sender":22963,"flags":17,"tow":271515600,"year":2020,"month":3,"day":25,"hours":3,"minutes":24,"seconds":57,"ns":599999998} +{"crc":49631,"length":34,"msg_type":522,"payload":"0P8uEJY1md9l6kJAzm9lG1aSXsD3LU7JTU4xwAECWwQPBg==","preamble":85,"sender":22963,"tow":271515600,"lat":37.831233930405844,"lon":-122.28650555520946,"height":-17.305874425494007,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":4415,"length":22,"msg_type":526,"payload":"0P8uEAAAAAAIAAAADAAAAPEAygIPAg==","preamble":85,"sender":22963,"tow":271515600,"n":0,"e":8,"d":12,"h_accuracy":241,"v_accuracy":714,"n_sats":15,"flags":2} +{"crc":10652,"length":15,"msg_type":520,"payload":"0P8uEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271515600,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":26345,"length":22,"msg_type":524,"payload":"0P8uEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271515600,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":60264,"length":6,"msg_type":528,"payload":"0P8uEP//","preamble":85,"sender":22963,"tow":271515600,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":30729,"length":51,"msg_type":1025,"payload":"BkdMTyBMMk9GIE1FIDEgWysxMjAybXNdIGxvdyBDTjAgdG9vIGxvbmcsIGRyb3BwaW5n","preamble":85,"sender":22963,"level":6,"text":"GLO L2OF ME 1 [+1202ms] low CN0 too long, dropping"} +{"crc":26208,"length":34,"msg_type":30583,"payload":"gwJN/y4QBFf/f//9f/ABf//7/+/9f/f/f/f/7l5uqq//8A==","preamble":85,"sender":22963,"sid":{"sat":131,"code":2},"tow":271515469,"message_type":4,"data":[87,255,127,255,253,127,240,1,127,255,251,255,239,253,127,247,255,127,247,255,238,94,110,170,175,255,240]} +{"crc":57586,"length":11,"msg_type":258,"payload":"Mgg0AC8QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271515700,"ns_residual":0,"flags":1} +{"crc":62921,"length":16,"msg_type":259,"payload":"ETQALxDkBwMZAxg5/ia5KQ==","preamble":85,"sender":22963,"flags":17,"tow":271515700,"year":2020,"month":3,"day":25,"hours":3,"minutes":24,"seconds":57,"ns":699999998} +{"crc":55611,"length":34,"msg_type":522,"payload":"NAAvEFSl1t9l6kJApq1/G1aSXsAQiR6XCEwxwAECWwQPBg==","preamble":85,"sender":22963,"tow":271515700,"lat":37.83123395901444,"lon":-122.28650557964883,"height":-17.297006077723438,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":35666,"length":22,"msg_type":526,"payload":"NAAvEAYAAAABAAAA+v////EAygIPAg==","preamble":85,"sender":22963,"tow":271515700,"n":6,"e":1,"d":-6,"h_accuracy":241,"v_accuracy":714,"n_sats":15,"flags":2} +{"crc":43222,"length":15,"msg_type":520,"payload":"NAAvEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271515700,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":39267,"length":22,"msg_type":524,"payload":"NAAvEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271515700,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":19178,"length":6,"msg_type":528,"payload":"NAAvEP//","preamble":85,"sender":22963,"tow":271515700,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":19884,"length":11,"msg_type":258,"payload":"MgiYAC8QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271515800,"ns_residual":0,"flags":1} +{"crc":63709,"length":16,"msg_type":259,"payload":"EZgALxDkBwMZAxg5/gevLw==","preamble":85,"sender":22963,"flags":17,"tow":271515800,"year":2020,"month":3,"day":25,"hours":3,"minutes":24,"seconds":57,"ns":799999998} +{"crc":41334,"length":34,"msg_type":522,"payload":"mAAvEG94/99l6kJAWtaBG1aSXsAJjnaP/kkxwAECWwQPBg==","preamble":85,"sender":22963,"tow":271515800,"lat":37.83123397802489,"lon":-122.28650558165955,"height":-17.289040533489274,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":24293,"length":22,"msg_type":526,"payload":"mAAvEAoAAAAFAAAA+v////EAygIPAg==","preamble":85,"sender":22963,"tow":271515800,"n":10,"e":5,"d":-6,"h_accuracy":241,"v_accuracy":714,"n_sats":15,"flags":2} +{"crc":56615,"length":15,"msg_type":520,"payload":"mAAvEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271515800,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":45241,"length":22,"msg_type":524,"payload":"mAAvEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271515800,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":40993,"length":6,"msg_type":528,"payload":"mAAvEP//","preamble":85,"sender":22963,"tow":271515800,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":7621,"length":237,"msg_type":97,"payload":"BQDVFQC0AgC9HwCnAAAAAAAAGQDaDADPHQDVEgDOAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwLNGQHMDAG7HwGYEgHEHQHDAAAABQHCAAAAAAAAAAAAAAAACwPVCQO0FAOuBQPQCgPQAAAABAO1FQPLCQSrFATNAAAACwTHBQTEAAS8AAAABASwIwzIGgyqIgycGAy9GQyeDAy5Ewy4Fgy/AAAADA3SAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADA7DAAAAGQ7ACw6+GA7NAAAAHw6fIQ6aGRTIGBTXCxTCHxSuDBTPAAAAIRSpAAAA","preamble":85,"sender":22963,"states":[{"mesid":{"sat":5,"code":0},"cn0":213},{"mesid":{"sat":21,"code":0},"cn0":180},{"mesid":{"sat":2,"code":0},"cn0":189},{"mesid":{"sat":31,"code":0},"cn0":167},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":25,"code":0},"cn0":218},{"mesid":{"sat":12,"code":0},"cn0":207},{"mesid":{"sat":29,"code":0},"cn0":213},{"mesid":{"sat":18,"code":0},"cn0":206},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":131,"code":2},"cn0":205},{"mesid":{"sat":25,"code":1},"cn0":204},{"mesid":{"sat":12,"code":1},"cn0":187},{"mesid":{"sat":31,"code":1},"cn0":152},{"mesid":{"sat":18,"code":1},"cn0":196},{"mesid":{"sat":29,"code":1},"cn0":195},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":5,"code":1},"cn0":194},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":11,"code":3},"cn0":213},{"mesid":{"sat":9,"code":3},"cn0":180},{"mesid":{"sat":20,"code":3},"cn0":174},{"mesid":{"sat":5,"code":3},"cn0":208},{"mesid":{"sat":10,"code":3},"cn0":208},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":4,"code":3},"cn0":181},{"mesid":{"sat":21,"code":3},"cn0":203},{"mesid":{"sat":9,"code":4},"cn0":171},{"mesid":{"sat":20,"code":4},"cn0":205},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":11,"code":4},"cn0":199},{"mesid":{"sat":5,"code":4},"cn0":196},{"mesid":{"sat":0,"code":4},"cn0":188},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":4,"code":4},"cn0":176},{"mesid":{"sat":35,"code":12},"cn0":200},{"mesid":{"sat":26,"code":12},"cn0":170},{"mesid":{"sat":34,"code":12},"cn0":156},{"mesid":{"sat":24,"code":12},"cn0":189},{"mesid":{"sat":25,"code":12},"cn0":158},{"mesid":{"sat":12,"code":12},"cn0":185},{"mesid":{"sat":19,"code":12},"cn0":184},{"mesid":{"sat":22,"code":12},"cn0":191},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":12,"code":13},"cn0":210},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":12,"code":14},"cn0":195},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":25,"code":14},"cn0":192},{"mesid":{"sat":11,"code":14},"cn0":190},{"mesid":{"sat":24,"code":14},"cn0":205},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":31,"code":14},"cn0":159},{"mesid":{"sat":33,"code":14},"cn0":154},{"mesid":{"sat":25,"code":20},"cn0":200},{"mesid":{"sat":24,"code":20},"cn0":215},{"mesid":{"sat":11,"code":20},"cn0":194},{"mesid":{"sat":31,"code":20},"cn0":174},{"mesid":{"sat":12,"code":20},"cn0":207},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":33,"code":20},"cn0":169},{"mesid":{"sat":0,"code":0},"cn0":0}]} +{"crc":41336,"length":136,"msg_type":151,"payload":"AgAaHgUALDUMAFEtFQB9GRkAbUYaAKEBHQChNx8AlQ4EAxYWBQMyIQYDTggJA18OCgNxKQsDmCUMA6oDEwMiBxQDCzEVA5UlDAyUKRMMIyAUDA8CFgxDIxgMgiMZDJ0OGgxnFR0MLAAiDI4RIwwiLQsOizIMDg88GA5sNhkOlykfDlURIQ4fDw==","preamble":85,"sender":22963,"azel":[{"sid":{"sat":2,"code":0},"az":26,"el":30},{"sid":{"sat":5,"code":0},"az":44,"el":53},{"sid":{"sat":12,"code":0},"az":81,"el":45},{"sid":{"sat":21,"code":0},"az":125,"el":25},{"sid":{"sat":25,"code":0},"az":109,"el":70},{"sid":{"sat":26,"code":0},"az":161,"el":1},{"sid":{"sat":29,"code":0},"az":161,"el":55},{"sid":{"sat":31,"code":0},"az":149,"el":14},{"sid":{"sat":4,"code":3},"az":22,"el":22},{"sid":{"sat":5,"code":3},"az":50,"el":33},{"sid":{"sat":6,"code":3},"az":78,"el":8},{"sid":{"sat":9,"code":3},"az":95,"el":14},{"sid":{"sat":10,"code":3},"az":113,"el":41},{"sid":{"sat":11,"code":3},"az":152,"el":37},{"sid":{"sat":12,"code":3},"az":170,"el":3},{"sid":{"sat":19,"code":3},"az":34,"el":7},{"sid":{"sat":20,"code":3},"az":11,"el":49},{"sid":{"sat":21,"code":3},"az":149,"el":37},{"sid":{"sat":12,"code":12},"az":148,"el":41},{"sid":{"sat":19,"code":12},"az":35,"el":32},{"sid":{"sat":20,"code":12},"az":15,"el":2},{"sid":{"sat":22,"code":12},"az":67,"el":35},{"sid":{"sat":24,"code":12},"az":130,"el":35},{"sid":{"sat":25,"code":12},"az":157,"el":14},{"sid":{"sat":26,"code":12},"az":103,"el":21},{"sid":{"sat":29,"code":12},"az":44,"el":0},{"sid":{"sat":34,"code":12},"az":142,"el":17},{"sid":{"sat":35,"code":12},"az":34,"el":45},{"sid":{"sat":11,"code":14},"az":139,"el":50},{"sid":{"sat":12,"code":14},"az":15,"el":60},{"sid":{"sat":24,"code":14},"az":108,"el":54},{"sid":{"sat":25,"code":14},"az":151,"el":41},{"sid":{"sat":31,"code":14},"az":85,"el":17},{"sid":{"sat":33,"code":14},"az":31,"el":15}]} +{"crc":10598,"length":11,"msg_type":258,"payload":"Mgj8AC8QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271515900,"ns_residual":0,"flags":1} +{"crc":14323,"length":16,"msg_type":259,"payload":"EfwALxDkBwMZAxg5/uikNQ==","preamble":85,"sender":22963,"flags":17,"tow":271515900,"year":2020,"month":3,"day":25,"hours":3,"minutes":24,"seconds":57,"ns":899999998} +{"crc":60559,"length":34,"msg_type":522,"payload":"/AAvEEA/999l6kJAvemgG1aSXsBqlWqPOkgxwAECWwQPBg==","preamble":85,"sender":22963,"tow":271515900,"lat":37.831233974195584,"lon":-122.28650561060108,"height":-17.282143558045767,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":32110,"length":22,"msg_type":526,"payload":"/AAvEO/////+////CQAAAPEAygIPAg==","preamble":85,"sender":22963,"tow":271515900,"n":-17,"e":-2,"d":9,"h_accuracy":241,"v_accuracy":714,"n_sats":15,"flags":2} +{"crc":61832,"length":15,"msg_type":520,"payload":"/AAvEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271515900,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":43023,"length":22,"msg_type":524,"payload":"/AAvEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271515900,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":63896,"length":6,"msg_type":528,"payload":"/AAvEP//","preamble":85,"sender":22963,"tow":271515900,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":56804,"length":249,"msg_type":74,"payload":"YAEvEAAAAAAyCEDVBLQ+KhSXBupH/1DVDw8FAMWCFkVl3UIHd3wI17QPDxUAUu3yRQUIWgd7Ufb4vQ8PAgDNnwJJ1WWsB65y/nOnDw8fAGk5Jj0sRW0GQZj7NNoPDxkAfZO1QNENzQZFaPSezw8PDACeVdA+/w2aBm7KBaXVDw8dAKI5Jj1vBwIFfpD858wPDxkBPZO1QHmqTAWP9/Y6uw8PDAFUnwJJGbP6BfvJ/tCYDw8fAVBV0D7+7CQFEIMEesMPDx0BlgS0PnebIgU4cf9zwg8PBQHxLvw+ZkG7BiyMBG7VDw8LA5Fb1kRrDFoHG8fu2bQPDwkD","preamble":85,"sender":22963,"header":{"t":{"tow":271516000,"ns_residual":0,"wn":2098},"n_obs":64},"obs":[{"P":1051985109,"L":{"i":110564394,"f":234},"D":{"i":-185,"f":80},"cn0":213,"lock":15,"flags":15,"sid":{"sat":5,"code":0}},{"P":1159103173,"L":{"i":121822565,"f":119},"D":{"i":2172,"f":215},"cn0":180,"lock":15,"flags":15,"sid":{"sat":21,"code":0}},{"P":1173548370,"L":{"i":123340805,"f":123},"D":{"i":-2479,"f":248},"cn0":189,"lock":15,"flags":15,"sid":{"sat":2,"code":0}},{"P":1224908749,"L":{"i":128738773,"f":174},"D":{"i":-398,"f":115},"cn0":167,"lock":15,"flags":15,"sid":{"sat":31,"code":0}},{"P":1025915241,"L":{"i":107824428,"f":65},"D":{"i":-1128,"f":52},"cn0":218,"lock":15,"flags":15,"sid":{"sat":25,"code":0}},{"P":1085641597,"L":{"i":114101713,"f":69},"D":{"i":-2968,"f":158},"cn0":207,"lock":15,"flags":15,"sid":{"sat":12,"code":0}},{"P":1053840798,"L":{"i":110759423,"f":110},"D":{"i":1482,"f":165},"cn0":213,"lock":15,"flags":15,"sid":{"sat":29,"code":0}},{"P":1025915298,"L":{"i":84019055,"f":126},"D":{"i":-880,"f":231},"cn0":204,"lock":15,"flags":15,"sid":{"sat":25,"code":1}},{"P":1085641533,"L":{"i":88910457,"f":143},"D":{"i":-2313,"f":58},"cn0":187,"lock":15,"flags":15,"sid":{"sat":12,"code":1}},{"P":1224908628,"L":{"i":100315929,"f":251},"D":{"i":-311,"f":208},"cn0":152,"lock":15,"flags":15,"sid":{"sat":31,"code":1}},{"P":1053840720,"L":{"i":86306046,"f":16},"D":{"i":1155,"f":122},"cn0":195,"lock":15,"flags":15,"sid":{"sat":29,"code":1}},{"P":1051985046,"L":{"i":86154103,"f":56},"D":{"i":-143,"f":115},"cn0":194,"lock":15,"flags":15,"sid":{"sat":5,"code":1}},{"P":1056714481,"L":{"i":112935270,"f":44},"D":{"i":1164,"f":110},"cn0":213,"lock":15,"flags":15,"sid":{"sat":11,"code":3}},{"P":1154898833,"L":{"i":123341931,"f":27},"D":{"i":-4409,"f":217},"cn0":180,"lock":15,"flags":15,"sid":{"sat":9,"code":3}}]} +{"crc":45110,"length":249,"msg_type":74,"payload":"YAEvEAAAAAAyCEFEqC09vP+KBilE+0iuDw8UA3u2CEDFkdgG9JQIPtAPDwUDmhVmPosEpwY+G/Qn0A8PCgPvoQdDFsgtB/fa+hG1Dw8EA6Q/Kj8lm8IG1FQGnssPDxUD11vWRM7QtwW9mvJkqw8PCQTEqS09C8cWBWlS/DbNDw8UBPQv/D5ZTzwFzYkD3scPDwsEn7cIQA8cUwWKrAbQww8PBQTlogdDsmKVBb/++zivDw8EBNaZlUXMMz8HbiP6rsgPDyMMHC/0SWuyswdvP/Qvqg8PGgxA8RVMGonsBxHGCJGdDw8iDGfQoEcpsXUHyOf6rbwPDxgM","preamble":85,"sender":22963,"header":{"t":{"tow":271516000,"ns_residual":0,"wn":2098},"n_obs":65},"obs":[{"P":1026402372,"L":{"i":109772732,"f":41},"D":{"i":-1212,"f":72},"cn0":174,"lock":15,"flags":15,"sid":{"sat":20,"code":3}},{"P":1074312827,"L":{"i":114856389,"f":244},"D":{"i":2196,"f":62},"cn0":208,"lock":15,"flags":15,"sid":{"sat":5,"code":3}},{"P":1046877594,"L":{"i":111608971,"f":62},"D":{"i":-3045,"f":39},"cn0":208,"lock":15,"flags":15,"sid":{"sat":10,"code":3}},{"P":1124573679,"L":{"i":120440854,"f":247},"D":{"i":-1318,"f":17},"cn0":181,"lock":15,"flags":15,"sid":{"sat":4,"code":3}},{"P":1059733412,"L":{"i":113416997,"f":212},"D":{"i":1620,"f":158},"cn0":203,"lock":15,"flags":15,"sid":{"sat":21,"code":3}},{"P":1154898903,"L":{"i":95932622,"f":189},"D":{"i":-3430,"f":100},"cn0":171,"lock":15,"flags":15,"sid":{"sat":9,"code":4}},{"P":1026402756,"L":{"i":85378827,"f":105},"D":{"i":-942,"f":54},"cn0":205,"lock":15,"flags":15,"sid":{"sat":20,"code":4}},{"P":1056714740,"L":{"i":87838553,"f":205},"D":{"i":905,"f":222},"cn0":199,"lock":15,"flags":15,"sid":{"sat":11,"code":4}},{"P":1074313119,"L":{"i":89332751,"f":138},"D":{"i":1708,"f":208},"cn0":195,"lock":15,"flags":15,"sid":{"sat":5,"code":4}},{"P":1124573925,"L":{"i":93676210,"f":191},"D":{"i":-1026,"f":56},"cn0":175,"lock":15,"flags":15,"sid":{"sat":4,"code":4}},{"P":1167432150,"L":{"i":121582540,"f":110},"D":{"i":-1501,"f":174},"cn0":200,"lock":15,"flags":15,"sid":{"sat":35,"code":12}},{"P":1240739612,"L":{"i":129217131,"f":111},"D":{"i":-3009,"f":47},"cn0":170,"lock":15,"flags":15,"sid":{"sat":26,"code":12}},{"P":1276506432,"L":{"i":132942106,"f":17},"D":{"i":2246,"f":145},"cn0":157,"lock":15,"flags":15,"sid":{"sat":34,"code":12}},{"P":1201721447,"L":{"i":125153577,"f":200},"D":{"i":-1305,"f":173},"cn0":188,"lock":15,"flags":15,"sid":{"sat":24,"code":12}}]} +{"crc":57059,"length":249,"msg_type":74,"payload":"YAEvEAAAAAAyCEJfFhNNJOYGCEorBTGeDw8ZDC59TkXEyzcHY0oGybkPDwwMjVFDR3z0awcb3P6uuA8PEwyYZF5HT8ZuB+RSCda/Dw8WDO18TkVL1ZQFad0EttIPDwwNL04HQqeM8AbH/PuCww8PDA6yviBLEWDlB1A/BKDADw8ZDkjjIEdixHkHZRUEer4PDwsOTBooQwPnDge6LvlfzQ8PGA6roEhRZACLCGuY89qgDw8fDmv49lE4U50IeZ330JoPDyEOn74gS5DYDAapQAPtyA8PGRRrHChDtoJoBcjG+pzXDw8YFI7iIEeFZLoFBCADb8IPDwsU","preamble":85,"sender":22963,"header":{"t":{"tow":271516000,"ns_residual":0,"wn":2098},"n_obs":66},"obs":[{"P":1293096543,"L":{"i":134669860,"f":74},"D":{"i":1323,"f":49},"cn0":158,"lock":15,"flags":15,"sid":{"sat":25,"code":12}},{"P":1162771758,"L":{"i":121097156,"f":99},"D":{"i":1610,"f":201},"cn0":185,"lock":15,"flags":15,"sid":{"sat":12,"code":12}},{"P":1195594125,"L":{"i":124515452,"f":27},"D":{"i":-292,"f":174},"cn0":184,"lock":15,"flags":15,"sid":{"sat":19,"code":12}},{"P":1197368472,"L":{"i":124700239,"f":228},"D":{"i":2386,"f":214},"cn0":191,"lock":15,"flags":15,"sid":{"sat":22,"code":12}},{"P":1162771693,"L":{"i":93640011,"f":105},"D":{"i":1245,"f":182},"cn0":210,"lock":15,"flags":15,"sid":{"sat":12,"code":13}},{"P":1107775023,"L":{"i":116427943,"f":199},"D":{"i":-1028,"f":130},"cn0":195,"lock":15,"flags":15,"sid":{"sat":12,"code":14}},{"P":1260437170,"L":{"i":132472849,"f":80},"D":{"i":1087,"f":160},"cn0":192,"lock":15,"flags":15,"sid":{"sat":25,"code":14}},{"P":1193337672,"L":{"i":125420642,"f":101},"D":{"i":1045,"f":122},"cn0":190,"lock":15,"flags":15,"sid":{"sat":11,"code":14}},{"P":1126701644,"L":{"i":118417155,"f":186},"D":{"i":-1746,"f":95},"cn0":205,"lock":15,"flags":15,"sid":{"sat":24,"code":14}},{"P":1363714219,"L":{"i":143327332,"f":107},"D":{"i":-3176,"f":218},"cn0":160,"lock":15,"flags":15,"sid":{"sat":31,"code":14}},{"P":1375139947,"L":{"i":144528184,"f":121},"D":{"i":-2147,"f":208},"cn0":154,"lock":15,"flags":15,"sid":{"sat":33,"code":14}},{"P":1260437151,"L":{"i":101505168,"f":169},"D":{"i":832,"f":237},"cn0":200,"lock":15,"flags":15,"sid":{"sat":25,"code":20}},{"P":1126702187,"L":{"i":90735286,"f":200},"D":{"i":-1338,"f":156},"cn0":215,"lock":15,"flags":15,"sid":{"sat":24,"code":20}},{"P":1193337486,"L":{"i":96101509,"f":4},"D":{"i":800,"f":111},"cn0":194,"lock":15,"flags":15,"sid":{"sat":11,"code":20}}]} +{"crc":36713,"length":62,"msg_type":74,"payload":"YAEvEAAAAAAyCEPloEhRS8GLBjaA9s+uDw8fFJVNB0KsQFEFd+z8cc8PDwwUNPj2Ua3LmQahlvmgqQ8PIRQ=","preamble":85,"sender":22963,"header":{"t":{"tow":271516000,"ns_residual":0,"wn":2098},"n_obs":67},"obs":[{"P":1363714277,"L":{"i":109822283,"f":54},"D":{"i":-2432,"f":207},"cn0":174,"lock":15,"flags":15,"sid":{"sat":31,"code":20}},{"P":1107774869,"L":{"i":89211052,"f":119},"D":{"i":-788,"f":113},"cn0":207,"lock":15,"flags":15,"sid":{"sat":12,"code":20}},{"P":1375139892,"L":{"i":110742445,"f":161},"D":{"i":-1642,"f":160},"cn0":169,"lock":15,"flags":15,"sid":{"sat":33,"code":20}}]} +{"crc":49809,"length":9,"msg_type":117,"payload":"/wAAAAAAAAAA","preamble":85,"sender":22963,"mask":255,"l1ca_bias":0,"l1p_bias":0,"l2ca_bias":0,"l2p_bias":0} +{"crc":14313,"length":11,"msg_type":258,"payload":"MghgAS8QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271516000,"ns_residual":0,"flags":1} +{"crc":40031,"length":16,"msg_type":259,"payload":"EWABLxDkBwMZAxg5/smaOw==","preamble":85,"sender":22963,"flags":17,"tow":271516000,"year":2020,"month":3,"day":25,"hours":3,"minutes":24,"seconds":57,"ns":999999998} +{"crc":47820,"length":34,"msg_type":522,"payload":"YAEvEAybGeBl6kJAmiDCG1aSXsBERWuvDUYxwAECWwQPBg==","preamble":85,"sender":22963,"tow":271516000,"lat":37.831233990195045,"lon":-122.28650564153432,"height":-17.273646320046524,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":37740,"length":22,"msg_type":526,"payload":"YAEvEAwAAAAGAAAA/P////EAygIPAg==","preamble":85,"sender":22963,"tow":271516000,"n":12,"e":6,"d":-4,"h_accuracy":241,"v_accuracy":714,"n_sats":15,"flags":2} +{"crc":11398,"length":15,"msg_type":520,"payload":"YAEvEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271516000,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":33736,"length":22,"msg_type":524,"payload":"YAEvEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271516000,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":38542,"length":6,"msg_type":528,"payload":"YAEvEP//","preamble":85,"sender":22963,"tow":271516000,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":40942,"length":4,"msg_type":65535,"payload":"AAUCgA==","preamble":85,"sender":22963,"flags":2147616000} +{"crc":2168,"length":24,"msg_type":72,"payload":"UO0a3iqORMHK1UJhIkRQwc9nFIPvrk1B","preamble":85,"sender":22963,"x":-2694229.735196747,"y":-4264073.519704292,"z":3890655.0240602265} +{"crc":47991,"length":26,"msg_type":23,"payload":"bWFpbgAAAAAAAAAAAAAAAAAAAAAAAAx1AAA=","preamble":85,"sender":22963,"name":"main\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":0,"stack_free":29964} +{"crc":40242,"length":26,"msg_type":23,"payload":"aWRsZQAAAAAAAAAAAAAAAAAAAACIAHwAAAA=","preamble":85,"sender":22963,"name":"idle\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":136,"stack_free":124} +{"crc":53198,"length":26,"msg_type":23,"payload":"cnBtc2cAAAAAAAAAAAAAAAAAAAABAOwNAAA=","preamble":85,"sender":22963,"name":"rpmsg\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":1,"stack_free":3564} +{"crc":51784,"length":26,"msg_type":23,"payload":"U0JQAAAAAAAAAAAAAAAAAAAAAAAAAPz/AAA=","preamble":85,"sender":22963,"name":"SBP\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":0,"stack_free":65532} +{"crc":33651,"length":26,"msg_type":23,"payload":"TkFQAAAAAAAAAAAAAAAAAAAAAAAAAASAAAA=","preamble":85,"sender":22963,"name":"NAP\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":0,"stack_free":32772} +{"crc":61814,"length":26,"msg_type":23,"payload":"bWFuYWdlIFBWAAAAAAAAAAAAAAAAACwEAAA=","preamble":85,"sender":22963,"name":"manage PV\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":0,"stack_free":1068} +{"crc":14252,"length":26,"msg_type":23,"payload":"SU1VAAAAAAAAAAAAAAAAAAAAAAAAAPQHAAA=","preamble":85,"sender":22963,"name":"IMU\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":0,"stack_free":2036} +{"crc":18976,"length":26,"msg_type":23,"payload":"SU1VIGF1eAAAAAAAAAAAAAAAAAAAAEwIAAA=","preamble":85,"sender":22963,"name":"IMU aux\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":0,"stack_free":2124} +{"crc":26120,"length":26,"msg_type":23,"payload":"bmRiAAAAAAAAAAAAAAAAAAAAAAAAAFAMAAA=","preamble":85,"sender":22963,"name":"ndb\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":0,"stack_free":3152} +{"crc":25570,"length":26,"msg_type":23,"payload":"TkFQIFRyYWNraW5nAAAAAAAAAAApAdR3AAA=","preamble":85,"sender":22963,"name":"NAP Tracking\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":297,"stack_free":30676} +{"crc":40082,"length":26,"msg_type":23,"payload":"ZGVjb2RlAAAAAAAAAAAAAAAAAAAIANQGAAA=","preamble":85,"sender":22963,"name":"decode\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":8,"stack_free":1748} +{"crc":56140,"length":26,"msg_type":23,"payload":"bWFuYWdlIGFjcQAAAAAAAAAAAACNAaR3AAA=","preamble":85,"sender":22963,"name":"manage acq\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":397,"stack_free":30628} +{"crc":58531,"length":26,"msg_type":23,"payload":"c3lzdGVtIG1vbml0b3IAAAAAAAAAACwGAAA=","preamble":85,"sender":22963,"name":"system monitor\u0000\u0000\u0000\u0000\u0000\u0000","cpu":0,"stack_free":1580} +{"crc":44438,"length":26,"msg_type":23,"payload":"V2F0Y2hkb2cAAAAAAAAAAAAAAAAAAOQDAAA=","preamble":85,"sender":22963,"name":"Watchdog\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":0,"stack_free":996} +{"crc":61599,"length":26,"msg_type":23,"payload":"c3RhcmxpbmcAAAAAAAAAAAAAAACWAPz/AAA=","preamble":85,"sender":22963,"name":"starling\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":150,"stack_free":65532} +{"crc":24698,"length":26,"msg_type":23,"payload":"bWVfY2FsY19wdnQAAAAAAAAAAAAHAIwjAAA=","preamble":85,"sender":22963,"name":"me_calc_pvt\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":7,"stack_free":9100} +{"crc":38576,"length":26,"msg_type":23,"payload":"UFBTAAAAAAAAAAAAAAAAAAAAAAAAAEgHAAA=","preamble":85,"sender":22963,"name":"PPS\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":0,"stack_free":1864} +{"crc":50933,"length":26,"msg_type":23,"payload":"c3BlY3RydW0gYW5hbHl6ZXIAAAAAANQPAAA=","preamble":85,"sender":22963,"name":"spectrum analyzer\u0000\u0000\u0000","cpu":0,"stack_free":4052} +{"crc":45896,"length":11,"msg_type":258,"payload":"MgjEAS8QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271516100,"ns_residual":0,"flags":1} +{"crc":62695,"length":16,"msg_type":259,"payload":"EcQBLxDkBwMZAxg6/uD1BQ==","preamble":85,"sender":22963,"flags":17,"tow":271516100,"year":2020,"month":3,"day":25,"hours":3,"minutes":24,"seconds":58,"ns":99999998} +{"crc":53237,"length":34,"msg_type":522,"payload":"xAEvEIxNM+Bl6kJA9lXwG1aSXsAL/aIqqUMxwAECWwQPBg==","preamble":85,"sender":22963,"tow":271516100,"lat":37.83123400216127,"lon":-122.28650568456928,"height":-17.26430002669535,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":59882,"length":22,"msg_type":526,"payload":"xAEvEAcAAAD2////7v////EAygIPAg==","preamble":85,"sender":22963,"tow":271516100,"n":7,"e":-10,"d":-18,"h_accuracy":241,"v_accuracy":714,"n_sats":15,"flags":2} +{"crc":32306,"length":15,"msg_type":520,"payload":"xAEvEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271516100,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":62641,"length":22,"msg_type":524,"payload":"xAEvEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271516100,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":28935,"length":6,"msg_type":528,"payload":"xAEvEP//","preamble":85,"sender":22963,"tow":271516100,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":35258,"length":11,"msg_type":258,"payload":"MggoAi8QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271516200,"ns_residual":0,"flags":1} +{"crc":22264,"length":16,"msg_type":259,"payload":"ESgCLxDkBwMZAxg6/sHrCw==","preamble":85,"sender":22963,"flags":17,"tow":271516200,"year":2020,"month":3,"day":25,"hours":3,"minutes":24,"seconds":58,"ns":199999998} +{"crc":9750,"length":34,"msg_type":522,"payload":"KAIvEMA+QuBl6kJAfoUgHFaSXsAGq+zSGkIxwAECWwQPBg==","preamble":85,"sender":22963,"tow":271516200,"lat":37.83123400911927,"lon":-122.28650572944568,"height":-17.258221800594605,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":16476,"length":22,"msg_type":526,"payload":"KAIvEAAAAAD4////AAAAAPEAygIPAg==","preamble":85,"sender":22963,"tow":271516200,"n":0,"e":-8,"d":0,"h_accuracy":241,"v_accuracy":714,"n_sats":15,"flags":2} +{"crc":44137,"length":15,"msg_type":520,"payload":"KAIvEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271516200,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":26122,"length":22,"msg_type":524,"payload":"KAIvEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271516200,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":7950,"length":6,"msg_type":528,"payload":"KAIvEP//","preamble":85,"sender":22963,"tow":271516200,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":3355,"length":11,"msg_type":258,"payload":"MgiMAi8QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271516300,"ns_residual":0,"flags":1} +{"crc":39623,"length":16,"msg_type":259,"payload":"EYwCLxDkBwMZAxg6/qLhEQ==","preamble":85,"sender":22963,"flags":17,"tow":271516300,"year":2020,"month":3,"day":25,"hours":3,"minutes":24,"seconds":58,"ns":299999998} +{"crc":45441,"length":200,"msg_type":189,"payload":"EkmcOgAAAAAAAAAAAAAAAAAAAAAAAAAAY2FuMAAAAAAAAAAAAAAAABJJnDoAAAAAAAAAAAAAAAAAAAAAAAAAAGNhbjEAAAAAAAAAAAAAAAASSZw6AAAAAIhY50sAAAAA9XUnIJPivytldGgwAAAAAAAAAAAAAAAAEkmcOgAAAAAAAAAAAAAAAAAAAAAAAAAAbG8AAAAAAAAAAAAAAAAAABJJnDoAAAAAAAAAAAAAAAAAAAAAAAAAAHNpdDAAAAAAAAAAAAAAAAA=","preamble":85,"sender":22963,"interfaces":[{"duration":983320850,"total_bytes":0,"rx_bytes":0,"tx_bytes":0,"interface_name":"can0\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000"},{"duration":983320850,"total_bytes":0,"rx_bytes":0,"tx_bytes":0,"interface_name":"can1\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000"},{"duration":983320850,"total_bytes":1273452680,"rx_bytes":539457013,"tx_bytes":733995667,"interface_name":"eth0\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000"},{"duration":983320850,"total_bytes":0,"rx_bytes":0,"tx_bytes":0,"interface_name":"lo\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000"},{"duration":983320850,"total_bytes":0,"rx_bytes":0,"tx_bytes":0,"interface_name":"sit0\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000"}]} +{"crc":24554,"length":34,"msg_type":522,"payload":"jAIvEA8ZUeBl6kJAG11AHFaSXsD207Sxo0AxwAECWwQPBg==","preamble":85,"sender":22963,"tow":271516300,"lat":37.83123401603563,"lon":-122.28650575910108,"height":-17.252497774741606,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":34834,"length":22,"msg_type":526,"payload":"jAIvEAQAAAAFAAAACgAAAPEAygIPAg==","preamble":85,"sender":22963,"tow":271516300,"n":4,"e":5,"d":10,"h_accuracy":241,"v_accuracy":714,"n_sats":15,"flags":2} +{"crc":65245,"length":15,"msg_type":520,"payload":"jAIvEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271516300,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":4467,"length":22,"msg_type":524,"payload":"jAIvEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271516300,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":63623,"length":6,"msg_type":528,"payload":"jAIvEP//","preamble":85,"sender":22963,"tow":271516300,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":38851,"length":237,"msg_type":97,"payload":"BQDVFQC0AgC9HwCnAAAAAAAAGQDaDADPHQDVEgDOAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwLNGQHMDAG7HwGZEgHEHQHDAAAABQHBAAAAAAAAAAAAAAAAZAPVYgOzZgOtZQPQXQPQAAAAagO1aAPLYgSrZgTNAAAAZATHZQTDaAS8AAAAagSvIwzIGgyqIgycGAy8GQyeDAy5Ewy4Fgy/AAAADA3SAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADA7DAAAAGQ7ACw6+GA7NAAAAHw6gIQ6ZGRTJGBTXCxTCHxSuDBTOAAAAIRSpAAAA","preamble":85,"sender":22963,"states":[{"mesid":{"sat":5,"code":0},"cn0":213},{"mesid":{"sat":21,"code":0},"cn0":180},{"mesid":{"sat":2,"code":0},"cn0":189},{"mesid":{"sat":31,"code":0},"cn0":167},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":25,"code":0},"cn0":218},{"mesid":{"sat":12,"code":0},"cn0":207},{"mesid":{"sat":29,"code":0},"cn0":213},{"mesid":{"sat":18,"code":0},"cn0":206},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":131,"code":2},"cn0":205},{"mesid":{"sat":25,"code":1},"cn0":204},{"mesid":{"sat":12,"code":1},"cn0":187},{"mesid":{"sat":31,"code":1},"cn0":153},{"mesid":{"sat":18,"code":1},"cn0":196},{"mesid":{"sat":29,"code":1},"cn0":195},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":5,"code":1},"cn0":193},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":100,"code":3},"cn0":213},{"mesid":{"sat":98,"code":3},"cn0":179},{"mesid":{"sat":102,"code":3},"cn0":173},{"mesid":{"sat":101,"code":3},"cn0":208},{"mesid":{"sat":93,"code":3},"cn0":208},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":106,"code":3},"cn0":181},{"mesid":{"sat":104,"code":3},"cn0":203},{"mesid":{"sat":98,"code":4},"cn0":171},{"mesid":{"sat":102,"code":4},"cn0":205},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":100,"code":4},"cn0":199},{"mesid":{"sat":101,"code":4},"cn0":195},{"mesid":{"sat":104,"code":4},"cn0":188},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":106,"code":4},"cn0":175},{"mesid":{"sat":35,"code":12},"cn0":200},{"mesid":{"sat":26,"code":12},"cn0":170},{"mesid":{"sat":34,"code":12},"cn0":156},{"mesid":{"sat":24,"code":12},"cn0":188},{"mesid":{"sat":25,"code":12},"cn0":158},{"mesid":{"sat":12,"code":12},"cn0":185},{"mesid":{"sat":19,"code":12},"cn0":184},{"mesid":{"sat":22,"code":12},"cn0":191},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":12,"code":13},"cn0":210},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":12,"code":14},"cn0":195},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":25,"code":14},"cn0":192},{"mesid":{"sat":11,"code":14},"cn0":190},{"mesid":{"sat":24,"code":14},"cn0":205},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":31,"code":14},"cn0":160},{"mesid":{"sat":33,"code":14},"cn0":153},{"mesid":{"sat":25,"code":20},"cn0":201},{"mesid":{"sat":24,"code":20},"cn0":215},{"mesid":{"sat":11,"code":20},"cn0":194},{"mesid":{"sat":31,"code":20},"cn0":174},{"mesid":{"sat":12,"code":20},"cn0":206},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":33,"code":20},"cn0":169},{"mesid":{"sat":0,"code":0},"cn0":0}]} +{"crc":5072,"length":11,"msg_type":258,"payload":"MgjwAi8QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271516400,"ns_residual":0,"flags":1} +{"crc":41380,"length":16,"msg_type":259,"payload":"EfACLxDkBwMZAxg6/oPXFw==","preamble":85,"sender":22963,"flags":17,"tow":271516400,"year":2020,"month":3,"day":25,"hours":3,"minutes":24,"seconds":58,"ns":399999998} +{"crc":40124,"length":34,"msg_type":522,"payload":"8AIvEHTUR+Bl6kJABJtUHFaSXsDTV2rahT8xwAECWwQPBg==","preamble":85,"sender":22963,"tow":271516400,"lat":37.831234011719886,"lon":-122.28650577795275,"height":-17.248136187517797,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":32114,"length":22,"msg_type":526,"payload":"8AIvEPv///8MAAAAEwAAAPEAygIPAg==","preamble":85,"sender":22963,"tow":271516400,"n":-5,"e":12,"d":19,"h_accuracy":241,"v_accuracy":714,"n_sats":15,"flags":2} +{"crc":48061,"length":15,"msg_type":520,"payload":"8AIvEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271516400,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":59936,"length":22,"msg_type":524,"payload":"8AIvEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271516400,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":46840,"length":6,"msg_type":528,"payload":"8AIvEP//","preamble":85,"sender":22963,"tow":271516400,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":49809,"length":9,"msg_type":117,"payload":"/wAAAAAAAAAA","preamble":85,"sender":22963,"mask":255,"l1ca_bias":0,"l1p_bias":0,"l2ca_bias":0,"l2p_bias":0} +{"crc":53410,"length":11,"msg_type":258,"payload":"MghUAy8QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271516500,"ns_residual":0,"flags":1} +{"crc":57378,"length":16,"msg_type":259,"payload":"EVQDLxDkBwMZAxg6/mTNHQ==","preamble":85,"sender":22963,"flags":17,"tow":271516500,"year":2020,"month":3,"day":25,"hours":3,"minutes":24,"seconds":58,"ns":499999998} +{"crc":10073,"length":34,"msg_type":522,"payload":"VAMvEN/HceBl6kJAj92DHFaSXsCBSrbRpz0xwAECWwQPBg==","preamble":85,"sender":22963,"tow":271516500,"lat":37.83123403125477,"lon":-122.286505821967,"height":-17.240841967587134,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":63290,"length":22,"msg_type":526,"payload":"VAMvEAcAAAD5////+v////EAygIPAg==","preamble":85,"sender":22963,"tow":271516500,"n":7,"e":-7,"d":-6,"h_accuracy":241,"v_accuracy":714,"n_sats":15,"flags":2} +{"crc":37480,"length":15,"msg_type":520,"payload":"VAMvEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271516500,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":18607,"length":22,"msg_type":524,"payload":"VAMvEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271516500,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":64288,"length":6,"msg_type":528,"payload":"VAMvEP//","preamble":85,"sender":22963,"tow":271516500,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":8741,"length":11,"msg_type":258,"payload":"Mgi4Ay8QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271516600,"ns_residual":0,"flags":1} +{"crc":64190,"length":16,"msg_type":259,"payload":"EbgDLxDkBwMZAxg6/kXDIw==","preamble":85,"sender":22963,"flags":17,"tow":271516600,"year":2020,"month":3,"day":25,"hours":3,"minutes":24,"seconds":58,"ns":599999998} +{"crc":470,"length":34,"msg_type":522,"payload":"uAMvEEyCeeBl6kJAN5CpHFaSXsBFKqIgQzsxwAECWwQPBg==","preamble":85,"sender":22963,"tow":271516600,"lat":37.83123403485351,"lon":-122.28650585707588,"height":-17.23149303397283,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":7656,"length":22,"msg_type":526,"payload":"uAMvEPz///8BAAAA8P////EAygIPAg==","preamble":85,"sender":22963,"tow":271516600,"n":-4,"e":1,"d":-16,"h_accuracy":241,"v_accuracy":714,"n_sats":15,"flags":2} +{"crc":52624,"length":15,"msg_type":520,"payload":"uAMvEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271516600,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":46127,"length":22,"msg_type":524,"payload":"uAMvEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271516600,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":31739,"length":6,"msg_type":528,"payload":"uAMvEP//","preamble":85,"sender":22963,"tow":271516600,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":24988,"length":11,"msg_type":258,"payload":"MggcBC8QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271516700,"ns_residual":0,"flags":1} +{"crc":23791,"length":16,"msg_type":259,"payload":"ERwELxDkBwMZAxg6/ia5KQ==","preamble":85,"sender":22963,"flags":17,"tow":271516700,"year":2020,"month":3,"day":25,"hours":3,"minutes":24,"seconds":58,"ns":699999998} +{"crc":47439,"length":34,"msg_type":522,"payload":"HAQvEM3WmuBl6kJAuVfJHFaSXsDP5tqJbDkxwAECWwQPBg==","preamble":85,"sender":22963,"tow":271516700,"lat":37.83123405037404,"lon":-122.28650588667269,"height":-17.224312416022084,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":2560,"length":22,"msg_type":526,"payload":"HAQvEAsAAAD+////BwAAAPEAygIPAg==","preamble":85,"sender":22963,"tow":271516700,"n":11,"e":-2,"d":7,"h_accuracy":241,"v_accuracy":714,"n_sats":15,"flags":2} +{"crc":61218,"length":15,"msg_type":520,"payload":"HAQvEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271516700,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":51926,"length":22,"msg_type":524,"payload":"HAQvEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271516700,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":64422,"length":6,"msg_type":528,"payload":"HAQvEP//","preamble":85,"sender":22963,"tow":271516700,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":55020,"length":34,"msg_type":30583,"payload":"gwJPAy8QApf/AAf/AC/+AAf/f//+f/f//+AC5edV7m7lcA==","preamble":85,"sender":22963,"sid":{"sat":131,"code":2},"tow":271516495,"message_type":2,"data":[151,255,0,7,255,0,47,254,0,7,255,127,255,254,127,247,255,255,224,2,229,231,85,238,110,229,112]} +{"crc":14528,"length":11,"msg_type":258,"payload":"MgiABC8QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271516800,"ns_residual":0,"flags":1} +{"crc":33381,"length":16,"msg_type":259,"payload":"EYAELxDkBwMZAxg6/gevLw==","preamble":85,"sender":22963,"flags":17,"tow":271516800,"year":2020,"month":3,"day":25,"hours":3,"minutes":24,"seconds":58,"ns":799999998} +{"crc":26292,"length":34,"msg_type":522,"payload":"gAQvEGjvreBl6kJAV/HHHFaSXsCpcUJzDjcxwAECWwQPBg==","preamble":85,"sender":22963,"tow":271516800,"lat":37.831234059266365,"lon":-122.2865058853689,"height":-17.21506424305122,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":14111,"length":22,"msg_type":526,"payload":"gAQvEAEAAAD7////8v////EAygIPAg==","preamble":85,"sender":22963,"tow":271516800,"n":1,"e":-5,"d":-14,"h_accuracy":241,"v_accuracy":714,"n_sats":15,"flags":2} +{"crc":18765,"length":15,"msg_type":520,"payload":"gAQvEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271516800,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":13543,"length":22,"msg_type":524,"payload":"gAQvEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271516800,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":16097,"length":6,"msg_type":528,"payload":"gAQvEP//","preamble":85,"sender":22963,"tow":271516800,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":30994,"length":237,"msg_type":97,"payload":"BQDWFQC0AgC9HwCnAAAAAAAAGQDaDADPHQDVEgDOAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwLOGQHMDAG7HwGYEgHEHQHDAAAABQHBAAAAAAAAAAAAAAAACwPVCQOzFAOuBQPQCgPQAAAABAO1FQPLCQSrFATNCgRJCwTHBQTDAAS8AAAABASvIwzIGgyqIgycGAy8GQydDAy5Ewy4Fgy/AAAADA3SAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADA7DAAAAGQ7ACw69GA7NAAAAHw6fIQ6ZGRTJGBTXCxTCHxSuDBTOAAAAIRSoAAAA","preamble":85,"sender":22963,"states":[{"mesid":{"sat":5,"code":0},"cn0":214},{"mesid":{"sat":21,"code":0},"cn0":180},{"mesid":{"sat":2,"code":0},"cn0":189},{"mesid":{"sat":31,"code":0},"cn0":167},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":25,"code":0},"cn0":218},{"mesid":{"sat":12,"code":0},"cn0":207},{"mesid":{"sat":29,"code":0},"cn0":213},{"mesid":{"sat":18,"code":0},"cn0":206},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":131,"code":2},"cn0":206},{"mesid":{"sat":25,"code":1},"cn0":204},{"mesid":{"sat":12,"code":1},"cn0":187},{"mesid":{"sat":31,"code":1},"cn0":152},{"mesid":{"sat":18,"code":1},"cn0":196},{"mesid":{"sat":29,"code":1},"cn0":195},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":5,"code":1},"cn0":193},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":11,"code":3},"cn0":213},{"mesid":{"sat":9,"code":3},"cn0":179},{"mesid":{"sat":20,"code":3},"cn0":174},{"mesid":{"sat":5,"code":3},"cn0":208},{"mesid":{"sat":10,"code":3},"cn0":208},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":4,"code":3},"cn0":181},{"mesid":{"sat":21,"code":3},"cn0":203},{"mesid":{"sat":9,"code":4},"cn0":171},{"mesid":{"sat":20,"code":4},"cn0":205},{"mesid":{"sat":10,"code":4},"cn0":73},{"mesid":{"sat":11,"code":4},"cn0":199},{"mesid":{"sat":5,"code":4},"cn0":195},{"mesid":{"sat":0,"code":4},"cn0":188},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":4,"code":4},"cn0":175},{"mesid":{"sat":35,"code":12},"cn0":200},{"mesid":{"sat":26,"code":12},"cn0":170},{"mesid":{"sat":34,"code":12},"cn0":156},{"mesid":{"sat":24,"code":12},"cn0":188},{"mesid":{"sat":25,"code":12},"cn0":157},{"mesid":{"sat":12,"code":12},"cn0":185},{"mesid":{"sat":19,"code":12},"cn0":184},{"mesid":{"sat":22,"code":12},"cn0":191},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":12,"code":13},"cn0":210},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":12,"code":14},"cn0":195},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":25,"code":14},"cn0":192},{"mesid":{"sat":11,"code":14},"cn0":189},{"mesid":{"sat":24,"code":14},"cn0":205},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":31,"code":14},"cn0":159},{"mesid":{"sat":33,"code":14},"cn0":153},{"mesid":{"sat":25,"code":20},"cn0":201},{"mesid":{"sat":24,"code":20},"cn0":215},{"mesid":{"sat":11,"code":20},"cn0":194},{"mesid":{"sat":31,"code":20},"cn0":174},{"mesid":{"sat":12,"code":20},"cn0":206},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":33,"code":20},"cn0":168},{"mesid":{"sat":0,"code":0},"cn0":0}]} +{"crc":53239,"length":132,"msg_type":151,"payload":"AgAaHQUAKzUMAFEtFQB9GRkAbUYaAKEBHQChNx8AlQ4EAxUWBQMyIQYDTggJA18OCgNxKQsDmCUMA6oDEwMiBxQDDDEVA5UlDAyUKRMMIyAUDA8CFgxDJBgMgiMZDJ0OGgxnFSIMjhEjDCItCw6LMgwODzwYDmw2GQ6XKR8OVREhDiAP","preamble":85,"sender":22963,"azel":[{"sid":{"sat":2,"code":0},"az":26,"el":29},{"sid":{"sat":5,"code":0},"az":43,"el":53},{"sid":{"sat":12,"code":0},"az":81,"el":45},{"sid":{"sat":21,"code":0},"az":125,"el":25},{"sid":{"sat":25,"code":0},"az":109,"el":70},{"sid":{"sat":26,"code":0},"az":161,"el":1},{"sid":{"sat":29,"code":0},"az":161,"el":55},{"sid":{"sat":31,"code":0},"az":149,"el":14},{"sid":{"sat":4,"code":3},"az":21,"el":22},{"sid":{"sat":5,"code":3},"az":50,"el":33},{"sid":{"sat":6,"code":3},"az":78,"el":8},{"sid":{"sat":9,"code":3},"az":95,"el":14},{"sid":{"sat":10,"code":3},"az":113,"el":41},{"sid":{"sat":11,"code":3},"az":152,"el":37},{"sid":{"sat":12,"code":3},"az":170,"el":3},{"sid":{"sat":19,"code":3},"az":34,"el":7},{"sid":{"sat":20,"code":3},"az":12,"el":49},{"sid":{"sat":21,"code":3},"az":149,"el":37},{"sid":{"sat":12,"code":12},"az":148,"el":41},{"sid":{"sat":19,"code":12},"az":35,"el":32},{"sid":{"sat":20,"code":12},"az":15,"el":2},{"sid":{"sat":22,"code":12},"az":67,"el":36},{"sid":{"sat":24,"code":12},"az":130,"el":35},{"sid":{"sat":25,"code":12},"az":157,"el":14},{"sid":{"sat":26,"code":12},"az":103,"el":21},{"sid":{"sat":34,"code":12},"az":142,"el":17},{"sid":{"sat":35,"code":12},"az":34,"el":45},{"sid":{"sat":11,"code":14},"az":139,"el":50},{"sid":{"sat":12,"code":14},"az":15,"el":60},{"sid":{"sat":24,"code":14},"az":108,"el":54},{"sid":{"sat":25,"code":14},"az":151,"el":41},{"sid":{"sat":31,"code":14},"az":85,"el":17},{"sid":{"sat":33,"code":14},"az":32,"el":15}]} +{"crc":23562,"length":11,"msg_type":258,"payload":"MgjkBC8QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271516900,"ns_residual":0,"flags":1} +{"crc":19787,"length":16,"msg_type":259,"payload":"EeQELxDkBwMZAxg6/uikNQ==","preamble":85,"sender":22963,"flags":17,"tow":271516900,"year":2020,"month":3,"day":25,"hours":3,"minutes":24,"seconds":58,"ns":899999998} +{"crc":28976,"length":34,"msg_type":522,"payload":"5AQvEKSQwuBl6kJAPIe3HFaSXsAx3btXWTUxwAECWwQPBg==","preamble":85,"sender":22963,"tow":271516900,"lat":37.831234068872874,"lon":-122.28650587008173,"height":-17.20839451157116,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":13635,"length":22,"msg_type":526,"payload":"5AQvEAEAAAAEAAAAAQAAAPEAygIPAg==","preamble":85,"sender":22963,"tow":271516900,"n":1,"e":4,"d":1,"h_accuracy":241,"v_accuracy":714,"n_sats":15,"flags":2} +{"crc":26082,"length":15,"msg_type":520,"payload":"5AQvEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271516900,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":11345,"length":22,"msg_type":524,"payload":"5AQvEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271516900,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":26456,"length":6,"msg_type":528,"payload":"5AQvEP//","preamble":85,"sender":22963,"tow":271516900,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":22822,"length":249,"msg_type":74,"payload":"SAUvEAAAAAAyCECtC7Q+4xSXBixH/5fWDw8FABAyFkXo1EIHiXwIALQPDxUAc0nzRbURWgcFT/ZmvQ8PAgCnrgJJYmesBxl1/mGnDw8fAFtjJj2USW0GIZj7NtoPDxkA0QG2QGkZzQZfaPQ3zw8PDAB5HtA+MwiaBsjLBV7VDw8dAIljJj3eCgIFWpD89MwPDxkBhQG2QIKzTAVd+PYvuw8PDAEXrgJJTrT6BdrL/tuYDw8fAR4e0D556CQF94QE28MPDx0BbAu0PgacIgXNb/+ewg8PBQFlBPw+2Ty7BlONBCnVDw8LA8f81kSjHVoHEsjuibMPDwkD","preamble":85,"sender":22963,"header":{"t":{"tow":271517000,"ns_residual":0,"wn":2098},"n_obs":64},"obs":[{"P":1051986861,"L":{"i":110564579,"f":44},"D":{"i":-185,"f":151},"cn0":214,"lock":15,"flags":15,"sid":{"sat":5,"code":0}},{"P":1159082512,"L":{"i":121820392,"f":137},"D":{"i":2172,"f":0},"cn0":180,"lock":15,"flags":15,"sid":{"sat":21,"code":0}},{"P":1173571955,"L":{"i":123343285,"f":5},"D":{"i":-2481,"f":102},"cn0":189,"lock":15,"flags":15,"sid":{"sat":2,"code":0}},{"P":1224912551,"L":{"i":128739170,"f":25},"D":{"i":-395,"f":97},"cn0":167,"lock":15,"flags":15,"sid":{"sat":31,"code":0}},{"P":1025925979,"L":{"i":107825556,"f":33},"D":{"i":-1128,"f":54},"cn0":218,"lock":15,"flags":15,"sid":{"sat":25,"code":0}},{"P":1085669841,"L":{"i":114104681,"f":95},"D":{"i":-2968,"f":55},"cn0":207,"lock":15,"flags":15,"sid":{"sat":12,"code":0}},{"P":1053826681,"L":{"i":110757939,"f":200},"D":{"i":1483,"f":94},"cn0":213,"lock":15,"flags":15,"sid":{"sat":29,"code":0}},{"P":1025926025,"L":{"i":84019934,"f":90},"D":{"i":-880,"f":244},"cn0":204,"lock":15,"flags":15,"sid":{"sat":25,"code":1}},{"P":1085669765,"L":{"i":88912770,"f":93},"D":{"i":-2312,"f":47},"cn0":187,"lock":15,"flags":15,"sid":{"sat":12,"code":1}},{"P":1224912407,"L":{"i":100316238,"f":218},"D":{"i":-309,"f":219},"cn0":152,"lock":15,"flags":15,"sid":{"sat":31,"code":1}},{"P":1053826590,"L":{"i":86304889,"f":247},"D":{"i":1156,"f":219},"cn0":195,"lock":15,"flags":15,"sid":{"sat":29,"code":1}},{"P":1051986796,"L":{"i":86154246,"f":205},"D":{"i":-145,"f":158},"cn0":194,"lock":15,"flags":15,"sid":{"sat":5,"code":1}},{"P":1056703589,"L":{"i":112934105,"f":83},"D":{"i":1165,"f":41},"cn0":213,"lock":15,"flags":15,"sid":{"sat":11,"code":3}},{"P":1154940103,"L":{"i":123346339,"f":18},"D":{"i":-4408,"f":137},"cn0":179,"lock":15,"flags":15,"sid":{"sat":9,"code":3}}]} +{"crc":39593,"length":249,"msg_type":74,"payload":"SAUvEAAAAAAyCEGD1C09dgSLBtVG+9utDw8UAyNmCEAwidgG25QIFtAPDwUDNYVmPnAQpwY6G/Sizw8PCgMQ0gdDPM0tByrb+gW0Dw8EA3QEKj/PlMIGq1cGE8sPDxUDH/3WRDPetwUpm/I2qw8PCQTv1S09ucoWBQlS/ErNDw8UBFYF/D7PSzwFz4sDBccPDwsEUWcIQGIVUwWvrQY0ww8PBQQB0wdDs2aVBT7/+wevDw8EBBrSlUWoOT8HMyT6nsgPDyMM+J/0SSu+swfjQPQ+qg8PGgzznBVMUoDsBwPICNGcDw8iDEUBoUdBtnUHG+r6R7wPDxgM","preamble":85,"sender":22963,"header":{"t":{"tow":271517000,"ns_residual":0,"wn":2098},"n_obs":65},"obs":[{"P":1026413699,"L":{"i":109773942,"f":213},"D":{"i":-1210,"f":219},"cn0":173,"lock":15,"flags":15,"sid":{"sat":20,"code":3}},{"P":1074292259,"L":{"i":114854192,"f":219},"D":{"i":2196,"f":22},"cn0":208,"lock":15,"flags":15,"sid":{"sat":5,"code":3}},{"P":1046906165,"L":{"i":111612016,"f":58},"D":{"i":-3045,"f":162},"cn0":207,"lock":15,"flags":15,"sid":{"sat":10,"code":3}},{"P":1124586000,"L":{"i":120442172,"f":42},"D":{"i":-1317,"f":5},"cn0":180,"lock":15,"flags":15,"sid":{"sat":4,"code":3}},{"P":1059718260,"L":{"i":113415375,"f":171},"D":{"i":1623,"f":19},"cn0":203,"lock":15,"flags":15,"sid":{"sat":21,"code":3}},{"P":1154940191,"L":{"i":95936051,"f":41},"D":{"i":-3429,"f":54},"cn0":171,"lock":15,"flags":15,"sid":{"sat":9,"code":4}},{"P":1026414063,"L":{"i":85379769,"f":9},"D":{"i":-942,"f":74},"cn0":205,"lock":15,"flags":15,"sid":{"sat":20,"code":4}},{"P":1056703830,"L":{"i":87837647,"f":207},"D":{"i":907,"f":5},"cn0":199,"lock":15,"flags":15,"sid":{"sat":11,"code":4}},{"P":1074292561,"L":{"i":89331042,"f":175},"D":{"i":1709,"f":52},"cn0":195,"lock":15,"flags":15,"sid":{"sat":5,"code":4}},{"P":1124586241,"L":{"i":93677235,"f":62},"D":{"i":-1025,"f":7},"cn0":175,"lock":15,"flags":15,"sid":{"sat":4,"code":4}},{"P":1167446554,"L":{"i":121584040,"f":51},"D":{"i":-1500,"f":158},"cn0":200,"lock":15,"flags":15,"sid":{"sat":35,"code":12}},{"P":1240768504,"L":{"i":129220139,"f":227},"D":{"i":-3008,"f":62},"cn0":170,"lock":15,"flags":15,"sid":{"sat":26,"code":12}},{"P":1276484851,"L":{"i":132939858,"f":3},"D":{"i":2248,"f":209},"cn0":156,"lock":15,"flags":15,"sid":{"sat":34,"code":12}},{"P":1201733957,"L":{"i":125154881,"f":27},"D":{"i":-1302,"f":71},"cn0":188,"lock":15,"flags":15,"sid":{"sat":24,"code":12}}]} +{"crc":25537,"length":249,"msg_type":74,"payload":"SAUvEAAAAAAyCEKR5BJN+OAGCEwrBW2dDw8ZDL5ATkV5xTcHE00GIrkPDwwMclxDR571aweJ3f7PuA8PEwwcC15H/bxuByNTCRO/Dw8WDH9ATkVt0JQFct4EudIPDwwNXHQHQquQ8AYv/Ptuww8PDA5IliBL0lvlBwo/BC3ADw8ZDmK8IEdLwHkHqhgEOb0PDwsOKFsoQ9TtDgfYL/k5zA8PGA6NFklRyQyLCEWb84GfDw8fDglI91GVW50Iz6T3+poPDyEONZYgS0/VDAaOQAPgyA8PGRRIXShD74doBfHH+k3XDw8YFKW7IEdiYboF+SMDIcEPDwsU","preamble":85,"sender":22963,"header":{"t":{"tow":271517000,"ns_residual":0,"wn":2098},"n_obs":66},"obs":[{"P":1293083793,"L":{"i":134668536,"f":76},"D":{"i":1323,"f":109},"cn0":157,"lock":15,"flags":15,"sid":{"sat":25,"code":12}},{"P":1162756286,"L":{"i":121095545,"f":19},"D":{"i":1613,"f":34},"cn0":185,"lock":15,"flags":15,"sid":{"sat":12,"code":12}},{"P":1195596914,"L":{"i":124515742,"f":137},"D":{"i":-291,"f":207},"cn0":184,"lock":15,"flags":15,"sid":{"sat":19,"code":12}},{"P":1197345564,"L":{"i":124697853,"f":35},"D":{"i":2387,"f":19},"cn0":191,"lock":15,"flags":15,"sid":{"sat":22,"code":12}},{"P":1162756223,"L":{"i":93638765,"f":114},"D":{"i":1246,"f":185},"cn0":210,"lock":15,"flags":15,"sid":{"sat":12,"code":13}},{"P":1107784796,"L":{"i":116428971,"f":47},"D":{"i":-1028,"f":110},"cn0":195,"lock":15,"flags":15,"sid":{"sat":12,"code":14}},{"P":1260426824,"L":{"i":132471762,"f":10},"D":{"i":1087,"f":45},"cn0":192,"lock":15,"flags":15,"sid":{"sat":25,"code":14}},{"P":1193327714,"L":{"i":125419595,"f":170},"D":{"i":1048,"f":57},"cn0":189,"lock":15,"flags":15,"sid":{"sat":11,"code":14}},{"P":1126718248,"L":{"i":118418900,"f":216},"D":{"i":-1745,"f":57},"cn0":204,"lock":15,"flags":15,"sid":{"sat":24,"code":14}},{"P":1363744397,"L":{"i":143330505,"f":69},"D":{"i":-3173,"f":129},"cn0":159,"lock":15,"flags":15,"sid":{"sat":31,"code":14}},{"P":1375160329,"L":{"i":144530325,"f":207},"D":{"i":-2140,"f":250},"cn0":154,"lock":15,"flags":15,"sid":{"sat":33,"code":14}},{"P":1260426805,"L":{"i":101504335,"f":142},"D":{"i":832,"f":224},"cn0":200,"lock":15,"flags":15,"sid":{"sat":25,"code":20}},{"P":1126718792,"L":{"i":90736623,"f":241},"D":{"i":-1337,"f":77},"cn0":215,"lock":15,"flags":15,"sid":{"sat":24,"code":20}},{"P":1193327525,"L":{"i":96100706,"f":249},"D":{"i":803,"f":33},"cn0":193,"lock":15,"flags":15,"sid":{"sat":11,"code":20}}]} +{"crc":2209,"length":62,"msg_type":74,"payload":"SAUvEAAAAAAyCEPRFklRysqLBmOC9lOuDw8fFMNzB0K/Q1EFsO380s4PDwwU0Ef3URbSmQZlmfknqQ8PIRQ=","preamble":85,"sender":22963,"header":{"t":{"tow":271517000,"ns_residual":0,"wn":2098},"n_obs":67},"obs":[{"P":1363744465,"L":{"i":109824714,"f":99},"D":{"i":-2430,"f":83},"cn0":174,"lock":15,"flags":15,"sid":{"sat":31,"code":20}},{"P":1107784643,"L":{"i":89211839,"f":176},"D":{"i":-787,"f":210},"cn0":206,"lock":15,"flags":15,"sid":{"sat":12,"code":20}},{"P":1375160272,"L":{"i":110744086,"f":101},"D":{"i":-1639,"f":39},"cn0":169,"lock":15,"flags":15,"sid":{"sat":33,"code":20}}]} +{"crc":49809,"length":9,"msg_type":117,"payload":"/wAAAAAAAAAA","preamble":85,"sender":22963,"mask":255,"l1ca_bias":0,"l1p_bias":0,"l2ca_bias":0,"l2p_bias":0} +{"crc":46727,"length":11,"msg_type":258,"payload":"MghIBS8QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271517000,"ns_residual":0,"flags":1} +{"crc":13689,"length":16,"msg_type":259,"payload":"EUgFLxDkBwMZAxg6/smaOw==","preamble":85,"sender":22963,"flags":17,"tow":271517000,"year":2020,"month":3,"day":25,"hours":3,"minutes":24,"seconds":58,"ns":999999998} +{"crc":59819,"length":34,"msg_type":522,"payload":"SAUvEMxU4uBl6kJA+RujHFaSXsCd12UGZjIxwAECWwQPBg==","preamble":85,"sender":22963,"tow":271517000,"lat":37.83123408366518,"lon":-122.28650585106506,"height":-17.196869277824238,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":16617,"length":22,"msg_type":526,"payload":"SAUvEPr/////////8f////EAygIPAg==","preamble":85,"sender":22963,"tow":271517000,"n":-6,"e":-1,"d":-15,"h_accuracy":241,"v_accuracy":714,"n_sats":15,"flags":2} +{"crc":27506,"length":15,"msg_type":520,"payload":"SAUvEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271517000,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":53373,"length":22,"msg_type":524,"payload":"SAUvEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271517000,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":10178,"length":6,"msg_type":528,"payload":"SAUvEP//","preamble":85,"sender":22963,"tow":271517000,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":694,"length":51,"msg_type":1025,"payload":"BkdMTyBMMk9GIE1FIDEgWysxMzQxbXNdIGxvdyBDTjAgdG9vIGxvbmcsIGRyb3BwaW5n","preamble":85,"sender":22963,"level":6,"text":"GLO L2OF ME 1 [+1341ms] low CN0 too long, dropping"} +{"crc":40942,"length":4,"msg_type":65535,"payload":"AAUCgA==","preamble":85,"sender":22963,"flags":2147616000} +{"crc":2168,"length":24,"msg_type":72,"payload":"UO0a3iqORMHK1UJhIkRQwc9nFIPvrk1B","preamble":85,"sender":22963,"x":-2694229.735196747,"y":-4264073.519704292,"z":3890655.0240602265} +{"crc":28159,"length":11,"msg_type":258,"payload":"MgisBS8QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271517100,"ns_residual":0,"flags":1} +{"crc":13131,"length":16,"msg_type":259,"payload":"EawFLxDkBwMZAxg7/uD1BQ==","preamble":85,"sender":22963,"flags":17,"tow":271517100,"year":2020,"month":3,"day":25,"hours":3,"minutes":24,"seconds":59,"ns":99999998} +{"crc":26122,"length":34,"msg_type":522,"payload":"rAUvEMPzAOFl6kJAkAl9HFaSXsDEEXuh6i8xwAECWwQPBg==","preamble":85,"sender":22963,"tow":271517100,"lat":37.831234097924174,"lon":-122.28650581560782,"height":-17.18717393164276,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":64871,"length":22,"msg_type":526,"payload":"rAUvEAEAAAAJAAAACgAAAPEAygIPAg==","preamble":85,"sender":22963,"tow":271517100,"n":1,"e":9,"d":10,"h_accuracy":241,"v_accuracy":714,"n_sats":15,"flags":2} +{"crc":5071,"length":15,"msg_type":520,"payload":"rAUvEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271517100,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":29278,"length":22,"msg_type":524,"payload":"rAUvEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271517100,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":43611,"length":6,"msg_type":528,"payload":"rAUvEP//","preamble":85,"sender":22963,"tow":271517100,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":23338,"length":11,"msg_type":258,"payload":"MggQBi8QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271517200,"ns_residual":0,"flags":1} +{"crc":62935,"length":16,"msg_type":259,"payload":"ERAGLxDkBwMZAxg7/sHrCw==","preamble":85,"sender":22963,"flags":17,"tow":271517200,"year":2020,"month":3,"day":25,"hours":3,"minutes":24,"seconds":59,"ns":199999998} +{"crc":43760,"length":34,"msg_type":522,"payload":"EAYvECTPPuFl6kJAWTRlHFaSXsBoRcjKTywxwAECWwQPBg==","preamble":85,"sender":22963,"tow":271517200,"lat":37.83123412672856,"lon":-122.28650579341173,"height":-17.173092531103435,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":9297,"length":22,"msg_type":526,"payload":"EAYvEA0AAAACAAAA5f////EAygIPAg==","preamble":85,"sender":22963,"tow":271517200,"n":13,"e":2,"d":-27,"h_accuracy":241,"v_accuracy":714,"n_sats":15,"flags":2} +{"crc":42263,"length":15,"msg_type":520,"payload":"EAYvEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271517200,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":35065,"length":22,"msg_type":524,"payload":"EAYvEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271517200,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":46278,"length":6,"msg_type":528,"payload":"EAYvEP//","preamble":85,"sender":22963,"tow":271517200,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":16352,"length":11,"msg_type":258,"payload":"Mgh0Bi8QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271517300,"ns_residual":0,"flags":1} +{"crc":18419,"length":16,"msg_type":259,"payload":"EXQGLxDkBwMZAxg7/qLhEQ==","preamble":85,"sender":22963,"flags":17,"tow":271517300,"year":2020,"month":3,"day":25,"hours":3,"minutes":24,"seconds":59,"ns":299999998} +{"crc":5562,"length":34,"msg_type":522,"payload":"dAYvELP0Q+Fl6kJAeilAHFaSXsAF/QuEuSkxwAECWwQPBg==","preamble":85,"sender":22963,"tow":271517300,"lat":37.831234129125185,"lon":-122.28650575891325,"height":-17.16298699658093,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":14928,"length":22,"msg_type":526,"payload":"dAYvEPj///8FAAAAFwAAAPEAygIPAg==","preamble":85,"sender":22963,"tow":271517300,"n":-8,"e":5,"d":23,"h_accuracy":241,"v_accuracy":714,"n_sats":15,"flags":2} +{"crc":35256,"length":15,"msg_type":520,"payload":"dAYvEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271517300,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":36943,"length":22,"msg_type":524,"payload":"dAYvEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271517300,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":60799,"length":6,"msg_type":528,"payload":"dAYvEP//","preamble":85,"sender":22963,"tow":271517300,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":847,"length":237,"msg_type":97,"payload":"BQDVFQC0AgC9HwCoAAAAAAAAGQDaDADPHQDVEgDOAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwLNGQHMDAG7HwGZEgHFHQHDAAAABQHCAAAAAAAAAAAAAAAAZAPVYgOzZgOtZQPPXQPPAAAAagO0aAPLYgSrZgTNAAAAZATHZQTEaAS8AAAAagSvIwzHGgyqIgybGAy8GQydDAy5Ewy4Fgy/AAAADA3RAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADA7DAAAAGQ7ACw69GA7MAAAAHw6fIQ6aGRTIGBTXCxTBHxSuDBTOAAAAIRSpAAAA","preamble":85,"sender":22963,"states":[{"mesid":{"sat":5,"code":0},"cn0":213},{"mesid":{"sat":21,"code":0},"cn0":180},{"mesid":{"sat":2,"code":0},"cn0":189},{"mesid":{"sat":31,"code":0},"cn0":168},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":25,"code":0},"cn0":218},{"mesid":{"sat":12,"code":0},"cn0":207},{"mesid":{"sat":29,"code":0},"cn0":213},{"mesid":{"sat":18,"code":0},"cn0":206},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":131,"code":2},"cn0":205},{"mesid":{"sat":25,"code":1},"cn0":204},{"mesid":{"sat":12,"code":1},"cn0":187},{"mesid":{"sat":31,"code":1},"cn0":153},{"mesid":{"sat":18,"code":1},"cn0":197},{"mesid":{"sat":29,"code":1},"cn0":195},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":5,"code":1},"cn0":194},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":100,"code":3},"cn0":213},{"mesid":{"sat":98,"code":3},"cn0":179},{"mesid":{"sat":102,"code":3},"cn0":173},{"mesid":{"sat":101,"code":3},"cn0":207},{"mesid":{"sat":93,"code":3},"cn0":207},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":106,"code":3},"cn0":180},{"mesid":{"sat":104,"code":3},"cn0":203},{"mesid":{"sat":98,"code":4},"cn0":171},{"mesid":{"sat":102,"code":4},"cn0":205},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":100,"code":4},"cn0":199},{"mesid":{"sat":101,"code":4},"cn0":196},{"mesid":{"sat":104,"code":4},"cn0":188},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":106,"code":4},"cn0":175},{"mesid":{"sat":35,"code":12},"cn0":199},{"mesid":{"sat":26,"code":12},"cn0":170},{"mesid":{"sat":34,"code":12},"cn0":155},{"mesid":{"sat":24,"code":12},"cn0":188},{"mesid":{"sat":25,"code":12},"cn0":157},{"mesid":{"sat":12,"code":12},"cn0":185},{"mesid":{"sat":19,"code":12},"cn0":184},{"mesid":{"sat":22,"code":12},"cn0":191},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":12,"code":13},"cn0":209},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":12,"code":14},"cn0":195},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":25,"code":14},"cn0":192},{"mesid":{"sat":11,"code":14},"cn0":189},{"mesid":{"sat":24,"code":14},"cn0":204},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":31,"code":14},"cn0":159},{"mesid":{"sat":33,"code":14},"cn0":154},{"mesid":{"sat":25,"code":20},"cn0":200},{"mesid":{"sat":24,"code":20},"cn0":215},{"mesid":{"sat":11,"code":20},"cn0":193},{"mesid":{"sat":31,"code":20},"cn0":174},{"mesid":{"sat":12,"code":20},"cn0":206},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":33,"code":20},"cn0":169},{"mesid":{"sat":0,"code":0},"cn0":0}]} +{"crc":37566,"length":11,"msg_type":258,"payload":"MgjYBi8QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271517400,"ns_residual":0,"flags":1} +{"crc":19457,"length":16,"msg_type":259,"payload":"EdgGLxDkBwMZAxg7/oPXFw==","preamble":85,"sender":22963,"flags":17,"tow":271517400,"year":2020,"month":3,"day":25,"hours":3,"minutes":24,"seconds":59,"ns":399999998} +{"crc":25589,"length":34,"msg_type":522,"payload":"2AYvEFldbuFl6kJAQ5sfHFaSXsCQDdH4zicxwAECWwQPBg==","preamble":85,"sender":22963,"tow":271517400,"lat":37.831234148873314,"lon":-122.28650572859355,"height":-17.15550189117272,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":18934,"length":22,"msg_type":526,"payload":"2AYvEAcAAAD/////FQAAAPEAygIPAg==","preamble":85,"sender":22963,"tow":271517400,"n":7,"e":-1,"d":21,"h_accuracy":241,"v_accuracy":714,"n_sats":15,"flags":2} +{"crc":64585,"length":15,"msg_type":520,"payload":"2AYvEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271517400,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":47509,"length":22,"msg_type":524,"payload":"2AYvEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271517400,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":1972,"length":6,"msg_type":528,"payload":"2AYvEP//","preamble":85,"sender":22963,"tow":271517400,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":49809,"length":9,"msg_type":117,"payload":"/wAAAAAAAAAA","preamble":85,"sender":22963,"mask":255,"l1ca_bias":0,"l1p_bias":0,"l2ca_bias":0,"l2p_bias":0} +{"crc":3605,"length":11,"msg_type":258,"payload":"Mgg8By8QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271517500,"ns_residual":0,"flags":1} +{"crc":10126,"length":16,"msg_type":259,"payload":"ETwHLxDkBwMZAxg7/mTNHQ==","preamble":85,"sender":22963,"flags":17,"tow":271517500,"year":2020,"month":3,"day":25,"hours":3,"minutes":24,"seconds":59,"ns":499999998} +{"crc":4015,"length":34,"msg_type":522,"payload":"PAcvEDcXjuFl6kJAZC8SHFaSXsBmHN5fzSQxwAECWwQPBg==","preamble":85,"sender":22963,"tow":271517500,"lat":37.831234163646904,"lon":-122.28650571609393,"height":-17.143758765913297,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":42456,"length":22,"msg_type":526,"payload":"PAcvEAEAAAD1////5f////EAygIPAg==","preamble":85,"sender":22963,"tow":271517500,"n":1,"e":-11,"d":-27,"h_accuracy":241,"v_accuracy":714,"n_sats":15,"flags":2} +{"crc":65429,"length":15,"msg_type":520,"payload":"PAcvEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271517500,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":52800,"length":22,"msg_type":524,"payload":"PAcvEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271517500,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":8316,"length":6,"msg_type":528,"payload":"PAcvEP//","preamble":85,"sender":22963,"tow":271517500,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":22345,"length":11,"msg_type":258,"payload":"MgigBy8QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271517600,"ns_residual":0,"flags":1} +{"crc":50309,"length":16,"msg_type":259,"payload":"EaAHLxDkBwMZAxg7/kXDIw==","preamble":85,"sender":22963,"flags":17,"tow":271517600,"year":2020,"month":3,"day":25,"hours":3,"minutes":24,"seconds":59,"ns":599999998} +{"crc":13050,"length":34,"msg_type":522,"payload":"oAcvEGhGtuFl6kJAwAcAHFaSXsC7BY9rDiMxwAECWwQPBg==","preamble":85,"sender":22963,"tow":271517600,"lat":37.831234182359196,"lon":-122.28650569918591,"height":-17.13693878404386,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":19995,"length":22,"msg_type":526,"payload":"oAcvEAMAAAD9////AgAAAPEAygIPAg==","preamble":85,"sender":22963,"tow":271517600,"n":3,"e":-3,"d":2,"h_accuracy":241,"v_accuracy":714,"n_sats":15,"flags":2} +{"crc":23034,"length":15,"msg_type":520,"payload":"oAcvEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271517600,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":12401,"length":22,"msg_type":524,"payload":"oAcvEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271517600,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":58683,"length":6,"msg_type":528,"payload":"oAcvEP//","preamble":85,"sender":22963,"tow":271517600,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":2602,"length":11,"msg_type":258,"payload":"MggECC8QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271517700,"ns_residual":0,"flags":1} +{"crc":35263,"length":16,"msg_type":259,"payload":"EQQILxDkBwMZAxg7/ia5KQ==","preamble":85,"sender":22963,"flags":17,"tow":271517700,"year":2020,"month":3,"day":25,"hours":3,"minutes":24,"seconds":59,"ns":699999998} +{"crc":20060,"length":34,"msg_type":522,"payload":"BAgvEDle5uFl6kJAz1ncG1aSXsBO5jzCqCAxwAECWwQPBg==","preamble":85,"sender":22963,"tow":271517700,"lat":37.83123420475426,"lon":-122.28650566595682,"height":-17.127575054042886,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":30651,"length":22,"msg_type":526,"payload":"BAgvEAAAAAAGAAAA6v////EAygIPAg==","preamble":85,"sender":22963,"tow":271517700,"n":0,"e":6,"d":-22,"h_accuracy":241,"v_accuracy":714,"n_sats":15,"flags":2} +{"crc":36899,"length":15,"msg_type":520,"payload":"BAgvEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271517700,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":33278,"length":22,"msg_type":524,"payload":"BAgvEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271517700,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":26443,"length":6,"msg_type":528,"payload":"BAgvEP//","preamble":85,"sender":22963,"tow":271517700,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":11304,"length":34,"msg_type":30583,"payload":"gwIfBy8QHFMxS74AIErkGL1iGZJQ1qjMPAFkQlcf5AqAMA==","preamble":85,"sender":22963,"sid":{"sat":131,"code":2},"tow":271517471,"message_type":28,"data":[83,49,75,190,0,32,74,228,24,189,98,25,146,80,214,168,204,60,1,100,66,87,31,228,10,128,48]} +{"crc":18207,"length":11,"msg_type":258,"payload":"MghoCC8QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271517800,"ns_residual":0,"flags":1} +{"crc":64176,"length":16,"msg_type":259,"payload":"EWgILxDkBwMZAxg7/gevLw==","preamble":85,"sender":22963,"flags":17,"tow":271517800,"year":2020,"month":3,"day":25,"hours":3,"minutes":24,"seconds":59,"ns":799999998} +{"crc":33093,"length":34,"msg_type":522,"payload":"aAgvEN3d+OFl6kJAixa8G1aSXsDt8CiMDx4xwAECWwQPBg==","preamble":85,"sender":22963,"tow":271517800,"lat":37.83123421336834,"lon":-122.28650563590979,"height":-17.117424736018553,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":25145,"length":22,"msg_type":526,"payload":"aAgvEPz///8JAAAA/P////EAygIPAg==","preamble":85,"sender":22963,"tow":271517800,"n":-4,"e":9,"d":-4,"h_accuracy":241,"v_accuracy":714,"n_sats":15,"flags":2} +{"crc":39881,"length":15,"msg_type":520,"payload":"aAgvEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271517800,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":51179,"length":22,"msg_type":524,"payload":"aAgvEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271517800,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":13232,"length":6,"msg_type":528,"payload":"aAgvEP//","preamble":85,"sender":22963,"tow":271517800,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":13563,"length":237,"msg_type":97,"payload":"BQDVFQC1AgC9HwCoAAAAAAAAGQDaDADPHQDVEgDOAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwLNGQHLDAG7HwGYEgHEHQHCAAAABQHBAAAAAAAAAAAAAAAACwPVCQOzFAOtBQPQCgPQAAAABAO0FQPLCQSrFATNAAAACwTHBQTEAAS8AAAABASvIwzIGgyqIgycGAy8GQyeDAy5Ewy4Fgy/AAAADA3RAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADA7DAAAAGQ6/Cw69GA7MAAAAHw6fIQ6ZGRTIGBTXCxTCHxSuDBTOAAAAIRSqAAAA","preamble":85,"sender":22963,"states":[{"mesid":{"sat":5,"code":0},"cn0":213},{"mesid":{"sat":21,"code":0},"cn0":181},{"mesid":{"sat":2,"code":0},"cn0":189},{"mesid":{"sat":31,"code":0},"cn0":168},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":25,"code":0},"cn0":218},{"mesid":{"sat":12,"code":0},"cn0":207},{"mesid":{"sat":29,"code":0},"cn0":213},{"mesid":{"sat":18,"code":0},"cn0":206},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":131,"code":2},"cn0":205},{"mesid":{"sat":25,"code":1},"cn0":203},{"mesid":{"sat":12,"code":1},"cn0":187},{"mesid":{"sat":31,"code":1},"cn0":152},{"mesid":{"sat":18,"code":1},"cn0":196},{"mesid":{"sat":29,"code":1},"cn0":194},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":5,"code":1},"cn0":193},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":11,"code":3},"cn0":213},{"mesid":{"sat":9,"code":3},"cn0":179},{"mesid":{"sat":20,"code":3},"cn0":173},{"mesid":{"sat":5,"code":3},"cn0":208},{"mesid":{"sat":10,"code":3},"cn0":208},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":4,"code":3},"cn0":180},{"mesid":{"sat":21,"code":3},"cn0":203},{"mesid":{"sat":9,"code":4},"cn0":171},{"mesid":{"sat":20,"code":4},"cn0":205},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":11,"code":4},"cn0":199},{"mesid":{"sat":5,"code":4},"cn0":196},{"mesid":{"sat":0,"code":4},"cn0":188},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":4,"code":4},"cn0":175},{"mesid":{"sat":35,"code":12},"cn0":200},{"mesid":{"sat":26,"code":12},"cn0":170},{"mesid":{"sat":34,"code":12},"cn0":156},{"mesid":{"sat":24,"code":12},"cn0":188},{"mesid":{"sat":25,"code":12},"cn0":158},{"mesid":{"sat":12,"code":12},"cn0":185},{"mesid":{"sat":19,"code":12},"cn0":184},{"mesid":{"sat":22,"code":12},"cn0":191},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":12,"code":13},"cn0":209},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":12,"code":14},"cn0":195},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":25,"code":14},"cn0":191},{"mesid":{"sat":11,"code":14},"cn0":189},{"mesid":{"sat":24,"code":14},"cn0":204},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":31,"code":14},"cn0":159},{"mesid":{"sat":33,"code":14},"cn0":153},{"mesid":{"sat":25,"code":20},"cn0":200},{"mesid":{"sat":24,"code":20},"cn0":215},{"mesid":{"sat":11,"code":20},"cn0":194},{"mesid":{"sat":31,"code":20},"cn0":174},{"mesid":{"sat":12,"code":20},"cn0":206},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":33,"code":20},"cn0":170},{"mesid":{"sat":0,"code":0},"cn0":0}]} +{"crc":53239,"length":132,"msg_type":151,"payload":"AgAaHQUAKzUMAFEtFQB9GRkAbUYaAKEBHQChNx8AlQ4EAxUWBQMyIQYDTggJA18OCgNxKQsDmCUMA6oDEwMiBxQDDDEVA5UlDAyUKRMMIyAUDA8CFgxDJBgMgiMZDJ0OGgxnFSIMjhEjDCItCw6LMgwODzwYDmw2GQ6XKR8OVREhDiAP","preamble":85,"sender":22963,"azel":[{"sid":{"sat":2,"code":0},"az":26,"el":29},{"sid":{"sat":5,"code":0},"az":43,"el":53},{"sid":{"sat":12,"code":0},"az":81,"el":45},{"sid":{"sat":21,"code":0},"az":125,"el":25},{"sid":{"sat":25,"code":0},"az":109,"el":70},{"sid":{"sat":26,"code":0},"az":161,"el":1},{"sid":{"sat":29,"code":0},"az":161,"el":55},{"sid":{"sat":31,"code":0},"az":149,"el":14},{"sid":{"sat":4,"code":3},"az":21,"el":22},{"sid":{"sat":5,"code":3},"az":50,"el":33},{"sid":{"sat":6,"code":3},"az":78,"el":8},{"sid":{"sat":9,"code":3},"az":95,"el":14},{"sid":{"sat":10,"code":3},"az":113,"el":41},{"sid":{"sat":11,"code":3},"az":152,"el":37},{"sid":{"sat":12,"code":3},"az":170,"el":3},{"sid":{"sat":19,"code":3},"az":34,"el":7},{"sid":{"sat":20,"code":3},"az":12,"el":49},{"sid":{"sat":21,"code":3},"az":149,"el":37},{"sid":{"sat":12,"code":12},"az":148,"el":41},{"sid":{"sat":19,"code":12},"az":35,"el":32},{"sid":{"sat":20,"code":12},"az":15,"el":2},{"sid":{"sat":22,"code":12},"az":67,"el":36},{"sid":{"sat":24,"code":12},"az":130,"el":35},{"sid":{"sat":25,"code":12},"az":157,"el":14},{"sid":{"sat":26,"code":12},"az":103,"el":21},{"sid":{"sat":34,"code":12},"az":142,"el":17},{"sid":{"sat":35,"code":12},"az":34,"el":45},{"sid":{"sat":11,"code":14},"az":139,"el":50},{"sid":{"sat":12,"code":14},"az":15,"el":60},{"sid":{"sat":24,"code":14},"az":108,"el":54},{"sid":{"sat":25,"code":14},"az":151,"el":41},{"sid":{"sat":31,"code":14},"az":85,"el":17},{"sid":{"sat":33,"code":14},"az":32,"el":15}]} +{"crc":50110,"length":11,"msg_type":258,"payload":"MgjMCC8QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271517900,"ns_residual":0,"flags":1} +{"crc":19333,"length":16,"msg_type":259,"payload":"EcwILxDkBwMZAxg7/uikNQ==","preamble":85,"sender":22963,"flags":17,"tow":271517900,"year":2020,"month":3,"day":25,"hours":3,"minutes":24,"seconds":59,"ns":899999998} +{"crc":24335,"length":34,"msg_type":522,"payload":"zAgvED+4I+Jl6kJAuoSiG1aSXsA16xN/0RoxwAECWwQPBg==","preamble":85,"sender":22963,"tow":271517900,"lat":37.83123423332335,"lon":-122.28650561209625,"height":-17.10475916134165,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":35946,"length":22,"msg_type":526,"payload":"zAgvEAcAAAAEAAAACAAAAPEAygIPAg==","preamble":85,"sender":22963,"tow":271517900,"n":7,"e":4,"d":8,"h_accuracy":241,"v_accuracy":714,"n_sats":15,"flags":2} +{"crc":51581,"length":15,"msg_type":520,"payload":"zAgvEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271517900,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":45202,"length":22,"msg_type":524,"payload":"zAgvEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271517900,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":54329,"length":6,"msg_type":528,"payload":"zAgvEP//","preamble":85,"sender":22963,"tow":271517900,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":54063,"length":249,"msg_type":74,"payload":"MAkvEAAAAAAyCEB/ErQ+mhWXBv1G/zzVDw8FAELhFUVqzEIHu3wIILUPDxUAk6XzRWMbWgduT/ZuvQ8PAgBVvQJJ7WisB+Zy/t2oDw8fAEGNJj37TW0GfJb74NoPDxkAGXC2QAAlzQa/ZfTGzw8PDABG588+ZwKaBjTLBUjVDw8dAG2NJj1MDgIF0Y/8jMwPDxkB0W+2QIq8TAWb9va7uw8PDAHXvAJJg7X6BUfK/kyXDw8fAfTmzz714yQFJ4QEFMIPDx0BORK0PpacIgULbv+pwQ8PBQHS2fs+TDi7Bi6LBFPVDw8LA+Sd10TZLloH7cbuhbMPDwkD","preamble":85,"sender":22963,"header":{"t":{"tow":271518000,"ns_residual":0,"wn":2098},"n_obs":64},"obs":[{"P":1051988607,"L":{"i":110564762,"f":253},"D":{"i":-186,"f":60},"cn0":213,"lock":15,"flags":15,"sid":{"sat":5,"code":0}},{"P":1159061826,"L":{"i":121818218,"f":187},"D":{"i":2172,"f":32},"cn0":181,"lock":15,"flags":15,"sid":{"sat":21,"code":0}},{"P":1173595539,"L":{"i":123345763,"f":110},"D":{"i":-2481,"f":110},"cn0":189,"lock":15,"flags":15,"sid":{"sat":2,"code":0}},{"P":1224916309,"L":{"i":128739565,"f":230},"D":{"i":-398,"f":221},"cn0":168,"lock":15,"flags":15,"sid":{"sat":31,"code":0}},{"P":1025936705,"L":{"i":107826683,"f":124},"D":{"i":-1130,"f":224},"cn0":218,"lock":15,"flags":15,"sid":{"sat":25,"code":0}},{"P":1085698073,"L":{"i":114107648,"f":191},"D":{"i":-2971,"f":198},"cn0":207,"lock":15,"flags":15,"sid":{"sat":12,"code":0}},{"P":1053812550,"L":{"i":110756455,"f":52},"D":{"i":1483,"f":72},"cn0":213,"lock":15,"flags":15,"sid":{"sat":29,"code":0}},{"P":1025936749,"L":{"i":84020812,"f":209},"D":{"i":-881,"f":140},"cn0":204,"lock":15,"flags":15,"sid":{"sat":25,"code":1}},{"P":1085698001,"L":{"i":88915082,"f":155},"D":{"i":-2314,"f":187},"cn0":187,"lock":15,"flags":15,"sid":{"sat":12,"code":1}},{"P":1224916183,"L":{"i":100316547,"f":71},"D":{"i":-310,"f":76},"cn0":151,"lock":15,"flags":15,"sid":{"sat":31,"code":1}},{"P":1053812468,"L":{"i":86303733,"f":39},"D":{"i":1156,"f":20},"cn0":194,"lock":15,"flags":15,"sid":{"sat":29,"code":1}},{"P":1051988537,"L":{"i":86154390,"f":11},"D":{"i":-146,"f":169},"cn0":193,"lock":15,"flags":15,"sid":{"sat":5,"code":1}},{"P":1056692690,"L":{"i":112932940,"f":46},"D":{"i":1163,"f":83},"cn0":213,"lock":15,"flags":15,"sid":{"sat":11,"code":3}},{"P":1154981348,"L":{"i":123350745,"f":237},"D":{"i":-4410,"f":133},"cn0":179,"lock":15,"flags":15,"sid":{"sat":9,"code":3}}]} +{"crc":24468,"length":249,"msg_type":74,"payload":"MAkvEAAAAAAyCEG5AC49MAmLBoJF+3auDw8UA+YVCECbgNgGR5MILdAPDwUD0fRmPlQcpwalGfQr0A8PCgP6AQhDYdItBwfY+r+0Dw8EA0DJKT94jsIGglUGZMsPDxUDX57XRJbrtwW1m/Jqqw8PCQQjAi49Zc4WBeVS/ELNDw8UBNTa+z5FSDwFlYkDQccPDwsE/xYIQLUOUwV1qgbmww8PBQQdAwhDs2qVBXb++6yvDw8EBFAKlkWCPz8H9yP6rMgPDyMMxxD1SevJswdOP/Rvqg8PGgyLSBVMiHfsB9DGCLGcDw8iDCgyoUdXu3UHw+f6mLwPDxgM","preamble":85,"sender":22963,"header":{"t":{"tow":271518000,"ns_residual":0,"wn":2098},"n_obs":65},"obs":[{"P":1026425017,"L":{"i":109775152,"f":130},"D":{"i":-1211,"f":118},"cn0":174,"lock":15,"flags":15,"sid":{"sat":20,"code":3}},{"P":1074271718,"L":{"i":114851995,"f":71},"D":{"i":2195,"f":45},"cn0":208,"lock":15,"flags":15,"sid":{"sat":5,"code":3}},{"P":1046934737,"L":{"i":111615060,"f":165},"D":{"i":-3047,"f":43},"cn0":208,"lock":15,"flags":15,"sid":{"sat":10,"code":3}},{"P":1124598266,"L":{"i":120443489,"f":7},"D":{"i":-1320,"f":191},"cn0":180,"lock":15,"flags":15,"sid":{"sat":4,"code":3}},{"P":1059703104,"L":{"i":113413752,"f":130},"D":{"i":1621,"f":100},"cn0":203,"lock":15,"flags":15,"sid":{"sat":21,"code":3}},{"P":1154981471,"L":{"i":95939478,"f":181},"D":{"i":-3429,"f":106},"cn0":171,"lock":15,"flags":15,"sid":{"sat":9,"code":4}},{"P":1026425379,"L":{"i":85380709,"f":229},"D":{"i":-942,"f":66},"cn0":205,"lock":15,"flags":15,"sid":{"sat":20,"code":4}},{"P":1056692948,"L":{"i":87836741,"f":149},"D":{"i":905,"f":65},"cn0":199,"lock":15,"flags":15,"sid":{"sat":11,"code":4}},{"P":1074271999,"L":{"i":89329333,"f":117},"D":{"i":1706,"f":230},"cn0":195,"lock":15,"flags":15,"sid":{"sat":5,"code":4}},{"P":1124598557,"L":{"i":93678259,"f":118},"D":{"i":-1026,"f":172},"cn0":175,"lock":15,"flags":15,"sid":{"sat":4,"code":4}},{"P":1167460944,"L":{"i":121585538,"f":247},"D":{"i":-1501,"f":172},"cn0":200,"lock":15,"flags":15,"sid":{"sat":35,"code":12}},{"P":1240797383,"L":{"i":129223147,"f":78},"D":{"i":-3009,"f":111},"cn0":170,"lock":15,"flags":15,"sid":{"sat":26,"code":12}},{"P":1276463243,"L":{"i":132937608,"f":208},"D":{"i":2246,"f":177},"cn0":156,"lock":15,"flags":15,"sid":{"sat":34,"code":12}},{"P":1201746472,"L":{"i":125156183,"f":195},"D":{"i":-1305,"f":152},"cn0":188,"lock":15,"flags":15,"sid":{"sat":24,"code":12}}]} +{"crc":16304,"length":249,"msg_type":74,"payload":"MAkvEAAAAAAyCELzshJNy9sGCKIsBVSeDw8ZDEQETkUsvzcHuUoGTbkPDwwMVWdDR8D2awde3P6+uA8PEwyKsV1HqbNuB5RSCS+/Dw8WDAYETkWOy5QFr9wEetEPDwwNfZoHQq2U8AaP+vugwg8PDA7UbSBLklflBxI8BPS/Dw8ZDmyVIEczvHkH9BUEyL0PDwsOAJwoQ6X0Dgc3LfmpzA8PGA5pjElRLRmLCAqZ852fDw8fDsGX91HxY50I8aT3cJkPDyEOxm0gSw3SDAbtPwOnyA8PGRQcnihDKI1oBYvF+pXXDw8YFLWUIEdAXroFMyEDlMIPDwsU","preamble":85,"sender":22963,"header":{"t":{"tow":271518000,"ns_residual":0,"wn":2098},"n_obs":66},"obs":[{"P":1293071091,"L":{"i":134667211,"f":162},"D":{"i":1324,"f":84},"cn0":158,"lock":15,"flags":15,"sid":{"sat":25,"code":12}},{"P":1162740804,"L":{"i":121093932,"f":185},"D":{"i":1610,"f":77},"cn0":185,"lock":15,"flags":15,"sid":{"sat":12,"code":12}},{"P":1195599701,"L":{"i":124516032,"f":94},"D":{"i":-292,"f":190},"cn0":184,"lock":15,"flags":15,"sid":{"sat":19,"code":12}},{"P":1197322634,"L":{"i":124695465,"f":148},"D":{"i":2386,"f":47},"cn0":191,"lock":15,"flags":15,"sid":{"sat":22,"code":12}},{"P":1162740742,"L":{"i":93637518,"f":175},"D":{"i":1244,"f":122},"cn0":209,"lock":15,"flags":15,"sid":{"sat":12,"code":13}},{"P":1107794557,"L":{"i":116429997,"f":143},"D":{"i":-1030,"f":160},"cn0":194,"lock":15,"flags":15,"sid":{"sat":12,"code":14}},{"P":1260416468,"L":{"i":132470674,"f":18},"D":{"i":1084,"f":244},"cn0":191,"lock":15,"flags":15,"sid":{"sat":25,"code":14}},{"P":1193317740,"L":{"i":125418547,"f":244},"D":{"i":1045,"f":200},"cn0":189,"lock":15,"flags":15,"sid":{"sat":11,"code":14}},{"P":1126734848,"L":{"i":118420645,"f":55},"D":{"i":-1747,"f":169},"cn0":204,"lock":15,"flags":15,"sid":{"sat":24,"code":14}},{"P":1363774569,"L":{"i":143333677,"f":10},"D":{"i":-3175,"f":157},"cn0":159,"lock":15,"flags":15,"sid":{"sat":31,"code":14}},{"P":1375180737,"L":{"i":144532465,"f":241},"D":{"i":-2140,"f":112},"cn0":153,"lock":15,"flags":15,"sid":{"sat":33,"code":14}},{"P":1260416454,"L":{"i":101503501,"f":237},"D":{"i":831,"f":167},"cn0":200,"lock":15,"flags":15,"sid":{"sat":25,"code":20}},{"P":1126735388,"L":{"i":90737960,"f":139},"D":{"i":-1339,"f":149},"cn0":215,"lock":15,"flags":15,"sid":{"sat":24,"code":20}},{"P":1193317557,"L":{"i":96099904,"f":51},"D":{"i":801,"f":148},"cn0":194,"lock":15,"flags":15,"sid":{"sat":11,"code":20}}]} +{"crc":37685,"length":62,"msg_type":74,"payload":"MAkvEAAAAAAyCEO5jElRSNSLBrh/9s2uDw8fFOiZB0LSRlEFIuv8hc4PDwwUV5f3UX7YmQY4mPkqqQ8PIRQ=","preamble":85,"sender":22963,"header":{"t":{"tow":271518000,"ns_residual":0,"wn":2098},"n_obs":67},"obs":[{"P":1363774649,"L":{"i":109827144,"f":184},"D":{"i":-2433,"f":205},"cn0":174,"lock":15,"flags":15,"sid":{"sat":31,"code":20}},{"P":1107794408,"L":{"i":89212626,"f":34},"D":{"i":-789,"f":133},"cn0":206,"lock":15,"flags":15,"sid":{"sat":12,"code":20}},{"P":1375180631,"L":{"i":110745726,"f":56},"D":{"i":-1640,"f":42},"cn0":169,"lock":15,"flags":15,"sid":{"sat":33,"code":20}}]} +{"crc":49809,"length":9,"msg_type":117,"payload":"/wAAAAAAAAAA","preamble":85,"sender":22963,"mask":255,"l1ca_bias":0,"l1p_bias":0,"l2ca_bias":0,"l2p_bias":0} +{"crc":9492,"length":11,"msg_type":258,"payload":"MggwCS8QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271518000,"ns_residual":0,"flags":1} +{"crc":22324,"length":16,"msg_type":259,"payload":"ETAJLxDkBwMZAxg7/smaOw==","preamble":85,"sender":22963,"flags":17,"tow":271518000,"year":2020,"month":3,"day":25,"hours":3,"minutes":24,"seconds":59,"ns":999999998} +{"crc":58537,"length":34,"msg_type":522,"payload":"MAkvEJwmSOJl6kJAw7GlG1aSXsC13tnrYxcxwAECWwQPBg==","preamble":85,"sender":22963,"tow":271518000,"lat":37.831234250287906,"lon":-122.28650561505405,"height":-17.09136842793551,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":55399,"length":22,"msg_type":526,"payload":"MAkvEAEAAAD3////AwAAAPEAygIPAg==","preamble":85,"sender":22963,"tow":271518000,"n":1,"e":-9,"d":3,"h_accuracy":241,"v_accuracy":714,"n_sats":15,"flags":2} +{"crc":41838,"length":15,"msg_type":520,"payload":"MAkvEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271518000,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":9378,"length":22,"msg_type":524,"payload":"MAkvEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271518000,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":58423,"length":6,"msg_type":528,"payload":"MAkvEP//","preamble":85,"sender":22963,"tow":271518000,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":40942,"length":4,"msg_type":65535,"payload":"AAUCgA==","preamble":85,"sender":22963,"flags":2147616000} +{"crc":2168,"length":24,"msg_type":72,"payload":"UO0a3iqORMHK1UJhIkRQwc9nFIPvrk1B","preamble":85,"sender":22963,"x":-2694229.735196747,"y":-4264073.519704292,"z":3890655.0240602265} +{"crc":47991,"length":26,"msg_type":23,"payload":"bWFpbgAAAAAAAAAAAAAAAAAAAAAAAAx1AAA=","preamble":85,"sender":22963,"name":"main\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":0,"stack_free":29964} +{"crc":5686,"length":26,"msg_type":23,"payload":"aWRsZQAAAAAAAAAAAAAAAAAAAAAZAHwAAAA=","preamble":85,"sender":22963,"name":"idle\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":25,"stack_free":124} +{"crc":9530,"length":26,"msg_type":23,"payload":"cnBtc2cAAAAAAAAAAAAAAAAAAAABACwOAAA=","preamble":85,"sender":22963,"name":"rpmsg\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":1,"stack_free":3628} +{"crc":51784,"length":26,"msg_type":23,"payload":"U0JQAAAAAAAAAAAAAAAAAAAAAAAAAPz/AAA=","preamble":85,"sender":22963,"name":"SBP\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":0,"stack_free":65532} +{"crc":33651,"length":26,"msg_type":23,"payload":"TkFQAAAAAAAAAAAAAAAAAAAAAAAAAASAAAA=","preamble":85,"sender":22963,"name":"NAP\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":0,"stack_free":32772} +{"crc":29877,"length":26,"msg_type":23,"payload":"bWFuYWdlIFBWAAAAAAAAAAAAAAAAACQEAAA=","preamble":85,"sender":22963,"name":"manage PV\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":0,"stack_free":1060} +{"crc":14252,"length":26,"msg_type":23,"payload":"SU1VAAAAAAAAAAAAAAAAAAAAAAAAAPQHAAA=","preamble":85,"sender":22963,"name":"IMU\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":0,"stack_free":2036} +{"crc":18976,"length":26,"msg_type":23,"payload":"SU1VIGF1eAAAAAAAAAAAAAAAAAAAAEwIAAA=","preamble":85,"sender":22963,"name":"IMU aux\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":0,"stack_free":2124} +{"crc":26120,"length":26,"msg_type":23,"payload":"bmRiAAAAAAAAAAAAAAAAAAAAAAAAAFAMAAA=","preamble":85,"sender":22963,"name":"ndb\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":0,"stack_free":3152} +{"crc":60931,"length":26,"msg_type":23,"payload":"TkFQIFRyYWNraW5nAAAAAAAAAAAvAdR3AAA=","preamble":85,"sender":22963,"name":"NAP Tracking\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":303,"stack_free":30676} +{"crc":40082,"length":26,"msg_type":23,"payload":"ZGVjb2RlAAAAAAAAAAAAAAAAAAAIANQGAAA=","preamble":85,"sender":22963,"name":"decode\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":8,"stack_free":1748} +{"crc":23507,"length":26,"msg_type":23,"payload":"bWFuYWdlIGFjcQAAAAAAAAAAAADyAaR3AAA=","preamble":85,"sender":22963,"name":"manage acq\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":498,"stack_free":30628} +{"crc":58531,"length":26,"msg_type":23,"payload":"c3lzdGVtIG1vbml0b3IAAAAAAAAAACwGAAA=","preamble":85,"sender":22963,"name":"system monitor\u0000\u0000\u0000\u0000\u0000\u0000","cpu":0,"stack_free":1580} +{"crc":44438,"length":26,"msg_type":23,"payload":"V2F0Y2hkb2cAAAAAAAAAAAAAAAAAAOQDAAA=","preamble":85,"sender":22963,"name":"Watchdog\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":0,"stack_free":996} +{"crc":61599,"length":26,"msg_type":23,"payload":"c3RhcmxpbmcAAAAAAAAAAAAAAACWAPz/AAA=","preamble":85,"sender":22963,"name":"starling\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":150,"stack_free":65532} +{"crc":11833,"length":26,"msg_type":23,"payload":"bWVfY2FsY19wdnQAAAAAAAAAAAAKAIwjAAA=","preamble":85,"sender":22963,"name":"me_calc_pvt\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":10,"stack_free":9100} +{"crc":38576,"length":26,"msg_type":23,"payload":"UFBTAAAAAAAAAAAAAAAAAAAAAAAAAEgHAAA=","preamble":85,"sender":22963,"name":"PPS\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":0,"stack_free":1864} +{"crc":50933,"length":26,"msg_type":23,"payload":"c3BlY3RydW0gYW5hbHl6ZXIAAAAAANQPAAA=","preamble":85,"sender":22963,"name":"spectrum analyzer\u0000\u0000\u0000","cpu":0,"stack_free":4052} +{"crc":34043,"length":10,"msg_type":181,"payload":"7BbcA/QGURUJFg==","preamble":85,"sender":22963,"dev_vin":5868,"cpu_vint":988,"cpu_vaux":1780,"cpu_temperature":5457,"fe_temperature":5641} +{"crc":41397,"length":11,"msg_type":258,"payload":"MgiUCS8QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271518100,"ns_residual":0,"flags":1} +{"crc":29935,"length":16,"msg_type":259,"payload":"EZQJLxDkBwMZAxkA/uD1BQ==","preamble":85,"sender":22963,"flags":17,"tow":271518100,"year":2020,"month":3,"day":25,"hours":3,"minutes":25,"seconds":0,"ns":99999998} +{"crc":30374,"length":34,"msg_type":522,"payload":"lAkvEIMTYeJl6kJAh1eoG1aSXsD+qebnaBMxwAECWwQPBg==","preamble":85,"sender":22963,"tow":271518100,"lat":37.8312342618947,"lon":-122.28650561751975,"height":-17.075819486441098,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":35811,"length":22,"msg_type":526,"payload":"lAkvEAAAAAD+////9v////EAygIPAg==","preamble":85,"sender":22963,"tow":271518100,"n":0,"e":-2,"d":-10,"h_accuracy":241,"v_accuracy":714,"n_sats":15,"flags":2} +{"crc":61914,"length":15,"msg_type":520,"payload":"lAkvEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271518100,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":21467,"length":22,"msg_type":524,"payload":"lAkvEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271518100,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":958,"length":6,"msg_type":528,"payload":"lAkvEP//","preamble":85,"sender":22963,"tow":271518100,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":60544,"length":11,"msg_type":258,"payload":"Mgj4CS8QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271518200,"ns_residual":0,"flags":1} +{"crc":3905,"length":16,"msg_type":259,"payload":"EfgJLxDkBwMZAxkA/sHrCw==","preamble":85,"sender":22963,"flags":17,"tow":271518200,"year":2020,"month":3,"day":25,"hours":3,"minutes":25,"seconds":0,"ns":199999998} +{"crc":44104,"length":34,"msg_type":522,"payload":"+AkvEEUEj+Jl6kJAnNSkG1aSXsCJ/htLTBAxwAECWwQPBg==","preamble":85,"sender":22963,"tow":271518200,"lat":37.831234283287394,"lon":-122.2865056142495,"height":-17.063664144835034,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":62151,"length":22,"msg_type":526,"payload":"+AkvEAUAAAD/////AwAAAPEAygIPAg==","preamble":85,"sender":22963,"tow":271518200,"n":5,"e":-1,"d":3,"h_accuracy":241,"v_accuracy":714,"n_sats":15,"flags":2} +{"crc":64048,"length":15,"msg_type":520,"payload":"+AkvEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271518200,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":5582,"length":22,"msg_type":524,"payload":"+AkvEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271518200,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":22341,"length":6,"msg_type":528,"payload":"+AkvEP//","preamble":85,"sender":22963,"tow":271518200,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":41044,"length":11,"msg_type":258,"payload":"MghcCi8QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271518300,"ns_residual":0,"flags":1} +{"crc":20189,"length":16,"msg_type":259,"payload":"EVwKLxDkBwMZAxkA/qLhEQ==","preamble":85,"sender":22963,"flags":17,"tow":271518300,"year":2020,"month":3,"day":25,"hours":3,"minutes":25,"seconds":0,"ns":299999998} +{"crc":58391,"length":34,"msg_type":522,"payload":"XAovEOyKveJl6kJAv8+WG1aSXsD0SJdszwwxwAECWwQPBg==","preamble":85,"sender":22963,"tow":271518300,"lat":37.831234304952744,"lon":-122.2865056011933,"height":-17.05004004186135,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":38364,"length":22,"msg_type":526,"payload":"XAovEAQAAAD+////9f////EAygIPAg==","preamble":85,"sender":22963,"tow":271518300,"n":4,"e":-2,"d":-11,"h_accuracy":241,"v_accuracy":714,"n_sats":15,"flags":2} +{"crc":9511,"length":15,"msg_type":520,"payload":"XAovEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271518300,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":3212,"length":22,"msg_type":524,"payload":"XAovEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271518300,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":24094,"length":6,"msg_type":528,"payload":"XAovEP//","preamble":85,"sender":22963,"tow":271518300,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":36601,"length":237,"msg_type":97,"payload":"BQDVFQC0AgC8HwCoAAAAAAAAGQDaDADPHQDVEgDOAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwLNGQHLDAG7HwGYEgHEHQHDAAAABQHBAAAAAAAAAAAAAAAAZAPVYgOyZgOtZQPQXQPQAAAAagO0aAPLYgSqZgTNXQRMZATHZQTDaAS8AAAAagSvIwzIGgyqIgycGAy8GQyeDAy5Ewy5Fgy/AAAADA3RAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADA7CAAAAGQ6/Cw68GA7MAAAAHw6eIQ6aGRTJGBTXCxTCHxSuDBTOAAAAIRSpAAAA","preamble":85,"sender":22963,"states":[{"mesid":{"sat":5,"code":0},"cn0":213},{"mesid":{"sat":21,"code":0},"cn0":180},{"mesid":{"sat":2,"code":0},"cn0":188},{"mesid":{"sat":31,"code":0},"cn0":168},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":25,"code":0},"cn0":218},{"mesid":{"sat":12,"code":0},"cn0":207},{"mesid":{"sat":29,"code":0},"cn0":213},{"mesid":{"sat":18,"code":0},"cn0":206},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":131,"code":2},"cn0":205},{"mesid":{"sat":25,"code":1},"cn0":203},{"mesid":{"sat":12,"code":1},"cn0":187},{"mesid":{"sat":31,"code":1},"cn0":152},{"mesid":{"sat":18,"code":1},"cn0":196},{"mesid":{"sat":29,"code":1},"cn0":195},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":5,"code":1},"cn0":193},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":100,"code":3},"cn0":213},{"mesid":{"sat":98,"code":3},"cn0":178},{"mesid":{"sat":102,"code":3},"cn0":173},{"mesid":{"sat":101,"code":3},"cn0":208},{"mesid":{"sat":93,"code":3},"cn0":208},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":106,"code":3},"cn0":180},{"mesid":{"sat":104,"code":3},"cn0":203},{"mesid":{"sat":98,"code":4},"cn0":170},{"mesid":{"sat":102,"code":4},"cn0":205},{"mesid":{"sat":93,"code":4},"cn0":76},{"mesid":{"sat":100,"code":4},"cn0":199},{"mesid":{"sat":101,"code":4},"cn0":195},{"mesid":{"sat":104,"code":4},"cn0":188},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":106,"code":4},"cn0":175},{"mesid":{"sat":35,"code":12},"cn0":200},{"mesid":{"sat":26,"code":12},"cn0":170},{"mesid":{"sat":34,"code":12},"cn0":156},{"mesid":{"sat":24,"code":12},"cn0":188},{"mesid":{"sat":25,"code":12},"cn0":158},{"mesid":{"sat":12,"code":12},"cn0":185},{"mesid":{"sat":19,"code":12},"cn0":185},{"mesid":{"sat":22,"code":12},"cn0":191},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":12,"code":13},"cn0":209},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":12,"code":14},"cn0":194},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":25,"code":14},"cn0":191},{"mesid":{"sat":11,"code":14},"cn0":188},{"mesid":{"sat":24,"code":14},"cn0":204},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":31,"code":14},"cn0":158},{"mesid":{"sat":33,"code":14},"cn0":154},{"mesid":{"sat":25,"code":20},"cn0":201},{"mesid":{"sat":24,"code":20},"cn0":215},{"mesid":{"sat":11,"code":20},"cn0":194},{"mesid":{"sat":31,"code":20},"cn0":174},{"mesid":{"sat":12,"code":20},"cn0":206},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":33,"code":20},"cn0":169},{"mesid":{"sat":0,"code":0},"cn0":0}]} +{"crc":63752,"length":11,"msg_type":258,"payload":"MgjACi8QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271518400,"ns_residual":0,"flags":1} +{"crc":38577,"length":16,"msg_type":259,"payload":"EcAKLxDkBwMZAxkA/oPXFw==","preamble":85,"sender":22963,"flags":17,"tow":271518400,"year":2020,"month":3,"day":25,"hours":3,"minutes":25,"seconds":0,"ns":399999998} +{"crc":47221,"length":34,"msg_type":522,"payload":"wAovEJTxyeJl6kJA6vKEG1aSXsDJLz8KlAkxwAECWwQPBg==","preamble":85,"sender":22963,"tow":271518400,"lat":37.83123431072741,"lon":-122.28650558455743,"height":-17.03741516153949,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":60020,"length":22,"msg_type":526,"payload":"wAovEPn///8BAAAA6f////EAygIPAg==","preamble":85,"sender":22963,"tow":271518400,"n":-7,"e":1,"d":-23,"h_accuracy":241,"v_accuracy":714,"n_sats":15,"flags":2} +{"crc":33608,"length":15,"msg_type":520,"payload":"wAovEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271518400,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":62141,"length":22,"msg_type":524,"payload":"wAovEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271518400,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":39769,"length":6,"msg_type":528,"payload":"wAovEP//","preamble":85,"sender":22963,"tow":271518400,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":49809,"length":9,"msg_type":117,"payload":"/wAAAAAAAAAA","preamble":85,"sender":22963,"mask":255,"l1ca_bias":0,"l1p_bias":0,"l2ca_bias":0,"l2p_bias":0} +{"crc":26019,"length":11,"msg_type":258,"payload":"MggkCy8QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271518500,"ns_residual":0,"flags":1} +{"crc":64830,"length":16,"msg_type":259,"payload":"ESQLLxDkBwMZAxkA/mTNHQ==","preamble":85,"sender":22963,"flags":17,"tow":271518500,"year":2020,"month":3,"day":25,"hours":3,"minutes":25,"seconds":0,"ns":499999998} +{"crc":50724,"length":34,"msg_type":522,"payload":"JAsvEIGC7eJl6kJA56VgG1aSXsBa1N0dAgcxwAECWwQPBg==","preamble":85,"sender":22963,"tow":271518500,"lat":37.831234327289174,"lon":-122.28650555074965,"height":-17.02737604776153,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":48210,"length":22,"msg_type":526,"payload":"JAsvEP3///8LAAAAEQAAAPEAygIPAg==","preamble":85,"sender":22963,"tow":271518500,"n":-3,"e":11,"d":17,"h_accuracy":241,"v_accuracy":714,"n_sats":15,"flags":2} +{"crc":32916,"length":15,"msg_type":520,"payload":"JAsvEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271518500,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":34152,"length":22,"msg_type":524,"payload":"JAsvEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271518500,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":48273,"length":6,"msg_type":528,"payload":"JAsvEP//","preamble":85,"sender":22963,"tow":271518500,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":51453,"length":11,"msg_type":258,"payload":"MgiICy8QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271518600,"ns_residual":0,"flags":1} +{"crc":52651,"length":16,"msg_type":259,"payload":"EYgLLxDkBwMZAxkA/kXDIw==","preamble":85,"sender":22963,"flags":17,"tow":271518600,"year":2020,"month":3,"day":25,"hours":3,"minutes":25,"seconds":0,"ns":599999998} +{"crc":7575,"length":34,"msg_type":522,"payload":"iAsvEAZIBONl6kJA0nRMG1aSXsDH2h6nbgMxwAECWwQPBg==","preamble":85,"sender":22963,"tow":271518600,"lat":37.83123433789301,"lon":-122.28650553194464,"height":-17.01340717795645,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":55593,"length":22,"msg_type":526,"payload":"iAsvEAUAAAD+////8v////EAygIPAg==","preamble":85,"sender":22963,"tow":271518600,"n":5,"e":-2,"d":-14,"h_accuracy":241,"v_accuracy":714,"n_sats":15,"flags":2} +{"crc":62821,"length":15,"msg_type":520,"payload":"iAsvEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271518600,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":44210,"length":22,"msg_type":524,"payload":"iAsvEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271518600,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":22106,"length":6,"msg_type":528,"payload":"iAsvEP//","preamble":85,"sender":22963,"tow":271518600,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":44087,"length":11,"msg_type":258,"payload":"MgjsCy8QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271518700,"ns_residual":0,"flags":1} +{"crc":26087,"length":16,"msg_type":259,"payload":"EewLLxDkBwMZAxkA/ia5KQ==","preamble":85,"sender":22963,"flags":17,"tow":271518700,"year":2020,"month":3,"day":25,"hours":3,"minutes":25,"seconds":0,"ns":699999998} +{"crc":9755,"length":34,"msg_type":522,"payload":"7AsvEK+2LONl6kJA1z08G1aSXsA4rFckg/8wwAECWwQPBg==","preamble":85,"sender":22963,"tow":271518700,"lat":37.83123435672075,"lon":-122.28650551684346,"height":-16.998094817547297,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":58411,"length":22,"msg_type":526,"payload":"7AsvEAUAAAAAAAAA2v////EAygIPAg==","preamble":85,"sender":22963,"tow":271518700,"n":5,"e":0,"d":-38,"h_accuracy":241,"v_accuracy":714,"n_sats":15,"flags":2} +{"crc":55754,"length":15,"msg_type":520,"payload":"7AsvEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271518700,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":46084,"length":22,"msg_type":524,"payload":"7AsvEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271518700,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":4067,"length":6,"msg_type":528,"payload":"7AsvEP//","preamble":85,"sender":22963,"tow":271518700,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":32160,"length":34,"msg_type":30583,"payload":"gwINCy8QAf////8AAAAAAAAAAAAAAAAoQAAAAAAAAAAAEA==","preamble":85,"sender":22963,"sid":{"sat":131,"code":2},"tow":271518477,"message_type":1,"data":[255,255,255,255,0,0,0,0,0,0,0,0,0,0,0,0,40,64,0,0,0,0,0,0,0,0,16]} +{"crc":38287,"length":11,"msg_type":258,"payload":"MghQDC8QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271518800,"ns_residual":0,"flags":1} +{"crc":22143,"length":16,"msg_type":259,"payload":"EVAMLxDkBwMZAxkA/gevLw==","preamble":85,"sender":22963,"flags":17,"tow":271518800,"year":2020,"month":3,"day":25,"hours":3,"minutes":25,"seconds":0,"ns":799999998} +{"crc":21182,"length":34,"msg_type":522,"payload":"UAwvEGb3SuNl6kJASec4G1aSXsAQXR8xZ/4wwAECWwQPBg==","preamble":85,"sender":22963,"tow":271518800,"lat":37.8312343708083,"lon":-122.28650551373461,"height":-16.99376208320342,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":62971,"length":22,"msg_type":526,"payload":"UAwvEAwAAAD4////JQAAAPEAygIPAg==","preamble":85,"sender":22963,"tow":271518800,"n":12,"e":-8,"d":37,"h_accuracy":241,"v_accuracy":714,"n_sats":15,"flags":2} +{"crc":37559,"length":15,"msg_type":520,"payload":"UAwvEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271518800,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":10520,"length":22,"msg_type":524,"payload":"UAwvEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271518800,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":39032,"length":6,"msg_type":528,"payload":"UAwvEP//","preamble":85,"sender":22963,"tow":271518800,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":18653,"length":51,"msg_type":1025,"payload":"BkdMTyBMMk9GIE1FIDEgWysxNDUybXNdIGxvdyBDTjAgdG9vIGxvbmcsIGRyb3BwaW5n","preamble":85,"sender":22963,"level":6,"text":"GLO L2OF ME 1 [+1452ms] low CN0 too long, dropping"} +{"crc":19038,"length":237,"msg_type":97,"payload":"BQDVFQC1AgC8HwCoAAAAAAAAGQDbDADQHQDVEgDOAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwLNGQHMDAG7HwGYEgHFHQHCAAAABQHBAAAAAAAAAAAAAAAACwPVCQOyFAOuBQPQCgPQAAAABAO0FQPLCQSqFATNAAAACwTHBQTEAAS9AAAABASvIwzIGgyqIgycGAy8GQyeDAy5Ewy4Fgy/AAAADA3RAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADA7DAAAAGQ7ACw69GA7MAAAAHw6fIQ6ZGRTJGBTXCxTCHxSuDBTOAAAAIRSpAAAA","preamble":85,"sender":22963,"states":[{"mesid":{"sat":5,"code":0},"cn0":213},{"mesid":{"sat":21,"code":0},"cn0":181},{"mesid":{"sat":2,"code":0},"cn0":188},{"mesid":{"sat":31,"code":0},"cn0":168},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":25,"code":0},"cn0":219},{"mesid":{"sat":12,"code":0},"cn0":208},{"mesid":{"sat":29,"code":0},"cn0":213},{"mesid":{"sat":18,"code":0},"cn0":206},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":131,"code":2},"cn0":205},{"mesid":{"sat":25,"code":1},"cn0":204},{"mesid":{"sat":12,"code":1},"cn0":187},{"mesid":{"sat":31,"code":1},"cn0":152},{"mesid":{"sat":18,"code":1},"cn0":197},{"mesid":{"sat":29,"code":1},"cn0":194},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":5,"code":1},"cn0":193},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":11,"code":3},"cn0":213},{"mesid":{"sat":9,"code":3},"cn0":178},{"mesid":{"sat":20,"code":3},"cn0":174},{"mesid":{"sat":5,"code":3},"cn0":208},{"mesid":{"sat":10,"code":3},"cn0":208},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":4,"code":3},"cn0":180},{"mesid":{"sat":21,"code":3},"cn0":203},{"mesid":{"sat":9,"code":4},"cn0":170},{"mesid":{"sat":20,"code":4},"cn0":205},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":11,"code":4},"cn0":199},{"mesid":{"sat":5,"code":4},"cn0":196},{"mesid":{"sat":0,"code":4},"cn0":189},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":4,"code":4},"cn0":175},{"mesid":{"sat":35,"code":12},"cn0":200},{"mesid":{"sat":26,"code":12},"cn0":170},{"mesid":{"sat":34,"code":12},"cn0":156},{"mesid":{"sat":24,"code":12},"cn0":188},{"mesid":{"sat":25,"code":12},"cn0":158},{"mesid":{"sat":12,"code":12},"cn0":185},{"mesid":{"sat":19,"code":12},"cn0":184},{"mesid":{"sat":22,"code":12},"cn0":191},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":12,"code":13},"cn0":209},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":12,"code":14},"cn0":195},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":25,"code":14},"cn0":192},{"mesid":{"sat":11,"code":14},"cn0":189},{"mesid":{"sat":24,"code":14},"cn0":204},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":31,"code":14},"cn0":159},{"mesid":{"sat":33,"code":14},"cn0":153},{"mesid":{"sat":25,"code":20},"cn0":201},{"mesid":{"sat":24,"code":20},"cn0":215},{"mesid":{"sat":11,"code":20},"cn0":194},{"mesid":{"sat":31,"code":20},"cn0":174},{"mesid":{"sat":12,"code":20},"cn0":206},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":33,"code":20},"cn0":169},{"mesid":{"sat":0,"code":0},"cn0":0}]} +{"crc":53239,"length":132,"msg_type":151,"payload":"AgAaHQUAKzUMAFEtFQB9GRkAbUYaAKEBHQChNx8AlQ4EAxUWBQMyIQYDTggJA18OCgNxKQsDmCUMA6oDEwMiBxQDDDEVA5UlDAyUKRMMIyAUDA8CFgxDJBgMgiMZDJ0OGgxnFSIMjhEjDCItCw6LMgwODzwYDmw2GQ6XKR8OVREhDiAP","preamble":85,"sender":22963,"azel":[{"sid":{"sat":2,"code":0},"az":26,"el":29},{"sid":{"sat":5,"code":0},"az":43,"el":53},{"sid":{"sat":12,"code":0},"az":81,"el":45},{"sid":{"sat":21,"code":0},"az":125,"el":25},{"sid":{"sat":25,"code":0},"az":109,"el":70},{"sid":{"sat":26,"code":0},"az":161,"el":1},{"sid":{"sat":29,"code":0},"az":161,"el":55},{"sid":{"sat":31,"code":0},"az":149,"el":14},{"sid":{"sat":4,"code":3},"az":21,"el":22},{"sid":{"sat":5,"code":3},"az":50,"el":33},{"sid":{"sat":6,"code":3},"az":78,"el":8},{"sid":{"sat":9,"code":3},"az":95,"el":14},{"sid":{"sat":10,"code":3},"az":113,"el":41},{"sid":{"sat":11,"code":3},"az":152,"el":37},{"sid":{"sat":12,"code":3},"az":170,"el":3},{"sid":{"sat":19,"code":3},"az":34,"el":7},{"sid":{"sat":20,"code":3},"az":12,"el":49},{"sid":{"sat":21,"code":3},"az":149,"el":37},{"sid":{"sat":12,"code":12},"az":148,"el":41},{"sid":{"sat":19,"code":12},"az":35,"el":32},{"sid":{"sat":20,"code":12},"az":15,"el":2},{"sid":{"sat":22,"code":12},"az":67,"el":36},{"sid":{"sat":24,"code":12},"az":130,"el":35},{"sid":{"sat":25,"code":12},"az":157,"el":14},{"sid":{"sat":26,"code":12},"az":103,"el":21},{"sid":{"sat":34,"code":12},"az":142,"el":17},{"sid":{"sat":35,"code":12},"az":34,"el":45},{"sid":{"sat":11,"code":14},"az":139,"el":50},{"sid":{"sat":12,"code":14},"az":15,"el":60},{"sid":{"sat":24,"code":14},"az":108,"el":54},{"sid":{"sat":25,"code":14},"az":151,"el":41},{"sid":{"sat":31,"code":14},"az":85,"el":17},{"sid":{"sat":33,"code":14},"az":32,"el":15}]} +{"crc":20215,"length":11,"msg_type":258,"payload":"Mgi0DC8QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271518900,"ns_residual":0,"flags":1} +{"crc":52547,"length":16,"msg_type":259,"payload":"EbQMLxDkBwMZAxkA/uikNQ==","preamble":85,"sender":22963,"flags":17,"tow":271518900,"year":2020,"month":3,"day":25,"hours":3,"minutes":25,"seconds":0,"ns":899999998} +{"crc":21647,"length":34,"msg_type":522,"payload":"tAwvEJgXQeNl6kJAS5QuG1aSXsATwmyg2vwwwAECWwQPBg==","preamble":85,"sender":22963,"tow":271518900,"lat":37.83123436621025,"lon":-122.28650550411946,"height":-16.987710978081008,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":44540,"length":22,"msg_type":526,"payload":"tAwvEPH///8DAAAA/f////EAygIPAg==","preamble":85,"sender":22963,"tow":271518900,"n":-15,"e":3,"d":-3,"h_accuracy":241,"v_accuracy":714,"n_sats":15,"flags":2} +{"crc":59914,"length":15,"msg_type":520,"payload":"tAwvEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271518900,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":35643,"length":22,"msg_type":524,"payload":"tAwvEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271518900,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":5601,"length":6,"msg_type":528,"payload":"tAwvEP//","preamble":85,"sender":22963,"tow":271518900,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":20463,"length":249,"msg_type":74,"payload":"GA0vEAAAAAAyCEBbGbQ+UxaXBnxF/+fWDw8FAHmQFUXtw0IHMXwIJ7UPDxUAqwH0RRElWgfeUPYfvA8PAgAGzAJJemqsBzxz/hKpDw8fADG3Jj1jUm0Gcpb7HtsPDxkAbd62QJgwzQZ/ZvTY0A8PDAAYsM8+mvyZBtHKBdLVDw8dAFW3Jj27EQIFv4/8j8wPDxkBGd62QJPFTAUk9/b6uw8PDAGZywJJuLb6BSHJ/kiYDw8fAcevzz5w3yQFgIME6cIPDx0BGRm0PiWdIgXNbv9bwQ8PBQE9r/s+vzO7BuWKBGTVDw8LAwU/2EQQQFoH0Mfu/LIPDwkD","preamble":85,"sender":22963,"header":{"t":{"tow":271519000,"ns_residual":0,"wn":2098},"n_obs":64},"obs":[{"P":1051990363,"L":{"i":110564947,"f":124},"D":{"i":-187,"f":231},"cn0":214,"lock":15,"flags":15,"sid":{"sat":5,"code":0}},{"P":1159041145,"L":{"i":121816045,"f":49},"D":{"i":2172,"f":39},"cn0":181,"lock":15,"flags":15,"sid":{"sat":21,"code":0}},{"P":1173619115,"L":{"i":123348241,"f":222},"D":{"i":-2480,"f":31},"cn0":188,"lock":15,"flags":15,"sid":{"sat":2,"code":0}},{"P":1224920070,"L":{"i":128739962,"f":60},"D":{"i":-397,"f":18},"cn0":169,"lock":15,"flags":15,"sid":{"sat":31,"code":0}},{"P":1025947441,"L":{"i":107827811,"f":114},"D":{"i":-1130,"f":30},"cn0":219,"lock":15,"flags":15,"sid":{"sat":25,"code":0}},{"P":1085726317,"L":{"i":114110616,"f":127},"D":{"i":-2970,"f":216},"cn0":208,"lock":15,"flags":15,"sid":{"sat":12,"code":0}},{"P":1053798424,"L":{"i":110754970,"f":209},"D":{"i":1482,"f":210},"cn0":213,"lock":15,"flags":15,"sid":{"sat":29,"code":0}},{"P":1025947477,"L":{"i":84021691,"f":191},"D":{"i":-881,"f":143},"cn0":204,"lock":15,"flags":15,"sid":{"sat":25,"code":1}},{"P":1085726233,"L":{"i":88917395,"f":36},"D":{"i":-2313,"f":250},"cn0":187,"lock":15,"flags":15,"sid":{"sat":12,"code":1}},{"P":1224919961,"L":{"i":100316856,"f":33},"D":{"i":-311,"f":72},"cn0":152,"lock":15,"flags":15,"sid":{"sat":31,"code":1}},{"P":1053798343,"L":{"i":86302576,"f":128},"D":{"i":1155,"f":233},"cn0":194,"lock":15,"flags":15,"sid":{"sat":29,"code":1}},{"P":1051990297,"L":{"i":86154533,"f":205},"D":{"i":-146,"f":91},"cn0":193,"lock":15,"flags":15,"sid":{"sat":5,"code":1}},{"P":1056681789,"L":{"i":112931775,"f":229},"D":{"i":1162,"f":100},"cn0":213,"lock":15,"flags":15,"sid":{"sat":11,"code":3}},{"P":1155022597,"L":{"i":123355152,"f":208},"D":{"i":-4409,"f":252},"cn0":178,"lock":15,"flags":15,"sid":{"sat":9,"code":3}}]} +{"crc":19072,"length":249,"msg_type":74,"payload":"GA0vEAAAAAAyCEH6LC496g2LBlxE+86uDw8UA5TFB0AGeNgGY5MIe9APDwUDXmRnPjkopwafGPR50A8PCgMjMghDhtctB6/a+qG0Dw8EA/+NKT8hiMIGhlMGwMsPDxUDfD/YRPr4twVPm/Lhqg8PCQRXLi49EtIWBedR/LnNDw8UBEuw+z68RDwFBogDN8cPDwsEv8YHQAgIUwXFqwYnxA8PBQQhMwhDtG6VBU79+4avDw8EBH9ClkVdRT8H1SP6D8gPDyMMj4H1SarVswe/P/QOqg8PGgw09BRMv27sB7HHCGucDw8iDAZjoUduwHUH3+f6sbwPDxgM","preamble":85,"sender":22963,"header":{"t":{"tow":271519000,"ns_residual":0,"wn":2098},"n_obs":65},"obs":[{"P":1026436346,"L":{"i":109776362,"f":92},"D":{"i":-1212,"f":206},"cn0":174,"lock":15,"flags":15,"sid":{"sat":20,"code":3}},{"P":1074251156,"L":{"i":114849798,"f":99},"D":{"i":2195,"f":123},"cn0":208,"lock":15,"flags":15,"sid":{"sat":5,"code":3}},{"P":1046963294,"L":{"i":111618105,"f":159},"D":{"i":-3048,"f":121},"cn0":208,"lock":15,"flags":15,"sid":{"sat":10,"code":3}},{"P":1124610595,"L":{"i":120444806,"f":175},"D":{"i":-1318,"f":161},"cn0":180,"lock":15,"flags":15,"sid":{"sat":4,"code":3}},{"P":1059687935,"L":{"i":113412129,"f":134},"D":{"i":1619,"f":192},"cn0":203,"lock":15,"flags":15,"sid":{"sat":21,"code":3}},{"P":1155022716,"L":{"i":95942906,"f":79},"D":{"i":-3429,"f":225},"cn0":170,"lock":15,"flags":15,"sid":{"sat":9,"code":4}},{"P":1026436695,"L":{"i":85381650,"f":231},"D":{"i":-943,"f":185},"cn0":205,"lock":15,"flags":15,"sid":{"sat":20,"code":4}},{"P":1056682059,"L":{"i":87835836,"f":6},"D":{"i":904,"f":55},"cn0":199,"lock":15,"flags":15,"sid":{"sat":11,"code":4}},{"P":1074251455,"L":{"i":89327624,"f":197},"D":{"i":1707,"f":39},"cn0":196,"lock":15,"flags":15,"sid":{"sat":5,"code":4}},{"P":1124610849,"L":{"i":93679284,"f":78},"D":{"i":-1027,"f":134},"cn0":175,"lock":15,"flags":15,"sid":{"sat":4,"code":4}},{"P":1167475327,"L":{"i":121587037,"f":213},"D":{"i":-1501,"f":15},"cn0":200,"lock":15,"flags":15,"sid":{"sat":35,"code":12}},{"P":1240826255,"L":{"i":129226154,"f":191},"D":{"i":-3009,"f":14},"cn0":170,"lock":15,"flags":15,"sid":{"sat":26,"code":12}},{"P":1276441652,"L":{"i":132935359,"f":177},"D":{"i":2247,"f":107},"cn0":156,"lock":15,"flags":15,"sid":{"sat":34,"code":12}},{"P":1201758982,"L":{"i":125157486,"f":223},"D":{"i":-1305,"f":177},"cn0":188,"lock":15,"flags":15,"sid":{"sat":24,"code":12}}]} +{"crc":60303,"length":249,"msg_type":74,"payload":"GA0vEAAAAAAyCEJSgRJNn9YGCHosBQKeDw8ZDM/HTUXguDcHdkoGi7kPDwwMM3JDR+L3awfD3P6VuA8PEwwKWF1HVqpuB1VQCcTADw8WDITHTUWvxpQF+N4EHtEPDwwNo8AHQrCY8AYE+vsDww8PDA5nRSBLUlPlB4o+BGDADw8ZDnxuIEccuHkHYRcEVr0PDwsO2twoQ3X7Dgf5LfmOzA8PGA5JAkpRkCWLCN2d82GfDw8fDjbn91FNbJ0I/p73bpkPDyEOVkUgS8zODAafQAOZyQ8PGRT33ihDYZJoBXDF+p7XDw8YFMVtIEcdW7oFgiEDIMIPDwsU","preamble":85,"sender":22963,"header":{"t":{"tow":271519000,"ns_residual":0,"wn":2098},"n_obs":66},"obs":[{"P":1293058386,"L":{"i":134665887,"f":122},"D":{"i":1324,"f":2},"cn0":158,"lock":15,"flags":15,"sid":{"sat":25,"code":12}},{"P":1162725327,"L":{"i":121092320,"f":118},"D":{"i":1610,"f":139},"cn0":185,"lock":15,"flags":15,"sid":{"sat":12,"code":12}},{"P":1195602483,"L":{"i":124516322,"f":195},"D":{"i":-292,"f":149},"cn0":184,"lock":15,"flags":15,"sid":{"sat":19,"code":12}},{"P":1197299722,"L":{"i":124693078,"f":85},"D":{"i":2384,"f":196},"cn0":192,"lock":15,"flags":15,"sid":{"sat":22,"code":12}},{"P":1162725252,"L":{"i":93636271,"f":248},"D":{"i":1246,"f":30},"cn0":209,"lock":15,"flags":15,"sid":{"sat":12,"code":13}},{"P":1107804323,"L":{"i":116431024,"f":4},"D":{"i":-1030,"f":3},"cn0":195,"lock":15,"flags":15,"sid":{"sat":12,"code":14}},{"P":1260406119,"L":{"i":132469586,"f":138},"D":{"i":1086,"f":96},"cn0":192,"lock":15,"flags":15,"sid":{"sat":25,"code":14}},{"P":1193307772,"L":{"i":125417500,"f":97},"D":{"i":1047,"f":86},"cn0":189,"lock":15,"flags":15,"sid":{"sat":11,"code":14}},{"P":1126751450,"L":{"i":118422389,"f":249},"D":{"i":-1747,"f":142},"cn0":204,"lock":15,"flags":15,"sid":{"sat":24,"code":14}},{"P":1363804745,"L":{"i":143336848,"f":221},"D":{"i":-3171,"f":97},"cn0":159,"lock":15,"flags":15,"sid":{"sat":31,"code":14}},{"P":1375201078,"L":{"i":144534605,"f":254},"D":{"i":-2146,"f":110},"cn0":153,"lock":15,"flags":15,"sid":{"sat":33,"code":14}},{"P":1260406102,"L":{"i":101502668,"f":159},"D":{"i":832,"f":153},"cn0":201,"lock":15,"flags":15,"sid":{"sat":25,"code":20}},{"P":1126751991,"L":{"i":90739297,"f":112},"D":{"i":-1339,"f":158},"cn0":215,"lock":15,"flags":15,"sid":{"sat":24,"code":20}},{"P":1193307589,"L":{"i":96099101,"f":130},"D":{"i":801,"f":32},"cn0":194,"lock":15,"flags":15,"sid":{"sat":11,"code":20}}]} +{"crc":985,"length":62,"msg_type":74,"payload":"GA0vEAAAAAAyCEOeAkpRx92LBg9+9lOvDw8fFA/AB0LkSVEFpev83s4PDwwU4Ob3UebemQYAlvnHqQ8PIRQ=","preamble":85,"sender":22963,"header":{"t":{"tow":271519000,"ns_residual":0,"wn":2098},"n_obs":67},"obs":[{"P":1363804830,"L":{"i":109829575,"f":15},"D":{"i":-2434,"f":83},"cn0":175,"lock":15,"flags":15,"sid":{"sat":31,"code":20}},{"P":1107804175,"L":{"i":89213412,"f":165},"D":{"i":-789,"f":222},"cn0":206,"lock":15,"flags":15,"sid":{"sat":12,"code":20}},{"P":1375200992,"L":{"i":110747366,"f":0},"D":{"i":-1642,"f":199},"cn0":169,"lock":15,"flags":15,"sid":{"sat":33,"code":20}}]} +{"crc":49809,"length":9,"msg_type":117,"payload":"/wAAAAAAAAAA","preamble":85,"sender":22963,"mask":255,"l1ca_bias":0,"l1p_bias":0,"l2ca_bias":0,"l2p_bias":0} +{"crc":42106,"length":11,"msg_type":258,"payload":"MggYDS8QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271519000,"ns_residual":0,"flags":1} +{"crc":46449,"length":16,"msg_type":259,"payload":"ERgNLxDkBwMZAxkA/smaOw==","preamble":85,"sender":22963,"flags":17,"tow":271519000,"year":2020,"month":3,"day":25,"hours":3,"minutes":25,"seconds":0,"ns":999999998} +{"crc":43720,"length":34,"msg_type":522,"payload":"GA0vEAlje+Nl6kJAOgYwG1aSXsDp1XGPZPswwAECWwQPBg==","preamble":85,"sender":22963,"tow":271519000,"lat":37.831234393355835,"lon":-122.28650550546527,"height":-16.982003178874866,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":29372,"length":22,"msg_type":526,"payload":"GA0vEAIAAAD/////+f////EAygIPAg==","preamble":85,"sender":22963,"tow":271519000,"n":2,"e":-1,"d":-7,"h_accuracy":241,"v_accuracy":714,"n_sats":15,"flags":2} +{"crc":58522,"length":15,"msg_type":520,"payload":"GA0vEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271519000,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":30487,"length":22,"msg_type":524,"payload":"GA0vEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271519000,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":21883,"length":6,"msg_type":528,"payload":"GA0vEP//","preamble":85,"sender":22963,"tow":271519000,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":40942,"length":4,"msg_type":65535,"payload":"AAUCgA==","preamble":85,"sender":22963,"flags":2147616000} +{"crc":2168,"length":24,"msg_type":72,"payload":"UO0a3iqORMHK1UJhIkRQwc9nFIPvrk1B","preamble":85,"sender":22963,"x":-2694229.735196747,"y":-4264073.519704292,"z":3890655.0240602265} +{"crc":49328,"length":11,"msg_type":258,"payload":"Mgh8DS8QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271519100,"ns_residual":0,"flags":1} +{"crc":59217,"length":16,"msg_type":259,"payload":"EXwNLxDkBwMZAxkB/uD1BQ==","preamble":85,"sender":22963,"flags":17,"tow":271519100,"year":2020,"month":3,"day":25,"hours":3,"minutes":25,"seconds":1,"ns":99999998} +{"crc":31500,"length":34,"msg_type":522,"payload":"fA0vECNhp+Nl6kJAdlAeG1aSXsA/rgqfL/swwAECWwQPBg==","preamble":85,"sender":22963,"tow":271519100,"lat":37.83123441384148,"lon":-122.28650548897153,"height":-16.98119539271124,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":63831,"length":22,"msg_type":526,"payload":"fA0vEPn///8AAAAABQAAAPEAygIPAg==","preamble":85,"sender":22963,"tow":271519100,"n":-7,"e":0,"d":5,"h_accuracy":241,"v_accuracy":714,"n_sats":15,"flags":2} +{"crc":51253,"length":15,"msg_type":520,"payload":"fA0vEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271519100,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":28577,"length":22,"msg_type":524,"payload":"fA0vEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271519100,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":3266,"length":6,"msg_type":528,"payload":"fA0vEP//","preamble":85,"sender":22963,"tow":271519100,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":39404,"length":11,"msg_type":258,"payload":"MgjgDS8QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271519200,"ns_residual":0,"flags":1} +{"crc":12666,"length":16,"msg_type":259,"payload":"EeANLxDkBwMZAxkB/sHrCw==","preamble":85,"sender":22963,"flags":17,"tow":271519200,"year":2020,"month":3,"day":25,"hours":3,"minutes":25,"seconds":1,"ns":199999998} +{"crc":40204,"length":34,"msg_type":522,"payload":"4A0vEPsA6eNl6kJA5VAKG1aSXsAfk5PHUP0wwAECWwQPBg==","preamble":85,"sender":22963,"tow":271519200,"lat":37.831234444400216,"lon":-122.28650547034665,"height":-16.98951384880922,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":47116,"length":22,"msg_type":526,"payload":"4A0vEAMAAAAJAAAAHwAAAPEAygIPAg==","preamble":85,"sender":22963,"tow":271519200,"n":3,"e":9,"d":31,"h_accuracy":241,"v_accuracy":714,"n_sats":15,"flags":2} +{"crc":28250,"length":15,"msg_type":520,"payload":"4A0vEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271519200,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":37264,"length":22,"msg_type":524,"payload":"4A0vEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271519200,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":51589,"length":6,"msg_type":528,"payload":"4A0vEP//","preamble":85,"sender":22963,"tow":271519200,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":54584,"length":11,"msg_type":258,"payload":"MghEDi8QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271519300,"ns_residual":0,"flags":1} +{"crc":28902,"length":16,"msg_type":259,"payload":"EUQOLxDkBwMZAxkB/qLhEQ==","preamble":85,"sender":22963,"flags":17,"tow":271519300,"year":2020,"month":3,"day":25,"hours":3,"minutes":25,"seconds":1,"ns":299999998} +{"crc":58601,"length":34,"msg_type":522,"payload":"RA4vEMWLMORl6kJANekGG1aSXsABwvQZqv4wwAECWwQPBg==","preamble":85,"sender":22963,"tow":271519300,"lat":37.831234477714624,"lon":-122.28650546717547,"height":-16.994783041243867,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":26583,"length":22,"msg_type":526,"payload":"RA4vEAcAAAD9/////v////EAygIPAg==","preamble":85,"sender":22963,"tow":271519300,"n":7,"e":-3,"d":-2,"h_accuracy":241,"v_accuracy":714,"n_sats":15,"flags":2} +{"crc":45389,"length":15,"msg_type":520,"payload":"RA4vEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271519300,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":35026,"length":22,"msg_type":524,"payload":"RA4vEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271519300,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":49374,"length":6,"msg_type":528,"payload":"RA4vEP//","preamble":85,"sender":22963,"tow":271519300,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":28077,"length":237,"msg_type":97,"payload":"BQDWFQC2AgC9HwCpAAAAAAAAGQDbDADRHQDWEgDPAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwLOGQHMDAG7HwGYEgHEHQHDAAAABQHCAAAAAAAAAAAAAAAAZAPVYgOyZgOuZQPQXQPQAAAAagO0aAPLYgSrZgTNAAAAZATHZQTEaAS9AAAAagSwIwzIGgyrIgycGAy9GQyeDAy5Ewy4Fgy/AAAADA3RAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADA7DAAAAGQ7ACw69GA7MAAAAHw6eIQ6ZGRTJGBTXCxTCHxSuDBTPAAAAIRSpAAAA","preamble":85,"sender":22963,"states":[{"mesid":{"sat":5,"code":0},"cn0":214},{"mesid":{"sat":21,"code":0},"cn0":182},{"mesid":{"sat":2,"code":0},"cn0":189},{"mesid":{"sat":31,"code":0},"cn0":169},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":25,"code":0},"cn0":219},{"mesid":{"sat":12,"code":0},"cn0":209},{"mesid":{"sat":29,"code":0},"cn0":214},{"mesid":{"sat":18,"code":0},"cn0":207},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":131,"code":2},"cn0":206},{"mesid":{"sat":25,"code":1},"cn0":204},{"mesid":{"sat":12,"code":1},"cn0":187},{"mesid":{"sat":31,"code":1},"cn0":152},{"mesid":{"sat":18,"code":1},"cn0":196},{"mesid":{"sat":29,"code":1},"cn0":195},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":5,"code":1},"cn0":194},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":100,"code":3},"cn0":213},{"mesid":{"sat":98,"code":3},"cn0":178},{"mesid":{"sat":102,"code":3},"cn0":174},{"mesid":{"sat":101,"code":3},"cn0":208},{"mesid":{"sat":93,"code":3},"cn0":208},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":106,"code":3},"cn0":180},{"mesid":{"sat":104,"code":3},"cn0":203},{"mesid":{"sat":98,"code":4},"cn0":171},{"mesid":{"sat":102,"code":4},"cn0":205},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":100,"code":4},"cn0":199},{"mesid":{"sat":101,"code":4},"cn0":196},{"mesid":{"sat":104,"code":4},"cn0":189},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":106,"code":4},"cn0":176},{"mesid":{"sat":35,"code":12},"cn0":200},{"mesid":{"sat":26,"code":12},"cn0":171},{"mesid":{"sat":34,"code":12},"cn0":156},{"mesid":{"sat":24,"code":12},"cn0":189},{"mesid":{"sat":25,"code":12},"cn0":158},{"mesid":{"sat":12,"code":12},"cn0":185},{"mesid":{"sat":19,"code":12},"cn0":184},{"mesid":{"sat":22,"code":12},"cn0":191},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":12,"code":13},"cn0":209},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":12,"code":14},"cn0":195},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":25,"code":14},"cn0":192},{"mesid":{"sat":11,"code":14},"cn0":189},{"mesid":{"sat":24,"code":14},"cn0":204},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":31,"code":14},"cn0":158},{"mesid":{"sat":33,"code":14},"cn0":153},{"mesid":{"sat":25,"code":20},"cn0":201},{"mesid":{"sat":24,"code":20},"cn0":215},{"mesid":{"sat":11,"code":20},"cn0":194},{"mesid":{"sat":31,"code":20},"cn0":174},{"mesid":{"sat":12,"code":20},"cn0":207},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":33,"code":20},"cn0":169},{"mesid":{"sat":0,"code":0},"cn0":0}]} +{"crc":10175,"length":11,"msg_type":258,"payload":"MgioDi8QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271519400,"ns_residual":0,"flags":1} +{"crc":20765,"length":16,"msg_type":259,"payload":"EagOLxDkBwMZAxkB/oPXFw==","preamble":85,"sender":22963,"flags":17,"tow":271519400,"year":2020,"month":3,"day":25,"hours":3,"minutes":25,"seconds":1,"ns":399999998} +{"crc":54219,"length":34,"msg_type":522,"payload":"qA4vEHkjhORl6kJAnMj0GlaSXsD41HG5BP8wwAECWwQPBg==","preamble":85,"sender":22963,"tow":271519400,"lat":37.83123451664046,"lon":-122.28650545029308,"height":-16.99616583851909,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":17524,"length":22,"msg_type":526,"payload":"qA4vEAwAAAD7////7f////EAygIPAg==","preamble":85,"sender":22963,"tow":271519400,"n":12,"e":-5,"d":-19,"h_accuracy":241,"v_accuracy":714,"n_sats":15,"flags":2} +{"crc":61109,"length":15,"msg_type":520,"payload":"qA4vEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271519400,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":29778,"length":22,"msg_type":524,"payload":"qA4vEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271519400,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":16389,"length":6,"msg_type":528,"payload":"qA4vEP//","preamble":85,"sender":22963,"tow":271519400,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":49809,"length":9,"msg_type":117,"payload":"/wAAAAAAAAAA","preamble":85,"sender":22963,"mask":255,"l1ca_bias":0,"l1p_bias":0,"l2ca_bias":0,"l2p_bias":0} +{"crc":58573,"length":11,"msg_type":258,"payload":"MggMDy8QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271519500,"ns_residual":0,"flags":1} +{"crc":4251,"length":16,"msg_type":259,"payload":"EQwPLxDkBwMZAxkB/mTNHQ==","preamble":85,"sender":22963,"flags":17,"tow":271519500,"year":2020,"month":3,"day":25,"hours":3,"minutes":25,"seconds":1,"ns":499999998} +{"crc":37823,"length":34,"msg_type":522,"payload":"DA8vEIF7quRl6kJAPFbdGlaSXsA1XyCRJQAxwAECWwQPBg==","preamble":85,"sender":22963,"tow":271519500,"lat":37.831234534495714,"lon":-122.28650542845656,"height":-17.000573225405976,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":60223,"length":22,"msg_type":526,"payload":"DA8vEPr///8BAAAA+v////EAygIPAg==","preamble":85,"sender":22963,"tow":271519500,"n":-6,"e":1,"d":-6,"h_accuracy":241,"v_accuracy":714,"n_sats":15,"flags":2} +{"crc":51040,"length":15,"msg_type":520,"payload":"DA8vEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271519500,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":55005,"length":22,"msg_type":524,"payload":"DA8vEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271519500,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":3549,"length":6,"msg_type":528,"payload":"DA8vEP//","preamble":85,"sender":22963,"tow":271519500,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":64006,"length":11,"msg_type":258,"payload":"MghwDy8QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271519600,"ns_residual":0,"flags":1} +{"crc":4255,"length":16,"msg_type":259,"payload":"EXAPLxDkBwMZAxkB/kXDIw==","preamble":85,"sender":22963,"flags":17,"tow":271519600,"year":2020,"month":3,"day":25,"hours":3,"minutes":25,"seconds":1,"ns":599999998} +{"crc":11019,"length":34,"msg_type":522,"payload":"cA8vEN0PzuRl6kJA8v/FGlaSXsDUL2u1UAIxwAECWwQPBg==","preamble":85,"sender":22963,"tow":271519600,"lat":37.83123455106372,"lon":-122.28650540672223,"height":-17.009044016522083,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":54504,"length":22,"msg_type":526,"payload":"cA8vEPz////+////CwAAAPEAygIPAg==","preamble":85,"sender":22963,"tow":271519600,"n":-4,"e":-2,"d":11,"h_accuracy":241,"v_accuracy":714,"n_sats":15,"flags":2} +{"crc":33280,"length":15,"msg_type":520,"payload":"cA8vEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271519600,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":11662,"length":22,"msg_type":524,"payload":"cA8vEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271519600,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":17314,"length":6,"msg_type":528,"payload":"cA8vEP//","preamble":85,"sender":22963,"tow":271519600,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":47744,"length":34,"msg_type":30583,"payload":"gwLvDi8QGiIESB5AsgOQFQCoDWB6A8geQPIGkByAqAVQAA==","preamble":85,"sender":22963,"sid":{"sat":131,"code":2},"tow":271519471,"message_type":26,"data":[34,4,72,30,64,178,3,144,21,0,168,13,96,122,3,200,30,64,242,6,144,28,128,168,5,80,0]} +{"crc":32423,"length":11,"msg_type":258,"payload":"MgjUDy8QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271519700,"ns_residual":0,"flags":1} +{"crc":50888,"length":16,"msg_type":259,"payload":"EdQPLxDkBwMZAxkB/ia5KQ==","preamble":85,"sender":22963,"flags":17,"tow":271519700,"year":2020,"month":3,"day":25,"hours":3,"minutes":25,"seconds":1,"ns":699999998} +{"crc":3980,"length":34,"msg_type":522,"payload":"1A8vEMJ3DOVl6kJA2CysGlaSXsDSsq+ZmwQxwAECWwQPBg==","preamble":85,"sender":22963,"tow":271519700,"lat":37.831234580123706,"lon":-122.28650538267118,"height":-17.017999272723337,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":31580,"length":22,"msg_type":526,"payload":"1A8vEP////8EAAAAFwAAAPEAygIPAg==","preamble":85,"sender":22963,"tow":271519700,"n":-1,"e":4,"d":23,"h_accuracy":241,"v_accuracy":714,"n_sats":15,"flags":2} +{"crc":53428,"length":15,"msg_type":520,"payload":"1A8vEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271519700,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":23287,"length":22,"msg_type":524,"payload":"1A8vEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271519700,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":42027,"length":6,"msg_type":528,"payload":"1A8vEP//","preamble":85,"sender":22963,"tow":271519700,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":26710,"length":11,"msg_type":258,"payload":"Mgg4EC8QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271519800,"ns_residual":0,"flags":1} +{"crc":48207,"length":16,"msg_type":259,"payload":"ETgQLxDkBwMZAxkB/gevLw==","preamble":85,"sender":22963,"flags":17,"tow":271519800,"year":2020,"month":3,"day":25,"hours":3,"minutes":25,"seconds":1,"ns":799999998} +{"crc":52258,"length":34,"msg_type":522,"payload":"OBAvEE9QVOVl6kJASOqAGlaSXsB20od0cQYxwAECWwQPBg==","preamble":85,"sender":22963,"tow":271519800,"lat":37.83123461357956,"lon":-122.28650534238216,"height":-17.025168688926406,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":37753,"length":22,"msg_type":526,"payload":"OBAvEP////8RAAAACgAAAPEAygIPAg==","preamble":85,"sender":22963,"tow":271519800,"n":-1,"e":17,"d":10,"h_accuracy":241,"v_accuracy":714,"n_sats":15,"flags":2} +{"crc":53974,"length":15,"msg_type":520,"payload":"OBAvEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271519800,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":61004,"length":22,"msg_type":524,"payload":"OBAvEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271519800,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":17747,"length":6,"msg_type":528,"payload":"OBAvEP//","preamble":85,"sender":22963,"tow":271519800,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":47201,"length":237,"msg_type":97,"payload":"BQDWFQC1AgC8HwCoAAAAAAAAGQDbDADQHQDVEgDPAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwLOGQHMDAG8HwGZEgHFHQHDAAAABQHCAAAAAAAAAAAAAAAACwPWCQOyFAOuBQPQCgPQAAAABAO0FQPLCQSrFATNCgRJCwTHBQTEAAS9AAAABASvIwzIGgyrIgydGAy8GQyeDAy5Ewy4Fgy/AAAADA3SAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADA7DAAAAGQ7ACw69GA7MAAAAHw6fIQ6ZGRTJGBTXCxTCHxSuDBTOAAAAIRSpAAAA","preamble":85,"sender":22963,"states":[{"mesid":{"sat":5,"code":0},"cn0":214},{"mesid":{"sat":21,"code":0},"cn0":181},{"mesid":{"sat":2,"code":0},"cn0":188},{"mesid":{"sat":31,"code":0},"cn0":168},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":25,"code":0},"cn0":219},{"mesid":{"sat":12,"code":0},"cn0":208},{"mesid":{"sat":29,"code":0},"cn0":213},{"mesid":{"sat":18,"code":0},"cn0":207},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":131,"code":2},"cn0":206},{"mesid":{"sat":25,"code":1},"cn0":204},{"mesid":{"sat":12,"code":1},"cn0":188},{"mesid":{"sat":31,"code":1},"cn0":153},{"mesid":{"sat":18,"code":1},"cn0":197},{"mesid":{"sat":29,"code":1},"cn0":195},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":5,"code":1},"cn0":194},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":11,"code":3},"cn0":214},{"mesid":{"sat":9,"code":3},"cn0":178},{"mesid":{"sat":20,"code":3},"cn0":174},{"mesid":{"sat":5,"code":3},"cn0":208},{"mesid":{"sat":10,"code":3},"cn0":208},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":4,"code":3},"cn0":180},{"mesid":{"sat":21,"code":3},"cn0":203},{"mesid":{"sat":9,"code":4},"cn0":171},{"mesid":{"sat":20,"code":4},"cn0":205},{"mesid":{"sat":10,"code":4},"cn0":73},{"mesid":{"sat":11,"code":4},"cn0":199},{"mesid":{"sat":5,"code":4},"cn0":196},{"mesid":{"sat":0,"code":4},"cn0":189},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":4,"code":4},"cn0":175},{"mesid":{"sat":35,"code":12},"cn0":200},{"mesid":{"sat":26,"code":12},"cn0":171},{"mesid":{"sat":34,"code":12},"cn0":157},{"mesid":{"sat":24,"code":12},"cn0":188},{"mesid":{"sat":25,"code":12},"cn0":158},{"mesid":{"sat":12,"code":12},"cn0":185},{"mesid":{"sat":19,"code":12},"cn0":184},{"mesid":{"sat":22,"code":12},"cn0":191},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":12,"code":13},"cn0":210},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":12,"code":14},"cn0":195},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":25,"code":14},"cn0":192},{"mesid":{"sat":11,"code":14},"cn0":189},{"mesid":{"sat":24,"code":14},"cn0":204},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":31,"code":14},"cn0":159},{"mesid":{"sat":33,"code":14},"cn0":153},{"mesid":{"sat":25,"code":20},"cn0":201},{"mesid":{"sat":24,"code":20},"cn0":215},{"mesid":{"sat":11,"code":20},"cn0":194},{"mesid":{"sat":31,"code":20},"cn0":174},{"mesid":{"sat":12,"code":20},"cn0":206},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":33,"code":20},"cn0":169},{"mesid":{"sat":0,"code":0},"cn0":0}]} +{"crc":53239,"length":132,"msg_type":151,"payload":"AgAaHQUAKzUMAFEtFQB9GRkAbUYaAKEBHQChNx8AlQ4EAxUWBQMyIQYDTggJA18OCgNxKQsDmCUMA6oDEwMiBxQDDDEVA5UlDAyUKRMMIyAUDA8CFgxDJBgMgiMZDJ0OGgxnFSIMjhEjDCItCw6LMgwODzwYDmw2GQ6XKR8OVREhDiAP","preamble":85,"sender":22963,"azel":[{"sid":{"sat":2,"code":0},"az":26,"el":29},{"sid":{"sat":5,"code":0},"az":43,"el":53},{"sid":{"sat":12,"code":0},"az":81,"el":45},{"sid":{"sat":21,"code":0},"az":125,"el":25},{"sid":{"sat":25,"code":0},"az":109,"el":70},{"sid":{"sat":26,"code":0},"az":161,"el":1},{"sid":{"sat":29,"code":0},"az":161,"el":55},{"sid":{"sat":31,"code":0},"az":149,"el":14},{"sid":{"sat":4,"code":3},"az":21,"el":22},{"sid":{"sat":5,"code":3},"az":50,"el":33},{"sid":{"sat":6,"code":3},"az":78,"el":8},{"sid":{"sat":9,"code":3},"az":95,"el":14},{"sid":{"sat":10,"code":3},"az":113,"el":41},{"sid":{"sat":11,"code":3},"az":152,"el":37},{"sid":{"sat":12,"code":3},"az":170,"el":3},{"sid":{"sat":19,"code":3},"az":34,"el":7},{"sid":{"sat":20,"code":3},"az":12,"el":49},{"sid":{"sat":21,"code":3},"az":149,"el":37},{"sid":{"sat":12,"code":12},"az":148,"el":41},{"sid":{"sat":19,"code":12},"az":35,"el":32},{"sid":{"sat":20,"code":12},"az":15,"el":2},{"sid":{"sat":22,"code":12},"az":67,"el":36},{"sid":{"sat":24,"code":12},"az":130,"el":35},{"sid":{"sat":25,"code":12},"az":157,"el":14},{"sid":{"sat":26,"code":12},"az":103,"el":21},{"sid":{"sat":34,"code":12},"az":142,"el":17},{"sid":{"sat":35,"code":12},"az":34,"el":45},{"sid":{"sat":11,"code":14},"az":139,"el":50},{"sid":{"sat":12,"code":14},"az":15,"el":60},{"sid":{"sat":24,"code":14},"az":108,"el":54},{"sid":{"sat":25,"code":14},"az":151,"el":41},{"sid":{"sat":31,"code":14},"az":85,"el":17},{"sid":{"sat":33,"code":14},"az":32,"el":15}]} +{"crc":60663,"length":11,"msg_type":258,"payload":"MgicEC8QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271519900,"ns_residual":0,"flags":1} +{"crc":3450,"length":16,"msg_type":259,"payload":"EZwQLxDkBwMZAxkB/uikNQ==","preamble":85,"sender":22963,"flags":17,"tow":271519900,"year":2020,"month":3,"day":25,"hours":3,"minutes":25,"seconds":1,"ns":899999998} +{"crc":17157,"length":34,"msg_type":522,"payload":"nBAvEDzEoOVl6kJAlLNzGlaSXsCBhOhVvwYxwAECWwQPBg==","preamble":85,"sender":22963,"tow":271519900,"lat":37.831234649180686,"lon":-122.28650533007595,"height":-17.026357049242964,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":44501,"length":22,"msg_type":526,"payload":"nBAvEAUAAAD4////4P////EAygIPAg==","preamble":85,"sender":22963,"tow":271519900,"n":5,"e":-8,"d":-32,"h_accuracy":241,"v_accuracy":714,"n_sats":15,"flags":2} +{"crc":32866,"length":15,"msg_type":520,"payload":"nBAvEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271519900,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":39221,"length":22,"msg_type":524,"payload":"nBAvEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271519900,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":41690,"length":6,"msg_type":528,"payload":"nBAvEP//","preamble":85,"sender":22963,"tow":271519900,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":42657,"length":249,"msg_type":74,"payload":"ABEvEAAAAAAyCEA8ILQ+DBeXBntG/83WDw8FALU/FUVvu0IHs30I5bUPDxUAv130RcAuWgcoUfYOvA8PAgCs2gJJBmysB+ty/uSoDw8fACfhJj3LVm0G2Zj7QNsPDxkAuky3QDA8zQZ0Z/SY0Q8PDADteM8+zvaZBnXMBa3VDw8dAEjhJj0rFQIFB5D84swPDxkBbky3QJvOTAXU9/agvA8PDAFX2gJJ7bf6BTjK/tiXDw8fAaR4zz7r2iQF2YQEqcMPDx0B9B+0PrWdIgX2cP8awg8PBQG9hPs+NC+7BkWLBMrWDw8LA0Lg2ERHUVoHlMruHbEPDwkD","preamble":85,"sender":22963,"header":{"t":{"tow":271520000,"ns_residual":0,"wn":2098},"n_obs":64},"obs":[{"P":1051992124,"L":{"i":110565132,"f":123},"D":{"i":-186,"f":205},"cn0":214,"lock":15,"flags":15,"sid":{"sat":5,"code":0}},{"P":1159020469,"L":{"i":121813871,"f":179},"D":{"i":2173,"f":229},"cn0":181,"lock":15,"flags":15,"sid":{"sat":21,"code":0}},{"P":1173642687,"L":{"i":123350720,"f":40},"D":{"i":-2479,"f":14},"cn0":188,"lock":15,"flags":15,"sid":{"sat":2,"code":0}},{"P":1224923820,"L":{"i":128740358,"f":235},"D":{"i":-398,"f":228},"cn0":168,"lock":15,"flags":15,"sid":{"sat":31,"code":0}},{"P":1025958183,"L":{"i":107828939,"f":217},"D":{"i":-1128,"f":64},"cn0":219,"lock":15,"flags":15,"sid":{"sat":25,"code":0}},{"P":1085754554,"L":{"i":114113584,"f":116},"D":{"i":-2969,"f":152},"cn0":209,"lock":15,"flags":15,"sid":{"sat":12,"code":0}},{"P":1053784301,"L":{"i":110753486,"f":117},"D":{"i":1484,"f":173},"cn0":213,"lock":15,"flags":15,"sid":{"sat":29,"code":0}},{"P":1025958216,"L":{"i":84022571,"f":7},"D":{"i":-880,"f":226},"cn0":204,"lock":15,"flags":15,"sid":{"sat":25,"code":1}},{"P":1085754478,"L":{"i":88919707,"f":212},"D":{"i":-2313,"f":160},"cn0":188,"lock":15,"flags":15,"sid":{"sat":12,"code":1}},{"P":1224923735,"L":{"i":100317165,"f":56},"D":{"i":-310,"f":216},"cn0":151,"lock":15,"flags":15,"sid":{"sat":31,"code":1}},{"P":1053784228,"L":{"i":86301419,"f":217},"D":{"i":1156,"f":169},"cn0":195,"lock":15,"flags":15,"sid":{"sat":29,"code":1}},{"P":1051992052,"L":{"i":86154677,"f":246},"D":{"i":-144,"f":26},"cn0":194,"lock":15,"flags":15,"sid":{"sat":5,"code":1}},{"P":1056670909,"L":{"i":112930612,"f":69},"D":{"i":1163,"f":202},"cn0":214,"lock":15,"flags":15,"sid":{"sat":11,"code":3}},{"P":1155063874,"L":{"i":123359559,"f":148},"D":{"i":-4406,"f":29},"cn0":177,"lock":15,"flags":15,"sid":{"sat":9,"code":3}}]} +{"crc":57914,"length":249,"msg_type":74,"payload":"ABEvEAAAAAAyCEEnWS49pBKLBjJF++muDw8UA2B1B0Bxb9gG/pQIldAPDwUD8tNnPh80pwYCGvQQ0A8PCgMXYghDrNwtB+za+ki0Dw8EA7ZSKT/KgcIGkVcGN8sPDxUDuODYRF0GuAXHnfLbqw8PCQR+Wi49v9UWBeJS/IvNDw8UBMSF+z4yQTwF/IgDnsgPDwsEhnYHQFwBUwV1rAZFxA8PBQRJYwhDtXKVBZr+++OvDw8EBLd6lkU4Sz8HpyT69sgPDyMMafL1SWrhswcXQfQxqw8PGgzWnxRM9mXsB1/JCLqdDw8iDPGToUeGxXUHQ+n6LrwPDxgM","preamble":85,"sender":22963,"header":{"t":{"tow":271520000,"ns_residual":0,"wn":2098},"n_obs":65},"obs":[{"P":1026447655,"L":{"i":109777572,"f":50},"D":{"i":-1211,"f":233},"cn0":174,"lock":15,"flags":15,"sid":{"sat":20,"code":3}},{"P":1074230624,"L":{"i":114847601,"f":254},"D":{"i":2196,"f":149},"cn0":208,"lock":15,"flags":15,"sid":{"sat":5,"code":3}},{"P":1046991858,"L":{"i":111621151,"f":2},"D":{"i":-3046,"f":16},"cn0":208,"lock":15,"flags":15,"sid":{"sat":10,"code":3}},{"P":1124622871,"L":{"i":120446124,"f":236},"D":{"i":-1318,"f":72},"cn0":180,"lock":15,"flags":15,"sid":{"sat":4,"code":3}},{"P":1059672758,"L":{"i":113410506,"f":145},"D":{"i":1623,"f":55},"cn0":203,"lock":15,"flags":15,"sid":{"sat":21,"code":3}},{"P":1155063992,"L":{"i":95946333,"f":199},"D":{"i":-3427,"f":219},"cn0":171,"lock":15,"flags":15,"sid":{"sat":9,"code":4}},{"P":1026447998,"L":{"i":85382591,"f":226},"D":{"i":-942,"f":139},"cn0":205,"lock":15,"flags":15,"sid":{"sat":20,"code":4}},{"P":1056671172,"L":{"i":87834930,"f":252},"D":{"i":904,"f":158},"cn0":200,"lock":15,"flags":15,"sid":{"sat":11,"code":4}},{"P":1074230918,"L":{"i":89325916,"f":117},"D":{"i":1708,"f":69},"cn0":196,"lock":15,"flags":15,"sid":{"sat":5,"code":4}},{"P":1124623177,"L":{"i":93680309,"f":154},"D":{"i":-1026,"f":227},"cn0":175,"lock":15,"flags":15,"sid":{"sat":4,"code":4}},{"P":1167489719,"L":{"i":121588536,"f":167},"D":{"i":-1500,"f":246},"cn0":200,"lock":15,"flags":15,"sid":{"sat":35,"code":12}},{"P":1240855145,"L":{"i":129229162,"f":23},"D":{"i":-3007,"f":49},"cn0":171,"lock":15,"flags":15,"sid":{"sat":26,"code":12}},{"P":1276420054,"L":{"i":132933110,"f":95},"D":{"i":2249,"f":186},"cn0":157,"lock":15,"flags":15,"sid":{"sat":34,"code":12}},{"P":1201771505,"L":{"i":125158790,"f":67},"D":{"i":-1303,"f":46},"cn0":188,"lock":15,"flags":15,"sid":{"sat":24,"code":12}}]} +{"crc":2411,"length":249,"msg_type":74,"payload":"ABEvEAAAAAAyCEKpTxJNc9EGCJEsBQCeDw8ZDFiLTUWUsjcHGEwGtbgPDwwMHn1DRwX5awd/3f57uA8PEwyA/lxHA6FuBzdTCSXADw8WDAKLTUXRwZQFNN4EQdIPDwwNzOYHQrKc8AZn/fuZww8PDA4BHSBLE0/lB0I/BCLADw8ZDo5HIEcEtHkH0BcEd70PDwsOth0pQ0YCDwfxLvnnzQ8PGA46eEpR9DGLCIua88KfDw8fDpk2+FGpdJ0I36P37ZkPDyEO7xwgS4vLDAaDPwOvyQ8PGRTQHylDmpdoBYHG+rnXDw8YFNJGIEf6V7oF1iIDocIPDwsU","preamble":85,"sender":22963,"header":{"t":{"tow":271520000,"ns_residual":0,"wn":2098},"n_obs":66},"obs":[{"P":1293045673,"L":{"i":134664563,"f":145},"D":{"i":1324,"f":0},"cn0":158,"lock":15,"flags":15,"sid":{"sat":25,"code":12}},{"P":1162709848,"L":{"i":121090708,"f":24},"D":{"i":1612,"f":181},"cn0":184,"lock":15,"flags":15,"sid":{"sat":12,"code":12}},{"P":1195605278,"L":{"i":124516613,"f":127},"D":{"i":-291,"f":123},"cn0":184,"lock":15,"flags":15,"sid":{"sat":19,"code":12}},{"P":1197276800,"L":{"i":124690691,"f":55},"D":{"i":2387,"f":37},"cn0":192,"lock":15,"flags":15,"sid":{"sat":22,"code":12}},{"P":1162709762,"L":{"i":93635025,"f":52},"D":{"i":1246,"f":65},"cn0":210,"lock":15,"flags":15,"sid":{"sat":12,"code":13}},{"P":1107814092,"L":{"i":116432050,"f":103},"D":{"i":-1027,"f":153},"cn0":195,"lock":15,"flags":15,"sid":{"sat":12,"code":14}},{"P":1260395777,"L":{"i":132468499,"f":66},"D":{"i":1087,"f":34},"cn0":192,"lock":15,"flags":15,"sid":{"sat":25,"code":14}},{"P":1193297806,"L":{"i":125416452,"f":208},"D":{"i":1047,"f":119},"cn0":189,"lock":15,"flags":15,"sid":{"sat":11,"code":14}},{"P":1126768054,"L":{"i":118424134,"f":241},"D":{"i":-1746,"f":231},"cn0":205,"lock":15,"flags":15,"sid":{"sat":24,"code":14}},{"P":1363834938,"L":{"i":143340020,"f":139},"D":{"i":-3174,"f":194},"cn0":159,"lock":15,"flags":15,"sid":{"sat":31,"code":14}},{"P":1375221401,"L":{"i":144536745,"f":223},"D":{"i":-2141,"f":237},"cn0":153,"lock":15,"flags":15,"sid":{"sat":33,"code":14}},{"P":1260395759,"L":{"i":101501835,"f":131},"D":{"i":831,"f":175},"cn0":201,"lock":15,"flags":15,"sid":{"sat":25,"code":20}},{"P":1126768592,"L":{"i":90740634,"f":129},"D":{"i":-1338,"f":185},"cn0":215,"lock":15,"flags":15,"sid":{"sat":24,"code":20}},{"P":1193297618,"L":{"i":96098298,"f":214},"D":{"i":802,"f":161},"cn0":194,"lock":15,"flags":15,"sid":{"sat":11,"code":20}}]} +{"crc":50367,"length":62,"msg_type":74,"payload":"ABEvEAAAAAAyCEN+eEpRReeLBlF+9tKuDw8fFDLmB0L3TFEFGu38Ys4PDwwUbDb4UU3lmQajlvnYqQ8PIRQ=","preamble":85,"sender":22963,"header":{"t":{"tow":271520000,"ns_residual":0,"wn":2098},"n_obs":67},"obs":[{"P":1363835006,"L":{"i":109832005,"f":81},"D":{"i":-2434,"f":210},"cn0":174,"lock":15,"flags":15,"sid":{"sat":31,"code":20}},{"P":1107813938,"L":{"i":89214199,"f":26},"D":{"i":-787,"f":98},"cn0":206,"lock":15,"flags":15,"sid":{"sat":12,"code":20}},{"P":1375221356,"L":{"i":110749005,"f":163},"D":{"i":-1642,"f":216},"cn0":169,"lock":15,"flags":15,"sid":{"sat":33,"code":20}}]} +{"crc":49809,"length":9,"msg_type":117,"payload":"/wAAAAAAAAAA","preamble":85,"sender":22963,"mask":255,"l1ca_bias":0,"l1p_bias":0,"l2ca_bias":0,"l2p_bias":0} +{"crc":62072,"length":11,"msg_type":258,"payload":"MggAES8QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271520000,"ns_residual":0,"flags":1} +{"crc":42710,"length":16,"msg_type":259,"payload":"EQARLxDkBwMZAxkB/smaOw==","preamble":85,"sender":22963,"flags":17,"tow":271520000,"year":2020,"month":3,"day":25,"hours":3,"minutes":25,"seconds":1,"ns":999999998} +{"crc":48569,"length":34,"msg_type":522,"payload":"ABEvEEnq6eVl6kJAimJdGlaSXsB6pImVfgcxwAECWwQPBg==","preamble":85,"sender":22963,"tow":271520000,"lat":37.831234683243174,"lon":-122.28650530929204,"height":-17.029275270561335,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":30203,"length":22,"msg_type":526,"payload":"ABEvEAAAAAD8////BwAAAPEAygIPAg==","preamble":85,"sender":22963,"tow":271520000,"n":0,"e":-4,"d":7,"h_accuracy":241,"v_accuracy":714,"n_sats":15,"flags":2} +{"crc":23916,"length":15,"msg_type":520,"payload":"ABEvEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271520000,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":45810,"length":22,"msg_type":524,"payload":"ABEvEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271520000,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":52684,"length":6,"msg_type":528,"payload":"ABEvEP//","preamble":85,"sender":22963,"tow":271520000,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":40942,"length":4,"msg_type":65535,"payload":"AAUCgA==","preamble":85,"sender":22963,"flags":2147616000} +{"crc":2168,"length":24,"msg_type":72,"payload":"UO0a3iqORMHK1UJhIkRQwc9nFIPvrk1B","preamble":85,"sender":22963,"x":-2694229.735196747,"y":-4264073.519704292,"z":3890655.0240602265} +{"crc":47991,"length":26,"msg_type":23,"payload":"bWFpbgAAAAAAAAAAAAAAAAAAAAAAAAx1AAA=","preamble":85,"sender":22963,"name":"main\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":0,"stack_free":29964} +{"crc":39855,"length":26,"msg_type":23,"payload":"aWRsZQAAAAAAAAAAAAAAAAAAAAD9AHwAAAA=","preamble":85,"sender":22963,"name":"idle\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":253,"stack_free":124} +{"crc":54377,"length":26,"msg_type":23,"payload":"cnBtc2cAAAAAAAAAAAAAAAAAAAABAPwNAAA=","preamble":85,"sender":22963,"name":"rpmsg\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":1,"stack_free":3580} +{"crc":51784,"length":26,"msg_type":23,"payload":"U0JQAAAAAAAAAAAAAAAAAAAAAAAAAPz/AAA=","preamble":85,"sender":22963,"name":"SBP\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":0,"stack_free":65532} +{"crc":33651,"length":26,"msg_type":23,"payload":"TkFQAAAAAAAAAAAAAAAAAAAAAAAAAASAAAA=","preamble":85,"sender":22963,"name":"NAP\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":0,"stack_free":32772} +{"crc":22620,"length":26,"msg_type":23,"payload":"bWFuYWdlIFBWAAAAAAAAAAAAAAAAABQEAAA=","preamble":85,"sender":22963,"name":"manage PV\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":0,"stack_free":1044} +{"crc":14252,"length":26,"msg_type":23,"payload":"SU1VAAAAAAAAAAAAAAAAAAAAAAAAAPQHAAA=","preamble":85,"sender":22963,"name":"IMU\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":0,"stack_free":2036} +{"crc":18976,"length":26,"msg_type":23,"payload":"SU1VIGF1eAAAAAAAAAAAAAAAAAAAAEwIAAA=","preamble":85,"sender":22963,"name":"IMU aux\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":0,"stack_free":2124} +{"crc":26120,"length":26,"msg_type":23,"payload":"bmRiAAAAAAAAAAAAAAAAAAAAAAAAAFAMAAA=","preamble":85,"sender":22963,"name":"ndb\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":0,"stack_free":3152} +{"crc":11008,"length":26,"msg_type":23,"payload":"TkFQIFRyYWNraW5nAAAAAAAAAAAgAdR3AAA=","preamble":85,"sender":22963,"name":"NAP Tracking\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":288,"stack_free":30676} +{"crc":55602,"length":26,"msg_type":23,"payload":"ZGVjb2RlAAAAAAAAAAAAAAAAAAAJANQGAAA=","preamble":85,"sender":22963,"name":"decode\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":9,"stack_free":1748} +{"crc":56072,"length":26,"msg_type":23,"payload":"bWFuYWdlIGFjcQAAAAAAAAAAAAAeAaR3AAA=","preamble":85,"sender":22963,"name":"manage acq\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":286,"stack_free":30628} +{"crc":58531,"length":26,"msg_type":23,"payload":"c3lzdGVtIG1vbml0b3IAAAAAAAAAACwGAAA=","preamble":85,"sender":22963,"name":"system monitor\u0000\u0000\u0000\u0000\u0000\u0000","cpu":0,"stack_free":1580} +{"crc":44438,"length":26,"msg_type":23,"payload":"V2F0Y2hkb2cAAAAAAAAAAAAAAAAAAOQDAAA=","preamble":85,"sender":22963,"name":"Watchdog\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":0,"stack_free":996} +{"crc":61599,"length":26,"msg_type":23,"payload":"c3RhcmxpbmcAAAAAAAAAAAAAAACWAPz/AAA=","preamble":85,"sender":22963,"name":"starling\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":150,"stack_free":65532} +{"crc":57561,"length":26,"msg_type":23,"payload":"bWVfY2FsY19wdnQAAAAAAAAAAAAJAIwjAAA=","preamble":85,"sender":22963,"name":"me_calc_pvt\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":9,"stack_free":9100} +{"crc":38576,"length":26,"msg_type":23,"payload":"UFBTAAAAAAAAAAAAAAAAAAAAAAAAAEgHAAA=","preamble":85,"sender":22963,"name":"PPS\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":0,"stack_free":1864} +{"crc":50933,"length":26,"msg_type":23,"payload":"c3BlY3RydW0gYW5hbHl6ZXIAAAAAANQPAAA=","preamble":85,"sender":22963,"name":"spectrum analyzer\u0000\u0000\u0000","cpu":0,"stack_free":4052} +{"crc":38578,"length":11,"msg_type":258,"payload":"MghkES8QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271520100,"ns_residual":0,"flags":1} +{"crc":45173,"length":16,"msg_type":259,"payload":"EWQRLxDkBwMZAxkC/uD1BQ==","preamble":85,"sender":22963,"flags":17,"tow":271520100,"year":2020,"month":3,"day":25,"hours":3,"minutes":25,"seconds":2,"ns":99999998} +{"crc":27436,"length":34,"msg_type":522,"payload":"ZBEvEDwoKOZl6kJAPs87GlaSXsCodl+H3wgxwAECWwQPBg==","preamble":85,"sender":22963,"tow":271520100,"lat":37.83123471222686,"lon":-122.28650527802253,"height":-17.03466077881481,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":5439,"length":22,"msg_type":526,"payload":"ZBEvEPz///8IAAAAAAAAAPEAygIPAg==","preamble":85,"sender":22963,"tow":271520100,"n":-4,"e":8,"d":0,"h_accuracy":241,"v_accuracy":714,"n_sats":15,"flags":2} +{"crc":29123,"length":15,"msg_type":520,"payload":"ZBEvEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271520100,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":43588,"length":22,"msg_type":524,"payload":"ZBEvEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271520100,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":38005,"length":6,"msg_type":528,"payload":"ZBEvEP//","preamble":85,"sender":22963,"tow":271520100,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":62933,"length":51,"msg_type":1025,"payload":"BkdMTyBMMk9GIE1FIDEgWysxMzAybXNdIGxvdyBDTjAgdG9vIGxvbmcsIGRyb3BwaW5n","preamble":85,"sender":22963,"level":6,"text":"GLO L2OF ME 1 [+1302ms] low CN0 too long, dropping"} +{"crc":15340,"length":11,"msg_type":258,"payload":"MgjIES8QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271520200,"ns_residual":0,"flags":1} +{"crc":46528,"length":16,"msg_type":259,"payload":"EcgRLxDkBwMZAxkC/sHrCw==","preamble":85,"sender":22963,"flags":17,"tow":271520200,"year":2020,"month":3,"day":25,"hours":3,"minutes":25,"seconds":2,"ns":199999998} +{"crc":11543,"length":34,"msg_type":522,"payload":"yBEvEIbHeuZl6kJAbFk6GlaSXsA+UzvsQgoxwAECWwQPBg==","preamble":85,"sender":22963,"tow":271520200,"lat":37.83123475070083,"lon":-122.28650527666258,"height":-17.04008366058701,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":6335,"length":22,"msg_type":526,"payload":"yBEvEAgAAAD5////8/////EAygIPAg==","preamble":85,"sender":22963,"tow":271520200,"n":8,"e":-7,"d":-13,"h_accuracy":241,"v_accuracy":714,"n_sats":15,"flags":2} +{"crc":1074,"length":15,"msg_type":520,"payload":"yBEvEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271520200,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":33694,"length":22,"msg_type":524,"payload":"yBEvEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271520200,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":32446,"length":6,"msg_type":528,"payload":"yBEvEP//","preamble":85,"sender":22963,"tow":271520200,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":10465,"length":11,"msg_type":258,"payload":"MggsEi8QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271520300,"ns_residual":0,"flags":1} +{"crc":56917,"length":16,"msg_type":259,"payload":"ESwSLxDkBwMZAxkC/qLhEQ==","preamble":85,"sender":22963,"flags":17,"tow":271520300,"year":2020,"month":3,"day":25,"hours":3,"minutes":25,"seconds":2,"ns":299999998} +{"crc":42052,"length":34,"msg_type":522,"payload":"LBIvENX20uZl6kJA4eg1GlaSXsBREi1dJg0xwAECWwQPBg==","preamble":85,"sender":22963,"tow":271520300,"lat":37.83123479176508,"lon":-122.28650527252786,"height":-17.051366637710377,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":4533,"length":22,"msg_type":526,"payload":"LBIvEAQAAAD4////IwAAAPEAygIPAg==","preamble":85,"sender":22963,"tow":271520300,"n":4,"e":-8,"d":35,"h_accuracy":241,"v_accuracy":714,"n_sats":15,"flags":2} +{"crc":61740,"length":15,"msg_type":520,"payload":"LBIvEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271520300,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":20358,"length":22,"msg_type":524,"payload":"LBIvEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271520300,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":7669,"length":6,"msg_type":528,"payload":"LBIvEP//","preamble":85,"sender":22963,"tow":271520300,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":33391,"length":237,"msg_type":97,"payload":"BQDWFQC1AgC7HwCoAAAAAAAAGQDbDADQHQDVEgDOAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwLOGQHMDAG7HwGYEgHFHQHDAAAABQHCAAAAAAAAAAAAAAAAZAPWYgOxZgOuZQPQXQPQAAAAagO0aAPLYgSrZgTNAAAAZATHZQTEaAS9AAAAagSwIwzIGgyrIgycGAy8GQyeDAy4Ewy5Fgy/AAAADA3SAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADA7EAAAAGQ7BCw6+GA7NAAAAHw6gIQ6aGRTJGBTXCxTBHxSuDBTOAAAAIRSpAAAA","preamble":85,"sender":22963,"states":[{"mesid":{"sat":5,"code":0},"cn0":214},{"mesid":{"sat":21,"code":0},"cn0":181},{"mesid":{"sat":2,"code":0},"cn0":187},{"mesid":{"sat":31,"code":0},"cn0":168},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":25,"code":0},"cn0":219},{"mesid":{"sat":12,"code":0},"cn0":208},{"mesid":{"sat":29,"code":0},"cn0":213},{"mesid":{"sat":18,"code":0},"cn0":206},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":131,"code":2},"cn0":206},{"mesid":{"sat":25,"code":1},"cn0":204},{"mesid":{"sat":12,"code":1},"cn0":187},{"mesid":{"sat":31,"code":1},"cn0":152},{"mesid":{"sat":18,"code":1},"cn0":197},{"mesid":{"sat":29,"code":1},"cn0":195},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":5,"code":1},"cn0":194},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":100,"code":3},"cn0":214},{"mesid":{"sat":98,"code":3},"cn0":177},{"mesid":{"sat":102,"code":3},"cn0":174},{"mesid":{"sat":101,"code":3},"cn0":208},{"mesid":{"sat":93,"code":3},"cn0":208},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":106,"code":3},"cn0":180},{"mesid":{"sat":104,"code":3},"cn0":203},{"mesid":{"sat":98,"code":4},"cn0":171},{"mesid":{"sat":102,"code":4},"cn0":205},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":100,"code":4},"cn0":199},{"mesid":{"sat":101,"code":4},"cn0":196},{"mesid":{"sat":104,"code":4},"cn0":189},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":106,"code":4},"cn0":176},{"mesid":{"sat":35,"code":12},"cn0":200},{"mesid":{"sat":26,"code":12},"cn0":171},{"mesid":{"sat":34,"code":12},"cn0":156},{"mesid":{"sat":24,"code":12},"cn0":188},{"mesid":{"sat":25,"code":12},"cn0":158},{"mesid":{"sat":12,"code":12},"cn0":184},{"mesid":{"sat":19,"code":12},"cn0":185},{"mesid":{"sat":22,"code":12},"cn0":191},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":12,"code":13},"cn0":210},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":12,"code":14},"cn0":196},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":25,"code":14},"cn0":193},{"mesid":{"sat":11,"code":14},"cn0":190},{"mesid":{"sat":24,"code":14},"cn0":205},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":31,"code":14},"cn0":160},{"mesid":{"sat":33,"code":14},"cn0":154},{"mesid":{"sat":25,"code":20},"cn0":201},{"mesid":{"sat":24,"code":20},"cn0":215},{"mesid":{"sat":11,"code":20},"cn0":193},{"mesid":{"sat":31,"code":20},"cn0":174},{"mesid":{"sat":12,"code":20},"cn0":206},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":33,"code":20},"cn0":169},{"mesid":{"sat":0,"code":0},"cn0":0}]} +{"crc":54849,"length":11,"msg_type":258,"payload":"MgiQEi8QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271520400,"ns_residual":0,"flags":1} +{"crc":39725,"length":16,"msg_type":259,"payload":"EZASLxDkBwMZAxkC/oPXFw==","preamble":85,"sender":22963,"flags":17,"tow":271520400,"year":2020,"month":3,"day":25,"hours":3,"minutes":25,"seconds":2,"ns":399999998} +{"crc":15832,"length":34,"msg_type":522,"payload":"kBIvEC7AG+dl6kJANIouGlaSXsBggLGYZg4xwAECWwQPBg==","preamble":85,"sender":22963,"tow":271520400,"lat":37.83123482565894,"lon":-122.28650526566418,"height":-17.05625299771816,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":47655,"length":22,"msg_type":526,"payload":"kBIvEAAAAAABAAAA5v////EAygIPAg==","preamble":85,"sender":22963,"tow":271520400,"n":0,"e":1,"d":-26,"h_accuracy":241,"v_accuracy":714,"n_sats":15,"flags":2} +{"crc":51799,"length":15,"msg_type":520,"payload":"kBIvEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271520400,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":56090,"length":22,"msg_type":524,"payload":"kBIvEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271520400,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":60858,"length":6,"msg_type":528,"payload":"kBIvEP//","preamble":85,"sender":22963,"tow":271520400,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":49809,"length":9,"msg_type":117,"payload":"/wAAAAAAAAAA","preamble":85,"sender":22963,"mask":255,"l1ca_bias":0,"l1p_bias":0,"l2ca_bias":0,"l2p_bias":0} +{"crc":45707,"length":11,"msg_type":258,"payload":"Mgj0Ei8QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271520500,"ns_residual":0,"flags":1} +{"crc":57297,"length":16,"msg_type":259,"payload":"EfQSLxDkBwMZAxkC/mTNHQ==","preamble":85,"sender":22963,"flags":17,"tow":271520500,"year":2020,"month":3,"day":25,"hours":3,"minutes":25,"seconds":2,"ns":499999998} +{"crc":61200,"length":34,"msg_type":522,"payload":"9BIvENTYUudl6kJA+bMGGlaSXsBDELIgbxExwAECWwQPBg==","preamble":85,"sender":22963,"tow":271520500,"lat":37.831234851315145,"lon":-122.28650522856323,"height":-17.068101924393215,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":14616,"length":22,"msg_type":526,"payload":"9BIvEPb///8NAAAAHwAAAPEAygIPAg==","preamble":85,"sender":22963,"tow":271520500,"n":-10,"e":13,"d":31,"h_accuracy":241,"v_accuracy":714,"n_sats":15,"flags":2} +{"crc":59128,"length":15,"msg_type":520,"payload":"9BIvEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271520500,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":50092,"length":22,"msg_type":524,"payload":"9BIvEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271520500,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":46083,"length":6,"msg_type":528,"payload":"9BIvEP//","preamble":85,"sender":22963,"tow":271520500,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":22534,"length":11,"msg_type":258,"payload":"MghYEy8QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271520600,"ns_residual":0,"flags":1} +{"crc":37925,"length":16,"msg_type":259,"payload":"EVgTLxDkBwMZAxkC/kXDIw==","preamble":85,"sender":22963,"flags":17,"tow":271520600,"year":2020,"month":3,"day":25,"hours":3,"minutes":25,"seconds":2,"ns":599999998} +{"crc":5235,"length":34,"msg_type":522,"payload":"WBMvEEREsOdl6kJAUD7zGVaSXsDvRk00JhMxwAECWwQPBg==","preamble":85,"sender":22963,"tow":271520600,"lat":37.83123489481707,"lon":-122.28650521044005,"height":-17.074801701418377,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":10566,"length":22,"msg_type":526,"payload":"WBMvEAwAAAD8////+P////EAygIPAg==","preamble":85,"sender":22963,"tow":271520600,"n":12,"e":-4,"d":-8,"h_accuracy":241,"v_accuracy":714,"n_sats":15,"flags":2} +{"crc":59496,"length":15,"msg_type":520,"payload":"WBMvEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271520600,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":16256,"length":22,"msg_type":524,"payload":"WBMvEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271520600,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":62617,"length":6,"msg_type":528,"payload":"WBMvEP//","preamble":85,"sender":22963,"tow":271520600,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":60393,"length":34,"msg_type":30583,"payload":"gwLcEi8QA5f/AB/+f/f/AAf//9f/f/AA////6M725+/lcA==","preamble":85,"sender":22963,"sid":{"sat":131,"code":2},"tow":271520476,"message_type":3,"data":[151,255,0,31,254,127,247,255,0,7,255,255,215,255,127,240,0,255,255,255,232,206,246,231,239,229,112]} +{"crc":33662,"length":11,"msg_type":258,"payload":"Mgi8Ey8QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271520700,"ns_residual":0,"flags":1} +{"crc":26747,"length":16,"msg_type":259,"payload":"EbwTLxDkBwMZAxkC/ia5KQ==","preamble":85,"sender":22963,"flags":17,"tow":271520700,"year":2020,"month":3,"day":25,"hours":3,"minutes":25,"seconds":2,"ns":699999998} +{"crc":43434,"length":34,"msg_type":522,"payload":"vBMvEDCr8+dl6kJAG0vVGVaSXsC2KZJdpBYxwAECWwQPBg==","preamble":85,"sender":22963,"tow":271520700,"lat":37.83123492620359,"lon":-122.28650518254692,"height":-17.088445518669424,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":8974,"length":22,"msg_type":526,"payload":"vBMvEP3///8EAAAAFgAAAPEAygIPAg==","preamble":85,"sender":22963,"tow":271520700,"n":-3,"e":4,"d":22,"h_accuracy":241,"v_accuracy":714,"n_sats":15,"flags":2} +{"crc":37077,"length":15,"msg_type":520,"payload":"vBMvEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271520700,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":40355,"length":22,"msg_type":524,"payload":"vBMvEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271520700,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":30976,"length":6,"msg_type":528,"payload":"vBMvEP//","preamble":85,"sender":22963,"tow":271520700,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":7482,"length":11,"msg_type":258,"payload":"MgggFC8QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271520800,"ns_residual":0,"flags":1} +{"crc":50935,"length":16,"msg_type":259,"payload":"ESAULxDkBwMZAxkC/gevLw==","preamble":85,"sender":22963,"flags":17,"tow":271520800,"year":2020,"month":3,"day":25,"hours":3,"minutes":25,"seconds":2,"ns":799999998} +{"crc":18280,"length":34,"msg_type":522,"payload":"IBQvEJS6VOhl6kJA1F++GVaSXsCwYBSLXxgxwAECWwQPBg==","preamble":85,"sender":22963,"tow":271520800,"lat":37.83123497140073,"lon":-122.28650516120189,"height":-17.09520787475111,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":4416,"length":22,"msg_type":526,"payload":"IBQvEAIAAAD9////9P////EAygIPAg==","preamble":85,"sender":22963,"tow":271520800,"n":2,"e":-3,"d":-12,"h_accuracy":241,"v_accuracy":714,"n_sats":15,"flags":2} +{"crc":18108,"length":15,"msg_type":520,"payload":"IBQvEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271520800,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":27154,"length":22,"msg_type":524,"payload":"IBQvEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271520800,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":56211,"length":6,"msg_type":528,"payload":"IBQvEP//","preamble":85,"sender":22963,"tow":271520800,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":4402,"length":237,"msg_type":97,"payload":"BQDWFQC1AgC7HwCnAAAAAAAAGQDbDADQHQDVEgDPAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwLNGQHMDAG7HwGYEgHFHQHDAAAABQHCAAAAAAAAAAAAAAAACwPWCQOyFAOuBQPQCgPQAAAABAO1FQPLCQSrFATNCgRPCwTIBQTEAAS9AAAABASwIwzIGgyrIgydGAy8GQydDAy5Ewy5Fgy/AAAADA3SAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADA7FAAAAGQ7BCw6+GA7OAAAAHw6gIQ6aGRTJGBTXCxTCHxSuDBTOAAAAIRSpAAAA","preamble":85,"sender":22963,"states":[{"mesid":{"sat":5,"code":0},"cn0":214},{"mesid":{"sat":21,"code":0},"cn0":181},{"mesid":{"sat":2,"code":0},"cn0":187},{"mesid":{"sat":31,"code":0},"cn0":167},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":25,"code":0},"cn0":219},{"mesid":{"sat":12,"code":0},"cn0":208},{"mesid":{"sat":29,"code":0},"cn0":213},{"mesid":{"sat":18,"code":0},"cn0":207},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":131,"code":2},"cn0":205},{"mesid":{"sat":25,"code":1},"cn0":204},{"mesid":{"sat":12,"code":1},"cn0":187},{"mesid":{"sat":31,"code":1},"cn0":152},{"mesid":{"sat":18,"code":1},"cn0":197},{"mesid":{"sat":29,"code":1},"cn0":195},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":5,"code":1},"cn0":194},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":11,"code":3},"cn0":214},{"mesid":{"sat":9,"code":3},"cn0":178},{"mesid":{"sat":20,"code":3},"cn0":174},{"mesid":{"sat":5,"code":3},"cn0":208},{"mesid":{"sat":10,"code":3},"cn0":208},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":4,"code":3},"cn0":181},{"mesid":{"sat":21,"code":3},"cn0":203},{"mesid":{"sat":9,"code":4},"cn0":171},{"mesid":{"sat":20,"code":4},"cn0":205},{"mesid":{"sat":10,"code":4},"cn0":79},{"mesid":{"sat":11,"code":4},"cn0":200},{"mesid":{"sat":5,"code":4},"cn0":196},{"mesid":{"sat":0,"code":4},"cn0":189},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":4,"code":4},"cn0":176},{"mesid":{"sat":35,"code":12},"cn0":200},{"mesid":{"sat":26,"code":12},"cn0":171},{"mesid":{"sat":34,"code":12},"cn0":157},{"mesid":{"sat":24,"code":12},"cn0":188},{"mesid":{"sat":25,"code":12},"cn0":157},{"mesid":{"sat":12,"code":12},"cn0":185},{"mesid":{"sat":19,"code":12},"cn0":185},{"mesid":{"sat":22,"code":12},"cn0":191},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":12,"code":13},"cn0":210},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":12,"code":14},"cn0":197},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":25,"code":14},"cn0":193},{"mesid":{"sat":11,"code":14},"cn0":190},{"mesid":{"sat":24,"code":14},"cn0":206},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":31,"code":14},"cn0":160},{"mesid":{"sat":33,"code":14},"cn0":154},{"mesid":{"sat":25,"code":20},"cn0":201},{"mesid":{"sat":24,"code":20},"cn0":215},{"mesid":{"sat":11,"code":20},"cn0":194},{"mesid":{"sat":31,"code":20},"cn0":174},{"mesid":{"sat":12,"code":20},"cn0":206},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":33,"code":20},"cn0":169},{"mesid":{"sat":0,"code":0},"cn0":0}]} +{"crc":53239,"length":132,"msg_type":151,"payload":"AgAaHQUAKzUMAFEtFQB9GRkAbUYaAKEBHQChNx8AlQ4EAxUWBQMyIQYDTggJA18OCgNxKQsDmCUMA6oDEwMiBxQDDDEVA5UlDAyUKRMMIyAUDA8CFgxDJBgMgiMZDJ0OGgxnFSIMjhEjDCItCw6LMgwODzwYDmw2GQ6XKR8OVREhDiAP","preamble":85,"sender":22963,"azel":[{"sid":{"sat":2,"code":0},"az":26,"el":29},{"sid":{"sat":5,"code":0},"az":43,"el":53},{"sid":{"sat":12,"code":0},"az":81,"el":45},{"sid":{"sat":21,"code":0},"az":125,"el":25},{"sid":{"sat":25,"code":0},"az":109,"el":70},{"sid":{"sat":26,"code":0},"az":161,"el":1},{"sid":{"sat":29,"code":0},"az":161,"el":55},{"sid":{"sat":31,"code":0},"az":149,"el":14},{"sid":{"sat":4,"code":3},"az":21,"el":22},{"sid":{"sat":5,"code":3},"az":50,"el":33},{"sid":{"sat":6,"code":3},"az":78,"el":8},{"sid":{"sat":9,"code":3},"az":95,"el":14},{"sid":{"sat":10,"code":3},"az":113,"el":41},{"sid":{"sat":11,"code":3},"az":152,"el":37},{"sid":{"sat":12,"code":3},"az":170,"el":3},{"sid":{"sat":19,"code":3},"az":34,"el":7},{"sid":{"sat":20,"code":3},"az":12,"el":49},{"sid":{"sat":21,"code":3},"az":149,"el":37},{"sid":{"sat":12,"code":12},"az":148,"el":41},{"sid":{"sat":19,"code":12},"az":35,"el":32},{"sid":{"sat":20,"code":12},"az":15,"el":2},{"sid":{"sat":22,"code":12},"az":67,"el":36},{"sid":{"sat":24,"code":12},"az":130,"el":35},{"sid":{"sat":25,"code":12},"az":157,"el":14},{"sid":{"sat":26,"code":12},"az":103,"el":21},{"sid":{"sat":34,"code":12},"az":142,"el":17},{"sid":{"sat":35,"code":12},"az":34,"el":45},{"sid":{"sat":11,"code":14},"az":139,"el":50},{"sid":{"sat":12,"code":14},"az":15,"el":60},{"sid":{"sat":24,"code":14},"az":108,"el":54},{"sid":{"sat":25,"code":14},"az":151,"el":41},{"sid":{"sat":31,"code":14},"az":85,"el":17},{"sid":{"sat":33,"code":14},"az":32,"el":15}]} +{"crc":39323,"length":11,"msg_type":258,"payload":"MgiEFC8QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271520900,"ns_residual":0,"flags":1} +{"crc":30658,"length":16,"msg_type":259,"payload":"EYQULxDkBwMZAxkC/uikNQ==","preamble":85,"sender":22963,"flags":17,"tow":271520900,"year":2020,"month":3,"day":25,"hours":3,"minutes":25,"seconds":2,"ns":899999998} +{"crc":33859,"length":34,"msg_type":522,"payload":"hBQvEHDqpehl6kJAWAqeGVaSXsCZH/vuUxoxwAECWwQPBg==","preamble":85,"sender":22963,"tow":271520900,"lat":37.83123500920635,"lon":-122.28650513108857,"height":-17.102843223866874,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":59836,"length":22,"msg_type":526,"payload":"hBQvEP7////6////EQAAAPEAygIPAg==","preamble":85,"sender":22963,"tow":271520900,"n":-2,"e":-6,"d":17,"h_accuracy":241,"v_accuracy":714,"n_sats":15,"flags":2} +{"crc":5128,"length":15,"msg_type":520,"payload":"hBQvEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271520900,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":7531,"length":22,"msg_type":524,"payload":"hBQvEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271520900,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":15386,"length":6,"msg_type":528,"payload":"hBQvEP//","preamble":85,"sender":22963,"tow":271520900,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":3413,"length":249,"msg_type":74,"payload":"6BQvEAAAAAAyCEAcJ7Q+xReXBv9G/9jWDw8FAO3uFEXyskIHUn0I87UPDxUAxLn0RW44WgdLU/anuw8PAgBy6QJJk22sB/Vx/qynDw8fACILJz00W20Gs5f7odoPDxkAEbu3QMhHzQafafRs0A8PDADCQc8+AvGZBiLNBSXVDw8dAD0LJz2aGAIFpZH8XMwPDxkBu7q3QKTXTAWx+fZXuw8PDAEd6QJJIrn6BZjL/iOXDw8fAXdBzz5n1iQFPIQElsMPDx0B2Ca0PkaeIgWFb/9pwg8PBQE/Wvs+qSq7BlaLBOPWDw8LA3yB2UR+YloHNcnuW7IPDwkD","preamble":85,"sender":22963,"header":{"t":{"tow":271521000,"ns_residual":0,"wn":2098},"n_obs":64},"obs":[{"P":1051993884,"L":{"i":110565317,"f":255},"D":{"i":-186,"f":216},"cn0":214,"lock":15,"flags":15,"sid":{"sat":5,"code":0}},{"P":1158999789,"L":{"i":121811698,"f":82},"D":{"i":2173,"f":243},"cn0":181,"lock":15,"flags":15,"sid":{"sat":21,"code":0}},{"P":1173666244,"L":{"i":123353198,"f":75},"D":{"i":-2477,"f":167},"cn0":187,"lock":15,"flags":15,"sid":{"sat":2,"code":0}},{"P":1224927602,"L":{"i":128740755,"f":245},"D":{"i":-399,"f":172},"cn0":167,"lock":15,"flags":15,"sid":{"sat":31,"code":0}},{"P":1025968930,"L":{"i":107830068,"f":179},"D":{"i":-1129,"f":161},"cn0":218,"lock":15,"flags":15,"sid":{"sat":25,"code":0}},{"P":1085782801,"L":{"i":114116552,"f":159},"D":{"i":-2967,"f":108},"cn0":208,"lock":15,"flags":15,"sid":{"sat":12,"code":0}},{"P":1053770178,"L":{"i":110752002,"f":34},"D":{"i":1485,"f":37},"cn0":213,"lock":15,"flags":15,"sid":{"sat":29,"code":0}},{"P":1025968957,"L":{"i":84023450,"f":165},"D":{"i":-879,"f":92},"cn0":204,"lock":15,"flags":15,"sid":{"sat":25,"code":1}},{"P":1085782715,"L":{"i":88922020,"f":177},"D":{"i":-2311,"f":87},"cn0":187,"lock":15,"flags":15,"sid":{"sat":12,"code":1}},{"P":1224927517,"L":{"i":100317474,"f":152},"D":{"i":-309,"f":35},"cn0":151,"lock":15,"flags":15,"sid":{"sat":31,"code":1}},{"P":1053770103,"L":{"i":86300263,"f":60},"D":{"i":1156,"f":150},"cn0":195,"lock":15,"flags":15,"sid":{"sat":29,"code":1}},{"P":1051993816,"L":{"i":86154822,"f":133},"D":{"i":-145,"f":105},"cn0":194,"lock":15,"flags":15,"sid":{"sat":5,"code":1}},{"P":1056660031,"L":{"i":112929449,"f":86},"D":{"i":1163,"f":227},"cn0":214,"lock":15,"flags":15,"sid":{"sat":11,"code":3}},{"P":1155105148,"L":{"i":123363966,"f":53},"D":{"i":-4407,"f":91},"cn0":178,"lock":15,"flags":15,"sid":{"sat":9,"code":3}}]} +{"crc":51072,"length":249,"msg_type":74,"payload":"6BQvEAAAAAAyCEF2hS49XheLBg5G++euDw8UAyUlB0DeZtgGGZQIk9APDwUDjENoPgRApwbPGvQg0A8PCgMYkghD0+EtB8rZ+tK1Dw8EA3IXKT9ze8IGpFcGUMsPDxUDxoHZRMETuAUknvK3qw8PCQSjhi49bNkWBeBS/PXNDw8UBDpb+z6qPTwFe4gDucgPDwsERiYHQLD6UgWLrQZmxA8PBQRWkwhDt3aVBWf/+wWwDw8EBOiylkUTUT8Hbyb6VsgPDyMMMmP2SSntswdUQPSRqw8PGgx6SxRMLF3sB+vLCAOcDw8iDNHEoUedynUH7un6ELwPDxgM","preamble":85,"sender":22963,"header":{"t":{"tow":271521000,"ns_residual":0,"wn":2098},"n_obs":65},"obs":[{"P":1026458998,"L":{"i":109778782,"f":14},"D":{"i":-1210,"f":231},"cn0":174,"lock":15,"flags":15,"sid":{"sat":20,"code":3}},{"P":1074210085,"L":{"i":114845406,"f":25},"D":{"i":2196,"f":147},"cn0":208,"lock":15,"flags":15,"sid":{"sat":5,"code":3}},{"P":1047020428,"L":{"i":111624196,"f":207},"D":{"i":-3046,"f":32},"cn0":208,"lock":15,"flags":15,"sid":{"sat":10,"code":3}},{"P":1124635160,"L":{"i":120447443,"f":202},"D":{"i":-1319,"f":210},"cn0":181,"lock":15,"flags":15,"sid":{"sat":4,"code":3}},{"P":1059657586,"L":{"i":113408883,"f":164},"D":{"i":1623,"f":80},"cn0":203,"lock":15,"flags":15,"sid":{"sat":21,"code":3}},{"P":1155105222,"L":{"i":95949761,"f":36},"D":{"i":-3426,"f":183},"cn0":171,"lock":15,"flags":15,"sid":{"sat":9,"code":4}},{"P":1026459299,"L":{"i":85383532,"f":224},"D":{"i":-942,"f":245},"cn0":205,"lock":15,"flags":15,"sid":{"sat":20,"code":4}},{"P":1056660282,"L":{"i":87834026,"f":123},"D":{"i":904,"f":185},"cn0":200,"lock":15,"flags":15,"sid":{"sat":11,"code":4}},{"P":1074210374,"L":{"i":89324208,"f":139},"D":{"i":1709,"f":102},"cn0":196,"lock":15,"flags":15,"sid":{"sat":5,"code":4}},{"P":1124635478,"L":{"i":93681335,"f":103},"D":{"i":-1025,"f":5},"cn0":176,"lock":15,"flags":15,"sid":{"sat":4,"code":4}},{"P":1167504104,"L":{"i":121590035,"f":111},"D":{"i":-1498,"f":86},"cn0":200,"lock":15,"flags":15,"sid":{"sat":35,"code":12}},{"P":1240884018,"L":{"i":129232169,"f":84},"D":{"i":-3008,"f":145},"cn0":171,"lock":15,"flags":15,"sid":{"sat":26,"code":12}},{"P":1276398458,"L":{"i":132930860,"f":235},"D":{"i":2251,"f":3},"cn0":156,"lock":15,"flags":15,"sid":{"sat":34,"code":12}},{"P":1201784017,"L":{"i":125160093,"f":238},"D":{"i":-1303,"f":16},"cn0":188,"lock":15,"flags":15,"sid":{"sat":24,"code":12}}]} +{"crc":53130,"length":249,"msg_type":74,"payload":"6BQvEAAAAAAyCEL9HRJNR8wGCPktBYOeDw8ZDNlOTUVHrDcHq00GqLkPDwwMCohDRyj6awec3f77uA8PEwz+pFxHsJduB0JTCZS/Dw8WDIlOTUXyvJQFXd8EC9EPDwwN9wwIQrSg8Aa2/PvcxQ8PDA6k9B9L1ErlBz4/BC3CDw8ZDpcgIEftr3kHMxkERb8PDwsOlV4pQxgJDwciL/lPzg8PGA4N7kpRWD6LCBWc8wagDw8fDjiG+FEFfZ0IcqP3B5sPDyEOi/QfS0rIDAaaQgOTyQ8PGRStYClD05xoBbfH+kLXDw8YFOQfIEfYVLoFHCID1cIPDwsU","preamble":85,"sender":22963,"header":{"t":{"tow":271521000,"ns_residual":0,"wn":2098},"n_obs":66},"obs":[{"P":1293032957,"L":{"i":134663239,"f":249},"D":{"i":1325,"f":131},"cn0":158,"lock":15,"flags":15,"sid":{"sat":25,"code":12}},{"P":1162694361,"L":{"i":121089095,"f":171},"D":{"i":1613,"f":168},"cn0":185,"lock":15,"flags":15,"sid":{"sat":12,"code":12}},{"P":1195608074,"L":{"i":124516904,"f":156},"D":{"i":-291,"f":251},"cn0":184,"lock":15,"flags":15,"sid":{"sat":19,"code":12}},{"P":1197253886,"L":{"i":124688304,"f":66},"D":{"i":2387,"f":148},"cn0":191,"lock":15,"flags":15,"sid":{"sat":22,"code":12}},{"P":1162694281,"L":{"i":93633778,"f":93},"D":{"i":1247,"f":11},"cn0":209,"lock":15,"flags":15,"sid":{"sat":12,"code":13}},{"P":1107823863,"L":{"i":116433076,"f":182},"D":{"i":-1028,"f":220},"cn0":197,"lock":15,"flags":15,"sid":{"sat":12,"code":14}},{"P":1260385444,"L":{"i":132467412,"f":62},"D":{"i":1087,"f":45},"cn0":194,"lock":15,"flags":15,"sid":{"sat":25,"code":14}},{"P":1193287831,"L":{"i":125415405,"f":51},"D":{"i":1049,"f":69},"cn0":191,"lock":15,"flags":15,"sid":{"sat":11,"code":14}},{"P":1126784661,"L":{"i":118425880,"f":34},"D":{"i":-1745,"f":79},"cn0":206,"lock":15,"flags":15,"sid":{"sat":24,"code":14}},{"P":1363865101,"L":{"i":143343192,"f":21},"D":{"i":-3172,"f":6},"cn0":160,"lock":15,"flags":15,"sid":{"sat":31,"code":14}},{"P":1375241784,"L":{"i":144538885,"f":114},"D":{"i":-2141,"f":7},"cn0":155,"lock":15,"flags":15,"sid":{"sat":33,"code":14}},{"P":1260385419,"L":{"i":101501002,"f":154},"D":{"i":834,"f":147},"cn0":201,"lock":15,"flags":15,"sid":{"sat":25,"code":20}},{"P":1126785197,"L":{"i":90741971,"f":183},"D":{"i":-1337,"f":66},"cn0":215,"lock":15,"flags":15,"sid":{"sat":24,"code":20}},{"P":1193287652,"L":{"i":96097496,"f":28},"D":{"i":802,"f":213},"cn0":194,"lock":15,"flags":15,"sid":{"sat":11,"code":20}}]} +{"crc":51661,"length":62,"msg_type":74,"payload":"6BQvEAAAAAAyCENe7kpRw/CLBnaA9mmuDw8fFFYMCEIJUFEFfe78PM8PDwwU94X4UbXrmQYSmfn3qQ8PIRQ=","preamble":85,"sender":22963,"header":{"t":{"tow":271521000,"ns_residual":0,"wn":2098},"n_obs":67},"obs":[{"P":1363865182,"L":{"i":109834435,"f":118},"D":{"i":-2432,"f":105},"cn0":174,"lock":15,"flags":15,"sid":{"sat":31,"code":20}},{"P":1107823702,"L":{"i":89214985,"f":125},"D":{"i":-786,"f":60},"cn0":207,"lock":15,"flags":15,"sid":{"sat":12,"code":20}},{"P":1375241719,"L":{"i":110750645,"f":18},"D":{"i":-1639,"f":247},"cn0":169,"lock":15,"flags":15,"sid":{"sat":33,"code":20}}]} +{"crc":49809,"length":9,"msg_type":117,"payload":"/wAAAAAAAAAA","preamble":85,"sender":22963,"mask":255,"l1ca_bias":0,"l1p_bias":0,"l2ca_bias":0,"l2p_bias":0} +{"crc":54446,"length":11,"msg_type":258,"payload":"MgjoFC8QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271521000,"ns_residual":0,"flags":1} +{"crc":2698,"length":16,"msg_type":259,"payload":"EegULxDkBwMZAxkC/smaOw==","preamble":85,"sender":22963,"flags":17,"tow":271521000,"year":2020,"month":3,"day":25,"hours":3,"minutes":25,"seconds":2,"ns":999999998} +{"crc":39240,"length":34,"msg_type":522,"payload":"6BQvEAWr5+hl6kJAExlyGVaSXsBp+EjGSRwxwAECWwQPBg==","preamble":85,"sender":22963,"tow":271521000,"lat":37.83123503982464,"lon":-122.28650509016397,"height":-17.110500710310962,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":59119,"length":22,"msg_type":526,"payload":"6BQvEPz///8FAAAAAQAAAPEAygIPAg==","preamble":85,"sender":22963,"tow":271521000,"n":-4,"e":5,"d":1,"h_accuracy":241,"v_accuracy":714,"n_sats":15,"flags":2} +{"crc":8162,"length":15,"msg_type":520,"payload":"6BQvEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271521000,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":23422,"length":22,"msg_type":524,"payload":"6BQvEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271521000,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":26849,"length":6,"msg_type":528,"payload":"6BQvEP//","preamble":85,"sender":22963,"tow":271521000,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":40942,"length":4,"msg_type":65535,"payload":"AAUCgA==","preamble":85,"sender":22963,"flags":2147616000} +{"crc":2168,"length":24,"msg_type":72,"payload":"UO0a3iqORMHK1UJhIkRQwc9nFIPvrk1B","preamble":85,"sender":22963,"x":-2694229.735196747,"y":-4264073.519704292,"z":3890655.0240602265} +{"crc":27839,"length":10,"msg_type":181,"payload":"4xbcA/MGUBUJFg==","preamble":85,"sender":22963,"dev_vin":5859,"cpu_vint":988,"cpu_vaux":1779,"cpu_temperature":5456,"fe_temperature":5641} +{"crc":6108,"length":11,"msg_type":258,"payload":"MghMFS8QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271521100,"ns_residual":0,"flags":1} +{"crc":24016,"length":16,"msg_type":259,"payload":"EUwVLxDkBwMZAxkD/uD1BQ==","preamble":85,"sender":22963,"flags":17,"tow":271521100,"year":2020,"month":3,"day":25,"hours":3,"minutes":25,"seconds":3,"ns":99999998} +{"crc":41122,"length":34,"msg_type":522,"payload":"TBUvEAEnZOll6kJAV0dPGVaSXsDY1ADhKx4xwAECWwQPBg==","preamble":85,"sender":22963,"tow":271521100,"lat":37.83123509779217,"lon":-122.286505057736,"height":-17.117857039168342,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":15414,"length":22,"msg_type":526,"payload":"TBUvEBEAAAD8////BwAAAPEAygIPAg==","preamble":85,"sender":22963,"tow":271521100,"n":17,"e":-4,"d":7,"h_accuracy":241,"v_accuracy":714,"n_sats":15,"flags":2} +{"crc":13879,"length":15,"msg_type":520,"payload":"TBUvEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271521100,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":63985,"length":22,"msg_type":524,"payload":"TBUvEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271521100,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":9529,"length":6,"msg_type":528,"payload":"TBUvEP//","preamble":85,"sender":22963,"tow":271521100,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":46757,"length":11,"msg_type":258,"payload":"MgiwFS8QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271521200,"ns_residual":0,"flags":1} +{"crc":15590,"length":16,"msg_type":259,"payload":"EbAVLxDkBwMZAxkD/sHrCw==","preamble":85,"sender":22963,"flags":17,"tow":271521200,"year":2020,"month":3,"day":25,"hours":3,"minutes":25,"seconds":3,"ns":199999998} +{"crc":44056,"length":34,"msg_type":522,"payload":"sBUvEEpDxull6kJAmk0iGVaSXsCWgBHCHR8xwAECWwQPBg==","preamble":85,"sender":22963,"tow":271521200,"lat":37.83123514347842,"lon":-122.28650501584926,"height":-17.121547822258968,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":13023,"length":22,"msg_type":526,"payload":"sBUvEPz///8FAAAA8v////EAygIPAg==","preamble":85,"sender":22963,"tow":271521200,"n":-4,"e":5,"d":-14,"h_accuracy":241,"v_accuracy":714,"n_sats":15,"flags":2} +{"crc":10053,"length":15,"msg_type":520,"payload":"sBUvEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271521200,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":47159,"length":22,"msg_type":524,"payload":"sBUvEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271521200,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":48998,"length":6,"msg_type":528,"payload":"sBUvEP//","preamble":85,"sender":22963,"tow":271521200,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":64113,"length":11,"msg_type":258,"payload":"MggUFi8QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271521300,"ns_residual":0,"flags":1} +{"crc":32122,"length":16,"msg_type":259,"payload":"ERQWLxDkBwMZAxkD/qLhEQ==","preamble":85,"sender":22963,"flags":17,"tow":271521300,"year":2020,"month":3,"day":25,"hours":3,"minutes":25,"seconds":3,"ns":299999998} +{"crc":25012,"length":34,"msg_type":522,"payload":"FBYvEEr+KOpl6kJA+o7nGFaSXsB2slM3QSExwAECWwQPBg==","preamble":85,"sender":22963,"tow":271521300,"lat":37.83123518945338,"lon":-122.28650496113906,"height":-17.129901369031778,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":12750,"length":22,"msg_type":526,"payload":"FBYvEPf///8IAAAAGAAAAPEAygIPAg==","preamble":85,"sender":22963,"tow":271521300,"n":-9,"e":8,"d":24,"h_accuracy":241,"v_accuracy":714,"n_sats":15,"flags":2} +{"crc":63570,"length":15,"msg_type":520,"payload":"FBYvEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271521300,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":41333,"length":22,"msg_type":524,"payload":"FBYvEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271521300,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":46653,"length":6,"msg_type":528,"payload":"FBYvEP//","preamble":85,"sender":22963,"tow":271521300,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":22968,"length":237,"msg_type":97,"payload":"BQDWFQC2AgC7HwCnAAAAAAAAGQDbDADQHQDVEgDPAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwLNGQHMDAG8HwGZEgHFHQHDAAAABQHCAAAAAAAAAAAAAAAAZAPWYgOxZgOuZQPQXQPQAAAAagO0aAPLYgSrZgTMXQRCZATIZQTEaAS9AAAAagSvIwzHGgyrIgybGAy8GQydDAy4Ewy4Fgy/AAAADA3RAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADA7EAAAAGQ7CCw6/GA7OAAAAHw6hIQ6aGRTIGBTXCxTCHxSuDBTOAAAAIRSpAAAA","preamble":85,"sender":22963,"states":[{"mesid":{"sat":5,"code":0},"cn0":214},{"mesid":{"sat":21,"code":0},"cn0":182},{"mesid":{"sat":2,"code":0},"cn0":187},{"mesid":{"sat":31,"code":0},"cn0":167},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":25,"code":0},"cn0":219},{"mesid":{"sat":12,"code":0},"cn0":208},{"mesid":{"sat":29,"code":0},"cn0":213},{"mesid":{"sat":18,"code":0},"cn0":207},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":131,"code":2},"cn0":205},{"mesid":{"sat":25,"code":1},"cn0":204},{"mesid":{"sat":12,"code":1},"cn0":188},{"mesid":{"sat":31,"code":1},"cn0":153},{"mesid":{"sat":18,"code":1},"cn0":197},{"mesid":{"sat":29,"code":1},"cn0":195},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":5,"code":1},"cn0":194},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":100,"code":3},"cn0":214},{"mesid":{"sat":98,"code":3},"cn0":177},{"mesid":{"sat":102,"code":3},"cn0":174},{"mesid":{"sat":101,"code":3},"cn0":208},{"mesid":{"sat":93,"code":3},"cn0":208},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":106,"code":3},"cn0":180},{"mesid":{"sat":104,"code":3},"cn0":203},{"mesid":{"sat":98,"code":4},"cn0":171},{"mesid":{"sat":102,"code":4},"cn0":204},{"mesid":{"sat":93,"code":4},"cn0":66},{"mesid":{"sat":100,"code":4},"cn0":200},{"mesid":{"sat":101,"code":4},"cn0":196},{"mesid":{"sat":104,"code":4},"cn0":189},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":106,"code":4},"cn0":175},{"mesid":{"sat":35,"code":12},"cn0":199},{"mesid":{"sat":26,"code":12},"cn0":171},{"mesid":{"sat":34,"code":12},"cn0":155},{"mesid":{"sat":24,"code":12},"cn0":188},{"mesid":{"sat":25,"code":12},"cn0":157},{"mesid":{"sat":12,"code":12},"cn0":184},{"mesid":{"sat":19,"code":12},"cn0":184},{"mesid":{"sat":22,"code":12},"cn0":191},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":12,"code":13},"cn0":209},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":12,"code":14},"cn0":196},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":25,"code":14},"cn0":194},{"mesid":{"sat":11,"code":14},"cn0":191},{"mesid":{"sat":24,"code":14},"cn0":206},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":31,"code":14},"cn0":161},{"mesid":{"sat":33,"code":14},"cn0":154},{"mesid":{"sat":25,"code":20},"cn0":200},{"mesid":{"sat":24,"code":20},"cn0":215},{"mesid":{"sat":11,"code":20},"cn0":194},{"mesid":{"sat":31,"code":20},"cn0":174},{"mesid":{"sat":12,"code":20},"cn0":206},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":33,"code":20},"cn0":169},{"mesid":{"sat":0,"code":0},"cn0":0}]} +{"crc":27804,"length":51,"msg_type":1025,"payload":"BkdMTyBMMk9GIE1FIDEgWysxMjA0bXNdIGxvdyBDTjAgdG9vIGxvbmcsIGRyb3BwaW5n","preamble":85,"sender":22963,"level":6,"text":"GLO L2OF ME 1 [+1204ms] low CN0 too long, dropping"} +{"crc":46916,"length":11,"msg_type":258,"payload":"Mgh4Fi8QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271521400,"ns_residual":0,"flags":1} +{"crc":2195,"length":16,"msg_type":259,"payload":"EXgWLxDkBwMZAxkD/oPXFw==","preamble":85,"sender":22963,"flags":17,"tow":271521400,"year":2020,"month":3,"day":25,"hours":3,"minutes":25,"seconds":3,"ns":399999998} +{"crc":19298,"length":34,"msg_type":522,"payload":"eBYvEK79tOpl6kJAeoK5GFaSXsD43Vk9WSIxwAECWwQPBg==","preamble":85,"sender":22963,"tow":271521400,"lat":37.83123525464485,"lon":-122.28650491825275,"height":-17.1341741890337,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":47961,"length":22,"msg_type":526,"payload":"eBYvEA4AAAAEAAAA7v////EAygIPAg==","preamble":85,"sender":22963,"tow":271521400,"n":14,"e":4,"d":-18,"h_accuracy":241,"v_accuracy":714,"n_sats":15,"flags":2} +{"crc":62392,"length":15,"msg_type":520,"payload":"eBYvEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271521400,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":59232,"length":22,"msg_type":524,"payload":"eBYvEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271521400,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":58054,"length":6,"msg_type":528,"payload":"eBYvEP//","preamble":85,"sender":22963,"tow":271521400,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":49809,"length":9,"msg_type":117,"payload":"/wAAAAAAAAAA","preamble":85,"sender":22963,"mask":255,"l1ca_bias":0,"l1p_bias":0,"l2ca_bias":0,"l2p_bias":0} +{"crc":13285,"length":11,"msg_type":258,"payload":"MgjcFi8QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271521500,"ns_residual":0,"flags":1} +{"crc":12916,"length":16,"msg_type":259,"payload":"EdwWLxDkBwMZAxkD/mTNHQ==","preamble":85,"sender":22963,"flags":17,"tow":271521500,"year":2020,"month":3,"day":25,"hours":3,"minutes":25,"seconds":3,"ns":499999998} +{"crc":640,"length":34,"msg_type":522,"payload":"3BYvEO9cI+tl6kJA57OPGFaSXsBUpyeqoiQxwAECWwQPBg==","preamble":85,"sender":22963,"tow":271521500,"lat":37.83123530604086,"lon":-122.28650487931701,"height":-17.143107065850316,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":47886,"length":22,"msg_type":526,"payload":"3BYvEPf///8EAAAABgAAAPEAygIPAg==","preamble":85,"sender":22963,"tow":271521500,"n":-9,"e":4,"d":6,"h_accuracy":241,"v_accuracy":714,"n_sats":15,"flags":2} +{"crc":41228,"length":15,"msg_type":520,"payload":"3BYvEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271521500,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":36889,"length":22,"msg_type":524,"payload":"3BYvEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271521500,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":1359,"length":6,"msg_type":528,"payload":"3BYvEP//","preamble":85,"sender":22963,"tow":271521500,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":11626,"length":11,"msg_type":258,"payload":"MghAFy8QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271521600,"ns_residual":0,"flags":1} +{"crc":43550,"length":16,"msg_type":259,"payload":"EUAXLxDkBwMZAxkD/kXDIw==","preamble":85,"sender":22963,"flags":17,"tow":271521600,"year":2020,"month":3,"day":25,"hours":3,"minutes":25,"seconds":3,"ns":599999998} +{"crc":54157,"length":34,"msg_type":522,"payload":"QBcvEAMMretl6kJAQ65vGFaSXsCAObUCliUxwAECWwQPBg==","preamble":85,"sender":22963,"tow":271521600,"lat":37.83123537015492,"lon":-122.28650484949416,"height":-17.146820229763307,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":58321,"length":22,"msg_type":526,"payload":"QBcvEAEAAAD5////9v////EAygIPAg==","preamble":85,"sender":22963,"tow":271521600,"n":1,"e":-7,"d":-10,"h_accuracy":241,"v_accuracy":714,"n_sats":15,"flags":2} +{"crc":31746,"length":15,"msg_type":520,"payload":"QBcvEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271521600,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":48094,"length":22,"msg_type":524,"payload":"QBcvEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271521600,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":27225,"length":6,"msg_type":528,"payload":"QBcvEP//","preamble":85,"sender":22963,"tow":271521600,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":21060,"length":34,"msg_type":30583,"payload":"gwLFFi8QBJf/f//+f/AAf//8/9/8f/f/f/f/7l5uqq//8A==","preamble":85,"sender":22963,"sid":{"sat":131,"code":2},"tow":271521477,"message_type":4,"data":[151,255,127,255,254,127,240,0,127,255,252,255,223,252,127,247,255,127,247,255,238,94,110,170,175,255,240]} +{"crc":62994,"length":11,"msg_type":258,"payload":"MgikFy8QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271521700,"ns_residual":0,"flags":1} +{"crc":22080,"length":16,"msg_type":259,"payload":"EaQXLxDkBwMZAxkD/ia5KQ==","preamble":85,"sender":22963,"flags":17,"tow":271521700,"year":2020,"month":3,"day":25,"hours":3,"minutes":25,"seconds":3,"ns":699999998} +{"crc":32745,"length":34,"msg_type":522,"payload":"pBcvEDO4JOxl6kJA3bM8GFaSXsAdUW0R1ycxwAECWwQPBg==","preamble":85,"sender":22963,"tow":271521700,"lat":37.83123542588182,"lon":-122.28650480201709,"height":-17.15562542837971,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":61611,"length":22,"msg_type":526,"payload":"pBcvEAcAAAD8////BQAAAPEAygIPAg==","preamble":85,"sender":22963,"tow":271521700,"n":7,"e":-4,"d":5,"h_accuracy":241,"v_accuracy":714,"n_sats":15,"flags":2} +{"crc":1215,"length":15,"msg_type":520,"payload":"pBcvEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271521700,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":6653,"length":22,"msg_type":524,"payload":"pBcvEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271521700,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":59328,"length":6,"msg_type":528,"payload":"pBcvEP//","preamble":85,"sender":22963,"tow":271521700,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":33422,"length":11,"msg_type":258,"payload":"MggIGC8QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271521800,"ns_residual":0,"flags":1} +{"crc":49209,"length":16,"msg_type":259,"payload":"EQgYLxDkBwMZAxkD/gevLw==","preamble":85,"sender":22963,"flags":17,"tow":271521800,"year":2020,"month":3,"day":25,"hours":3,"minutes":25,"seconds":3,"ns":799999998} +{"crc":48045,"length":34,"msg_type":522,"payload":"CBgvEDSEhexl6kJAhsMOGFaSXsA9Cnng6ykxwAECWwQPBg==","preamble":85,"sender":22963,"tow":271521800,"lat":37.831235470956386,"lon":-122.28650475923322,"height":-17.163755445051937,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":1687,"length":22,"msg_type":526,"payload":"CBgvEAcAAAD6//////////EAygIPAg==","preamble":85,"sender":22963,"tow":271521800,"n":7,"e":-6,"d":-1,"h_accuracy":241,"v_accuracy":714,"n_sats":15,"flags":2} +{"crc":59939,"length":15,"msg_type":520,"payload":"CBgvEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271521800,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":63185,"length":22,"msg_type":524,"payload":"CBgvEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271521800,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":26866,"length":6,"msg_type":528,"payload":"CBgvEP//","preamble":85,"sender":22963,"tow":271521800,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":13321,"length":237,"msg_type":97,"payload":"BQDWFQC1AgC8HwCoAAAAAAAAGQDbDADQHQDVEgDPAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwLNGQHNDAG7HwGYEgHFHQHDAAAABQHCAAAAAAAAAAAAAAAACwPWCQOxFAOuBQPQCgPQAAAABAO1FQPLCQSqFATMAAAACwTIBQTEAAS9AAAABASvIwzIGgyrIgydGAy8GQydDAy5Ewy4FgzAAAAADA3RAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADA7FAAAAGQ7CCw6+GA7OAAAAHw6hIQ6bGRTJGBTXCxTCHxSuDBTOAAAAIRSoAAAA","preamble":85,"sender":22963,"states":[{"mesid":{"sat":5,"code":0},"cn0":214},{"mesid":{"sat":21,"code":0},"cn0":181},{"mesid":{"sat":2,"code":0},"cn0":188},{"mesid":{"sat":31,"code":0},"cn0":168},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":25,"code":0},"cn0":219},{"mesid":{"sat":12,"code":0},"cn0":208},{"mesid":{"sat":29,"code":0},"cn0":213},{"mesid":{"sat":18,"code":0},"cn0":207},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":131,"code":2},"cn0":205},{"mesid":{"sat":25,"code":1},"cn0":205},{"mesid":{"sat":12,"code":1},"cn0":187},{"mesid":{"sat":31,"code":1},"cn0":152},{"mesid":{"sat":18,"code":1},"cn0":197},{"mesid":{"sat":29,"code":1},"cn0":195},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":5,"code":1},"cn0":194},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":11,"code":3},"cn0":214},{"mesid":{"sat":9,"code":3},"cn0":177},{"mesid":{"sat":20,"code":3},"cn0":174},{"mesid":{"sat":5,"code":3},"cn0":208},{"mesid":{"sat":10,"code":3},"cn0":208},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":4,"code":3},"cn0":181},{"mesid":{"sat":21,"code":3},"cn0":203},{"mesid":{"sat":9,"code":4},"cn0":170},{"mesid":{"sat":20,"code":4},"cn0":204},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":11,"code":4},"cn0":200},{"mesid":{"sat":5,"code":4},"cn0":196},{"mesid":{"sat":0,"code":4},"cn0":189},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":4,"code":4},"cn0":175},{"mesid":{"sat":35,"code":12},"cn0":200},{"mesid":{"sat":26,"code":12},"cn0":171},{"mesid":{"sat":34,"code":12},"cn0":157},{"mesid":{"sat":24,"code":12},"cn0":188},{"mesid":{"sat":25,"code":12},"cn0":157},{"mesid":{"sat":12,"code":12},"cn0":185},{"mesid":{"sat":19,"code":12},"cn0":184},{"mesid":{"sat":22,"code":12},"cn0":192},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":12,"code":13},"cn0":209},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":12,"code":14},"cn0":197},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":25,"code":14},"cn0":194},{"mesid":{"sat":11,"code":14},"cn0":190},{"mesid":{"sat":24,"code":14},"cn0":206},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":31,"code":14},"cn0":161},{"mesid":{"sat":33,"code":14},"cn0":155},{"mesid":{"sat":25,"code":20},"cn0":201},{"mesid":{"sat":24,"code":20},"cn0":215},{"mesid":{"sat":11,"code":20},"cn0":194},{"mesid":{"sat":31,"code":20},"cn0":174},{"mesid":{"sat":12,"code":20},"cn0":206},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":33,"code":20},"cn0":168},{"mesid":{"sat":0,"code":0},"cn0":0}]} +{"crc":34187,"length":128,"msg_type":151,"payload":"AgAaHQUAKzUMAFEtFQB9GRkAbUYaAKEBHQChNx8AlQ4EAxUWBQMyIQkDXw4KA3EpCwOYJQwDqgMTAyIHFAMMMRUDlSUMDJQpEwwjIBQMDwIWDEMkGAyCIxkMnQ4aDGcVIgyOESMMIi0LDosyDA4PPBgObDYZDpcpHw5VESEOIA8=","preamble":85,"sender":22963,"azel":[{"sid":{"sat":2,"code":0},"az":26,"el":29},{"sid":{"sat":5,"code":0},"az":43,"el":53},{"sid":{"sat":12,"code":0},"az":81,"el":45},{"sid":{"sat":21,"code":0},"az":125,"el":25},{"sid":{"sat":25,"code":0},"az":109,"el":70},{"sid":{"sat":26,"code":0},"az":161,"el":1},{"sid":{"sat":29,"code":0},"az":161,"el":55},{"sid":{"sat":31,"code":0},"az":149,"el":14},{"sid":{"sat":4,"code":3},"az":21,"el":22},{"sid":{"sat":5,"code":3},"az":50,"el":33},{"sid":{"sat":9,"code":3},"az":95,"el":14},{"sid":{"sat":10,"code":3},"az":113,"el":41},{"sid":{"sat":11,"code":3},"az":152,"el":37},{"sid":{"sat":12,"code":3},"az":170,"el":3},{"sid":{"sat":19,"code":3},"az":34,"el":7},{"sid":{"sat":20,"code":3},"az":12,"el":49},{"sid":{"sat":21,"code":3},"az":149,"el":37},{"sid":{"sat":12,"code":12},"az":148,"el":41},{"sid":{"sat":19,"code":12},"az":35,"el":32},{"sid":{"sat":20,"code":12},"az":15,"el":2},{"sid":{"sat":22,"code":12},"az":67,"el":36},{"sid":{"sat":24,"code":12},"az":130,"el":35},{"sid":{"sat":25,"code":12},"az":157,"el":14},{"sid":{"sat":26,"code":12},"az":103,"el":21},{"sid":{"sat":34,"code":12},"az":142,"el":17},{"sid":{"sat":35,"code":12},"az":34,"el":45},{"sid":{"sat":11,"code":14},"az":139,"el":50},{"sid":{"sat":12,"code":14},"az":15,"el":60},{"sid":{"sat":24,"code":14},"az":108,"el":54},{"sid":{"sat":25,"code":14},"az":151,"el":41},{"sid":{"sat":31,"code":14},"az":85,"el":17},{"sid":{"sat":33,"code":14},"az":32,"el":15}]} +{"crc":58948,"length":11,"msg_type":258,"payload":"MghsGC8QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271521900,"ns_residual":0,"flags":1} +{"crc":3863,"length":16,"msg_type":259,"payload":"EWwYLxDkBwMZAxkD/uikNQ==","preamble":85,"sender":22963,"flags":17,"tow":271521900,"year":2020,"month":3,"day":25,"hours":3,"minutes":25,"seconds":3,"ns":899999998} +{"crc":26032,"length":34,"msg_type":522,"payload":"bBgvELwt3uxl6kJAhj3bF1aSXsD19ilbbiwxwAECWwQPBg==","preamble":85,"sender":22963,"tow":271521900,"lat":37.831235512242955,"lon":-122.28650471124828,"height":-17.173558900590212,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":44099,"length":22,"msg_type":526,"payload":"bBgvEAQAAAAGAAAAHwAAAPEAygIPAg==","preamble":85,"sender":22963,"tow":271521900,"n":4,"e":6,"d":31,"h_accuracy":241,"v_accuracy":714,"n_sats":15,"flags":2} +{"crc":50828,"length":15,"msg_type":520,"payload":"bBgvEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271521900,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":61031,"length":22,"msg_type":524,"payload":"bBgvEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271521900,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":12619,"length":6,"msg_type":528,"payload":"bBgvEP//","preamble":85,"sender":22963,"tow":271521900,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":43496,"length":249,"msg_type":74,"payload":"0BgvEAAAAAAyCEAPLrQ+gBiXBhhF/1/WDw8FADieFEV1qkIHHH0IcLUPDxUA2hX1RRxCWgdfUfZuvA8PAgA0+AJJIW+sB3Vz/gynDw8fABs1Jz2eX20GFZb7dtsPDxkAaSm4QGFTzQYZZ/R00A8PDACUCs8+NeuZBurMBSDVDw8dAD01Jz0KHAIFr5D8Ks0PDxkBEym4QK3gTAXJ9/YuvA8PDAHZ9wJJWLr6BU/I/mqYDw8fAUYKzz7i0SQFtIYEGsMPDx0BvS20PteeIgWJbf/8wg8PBQHBL/s+Hya7BimKBBfWDw8LA4si2kS0c1oHzMvuIrEPDwkD","preamble":85,"sender":22963,"header":{"t":{"tow":271522000,"ns_residual":0,"wn":2098},"n_obs":64},"obs":[{"P":1051995663,"L":{"i":110565504,"f":24},"D":{"i":-187,"f":95},"cn0":214,"lock":15,"flags":15,"sid":{"sat":5,"code":0}},{"P":1158979128,"L":{"i":121809525,"f":28},"D":{"i":2173,"f":112},"cn0":181,"lock":15,"flags":15,"sid":{"sat":21,"code":0}},{"P":1173689818,"L":{"i":123355676,"f":95},"D":{"i":-2479,"f":110},"cn0":188,"lock":15,"flags":15,"sid":{"sat":2,"code":0}},{"P":1224931380,"L":{"i":128741153,"f":117},"D":{"i":-397,"f":12},"cn0":167,"lock":15,"flags":15,"sid":{"sat":31,"code":0}},{"P":1025979675,"L":{"i":107831198,"f":21},"D":{"i":-1130,"f":118},"cn0":219,"lock":15,"flags":15,"sid":{"sat":25,"code":0}},{"P":1085811049,"L":{"i":114119521,"f":25},"D":{"i":-2969,"f":116},"cn0":208,"lock":15,"flags":15,"sid":{"sat":12,"code":0}},{"P":1053756052,"L":{"i":110750517,"f":234},"D":{"i":1484,"f":32},"cn0":213,"lock":15,"flags":15,"sid":{"sat":29,"code":0}},{"P":1025979709,"L":{"i":84024330,"f":175},"D":{"i":-880,"f":42},"cn0":205,"lock":15,"flags":15,"sid":{"sat":25,"code":1}},{"P":1085810963,"L":{"i":88924333,"f":201},"D":{"i":-2313,"f":46},"cn0":188,"lock":15,"flags":15,"sid":{"sat":12,"code":1}},{"P":1224931289,"L":{"i":100317784,"f":79},"D":{"i":-312,"f":106},"cn0":152,"lock":15,"flags":15,"sid":{"sat":31,"code":1}},{"P":1053755974,"L":{"i":86299106,"f":180},"D":{"i":1158,"f":26},"cn0":195,"lock":15,"flags":15,"sid":{"sat":29,"code":1}},{"P":1051995581,"L":{"i":86154967,"f":137},"D":{"i":-147,"f":252},"cn0":194,"lock":15,"flags":15,"sid":{"sat":5,"code":1}},{"P":1056649153,"L":{"i":112928287,"f":41},"D":{"i":1162,"f":23},"cn0":214,"lock":15,"flags":15,"sid":{"sat":11,"code":3}},{"P":1155146379,"L":{"i":123368372,"f":204},"D":{"i":-4405,"f":34},"cn0":177,"lock":15,"flags":15,"sid":{"sat":9,"code":3}}]} +{"crc":62809,"length":249,"msg_type":74,"payload":"0BgvEAAAAAAyCEF8sS49FxyLBvlG+z6uDw8UA+vUBkBKXtgG0JEIo9APDwUDLrNoPutLpwYZGPS80A8PCgNNwghD++YtB2bX+nq0Dw8EAz/cKD8cdcIG0FYGLsoPDxUD/yLaRCQhuAWCnfKYqg8PCQTOsi49Gd0WBe1S/EXMDw8UBMcw+z4iOjwFkYYDBccPDwsEEtYGQAX0UgUZqgabww8PBQR/wwhDuXqVBcT8+82vDw8EBCHrlkXuVj8HQCX6V8cPDyMM99P2Sej4sweJP/T/qw8PGgwv9xNMY1TsB2rKCNudDw8iDLf1oUe1z3UH+Of6mbwPDxgM","preamble":85,"sender":22963,"header":{"t":{"tow":271522000,"ns_residual":0,"wn":2098},"n_obs":65},"obs":[{"P":1026470268,"L":{"i":109779991,"f":249},"D":{"i":-1210,"f":62},"cn0":174,"lock":15,"flags":15,"sid":{"sat":20,"code":3}},{"P":1074189547,"L":{"i":114843210,"f":208},"D":{"i":2193,"f":163},"cn0":208,"lock":15,"flags":15,"sid":{"sat":5,"code":3}},{"P":1047049006,"L":{"i":111627243,"f":25},"D":{"i":-3048,"f":188},"cn0":208,"lock":15,"flags":15,"sid":{"sat":10,"code":3}},{"P":1124647501,"L":{"i":120448763,"f":102},"D":{"i":-1321,"f":122},"cn0":180,"lock":15,"flags":15,"sid":{"sat":4,"code":3}},{"P":1059642431,"L":{"i":113407260,"f":208},"D":{"i":1622,"f":46},"cn0":202,"lock":15,"flags":15,"sid":{"sat":21,"code":3}},{"P":1155146495,"L":{"i":95953188,"f":130},"D":{"i":-3427,"f":152},"cn0":170,"lock":15,"flags":15,"sid":{"sat":9,"code":4}},{"P":1026470606,"L":{"i":85384473,"f":237},"D":{"i":-942,"f":69},"cn0":204,"lock":15,"flags":15,"sid":{"sat":20,"code":4}},{"P":1056649415,"L":{"i":87833122,"f":145},"D":{"i":902,"f":5},"cn0":199,"lock":15,"flags":15,"sid":{"sat":11,"code":4}},{"P":1074189842,"L":{"i":89322501,"f":25},"D":{"i":1706,"f":155},"cn0":195,"lock":15,"flags":15,"sid":{"sat":5,"code":4}},{"P":1124647807,"L":{"i":93682361,"f":196},"D":{"i":-1028,"f":205},"cn0":175,"lock":15,"flags":15,"sid":{"sat":4,"code":4}},{"P":1167518497,"L":{"i":121591534,"f":64},"D":{"i":-1499,"f":87},"cn0":199,"lock":15,"flags":15,"sid":{"sat":35,"code":12}},{"P":1240912887,"L":{"i":129235176,"f":137},"D":{"i":-3009,"f":255},"cn0":171,"lock":15,"flags":15,"sid":{"sat":26,"code":12}},{"P":1276376879,"L":{"i":132928611,"f":106},"D":{"i":2250,"f":219},"cn0":157,"lock":15,"flags":15,"sid":{"sat":34,"code":12}},{"P":1201796535,"L":{"i":125161397,"f":248},"D":{"i":-1305,"f":153},"cn0":188,"lock":15,"flags":15,"sid":{"sat":24,"code":12}}]} +{"crc":2173,"length":249,"msg_type":74,"payload":"0BgvEAAAAAAyCEJI7BFNHMcGCM4rBSKdDw8ZDGESTUX7pTcHOkwGQ7gPDwwM/pJDR0z7awcr2/7UuA8PEwx6S1xHXY5uB4ZRCQHADw8WDAsSTUUTuJQFgt4EotEPDwwNGTMIQrek8AYM/ftrxQ8PDA4zzB9LlUblB5E+BNHBDw8ZDqz5H0fVq3kHsBYEUb4PDwsOcZ8pQ+kPDwefLPnozg8PGA7tY0tRu0qLCJ2d8wqhDw8fDqnV+FFghZ0I7KX3K5sPDyEOJ8wfSwnFDAbzPgPcyQ8PGRSPoSlDDaJoBSnG+i/XDw8YFPb4H0e1UboFdyEDtsIPDwsU","preamble":85,"sender":22963,"header":{"t":{"tow":271522000,"ns_residual":0,"wn":2098},"n_obs":66},"obs":[{"P":1293020232,"L":{"i":134661916,"f":206},"D":{"i":1323,"f":34},"cn0":157,"lock":15,"flags":15,"sid":{"sat":25,"code":12}},{"P":1162678881,"L":{"i":121087483,"f":58},"D":{"i":1612,"f":67},"cn0":184,"lock":15,"flags":15,"sid":{"sat":12,"code":12}},{"P":1195610878,"L":{"i":124517196,"f":43},"D":{"i":-293,"f":212},"cn0":184,"lock":15,"flags":15,"sid":{"sat":19,"code":12}},{"P":1197230970,"L":{"i":124685917,"f":134},"D":{"i":2385,"f":1},"cn0":192,"lock":15,"flags":15,"sid":{"sat":22,"code":12}},{"P":1162678795,"L":{"i":93632531,"f":130},"D":{"i":1246,"f":162},"cn0":209,"lock":15,"flags":15,"sid":{"sat":12,"code":13}},{"P":1107833625,"L":{"i":116434103,"f":12},"D":{"i":-1027,"f":107},"cn0":197,"lock":15,"flags":15,"sid":{"sat":12,"code":14}},{"P":1260375091,"L":{"i":132466325,"f":145},"D":{"i":1086,"f":209},"cn0":193,"lock":15,"flags":15,"sid":{"sat":25,"code":14}},{"P":1193277868,"L":{"i":125414357,"f":176},"D":{"i":1046,"f":81},"cn0":190,"lock":15,"flags":15,"sid":{"sat":11,"code":14}},{"P":1126801265,"L":{"i":118427625,"f":159},"D":{"i":-1748,"f":232},"cn0":206,"lock":15,"flags":15,"sid":{"sat":24,"code":14}},{"P":1363895277,"L":{"i":143346363,"f":157},"D":{"i":-3171,"f":10},"cn0":161,"lock":15,"flags":15,"sid":{"sat":31,"code":14}},{"P":1375262121,"L":{"i":144541024,"f":236},"D":{"i":-2139,"f":43},"cn0":155,"lock":15,"flags":15,"sid":{"sat":33,"code":14}},{"P":1260375079,"L":{"i":101500169,"f":243},"D":{"i":830,"f":220},"cn0":201,"lock":15,"flags":15,"sid":{"sat":25,"code":20}},{"P":1126801807,"L":{"i":90743309,"f":41},"D":{"i":-1338,"f":47},"cn0":215,"lock":15,"flags":15,"sid":{"sat":24,"code":20}},{"P":1193277686,"L":{"i":96096693,"f":119},"D":{"i":801,"f":182},"cn0":194,"lock":15,"flags":15,"sid":{"sat":11,"code":20}}]} +{"crc":54639,"length":62,"msg_type":74,"payload":"0BgvEAAAAAAyCEM+ZEtRQfqLBo+A9r2uDw8fFHwyCEIbU1EF5O38GM4PDwwUddX4URzymQZnmfnzqA8PIRQ=","preamble":85,"sender":22963,"header":{"t":{"tow":271522000,"ns_residual":0,"wn":2098},"n_obs":67},"obs":[{"P":1363895358,"L":{"i":109836865,"f":143},"D":{"i":-2432,"f":189},"cn0":174,"lock":15,"flags":15,"sid":{"sat":31,"code":20}},{"P":1107833468,"L":{"i":89215771,"f":228},"D":{"i":-787,"f":24},"cn0":206,"lock":15,"flags":15,"sid":{"sat":12,"code":20}},{"P":1375262069,"L":{"i":110752284,"f":103},"D":{"i":-1639,"f":243},"cn0":168,"lock":15,"flags":15,"sid":{"sat":33,"code":20}}]} +{"crc":49809,"length":9,"msg_type":117,"payload":"/wAAAAAAAAAA","preamble":85,"sender":22963,"mask":255,"l1ca_bias":0,"l1p_bias":0,"l2ca_bias":0,"l2p_bias":0} +{"crc":6372,"length":11,"msg_type":258,"payload":"MgjQGC8QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271522000,"ns_residual":0,"flags":1} +{"crc":17102,"length":16,"msg_type":259,"payload":"EdAYLxDkBwMZAxkD/smaOw==","preamble":85,"sender":22963,"flags":17,"tow":271522000,"year":2020,"month":3,"day":25,"hours":3,"minutes":25,"seconds":3,"ns":999999998} +{"crc":17074,"length":34,"msg_type":522,"payload":"0BgvEM7fKe1l6kJAXgqdF1aSXsA481wX1C4xwAECWwQPBg==","preamble":85,"sender":22963,"tow":271522000,"lat":37.83123554749146,"lon":-122.28650465332018,"height":-17.182923755829705,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":4817,"length":22,"msg_type":526,"payload":"0BgvEO7///8OAAAAAgAAAPEAygIPAg==","preamble":85,"sender":22963,"tow":271522000,"n":-18,"e":14,"d":2,"h_accuracy":241,"v_accuracy":714,"n_sats":15,"flags":2} +{"crc":65015,"length":15,"msg_type":520,"payload":"0BgvEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271522000,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":31483,"length":22,"msg_type":524,"payload":"0BgvEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271522000,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":49412,"length":6,"msg_type":528,"payload":"0BgvEP//","preamble":85,"sender":22963,"tow":271522000,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":40942,"length":4,"msg_type":65535,"payload":"AAUCgA==","preamble":85,"sender":22963,"flags":2147616000} +{"crc":2168,"length":24,"msg_type":72,"payload":"UO0a3iqORMHK1UJhIkRQwc9nFIPvrk1B","preamble":85,"sender":22963,"x":-2694229.735196747,"y":-4264073.519704292,"z":3890655.0240602265} +{"crc":47991,"length":26,"msg_type":23,"payload":"bWFpbgAAAAAAAAAAAAAAAAAAAAAAAAx1AAA=","preamble":85,"sender":22963,"name":"main\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":0,"stack_free":29964} +{"crc":15608,"length":26,"msg_type":23,"payload":"aWRsZQAAAAAAAAAAAAAAAAAAAABmAXwAAAA=","preamble":85,"sender":22963,"name":"idle\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":358,"stack_free":124} +{"crc":58151,"length":26,"msg_type":23,"payload":"cnBtc2cAAAAAAAAAAAAAAAAAAAABANwNAAA=","preamble":85,"sender":22963,"name":"rpmsg\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":1,"stack_free":3548} +{"crc":51784,"length":26,"msg_type":23,"payload":"U0JQAAAAAAAAAAAAAAAAAAAAAAAAAPz/AAA=","preamble":85,"sender":22963,"name":"SBP\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":0,"stack_free":65532} +{"crc":33651,"length":26,"msg_type":23,"payload":"TkFQAAAAAAAAAAAAAAAAAAAAAAAAAASAAAA=","preamble":85,"sender":22963,"name":"NAP\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":0,"stack_free":32772} +{"crc":22620,"length":26,"msg_type":23,"payload":"bWFuYWdlIFBWAAAAAAAAAAAAAAAAABQEAAA=","preamble":85,"sender":22963,"name":"manage PV\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":0,"stack_free":1044} +{"crc":14252,"length":26,"msg_type":23,"payload":"SU1VAAAAAAAAAAAAAAAAAAAAAAAAAPQHAAA=","preamble":85,"sender":22963,"name":"IMU\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":0,"stack_free":2036} +{"crc":18976,"length":26,"msg_type":23,"payload":"SU1VIGF1eAAAAAAAAAAAAAAAAAAAAEwIAAA=","preamble":85,"sender":22963,"name":"IMU aux\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":0,"stack_free":2124} +{"crc":26120,"length":26,"msg_type":23,"payload":"bmRiAAAAAAAAAAAAAAAAAAAAAAAAAFAMAAA=","preamble":85,"sender":22963,"name":"ndb\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":0,"stack_free":3152} +{"crc":3951,"length":26,"msg_type":23,"payload":"TkFQIFRyYWNraW5nAAAAAAAAAAAcAdR3AAA=","preamble":85,"sender":22963,"name":"NAP Tracking\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":284,"stack_free":30676} +{"crc":22929,"length":26,"msg_type":23,"payload":"ZGVjb2RlAAAAAAAAAAAAAAAAAAAHANQGAAA=","preamble":85,"sender":22963,"name":"decode\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":7,"stack_free":1748} +{"crc":54128,"length":26,"msg_type":23,"payload":"bWFuYWdlIGFjcQAAAAAAAAAAAAC7AKR3AAA=","preamble":85,"sender":22963,"name":"manage acq\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":187,"stack_free":30628} +{"crc":58531,"length":26,"msg_type":23,"payload":"c3lzdGVtIG1vbml0b3IAAAAAAAAAACwGAAA=","preamble":85,"sender":22963,"name":"system monitor\u0000\u0000\u0000\u0000\u0000\u0000","cpu":0,"stack_free":1580} +{"crc":44438,"length":26,"msg_type":23,"payload":"V2F0Y2hkb2cAAAAAAAAAAAAAAAAAAOQDAAA=","preamble":85,"sender":22963,"name":"Watchdog\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":0,"stack_free":996} +{"crc":61599,"length":26,"msg_type":23,"payload":"c3RhcmxpbmcAAAAAAAAAAAAAAACWAPz/AAA=","preamble":85,"sender":22963,"name":"starling\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":150,"stack_free":65532} +{"crc":57561,"length":26,"msg_type":23,"payload":"bWVfY2FsY19wdnQAAAAAAAAAAAAJAIwjAAA=","preamble":85,"sender":22963,"name":"me_calc_pvt\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":9,"stack_free":9100} +{"crc":38576,"length":26,"msg_type":23,"payload":"UFBTAAAAAAAAAAAAAAAAAAAAAAAAAEgHAAA=","preamble":85,"sender":22963,"name":"PPS\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":0,"stack_free":1864} +{"crc":50933,"length":26,"msg_type":23,"payload":"c3BlY3RydW0gYW5hbHl6ZXIAAAAAANQPAAA=","preamble":85,"sender":22963,"name":"spectrum analyzer\u0000\u0000\u0000","cpu":0,"stack_free":4052} +{"crc":33871,"length":11,"msg_type":258,"payload":"Mgg0GS8QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271522100,"ns_residual":0,"flags":1} +{"crc":61976,"length":16,"msg_type":259,"payload":"ETQZLxDkBwMZAxkE/uD1BQ==","preamble":85,"sender":22963,"flags":17,"tow":271522100,"year":2020,"month":3,"day":25,"hours":3,"minutes":25,"seconds":4,"ns":99999998} +{"crc":63322,"length":34,"msg_type":522,"payload":"NBkvEH2ajO1l6kJAw+hmF1aSXsDnKbnSmzAxwAECWwQPBg==","preamble":85,"sender":22963,"tow":271522100,"lat":37.83123559346584,"lon":-122.2865046029065,"height":-17.18987767239187,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":29165,"length":22,"msg_type":526,"payload":"NBkvEAMAAAAOAAAADAAAAPEAygIPAg==","preamble":85,"sender":22963,"tow":271522100,"n":3,"e":14,"d":12,"h_accuracy":241,"v_accuracy":714,"n_sats":15,"flags":2} +{"crc":65067,"length":15,"msg_type":520,"payload":"NBkvEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271522100,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":3374,"length":22,"msg_type":524,"payload":"NBkvEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271522100,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":59084,"length":6,"msg_type":528,"payload":"NBkvEP//","preamble":85,"sender":22963,"tow":271522100,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":10513,"length":11,"msg_type":258,"payload":"MgiYGS8QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271522200,"ns_residual":0,"flags":1} +{"crc":63405,"length":16,"msg_type":259,"payload":"EZgZLxDkBwMZAxkE/sHrCw==","preamble":85,"sender":22963,"flags":17,"tow":271522200,"year":2020,"month":3,"day":25,"hours":3,"minutes":25,"seconds":4,"ns":199999998} +{"crc":58580,"length":34,"msg_type":522,"payload":"mBkvEG+p2+1l6kJA13VmF1aSXsDZecJRuTExwAECWwQPBg==","preamble":85,"sender":22963,"tow":271522200,"lat":37.83123563028027,"lon":-122.28650460248842,"height":-17.194233999232754,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":33570,"length":22,"msg_type":526,"payload":"mBkvEAQAAADw////9/////EAygIPAg==","preamble":85,"sender":22963,"tow":271522200,"n":4,"e":-16,"d":-9,"h_accuracy":241,"v_accuracy":714,"n_sats":15,"flags":2} +{"crc":35802,"length":15,"msg_type":520,"payload":"mBkvEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271522200,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":9460,"length":22,"msg_type":524,"payload":"mBkvEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271522200,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":3079,"length":6,"msg_type":528,"payload":"mBkvEP//","preamble":85,"sender":22963,"tow":271522200,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":19931,"length":11,"msg_type":258,"payload":"Mgj8GS8QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271522300,"ns_residual":0,"flags":1} +{"crc":17801,"length":16,"msg_type":259,"payload":"EfwZLxDkBwMZAxkE/qLhEQ==","preamble":85,"sender":22963,"flags":17,"tow":271522300,"year":2020,"month":3,"day":25,"hours":3,"minutes":25,"seconds":4,"ns":299999998} +{"crc":37402,"length":34,"msg_type":522,"payload":"/BkvEBuIMe5l6kJAPrNmF1aSXsDI8AD3MzIxwAECWwQPBg==","preamble":85,"sender":22963,"tow":271522300,"lat":37.831235670266516,"lon":-122.2865046027118,"height":-17.196105420808436,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":64782,"length":22,"msg_type":526,"payload":"/BkvEAkAAADu////7v////EAygIPAg==","preamble":85,"sender":22963,"tow":271522300,"n":9,"e":-18,"d":-18,"h_accuracy":241,"v_accuracy":714,"n_sats":15,"flags":2} +{"crc":42869,"length":15,"msg_type":520,"payload":"/BkvEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271522300,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":15426,"length":22,"msg_type":524,"payload":"/BkvEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271522300,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":21950,"length":6,"msg_type":528,"payload":"/BkvEP//","preamble":85,"sender":22963,"tow":271522300,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":22082,"length":237,"msg_type":97,"payload":"BQDWFQC1AgC7HwCnAAAAAAAAGQDaDADQHQDVEgDOAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwLNGQHNDAG7HwGZEgHFHQHDAAAABQHCAAAAAAAAAAAAAAAAZAPVYgOxZgOtZQPPXQPPAAAAagO0aAPKYgSqZgTMAAAAZATHZQTDaAS9AAAAagSvIwzHGgyqIgydGAy7GQydDAy4Ewy4FgzAAAAADA3QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADA7EAAAAGQ7BCw6+GA7NAAAAHw6hIQ6aGRTJGBTXCxTCHxSuDBTOAAAAIRSoAAAA","preamble":85,"sender":22963,"states":[{"mesid":{"sat":5,"code":0},"cn0":214},{"mesid":{"sat":21,"code":0},"cn0":181},{"mesid":{"sat":2,"code":0},"cn0":187},{"mesid":{"sat":31,"code":0},"cn0":167},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":25,"code":0},"cn0":218},{"mesid":{"sat":12,"code":0},"cn0":208},{"mesid":{"sat":29,"code":0},"cn0":213},{"mesid":{"sat":18,"code":0},"cn0":206},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":131,"code":2},"cn0":205},{"mesid":{"sat":25,"code":1},"cn0":205},{"mesid":{"sat":12,"code":1},"cn0":187},{"mesid":{"sat":31,"code":1},"cn0":153},{"mesid":{"sat":18,"code":1},"cn0":197},{"mesid":{"sat":29,"code":1},"cn0":195},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":5,"code":1},"cn0":194},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":100,"code":3},"cn0":213},{"mesid":{"sat":98,"code":3},"cn0":177},{"mesid":{"sat":102,"code":3},"cn0":173},{"mesid":{"sat":101,"code":3},"cn0":207},{"mesid":{"sat":93,"code":3},"cn0":207},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":106,"code":3},"cn0":180},{"mesid":{"sat":104,"code":3},"cn0":202},{"mesid":{"sat":98,"code":4},"cn0":170},{"mesid":{"sat":102,"code":4},"cn0":204},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":100,"code":4},"cn0":199},{"mesid":{"sat":101,"code":4},"cn0":195},{"mesid":{"sat":104,"code":4},"cn0":189},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":106,"code":4},"cn0":175},{"mesid":{"sat":35,"code":12},"cn0":199},{"mesid":{"sat":26,"code":12},"cn0":170},{"mesid":{"sat":34,"code":12},"cn0":157},{"mesid":{"sat":24,"code":12},"cn0":187},{"mesid":{"sat":25,"code":12},"cn0":157},{"mesid":{"sat":12,"code":12},"cn0":184},{"mesid":{"sat":19,"code":12},"cn0":184},{"mesid":{"sat":22,"code":12},"cn0":192},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":12,"code":13},"cn0":208},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":12,"code":14},"cn0":196},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":25,"code":14},"cn0":193},{"mesid":{"sat":11,"code":14},"cn0":190},{"mesid":{"sat":24,"code":14},"cn0":205},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":31,"code":14},"cn0":161},{"mesid":{"sat":33,"code":14},"cn0":154},{"mesid":{"sat":25,"code":20},"cn0":201},{"mesid":{"sat":24,"code":20},"cn0":215},{"mesid":{"sat":11,"code":20},"cn0":194},{"mesid":{"sat":31,"code":20},"cn0":174},{"mesid":{"sat":12,"code":20},"cn0":206},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":33,"code":20},"cn0":168},{"mesid":{"sat":0,"code":0},"cn0":0}]} +{"crc":56562,"length":11,"msg_type":258,"payload":"MghgGi8QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271522400,"ns_residual":0,"flags":1} +{"crc":4166,"length":16,"msg_type":259,"payload":"EWAaLxDkBwMZAxkE/oPXFw==","preamble":85,"sender":22963,"flags":17,"tow":271522400,"year":2020,"month":3,"day":25,"hours":3,"minutes":25,"seconds":4,"ns":399999998} +{"crc":11962,"length":34,"msg_type":522,"payload":"YBovEEsSXu5l6kJAtD07F1aSXsCP30CEiTMxwAECWwQPBg==","preamble":85,"sender":22963,"tow":271522400,"lat":37.831235691006974,"lon":-122.28650456223733,"height":-17.20131708701916,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":22809,"length":22,"msg_type":526,"payload":"YBovEPv///8OAAAAGQAAAPEAygIPAg==","preamble":85,"sender":22963,"tow":271522400,"n":-5,"e":14,"d":25,"h_accuracy":241,"v_accuracy":714,"n_sats":15,"flags":2} +{"crc":36025,"length":15,"msg_type":520,"payload":"YBovEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271522400,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":44104,"length":22,"msg_type":524,"payload":"YBovEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271522400,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":32299,"length":6,"msg_type":528,"payload":"YBovEP//","preamble":85,"sender":22963,"tow":271522400,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":49809,"length":9,"msg_type":117,"payload":"/wAAAAAAAAAA","preamble":85,"sender":22963,"mask":255,"l1ca_bias":0,"l1p_bias":0,"l2ca_bias":0,"l2p_bias":0} +{"crc":22611,"length":11,"msg_type":258,"payload":"MgjEGi8QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271522500,"ns_residual":0,"flags":1} +{"crc":10913,"length":16,"msg_type":259,"payload":"EcQaLxDkBwMZAxkE/mTNHQ==","preamble":85,"sender":22963,"flags":17,"tow":271522500,"year":2020,"month":3,"day":25,"hours":3,"minutes":25,"seconds":4,"ns":499999998} +{"crc":9265,"length":34,"msg_type":522,"payload":"xBovENyUm+5l6kJAnn8UF1aSXsAUcw7RrDQxwAECWwQPBg==","preamble":85,"sender":22963,"tow":271522500,"lat":37.83123571964981,"lon":-122.28650452615554,"height":-17.2057619724538,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":26554,"length":22,"msg_type":526,"payload":"xBovEAIAAAAFAAAAAwAAAPEAygIPAg==","preamble":85,"sender":22963,"tow":271522500,"n":2,"e":5,"d":3,"h_accuracy":241,"v_accuracy":714,"n_sats":15,"flags":2} +{"crc":56845,"length":15,"msg_type":520,"payload":"xBovEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271522500,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":56113,"length":22,"msg_type":524,"payload":"xBovEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271522500,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":39330,"length":6,"msg_type":528,"payload":"xBovEP//","preamble":85,"sender":22963,"tow":271522500,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":60679,"length":11,"msg_type":258,"payload":"MggoGy8QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271522600,"ns_residual":0,"flags":1} +{"crc":19292,"length":16,"msg_type":259,"payload":"ESgbLxDkBwMZAxkE/kXDIw==","preamble":85,"sender":22963,"flags":17,"tow":271522600,"year":2020,"month":3,"day":25,"hours":3,"minutes":25,"seconds":4,"ns":599999998} +{"crc":10473,"length":34,"msg_type":522,"payload":"KBsvECPtr+5l6kJAkFHfFlaSXsAIQYPrbjQxwAECWwQPBg==","preamble":85,"sender":22963,"tow":271522600,"lat":37.83123572912361,"lon":-122.2865044766279,"height":-17.204817504448357,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":815,"length":22,"msg_type":526,"payload":"KBsvEPf///8RAAAA8f////EAygIPAg==","preamble":85,"sender":22963,"tow":271522600,"n":-9,"e":17,"d":-15,"h_accuracy":241,"v_accuracy":714,"n_sats":15,"flags":2} +{"crc":64148,"length":15,"msg_type":520,"payload":"KBsvEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271522600,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":62023,"length":22,"msg_type":524,"payload":"KBsvEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271522600,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":45864,"length":6,"msg_type":528,"payload":"KBsvEP//","preamble":85,"sender":22963,"tow":271522600,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":27046,"length":11,"msg_type":258,"payload":"MgiMGy8QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271522700,"ns_residual":0,"flags":1} +{"crc":40203,"length":16,"msg_type":259,"payload":"EYwbLxDkBwMZAxkE/ia5KQ==","preamble":85,"sender":22963,"flags":17,"tow":271522700,"year":2020,"month":3,"day":25,"hours":3,"minutes":25,"seconds":4,"ns":699999998} +{"crc":20436,"length":34,"msg_type":522,"payload":"jBsvEKii0O5l6kJAtIbDFlaSXsA3wf9NdDUxwAECWwQPBg==","preamble":85,"sender":22963,"tow":271522700,"lat":37.831235744354956,"lon":-122.28650445074419,"height":-17.20880591863644,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":58592,"length":22,"msg_type":526,"payload":"jBsvEAEAAAD8////EgAAAPEAygIPAg==","preamble":85,"sender":22963,"tow":271522700,"n":1,"e":-4,"d":18,"h_accuracy":241,"v_accuracy":714,"n_sats":15,"flags":2} +{"crc":43040,"length":15,"msg_type":520,"payload":"jBsvEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271522700,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":34110,"length":22,"msg_type":524,"payload":"jBsvEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271522700,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":21665,"length":6,"msg_type":528,"payload":"jBsvEP//","preamble":85,"sender":22963,"tow":271522700,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":35215,"length":34,"msg_type":30583,"payload":"gwKzGi8QAhf/ABf/AB/+//f/f///f/f//9AB5edV7m7lcA==","preamble":85,"sender":22963,"sid":{"sat":131,"code":2},"tow":271522483,"message_type":2,"data":[23,255,0,23,255,0,31,254,255,247,255,127,255,255,127,247,255,255,208,1,229,231,85,238,110,229,112]} +{"crc":30573,"length":11,"msg_type":258,"payload":"MgjwGy8QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271522800,"ns_residual":0,"flags":1} +{"crc":41102,"length":16,"msg_type":259,"payload":"EfAbLxDkBwMZAxkE/gevLw==","preamble":85,"sender":22963,"flags":17,"tow":271522800,"year":2020,"month":3,"day":25,"hours":3,"minutes":25,"seconds":4,"ns":799999998} +{"crc":54508,"length":34,"msg_type":522,"payload":"8BsvEJJ03O5l6kJAVUujFlaSXsCdoinXqTUxwAECWwQPBg==","preamble":85,"sender":22963,"tow":271522800,"lat":37.83123574985906,"lon":-122.28650442072588,"height":-17.20962281004414,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":16072,"length":22,"msg_type":526,"payload":"8BsvEA0AAAD6/////P////EAygIPAg==","preamble":85,"sender":22963,"tow":271522800,"n":13,"e":-6,"d":-4,"h_accuracy":241,"v_accuracy":714,"n_sats":15,"flags":2} +{"crc":60736,"length":15,"msg_type":520,"payload":"8BsvEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271522800,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":32365,"length":22,"msg_type":524,"payload":"8BsvEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271522800,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":6878,"length":6,"msg_type":528,"payload":"8BsvEP//","preamble":85,"sender":22963,"tow":271522800,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":52250,"length":237,"msg_type":97,"payload":"BQDVFQC1AgC7HwCmAAAAAAAAGQDaDADPHQDUEgDOAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwLMGQHMDAG7HwGZEgHFHQHDAAAABQHCAAAAAAAAAAAAAAAACwPVCQOwFAOsBQPPCgPPAAAABAO0FQPKCQSqFATMAAAACwTHBQTDAAS8AAAABASuIwzHGgyqIgycGAy7GQydDAy3Ewy4Fgy/AAAADA3QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADA7EAAAAGQ7BCw6+GA7NAAAAHw6fIQ6aGRTIGBTXCxTBHxSuDBTOAAAAIRSoAAAA","preamble":85,"sender":22963,"states":[{"mesid":{"sat":5,"code":0},"cn0":213},{"mesid":{"sat":21,"code":0},"cn0":181},{"mesid":{"sat":2,"code":0},"cn0":187},{"mesid":{"sat":31,"code":0},"cn0":166},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":25,"code":0},"cn0":218},{"mesid":{"sat":12,"code":0},"cn0":207},{"mesid":{"sat":29,"code":0},"cn0":212},{"mesid":{"sat":18,"code":0},"cn0":206},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":131,"code":2},"cn0":204},{"mesid":{"sat":25,"code":1},"cn0":204},{"mesid":{"sat":12,"code":1},"cn0":187},{"mesid":{"sat":31,"code":1},"cn0":153},{"mesid":{"sat":18,"code":1},"cn0":197},{"mesid":{"sat":29,"code":1},"cn0":195},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":5,"code":1},"cn0":194},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":11,"code":3},"cn0":213},{"mesid":{"sat":9,"code":3},"cn0":176},{"mesid":{"sat":20,"code":3},"cn0":172},{"mesid":{"sat":5,"code":3},"cn0":207},{"mesid":{"sat":10,"code":3},"cn0":207},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":4,"code":3},"cn0":180},{"mesid":{"sat":21,"code":3},"cn0":202},{"mesid":{"sat":9,"code":4},"cn0":170},{"mesid":{"sat":20,"code":4},"cn0":204},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":11,"code":4},"cn0":199},{"mesid":{"sat":5,"code":4},"cn0":195},{"mesid":{"sat":0,"code":4},"cn0":188},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":4,"code":4},"cn0":174},{"mesid":{"sat":35,"code":12},"cn0":199},{"mesid":{"sat":26,"code":12},"cn0":170},{"mesid":{"sat":34,"code":12},"cn0":156},{"mesid":{"sat":24,"code":12},"cn0":187},{"mesid":{"sat":25,"code":12},"cn0":157},{"mesid":{"sat":12,"code":12},"cn0":183},{"mesid":{"sat":19,"code":12},"cn0":184},{"mesid":{"sat":22,"code":12},"cn0":191},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":12,"code":13},"cn0":208},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":12,"code":14},"cn0":196},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":25,"code":14},"cn0":193},{"mesid":{"sat":11,"code":14},"cn0":190},{"mesid":{"sat":24,"code":14},"cn0":205},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":31,"code":14},"cn0":159},{"mesid":{"sat":33,"code":14},"cn0":154},{"mesid":{"sat":25,"code":20},"cn0":200},{"mesid":{"sat":24,"code":20},"cn0":215},{"mesid":{"sat":11,"code":20},"cn0":193},{"mesid":{"sat":31,"code":20},"cn0":174},{"mesid":{"sat":12,"code":20},"cn0":206},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":33,"code":20},"cn0":168},{"mesid":{"sat":0,"code":0},"cn0":0}]} +{"crc":34187,"length":128,"msg_type":151,"payload":"AgAaHQUAKzUMAFEtFQB9GRkAbUYaAKEBHQChNx8AlQ4EAxUWBQMyIQkDXw4KA3EpCwOYJQwDqgMTAyIHFAMMMRUDlSUMDJQpEwwjIBQMDwIWDEMkGAyCIxkMnQ4aDGcVIgyOESMMIi0LDosyDA4PPBgObDYZDpcpHw5VESEOIA8=","preamble":85,"sender":22963,"azel":[{"sid":{"sat":2,"code":0},"az":26,"el":29},{"sid":{"sat":5,"code":0},"az":43,"el":53},{"sid":{"sat":12,"code":0},"az":81,"el":45},{"sid":{"sat":21,"code":0},"az":125,"el":25},{"sid":{"sat":25,"code":0},"az":109,"el":70},{"sid":{"sat":26,"code":0},"az":161,"el":1},{"sid":{"sat":29,"code":0},"az":161,"el":55},{"sid":{"sat":31,"code":0},"az":149,"el":14},{"sid":{"sat":4,"code":3},"az":21,"el":22},{"sid":{"sat":5,"code":3},"az":50,"el":33},{"sid":{"sat":9,"code":3},"az":95,"el":14},{"sid":{"sat":10,"code":3},"az":113,"el":41},{"sid":{"sat":11,"code":3},"az":152,"el":37},{"sid":{"sat":12,"code":3},"az":170,"el":3},{"sid":{"sat":19,"code":3},"az":34,"el":7},{"sid":{"sat":20,"code":3},"az":12,"el":49},{"sid":{"sat":21,"code":3},"az":149,"el":37},{"sid":{"sat":12,"code":12},"az":148,"el":41},{"sid":{"sat":19,"code":12},"az":35,"el":32},{"sid":{"sat":20,"code":12},"az":15,"el":2},{"sid":{"sat":22,"code":12},"az":67,"el":36},{"sid":{"sat":24,"code":12},"az":130,"el":35},{"sid":{"sat":25,"code":12},"az":157,"el":14},{"sid":{"sat":26,"code":12},"az":103,"el":21},{"sid":{"sat":34,"code":12},"az":142,"el":17},{"sid":{"sat":35,"code":12},"az":34,"el":45},{"sid":{"sat":11,"code":14},"az":139,"el":50},{"sid":{"sat":12,"code":14},"az":15,"el":60},{"sid":{"sat":24,"code":14},"az":108,"el":54},{"sid":{"sat":25,"code":14},"az":151,"el":41},{"sid":{"sat":31,"code":14},"az":85,"el":17},{"sid":{"sat":33,"code":14},"az":32,"el":15}]} +{"crc":13524,"length":11,"msg_type":258,"payload":"MghUHC8QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271522900,"ns_residual":0,"flags":1} +{"crc":25021,"length":16,"msg_type":259,"payload":"EVQcLxDkBwMZAxkE/uikNQ==","preamble":85,"sender":22963,"flags":17,"tow":271522900,"year":2020,"month":3,"day":25,"hours":3,"minutes":25,"seconds":4,"ns":899999998} +{"crc":45854,"length":34,"msg_type":522,"payload":"VBwvEHmRze5l6kJArZB6FlaSXsA8PFgXsDYxwAECWwQPBg==","preamble":85,"sender":22963,"tow":271522900,"lat":37.831235742926715,"lon":-122.28650438279392,"height":-17.21362443832571,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":17738,"length":22,"msg_type":526,"payload":"VBwvEP////8CAAAADAAAAPEAygIPAg==","preamble":85,"sender":22963,"tow":271522900,"n":-1,"e":2,"d":12,"h_accuracy":241,"v_accuracy":714,"n_sats":15,"flags":2} +{"crc":53234,"length":15,"msg_type":520,"payload":"VBwvEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271522900,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":148,"length":22,"msg_type":524,"payload":"VBwvEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271522900,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":39555,"length":6,"msg_type":528,"payload":"VBwvEP//","preamble":85,"sender":22963,"tow":271522900,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":62077,"length":249,"msg_type":74,"payload":"uBwvEAAAAAAyCEACNbQ+OxmXBghF/+nVDw8FAG1NFEX4oUIHS34IPLUPDxUA/HH1RcpLWgedUvb9uw8PAgARBwNJr3CsB55z/hKnDw8fABhfJz0IZG0GOpX71NoPDxkAxZe4QPpezQYdZ/Sj0A8PDABv084+auWZBgvMBdrVDw8dAD5fJz17HwIFUpD8KcwPDxkBYpe4QLfpTAVO9fapuw8PDAGpBgNJjrv6BZTI/vqZDw8fASzTzj5ezSQFcYME+cMPDx0BrjS0PmmfIgUzb/8Nwg8PBQFRBfs+lSG7BvqJBEnVDw8LA7TD2kTrhFoHn8juDbAPDwkD","preamble":85,"sender":22963,"header":{"t":{"tow":271523000,"ns_residual":0,"wn":2098},"n_obs":64},"obs":[{"P":1051997442,"L":{"i":110565691,"f":8},"D":{"i":-187,"f":233},"cn0":213,"lock":15,"flags":15,"sid":{"sat":5,"code":0}},{"P":1158958445,"L":{"i":121807352,"f":75},"D":{"i":2174,"f":60},"cn0":181,"lock":15,"flags":15,"sid":{"sat":21,"code":0}},{"P":1173713404,"L":{"i":123358154,"f":157},"D":{"i":-2478,"f":253},"cn0":187,"lock":15,"flags":15,"sid":{"sat":2,"code":0}},{"P":1224935185,"L":{"i":128741551,"f":158},"D":{"i":-397,"f":18},"cn0":167,"lock":15,"flags":15,"sid":{"sat":31,"code":0}},{"P":1025990424,"L":{"i":107832328,"f":58},"D":{"i":-1131,"f":212},"cn0":218,"lock":15,"flags":15,"sid":{"sat":25,"code":0}},{"P":1085839301,"L":{"i":114122490,"f":29},"D":{"i":-2969,"f":163},"cn0":208,"lock":15,"flags":15,"sid":{"sat":12,"code":0}},{"P":1053741935,"L":{"i":110749034,"f":11},"D":{"i":1484,"f":218},"cn0":213,"lock":15,"flags":15,"sid":{"sat":29,"code":0}},{"P":1025990462,"L":{"i":84025211,"f":82},"D":{"i":-880,"f":41},"cn0":204,"lock":15,"flags":15,"sid":{"sat":25,"code":1}},{"P":1085839202,"L":{"i":88926647,"f":78},"D":{"i":-2315,"f":169},"cn0":187,"lock":15,"flags":15,"sid":{"sat":12,"code":1}},{"P":1224935081,"L":{"i":100318094,"f":148},"D":{"i":-312,"f":250},"cn0":153,"lock":15,"flags":15,"sid":{"sat":31,"code":1}},{"P":1053741868,"L":{"i":86297950,"f":113},"D":{"i":1155,"f":249},"cn0":195,"lock":15,"flags":15,"sid":{"sat":29,"code":1}},{"P":1051997358,"L":{"i":86155113,"f":51},"D":{"i":-145,"f":13},"cn0":194,"lock":15,"flags":15,"sid":{"sat":5,"code":1}},{"P":1056638289,"L":{"i":112927125,"f":250},"D":{"i":1161,"f":73},"cn0":213,"lock":15,"flags":15,"sid":{"sat":11,"code":3}},{"P":1155187636,"L":{"i":123372779,"f":159},"D":{"i":-4408,"f":13},"cn0":176,"lock":15,"flags":15,"sid":{"sat":9,"code":3}}]} +{"crc":21509,"length":249,"msg_type":74,"payload":"uBwvEAAAAAAyCEHT3S490iCLBjRG+/qsDw8UA6yEBkC4VdgGV5MIOs8PDwUDwyJpPtJXpwYgGPSUzw8PCgN98ghDI+wtB/3W+mC1Dw8EA+6gKD/GbsIGU1cGdcoPDxUD98PaRIguuAUFnPKIqg8PCQT+3i49x+AWBTdS/PfMDw8UBG0G+z6bNjwFbIcDZscPDwsEx4UGQFrtUgVJqgbbwg8PBQSN8whDvH6VBeP9+xGuDw8EBGEjl0XJXD8HVST6z8cPDyMMxET3SacEtAf2QvQ6qw8PGgzXohNMmkvsBwnICIycDw8iDKsmokfO1HUHmOf607sPDxgM","preamble":85,"sender":22963,"header":{"t":{"tow":271523000,"ns_residual":0,"wn":2098},"n_obs":65},"obs":[{"P":1026481619,"L":{"i":109781202,"f":52},"D":{"i":-1210,"f":250},"cn0":172,"lock":15,"flags":15,"sid":{"sat":20,"code":3}},{"P":1074169004,"L":{"i":114841016,"f":87},"D":{"i":2195,"f":58},"cn0":207,"lock":15,"flags":15,"sid":{"sat":5,"code":3}},{"P":1047077571,"L":{"i":111630290,"f":32},"D":{"i":-3048,"f":148},"cn0":207,"lock":15,"flags":15,"sid":{"sat":10,"code":3}},{"P":1124659837,"L":{"i":120450083,"f":253},"D":{"i":-1322,"f":96},"cn0":181,"lock":15,"flags":15,"sid":{"sat":4,"code":3}},{"P":1059627246,"L":{"i":113405638,"f":83},"D":{"i":1623,"f":117},"cn0":202,"lock":15,"flags":15,"sid":{"sat":21,"code":3}},{"P":1155187703,"L":{"i":95956616,"f":5},"D":{"i":-3428,"f":136},"cn0":170,"lock":15,"flags":15,"sid":{"sat":9,"code":4}},{"P":1026481918,"L":{"i":85385415,"f":55},"D":{"i":-942,"f":247},"cn0":204,"lock":15,"flags":15,"sid":{"sat":20,"code":4}},{"P":1056638573,"L":{"i":87832219,"f":108},"D":{"i":903,"f":102},"cn0":199,"lock":15,"flags":15,"sid":{"sat":11,"code":4}},{"P":1074169287,"L":{"i":89320794,"f":73},"D":{"i":1706,"f":219},"cn0":194,"lock":15,"flags":15,"sid":{"sat":5,"code":4}},{"P":1124660109,"L":{"i":93683388,"f":227},"D":{"i":-1027,"f":17},"cn0":174,"lock":15,"flags":15,"sid":{"sat":4,"code":4}},{"P":1167532897,"L":{"i":121593033,"f":85},"D":{"i":-1500,"f":207},"cn0":199,"lock":15,"flags":15,"sid":{"sat":35,"code":12}},{"P":1240941764,"L":{"i":129238183,"f":246},"D":{"i":-3006,"f":58},"cn0":171,"lock":15,"flags":15,"sid":{"sat":26,"code":12}},{"P":1276355287,"L":{"i":132926362,"f":9},"D":{"i":2248,"f":140},"cn0":156,"lock":15,"flags":15,"sid":{"sat":34,"code":12}},{"P":1201809067,"L":{"i":125162702,"f":152},"D":{"i":-1305,"f":211},"cn0":187,"lock":15,"flags":15,"sid":{"sat":24,"code":12}}]} +{"crc":31837,"length":249,"msg_type":74,"payload":"uBwvEAAAAAAyCELOuhFN8sEGCDIpBbCeDw8ZDOPVTEWvnzcHBUwG1bgPDwwM751DR3D8awdn2/51uA8PEwz/8VtHC4VuBz5SCcK/Dw8WDJTVTEU0s5QF2t4EdtAPDwwNRFkIQrmo8Aad/vtJxA8PDA7Vox9LV0LlB3s+BILBDw8ZDsHSH0e+p3kHbRYEp74PDwsOWOApQ7sWDwelLfn5zQ8PGA7a2UtRH1eLCEmc85WgDw8fDjsl+VG8jZ0IiKj3cpoPDyEOy6MfS8nBDAa/QANiyA8PGRR04ilDR6doBQbF+vrXDw8YFArSH0eTTroFBiMDL8EPDwsU","preamble":85,"sender":22963,"header":{"t":{"tow":271523000,"ns_residual":0,"wn":2098},"n_obs":66},"obs":[{"P":1293007566,"L":{"i":134660594,"f":50},"D":{"i":1321,"f":176},"cn0":158,"lock":15,"flags":15,"sid":{"sat":25,"code":12}},{"P":1162663395,"L":{"i":121085871,"f":5},"D":{"i":1612,"f":213},"cn0":184,"lock":15,"flags":15,"sid":{"sat":12,"code":12}},{"P":1195613679,"L":{"i":124517488,"f":103},"D":{"i":-293,"f":117},"cn0":184,"lock":15,"flags":15,"sid":{"sat":19,"code":12}},{"P":1197208063,"L":{"i":124683531,"f":62},"D":{"i":2386,"f":194},"cn0":191,"lock":15,"flags":15,"sid":{"sat":22,"code":12}},{"P":1162663316,"L":{"i":93631284,"f":218},"D":{"i":1246,"f":118},"cn0":208,"lock":15,"flags":15,"sid":{"sat":12,"code":13}},{"P":1107843396,"L":{"i":116435129,"f":157},"D":{"i":-1026,"f":73},"cn0":196,"lock":15,"flags":15,"sid":{"sat":12,"code":14}},{"P":1260364757,"L":{"i":132465239,"f":123},"D":{"i":1086,"f":130},"cn0":193,"lock":15,"flags":15,"sid":{"sat":25,"code":14}},{"P":1193267905,"L":{"i":125413310,"f":109},"D":{"i":1046,"f":167},"cn0":190,"lock":15,"flags":15,"sid":{"sat":11,"code":14}},{"P":1126817880,"L":{"i":118429371,"f":165},"D":{"i":-1747,"f":249},"cn0":205,"lock":15,"flags":15,"sid":{"sat":24,"code":14}},{"P":1363925466,"L":{"i":143349535,"f":73},"D":{"i":-3172,"f":149},"cn0":160,"lock":15,"flags":15,"sid":{"sat":31,"code":14}},{"P":1375282491,"L":{"i":144543164,"f":136},"D":{"i":-2136,"f":114},"cn0":154,"lock":15,"flags":15,"sid":{"sat":33,"code":14}},{"P":1260364747,"L":{"i":101499337,"f":191},"D":{"i":832,"f":98},"cn0":200,"lock":15,"flags":15,"sid":{"sat":25,"code":20}},{"P":1126818420,"L":{"i":90744647,"f":6},"D":{"i":-1339,"f":250},"cn0":215,"lock":15,"flags":15,"sid":{"sat":24,"code":20}},{"P":1193267722,"L":{"i":96095891,"f":6},"D":{"i":803,"f":47},"cn0":193,"lock":15,"flags":15,"sid":{"sat":11,"code":20}}]} +{"crc":17267,"length":62,"msg_type":74,"payload":"uBwvEAAAAAAyCEMq2ktRvwOMBtGC9o6uDw8fFKRYCEIuVlEFfO78DM4PDwwU/iT5UYP4mQbOl/ndqQ8PIRQ=","preamble":85,"sender":22963,"header":{"t":{"tow":271523000,"ns_residual":0,"wn":2098},"n_obs":67},"obs":[{"P":1363925546,"L":{"i":109839295,"f":209},"D":{"i":-2430,"f":142},"cn0":174,"lock":15,"flags":15,"sid":{"sat":31,"code":20}},{"P":1107843236,"L":{"i":89216558,"f":124},"D":{"i":-786,"f":12},"cn0":206,"lock":15,"flags":15,"sid":{"sat":12,"code":20}},{"P":1375282430,"L":{"i":110753923,"f":206},"D":{"i":-1641,"f":221},"cn0":169,"lock":15,"flags":15,"sid":{"sat":33,"code":20}}]} +{"crc":49809,"length":9,"msg_type":117,"payload":"/wAAAAAAAAAA","preamble":85,"sender":22963,"mask":255,"l1ca_bias":0,"l1p_bias":0,"l2ca_bias":0,"l2p_bias":0} +{"crc":50771,"length":11,"msg_type":258,"payload":"Mgi4HC8QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271523000,"ns_residual":0,"flags":1} +{"crc":18663,"length":16,"msg_type":259,"payload":"EbgcLxDkBwMZAxkE/smaOw==","preamble":85,"sender":22963,"flags":17,"tow":271523000,"year":2020,"month":3,"day":25,"hours":3,"minutes":25,"seconds":4,"ns":999999998} +{"crc":6366,"length":34,"msg_type":522,"payload":"uBwvEEoCrO5l6kJAJ3dfFlaSXsBj8/tKLTcxwAECWwQPBg==","preamble":85,"sender":22963,"tow":271523000,"lat":37.83123572729944,"lon":-122.28650435755536,"height":-17.215534864913376,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":6773,"length":22,"msg_type":526,"payload":"uBwvEPv////6////8f////EAygIPAg==","preamble":85,"sender":22963,"tow":271523000,"n":-5,"e":-6,"d":-15,"h_accuracy":241,"v_accuracy":714,"n_sats":15,"flags":2} +{"crc":36874,"length":15,"msg_type":520,"payload":"uBwvEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271523000,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":64532,"length":22,"msg_type":524,"payload":"uBwvEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271523000,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":6744,"length":6,"msg_type":528,"payload":"uBwvEP//","preamble":85,"sender":22963,"tow":271523000,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":40942,"length":4,"msg_type":65535,"payload":"AAUCgA==","preamble":85,"sender":22963,"flags":2147616000} +{"crc":2168,"length":24,"msg_type":72,"payload":"UO0a3iqORMHK1UJhIkRQwc9nFIPvrk1B","preamble":85,"sender":22963,"x":-2694229.735196747,"y":-4264073.519704292,"z":3890655.0240602265} +{"crc":1313,"length":11,"msg_type":258,"payload":"MggcHS8QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271523100,"ns_residual":0,"flags":1} +{"crc":8125,"length":16,"msg_type":259,"payload":"ERwdLxDkBwMZAxkF/uD1BQ==","preamble":85,"sender":22963,"flags":17,"tow":271523100,"year":2020,"month":3,"day":25,"hours":3,"minutes":25,"seconds":5,"ns":99999998} +{"crc":19138,"length":34,"msg_type":522,"payload":"HB0vEMx8fu5l6kJAs0cuFlaSXsA47+06izcxwAECWwQPBg==","preamble":85,"sender":22963,"tow":271523100,"lat":37.831235706101864,"lon":-122.28650431174792,"height":-17.216968234147515,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":52458,"length":22,"msg_type":526,"payload":"HB0vEPn///8QAAAAAAAAAPEAygIPAg==","preamble":85,"sender":22963,"tow":271523100,"n":-7,"e":16,"d":0,"h_accuracy":241,"v_accuracy":714,"n_sats":15,"flags":2} +{"crc":47583,"length":15,"msg_type":520,"payload":"HB0vEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271523100,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":24219,"length":22,"msg_type":524,"payload":"HB0vEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271523100,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":22400,"length":6,"msg_type":528,"payload":"HB0vEP//","preamble":85,"sender":22963,"tow":271523100,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":23677,"length":11,"msg_type":258,"payload":"MgiAHS8QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271523200,"ns_residual":0,"flags":1} +{"crc":51606,"length":16,"msg_type":259,"payload":"EYAdLxDkBwMZAxkF/sHrCw==","preamble":85,"sender":22963,"flags":17,"tow":271523200,"year":2020,"month":3,"day":25,"hours":3,"minutes":25,"seconds":5,"ns":199999998} +{"crc":29817,"length":34,"msg_type":522,"payload":"gB0vECq4fu5l6kJA9bIiFlaSXsANu49HTjcxwAECWwQPBg==","preamble":85,"sender":22963,"tow":271523200,"lat":37.83123570620985,"lon":-122.28650430096225,"height":-17.216038200941558,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":10133,"length":22,"msg_type":526,"payload":"gB0vEA0AAAD8////BAAAAPEAygIPAg==","preamble":85,"sender":22963,"tow":271523200,"n":13,"e":-4,"d":4,"h_accuracy":241,"v_accuracy":714,"n_sats":15,"flags":2} +{"crc":8112,"length":15,"msg_type":520,"payload":"gB0vEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271523200,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":41130,"length":22,"msg_type":524,"payload":"gB0vEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271523200,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":37575,"length":6,"msg_type":528,"payload":"gB0vEP//","preamble":85,"sender":22963,"tow":271523200,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":14519,"length":11,"msg_type":258,"payload":"MgjkHS8QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271523300,"ns_residual":0,"flags":1} +{"crc":31666,"length":16,"msg_type":259,"payload":"EeQdLxDkBwMZAxkF/qLhEQ==","preamble":85,"sender":22963,"flags":17,"tow":271523300,"year":2020,"month":3,"day":25,"hours":3,"minutes":25,"seconds":5,"ns":299999998} +{"crc":10686,"length":34,"msg_type":522,"payload":"5B0vEG8XVu5l6kJAoWMGFlaSXsDEQVRfLDcxwAECWwQPBg==","preamble":85,"sender":22963,"tow":271523300,"lat":37.831235687291034,"lon":-122.28650427459662,"height":-17.21552081877759,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":6092,"length":22,"msg_type":526,"payload":"5B0vEPj///8GAAAAAAAAAPEAygIPAg==","preamble":85,"sender":22963,"tow":271523300,"n":-8,"e":6,"d":0,"h_accuracy":241,"v_accuracy":714,"n_sats":15,"flags":2} +{"crc":13087,"length":15,"msg_type":520,"payload":"5B0vEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271523300,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":47132,"length":22,"msg_type":524,"payload":"5B0vEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271523300,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":52094,"length":6,"msg_type":528,"payload":"5B0vEP//","preamble":85,"sender":22963,"tow":271523300,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":44062,"length":237,"msg_type":97,"payload":"BQDVFQC1AgC6HwCmAAAAAAAAGQDaDADQHQDVEgDOAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwLNGQHMDAG7HwGYEgHFHQHDAAAABQHCAAAAAAAAAAAAAAAAZAPVYgOwZgOtZQPPXQPPAAAAagO1aAPKYgSqZgTMXQRTZATIZQTDaAS9AAAAagSuIwzHGgyrIgycGAy7GQyeDAy4Ewy3FgzAAAAADA3QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADA7FAAAAGQ7BCw6+GA7NAAAAHw6gIQ6aGRTIGBTXCxTBHxSuDBTOAAAAIRSoAAAA","preamble":85,"sender":22963,"states":[{"mesid":{"sat":5,"code":0},"cn0":213},{"mesid":{"sat":21,"code":0},"cn0":181},{"mesid":{"sat":2,"code":0},"cn0":186},{"mesid":{"sat":31,"code":0},"cn0":166},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":25,"code":0},"cn0":218},{"mesid":{"sat":12,"code":0},"cn0":208},{"mesid":{"sat":29,"code":0},"cn0":213},{"mesid":{"sat":18,"code":0},"cn0":206},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":131,"code":2},"cn0":205},{"mesid":{"sat":25,"code":1},"cn0":204},{"mesid":{"sat":12,"code":1},"cn0":187},{"mesid":{"sat":31,"code":1},"cn0":152},{"mesid":{"sat":18,"code":1},"cn0":197},{"mesid":{"sat":29,"code":1},"cn0":195},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":5,"code":1},"cn0":194},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":100,"code":3},"cn0":213},{"mesid":{"sat":98,"code":3},"cn0":176},{"mesid":{"sat":102,"code":3},"cn0":173},{"mesid":{"sat":101,"code":3},"cn0":207},{"mesid":{"sat":93,"code":3},"cn0":207},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":106,"code":3},"cn0":181},{"mesid":{"sat":104,"code":3},"cn0":202},{"mesid":{"sat":98,"code":4},"cn0":170},{"mesid":{"sat":102,"code":4},"cn0":204},{"mesid":{"sat":93,"code":4},"cn0":83},{"mesid":{"sat":100,"code":4},"cn0":200},{"mesid":{"sat":101,"code":4},"cn0":195},{"mesid":{"sat":104,"code":4},"cn0":189},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":106,"code":4},"cn0":174},{"mesid":{"sat":35,"code":12},"cn0":199},{"mesid":{"sat":26,"code":12},"cn0":171},{"mesid":{"sat":34,"code":12},"cn0":156},{"mesid":{"sat":24,"code":12},"cn0":187},{"mesid":{"sat":25,"code":12},"cn0":158},{"mesid":{"sat":12,"code":12},"cn0":184},{"mesid":{"sat":19,"code":12},"cn0":183},{"mesid":{"sat":22,"code":12},"cn0":192},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":12,"code":13},"cn0":208},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":12,"code":14},"cn0":197},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":25,"code":14},"cn0":193},{"mesid":{"sat":11,"code":14},"cn0":190},{"mesid":{"sat":24,"code":14},"cn0":205},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":31,"code":14},"cn0":160},{"mesid":{"sat":33,"code":14},"cn0":154},{"mesid":{"sat":25,"code":20},"cn0":200},{"mesid":{"sat":24,"code":20},"cn0":215},{"mesid":{"sat":11,"code":20},"cn0":193},{"mesid":{"sat":31,"code":20},"cn0":174},{"mesid":{"sat":12,"code":20},"cn0":206},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":33,"code":20},"cn0":168},{"mesid":{"sat":0,"code":0},"cn0":0}]} +{"crc":23964,"length":11,"msg_type":258,"payload":"MghIHi8QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271523400,"ns_residual":0,"flags":1} +{"crc":64995,"length":16,"msg_type":259,"payload":"EUgeLxDkBwMZAxkF/oPXFw==","preamble":85,"sender":22963,"flags":17,"tow":271523400,"year":2020,"month":3,"day":25,"hours":3,"minutes":25,"seconds":5,"ns":399999998} +{"crc":45474,"length":34,"msg_type":522,"payload":"SB4vEAJqQ+5l6kJAuT/nFVaSXsAe1LkQLzgxwAECWwQPBg==","preamble":85,"sender":22963,"tow":271523400,"lat":37.83123567859367,"lon":-122.286504245595,"height":-17.219468160026842,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":22057,"length":22,"msg_type":526,"payload":"SB4vEAgAAAAEAAAAGAAAAPEAygIPAg==","preamble":85,"sender":22963,"tow":271523400,"n":8,"e":4,"d":24,"h_accuracy":241,"v_accuracy":714,"n_sats":15,"flags":2} +{"crc":52045,"length":15,"msg_type":520,"payload":"SB4vEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271523400,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":65533,"length":22,"msg_type":524,"payload":"SB4vEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271523400,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":53095,"length":6,"msg_type":528,"payload":"SB4vEP//","preamble":85,"sender":22963,"tow":271523400,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":49809,"length":9,"msg_type":117,"payload":"/wAAAAAAAAAA","preamble":85,"sender":22963,"mask":255,"l1ca_bias":0,"l1p_bias":0,"l2ca_bias":0,"l2p_bias":0} +{"crc":34532,"length":11,"msg_type":258,"payload":"MgisHi8QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271523500,"ns_residual":0,"flags":1} +{"crc":60685,"length":16,"msg_type":259,"payload":"EaweLxDkBwMZAxkF/mTNHQ==","preamble":85,"sender":22963,"flags":17,"tow":271523500,"year":2020,"month":3,"day":25,"hours":3,"minutes":25,"seconds":5,"ns":499999998} +{"crc":1747,"length":34,"msg_type":522,"payload":"rB4vEJmfI+5l6kJASRrgFVaSXsDu/WErajcxwAECWwQPBg==","preamble":85,"sender":22963,"tow":271523500,"lat":37.83123566378999,"lon":-122.28650423893954,"height":-17.21646376745587,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":1364,"length":22,"msg_type":526,"payload":"rB4vEAAAAAD/////5/////EAygIPAg==","preamble":85,"sender":22963,"tow":271523500,"n":0,"e":-1,"d":-25,"h_accuracy":241,"v_accuracy":714,"n_sats":15,"flags":2} +{"crc":46064,"length":15,"msg_type":520,"payload":"rB4vEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271523500,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":24030,"length":22,"msg_type":524,"payload":"rB4vEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271523500,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":17150,"length":6,"msg_type":528,"payload":"rB4vEP//","preamble":85,"sender":22963,"tow":271523500,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":16279,"length":11,"msg_type":258,"payload":"MggQHy8QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271523600,"ns_residual":0,"flags":1} +{"crc":59507,"length":16,"msg_type":259,"payload":"ERAfLxDkBwMZAxkF/kXDIw==","preamble":85,"sender":22963,"flags":17,"tow":271523600,"year":2020,"month":3,"day":25,"hours":3,"minutes":25,"seconds":5,"ns":599999998} +{"crc":28050,"length":34,"msg_type":522,"payload":"EB8vEHpx6e1l6kJAUC7RFVaSXsARXzK84zgxwAECWwQPBg==","preamble":85,"sender":22963,"tow":271523600,"lat":37.83123563669774,"lon":-122.28650422504256,"height":-17.2222249625184,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":1316,"length":22,"msg_type":526,"payload":"EB8vEPf////8////HQAAAPEAygIPAg==","preamble":85,"sender":22963,"tow":271523600,"n":-9,"e":-4,"d":29,"h_accuracy":241,"v_accuracy":714,"n_sats":15,"flags":2} +{"crc":62442,"length":15,"msg_type":520,"payload":"EB8vEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271523600,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":7348,"length":22,"msg_type":524,"payload":"EB8vEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271523600,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":6368,"length":6,"msg_type":528,"payload":"EB8vEP//","preamble":85,"sender":22963,"tow":271523600,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":23389,"length":11,"msg_type":258,"payload":"Mgh0Hy8QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271523700,"ns_residual":0,"flags":1} +{"crc":16447,"length":16,"msg_type":259,"payload":"EXQfLxDkBwMZAxkF/ia5KQ==","preamble":85,"sender":22963,"flags":17,"tow":271523700,"year":2020,"month":3,"day":25,"hours":3,"minutes":25,"seconds":5,"ns":699999998} +{"crc":57843,"length":34,"msg_type":522,"payload":"dB8vEPl5xe1l6kJAvGWzFVaSXsCXbgrV/DgxwAECWwQPBg==","preamble":85,"sender":22963,"tow":271523700,"lat":37.83123561994939,"lon":-122.28650419730451,"height":-17.222607913061974,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":63099,"length":22,"msg_type":526,"payload":"dB8vEAIAAAAJAAAA8f////EAygIPAg==","preamble":85,"sender":22963,"tow":271523700,"n":2,"e":9,"d":-15,"h_accuracy":241,"v_accuracy":714,"n_sats":15,"flags":2} +{"crc":57157,"length":15,"msg_type":520,"payload":"dB8vEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271523700,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":1026,"length":22,"msg_type":524,"payload":"dB8vEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271523700,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":16729,"length":6,"msg_type":528,"payload":"dB8vEP//","preamble":85,"sender":22963,"tow":271523700,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":58793,"length":34,"msg_type":30583,"payload":"gwKTHi8QPwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"sid":{"sat":131,"code":2},"tow":271523475,"message_type":63,"data":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]} +{"crc":62979,"length":11,"msg_type":258,"payload":"MgjYHy8QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271523800,"ns_residual":0,"flags":1} +{"crc":19755,"length":16,"msg_type":259,"payload":"EdgfLxDkBwMZAxkF/gevLw==","preamble":85,"sender":22963,"flags":17,"tow":271523800,"year":2020,"month":3,"day":25,"hours":3,"minutes":25,"seconds":5,"ns":799999998} +{"crc":26048,"length":34,"msg_type":522,"payload":"2B8vEEN6kO1l6kJA+eioFVaSXsDqvC10LjoxwAECWwQPBg==","preamble":85,"sender":22963,"tow":271523800,"lat":37.83123559526987,"lon":-122.2865041875374,"height":-17.227271329084864,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":8481,"length":22,"msg_type":526,"payload":"2B8vEPn////+/////f////EAygIPAg==","preamble":85,"sender":22963,"tow":271523800,"n":-7,"e":-2,"d":-3,"h_accuracy":241,"v_accuracy":714,"n_sats":15,"flags":2} +{"crc":43700,"length":15,"msg_type":520,"payload":"2B8vEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271523800,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":11736,"length":22,"msg_type":524,"payload":"2B8vEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271523800,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":43922,"length":6,"msg_type":528,"payload":"2B8vEP//","preamble":85,"sender":22963,"tow":271523800,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":54534,"length":237,"msg_type":97,"payload":"BQDVFQC0AgC6HwClAAAAAAAAGQDaDADPHQDUEgDOAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwLNGQHMDAG7HwGYEgHFHQHDAAAABQHCAAAAAAAAAAAAAAAACwPVCQOwFAOtBQPQCgPQAAAABAO2FQPLCQSqFATMCgRFCwTIBQTDAAS8AAAABASvIwzHGgyrIgydGAy7GQyeDAy4Ewy4FgzAAAAADA3QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADA7EAAAAGQ7ACw69GA7NAAAAHw6fIQ6aGRTJGBTXCxTBHxSuDBTOAAAAIRSpAAAA","preamble":85,"sender":22963,"states":[{"mesid":{"sat":5,"code":0},"cn0":213},{"mesid":{"sat":21,"code":0},"cn0":180},{"mesid":{"sat":2,"code":0},"cn0":186},{"mesid":{"sat":31,"code":0},"cn0":165},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":25,"code":0},"cn0":218},{"mesid":{"sat":12,"code":0},"cn0":207},{"mesid":{"sat":29,"code":0},"cn0":212},{"mesid":{"sat":18,"code":0},"cn0":206},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":131,"code":2},"cn0":205},{"mesid":{"sat":25,"code":1},"cn0":204},{"mesid":{"sat":12,"code":1},"cn0":187},{"mesid":{"sat":31,"code":1},"cn0":152},{"mesid":{"sat":18,"code":1},"cn0":197},{"mesid":{"sat":29,"code":1},"cn0":195},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":5,"code":1},"cn0":194},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":11,"code":3},"cn0":213},{"mesid":{"sat":9,"code":3},"cn0":176},{"mesid":{"sat":20,"code":3},"cn0":173},{"mesid":{"sat":5,"code":3},"cn0":208},{"mesid":{"sat":10,"code":3},"cn0":208},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":4,"code":3},"cn0":182},{"mesid":{"sat":21,"code":3},"cn0":203},{"mesid":{"sat":9,"code":4},"cn0":170},{"mesid":{"sat":20,"code":4},"cn0":204},{"mesid":{"sat":10,"code":4},"cn0":69},{"mesid":{"sat":11,"code":4},"cn0":200},{"mesid":{"sat":5,"code":4},"cn0":195},{"mesid":{"sat":0,"code":4},"cn0":188},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":4,"code":4},"cn0":175},{"mesid":{"sat":35,"code":12},"cn0":199},{"mesid":{"sat":26,"code":12},"cn0":171},{"mesid":{"sat":34,"code":12},"cn0":157},{"mesid":{"sat":24,"code":12},"cn0":187},{"mesid":{"sat":25,"code":12},"cn0":158},{"mesid":{"sat":12,"code":12},"cn0":184},{"mesid":{"sat":19,"code":12},"cn0":184},{"mesid":{"sat":22,"code":12},"cn0":192},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":12,"code":13},"cn0":208},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":12,"code":14},"cn0":196},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":25,"code":14},"cn0":192},{"mesid":{"sat":11,"code":14},"cn0":189},{"mesid":{"sat":24,"code":14},"cn0":205},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":31,"code":14},"cn0":159},{"mesid":{"sat":33,"code":14},"cn0":154},{"mesid":{"sat":25,"code":20},"cn0":201},{"mesid":{"sat":24,"code":20},"cn0":215},{"mesid":{"sat":11,"code":20},"cn0":193},{"mesid":{"sat":31,"code":20},"cn0":174},{"mesid":{"sat":12,"code":20},"cn0":206},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":33,"code":20},"cn0":169},{"mesid":{"sat":0,"code":0},"cn0":0}]} +{"crc":34187,"length":128,"msg_type":151,"payload":"AgAaHQUAKzUMAFEtFQB9GRkAbUYaAKEBHQChNx8AlQ4EAxUWBQMyIQkDXw4KA3EpCwOYJQwDqgMTAyIHFAMMMRUDlSUMDJQpEwwjIBQMDwIWDEMkGAyCIxkMnQ4aDGcVIgyOESMMIi0LDosyDA4PPBgObDYZDpcpHw5VESEOIA8=","preamble":85,"sender":22963,"azel":[{"sid":{"sat":2,"code":0},"az":26,"el":29},{"sid":{"sat":5,"code":0},"az":43,"el":53},{"sid":{"sat":12,"code":0},"az":81,"el":45},{"sid":{"sat":21,"code":0},"az":125,"el":25},{"sid":{"sat":25,"code":0},"az":109,"el":70},{"sid":{"sat":26,"code":0},"az":161,"el":1},{"sid":{"sat":29,"code":0},"az":161,"el":55},{"sid":{"sat":31,"code":0},"az":149,"el":14},{"sid":{"sat":4,"code":3},"az":21,"el":22},{"sid":{"sat":5,"code":3},"az":50,"el":33},{"sid":{"sat":9,"code":3},"az":95,"el":14},{"sid":{"sat":10,"code":3},"az":113,"el":41},{"sid":{"sat":11,"code":3},"az":152,"el":37},{"sid":{"sat":12,"code":3},"az":170,"el":3},{"sid":{"sat":19,"code":3},"az":34,"el":7},{"sid":{"sat":20,"code":3},"az":12,"el":49},{"sid":{"sat":21,"code":3},"az":149,"el":37},{"sid":{"sat":12,"code":12},"az":148,"el":41},{"sid":{"sat":19,"code":12},"az":35,"el":32},{"sid":{"sat":20,"code":12},"az":15,"el":2},{"sid":{"sat":22,"code":12},"az":67,"el":36},{"sid":{"sat":24,"code":12},"az":130,"el":35},{"sid":{"sat":25,"code":12},"az":157,"el":14},{"sid":{"sat":26,"code":12},"az":103,"el":21},{"sid":{"sat":34,"code":12},"az":142,"el":17},{"sid":{"sat":35,"code":12},"az":34,"el":45},{"sid":{"sat":11,"code":14},"az":139,"el":50},{"sid":{"sat":12,"code":14},"az":15,"el":60},{"sid":{"sat":24,"code":14},"az":108,"el":54},{"sid":{"sat":25,"code":14},"az":151,"el":41},{"sid":{"sat":31,"code":14},"az":85,"el":17},{"sid":{"sat":33,"code":14},"az":32,"el":15}]} +{"crc":45669,"length":11,"msg_type":258,"payload":"Mgg8IC8QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271523900,"ns_residual":0,"flags":1} +{"crc":5698,"length":16,"msg_type":259,"payload":"ETwgLxDkBwMZAxkF/uikNQ==","preamble":85,"sender":22963,"flags":17,"tow":271523900,"year":2020,"month":3,"day":25,"hours":3,"minutes":25,"seconds":5,"ns":899999998} +{"crc":61107,"length":34,"msg_type":522,"payload":"PCAvENQFeO1l6kJAeKmZFVaSXsD/X2IDgjsxwAECWwQPBg==","preamble":85,"sender":22963,"tow":271523900,"lat":37.831235583882204,"lon":-122.28650417333654,"height":-17.23245259429677,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":21274,"length":22,"msg_type":526,"payload":"PCAvEAQAAAAFAAAACgAAAPEAygIPAg==","preamble":85,"sender":22963,"tow":271523900,"n":4,"e":5,"d":10,"h_accuracy":241,"v_accuracy":714,"n_sats":15,"flags":2} +{"crc":4700,"length":15,"msg_type":520,"payload":"PCAvEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271523900,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":51835,"length":22,"msg_type":524,"payload":"PCAvEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271523900,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":20252,"length":6,"msg_type":528,"payload":"PCAvEP//","preamble":85,"sender":22963,"tow":271523900,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":57299,"length":249,"msg_type":74,"payload":"oCAvEAAAAAAyCED2O7Q+9hmXBmRE/1zVDw8FAKj8E0V7mUIHd3sIh7QPDxUAI871RXhVWgeeUvZcug8PAgDEFQNJPnKsBwdv/oSlDw8fAB6JJz1yaG0GvJT7BdoPDxkAIQa5QJNqzQZFZPSt0A8PDABFnM4+nt+ZBiHLBdfUDw8dADqJJz3sIgIFOo78iMwPDxkBvwW5QMDyTAXq9vYauw8PDAGGFQNJxbz6BQXH/sCZDw8fAQKczj7ayCQFIoMELMMPDx0BqTu0PvufIgUubP/Swg8PBQHj2vo+DR27BmWHBFDVDw8LA9hk20QilloHQ8fuZrEPDwkD","preamble":85,"sender":22963,"header":{"t":{"tow":271524000,"ns_residual":0,"wn":2098},"n_obs":64},"obs":[{"P":1051999222,"L":{"i":110565878,"f":100},"D":{"i":-188,"f":92},"cn0":213,"lock":15,"flags":15,"sid":{"sat":5,"code":0}},{"P":1158937768,"L":{"i":121805179,"f":119},"D":{"i":2171,"f":135},"cn0":180,"lock":15,"flags":15,"sid":{"sat":21,"code":0}},{"P":1173736995,"L":{"i":123360632,"f":158},"D":{"i":-2478,"f":92},"cn0":186,"lock":15,"flags":15,"sid":{"sat":2,"code":0}},{"P":1224938948,"L":{"i":128741950,"f":7},"D":{"i":-401,"f":132},"cn0":165,"lock":15,"flags":15,"sid":{"sat":31,"code":0}},{"P":1026001182,"L":{"i":107833458,"f":188},"D":{"i":-1132,"f":5},"cn0":218,"lock":15,"flags":15,"sid":{"sat":25,"code":0}},{"P":1085867553,"L":{"i":114125459,"f":69},"D":{"i":-2972,"f":173},"cn0":208,"lock":15,"flags":15,"sid":{"sat":12,"code":0}},{"P":1053727813,"L":{"i":110747550,"f":33},"D":{"i":1483,"f":215},"cn0":212,"lock":15,"flags":15,"sid":{"sat":29,"code":0}},{"P":1026001210,"L":{"i":84026092,"f":58},"D":{"i":-882,"f":136},"cn0":204,"lock":15,"flags":15,"sid":{"sat":25,"code":1}},{"P":1085867455,"L":{"i":88928960,"f":234},"D":{"i":-2314,"f":26},"cn0":187,"lock":15,"flags":15,"sid":{"sat":12,"code":1}},{"P":1224938886,"L":{"i":100318405,"f":5},"D":{"i":-313,"f":192},"cn0":153,"lock":15,"flags":15,"sid":{"sat":31,"code":1}},{"P":1053727746,"L":{"i":86296794,"f":34},"D":{"i":1155,"f":44},"cn0":195,"lock":15,"flags":15,"sid":{"sat":29,"code":1}},{"P":1051999145,"L":{"i":86155259,"f":46},"D":{"i":-148,"f":210},"cn0":194,"lock":15,"flags":15,"sid":{"sat":5,"code":1}},{"P":1056627427,"L":{"i":112925965,"f":101},"D":{"i":1159,"f":80},"cn0":213,"lock":15,"flags":15,"sid":{"sat":11,"code":3}},{"P":1155228888,"L":{"i":123377186,"f":67},"D":{"i":-4409,"f":102},"cn0":177,"lock":15,"flags":15,"sid":{"sat":9,"code":3}}]} +{"crc":10131,"length":249,"msg_type":74,"payload":"oCAvEAAAAAAyCEHwCS89jCWLBlJE+3WtDw8UA4M0BkAmTdgGRpAInNAPDwUDdpJpPrljpwZ7FvQ10A8PCgPdIglDTfEtBxrU+ui2Dw8EA7plKD9vaMIGvlUGScoPDxUDVmXbROs7uAVmm/I1qg8PCQRCCy89dOQWBWxR/MTMDw8UBALc+j4UMzwFvoUDFcgPDwsErjUGQK/mUgXIqQZKww8PBQSxIwlDwIKVBWz8+4evDw8EBJRbl0WkYj8HRyT6BccPDyMMk7X3SWcQtAcyQfRFqw8PGgxyThNM0ELsB2vJCKucDw8iDJlXokfn2XUHcOT60bsPDxgM","preamble":85,"sender":22963,"header":{"t":{"tow":271524000,"ns_residual":0,"wn":2098},"n_obs":65},"obs":[{"P":1026492912,"L":{"i":109782412,"f":82},"D":{"i":-1212,"f":117},"cn0":173,"lock":15,"flags":15,"sid":{"sat":20,"code":3}},{"P":1074148483,"L":{"i":114838822,"f":70},"D":{"i":2192,"f":156},"cn0":208,"lock":15,"flags":15,"sid":{"sat":5,"code":3}},{"P":1047106166,"L":{"i":111633337,"f":123},"D":{"i":-3050,"f":53},"cn0":208,"lock":15,"flags":15,"sid":{"sat":10,"code":3}},{"P":1124672221,"L":{"i":120451405,"f":26},"D":{"i":-1324,"f":232},"cn0":182,"lock":15,"flags":15,"sid":{"sat":4,"code":3}},{"P":1059612090,"L":{"i":113404015,"f":190},"D":{"i":1621,"f":73},"cn0":202,"lock":15,"flags":15,"sid":{"sat":21,"code":3}},{"P":1155229014,"L":{"i":95960043,"f":102},"D":{"i":-3429,"f":53},"cn0":170,"lock":15,"flags":15,"sid":{"sat":9,"code":4}},{"P":1026493250,"L":{"i":85386356,"f":108},"D":{"i":-943,"f":196},"cn0":204,"lock":15,"flags":15,"sid":{"sat":20,"code":4}},{"P":1056627714,"L":{"i":87831316,"f":190},"D":{"i":901,"f":21},"cn0":200,"lock":15,"flags":15,"sid":{"sat":11,"code":4}},{"P":1074148782,"L":{"i":89319087,"f":200},"D":{"i":1705,"f":74},"cn0":195,"lock":15,"flags":15,"sid":{"sat":5,"code":4}},{"P":1124672433,"L":{"i":93684416,"f":108},"D":{"i":-1028,"f":135},"cn0":175,"lock":15,"flags":15,"sid":{"sat":4,"code":4}},{"P":1167547284,"L":{"i":121594532,"f":71},"D":{"i":-1500,"f":5},"cn0":199,"lock":15,"flags":15,"sid":{"sat":35,"code":12}},{"P":1240970643,"L":{"i":129241191,"f":50},"D":{"i":-3007,"f":69},"cn0":171,"lock":15,"flags":15,"sid":{"sat":26,"code":12}},{"P":1276333682,"L":{"i":132924112,"f":107},"D":{"i":2249,"f":171},"cn0":156,"lock":15,"flags":15,"sid":{"sat":34,"code":12}},{"P":1201821593,"L":{"i":125164007,"f":112},"D":{"i":-1308,"f":209},"cn0":187,"lock":15,"flags":15,"sid":{"sat":24,"code":12}}]} +{"crc":7312,"length":249,"msg_type":74,"payload":"oCAvEAAAAAAyCEIviRFNx7wGCNIoBYWeDw8ZDGGZTEVimTcHqEoGbbgPDwwM5KhDR5T9awfs2f7SuA8PEwx8mFtHuXtuBwZQCUPADw8WDB+ZTEVWrpQFFt0E+dAPDwwNbH8IQrys8AYG/fs3xA8PDA57ex9LGT7lB5A8BBfADw8ZDturH0eno3kHHxYE2b0PDwsOPiEqQ40dDwfPLPmfzA8PGA6tT0xRgmOLCMSb87GfDw8fDsh0+VEXlp0IxqL3u5kPDyEObnsfS4m+DAatPwNHyQ8PGRRaIypDgKxoBf7E+snXDw8YFB+rH0dwS7oFiCED6MIPDwsU","preamble":85,"sender":22963,"header":{"t":{"tow":271524000,"ns_residual":0,"wn":2098},"n_obs":66},"obs":[{"P":1292994863,"L":{"i":134659271,"f":210},"D":{"i":1320,"f":133},"cn0":158,"lock":15,"flags":15,"sid":{"sat":25,"code":12}},{"P":1162647905,"L":{"i":121084258,"f":168},"D":{"i":1610,"f":109},"cn0":184,"lock":15,"flags":15,"sid":{"sat":12,"code":12}},{"P":1195616484,"L":{"i":124517780,"f":236},"D":{"i":-295,"f":210},"cn0":184,"lock":15,"flags":15,"sid":{"sat":19,"code":12}},{"P":1197185148,"L":{"i":124681145,"f":6},"D":{"i":2384,"f":67},"cn0":192,"lock":15,"flags":15,"sid":{"sat":22,"code":12}},{"P":1162647839,"L":{"i":93630038,"f":22},"D":{"i":1245,"f":249},"cn0":208,"lock":15,"flags":15,"sid":{"sat":12,"code":13}},{"P":1107853164,"L":{"i":116436156,"f":6},"D":{"i":-1027,"f":55},"cn0":196,"lock":15,"flags":15,"sid":{"sat":12,"code":14}},{"P":1260354427,"L":{"i":132464153,"f":144},"D":{"i":1084,"f":23},"cn0":192,"lock":15,"flags":15,"sid":{"sat":25,"code":14}},{"P":1193257947,"L":{"i":125412263,"f":31},"D":{"i":1046,"f":217},"cn0":189,"lock":15,"flags":15,"sid":{"sat":11,"code":14}},{"P":1126834494,"L":{"i":118431117,"f":207},"D":{"i":-1748,"f":159},"cn0":204,"lock":15,"flags":15,"sid":{"sat":24,"code":14}},{"P":1363955629,"L":{"i":143352706,"f":196},"D":{"i":-3173,"f":177},"cn0":159,"lock":15,"flags":15,"sid":{"sat":31,"code":14}},{"P":1375302856,"L":{"i":144545303,"f":198},"D":{"i":-2142,"f":187},"cn0":153,"lock":15,"flags":15,"sid":{"sat":33,"code":14}},{"P":1260354414,"L":{"i":101498505,"f":173},"D":{"i":831,"f":71},"cn0":201,"lock":15,"flags":15,"sid":{"sat":25,"code":20}},{"P":1126835034,"L":{"i":90745984,"f":254},"D":{"i":-1340,"f":201},"cn0":215,"lock":15,"flags":15,"sid":{"sat":24,"code":20}},{"P":1193257759,"L":{"i":96095088,"f":136},"D":{"i":801,"f":232},"cn0":194,"lock":15,"flags":15,"sid":{"sat":11,"code":20}}]} +{"crc":60117,"length":62,"msg_type":74,"payload":"oCAvEAAAAAAyCEMMUExRPQ2MBut/9oiuDw8fFMx+CEJAWVEF9e38As4PDwwUgHT5Uev+mQYElvnKqQ8PIRQ=","preamble":85,"sender":22963,"header":{"t":{"tow":271524000,"ns_residual":0,"wn":2098},"n_obs":67},"obs":[{"P":1363955724,"L":{"i":109841725,"f":235},"D":{"i":-2433,"f":136},"cn0":174,"lock":15,"flags":15,"sid":{"sat":31,"code":20}},{"P":1107853004,"L":{"i":89217344,"f":245},"D":{"i":-787,"f":2},"cn0":206,"lock":15,"flags":15,"sid":{"sat":12,"code":20}},{"P":1375302784,"L":{"i":110755563,"f":4},"D":{"i":-1642,"f":202},"cn0":169,"lock":15,"flags":15,"sid":{"sat":33,"code":20}}]} +{"crc":49809,"length":9,"msg_type":117,"payload":"/wAAAAAAAAAA","preamble":85,"sender":22963,"mask":255,"l1ca_bias":0,"l1p_bias":0,"l2ca_bias":0,"l2p_bias":0} +{"crc":60217,"length":11,"msg_type":258,"payload":"MgigIC8QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271524000,"ns_residual":0,"flags":1} +{"crc":50831,"length":16,"msg_type":259,"payload":"EaAgLxDkBwMZAxkF/smaOw==","preamble":85,"sender":22963,"flags":17,"tow":271524000,"year":2020,"month":3,"day":25,"hours":3,"minutes":25,"seconds":5,"ns":999999998} +{"crc":62576,"length":34,"msg_type":522,"payload":"oCAvEFzPe+1l6kJAYWaeFVaSXsCv+9FrcTsxwAECWwQPBg==","preamble":85,"sender":22963,"tow":271524000,"lat":37.83123558564577,"lon":-122.28650417774908,"height":-17.232199419751563,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":11330,"length":22,"msg_type":526,"payload":"oCAvEAwAAAACAAAACgAAAPEAygIPAg==","preamble":85,"sender":22963,"tow":271524000,"n":12,"e":2,"d":10,"h_accuracy":241,"v_accuracy":714,"n_sats":15,"flags":2} +{"crc":46131,"length":15,"msg_type":520,"payload":"oCAvEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271524000,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":13386,"length":22,"msg_type":524,"payload":"oCAvEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271524000,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":35419,"length":6,"msg_type":528,"payload":"oCAvEP//","preamble":85,"sender":22963,"tow":271524000,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":40942,"length":4,"msg_type":65535,"payload":"AAUCgA==","preamble":85,"sender":22963,"flags":2147616000} +{"crc":2168,"length":24,"msg_type":72,"payload":"UO0a3iqORMHK1UJhIkRQwc9nFIPvrk1B","preamble":85,"sender":22963,"x":-2694229.735196747,"y":-4264073.519704292,"z":3890655.0240602265} +{"crc":47991,"length":26,"msg_type":23,"payload":"bWFpbgAAAAAAAAAAAAAAAAAAAAAAAAx1AAA=","preamble":85,"sender":22963,"name":"main\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":0,"stack_free":29964} +{"crc":2544,"length":26,"msg_type":23,"payload":"aWRsZQAAAAAAAAAAAAAAAAAAAABGAXwAAAA=","preamble":85,"sender":22963,"name":"idle\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":326,"stack_free":124} +{"crc":58151,"length":26,"msg_type":23,"payload":"cnBtc2cAAAAAAAAAAAAAAAAAAAABANwNAAA=","preamble":85,"sender":22963,"name":"rpmsg\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":1,"stack_free":3548} +{"crc":51784,"length":26,"msg_type":23,"payload":"U0JQAAAAAAAAAAAAAAAAAAAAAAAAAPz/AAA=","preamble":85,"sender":22963,"name":"SBP\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":0,"stack_free":65532} +{"crc":33651,"length":26,"msg_type":23,"payload":"TkFQAAAAAAAAAAAAAAAAAAAAAAAAAASAAAA=","preamble":85,"sender":22963,"name":"NAP\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":0,"stack_free":32772} +{"crc":22620,"length":26,"msg_type":23,"payload":"bWFuYWdlIFBWAAAAAAAAAAAAAAAAABQEAAA=","preamble":85,"sender":22963,"name":"manage PV\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":0,"stack_free":1044} +{"crc":14252,"length":26,"msg_type":23,"payload":"SU1VAAAAAAAAAAAAAAAAAAAAAAAAAPQHAAA=","preamble":85,"sender":22963,"name":"IMU\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":0,"stack_free":2036} +{"crc":18976,"length":26,"msg_type":23,"payload":"SU1VIGF1eAAAAAAAAAAAAAAAAAAAAEwIAAA=","preamble":85,"sender":22963,"name":"IMU aux\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":0,"stack_free":2124} +{"crc":26120,"length":26,"msg_type":23,"payload":"bmRiAAAAAAAAAAAAAAAAAAAAAAAAAFAMAAA=","preamble":85,"sender":22963,"name":"ndb\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":0,"stack_free":3152} +{"crc":25570,"length":26,"msg_type":23,"payload":"TkFQIFRyYWNraW5nAAAAAAAAAAApAdR3AAA=","preamble":85,"sender":22963,"name":"NAP Tracking\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":297,"stack_free":30676} +{"crc":40082,"length":26,"msg_type":23,"payload":"ZGVjb2RlAAAAAAAAAAAAAAAAAAAIANQGAAA=","preamble":85,"sender":22963,"name":"decode\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":8,"stack_free":1748} +{"crc":38636,"length":26,"msg_type":23,"payload":"bWFuYWdlIGFjcQAAAAAAAAAAAADLAKR3AAA=","preamble":85,"sender":22963,"name":"manage acq\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":203,"stack_free":30628} +{"crc":58531,"length":26,"msg_type":23,"payload":"c3lzdGVtIG1vbml0b3IAAAAAAAAAACwGAAA=","preamble":85,"sender":22963,"name":"system monitor\u0000\u0000\u0000\u0000\u0000\u0000","cpu":0,"stack_free":1580} +{"crc":44438,"length":26,"msg_type":23,"payload":"V2F0Y2hkb2cAAAAAAAAAAAAAAAAAAOQDAAA=","preamble":85,"sender":22963,"name":"Watchdog\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":0,"stack_free":996} +{"crc":28732,"length":26,"msg_type":23,"payload":"c3RhcmxpbmcAAAAAAAAAAAAAAACYAPz/AAA=","preamble":85,"sender":22963,"name":"starling\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":152,"stack_free":65532} +{"crc":57561,"length":26,"msg_type":23,"payload":"bWVfY2FsY19wdnQAAAAAAAAAAAAJAIwjAAA=","preamble":85,"sender":22963,"name":"me_calc_pvt\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":9,"stack_free":9100} +{"crc":38576,"length":26,"msg_type":23,"payload":"UFBTAAAAAAAAAAAAAAAAAAAAAAAAAEgHAAA=","preamble":85,"sender":22963,"name":"PPS\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":0,"stack_free":1864} +{"crc":50933,"length":26,"msg_type":23,"payload":"c3BlY3RydW0gYW5hbHl6ZXIAAAAAANQPAAA=","preamble":85,"sender":22963,"name":"spectrum analyzer\u0000\u0000\u0000","cpu":0,"stack_free":4052} +{"crc":56293,"length":51,"msg_type":1025,"payload":"BkdMTyBMMk9GIE1FIDEgWysxNDkwbXNdIGxvdyBDTjAgdG9vIGxvbmcsIGRyb3BwaW5n","preamble":85,"sender":22963,"level":6,"text":"GLO L2OF ME 1 [+1490ms] low CN0 too long, dropping"} +{"crc":43392,"length":10,"msg_type":181,"payload":"6hbdA/MGRRUJFg==","preamble":85,"sender":22963,"dev_vin":5866,"cpu_vint":989,"cpu_vaux":1779,"cpu_temperature":5445,"fe_temperature":5641} +{"crc":10315,"length":11,"msg_type":258,"payload":"MggEIS8QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271524100,"ns_residual":0,"flags":1} +{"crc":54614,"length":16,"msg_type":259,"payload":"EQQhLxDkBwMZAxkG/uD1BQ==","preamble":85,"sender":22963,"flags":17,"tow":271524100,"year":2020,"month":3,"day":25,"hours":3,"minutes":25,"seconds":6,"ns":99999998} +{"crc":20208,"length":34,"msg_type":522,"payload":"BCEvEGBHR+1l6kJA64GOFVaSXsAUgYG+cDwxwAECWwQPBg==","preamble":85,"sender":22963,"tow":271524100,"lat":37.83123556118403,"lon":-122.2865041629481,"height":-17.236095339410056,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":44454,"length":22,"msg_type":526,"payload":"BCEvEPv///8GAAAACgAAAPEAygIPAg==","preamble":85,"sender":22963,"tow":271524100,"n":-5,"e":6,"d":10,"h_accuracy":241,"v_accuracy":714,"n_sats":15,"flags":2} +{"crc":40422,"length":15,"msg_type":520,"payload":"BCEvEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271524100,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":38597,"length":22,"msg_type":524,"payload":"BCEvEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271524100,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":51075,"length":6,"msg_type":528,"payload":"BCEvEP//","preamble":85,"sender":22963,"tow":271524100,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":25982,"length":11,"msg_type":258,"payload":"MghoIS8QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271524200,"ns_residual":0,"flags":1} +{"crc":44792,"length":16,"msg_type":259,"payload":"EWghLxDkBwMZAxkG/sHrCw==","preamble":85,"sender":22963,"flags":17,"tow":271524200,"year":2020,"month":3,"day":25,"hours":3,"minutes":25,"seconds":6,"ns":199999998} +{"crc":25736,"length":34,"msg_type":522,"payload":"aCEvEBpvGu1l6kJA6deBFVaSXsB5Sba9wDwxwAECWwQPBg==","preamble":85,"sender":22963,"tow":271524200,"lat":37.831235540301535,"lon":-122.28650415115375,"height":-17.237315995219863,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":52985,"length":22,"msg_type":526,"payload":"aCEvEPz///8FAAAA+P////EAygIPAg==","preamble":85,"sender":22963,"tow":271524200,"n":-4,"e":5,"d":-8,"h_accuracy":241,"v_accuracy":714,"n_sats":15,"flags":2} +{"crc":38412,"length":15,"msg_type":520,"payload":"aCEvEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271524200,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":53456,"length":22,"msg_type":524,"payload":"aCEvEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271524200,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":37752,"length":6,"msg_type":528,"payload":"aCEvEP//","preamble":85,"sender":22963,"tow":271524200,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":57823,"length":11,"msg_type":258,"payload":"MgjMIS8QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271524300,"ns_residual":0,"flags":1} +{"crc":25287,"length":16,"msg_type":259,"payload":"EcwhLxDkBwMZAxkG/qLhEQ==","preamble":85,"sender":22963,"flags":17,"tow":271524300,"year":2020,"month":3,"day":25,"hours":3,"minutes":25,"seconds":6,"ns":299999998} +{"crc":4043,"length":34,"msg_type":522,"payload":"zCEvEMAYA+1l6kJARyKCFVaSXsA/Pu1cdT0xwAECWwQPBg==","preamble":85,"sender":22963,"tow":271524300,"lat":37.83123552943425,"lon":-122.2865041514243,"height":-17.240072067185107,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":1262,"length":22,"msg_type":526,"payload":"zCEvEP7////1////6f////EAygIPAg==","preamble":85,"sender":22963,"tow":271524300,"n":-2,"e":-11,"d":-23,"h_accuracy":241,"v_accuracy":714,"n_sats":15,"flags":2} +{"crc":50360,"length":15,"msg_type":520,"payload":"zCEvEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271524300,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":42921,"length":22,"msg_type":524,"payload":"zCEvEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271524300,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":29937,"length":6,"msg_type":528,"payload":"zCEvEP//","preamble":85,"sender":22963,"tow":271524300,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":2959,"length":237,"msg_type":97,"payload":"BQDVFQC0AgC6HwClAAAAAAAAGQDaDADQHQDUEgDOAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwLNGQHMDAG7HwGZEgHFHQHDAAAABQHCAAAAAAAAAAAAAAAAZAPVYgOxZgOtZQPQXQPQAAAAagO2aAPKYgSqZgTMAAAAZATIZQTDaAS8AAAAagSvIwzHGgyrIgydGAy8GQyfDAy4Ewy4FgzAAAAADA3QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADA7DAAAAGQ6/Cw68GA7MAAAAHw6fIQ6XGRTJGBTXCxTCHxSuDBTOAAAAIRSpAAAA","preamble":85,"sender":22963,"states":[{"mesid":{"sat":5,"code":0},"cn0":213},{"mesid":{"sat":21,"code":0},"cn0":180},{"mesid":{"sat":2,"code":0},"cn0":186},{"mesid":{"sat":31,"code":0},"cn0":165},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":25,"code":0},"cn0":218},{"mesid":{"sat":12,"code":0},"cn0":208},{"mesid":{"sat":29,"code":0},"cn0":212},{"mesid":{"sat":18,"code":0},"cn0":206},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":131,"code":2},"cn0":205},{"mesid":{"sat":25,"code":1},"cn0":204},{"mesid":{"sat":12,"code":1},"cn0":187},{"mesid":{"sat":31,"code":1},"cn0":153},{"mesid":{"sat":18,"code":1},"cn0":197},{"mesid":{"sat":29,"code":1},"cn0":195},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":5,"code":1},"cn0":194},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":100,"code":3},"cn0":213},{"mesid":{"sat":98,"code":3},"cn0":177},{"mesid":{"sat":102,"code":3},"cn0":173},{"mesid":{"sat":101,"code":3},"cn0":208},{"mesid":{"sat":93,"code":3},"cn0":208},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":106,"code":3},"cn0":182},{"mesid":{"sat":104,"code":3},"cn0":202},{"mesid":{"sat":98,"code":4},"cn0":170},{"mesid":{"sat":102,"code":4},"cn0":204},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":100,"code":4},"cn0":200},{"mesid":{"sat":101,"code":4},"cn0":195},{"mesid":{"sat":104,"code":4},"cn0":188},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":106,"code":4},"cn0":175},{"mesid":{"sat":35,"code":12},"cn0":199},{"mesid":{"sat":26,"code":12},"cn0":171},{"mesid":{"sat":34,"code":12},"cn0":157},{"mesid":{"sat":24,"code":12},"cn0":188},{"mesid":{"sat":25,"code":12},"cn0":159},{"mesid":{"sat":12,"code":12},"cn0":184},{"mesid":{"sat":19,"code":12},"cn0":184},{"mesid":{"sat":22,"code":12},"cn0":192},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":12,"code":13},"cn0":208},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":12,"code":14},"cn0":195},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":25,"code":14},"cn0":191},{"mesid":{"sat":11,"code":14},"cn0":188},{"mesid":{"sat":24,"code":14},"cn0":204},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":31,"code":14},"cn0":159},{"mesid":{"sat":33,"code":14},"cn0":151},{"mesid":{"sat":25,"code":20},"cn0":201},{"mesid":{"sat":24,"code":20},"cn0":215},{"mesid":{"sat":11,"code":20},"cn0":194},{"mesid":{"sat":31,"code":20},"cn0":174},{"mesid":{"sat":12,"code":20},"cn0":206},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":33,"code":20},"cn0":169},{"mesid":{"sat":0,"code":0},"cn0":0}]} +{"crc":35027,"length":11,"msg_type":258,"payload":"MggwIi8QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271524400,"ns_residual":0,"flags":1} +{"crc":32789,"length":16,"msg_type":259,"payload":"ETAiLxDkBwMZAxkG/oPXFw==","preamble":85,"sender":22963,"flags":17,"tow":271524400,"year":2020,"month":3,"day":25,"hours":3,"minutes":25,"seconds":6,"ns":399999998} +{"crc":24576,"length":34,"msg_type":522,"payload":"MCIvEB/z9exl6kJAYmV2FVaSXsCogbKEkT8xwAECWwQPBg==","preamble":85,"sender":22963,"tow":271524400,"lat":37.83123552331221,"lon":-122.28650414049255,"height":-17.24831418378895,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":62510,"length":22,"msg_type":526,"payload":"MCIvEAgAAAD8////FQAAAPEAygIPAg==","preamble":85,"sender":22963,"tow":271524400,"n":8,"e":-4,"d":21,"h_accuracy":241,"v_accuracy":714,"n_sats":15,"flags":2} +{"crc":22633,"length":15,"msg_type":520,"payload":"MCIvEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271524400,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":34900,"length":22,"msg_type":524,"payload":"MCIvEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271524400,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":124,"length":6,"msg_type":528,"payload":"MCIvEP//","preamble":85,"sender":22963,"tow":271524400,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":49809,"length":9,"msg_type":117,"payload":"/wAAAAAAAAAA","preamble":85,"sender":22963,"mask":255,"l1ca_bias":0,"l1p_bias":0,"l2ca_bias":0,"l2p_bias":0} +{"crc":3186,"length":11,"msg_type":258,"payload":"MgiUIi8QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271524500,"ns_residual":0,"flags":1} +{"crc":47858,"length":16,"msg_type":259,"payload":"EZQiLxDkBwMZAxkG/mTNHQ==","preamble":85,"sender":22963,"flags":17,"tow":271524500,"year":2020,"month":3,"day":25,"hours":3,"minutes":25,"seconds":6,"ns":499999998} +{"crc":48494,"length":34,"msg_type":522,"payload":"lCIvEJ7o+Oxl6kJAKqdhFVaSXsD1bYWevEExwAECWwQPBg==","preamble":85,"sender":22963,"tow":271524500,"lat":37.831235524690086,"lon":-122.28650412117409,"height":-17.256784350944105,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":28944,"length":22,"msg_type":526,"payload":"lCIvEAEAAAADAAAAFwAAAPEAygIPAg==","preamble":85,"sender":22963,"tow":271524500,"n":1,"e":3,"d":23,"h_accuracy":241,"v_accuracy":714,"n_sats":15,"flags":2} +{"crc":2781,"length":15,"msg_type":520,"payload":"lCIvEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271524500,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":65325,"length":22,"msg_type":524,"payload":"lCIvEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271524500,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":59381,"length":6,"msg_type":528,"payload":"lCIvEP//","preamble":85,"sender":22963,"tow":271524500,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":16711,"length":11,"msg_type":258,"payload":"Mgj4Ii8QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271524600,"ns_residual":0,"flags":1} +{"crc":62588,"length":16,"msg_type":259,"payload":"EfgiLxDkBwMZAxkG/kXDIw==","preamble":85,"sender":22963,"flags":17,"tow":271524600,"year":2020,"month":3,"day":25,"hours":3,"minutes":25,"seconds":6,"ns":599999998} +{"crc":58806,"length":34,"msg_type":522,"payload":"+CIvENhC2Oxl6kJA2iBLFVaSXsBGB40emUIxwAECWwQPBg==","preamble":85,"sender":22963,"tow":271524600,"lat":37.831235509487385,"lon":-122.28650410019637,"height":-17.26014891570164,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":15604,"length":22,"msg_type":526,"payload":"+CIvEPT///8GAAAA7v////EAygIPAg==","preamble":85,"sender":22963,"tow":271524600,"n":-12,"e":6,"d":-18,"h_accuracy":241,"v_accuracy":714,"n_sats":15,"flags":2} +{"crc":311,"length":15,"msg_type":520,"payload":"+CIvEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271524600,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":47416,"length":22,"msg_type":524,"payload":"+CIvEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271524600,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":45838,"length":6,"msg_type":528,"payload":"+CIvEP//","preamble":85,"sender":22963,"tow":271524600,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":49271,"length":34,"msg_type":30583,"payload":"gwJ1Ii8QGiMD2B6A9AagNIFkByAqANAiwPYHoDUBqAswAA==","preamble":85,"sender":22963,"sid":{"sat":131,"code":2},"tow":271524469,"message_type":26,"data":[35,3,216,30,128,244,6,160,52,129,100,7,32,42,0,208,34,192,246,7,160,53,1,168,11,48,0]} +{"crc":33333,"length":11,"msg_type":258,"payload":"MghcIy8QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271524700,"ns_residual":0,"flags":1} +{"crc":22858,"length":16,"msg_type":259,"payload":"EVwjLxDkBwMZAxkG/ia5KQ==","preamble":85,"sender":22963,"flags":17,"tow":271524700,"year":2020,"month":3,"day":25,"hours":3,"minutes":25,"seconds":6,"ns":699999998} +{"crc":18634,"length":34,"msg_type":522,"payload":"XCMvEBqG1exl6kJAC68tFVaSXsBt587Y1EQxwAECWwQPBg==","preamble":85,"sender":22963,"tow":271524700,"lat":37.83123550821274,"lon":-122.28650407277398,"height":-17.268872786058115,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":11264,"length":22,"msg_type":526,"payload":"XCMvEP7///8OAAAAHAAAAPEAygIPAg==","preamble":85,"sender":22963,"tow":271524700,"n":-2,"e":14,"d":28,"h_accuracy":241,"v_accuracy":714,"n_sats":15,"flags":2} +{"crc":10466,"length":15,"msg_type":520,"payload":"XCMvEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271524700,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":7095,"length":22,"msg_type":524,"payload":"XCMvEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271524700,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":65238,"length":6,"msg_type":528,"payload":"XCMvEP//","preamble":85,"sender":22963,"tow":271524700,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":56169,"length":11,"msg_type":258,"payload":"MgjAIy8QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271524800,"ns_residual":0,"flags":1} +{"crc":34752,"length":16,"msg_type":259,"payload":"EcAjLxDkBwMZAxkG/gevLw==","preamble":85,"sender":22963,"flags":17,"tow":271524800,"year":2020,"month":3,"day":25,"hours":3,"minutes":25,"seconds":6,"ns":799999998} +{"crc":52464,"length":34,"msg_type":522,"payload":"wCMvEFAC4+xl6kJAx9AZFVaSXsAFM7iSdUYxwAECWwQPBg==","preamble":85,"sender":22963,"tow":271524800,"lat":37.83123551449228,"lon":-122.28650405427025,"height":-17.27523152348569,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":56439,"length":22,"msg_type":526,"payload":"wCMvEAYAAAD/////AQAAAPEAygIPAg==","preamble":85,"sender":22963,"tow":271524800,"n":6,"e":-1,"d":1,"h_accuracy":241,"v_accuracy":714,"n_sats":15,"flags":2} +{"crc":36493,"length":15,"msg_type":520,"payload":"wCMvEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271524800,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":58758,"length":22,"msg_type":524,"payload":"wCMvEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271524800,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":15249,"length":6,"msg_type":528,"payload":"wCMvEP//","preamble":85,"sender":22963,"tow":271524800,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":4344,"length":237,"msg_type":97,"payload":"BQDVFQC1AgC6HwCmAAAAAAAAGQDaDADQHQDVEgDOAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwLNGQHNDAG7HwGZEgHFHQHDAAAABQHCAAAAAAAAAAAAAAAACwPWCQOyFAOtBQPQCgPQAAAABAO2FQPLCQSqFATNCgROCwTIBQTDAAS9AAAABASvIwzIGgyrIgyeGAy8GQyfDAy4Ewy5FgzAAAAADA3QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADA7DAAAAGQ7ACw69GA7MAAAAHw6fIQ6ZGRTJGBTXCxTCHxSvDBTOAAAAIRSpAAAA","preamble":85,"sender":22963,"states":[{"mesid":{"sat":5,"code":0},"cn0":213},{"mesid":{"sat":21,"code":0},"cn0":181},{"mesid":{"sat":2,"code":0},"cn0":186},{"mesid":{"sat":31,"code":0},"cn0":166},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":25,"code":0},"cn0":218},{"mesid":{"sat":12,"code":0},"cn0":208},{"mesid":{"sat":29,"code":0},"cn0":213},{"mesid":{"sat":18,"code":0},"cn0":206},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":131,"code":2},"cn0":205},{"mesid":{"sat":25,"code":1},"cn0":205},{"mesid":{"sat":12,"code":1},"cn0":187},{"mesid":{"sat":31,"code":1},"cn0":153},{"mesid":{"sat":18,"code":1},"cn0":197},{"mesid":{"sat":29,"code":1},"cn0":195},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":5,"code":1},"cn0":194},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":11,"code":3},"cn0":214},{"mesid":{"sat":9,"code":3},"cn0":178},{"mesid":{"sat":20,"code":3},"cn0":173},{"mesid":{"sat":5,"code":3},"cn0":208},{"mesid":{"sat":10,"code":3},"cn0":208},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":4,"code":3},"cn0":182},{"mesid":{"sat":21,"code":3},"cn0":203},{"mesid":{"sat":9,"code":4},"cn0":170},{"mesid":{"sat":20,"code":4},"cn0":205},{"mesid":{"sat":10,"code":4},"cn0":78},{"mesid":{"sat":11,"code":4},"cn0":200},{"mesid":{"sat":5,"code":4},"cn0":195},{"mesid":{"sat":0,"code":4},"cn0":189},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":4,"code":4},"cn0":175},{"mesid":{"sat":35,"code":12},"cn0":200},{"mesid":{"sat":26,"code":12},"cn0":171},{"mesid":{"sat":34,"code":12},"cn0":158},{"mesid":{"sat":24,"code":12},"cn0":188},{"mesid":{"sat":25,"code":12},"cn0":159},{"mesid":{"sat":12,"code":12},"cn0":184},{"mesid":{"sat":19,"code":12},"cn0":185},{"mesid":{"sat":22,"code":12},"cn0":192},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":12,"code":13},"cn0":208},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":12,"code":14},"cn0":195},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":25,"code":14},"cn0":192},{"mesid":{"sat":11,"code":14},"cn0":189},{"mesid":{"sat":24,"code":14},"cn0":204},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":31,"code":14},"cn0":159},{"mesid":{"sat":33,"code":14},"cn0":153},{"mesid":{"sat":25,"code":20},"cn0":201},{"mesid":{"sat":24,"code":20},"cn0":215},{"mesid":{"sat":11,"code":20},"cn0":194},{"mesid":{"sat":31,"code":20},"cn0":175},{"mesid":{"sat":12,"code":20},"cn0":206},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":33,"code":20},"cn0":169},{"mesid":{"sat":0,"code":0},"cn0":0}]} +{"crc":34187,"length":128,"msg_type":151,"payload":"AgAaHQUAKzUMAFEtFQB9GRkAbUYaAKEBHQChNx8AlQ4EAxUWBQMyIQkDXw4KA3EpCwOYJQwDqgMTAyIHFAMMMRUDlSUMDJQpEwwjIBQMDwIWDEMkGAyCIxkMnQ4aDGcVIgyOESMMIi0LDosyDA4PPBgObDYZDpcpHw5VESEOIA8=","preamble":85,"sender":22963,"azel":[{"sid":{"sat":2,"code":0},"az":26,"el":29},{"sid":{"sat":5,"code":0},"az":43,"el":53},{"sid":{"sat":12,"code":0},"az":81,"el":45},{"sid":{"sat":21,"code":0},"az":125,"el":25},{"sid":{"sat":25,"code":0},"az":109,"el":70},{"sid":{"sat":26,"code":0},"az":161,"el":1},{"sid":{"sat":29,"code":0},"az":161,"el":55},{"sid":{"sat":31,"code":0},"az":149,"el":14},{"sid":{"sat":4,"code":3},"az":21,"el":22},{"sid":{"sat":5,"code":3},"az":50,"el":33},{"sid":{"sat":9,"code":3},"az":95,"el":14},{"sid":{"sat":10,"code":3},"az":113,"el":41},{"sid":{"sat":11,"code":3},"az":152,"el":37},{"sid":{"sat":12,"code":3},"az":170,"el":3},{"sid":{"sat":19,"code":3},"az":34,"el":7},{"sid":{"sat":20,"code":3},"az":12,"el":49},{"sid":{"sat":21,"code":3},"az":149,"el":37},{"sid":{"sat":12,"code":12},"az":148,"el":41},{"sid":{"sat":19,"code":12},"az":35,"el":32},{"sid":{"sat":20,"code":12},"az":15,"el":2},{"sid":{"sat":22,"code":12},"az":67,"el":36},{"sid":{"sat":24,"code":12},"az":130,"el":35},{"sid":{"sat":25,"code":12},"az":157,"el":14},{"sid":{"sat":26,"code":12},"az":103,"el":21},{"sid":{"sat":34,"code":12},"az":142,"el":17},{"sid":{"sat":35,"code":12},"az":34,"el":45},{"sid":{"sat":11,"code":14},"az":139,"el":50},{"sid":{"sat":12,"code":14},"az":15,"el":60},{"sid":{"sat":24,"code":14},"az":108,"el":54},{"sid":{"sat":25,"code":14},"az":151,"el":41},{"sid":{"sat":31,"code":14},"az":85,"el":17},{"sid":{"sat":33,"code":14},"az":32,"el":15}]} +{"crc":50953,"length":11,"msg_type":258,"payload":"MggkJC8QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271524900,"ns_residual":0,"flags":1} +{"crc":27898,"length":16,"msg_type":259,"payload":"ESQkLxDkBwMZAxkG/uikNQ==","preamble":85,"sender":22963,"flags":17,"tow":271524900,"year":2020,"month":3,"day":25,"hours":3,"minutes":25,"seconds":6,"ns":899999998} +{"crc":13774,"length":34,"msg_type":522,"payload":"JCQvEH+y7+xl6kJA6ugbFVaSXsC4tsi0V0gxwAECWwQPBg==","preamble":85,"sender":22963,"tow":271524900,"lat":37.83123552040069,"lon":-122.2865040562207,"height":-17.282588290216808,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":49153,"length":22,"msg_type":526,"payload":"JCQvEAsAAADy////9f////EAygIPAg==","preamble":85,"sender":22963,"tow":271524900,"n":11,"e":-14,"d":-11,"h_accuracy":241,"v_accuracy":714,"n_sats":15,"flags":2} +{"crc":34358,"length":15,"msg_type":520,"payload":"JCQvEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271524900,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":20005,"length":22,"msg_type":524,"payload":"JCQvEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271524900,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":53724,"length":6,"msg_type":528,"payload":"JCQvEP//","preamble":85,"sender":22963,"tow":271524900,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":20005,"length":249,"msg_type":74,"payload":"iCQvEAAAAAAyCEDwQrQ+shqXBllD/5nVDw8FAO6rE0X+kEIH2HwI9LYPDxUANSr2RSZfWgeRU/YVug8PAgCDJANJzHOsB+Vy/pamDw8fACezJz3dbG0GyJT7XdoPDxkAf3S5QCx2zQa0ZvR60Q8PDAAlZc4+0tmZBlPLBXrVDw8dAEuzJz1dJgIFkI/8XswPDxkBGXS5QMr7TAXI9fauuw8PDAFOJANJ+736BdbI/oqZDw8fAd9kzj5VxCQF7YIEqsMPDx0BrEK0Po2gIgWmbf/xwg8PBQGDsPo+hRi7BqKGBKbWDw8LAxoG3ERYp1oHz8ruKrIPDwkD","preamble":85,"sender":22963,"header":{"t":{"tow":271525000,"ns_residual":0,"wn":2098},"n_obs":64},"obs":[{"P":1052001008,"L":{"i":110566066,"f":89},"D":{"i":-189,"f":153},"cn0":213,"lock":15,"flags":15,"sid":{"sat":5,"code":0}},{"P":1158917102,"L":{"i":121803006,"f":216},"D":{"i":2172,"f":244},"cn0":182,"lock":15,"flags":15,"sid":{"sat":21,"code":0}},{"P":1173760565,"L":{"i":123363110,"f":145},"D":{"i":-2477,"f":21},"cn0":186,"lock":15,"flags":15,"sid":{"sat":2,"code":0}},{"P":1224942723,"L":{"i":128742348,"f":229},"D":{"i":-398,"f":150},"cn0":166,"lock":15,"flags":15,"sid":{"sat":31,"code":0}},{"P":1026011943,"L":{"i":107834589,"f":200},"D":{"i":-1132,"f":93},"cn0":218,"lock":15,"flags":15,"sid":{"sat":25,"code":0}},{"P":1085895807,"L":{"i":114128428,"f":180},"D":{"i":-2970,"f":122},"cn0":209,"lock":15,"flags":15,"sid":{"sat":12,"code":0}},{"P":1053713701,"L":{"i":110746066,"f":83},"D":{"i":1483,"f":122},"cn0":213,"lock":15,"flags":15,"sid":{"sat":29,"code":0}},{"P":1026011979,"L":{"i":84026973,"f":144},"D":{"i":-881,"f":94},"cn0":204,"lock":15,"flags":15,"sid":{"sat":25,"code":1}},{"P":1085895705,"L":{"i":88931274,"f":200},"D":{"i":-2315,"f":174},"cn0":187,"lock":15,"flags":15,"sid":{"sat":12,"code":1}},{"P":1224942670,"L":{"i":100318715,"f":214},"D":{"i":-312,"f":138},"cn0":153,"lock":15,"flags":15,"sid":{"sat":31,"code":1}},{"P":1053713631,"L":{"i":86295637,"f":237},"D":{"i":1154,"f":170},"cn0":195,"lock":15,"flags":15,"sid":{"sat":29,"code":1}},{"P":1052000940,"L":{"i":86155405,"f":166},"D":{"i":-147,"f":241},"cn0":194,"lock":15,"flags":15,"sid":{"sat":5,"code":1}},{"P":1056616579,"L":{"i":112924805,"f":162},"D":{"i":1158,"f":166},"cn0":214,"lock":15,"flags":15,"sid":{"sat":11,"code":3}},{"P":1155270170,"L":{"i":123381592,"f":207},"D":{"i":-4406,"f":42},"cn0":178,"lock":15,"flags":15,"sid":{"sat":9,"code":3}}]} +{"crc":7191,"length":249,"msg_type":74,"payload":"iCQvEAAAAAAyCEEWNi89RiqLBo9G+wStDw8UA2LkBUCURNgGzpAIdtAPDwUDGQJqPqFvpwZPF/SX0A8PCgMfUwlDdvYtB+vU+rq2Dw8EA4wqKD8ZYsIGPlUGA8sPDxUDeQbcRE5JuAW2m/KZqg8PCQRsNy89IegWBbZS/PXNDw8UBJax+j6OLzwFtYUDecgPDwsEmuUFQAXgUgXCqgZ+ww8PBQTpUwlDxIaVBYD8+wmvDw8EBNOTl0V/aD8HQyX6KsgPDyMMZCb4SSYctAdiQPTYrA8PGgwT+hJMBjrsB8jICNqdDw8iDJGIokcA33UHpOf6TLwPDxgM","preamble":85,"sender":22963,"header":{"t":{"tow":271525000,"ns_residual":0,"wn":2098},"n_obs":65},"obs":[{"P":1026504214,"L":{"i":109783622,"f":143},"D":{"i":-1210,"f":4},"cn0":173,"lock":15,"flags":15,"sid":{"sat":20,"code":3}},{"P":1074127970,"L":{"i":114836628,"f":206},"D":{"i":2192,"f":118},"cn0":208,"lock":15,"flags":15,"sid":{"sat":5,"code":3}},{"P":1047134745,"L":{"i":111636385,"f":79},"D":{"i":-3049,"f":151},"cn0":208,"lock":15,"flags":15,"sid":{"sat":10,"code":3}},{"P":1124684575,"L":{"i":120452726,"f":235},"D":{"i":-1324,"f":186},"cn0":182,"lock":15,"flags":15,"sid":{"sat":4,"code":3}},{"P":1059596940,"L":{"i":113402393,"f":62},"D":{"i":1621,"f":3},"cn0":203,"lock":15,"flags":15,"sid":{"sat":21,"code":3}},{"P":1155270265,"L":{"i":95963470,"f":182},"D":{"i":-3429,"f":153},"cn0":170,"lock":15,"flags":15,"sid":{"sat":9,"code":4}},{"P":1026504556,"L":{"i":85387297,"f":182},"D":{"i":-942,"f":245},"cn0":205,"lock":15,"flags":15,"sid":{"sat":20,"code":4}},{"P":1056616854,"L":{"i":87830414,"f":181},"D":{"i":901,"f":121},"cn0":200,"lock":15,"flags":15,"sid":{"sat":11,"code":4}},{"P":1074128282,"L":{"i":89317381,"f":194},"D":{"i":1706,"f":126},"cn0":195,"lock":15,"flags":15,"sid":{"sat":5,"code":4}},{"P":1124684777,"L":{"i":93685444,"f":128},"D":{"i":-1028,"f":9},"cn0":175,"lock":15,"flags":15,"sid":{"sat":4,"code":4}},{"P":1167561683,"L":{"i":121596031,"f":67},"D":{"i":-1499,"f":42},"cn0":200,"lock":15,"flags":15,"sid":{"sat":35,"code":12}},{"P":1240999524,"L":{"i":129244198,"f":98},"D":{"i":-3008,"f":216},"cn0":172,"lock":15,"flags":15,"sid":{"sat":26,"code":12}},{"P":1276312083,"L":{"i":132921862,"f":200},"D":{"i":2248,"f":218},"cn0":157,"lock":15,"flags":15,"sid":{"sat":34,"code":12}},{"P":1201834129,"L":{"i":125165312,"f":164},"D":{"i":-1305,"f":76},"cn0":188,"lock":15,"flags":15,"sid":{"sat":24,"code":12}}]} +{"crc":17479,"length":249,"msg_type":74,"payload":"iCQvEAAAAAAyCEKWVxFNnbcGCN0nBf2fDw8ZDOVcTEUWkzcHT0wGSbgPDwwM6bNDR7n+awft2v47uQ8PEwz9PltHZ3JuBxBQCfLADw8WDKNcTEV3qZQFTd4E19APDwwNj6UIQr6w8AZ2/fvzxA8PDA4gUx9L2znlB/08BIzADw8ZDuyEH0ePn3kH1hcESb0PDwsOKWIqQ2AkDwdELPnNzA8PGA6IxUxR5m+LCC6d89ufDw8fDjTE+VFynp0I6aL3nZoPDyEOFVMfS0m7DAbiPwNqyQ8PGRRFZCpDu7FoBTLG+rrXDw8YFC+EH0dOSLoFEyMDG8IPDwsU","preamble":85,"sender":22963,"header":{"t":{"tow":271525000,"ns_residual":0,"wn":2098},"n_obs":66},"obs":[{"P":1292982166,"L":{"i":134657949,"f":221},"D":{"i":1319,"f":253},"cn0":159,"lock":15,"flags":15,"sid":{"sat":25,"code":12}},{"P":1162632421,"L":{"i":121082646,"f":79},"D":{"i":1612,"f":73},"cn0":184,"lock":15,"flags":15,"sid":{"sat":12,"code":12}},{"P":1195619305,"L":{"i":124518073,"f":237},"D":{"i":-294,"f":59},"cn0":185,"lock":15,"flags":15,"sid":{"sat":19,"code":12}},{"P":1197162237,"L":{"i":124678759,"f":16},"D":{"i":2384,"f":242},"cn0":192,"lock":15,"flags":15,"sid":{"sat":22,"code":12}},{"P":1162632355,"L":{"i":93628791,"f":77},"D":{"i":1246,"f":215},"cn0":208,"lock":15,"flags":15,"sid":{"sat":12,"code":13}},{"P":1107862927,"L":{"i":116437182,"f":118},"D":{"i":-1027,"f":243},"cn0":196,"lock":15,"flags":15,"sid":{"sat":12,"code":14}},{"P":1260344096,"L":{"i":132463067,"f":253},"D":{"i":1084,"f":140},"cn0":192,"lock":15,"flags":15,"sid":{"sat":25,"code":14}},{"P":1193247980,"L":{"i":125411215,"f":214},"D":{"i":1047,"f":73},"cn0":189,"lock":15,"flags":15,"sid":{"sat":11,"code":14}},{"P":1126851113,"L":{"i":118432864,"f":68},"D":{"i":-1748,"f":205},"cn0":204,"lock":15,"flags":15,"sid":{"sat":24,"code":14}},{"P":1363985800,"L":{"i":143355878,"f":46},"D":{"i":-3171,"f":219},"cn0":159,"lock":15,"flags":15,"sid":{"sat":31,"code":14}},{"P":1375323188,"L":{"i":144547442,"f":233},"D":{"i":-2142,"f":157},"cn0":154,"lock":15,"flags":15,"sid":{"sat":33,"code":14}},{"P":1260344085,"L":{"i":101497673,"f":226},"D":{"i":831,"f":106},"cn0":201,"lock":15,"flags":15,"sid":{"sat":25,"code":20}},{"P":1126851653,"L":{"i":90747323,"f":50},"D":{"i":-1338,"f":186},"cn0":215,"lock":15,"flags":15,"sid":{"sat":24,"code":20}},{"P":1193247791,"L":{"i":96094286,"f":19},"D":{"i":803,"f":27},"cn0":194,"lock":15,"flags":15,"sid":{"sat":11,"code":20}}]} +{"crc":35835,"length":62,"msg_type":74,"payload":"iCQvEAAAAAAyCEPnxUxRuxaMBvOC9r2vDw8fFPKkCEJTXFEFcu78Bs4PDwwUAMT5UVIFmgYXmPkpqQ8PIRQ=","preamble":85,"sender":22963,"header":{"t":{"tow":271525000,"ns_residual":0,"wn":2098},"n_obs":67},"obs":[{"P":1363985895,"L":{"i":109844155,"f":243},"D":{"i":-2430,"f":189},"cn0":175,"lock":15,"flags":15,"sid":{"sat":31,"code":20}},{"P":1107862770,"L":{"i":89218131,"f":114},"D":{"i":-786,"f":6},"cn0":206,"lock":15,"flags":15,"sid":{"sat":12,"code":20}},{"P":1375323136,"L":{"i":110757202,"f":23},"D":{"i":-1640,"f":41},"cn0":169,"lock":15,"flags":15,"sid":{"sat":33,"code":20}}]} +{"crc":49809,"length":9,"msg_type":117,"payload":"/wAAAAAAAAAA","preamble":85,"sender":22963,"mask":255,"l1ca_bias":0,"l1p_bias":0,"l2ca_bias":0,"l2p_bias":0} +{"crc":27223,"length":11,"msg_type":258,"payload":"MgiIJC8QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271525000,"ns_residual":0,"flags":1} +{"crc":28585,"length":16,"msg_type":259,"payload":"EYgkLxDkBwMZAxkG/smaOw==","preamble":85,"sender":22963,"flags":17,"tow":271525000,"year":2020,"month":3,"day":25,"hours":3,"minutes":25,"seconds":6,"ns":999999998} +{"crc":59790,"length":34,"msg_type":522,"payload":"iCQvELSAy+xl6kJAEjISFVaSXsDIUSoXSEsxwAECWwQPBg==","preamble":85,"sender":22963,"tow":271525000,"lat":37.83123550354631,"lon":-122.28650404717362,"height":-17.294068763572596,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":14962,"length":22,"msg_type":526,"payload":"iCQvEPP///8BAAAAKAAAAPEAygIPAg==","preamble":85,"sender":22963,"tow":271525000,"n":-13,"e":1,"d":40,"h_accuracy":241,"v_accuracy":714,"n_sats":15,"flags":2} +{"crc":62407,"length":15,"msg_type":520,"payload":"iCQvEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271525000,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":26623,"length":22,"msg_type":524,"payload":"iCQvEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271525000,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":15127,"length":6,"msg_type":528,"payload":"iCQvEP//","preamble":85,"sender":22963,"tow":271525000,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":40942,"length":4,"msg_type":65535,"payload":"AAUCgA==","preamble":85,"sender":22963,"flags":2147616000} +{"crc":2168,"length":24,"msg_type":72,"payload":"UO0a3iqORMHK1UJhIkRQwc9nFIPvrk1B","preamble":85,"sender":22963,"x":-2694229.735196747,"y":-4264073.519704292,"z":3890655.0240602265} +{"crc":3741,"length":11,"msg_type":258,"payload":"MgjsJC8QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271525100,"ns_residual":0,"flags":1} +{"crc":15753,"length":16,"msg_type":259,"payload":"EewkLxDkBwMZAxkH/uD1BQ==","preamble":85,"sender":22963,"flags":17,"tow":271525100,"year":2020,"month":3,"day":25,"hours":3,"minutes":25,"seconds":7,"ns":99999998} +{"crc":35021,"length":34,"msg_type":522,"payload":"7CQvEBxQqOxl6kJAY4f+FFaSXsBwJO6Oo00xwAECWwQPBg==","preamble":85,"sender":22963,"tow":271525100,"lat":37.83123548715977,"lon":-122.28650402885755,"height":-17.30327695192358,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":27641,"length":22,"msg_type":526,"payload":"7CQvEPT///8AAAAAAwAAAPEAygIPAg==","preamble":85,"sender":22963,"tow":271525100,"n":-12,"e":0,"d":3,"h_accuracy":241,"v_accuracy":714,"n_sats":15,"flags":2} +{"crc":57192,"length":15,"msg_type":520,"payload":"7CQvEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271525100,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":32585,"length":22,"msg_type":524,"payload":"7CQvEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271525100,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":25262,"length":6,"msg_type":528,"payload":"7CQvEP//","preamble":85,"sender":22963,"tow":271525100,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":47086,"length":11,"msg_type":258,"payload":"MghQJS8QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271525200,"ns_residual":0,"flags":1} +{"crc":3543,"length":16,"msg_type":259,"payload":"EVAlLxDkBwMZAxkH/sHrCw==","preamble":85,"sender":22963,"flags":17,"tow":271525200,"year":2020,"month":3,"day":25,"hours":3,"minutes":25,"seconds":7,"ns":199999998} +{"crc":37009,"length":34,"msg_type":522,"payload":"UCUvEPLuouxl6kJAUZbeFFaSXsCO8jsZV08xwAECWwQPBg==","preamble":85,"sender":22963,"tow":271525200,"lat":37.83123548465473,"lon":-122.28650399910954,"height":-17.309922768722167,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":43175,"length":22,"msg_type":526,"payload":"UCUvEAoAAAADAAAA/P////EAygIPAg==","preamble":85,"sender":22963,"tow":271525200,"n":10,"e":3,"d":-4,"h_accuracy":241,"v_accuracy":714,"n_sats":15,"flags":2} +{"crc":40818,"length":15,"msg_type":520,"payload":"UCUvEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271525200,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":15907,"length":22,"msg_type":524,"payload":"UCUvEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271525200,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":14512,"length":6,"msg_type":528,"payload":"UCUvEP//","preamble":85,"sender":22963,"tow":271525200,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":27798,"length":11,"msg_type":258,"payload":"Mgi0JS8QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271525300,"ns_residual":0,"flags":1} +{"crc":60385,"length":16,"msg_type":259,"payload":"EbQlLxDkBwMZAxkH/qLhEQ==","preamble":85,"sender":22963,"flags":17,"tow":271525300,"year":2020,"month":3,"day":25,"hours":3,"minutes":25,"seconds":7,"ns":299999998} +{"crc":55355,"length":34,"msg_type":522,"payload":"tCUvEIRWkuxl6kJAdDPHFFaSXsAJaT18bFAxwAECWwQPBg==","preamble":85,"sender":22963,"tow":271525300,"lat":37.83123547692688,"lon":-122.28650397732946,"height":-17.3141553544929,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":56121,"length":22,"msg_type":526,"payload":"tCUvEAUAAAADAAAAAwAAAPEAygIPAg==","preamble":85,"sender":22963,"tow":271525300,"n":5,"e":3,"d":3,"h_accuracy":241,"v_accuracy":714,"n_sats":15,"flags":2} +{"crc":59343,"length":15,"msg_type":520,"payload":"tCUvEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271525300,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":39936,"length":22,"msg_type":524,"payload":"tCUvEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271525300,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":46377,"length":6,"msg_type":528,"payload":"tCUvEP//","preamble":85,"sender":22963,"tow":271525300,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":31571,"length":237,"msg_type":97,"payload":"BQDWFQC1AgC7HwCmAAAAAAAAGQDaDADRHQDVEgDOAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwLOGQHMDAG7HwGZEgHFHQHDAAAABQHCAAAAAAAAAAAAAAAAZAPWYgOyZgOuZQPQXQPQAAAAagO2aAPLYgSqZgTNXQRDZATJZQTDaAS9AAAAagSvIwzIGgysIgyeGAy8GQyfDAy4Ewy5FgzAAAAADA3RAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADA7EAAAAGQ7ACw6+GA7NAAAAHw6gIQ6ZGRTJGBTXCxTCHxSvDBTOAAAAIRSpAAAA","preamble":85,"sender":22963,"states":[{"mesid":{"sat":5,"code":0},"cn0":214},{"mesid":{"sat":21,"code":0},"cn0":181},{"mesid":{"sat":2,"code":0},"cn0":187},{"mesid":{"sat":31,"code":0},"cn0":166},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":25,"code":0},"cn0":218},{"mesid":{"sat":12,"code":0},"cn0":209},{"mesid":{"sat":29,"code":0},"cn0":213},{"mesid":{"sat":18,"code":0},"cn0":206},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":131,"code":2},"cn0":206},{"mesid":{"sat":25,"code":1},"cn0":204},{"mesid":{"sat":12,"code":1},"cn0":187},{"mesid":{"sat":31,"code":1},"cn0":153},{"mesid":{"sat":18,"code":1},"cn0":197},{"mesid":{"sat":29,"code":1},"cn0":195},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":5,"code":1},"cn0":194},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":100,"code":3},"cn0":214},{"mesid":{"sat":98,"code":3},"cn0":178},{"mesid":{"sat":102,"code":3},"cn0":174},{"mesid":{"sat":101,"code":3},"cn0":208},{"mesid":{"sat":93,"code":3},"cn0":208},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":106,"code":3},"cn0":182},{"mesid":{"sat":104,"code":3},"cn0":203},{"mesid":{"sat":98,"code":4},"cn0":170},{"mesid":{"sat":102,"code":4},"cn0":205},{"mesid":{"sat":93,"code":4},"cn0":67},{"mesid":{"sat":100,"code":4},"cn0":201},{"mesid":{"sat":101,"code":4},"cn0":195},{"mesid":{"sat":104,"code":4},"cn0":189},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":106,"code":4},"cn0":175},{"mesid":{"sat":35,"code":12},"cn0":200},{"mesid":{"sat":26,"code":12},"cn0":172},{"mesid":{"sat":34,"code":12},"cn0":158},{"mesid":{"sat":24,"code":12},"cn0":188},{"mesid":{"sat":25,"code":12},"cn0":159},{"mesid":{"sat":12,"code":12},"cn0":184},{"mesid":{"sat":19,"code":12},"cn0":185},{"mesid":{"sat":22,"code":12},"cn0":192},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":12,"code":13},"cn0":209},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":12,"code":14},"cn0":196},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":25,"code":14},"cn0":192},{"mesid":{"sat":11,"code":14},"cn0":190},{"mesid":{"sat":24,"code":14},"cn0":205},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":31,"code":14},"cn0":160},{"mesid":{"sat":33,"code":14},"cn0":153},{"mesid":{"sat":25,"code":20},"cn0":201},{"mesid":{"sat":24,"code":20},"cn0":215},{"mesid":{"sat":11,"code":20},"cn0":194},{"mesid":{"sat":31,"code":20},"cn0":175},{"mesid":{"sat":12,"code":20},"cn0":206},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":33,"code":20},"cn0":169},{"mesid":{"sat":0,"code":0},"cn0":0}]} +{"crc":2493,"length":11,"msg_type":258,"payload":"MggYJi8QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271525400,"ns_residual":0,"flags":1} +{"crc":28080,"length":16,"msg_type":259,"payload":"ERgmLxDkBwMZAxkH/oPXFw==","preamble":85,"sender":22963,"flags":17,"tow":271525400,"year":2020,"month":3,"day":25,"hours":3,"minutes":25,"seconds":7,"ns":399999998} +{"crc":42041,"length":34,"msg_type":522,"payload":"GCYvEI3gUexl6kJAqB6fFFaSXsA1Jjjnk1ExwAECWwQPBg==","preamble":85,"sender":22963,"tow":271525400,"lat":37.83123544690998,"lon":-122.2865039400009,"height":-17.318663073738396,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":22359,"length":22,"msg_type":526,"payload":"GCYvEPb///8LAAAA/v////EAygIPAg==","preamble":85,"sender":22963,"tow":271525400,"n":-10,"e":11,"d":-2,"h_accuracy":241,"v_accuracy":714,"n_sats":15,"flags":2} +{"crc":8093,"length":15,"msg_type":520,"payload":"GCYvEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271525400,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":56289,"length":22,"msg_type":524,"payload":"GCYvEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271525400,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":45360,"length":6,"msg_type":528,"payload":"GCYvEP//","preamble":85,"sender":22963,"tow":271525400,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":49809,"length":9,"msg_type":117,"payload":"/wAAAAAAAAAA","preamble":85,"sender":22963,"mask":255,"l1ca_bias":0,"l1p_bias":0,"l2ca_bias":0,"l2p_bias":0} +{"crc":28023,"length":11,"msg_type":258,"payload":"Mgh8Ji8QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271525500,"ns_residual":0,"flags":1} +{"crc":10572,"length":16,"msg_type":259,"payload":"EXwmLxDkBwMZAxkH/mTNHQ==","preamble":85,"sender":22963,"flags":17,"tow":271525500,"year":2020,"month":3,"day":25,"hours":3,"minutes":25,"seconds":7,"ns":499999998} +{"crc":30880,"length":34,"msg_type":522,"payload":"fCYvEA2NLuxl6kJAJWGJFFaSXsDy9zZh8FIxwAECWwQPBg==","preamble":85,"sender":22963,"tow":271525500,"lat":37.83123543045995,"lon":-122.28650391975368,"height":-17.323980403823903,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":29256,"length":22,"msg_type":526,"payload":"fCYvEAMAAAABAAAAAwAAAPEAygIPAg==","preamble":85,"sender":22963,"tow":271525500,"n":3,"e":1,"d":3,"h_accuracy":241,"v_accuracy":714,"n_sats":15,"flags":2} +{"crc":13106,"length":15,"msg_type":520,"payload":"fCYvEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271525500,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":50007,"length":22,"msg_type":524,"payload":"fCYvEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271525500,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":59529,"length":6,"msg_type":528,"payload":"fCYvEP//","preamble":85,"sender":22963,"tow":271525500,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":41485,"length":51,"msg_type":1025,"payload":"BkdMTyBMMk9GIE1FIDEgWysxNDQ5bXNdIGxvdyBDTjAgdG9vIGxvbmcsIGRyb3BwaW5n","preamble":85,"sender":22963,"level":6,"text":"GLO L2OF ME 1 [+1449ms] low CN0 too long, dropping"} +{"crc":13355,"length":11,"msg_type":258,"payload":"MgjgJi8QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271525600,"ns_residual":0,"flags":1} +{"crc":51783,"length":16,"msg_type":259,"payload":"EeAmLxDkBwMZAxkH/kXDIw==","preamble":85,"sender":22963,"flags":17,"tow":271525600,"year":2020,"month":3,"day":25,"hours":3,"minutes":25,"seconds":7,"ns":599999998} +{"crc":61784,"length":34,"msg_type":522,"payload":"4CYvEIWo9etl6kJAl3d2FFaSXsApzVaueFMxwAECWwQPBg==","preamble":85,"sender":22963,"tow":271525600,"lat":37.83123540396722,"lon":-122.28650390214021,"height":-17.32606019610572,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":27937,"length":22,"msg_type":526,"payload":"4CYvEPf////+////+f////EAygIPAg==","preamble":85,"sender":22963,"tow":271525600,"n":-9,"e":-2,"d":-7,"h_accuracy":241,"v_accuracy":714,"n_sats":15,"flags":2} +{"crc":38237,"length":15,"msg_type":520,"payload":"4CYvEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271525600,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":15718,"length":22,"msg_type":524,"payload":"4CYvEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271525600,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":11726,"length":6,"msg_type":528,"payload":"4CYvEP//","preamble":85,"sender":22963,"tow":271525600,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":38650,"length":34,"msg_type":30583,"payload":"gwJiJi8QHEI0yQPIIf2Q98a4feltFuQs8hA7en9fb+k7EA==","preamble":85,"sender":22963,"sid":{"sat":131,"code":2},"tow":271525474,"message_type":28,"data":[66,52,201,3,200,33,253,144,247,198,184,125,233,109,22,228,44,242,16,59,122,127,95,111,233,59,16]} +{"crc":63321,"length":11,"msg_type":258,"payload":"MghEJy8QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271525700,"ns_residual":0,"flags":1} +{"crc":26481,"length":16,"msg_type":259,"payload":"EUQnLxDkBwMZAxkH/ia5KQ==","preamble":85,"sender":22963,"flags":17,"tow":271525700,"year":2020,"month":3,"day":25,"hours":3,"minutes":25,"seconds":7,"ns":699999998} +{"crc":58556,"length":34,"msg_type":522,"payload":"RCcvEGBl4+tl6kJA7ldyFFaSXsAiC30f+FQxwAECWwQPBg==","preamble":85,"sender":22963,"tow":271525700,"lat":37.83123539546318,"lon":-122.28650389829974,"height":-17.331911056545444,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":9157,"length":22,"msg_type":526,"payload":"RCcvEAQAAAD7////DAAAAPEAygIPAg==","preamble":85,"sender":22963,"tow":271525700,"n":4,"e":-5,"d":12,"h_accuracy":241,"v_accuracy":714,"n_sats":15,"flags":2} +{"crc":48264,"length":15,"msg_type":520,"payload":"RCcvEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271525700,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":40937,"length":22,"msg_type":524,"payload":"RCcvEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271525700,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":24598,"length":6,"msg_type":528,"payload":"RCcvEP//","preamble":85,"sender":22963,"tow":271525700,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":1502,"length":11,"msg_type":258,"payload":"MgioJy8QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271525800,"ns_residual":0,"flags":1} +{"crc":16492,"length":16,"msg_type":259,"payload":"EagnLxDkBwMZAxkH/gevLw==","preamble":85,"sender":22963,"flags":17,"tow":271525800,"year":2020,"month":3,"day":25,"hours":3,"minutes":25,"seconds":7,"ns":799999998} +{"crc":9585,"length":34,"msg_type":522,"payload":"qCcvEJxL2etl6kJAP4FyFFaSXsCEWV48jFYxwAECWwQPBg==","preamble":85,"sender":22963,"tow":271525800,"lat":37.8312353907597,"lon":-122.28650389845005,"height":-17.33807732871493,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":45056,"length":22,"msg_type":526,"payload":"qCcvEAQAAAD7////DQAAAPEAygIPAg==","preamble":85,"sender":22963,"tow":271525800,"n":4,"e":-5,"d":13,"h_accuracy":241,"v_accuracy":714,"n_sats":15,"flags":2} +{"crc":58224,"length":15,"msg_type":520,"payload":"qCcvEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271525800,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":25449,"length":22,"msg_type":524,"payload":"qCcvEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271525800,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":57549,"length":6,"msg_type":528,"payload":"qCcvEP//","preamble":85,"sender":22963,"tow":271525800,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":63332,"length":237,"msg_type":97,"payload":"BQDWFQC2AgC7HwClAAAAAAAAGQDbDADRHQDWEgDOAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwLOGQHMDAG7HwGYEgHFHQHDAAAABQHCAAAAAAAAAAAAAAAACwPWCQOxFAOuBQPQCgPQAAAABAO3FQPLCQSrFATNAAAACwTJBQTDAAS8AAAABASvIwzIGgysIgyeGAy8GQyfDAy5Ewy5FgzAAAAADA3QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADA7EAAAAGQ7BCw6+GA7OAAAAHw6gIQ6ZGRTJGBTXCxTBHxSvDBTOAAAAIRSoAAAA","preamble":85,"sender":22963,"states":[{"mesid":{"sat":5,"code":0},"cn0":214},{"mesid":{"sat":21,"code":0},"cn0":182},{"mesid":{"sat":2,"code":0},"cn0":187},{"mesid":{"sat":31,"code":0},"cn0":165},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":25,"code":0},"cn0":219},{"mesid":{"sat":12,"code":0},"cn0":209},{"mesid":{"sat":29,"code":0},"cn0":214},{"mesid":{"sat":18,"code":0},"cn0":206},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":131,"code":2},"cn0":206},{"mesid":{"sat":25,"code":1},"cn0":204},{"mesid":{"sat":12,"code":1},"cn0":187},{"mesid":{"sat":31,"code":1},"cn0":152},{"mesid":{"sat":18,"code":1},"cn0":197},{"mesid":{"sat":29,"code":1},"cn0":195},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":5,"code":1},"cn0":194},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":11,"code":3},"cn0":214},{"mesid":{"sat":9,"code":3},"cn0":177},{"mesid":{"sat":20,"code":3},"cn0":174},{"mesid":{"sat":5,"code":3},"cn0":208},{"mesid":{"sat":10,"code":3},"cn0":208},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":4,"code":3},"cn0":183},{"mesid":{"sat":21,"code":3},"cn0":203},{"mesid":{"sat":9,"code":4},"cn0":171},{"mesid":{"sat":20,"code":4},"cn0":205},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":11,"code":4},"cn0":201},{"mesid":{"sat":5,"code":4},"cn0":195},{"mesid":{"sat":0,"code":4},"cn0":188},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":4,"code":4},"cn0":175},{"mesid":{"sat":35,"code":12},"cn0":200},{"mesid":{"sat":26,"code":12},"cn0":172},{"mesid":{"sat":34,"code":12},"cn0":158},{"mesid":{"sat":24,"code":12},"cn0":188},{"mesid":{"sat":25,"code":12},"cn0":159},{"mesid":{"sat":12,"code":12},"cn0":185},{"mesid":{"sat":19,"code":12},"cn0":185},{"mesid":{"sat":22,"code":12},"cn0":192},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":12,"code":13},"cn0":208},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":12,"code":14},"cn0":196},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":25,"code":14},"cn0":193},{"mesid":{"sat":11,"code":14},"cn0":190},{"mesid":{"sat":24,"code":14},"cn0":206},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":31,"code":14},"cn0":160},{"mesid":{"sat":33,"code":14},"cn0":153},{"mesid":{"sat":25,"code":20},"cn0":201},{"mesid":{"sat":24,"code":20},"cn0":215},{"mesid":{"sat":11,"code":20},"cn0":193},{"mesid":{"sat":31,"code":20},"cn0":175},{"mesid":{"sat":12,"code":20},"cn0":206},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":33,"code":20},"cn0":168},{"mesid":{"sat":0,"code":0},"cn0":0}]} +{"crc":34187,"length":128,"msg_type":151,"payload":"AgAaHQUAKzUMAFEtFQB9GRkAbUYaAKEBHQChNx8AlQ4EAxUWBQMyIQkDXw4KA3EpCwOYJQwDqgMTAyIHFAMMMRUDlSUMDJQpEwwjIBQMDwIWDEMkGAyCIxkMnQ4aDGcVIgyOESMMIi0LDosyDA4PPBgObDYZDpcpHw5VESEOIA8=","preamble":85,"sender":22963,"azel":[{"sid":{"sat":2,"code":0},"az":26,"el":29},{"sid":{"sat":5,"code":0},"az":43,"el":53},{"sid":{"sat":12,"code":0},"az":81,"el":45},{"sid":{"sat":21,"code":0},"az":125,"el":25},{"sid":{"sat":25,"code":0},"az":109,"el":70},{"sid":{"sat":26,"code":0},"az":161,"el":1},{"sid":{"sat":29,"code":0},"az":161,"el":55},{"sid":{"sat":31,"code":0},"az":149,"el":14},{"sid":{"sat":4,"code":3},"az":21,"el":22},{"sid":{"sat":5,"code":3},"az":50,"el":33},{"sid":{"sat":9,"code":3},"az":95,"el":14},{"sid":{"sat":10,"code":3},"az":113,"el":41},{"sid":{"sat":11,"code":3},"az":152,"el":37},{"sid":{"sat":12,"code":3},"az":170,"el":3},{"sid":{"sat":19,"code":3},"az":34,"el":7},{"sid":{"sat":20,"code":3},"az":12,"el":49},{"sid":{"sat":21,"code":3},"az":149,"el":37},{"sid":{"sat":12,"code":12},"az":148,"el":41},{"sid":{"sat":19,"code":12},"az":35,"el":32},{"sid":{"sat":20,"code":12},"az":15,"el":2},{"sid":{"sat":22,"code":12},"az":67,"el":36},{"sid":{"sat":24,"code":12},"az":130,"el":35},{"sid":{"sat":25,"code":12},"az":157,"el":14},{"sid":{"sat":26,"code":12},"az":103,"el":21},{"sid":{"sat":34,"code":12},"az":142,"el":17},{"sid":{"sat":35,"code":12},"az":34,"el":45},{"sid":{"sat":11,"code":14},"az":139,"el":50},{"sid":{"sat":12,"code":14},"az":15,"el":60},{"sid":{"sat":24,"code":14},"az":108,"el":54},{"sid":{"sat":25,"code":14},"az":151,"el":41},{"sid":{"sat":31,"code":14},"az":85,"el":17},{"sid":{"sat":33,"code":14},"az":32,"el":15}]} +{"crc":22717,"length":11,"msg_type":258,"payload":"MggMKC8QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271525900,"ns_residual":0,"flags":1} +{"crc":27188,"length":16,"msg_type":259,"payload":"EQwoLxDkBwMZAxkH/uikNQ==","preamble":85,"sender":22963,"flags":17,"tow":271525900,"year":2020,"month":3,"day":25,"hours":3,"minutes":25,"seconds":7,"ns":899999998} +{"crc":6655,"length":34,"msg_type":522,"payload":"DCgvEMbj2Otl6kJAs+NqFFaSXsA1scWLqVgxwAECWwQPBg==","preamble":85,"sender":22963,"tow":271525900,"lat":37.831235390570825,"lon":-122.28650389135764,"height":-17.346337066425992,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":50008,"length":22,"msg_type":526,"payload":"DCgvEAIAAAAFAAAABwAAAPEAygIPAg==","preamble":85,"sender":22963,"tow":271525900,"n":2,"e":5,"d":7,"h_accuracy":241,"v_accuracy":714,"n_sats":15,"flags":2} +{"crc":10921,"length":15,"msg_type":520,"payload":"DCgvEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271525900,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":53990,"length":22,"msg_type":524,"payload":"DCgvEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271525900,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":25277,"length":6,"msg_type":528,"payload":"DCgvEP//","preamble":85,"sender":22963,"tow":271525900,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":62956,"length":249,"msg_type":74,"payload":"cCgvEAAAAAAyCEDySbQ+bhuXBtlD/7vWDw8FACdbE0WCiEIHUHsIjLUPDxUAQ4b2RdRoWgdlUvaPuw8PAgBcMwNJXHWsByZw/vClDw8fADLdJz1JcW0GSpT7bNsPDxkA3OK5QMaBzQZpZfSE0Q8PDAD9Lc4+BtSZBpbLBU/WDw8dAFvdJz3PKQIFQo38lswPDxkBdeK5QNQETQXT9/bIuw8PDAEnMwNJMr/6BezI/lyYDw8fAbQtzj7RvyQFxoMECsMPDx0Br0m0PiChIgWHbf9Kwg8PBQEihvo+/hO7Bo2GBA7WDw8LA0Wn3ESPuFoHS8juzbIPDwkD","preamble":85,"sender":22963,"header":{"t":{"tow":271526000,"ns_residual":0,"wn":2098},"n_obs":64},"obs":[{"P":1052002802,"L":{"i":110566254,"f":217},"D":{"i":-189,"f":187},"cn0":214,"lock":15,"flags":15,"sid":{"sat":5,"code":0}},{"P":1158896423,"L":{"i":121800834,"f":80},"D":{"i":2171,"f":140},"cn0":181,"lock":15,"flags":15,"sid":{"sat":21,"code":0}},{"P":1173784131,"L":{"i":123365588,"f":101},"D":{"i":-2478,"f":143},"cn0":187,"lock":15,"flags":15,"sid":{"sat":2,"code":0}},{"P":1224946524,"L":{"i":128742748,"f":38},"D":{"i":-400,"f":240},"cn0":165,"lock":15,"flags":15,"sid":{"sat":31,"code":0}},{"P":1026022706,"L":{"i":107835721,"f":74},"D":{"i":-1132,"f":108},"cn0":219,"lock":15,"flags":15,"sid":{"sat":25,"code":0}},{"P":1085924060,"L":{"i":114131398,"f":105},"D":{"i":-2971,"f":132},"cn0":209,"lock":15,"flags":15,"sid":{"sat":12,"code":0}},{"P":1053699581,"L":{"i":110744582,"f":150},"D":{"i":1483,"f":79},"cn0":214,"lock":15,"flags":15,"sid":{"sat":29,"code":0}},{"P":1026022747,"L":{"i":84027855,"f":66},"D":{"i":-883,"f":150},"cn0":204,"lock":15,"flags":15,"sid":{"sat":25,"code":1}},{"P":1085923957,"L":{"i":88933588,"f":211},"D":{"i":-2313,"f":200},"cn0":187,"lock":15,"flags":15,"sid":{"sat":12,"code":1}},{"P":1224946471,"L":{"i":100319026,"f":236},"D":{"i":-312,"f":92},"cn0":152,"lock":15,"flags":15,"sid":{"sat":31,"code":1}},{"P":1053699508,"L":{"i":86294481,"f":198},"D":{"i":1155,"f":10},"cn0":195,"lock":15,"flags":15,"sid":{"sat":29,"code":1}},{"P":1052002735,"L":{"i":86155552,"f":135},"D":{"i":-147,"f":74},"cn0":194,"lock":15,"flags":15,"sid":{"sat":5,"code":1}},{"P":1056605730,"L":{"i":112923646,"f":141},"D":{"i":1158,"f":14},"cn0":214,"lock":15,"flags":15,"sid":{"sat":11,"code":3}},{"P":1155311429,"L":{"i":123385999,"f":75},"D":{"i":-4408,"f":205},"cn0":178,"lock":15,"flags":15,"sid":{"sat":9,"code":3}}]} +{"crc":27044,"length":249,"msg_type":74,"payload":"cCgvEAAAAAAyCEFBYi89AC+LBspG+0+uDw8UA0CUBUADPNgG2pAIn9APDwUDzXFqPol7pwaVF/Rs0A8PCgNggwlDofstB2PU+pi3Dw8EA0zvJz/CW8IGzVUG8csPDxUDr6fcRLFWuAX9nfIKrA8PCQS1Yy89z+sWBQRS/KHNDw8UBEmH+j4JLDwFM4UDyMkPDwsEY5UFQFzZUgUfqAYRww8PBQQhhAlDyYqVBRn7+wmvDw8EBAnMl0Vabj8HOyT6ncgPDyMMNJf4SeUntAeHQfRLrA8PGgzBpRJMPTHsBwTMCBeeDw8iDIy5okca5HUHJuX6LLwPDxgM","preamble":85,"sender":22963,"header":{"t":{"tow":271526000,"ns_residual":0,"wn":2098},"n_obs":65},"obs":[{"P":1026515521,"L":{"i":109784832,"f":202},"D":{"i":-1210,"f":79},"cn0":174,"lock":15,"flags":15,"sid":{"sat":20,"code":3}},{"P":1074107456,"L":{"i":114834435,"f":218},"D":{"i":2192,"f":159},"cn0":208,"lock":15,"flags":15,"sid":{"sat":5,"code":3}},{"P":1047163341,"L":{"i":111639433,"f":149},"D":{"i":-3049,"f":108},"cn0":208,"lock":15,"flags":15,"sid":{"sat":10,"code":3}},{"P":1124696928,"L":{"i":120454049,"f":99},"D":{"i":-1324,"f":152},"cn0":183,"lock":15,"flags":15,"sid":{"sat":4,"code":3}},{"P":1059581772,"L":{"i":113400770,"f":205},"D":{"i":1621,"f":241},"cn0":203,"lock":15,"flags":15,"sid":{"sat":21,"code":3}},{"P":1155311535,"L":{"i":95966897,"f":253},"D":{"i":-3427,"f":10},"cn0":172,"lock":15,"flags":15,"sid":{"sat":9,"code":4}},{"P":1026515893,"L":{"i":85388239,"f":4},"D":{"i":-942,"f":161},"cn0":205,"lock":15,"flags":15,"sid":{"sat":20,"code":4}},{"P":1056606025,"L":{"i":87829513,"f":51},"D":{"i":901,"f":200},"cn0":201,"lock":15,"flags":15,"sid":{"sat":11,"code":4}},{"P":1074107747,"L":{"i":89315676,"f":31},"D":{"i":1704,"f":17},"cn0":195,"lock":15,"flags":15,"sid":{"sat":5,"code":4}},{"P":1124697121,"L":{"i":93686473,"f":25},"D":{"i":-1029,"f":9},"cn0":175,"lock":15,"flags":15,"sid":{"sat":4,"code":4}},{"P":1167576073,"L":{"i":121597530,"f":59},"D":{"i":-1500,"f":157},"cn0":200,"lock":15,"flags":15,"sid":{"sat":35,"code":12}},{"P":1241028404,"L":{"i":129247205,"f":135},"D":{"i":-3007,"f":75},"cn0":172,"lock":15,"flags":15,"sid":{"sat":26,"code":12}},{"P":1276290497,"L":{"i":132919613,"f":4},"D":{"i":2252,"f":23},"cn0":158,"lock":15,"flags":15,"sid":{"sat":34,"code":12}},{"P":1201846668,"L":{"i":125166618,"f":38},"D":{"i":-1307,"f":44},"cn0":188,"lock":15,"flags":15,"sid":{"sat":24,"code":12}}]} +{"crc":22451,"length":249,"msg_type":74,"payload":"cCgvEAAAAAAyCELzJRFNdLIGCDIpBeufDw8ZDHAgTEXJjDcH5EsGlrgPDwwM6L5DR9//awdQ2v63uQ8PEwx+5VpHFWluB0NRCcLADw8WDCsgTEWYpJQFe98ELNAPDwwNwMsIQsC08AbW+/vZxA8PDA7NKh9LnjXlB7Y8BNfBDw8ZDvxdH0d4m3kHmRcEs78PDwsODaMqQzIrDwf6LPlPzQ8PGA5mO01RSXyLCH+a83GgDw8fDqET+lHNpp0I5aT36ZoPDyEOwCofSwq4DAZLPwMbyQ8PGRQvpSpD9bZoBZLF+kvXDw8YFEddH0crRboFpCMDpcIPDwsU","preamble":85,"sender":22963,"header":{"t":{"tow":271526000,"ns_residual":0,"wn":2098},"n_obs":66},"obs":[{"P":1292969459,"L":{"i":134656628,"f":50},"D":{"i":1321,"f":235},"cn0":159,"lock":15,"flags":15,"sid":{"sat":25,"code":12}},{"P":1162616944,"L":{"i":121081033,"f":228},"D":{"i":1611,"f":150},"cn0":184,"lock":15,"flags":15,"sid":{"sat":12,"code":12}},{"P":1195622120,"L":{"i":124518367,"f":80},"D":{"i":-294,"f":183},"cn0":185,"lock":15,"flags":15,"sid":{"sat":19,"code":12}},{"P":1197139326,"L":{"i":124676373,"f":67},"D":{"i":2385,"f":194},"cn0":192,"lock":15,"flags":15,"sid":{"sat":22,"code":12}},{"P":1162616875,"L":{"i":93627544,"f":123},"D":{"i":1247,"f":44},"cn0":208,"lock":15,"flags":15,"sid":{"sat":12,"code":13}},{"P":1107872704,"L":{"i":116438208,"f":214},"D":{"i":-1029,"f":217},"cn0":196,"lock":15,"flags":15,"sid":{"sat":12,"code":14}},{"P":1260333773,"L":{"i":132461982,"f":182},"D":{"i":1084,"f":215},"cn0":193,"lock":15,"flags":15,"sid":{"sat":25,"code":14}},{"P":1193238012,"L":{"i":125410168,"f":153},"D":{"i":1047,"f":179},"cn0":191,"lock":15,"flags":15,"sid":{"sat":11,"code":14}},{"P":1126867725,"L":{"i":118434610,"f":250},"D":{"i":-1748,"f":79},"cn0":205,"lock":15,"flags":15,"sid":{"sat":24,"code":14}},{"P":1364015974,"L":{"i":143359049,"f":127},"D":{"i":-3174,"f":113},"cn0":160,"lock":15,"flags":15,"sid":{"sat":31,"code":14}},{"P":1375343521,"L":{"i":144549581,"f":229},"D":{"i":-2140,"f":233},"cn0":154,"lock":15,"flags":15,"sid":{"sat":33,"code":14}},{"P":1260333760,"L":{"i":101496842,"f":75},"D":{"i":831,"f":27},"cn0":201,"lock":15,"flags":15,"sid":{"sat":25,"code":20}},{"P":1126868271,"L":{"i":90748661,"f":146},"D":{"i":-1339,"f":75},"cn0":215,"lock":15,"flags":15,"sid":{"sat":24,"code":20}},{"P":1193237831,"L":{"i":96093483,"f":164},"D":{"i":803,"f":165},"cn0":194,"lock":15,"flags":15,"sid":{"sat":11,"code":20}}]} +{"crc":2370,"length":62,"msg_type":74,"payload":"cCgvEAAAAAAyCEPEO01ROSCMBumB9vqvDw8fFBnLCEJlX1EF4+78L84PDwwUexP6UbkLmgYCmfkxqA8PIRQ=","preamble":85,"sender":22963,"header":{"t":{"tow":271526000,"ns_residual":0,"wn":2098},"n_obs":67},"obs":[{"P":1364016068,"L":{"i":109846585,"f":233},"D":{"i":-2431,"f":250},"cn0":175,"lock":15,"flags":15,"sid":{"sat":31,"code":20}},{"P":1107872537,"L":{"i":89218917,"f":227},"D":{"i":-786,"f":47},"cn0":206,"lock":15,"flags":15,"sid":{"sat":12,"code":20}},{"P":1375343483,"L":{"i":110758841,"f":2},"D":{"i":-1639,"f":49},"cn0":168,"lock":15,"flags":15,"sid":{"sat":33,"code":20}}]} +{"crc":49809,"length":9,"msg_type":117,"payload":"/wAAAAAAAAAA","preamble":85,"sender":22963,"mask":255,"l1ca_bias":0,"l1p_bias":0,"l2ca_bias":0,"l2p_bias":0} +{"crc":18038,"length":11,"msg_type":258,"payload":"MghwKC8QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271526000,"ns_residual":0,"flags":1} +{"crc":23030,"length":16,"msg_type":259,"payload":"EXAoLxDkBwMZAxkH/smaOw==","preamble":85,"sender":22963,"flags":17,"tow":271526000,"year":2020,"month":3,"day":25,"hours":3,"minutes":25,"seconds":7,"ns":999999998} +{"crc":5258,"length":34,"msg_type":522,"payload":"cCgvECeJ0Otl6kJA40RjFFaSXsC1UzeRu1sxwAECWwQPBg==","preamble":85,"sender":22963,"tow":271526000,"lat":37.831235386680696,"lon":-122.28650388426063,"height":-17.358330799109996,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":5540,"length":22,"msg_type":526,"payload":"cCgvEPv///8IAAAABgAAAPEAygIPAg==","preamble":85,"sender":22963,"tow":271526000,"n":-5,"e":8,"d":6,"h_accuracy":241,"v_accuracy":714,"n_sats":15,"flags":2} +{"crc":28617,"length":15,"msg_type":520,"payload":"cCgvEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271526000,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":10677,"length":22,"msg_type":524,"payload":"cCgvEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271526000,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":11458,"length":6,"msg_type":528,"payload":"cCgvEP//","preamble":85,"sender":22963,"tow":271526000,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":40942,"length":4,"msg_type":65535,"payload":"AAUCgA==","preamble":85,"sender":22963,"flags":2147616000} +{"crc":2168,"length":24,"msg_type":72,"payload":"UO0a3iqORMHK1UJhIkRQwc9nFIPvrk1B","preamble":85,"sender":22963,"x":-2694229.735196747,"y":-4264073.519704292,"z":3890655.0240602265} +{"crc":47991,"length":26,"msg_type":23,"payload":"bWFpbgAAAAAAAAAAAAAAAAAAAAAAAAx1AAA=","preamble":85,"sender":22963,"name":"main\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":0,"stack_free":29964} +{"crc":43937,"length":26,"msg_type":23,"payload":"aWRsZQAAAAAAAAAAAAAAAAAAAAABAXwAAAA=","preamble":85,"sender":22963,"name":"idle\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":257,"stack_free":124} +{"crc":58151,"length":26,"msg_type":23,"payload":"cnBtc2cAAAAAAAAAAAAAAAAAAAABANwNAAA=","preamble":85,"sender":22963,"name":"rpmsg\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":1,"stack_free":3548} +{"crc":51784,"length":26,"msg_type":23,"payload":"U0JQAAAAAAAAAAAAAAAAAAAAAAAAAPz/AAA=","preamble":85,"sender":22963,"name":"SBP\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":0,"stack_free":65532} +{"crc":33651,"length":26,"msg_type":23,"payload":"TkFQAAAAAAAAAAAAAAAAAAAAAAAAAASAAAA=","preamble":85,"sender":22963,"name":"NAP\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":0,"stack_free":32772} +{"crc":22620,"length":26,"msg_type":23,"payload":"bWFuYWdlIFBWAAAAAAAAAAAAAAAAABQEAAA=","preamble":85,"sender":22963,"name":"manage PV\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":0,"stack_free":1044} +{"crc":14252,"length":26,"msg_type":23,"payload":"SU1VAAAAAAAAAAAAAAAAAAAAAAAAAPQHAAA=","preamble":85,"sender":22963,"name":"IMU\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":0,"stack_free":2036} +{"crc":18976,"length":26,"msg_type":23,"payload":"SU1VIGF1eAAAAAAAAAAAAAAAAAAAAEwIAAA=","preamble":85,"sender":22963,"name":"IMU aux\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":0,"stack_free":2124} +{"crc":26120,"length":26,"msg_type":23,"payload":"bmRiAAAAAAAAAAAAAAAAAAAAAAAAAFAMAAA=","preamble":85,"sender":22963,"name":"ndb\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":0,"stack_free":3152} +{"crc":49551,"length":26,"msg_type":23,"payload":"TkFQIFRyYWNraW5nAAAAAAAAAAAfAdR3AAA=","preamble":85,"sender":22963,"name":"NAP Tracking\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":287,"stack_free":30676} +{"crc":40082,"length":26,"msg_type":23,"payload":"ZGVjb2RlAAAAAAAAAAAAAAAAAAAIANQGAAA=","preamble":85,"sender":22963,"name":"decode\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":8,"stack_free":1748} +{"crc":5608,"length":26,"msg_type":23,"payload":"bWFuYWdlIGFjcQAAAAAAAAAAAAAdAaR3AAA=","preamble":85,"sender":22963,"name":"manage acq\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":285,"stack_free":30628} +{"crc":58531,"length":26,"msg_type":23,"payload":"c3lzdGVtIG1vbml0b3IAAAAAAAAAACwGAAA=","preamble":85,"sender":22963,"name":"system monitor\u0000\u0000\u0000\u0000\u0000\u0000","cpu":0,"stack_free":1580} +{"crc":44438,"length":26,"msg_type":23,"payload":"V2F0Y2hkb2cAAAAAAAAAAAAAAAAAAOQDAAA=","preamble":85,"sender":22963,"name":"Watchdog\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":0,"stack_free":996} +{"crc":15999,"length":26,"msg_type":23,"payload":"c3RhcmxpbmcAAAAAAAAAAAAAAACVAPz/AAA=","preamble":85,"sender":22963,"name":"starling\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":149,"stack_free":65532} +{"crc":57561,"length":26,"msg_type":23,"payload":"bWVfY2FsY19wdnQAAAAAAAAAAAAJAIwjAAA=","preamble":85,"sender":22963,"name":"me_calc_pvt\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":9,"stack_free":9100} +{"crc":38576,"length":26,"msg_type":23,"payload":"UFBTAAAAAAAAAAAAAAAAAAAAAAAAAEgHAAA=","preamble":85,"sender":22963,"name":"PPS\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":0,"stack_free":1864} +{"crc":50933,"length":26,"msg_type":23,"payload":"c3BlY3RydW0gYW5hbHl6ZXIAAAAAANQPAAA=","preamble":85,"sender":22963,"name":"spectrum analyzer\u0000\u0000\u0000","cpu":0,"stack_free":4052} +{"crc":49879,"length":11,"msg_type":258,"payload":"MgjUKC8QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271526100,"ns_residual":0,"flags":1} +{"crc":47717,"length":16,"msg_type":259,"payload":"EdQoLxDkBwMZAxkI/uD1BQ==","preamble":85,"sender":22963,"flags":17,"tow":271526100,"year":2020,"month":3,"day":25,"hours":3,"minutes":25,"seconds":8,"ns":99999998} +{"crc":9344,"length":34,"msg_type":522,"payload":"1CgvEEnUzutl6kJA6IRnFFaSXsBLtY02dl4xwAECWwQPBg==","preamble":85,"sender":22963,"tow":271526100,"lat":37.83123538588604,"lon":-122.28650388821882,"height":-17.3689912887542,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":37663,"length":22,"msg_type":526,"payload":"1CgvEPv///8BAAAA+v////EAygIPAg==","preamble":85,"sender":22963,"tow":271526100,"n":-5,"e":1,"d":-6,"h_accuracy":241,"v_accuracy":714,"n_sats":15,"flags":2} +{"crc":15741,"length":15,"msg_type":520,"payload":"1CgvEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271526100,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":24268,"length":22,"msg_type":524,"payload":"1CgvEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271526100,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":52043,"length":6,"msg_type":528,"payload":"1CgvEP//","preamble":85,"sender":22963,"tow":271526100,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":30595,"length":11,"msg_type":258,"payload":"Mgg4KS8QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271526200,"ns_residual":0,"flags":1} +{"crc":61112,"length":16,"msg_type":259,"payload":"ETgpLxDkBwMZAxkI/sHrCw==","preamble":85,"sender":22963,"flags":17,"tow":271526200,"year":2020,"month":3,"day":25,"hours":3,"minutes":25,"seconds":8,"ns":199999998} +{"crc":36493,"length":34,"msg_type":522,"payload":"OCkvEJWPwetl6kJA5SFjFFaSXsCOATGfT2IxwAECWwQPBg==","preamble":85,"sender":22963,"tow":271526200,"lat":37.83123537970747,"lon":-122.28650388413332,"height":-17.384027432884572,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":47165,"length":22,"msg_type":526,"payload":"OCkvEPf///8DAAAAFgAAAPEAygIPAg==","preamble":85,"sender":22963,"tow":271526200,"n":-9,"e":3,"d":22,"h_accuracy":241,"v_accuracy":714,"n_sats":15,"flags":2} +{"crc":6628,"length":15,"msg_type":520,"payload":"OCkvEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271526200,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":30650,"length":22,"msg_type":524,"payload":"OCkvEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271526200,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":57793,"length":6,"msg_type":528,"payload":"OCkvEP//","preamble":85,"sender":22963,"tow":271526200,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":62242,"length":11,"msg_type":258,"payload":"MgicKS8QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271526300,"ns_residual":0,"flags":1} +{"crc":8839,"length":16,"msg_type":259,"payload":"EZwpLxDkBwMZAxkI/qLhEQ==","preamble":85,"sender":22963,"flags":17,"tow":271526300,"year":2020,"month":3,"day":25,"hours":3,"minutes":25,"seconds":8,"ns":299999998} +{"crc":51239,"length":34,"msg_type":522,"payload":"nCkvEJMw2+tl6kJALhNuFFaSXsCRwLVYkGUxwAECWwQPBg==","preamble":85,"sender":22963,"tow":271526300,"lat":37.83123539164185,"lon":-122.28650389432434,"height":-17.396733803151225,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":31540,"length":22,"msg_type":526,"payload":"nCkvEA0AAADu/////P////EAygIPAg==","preamble":85,"sender":22963,"tow":271526300,"n":13,"e":-18,"d":-4,"h_accuracy":241,"v_accuracy":714,"n_sats":15,"flags":2} +{"crc":19280,"length":15,"msg_type":520,"payload":"nCkvEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271526300,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":195,"length":22,"msg_type":524,"payload":"nCkvEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271526300,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":1608,"length":6,"msg_type":528,"payload":"nCkvEP//","preamble":85,"sender":22963,"tow":271526300,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":47831,"length":237,"msg_type":97,"payload":"BQDWFQC1AgC7HwClAAAAAAAAGQDaDADRHQDVEgDOAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwLNGQHMDAG7HwGYEgHFHQHDAAAABQHCAAAAAAAAAAAAAAAAZAPVYgOyZgOuZQPPXQPQAAAAagO3aAPLYgSrZgTNAAAAZATJZQTDaAS8AAAAagSvIwzIGgysIgyeGAy8GQyfDAy4Ewy5FgzAAAAADA3QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADA7EAAAAGQ7BCw6+GA7NAAAAHw6fIQ6ZGRTJGBTXCxTCHxSvDBTOAAAAIRSoAAAA","preamble":85,"sender":22963,"states":[{"mesid":{"sat":5,"code":0},"cn0":214},{"mesid":{"sat":21,"code":0},"cn0":181},{"mesid":{"sat":2,"code":0},"cn0":187},{"mesid":{"sat":31,"code":0},"cn0":165},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":25,"code":0},"cn0":218},{"mesid":{"sat":12,"code":0},"cn0":209},{"mesid":{"sat":29,"code":0},"cn0":213},{"mesid":{"sat":18,"code":0},"cn0":206},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":131,"code":2},"cn0":205},{"mesid":{"sat":25,"code":1},"cn0":204},{"mesid":{"sat":12,"code":1},"cn0":187},{"mesid":{"sat":31,"code":1},"cn0":152},{"mesid":{"sat":18,"code":1},"cn0":197},{"mesid":{"sat":29,"code":1},"cn0":195},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":5,"code":1},"cn0":194},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":100,"code":3},"cn0":213},{"mesid":{"sat":98,"code":3},"cn0":178},{"mesid":{"sat":102,"code":3},"cn0":174},{"mesid":{"sat":101,"code":3},"cn0":207},{"mesid":{"sat":93,"code":3},"cn0":208},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":106,"code":3},"cn0":183},{"mesid":{"sat":104,"code":3},"cn0":203},{"mesid":{"sat":98,"code":4},"cn0":171},{"mesid":{"sat":102,"code":4},"cn0":205},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":100,"code":4},"cn0":201},{"mesid":{"sat":101,"code":4},"cn0":195},{"mesid":{"sat":104,"code":4},"cn0":188},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":106,"code":4},"cn0":175},{"mesid":{"sat":35,"code":12},"cn0":200},{"mesid":{"sat":26,"code":12},"cn0":172},{"mesid":{"sat":34,"code":12},"cn0":158},{"mesid":{"sat":24,"code":12},"cn0":188},{"mesid":{"sat":25,"code":12},"cn0":159},{"mesid":{"sat":12,"code":12},"cn0":184},{"mesid":{"sat":19,"code":12},"cn0":185},{"mesid":{"sat":22,"code":12},"cn0":192},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":12,"code":13},"cn0":208},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":12,"code":14},"cn0":196},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":25,"code":14},"cn0":193},{"mesid":{"sat":11,"code":14},"cn0":190},{"mesid":{"sat":24,"code":14},"cn0":205},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":31,"code":14},"cn0":159},{"mesid":{"sat":33,"code":14},"cn0":153},{"mesid":{"sat":25,"code":20},"cn0":201},{"mesid":{"sat":24,"code":20},"cn0":215},{"mesid":{"sat":11,"code":20},"cn0":194},{"mesid":{"sat":31,"code":20},"cn0":175},{"mesid":{"sat":12,"code":20},"cn0":206},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":33,"code":20},"cn0":168},{"mesid":{"sat":0,"code":0},"cn0":0}]} +{"crc":25099,"length":11,"msg_type":258,"payload":"MggAKi8QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271526400,"ns_residual":0,"flags":1} +{"crc":30536,"length":16,"msg_type":259,"payload":"EQAqLxDkBwMZAxkI/oPXFw==","preamble":85,"sender":22963,"flags":17,"tow":271526400,"year":2020,"month":3,"day":25,"hours":3,"minutes":25,"seconds":8,"ns":399999998} +{"crc":23064,"length":34,"msg_type":522,"payload":"ACovEHiC5+tl6kJAZ2dWFFaSXsBhlkqj02gxwAECWwQPBg==","preamble":85,"sender":22963,"tow":271526400,"lat":37.83123539737875,"lon":-122.286503872279,"height":-17.409479337415522,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":49644,"length":22,"msg_type":526,"payload":"ACovEAQAAAAJAAAACAAAAPEAygIPAg==","preamble":85,"sender":22963,"tow":271526400,"n":4,"e":9,"d":8,"h_accuracy":241,"v_accuracy":714,"n_sats":15,"flags":2} +{"crc":24732,"length":15,"msg_type":520,"payload":"ACovEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271526400,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":37065,"length":22,"msg_type":524,"payload":"ACovEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271526400,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":11741,"length":6,"msg_type":528,"payload":"ACovEP//","preamble":85,"sender":22963,"tow":271526400,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":49809,"length":9,"msg_type":117,"payload":"/wAAAAAAAAAA","preamble":85,"sender":22963,"mask":255,"l1ca_bias":0,"l1p_bias":0,"l2ca_bias":0,"l2p_bias":0} +{"crc":1729,"length":11,"msg_type":258,"payload":"MghkKi8QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271526500,"ns_residual":0,"flags":1} +{"crc":13236,"length":16,"msg_type":259,"payload":"EWQqLxDkBwMZAxkI/mTNHQ==","preamble":85,"sender":22963,"flags":17,"tow":271526500,"year":2020,"month":3,"day":25,"hours":3,"minutes":25,"seconds":8,"ns":499999998} +{"crc":38759,"length":34,"msg_type":522,"payload":"ZCovEH161utl6kJAwFFGFFaSXsC+AdZgo2sxwAECWwQPBg==","preamble":85,"sender":22963,"tow":271526500,"lat":37.83123538944799,"lon":-122.28650385729907,"height":-17.420461704490428,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":5344,"length":22,"msg_type":526,"payload":"ZCovEPT////+////GwAAAPEAygIPAg==","preamble":85,"sender":22963,"tow":271526500,"n":-12,"e":-2,"d":27,"h_accuracy":241,"v_accuracy":714,"n_sats":15,"flags":2} +{"crc":19507,"length":15,"msg_type":520,"payload":"ZCovEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271526500,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":34943,"length":22,"msg_type":524,"payload":"ZCovEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271526500,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":29796,"length":6,"msg_type":528,"payload":"ZCovEP//","preamble":85,"sender":22963,"tow":271526500,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":43935,"length":11,"msg_type":258,"payload":"MgjIKi8QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271526600,"ns_residual":0,"flags":1} +{"crc":801,"length":16,"msg_type":259,"payload":"EcgqLxDkBwMZAxkI/kXDIw==","preamble":85,"sender":22963,"flags":17,"tow":271526600,"year":2020,"month":3,"day":25,"hours":3,"minutes":25,"seconds":8,"ns":599999998} +{"crc":30978,"length":34,"msg_type":522,"payload":"yCovEL9J3Otl6kJAb1EkFFaSXsBngm0nMG0xwAECWwQPBg==","preamble":85,"sender":22963,"tow":271526600,"lat":37.831235392153296,"lon":-122.28650382563295,"height":-17.426516021953287,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":44555,"length":22,"msg_type":526,"payload":"yCovEAIAAAAIAAAAAQAAAPEAygIPAg==","preamble":85,"sender":22963,"tow":271526600,"n":2,"e":8,"d":1,"h_accuracy":241,"v_accuracy":714,"n_sats":15,"flags":2} +{"crc":14786,"length":15,"msg_type":520,"payload":"yCovEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271526600,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":41381,"length":22,"msg_type":524,"payload":"yCovEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271526600,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":40623,"length":6,"msg_type":528,"payload":"yCovEP//","preamble":85,"sender":22963,"tow":271526600,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":11616,"length":34,"msg_type":30583,"payload":"gwJHKi8QAxf/AA/9f/f/ABf//+f/f/AA//AA6M725+/lcA==","preamble":85,"sender":22963,"sid":{"sat":131,"code":2},"tow":271526471,"message_type":3,"data":[23,255,0,15,253,127,247,255,0,23,255,255,231,255,127,240,0,255,240,0,232,206,246,231,239,229,112]} +{"crc":14132,"length":11,"msg_type":258,"payload":"MggsKy8QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271526700,"ns_residual":0,"flags":1} +{"crc":33822,"length":16,"msg_type":259,"payload":"ESwrLxDkBwMZAxkI/ia5KQ==","preamble":85,"sender":22963,"flags":17,"tow":271526700,"year":2020,"month":3,"day":25,"hours":3,"minutes":25,"seconds":8,"ns":699999998} +{"crc":11857,"length":34,"msg_type":522,"payload":"LCsvEPy9Aexl6kJACfEZFFaSXsBM8sCx820xwAECWwQPBg==","preamble":85,"sender":22963,"tow":271526700,"lat":37.8312354095942,"lon":-122.28650381596903,"height":-17.429499730688164,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":6435,"length":22,"msg_type":526,"payload":"LCsvEBAAAADz////+/////EAygIPAg==","preamble":85,"sender":22963,"tow":271526700,"n":16,"e":-13,"d":-5,"h_accuracy":241,"v_accuracy":714,"n_sats":15,"flags":2} +{"crc":14878,"length":15,"msg_type":520,"payload":"LCsvEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271526700,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":54896,"length":22,"msg_type":524,"payload":"LCsvEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271526700,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":47463,"length":6,"msg_type":528,"payload":"LCsvEP//","preamble":85,"sender":22963,"tow":271526700,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":51604,"length":11,"msg_type":258,"payload":"MgiQKy8QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271526800,"ns_residual":0,"flags":1} +{"crc":51072,"length":16,"msg_type":259,"payload":"EZArLxDkBwMZAxkI/gevLw==","preamble":85,"sender":22963,"flags":17,"tow":271526800,"year":2020,"month":3,"day":25,"hours":3,"minutes":25,"seconds":8,"ns":799999998} +{"crc":62822,"length":34,"msg_type":522,"payload":"kCsvEB8M9+tl6kJAAjL1E1aSXsCLo8KuVW8xwAECWwQPBg==","preamble":85,"sender":22963,"tow":271526800,"lat":37.831235404614056,"lon":-122.28650378174646,"height":-17.43490116359639,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":37035,"length":22,"msg_type":526,"payload":"kCsvEPT///8QAAAAAwAAAPEAygIPAg==","preamble":85,"sender":22963,"tow":271526800,"n":-12,"e":16,"d":3,"h_accuracy":241,"v_accuracy":714,"n_sats":15,"flags":2} +{"crc":357,"length":15,"msg_type":520,"payload":"kCsvEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271526800,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":17132,"length":22,"msg_type":524,"payload":"kCsvEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271526800,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":18728,"length":6,"msg_type":528,"payload":"kCsvEP//","preamble":85,"sender":22963,"tow":271526800,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":36424,"length":237,"msg_type":97,"payload":"BQDWFQC1AgC7HwClAAAAAAAAGQDaDADRHQDVEgDPAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwLOGQHMDAG7HwGYEgHFHQHDAAAABQHCAAAAAAAAAAAAAAAACwPVCQOyFAOtBQPPCgPQAAAABAO3FQPLCQSrFATNCgRYCwTJBQTDAAS9AAAABASvIwzIGgysIgyeGAy8GQyeDAy4Ewy5FgzAAAAADA3QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADA7EAAAAGQ7BCw6+GA7NAAAAHw6gIQ6ZGRTJGBTXCxTBHxSuDBTOAAAAIRSpAAAA","preamble":85,"sender":22963,"states":[{"mesid":{"sat":5,"code":0},"cn0":214},{"mesid":{"sat":21,"code":0},"cn0":181},{"mesid":{"sat":2,"code":0},"cn0":187},{"mesid":{"sat":31,"code":0},"cn0":165},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":25,"code":0},"cn0":218},{"mesid":{"sat":12,"code":0},"cn0":209},{"mesid":{"sat":29,"code":0},"cn0":213},{"mesid":{"sat":18,"code":0},"cn0":207},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":131,"code":2},"cn0":206},{"mesid":{"sat":25,"code":1},"cn0":204},{"mesid":{"sat":12,"code":1},"cn0":187},{"mesid":{"sat":31,"code":1},"cn0":152},{"mesid":{"sat":18,"code":1},"cn0":197},{"mesid":{"sat":29,"code":1},"cn0":195},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":5,"code":1},"cn0":194},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":11,"code":3},"cn0":213},{"mesid":{"sat":9,"code":3},"cn0":178},{"mesid":{"sat":20,"code":3},"cn0":173},{"mesid":{"sat":5,"code":3},"cn0":207},{"mesid":{"sat":10,"code":3},"cn0":208},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":4,"code":3},"cn0":183},{"mesid":{"sat":21,"code":3},"cn0":203},{"mesid":{"sat":9,"code":4},"cn0":171},{"mesid":{"sat":20,"code":4},"cn0":205},{"mesid":{"sat":10,"code":4},"cn0":88},{"mesid":{"sat":11,"code":4},"cn0":201},{"mesid":{"sat":5,"code":4},"cn0":195},{"mesid":{"sat":0,"code":4},"cn0":189},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":4,"code":4},"cn0":175},{"mesid":{"sat":35,"code":12},"cn0":200},{"mesid":{"sat":26,"code":12},"cn0":172},{"mesid":{"sat":34,"code":12},"cn0":158},{"mesid":{"sat":24,"code":12},"cn0":188},{"mesid":{"sat":25,"code":12},"cn0":158},{"mesid":{"sat":12,"code":12},"cn0":184},{"mesid":{"sat":19,"code":12},"cn0":185},{"mesid":{"sat":22,"code":12},"cn0":192},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":12,"code":13},"cn0":208},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":12,"code":14},"cn0":196},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":25,"code":14},"cn0":193},{"mesid":{"sat":11,"code":14},"cn0":190},{"mesid":{"sat":24,"code":14},"cn0":205},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":31,"code":14},"cn0":160},{"mesid":{"sat":33,"code":14},"cn0":153},{"mesid":{"sat":25,"code":20},"cn0":201},{"mesid":{"sat":24,"code":20},"cn0":215},{"mesid":{"sat":11,"code":20},"cn0":193},{"mesid":{"sat":31,"code":20},"cn0":174},{"mesid":{"sat":12,"code":20},"cn0":206},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":33,"code":20},"cn0":169},{"mesid":{"sat":0,"code":0},"cn0":0}]} +{"crc":34187,"length":128,"msg_type":151,"payload":"AgAaHQUAKzUMAFEtFQB9GRkAbUYaAKEBHQChNx8AlQ4EAxUWBQMyIQkDXw4KA3EpCwOYJQwDqgMTAyIHFAMMMRUDlSUMDJQpEwwjIBQMDwIWDEMkGAyCIxkMnQ4aDGcVIgyOESMMIi0LDosyDA4PPBgObDYZDpcpHw5VESEOIA8=","preamble":85,"sender":22963,"azel":[{"sid":{"sat":2,"code":0},"az":26,"el":29},{"sid":{"sat":5,"code":0},"az":43,"el":53},{"sid":{"sat":12,"code":0},"az":81,"el":45},{"sid":{"sat":21,"code":0},"az":125,"el":25},{"sid":{"sat":25,"code":0},"az":109,"el":70},{"sid":{"sat":26,"code":0},"az":161,"el":1},{"sid":{"sat":29,"code":0},"az":161,"el":55},{"sid":{"sat":31,"code":0},"az":149,"el":14},{"sid":{"sat":4,"code":3},"az":21,"el":22},{"sid":{"sat":5,"code":3},"az":50,"el":33},{"sid":{"sat":9,"code":3},"az":95,"el":14},{"sid":{"sat":10,"code":3},"az":113,"el":41},{"sid":{"sat":11,"code":3},"az":152,"el":37},{"sid":{"sat":12,"code":3},"az":170,"el":3},{"sid":{"sat":19,"code":3},"az":34,"el":7},{"sid":{"sat":20,"code":3},"az":12,"el":49},{"sid":{"sat":21,"code":3},"az":149,"el":37},{"sid":{"sat":12,"code":12},"az":148,"el":41},{"sid":{"sat":19,"code":12},"az":35,"el":32},{"sid":{"sat":20,"code":12},"az":15,"el":2},{"sid":{"sat":22,"code":12},"az":67,"el":36},{"sid":{"sat":24,"code":12},"az":130,"el":35},{"sid":{"sat":25,"code":12},"az":157,"el":14},{"sid":{"sat":26,"code":12},"az":103,"el":21},{"sid":{"sat":34,"code":12},"az":142,"el":17},{"sid":{"sat":35,"code":12},"az":34,"el":45},{"sid":{"sat":11,"code":14},"az":139,"el":50},{"sid":{"sat":12,"code":14},"az":15,"el":60},{"sid":{"sat":24,"code":14},"az":108,"el":54},{"sid":{"sat":25,"code":14},"az":151,"el":41},{"sid":{"sat":31,"code":14},"az":85,"el":17},{"sid":{"sat":33,"code":14},"az":32,"el":15}]} +{"crc":44382,"length":11,"msg_type":258,"payload":"Mgj0Ky8QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271526900,"ns_residual":0,"flags":1} +{"crc":2222,"length":16,"msg_type":259,"payload":"EfQrLxDkBwMZAxkI/uikNQ==","preamble":85,"sender":22963,"flags":17,"tow":271526900,"year":2020,"month":3,"day":25,"hours":3,"minutes":25,"seconds":8,"ns":899999998} +{"crc":11107,"length":34,"msg_type":522,"payload":"9CsvEHUrDexl6kJArXTiE1aSXsBfXMeKzXExwAECWwQPBg==","preamble":85,"sender":22963,"tow":271526900,"lat":37.831235414915604,"lon":-122.28650376429387,"height":-17.4445425736161,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":41556,"length":22,"msg_type":526,"payload":"9CsvEAEAAAD+////CQAAAPEAygIPAg==","preamble":85,"sender":22963,"tow":271526900,"n":1,"e":-2,"d":9,"h_accuracy":241,"v_accuracy":714,"n_sats":15,"flags":2} +{"crc":11722,"length":15,"msg_type":520,"payload":"9CsvEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271526900,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":23130,"length":22,"msg_type":524,"payload":"9CsvEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271526900,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":4241,"length":6,"msg_type":528,"payload":"9CsvEP//","preamble":85,"sender":22963,"tow":271526900,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":36286,"length":249,"msg_type":74,"payload":"WCwvEAAAAAAyCED8ULQ+LByXBilC/xTWDw8FAHIKE0UGgEIHLnsI5bUPDxUAU+L2RYJyWgdfU/Yjuw8PAgAoQgNJ7HasBwVw/tekDw8fAEcHKD21dW0GjZL7/NoPDxkARFG6QGCNzQagZvQn0Q8PDADf9s0+O86ZBizKBX7VDw8dAHQHKD1BLQIFioz808wPDxkB2lC6QN8NTQVH9fZYuw8PDAEDQgNJasD6BYzH/oKYDw8fAZb2zT5NuyQF3YMEl8MPDx0BuVC0PrShIgUMa/94wg8PBQHHW/o+eA+7BmuFBM3VDw8LA4ZI3UTFyVoH6cfuy7IPDwkD","preamble":85,"sender":22963,"header":{"t":{"tow":271527000,"ns_residual":0,"wn":2098},"n_obs":64},"obs":[{"P":1052004604,"L":{"i":110566444,"f":41},"D":{"i":-190,"f":20},"cn0":214,"lock":15,"flags":15,"sid":{"sat":5,"code":0}},{"P":1158875762,"L":{"i":121798662,"f":46},"D":{"i":2171,"f":229},"cn0":181,"lock":15,"flags":15,"sid":{"sat":21,"code":0}},{"P":1173807699,"L":{"i":123368066,"f":95},"D":{"i":-2477,"f":35},"cn0":187,"lock":15,"flags":15,"sid":{"sat":2,"code":0}},{"P":1224950312,"L":{"i":128743148,"f":5},"D":{"i":-400,"f":215},"cn0":164,"lock":15,"flags":15,"sid":{"sat":31,"code":0}},{"P":1026033479,"L":{"i":107836853,"f":141},"D":{"i":-1134,"f":252},"cn0":218,"lock":15,"flags":15,"sid":{"sat":25,"code":0}},{"P":1085952324,"L":{"i":114134368,"f":160},"D":{"i":-2970,"f":39},"cn0":209,"lock":15,"flags":15,"sid":{"sat":12,"code":0}},{"P":1053685471,"L":{"i":110743099,"f":44},"D":{"i":1482,"f":126},"cn0":213,"lock":15,"flags":15,"sid":{"sat":29,"code":0}},{"P":1026033524,"L":{"i":84028737,"f":138},"D":{"i":-884,"f":211},"cn0":204,"lock":15,"flags":15,"sid":{"sat":25,"code":1}},{"P":1085952218,"L":{"i":88935903,"f":71},"D":{"i":-2315,"f":88},"cn0":187,"lock":15,"flags":15,"sid":{"sat":12,"code":1}},{"P":1224950275,"L":{"i":100319338,"f":140},"D":{"i":-313,"f":130},"cn0":152,"lock":15,"flags":15,"sid":{"sat":31,"code":1}},{"P":1053685398,"L":{"i":86293325,"f":221},"D":{"i":1155,"f":151},"cn0":195,"lock":15,"flags":15,"sid":{"sat":29,"code":1}},{"P":1052004537,"L":{"i":86155700,"f":12},"D":{"i":-149,"f":120},"cn0":194,"lock":15,"flags":15,"sid":{"sat":5,"code":1}},{"P":1056594887,"L":{"i":112922488,"f":107},"D":{"i":1157,"f":205},"cn0":213,"lock":15,"flags":15,"sid":{"sat":11,"code":3}},{"P":1155352710,"L":{"i":123390405,"f":233},"D":{"i":-4409,"f":203},"cn0":178,"lock":15,"flags":15,"sid":{"sat":9,"code":3}}]} +{"crc":64094,"length":249,"msg_type":74,"payload":"WCwvEAAAAAAyCEF0ji89uzOLBldF+yeuDw8UAyREBUBzM9gGrY8IwdAPDwUDjeFqPnKHpwaOF/QZ0A8PCgOrswlDzAAuB83T+mS3Dw8EAzG0Jz9sVcIGrlUGQssPDxUD2UjdRBVkuAVgnPJbqw8PCQTejy89fO8WBY9S/EXNDw8UBABd+j6EKDwFboQDVskPDwsEW0UFQLPSUgUZqQYaww8PBQRwtAlDzo6VBW75+12vDw8EBEQEmEU1dD8HcCT6R8gPDyMMAAj5SaQztAfVQfRBrA8PGgxZURJMcyjsB2fJCC6eDw8iDIXqokc06XUHO+X6MrwPDxgM","preamble":85,"sender":22963,"header":{"t":{"tow":271527000,"ns_residual":0,"wn":2098},"n_obs":65},"obs":[{"P":1026526836,"L":{"i":109786043,"f":87},"D":{"i":-1211,"f":39},"cn0":174,"lock":15,"flags":15,"sid":{"sat":20,"code":3}},{"P":1074086948,"L":{"i":114832243,"f":173},"D":{"i":2191,"f":193},"cn0":208,"lock":15,"flags":15,"sid":{"sat":5,"code":3}},{"P":1047191949,"L":{"i":111642482,"f":142},"D":{"i":-3049,"f":25},"cn0":208,"lock":15,"flags":15,"sid":{"sat":10,"code":3}},{"P":1124709291,"L":{"i":120455372,"f":205},"D":{"i":-1325,"f":100},"cn0":183,"lock":15,"flags":15,"sid":{"sat":4,"code":3}},{"P":1059566641,"L":{"i":113399148,"f":174},"D":{"i":1621,"f":66},"cn0":203,"lock":15,"flags":15,"sid":{"sat":21,"code":3}},{"P":1155352793,"L":{"i":95970325,"f":96},"D":{"i":-3428,"f":91},"cn0":171,"lock":15,"flags":15,"sid":{"sat":9,"code":4}},{"P":1026527198,"L":{"i":85389180,"f":143},"D":{"i":-942,"f":69},"cn0":205,"lock":15,"flags":15,"sid":{"sat":20,"code":4}},{"P":1056595200,"L":{"i":87828612,"f":110},"D":{"i":900,"f":86},"cn0":201,"lock":15,"flags":15,"sid":{"sat":11,"code":4}},{"P":1074087259,"L":{"i":89313971,"f":25},"D":{"i":1705,"f":26},"cn0":195,"lock":15,"flags":15,"sid":{"sat":5,"code":4}},{"P":1124709488,"L":{"i":93687502,"f":110},"D":{"i":-1031,"f":93},"cn0":175,"lock":15,"flags":15,"sid":{"sat":4,"code":4}},{"P":1167590468,"L":{"i":121599029,"f":112},"D":{"i":-1500,"f":71},"cn0":200,"lock":15,"flags":15,"sid":{"sat":35,"code":12}},{"P":1241057280,"L":{"i":129250212,"f":213},"D":{"i":-3007,"f":65},"cn0":172,"lock":15,"flags":15,"sid":{"sat":26,"code":12}},{"P":1276268889,"L":{"i":132917363,"f":103},"D":{"i":2249,"f":46},"cn0":158,"lock":15,"flags":15,"sid":{"sat":34,"code":12}},{"P":1201859205,"L":{"i":125167924,"f":59},"D":{"i":-1307,"f":50},"cn0":188,"lock":15,"flags":15,"sid":{"sat":24,"code":12}}]} +{"crc":7988,"length":249,"msg_type":74,"payload":"WCwvEAAAAAAyCEKL9BBNS60GCC4nBSmeDw8ZDPjjS0V9hjcHs0sGjrgPDwwM68lDRwUBbAdf2f6euQ8PEwwEjFpHw19uB+lRCZjADw8WDLLjS0W5n5QF1N4ET9APDwwN3fEIQsO48AZz/ft+xA8PDA6GAh9LYTHlB/08BI7BDw8ZDhQ3H0dhl3kHnBUEuL4PDwsO/uMqQwYyDwcyLPmGzQ8PGA4ysU1RrIiLCPqb86agDw8fDitj+lEor50I56P395kPDyEOcAIfS8u0DAYnPgMwyQ8PGRQg5ipDMLxoBVrF+krXDw8YFFw2H0cJQroFaCEDY8EPDwsU","preamble":85,"sender":22963,"header":{"t":{"tow":271527000,"ns_residual":0,"wn":2098},"n_obs":66},"obs":[{"P":1292956811,"L":{"i":134655307,"f":46},"D":{"i":1319,"f":41},"cn0":158,"lock":15,"flags":15,"sid":{"sat":25,"code":12}},{"P":1162601464,"L":{"i":121079421,"f":179},"D":{"i":1611,"f":142},"cn0":184,"lock":15,"flags":15,"sid":{"sat":12,"code":12}},{"P":1195624939,"L":{"i":124518661,"f":95},"D":{"i":-295,"f":158},"cn0":185,"lock":15,"flags":15,"sid":{"sat":19,"code":12}},{"P":1197116420,"L":{"i":124673987,"f":233},"D":{"i":2385,"f":152},"cn0":192,"lock":15,"flags":15,"sid":{"sat":22,"code":12}},{"P":1162601394,"L":{"i":93626297,"f":212},"D":{"i":1246,"f":79},"cn0":208,"lock":15,"flags":15,"sid":{"sat":12,"code":13}},{"P":1107882461,"L":{"i":116439235,"f":115},"D":{"i":-1027,"f":126},"cn0":196,"lock":15,"flags":15,"sid":{"sat":12,"code":14}},{"P":1260323462,"L":{"i":132460897,"f":253},"D":{"i":1084,"f":142},"cn0":193,"lock":15,"flags":15,"sid":{"sat":25,"code":14}},{"P":1193228052,"L":{"i":125409121,"f":156},"D":{"i":1045,"f":184},"cn0":190,"lock":15,"flags":15,"sid":{"sat":11,"code":14}},{"P":1126884350,"L":{"i":118436358,"f":50},"D":{"i":-1748,"f":134},"cn0":205,"lock":15,"flags":15,"sid":{"sat":24,"code":14}},{"P":1364046130,"L":{"i":143362220,"f":250},"D":{"i":-3173,"f":166},"cn0":160,"lock":15,"flags":15,"sid":{"sat":31,"code":14}},{"P":1375363883,"L":{"i":144551720,"f":231},"D":{"i":-2141,"f":247},"cn0":153,"lock":15,"flags":15,"sid":{"sat":33,"code":14}},{"P":1260323440,"L":{"i":101496011,"f":39},"D":{"i":830,"f":48},"cn0":201,"lock":15,"flags":15,"sid":{"sat":25,"code":20}},{"P":1126884896,"L":{"i":90750000,"f":90},"D":{"i":-1339,"f":74},"cn0":215,"lock":15,"flags":15,"sid":{"sat":24,"code":20}},{"P":1193227868,"L":{"i":96092681,"f":104},"D":{"i":801,"f":99},"cn0":193,"lock":15,"flags":15,"sid":{"sat":11,"code":20}}]} +{"crc":43485,"length":62,"msg_type":74,"payload":"WCwvEAAAAAAyCEOlsU1RuCmMBgaD9lCuDw8fFD/xCEJ4YlEFg+38Gs4PDwwU+mL6USASmgYBmfnaqQ8PIRQ=","preamble":85,"sender":22963,"header":{"t":{"tow":271527000,"ns_residual":0,"wn":2098},"n_obs":67},"obs":[{"P":1364046245,"L":{"i":109849016,"f":6},"D":{"i":-2429,"f":80},"cn0":174,"lock":15,"flags":15,"sid":{"sat":31,"code":20}},{"P":1107882303,"L":{"i":89219704,"f":131},"D":{"i":-787,"f":26},"cn0":206,"lock":15,"flags":15,"sid":{"sat":12,"code":20}},{"P":1375363834,"L":{"i":110760480,"f":1},"D":{"i":-1639,"f":218},"cn0":169,"lock":15,"flags":15,"sid":{"sat":33,"code":20}}]} +{"crc":49809,"length":9,"msg_type":117,"payload":"/wAAAAAAAAAA","preamble":85,"sender":22963,"mask":255,"l1ca_bias":0,"l1p_bias":0,"l2ca_bias":0,"l2p_bias":0} +{"crc":50968,"length":11,"msg_type":258,"payload":"MghYLC8QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271527000,"ns_residual":0,"flags":1} +{"crc":31739,"length":16,"msg_type":259,"payload":"EVgsLxDkBwMZAxkI/smaOw==","preamble":85,"sender":22963,"flags":17,"tow":271527000,"year":2020,"month":3,"day":25,"hours":3,"minutes":25,"seconds":8,"ns":999999998} +{"crc":50094,"length":34,"msg_type":522,"payload":"WCwvEJfrEOxl6kJAMwLNE1aSXsDEx6tqDHUxwAECWwQPBg==","preamble":85,"sender":22963,"tow":271527000,"lat":37.831235416662075,"lon":-122.28650374431963,"height":-17.457220713556822,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":36517,"length":22,"msg_type":526,"payload":"WCwvEP3////6////EQAAAPEAygIPAg==","preamble":85,"sender":22963,"tow":271527000,"n":-3,"e":-6,"d":17,"h_accuracy":241,"v_accuracy":714,"n_sats":15,"flags":2} +{"crc":10301,"length":15,"msg_type":520,"payload":"WCwvEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271527000,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":31232,"length":22,"msg_type":524,"payload":"WCwvEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271527000,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":40334,"length":6,"msg_type":528,"payload":"WCwvEP//","preamble":85,"sender":22963,"tow":271527000,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":40942,"length":4,"msg_type":65535,"payload":"AAUCgA==","preamble":85,"sender":22963,"flags":2147616000} +{"crc":2168,"length":24,"msg_type":72,"payload":"UO0a3iqORMHK1UJhIkRQwc9nFIPvrk1B","preamble":85,"sender":22963,"x":-2694229.735196747,"y":-4264073.519704292,"z":3890655.0240602265} +{"crc":52895,"length":152,"msg_type":149,"payload":"GQ4IIQQAMggUrkdAQDgAAAEAAADAMAAAwDAAAIrBALShQwAAWrUAAKA1AADgMgAA4LKKbhefqEQsPueMGSXuj/0/AAAAAIadFz8AAOCPm0C1QIEMVy/PG/0//nAUvlyZOb5WK+mssoG6P8U92ZNjcu8/GZRKcC+LyL3////fl6JAv////////3O9AAAAAAghBAAyCEMAQwA=","preamble":85,"sender":22963,"common":{"sid":{"sat":25,"code":14},"toe":{"tow":270600,"wn":2098},"ura":3.12,"fit_interval":14400,"valid":1,"health_bits":0},"bgd_e1e5a":1.3969839e-9,"bgd_e1e5b":1.3969839e-9,"c_rs":-17.25,"c_rc":323.40625,"c_uc":-8.121133e-7,"c_us":0.0000011920929,"c_ic":2.6077032e-8,"c_is":-2.6077032e-8,"dn":3.2908513628827244e-9,"m0":1.847639222069853,"ecc":0.00009008531924337149,"sqrta":5440.607664108276,"omega0":1.8192893838138675,"omegadot":-5.960248268264261e-9,"w":0.10354153367476945,"inc":0.9827134978931374,"inc_dot":-4.464471677451059e-11,"af0":-0.0005076638772152363,"af1":-1.13686837721616e-12,"af2":0.0,"toc":{"tow":270600,"wn":2098},"iode":67,"iodc":67} +{"crc":42654,"length":10,"msg_type":181,"payload":"5hbbA/MGTxUJFg==","preamble":85,"sender":22963,"dev_vin":5862,"cpu_vint":987,"cpu_vaux":1779,"cpu_temperature":5455,"fe_temperature":5641} +{"crc":7264,"length":11,"msg_type":258,"payload":"Mgi8LC8QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271527100,"ns_residual":0,"flags":1} +{"crc":32201,"length":16,"msg_type":259,"payload":"EbwsLxDkBwMZAxkJ/uD1BQ==","preamble":85,"sender":22963,"flags":17,"tow":271527100,"year":2020,"month":3,"day":25,"hours":3,"minutes":25,"seconds":9,"ns":99999998} +{"crc":23482,"length":34,"msg_type":522,"payload":"vCwvED0qFexl6kJAVEmxE1aSXsBg6FFHW3cxwAECWwQPBg==","preamble":85,"sender":22963,"tow":271527100,"lat":37.83123541863868,"lon":-122.28650371850136,"height":-17.466236550805093,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":2825,"length":22,"msg_type":526,"payload":"vCwvEAQAAAAFAAAAAgAAAPEAygIPAg==","preamble":85,"sender":22963,"tow":271527100,"n":4,"e":5,"d":2,"h_accuracy":241,"v_accuracy":714,"n_sats":15,"flags":2} +{"crc":20608,"length":15,"msg_type":520,"payload":"vCwvEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271527100,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":55331,"length":22,"msg_type":524,"payload":"vCwvEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271527100,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":4119,"length":6,"msg_type":528,"payload":"vCwvEP//","preamble":85,"sender":22963,"tow":271527100,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":751,"length":11,"msg_type":258,"payload":"MgggLS8QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271527200,"ns_residual":0,"flags":1} +{"crc":53379,"length":16,"msg_type":259,"payload":"ESAtLxDkBwMZAxkJ/sHrCw==","preamble":85,"sender":22963,"flags":17,"tow":271527200,"year":2020,"month":3,"day":25,"hours":3,"minutes":25,"seconds":9,"ns":199999998} +{"crc":61571,"length":34,"msg_type":522,"payload":"IC0vELpkGOxl6kJA4HemE1aSXsDGeKkjhHkxwAECWwQPBg==","preamble":85,"sender":22963,"tow":271527200,"lat":37.83123542014205,"lon":-122.28650370842615,"height":-17.47467253577704,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":53607,"length":22,"msg_type":526,"payload":"IC0vEP7////7////FQAAAPEAygIPAg==","preamble":85,"sender":22963,"tow":271527200,"n":-2,"e":-5,"d":21,"h_accuracy":241,"v_accuracy":714,"n_sats":15,"flags":2} +{"crc":36238,"length":15,"msg_type":520,"payload":"IC0vEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271527200,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":62436,"length":22,"msg_type":524,"payload":"IC0vEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271527200,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":32513,"length":6,"msg_type":528,"payload":"IC0vEP//","preamble":85,"sender":22963,"tow":271527200,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":34382,"length":11,"msg_type":258,"payload":"MgiELS8QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271527300,"ns_residual":0,"flags":1} +{"crc":7356,"length":16,"msg_type":259,"payload":"EYQtLxDkBwMZAxkJ/qLhEQ==","preamble":85,"sender":22963,"flags":17,"tow":271527300,"year":2020,"month":3,"day":25,"hours":3,"minutes":25,"seconds":9,"ns":299999998} +{"crc":37051,"length":34,"msg_type":522,"payload":"hC0vEBozCOxl6kJA8NaQE1aSXsDOSPNH9XkxwAECWwQPBg==","preamble":85,"sender":22963,"tow":271527300,"lat":37.8312354126012,"lon":-122.28650368828289,"height":-17.476398941894153,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":4371,"length":22,"msg_type":526,"payload":"hC0vEP////8CAAAA6f////EAygIPAg==","preamble":85,"sender":22963,"tow":271527300,"n":-1,"e":2,"d":-23,"h_accuracy":241,"v_accuracy":714,"n_sats":15,"flags":2} +{"crc":57146,"length":15,"msg_type":520,"payload":"hC0vEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271527300,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":33949,"length":22,"msg_type":524,"payload":"hC0vEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271527300,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":39048,"length":6,"msg_type":528,"payload":"hC0vEP//","preamble":85,"sender":22963,"tow":271527300,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":18446,"length":237,"msg_type":97,"payload":"BQDVFQC1AgC7HwClAAAAAAAAGQDaDADQHQDVEgDOAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwLOGQHMDAG7HwGZEgHFHQHCAAAABQHCAAAAAAAAAAAAAAAAZAPVYgOyZgOuZQPQXQPQAAAAagO2aAPLYgSqZgTMXQRGZATJZQTDaAS8AAAAagSvIwzIGgysIgyeGAy8GQyfDAy4Ewy5FgzAAAAADA3RAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADA7EAAAAGQ7ACw6+GA7NAAAAHw6fIQ6ZGRTJGBTXCxTCHxSuDBTOAAAAIRSpAAAA","preamble":85,"sender":22963,"states":[{"mesid":{"sat":5,"code":0},"cn0":213},{"mesid":{"sat":21,"code":0},"cn0":181},{"mesid":{"sat":2,"code":0},"cn0":187},{"mesid":{"sat":31,"code":0},"cn0":165},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":25,"code":0},"cn0":218},{"mesid":{"sat":12,"code":0},"cn0":208},{"mesid":{"sat":29,"code":0},"cn0":213},{"mesid":{"sat":18,"code":0},"cn0":206},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":131,"code":2},"cn0":206},{"mesid":{"sat":25,"code":1},"cn0":204},{"mesid":{"sat":12,"code":1},"cn0":187},{"mesid":{"sat":31,"code":1},"cn0":153},{"mesid":{"sat":18,"code":1},"cn0":197},{"mesid":{"sat":29,"code":1},"cn0":194},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":5,"code":1},"cn0":194},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":100,"code":3},"cn0":213},{"mesid":{"sat":98,"code":3},"cn0":178},{"mesid":{"sat":102,"code":3},"cn0":174},{"mesid":{"sat":101,"code":3},"cn0":208},{"mesid":{"sat":93,"code":3},"cn0":208},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":106,"code":3},"cn0":182},{"mesid":{"sat":104,"code":3},"cn0":203},{"mesid":{"sat":98,"code":4},"cn0":170},{"mesid":{"sat":102,"code":4},"cn0":204},{"mesid":{"sat":93,"code":4},"cn0":70},{"mesid":{"sat":100,"code":4},"cn0":201},{"mesid":{"sat":101,"code":4},"cn0":195},{"mesid":{"sat":104,"code":4},"cn0":188},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":106,"code":4},"cn0":175},{"mesid":{"sat":35,"code":12},"cn0":200},{"mesid":{"sat":26,"code":12},"cn0":172},{"mesid":{"sat":34,"code":12},"cn0":158},{"mesid":{"sat":24,"code":12},"cn0":188},{"mesid":{"sat":25,"code":12},"cn0":159},{"mesid":{"sat":12,"code":12},"cn0":184},{"mesid":{"sat":19,"code":12},"cn0":185},{"mesid":{"sat":22,"code":12},"cn0":192},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":12,"code":13},"cn0":209},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":12,"code":14},"cn0":196},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":25,"code":14},"cn0":192},{"mesid":{"sat":11,"code":14},"cn0":190},{"mesid":{"sat":24,"code":14},"cn0":205},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":31,"code":14},"cn0":159},{"mesid":{"sat":33,"code":14},"cn0":153},{"mesid":{"sat":25,"code":20},"cn0":201},{"mesid":{"sat":24,"code":20},"cn0":215},{"mesid":{"sat":11,"code":20},"cn0":194},{"mesid":{"sat":31,"code":20},"cn0":174},{"mesid":{"sat":12,"code":20},"cn0":206},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":33,"code":20},"cn0":169},{"mesid":{"sat":0,"code":0},"cn0":0}]} +{"crc":52091,"length":11,"msg_type":258,"payload":"MgjoLS8QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271527400,"ns_residual":0,"flags":1} +{"crc":26965,"length":16,"msg_type":259,"payload":"EegtLxDkBwMZAxkJ/oPXFw==","preamble":85,"sender":22963,"flags":17,"tow":271527400,"year":2020,"month":3,"day":25,"hours":3,"minutes":25,"seconds":9,"ns":399999998} +{"crc":6761,"length":34,"msg_type":522,"payload":"6C0vEHkF8etl6kJA87pyE1aSXsD4fQwHansxwAECWwQPBg==","preamble":85,"sender":22963,"tow":271527400,"lat":37.831235401807994,"lon":-122.2865036602414,"height":-17.482086601781674,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":402,"length":22,"msg_type":526,"payload":"6C0vEPz///8CAAAA/P////EAygIPAg==","preamble":85,"sender":22963,"tow":271527400,"n":-4,"e":2,"d":-4,"h_accuracy":241,"v_accuracy":714,"n_sats":15,"flags":2} +{"crc":54480,"length":15,"msg_type":520,"payload":"6C0vEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271527400,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":49800,"length":22,"msg_type":524,"payload":"6C0vEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271527400,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":52339,"length":6,"msg_type":528,"payload":"6C0vEP//","preamble":85,"sender":22963,"tow":271527400,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":49809,"length":9,"msg_type":117,"payload":"/wAAAAAAAAAA","preamble":85,"sender":22963,"mask":255,"l1ca_bias":0,"l1p_bias":0,"l2ca_bias":0,"l2p_bias":0} +{"crc":4716,"length":51,"msg_type":1025,"payload":"BkdMTyBMMk9GIE1FIDEgWysxMzMwbXNdIGxvdyBDTjAgdG9vIGxvbmcsIGRyb3BwaW5n","preamble":85,"sender":22963,"level":6,"text":"GLO L2OF ME 1 [+1330ms] low CN0 too long, dropping"} +{"crc":34735,"length":11,"msg_type":258,"payload":"MghMLi8QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271527500,"ns_residual":0,"flags":1} +{"crc":56849,"length":16,"msg_type":259,"payload":"EUwuLxDkBwMZAxkJ/mTNHQ==","preamble":85,"sender":22963,"flags":17,"tow":271527500,"year":2020,"month":3,"day":25,"hours":3,"minutes":25,"seconds":9,"ns":499999998} +{"crc":29561,"length":34,"msg_type":522,"payload":"TC4vECbc8utl6kJAtU1CE1aSXsDs425/bn0xwAECWwQPBg==","preamble":85,"sender":22963,"tow":271527500,"lat":37.83123540266415,"lon":-122.28650361514049,"height":-17.489967312405426,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":31703,"length":22,"msg_type":526,"payload":"TC4vEP////8PAAAAGwAAAPEAygIPAg==","preamble":85,"sender":22963,"tow":271527500,"n":-1,"e":15,"d":27,"h_accuracy":241,"v_accuracy":714,"n_sats":15,"flags":2} +{"crc":3015,"length":15,"msg_type":520,"payload":"TC4vEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271527500,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":56266,"length":22,"msg_type":524,"payload":"TC4vEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271527500,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":50472,"length":6,"msg_type":528,"payload":"TC4vEP//","preamble":85,"sender":22963,"tow":271527500,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":9942,"length":11,"msg_type":258,"payload":"MgiwLi8QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271527600,"ns_residual":0,"flags":1} +{"crc":35335,"length":16,"msg_type":259,"payload":"EbAuLxDkBwMZAxkJ/kXDIw==","preamble":85,"sender":22963,"flags":17,"tow":271527600,"year":2020,"month":3,"day":25,"hours":3,"minutes":25,"seconds":9,"ns":599999998} +{"crc":44465,"length":34,"msg_type":522,"payload":"sC4vEE9k4utl6kJATyUgE1aSXsDZ3pz2UH4xwAECWwQPBg==","preamble":85,"sender":22963,"tow":271527600,"lat":37.83123539499558,"lon":-122.28650358332855,"height":-17.493422902391874,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":52924,"length":22,"msg_type":526,"payload":"sC4vEP3///8DAAAA+/////EAygIPAg==","preamble":85,"sender":22963,"tow":271527600,"n":-3,"e":3,"d":-5,"h_accuracy":241,"v_accuracy":714,"n_sats":15,"flags":2} +{"crc":6837,"length":15,"msg_type":520,"payload":"sC4vEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271527600,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":39436,"length":22,"msg_type":524,"payload":"sC4vEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271527600,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":24439,"length":6,"msg_type":528,"payload":"sC4vEP//","preamble":85,"sender":22963,"tow":271527600,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":58788,"length":11,"msg_type":258,"payload":"MggULy8QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271527700,"ns_residual":0,"flags":1} +{"crc":10033,"length":16,"msg_type":259,"payload":"ERQvLxDkBwMZAxkJ/ia5KQ==","preamble":85,"sender":22963,"flags":17,"tow":271527700,"year":2020,"month":3,"day":25,"hours":3,"minutes":25,"seconds":9,"ns":699999998} +{"crc":54096,"length":34,"msg_type":522,"payload":"FC8vEHAoyutl6kJAWSIJE1aSXsCttdycSH4xwAECWwQPBg==","preamble":85,"sender":22963,"tow":271527700,"lat":37.831235383710805,"lon":-122.28650356189736,"height":-17.49329548252506,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":2284,"length":22,"msg_type":526,"payload":"FC8vEAEAAAD3////4f////EAygIPAg==","preamble":85,"sender":22963,"tow":271527700,"n":1,"e":-9,"d":-31,"h_accuracy":241,"v_accuracy":714,"n_sats":15,"flags":2} +{"crc":13152,"length":15,"msg_type":520,"payload":"FC8vEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271527700,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":14467,"length":22,"msg_type":524,"payload":"FC8vEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271527700,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":4783,"length":6,"msg_type":528,"payload":"FC8vEP//","preamble":85,"sender":22963,"tow":271527700,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":44433,"length":34,"msg_type":30583,"payload":"gwI/Li8QBBf/f//9f/ABf//+/+/7f/f/f/f/7l5uqq//8A==","preamble":85,"sender":22963,"sid":{"sat":131,"code":2},"tow":271527487,"message_type":4,"data":[23,255,127,255,253,127,240,1,127,255,254,255,239,251,127,247,255,127,247,255,238,94,110,170,175,255,240]} +{"crc":50097,"length":92,"msg_type":139,"payload":"CwNGIgQAMggAAABAYAkAAAEAAACAqwDmlTcAAEAxAACAR+eDbcEAAAA4HE4XQQAAUAGIVHNBAAAAbLtdocAAAAC82u+ZwAAAAKA2GZrAAAB6tQCAOzYAAPq1CGQ=","preamble":85,"sender":22963,"common":{"sid":{"sat":11,"code":3},"toe":{"tow":270918,"wn":2098},"ura":2.0,"fit_interval":2400,"valid":1,"health_bits":0},"gamma":-9.094947e-13,"tau":0.000017869286,"d_tau":2.7939677e-9,"pos":[-15474490.234375,381831.0546875,20269184.08203125],"vel":[-2222.8660583496094,-1659.963607788086,-1670.3033447265625],"acc":[-9.313226e-7,0.0000027939677,-0.0000018626451],"fcn":8,"iod":100} +{"crc":33330,"length":92,"msg_type":139,"payload":"FANGIgQAMggAAIBAYAkAAAEAAAAAAECe1TkAAKAxAAAAuA7SQcEAAEBAz29jwQAA4GdQM3ZBAAAASw9hp0AAAADGWkGRwAAAAJDAUmbAAAB6NQAAAIAAAPq1CmQ=","preamble":85,"sender":22963,"common":{"sid":{"sat":20,"code":3},"toe":{"tow":270918,"wn":2098},"ura":4.0,"fit_interval":2400,"valid":1,"health_bits":0},"gamma":0.0,"tau":0.0004074443,"d_tau":4.656613e-9,"pos":[-2335773.4375,-10190458.0078125,23278854.4921875],"vel":[2992.52986907959,-1104.3386459350586,-178.58600616455078],"acc":[9.313226e-7,-0.0,-0.0000018626451],"fcn":10,"iod":100} +{"crc":53984,"length":92,"msg_type":139,"payload":"BQNGIgQAMggAAIBAYAkAAAEAAACAKwC7RrgAAEAxAACAPjXzWEEAADCIaLR2wQAAAJfDqlhBAAAA+P3TcsAAAAB8ooWKQAAAAC1h1KpAAAB6NgAA+rUAAHq1CWQ=","preamble":85,"sender":22963,"common":{"sid":{"sat":5,"code":3},"toe":{"tow":270918,"wn":2098},"ura":4.0,"fit_interval":2400,"valid":1,"health_bits":0},"gamma":9.094947e-13,"tau":-0.000047381036,"d_tau":2.7939677e-9,"pos":[6540500.9765625,-23807624.51171875,6466318.359375],"vel":[-301.24950408935547,848.7043380737305,3434.189796447754],"acc":[0.0000037252903,-0.0000018626451,-9.313226e-7],"fcn":9,"iod":100} +{"crc":45853,"length":92,"msg_type":139,"payload":"CgNGIgQAMggAAOBAYAkAAAEAAAAAAADEbTgAAAAAAAAAFwhFdMEAACB48+dowQAAwO6k8VRBAAAAVLPEhcAAAAAAyop0wAAAAA2xDavAAAAAAACAOzYAAACAAWQ=","preamble":85,"sender":22963,"common":{"sid":{"sat":10,"code":3},"toe":{"tow":270918,"wn":2098},"ura":7.0,"fit_interval":2400,"valid":1,"health_bits":0},"gamma":0.0,"tau":0.000056687742,"d_tau":0.0,"pos":[-21254273.4375,-13057947.75390625,5490323.73046875],"vel":[-696.5875625610352,-328.67431640625,-3462.845802307129],"acc":[0.0,0.0000027939677,-0.0],"fcn":1,"iod":100} +{"crc":11629,"length":92,"msg_type":139,"payload":"FQNGIgQAMggAAIBAYAkAAAEAAABArIAU7jgAAIAwAAAwUcqXcsEAAAA0nRoUwQAAgBD6ZG9BAAAAsfreoEAAAABIHviEwAAAAEhh3qNAAAB6tQCAOzYAAPq1DGQ=","preamble":85,"sender":22963,"common":{"sid":{"sat":21,"code":3},"toe":{"tow":270918,"wn":2098},"ura":4.0,"fit_interval":2400,"valid":1,"health_bits":0},"gamma":-2.728484e-12,"tau":0.00011352543,"d_tau":9.313226e-10,"pos":[-19496101.07421875,-329383.30078125,16459728.515625],"vel":[2159.489631652832,-671.0147857666016,2543.1900024414062],"acc":[-9.313226e-7,0.0000027939677,-0.0000018626451],"fcn":12,"iod":100} +{"crc":34365,"length":92,"msg_type":139,"payload":"CQNGIgQAMggAAABAYAkAAAEAAAAALICvAbkAAICxAACga9onb8EAAIA6nfZwwQAAgLft6F7BAAAASO9PiUAAAACEmw6IQAAAAKhO+anAAAD6NQAA+jUAAHo1BmQ=","preamble":85,"sender":22963,"common":{"sid":{"sat":9,"code":3},"toe":{"tow":270918,"wn":2098},"ura":2.0,"fit_interval":2400,"valid":1,"health_bits":0},"gamma":1.8189894e-12,"tau":-0.00012367778,"d_tau":-3.7252903e-9,"pos":[-16334547.36328125,-17787347.65625,-8102838.8671875],"vel":[809.9918365478516,769.8259353637695,-3324.6536254882812],"acc":[0.0000018626451,0.0000018626451,9.313226e-7],"fcn":6,"iod":100} +{"crc":64387,"length":92,"msg_type":139,"payload":"BANGIgQAMggAAKBAYAkAAAEAAAAALAAiNbgAAECxAAAgdUE8ZUEAAGA4CTplwQAAUEpjK3NBAAAA0ILzfcAAAAAadyKlQAAAAHrFlZtAAAD6NQAA+rUAAPq1DmQ=","preamble":85,"sender":22963,"common":{"sid":{"sat":4,"code":3},"toe":{"tow":270918,"wn":2098},"ura":5.0,"fit_interval":2400,"valid":1,"health_bits":0},"gamma":1.8189894e-12,"tau":-0.000043185428,"d_tau":-2.7939677e-9,"pos":[11133451.66015625,-11128905.76171875,20100660.64453125],"vel":[-479.2194366455078,2705.232620239258,1765.4428482055664],"acc":[0.0000018626451,-0.0000018626451,-0.0000018626451],"fcn":14,"iod":100} +{"crc":43153,"length":11,"msg_type":258,"payload":"Mgh4Ly8QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271527800,"ns_residual":0,"flags":1} +{"crc":21566,"length":16,"msg_type":259,"payload":"EXgvLxDkBwMZAxkJ/gevLw==","preamble":85,"sender":22963,"flags":17,"tow":271527800,"year":2020,"month":3,"day":25,"hours":3,"minutes":25,"seconds":9,"ns":799999998} +{"crc":8830,"length":34,"msg_type":522,"payload":"eC8vEOfX5Otl6kJAmE8EE1aSXsD4TsJZDH4xwAECWwQPBg==","preamble":85,"sender":22963,"tow":271527800,"lat":37.83123539613717,"lon":-122.28650355740535,"height":-17.4923759555231,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":55486,"length":22,"msg_type":526,"payload":"eC8vEA8AAAD2/////P////EAygIPAg==","preamble":85,"sender":22963,"tow":271527800,"n":15,"e":-10,"d":-4,"h_accuracy":241,"v_accuracy":714,"n_sats":15,"flags":2} +{"crc":14474,"length":15,"msg_type":520,"payload":"eC8vEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271527800,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":32406,"length":22,"msg_type":524,"payload":"eC8vEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271527800,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":18004,"length":6,"msg_type":528,"payload":"eC8vEP//","preamble":85,"sender":22963,"tow":271527800,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":45824,"length":237,"msg_type":97,"payload":"BQDUFQC0AgC6HwCiAAAAAAAAGQDZDADPHQDUEgDNAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwLMGQHMDAG6HwGXEgHEHQHCAAAABQHBAAAAAAAAAAAAAAAACwPVCQOzFAOuBQPQCgPQAAAABAO2FQPLCQSqFATNAAAACwTJBQTDAAS8AAAABASvIwzIGgysIgyfGAy8GQyeDAy4Ewy5FgzAAAAADA3RAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADA7DAAAAGQ7ACw69GA7MAAAAHw6eIQ6YGRTJGBTXCxTCHxSvDBTOAAAAIRSpAAAA","preamble":85,"sender":22963,"states":[{"mesid":{"sat":5,"code":0},"cn0":212},{"mesid":{"sat":21,"code":0},"cn0":180},{"mesid":{"sat":2,"code":0},"cn0":186},{"mesid":{"sat":31,"code":0},"cn0":162},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":25,"code":0},"cn0":217},{"mesid":{"sat":12,"code":0},"cn0":207},{"mesid":{"sat":29,"code":0},"cn0":212},{"mesid":{"sat":18,"code":0},"cn0":205},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":131,"code":2},"cn0":204},{"mesid":{"sat":25,"code":1},"cn0":204},{"mesid":{"sat":12,"code":1},"cn0":186},{"mesid":{"sat":31,"code":1},"cn0":151},{"mesid":{"sat":18,"code":1},"cn0":196},{"mesid":{"sat":29,"code":1},"cn0":194},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":5,"code":1},"cn0":193},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":11,"code":3},"cn0":213},{"mesid":{"sat":9,"code":3},"cn0":179},{"mesid":{"sat":20,"code":3},"cn0":174},{"mesid":{"sat":5,"code":3},"cn0":208},{"mesid":{"sat":10,"code":3},"cn0":208},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":4,"code":3},"cn0":182},{"mesid":{"sat":21,"code":3},"cn0":203},{"mesid":{"sat":9,"code":4},"cn0":170},{"mesid":{"sat":20,"code":4},"cn0":205},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":11,"code":4},"cn0":201},{"mesid":{"sat":5,"code":4},"cn0":195},{"mesid":{"sat":0,"code":4},"cn0":188},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":4,"code":4},"cn0":175},{"mesid":{"sat":35,"code":12},"cn0":200},{"mesid":{"sat":26,"code":12},"cn0":172},{"mesid":{"sat":34,"code":12},"cn0":159},{"mesid":{"sat":24,"code":12},"cn0":188},{"mesid":{"sat":25,"code":12},"cn0":158},{"mesid":{"sat":12,"code":12},"cn0":184},{"mesid":{"sat":19,"code":12},"cn0":185},{"mesid":{"sat":22,"code":12},"cn0":192},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":12,"code":13},"cn0":209},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":12,"code":14},"cn0":195},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":25,"code":14},"cn0":192},{"mesid":{"sat":11,"code":14},"cn0":189},{"mesid":{"sat":24,"code":14},"cn0":204},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":31,"code":14},"cn0":158},{"mesid":{"sat":33,"code":14},"cn0":152},{"mesid":{"sat":25,"code":20},"cn0":201},{"mesid":{"sat":24,"code":20},"cn0":215},{"mesid":{"sat":11,"code":20},"cn0":194},{"mesid":{"sat":31,"code":20},"cn0":175},{"mesid":{"sat":12,"code":20},"cn0":206},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":33,"code":20},"cn0":169},{"mesid":{"sat":0,"code":0},"cn0":0}]} +{"crc":34187,"length":128,"msg_type":151,"payload":"AgAaHQUAKzUMAFEtFQB9GRkAbUYaAKEBHQChNx8AlQ4EAxUWBQMyIQkDXw4KA3EpCwOYJQwDqgMTAyIHFAMMMRUDlSUMDJQpEwwjIBQMDwIWDEMkGAyCIxkMnQ4aDGcVIgyOESMMIi0LDosyDA4PPBgObDYZDpcpHw5VESEOIA8=","preamble":85,"sender":22963,"azel":[{"sid":{"sat":2,"code":0},"az":26,"el":29},{"sid":{"sat":5,"code":0},"az":43,"el":53},{"sid":{"sat":12,"code":0},"az":81,"el":45},{"sid":{"sat":21,"code":0},"az":125,"el":25},{"sid":{"sat":25,"code":0},"az":109,"el":70},{"sid":{"sat":26,"code":0},"az":161,"el":1},{"sid":{"sat":29,"code":0},"az":161,"el":55},{"sid":{"sat":31,"code":0},"az":149,"el":14},{"sid":{"sat":4,"code":3},"az":21,"el":22},{"sid":{"sat":5,"code":3},"az":50,"el":33},{"sid":{"sat":9,"code":3},"az":95,"el":14},{"sid":{"sat":10,"code":3},"az":113,"el":41},{"sid":{"sat":11,"code":3},"az":152,"el":37},{"sid":{"sat":12,"code":3},"az":170,"el":3},{"sid":{"sat":19,"code":3},"az":34,"el":7},{"sid":{"sat":20,"code":3},"az":12,"el":49},{"sid":{"sat":21,"code":3},"az":149,"el":37},{"sid":{"sat":12,"code":12},"az":148,"el":41},{"sid":{"sat":19,"code":12},"az":35,"el":32},{"sid":{"sat":20,"code":12},"az":15,"el":2},{"sid":{"sat":22,"code":12},"az":67,"el":36},{"sid":{"sat":24,"code":12},"az":130,"el":35},{"sid":{"sat":25,"code":12},"az":157,"el":14},{"sid":{"sat":26,"code":12},"az":103,"el":21},{"sid":{"sat":34,"code":12},"az":142,"el":17},{"sid":{"sat":35,"code":12},"az":34,"el":45},{"sid":{"sat":11,"code":14},"az":139,"el":50},{"sid":{"sat":12,"code":14},"az":15,"el":60},{"sid":{"sat":24,"code":14},"az":108,"el":54},{"sid":{"sat":25,"code":14},"az":151,"el":41},{"sid":{"sat":31,"code":14},"az":85,"el":17},{"sid":{"sat":33,"code":14},"az":32,"el":15}]} +{"crc":11312,"length":11,"msg_type":258,"payload":"MgjcLy8QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271527900,"ns_residual":0,"flags":1} +{"crc":58635,"length":16,"msg_type":259,"payload":"EdwvLxDkBwMZAxkJ/uikNQ==","preamble":85,"sender":22963,"flags":17,"tow":271527900,"year":2020,"month":3,"day":25,"hours":3,"minutes":25,"seconds":9,"ns":899999998} +{"crc":59898,"length":34,"msg_type":522,"payload":"3C8vEJ7kuetl6kJA79vzElaSXsDe0JZnPH8xwAECWwQPBg==","preamble":85,"sender":22963,"tow":271527900,"lat":37.83123537613686,"lon":-122.28650354208342,"height":-17.497015451736722,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":38592,"length":22,"msg_type":526,"payload":"3C8vEPL///8HAAAAJgAAAPEAygIPAg==","preamble":85,"sender":22963,"tow":271527900,"n":-14,"e":7,"d":38,"h_accuracy":241,"v_accuracy":714,"n_sats":15,"flags":2} +{"crc":27198,"length":15,"msg_type":520,"payload":"3C8vEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271527900,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":2543,"length":22,"msg_type":524,"payload":"3C8vEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271527900,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":41437,"length":6,"msg_type":528,"payload":"3C8vEP//","preamble":85,"sender":22963,"tow":271527900,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":59163,"length":249,"msg_type":74,"payload":"QDAvEAAAAAAyCEANWLQ+6hyXBq5A/4XUDw8FAL65EkWKd0IH13sIGbMPDxUAhD73RTB8WgfgUvadug8PAgALUQNJfHisB/1v/lWjDw8fAGYxKD0iem0G85L7VdgPDxkAtr+6QPuYzQa+ZPS6zw8PDADLv80+cMiZBnvKBdTUDw8dAJoxKD20MAIFto38U8wPDxkBRb+6QOoWTQVw8/bDug8PDAHqUANJosH6BfzI/jmYDw8fAX6/zT7KtiQFhoMEsMIPDx0Byle0PkiiIgV/av9bwQ8PBQGCMfo+8wq7Bq6EBJ/VDw8LA/jp3UT92loHK8ruFbMPDwkD","preamble":85,"sender":22963,"header":{"t":{"tow":271528000,"ns_residual":0,"wn":2098},"n_obs":64},"obs":[{"P":1052006413,"L":{"i":110566634,"f":174},"D":{"i":-192,"f":133},"cn0":212,"lock":15,"flags":15,"sid":{"sat":5,"code":0}},{"P":1158855102,"L":{"i":121796490,"f":215},"D":{"i":2171,"f":25},"cn0":179,"lock":15,"flags":15,"sid":{"sat":21,"code":0}},{"P":1173831300,"L":{"i":123370544,"f":224},"D":{"i":-2478,"f":157},"cn0":186,"lock":15,"flags":15,"sid":{"sat":2,"code":0}},{"P":1224954123,"L":{"i":128743548,"f":253},"D":{"i":-401,"f":85},"cn0":163,"lock":15,"flags":15,"sid":{"sat":31,"code":0}},{"P":1026044262,"L":{"i":107837986,"f":243},"D":{"i":-1134,"f":85},"cn0":216,"lock":15,"flags":15,"sid":{"sat":25,"code":0}},{"P":1085980598,"L":{"i":114137339,"f":190},"D":{"i":-2972,"f":186},"cn0":207,"lock":15,"flags":15,"sid":{"sat":12,"code":0}},{"P":1053671371,"L":{"i":110741616,"f":123},"D":{"i":1482,"f":212},"cn0":212,"lock":15,"flags":15,"sid":{"sat":29,"code":0}},{"P":1026044314,"L":{"i":84029620,"f":182},"D":{"i":-883,"f":83},"cn0":204,"lock":15,"flags":15,"sid":{"sat":25,"code":1}},{"P":1085980485,"L":{"i":88938218,"f":112},"D":{"i":-2317,"f":195},"cn0":186,"lock":15,"flags":15,"sid":{"sat":12,"code":1}},{"P":1224954090,"L":{"i":100319650,"f":252},"D":{"i":-312,"f":57},"cn0":152,"lock":15,"flags":15,"sid":{"sat":31,"code":1}},{"P":1053671294,"L":{"i":86292170,"f":134},"D":{"i":1155,"f":176},"cn0":194,"lock":15,"flags":15,"sid":{"sat":29,"code":1}},{"P":1052006346,"L":{"i":86155848,"f":127},"D":{"i":-150,"f":91},"cn0":193,"lock":15,"flags":15,"sid":{"sat":5,"code":1}},{"P":1056584066,"L":{"i":112921331,"f":174},"D":{"i":1156,"f":159},"cn0":213,"lock":15,"flags":15,"sid":{"sat":11,"code":3}},{"P":1155394040,"L":{"i":123394813,"f":43},"D":{"i":-4406,"f":21},"cn0":179,"lock":15,"flags":15,"sid":{"sat":9,"code":3}}]} +{"crc":7483,"length":249,"msg_type":74,"payload":"QDAvEAAAAAAyCEHIui89djiLBpdF+zCuDw8UAxr0BEDkKtgGtY4IadAPDwUDT1FrPlyTpwaqFPTk0A8PCgP04wlD+QUuB5nS+si3Dw8EAwZ5Jz8XT8IGRFQGbMsPDxUD8OndRHlxuAU2nPJIqw8PCQQYvC89KvMWBaNS/DTMDw8UBMEy+j4AJTwFv4MD3ckPDwsEUvUEQAvMUgUDqAZ+ww8PBQS/5AlD1JKVBc/4+2GvDw8EBIw8mEURej8HSiT6RMgPDyMMy3j5SWQ/tAe8QfQlrA8PGgz3/BFMqh/sB0vICKWeDw8iDJAbo0dP7nUHS+T6ibwPDxgM","preamble":85,"sender":22963,"header":{"t":{"tow":271528000,"ns_residual":0,"wn":2098},"n_obs":65},"obs":[{"P":1026538184,"L":{"i":109787254,"f":151},"D":{"i":-1211,"f":48},"cn0":174,"lock":15,"flags":15,"sid":{"sat":20,"code":3}},{"P":1074066458,"L":{"i":114830052,"f":181},"D":{"i":2190,"f":105},"cn0":208,"lock":15,"flags":15,"sid":{"sat":5,"code":3}},{"P":1047220559,"L":{"i":111645532,"f":170},"D":{"i":-3052,"f":228},"cn0":208,"lock":15,"flags":15,"sid":{"sat":10,"code":3}},{"P":1124721652,"L":{"i":120456697,"f":153},"D":{"i":-1326,"f":200},"cn0":183,"lock":15,"flags":15,"sid":{"sat":4,"code":3}},{"P":1059551494,"L":{"i":113397527,"f":68},"D":{"i":1620,"f":108},"cn0":203,"lock":15,"flags":15,"sid":{"sat":21,"code":3}},{"P":1155394032,"L":{"i":95973753,"f":54},"D":{"i":-3428,"f":72},"cn0":171,"lock":15,"flags":15,"sid":{"sat":9,"code":4}},{"P":1026538520,"L":{"i":85390122,"f":163},"D":{"i":-942,"f":52},"cn0":204,"lock":15,"flags":15,"sid":{"sat":20,"code":4}},{"P":1056584385,"L":{"i":87827712,"f":191},"D":{"i":899,"f":221},"cn0":201,"lock":15,"flags":15,"sid":{"sat":11,"code":4}},{"P":1074066770,"L":{"i":89312267,"f":3},"D":{"i":1704,"f":126},"cn0":195,"lock":15,"flags":15,"sid":{"sat":5,"code":4}},{"P":1124721855,"L":{"i":93688532,"f":207},"D":{"i":-1032,"f":97},"cn0":175,"lock":15,"flags":15,"sid":{"sat":4,"code":4}},{"P":1167604876,"L":{"i":121600529,"f":74},"D":{"i":-1500,"f":68},"cn0":200,"lock":15,"flags":15,"sid":{"sat":35,"code":12}},{"P":1241086155,"L":{"i":129253220,"f":188},"D":{"i":-3007,"f":37},"cn0":172,"lock":15,"flags":15,"sid":{"sat":26,"code":12}},{"P":1276247287,"L":{"i":132915114,"f":75},"D":{"i":2248,"f":165},"cn0":158,"lock":15,"flags":15,"sid":{"sat":34,"code":12}},{"P":1201871760,"L":{"i":125169231,"f":75},"D":{"i":-1308,"f":137},"cn0":188,"lock":15,"flags":15,"sid":{"sat":24,"code":12}}]} +{"crc":12965,"length":249,"msg_type":74,"payload":"QDAvEAAAAAAyCEIYwxBNI6gGCBwnBeafDw8ZDHenS0UygDcHG0sGp7gPDwwMANVDRywCbAd61/5duQ8PEwybMlpHc1ZuB2RPCVTADw8WDD+nS0XbmpQFpd4ETtEPDwwNDhgJQsa88Aav+/vXww8PDA432h5LJi3lBzo6BIbADw8ZDjwQH0dLk3kHTBYEHL0PDwsO9yQrQ9o4DwdSKvm+zA8PGA4sJ05REZWLCAec87WeDw8fDsCy+lGEt50IZ6P3MJgPDyEOJdoeS4yxDAbAPgNVyQ8PGRQXJytDa8FoBdbD+vLXDw8YFHkPH0fnProFtCIDLsIPDwsU","preamble":85,"sender":22963,"header":{"t":{"tow":271528000,"ns_residual":0,"wn":2098},"n_obs":66},"obs":[{"P":1292944152,"L":{"i":134653987,"f":28},"D":{"i":1319,"f":230},"cn0":159,"lock":15,"flags":15,"sid":{"sat":25,"code":12}},{"P":1162585975,"L":{"i":121077810,"f":27},"D":{"i":1611,"f":167},"cn0":184,"lock":15,"flags":15,"sid":{"sat":12,"code":12}},{"P":1195627776,"L":{"i":124518956,"f":122},"D":{"i":-297,"f":93},"cn0":185,"lock":15,"flags":15,"sid":{"sat":19,"code":12}},{"P":1197093531,"L":{"i":124671603,"f":100},"D":{"i":2383,"f":84},"cn0":192,"lock":15,"flags":15,"sid":{"sat":22,"code":12}},{"P":1162585919,"L":{"i":93625051,"f":165},"D":{"i":1246,"f":78},"cn0":209,"lock":15,"flags":15,"sid":{"sat":12,"code":13}},{"P":1107892238,"L":{"i":116440262,"f":175},"D":{"i":-1029,"f":215},"cn0":195,"lock":15,"flags":15,"sid":{"sat":12,"code":14}},{"P":1260313143,"L":{"i":132459814,"f":58},"D":{"i":1082,"f":134},"cn0":192,"lock":15,"flags":15,"sid":{"sat":25,"code":14}},{"P":1193218108,"L":{"i":125408075,"f":76},"D":{"i":1046,"f":28},"cn0":189,"lock":15,"flags":15,"sid":{"sat":11,"code":14}},{"P":1126900983,"L":{"i":118438106,"f":82},"D":{"i":-1750,"f":190},"cn0":204,"lock":15,"flags":15,"sid":{"sat":24,"code":14}},{"P":1364076332,"L":{"i":143365393,"f":7},"D":{"i":-3172,"f":181},"cn0":158,"lock":15,"flags":15,"sid":{"sat":31,"code":14}},{"P":1375384256,"L":{"i":144553860,"f":103},"D":{"i":-2141,"f":48},"cn0":152,"lock":15,"flags":15,"sid":{"sat":33,"code":14}},{"P":1260313125,"L":{"i":101495180,"f":192},"D":{"i":830,"f":85},"cn0":201,"lock":15,"flags":15,"sid":{"sat":25,"code":20}},{"P":1126901527,"L":{"i":90751339,"f":214},"D":{"i":-1341,"f":242},"cn0":215,"lock":15,"flags":15,"sid":{"sat":24,"code":20}},{"P":1193217913,"L":{"i":96091879,"f":180},"D":{"i":802,"f":46},"cn0":194,"lock":15,"flags":15,"sid":{"sat":11,"code":20}}]} +{"crc":29409,"length":62,"msg_type":74,"payload":"QDAvEAAAAAAyCEOKJ05RNjOMBo6B9oavDw8fFGsXCUKLZVEFnu38Nc4PDwwUf7L6UYcYmgZemvmuqQ8PIRQ=","preamble":85,"sender":22963,"header":{"t":{"tow":271528000,"ns_residual":0,"wn":2098},"n_obs":67},"obs":[{"P":1364076426,"L":{"i":109851446,"f":142},"D":{"i":-2431,"f":134},"cn0":175,"lock":15,"flags":15,"sid":{"sat":31,"code":20}},{"P":1107892075,"L":{"i":89220491,"f":158},"D":{"i":-787,"f":53},"cn0":206,"lock":15,"flags":15,"sid":{"sat":12,"code":20}},{"P":1375384191,"L":{"i":110762119,"f":94},"D":{"i":-1638,"f":174},"cn0":169,"lock":15,"flags":15,"sid":{"sat":33,"code":20}}]} +{"crc":49809,"length":9,"msg_type":117,"payload":"/wAAAAAAAAAA","preamble":85,"sender":22963,"mask":255,"l1ca_bias":0,"l1p_bias":0,"l2ca_bias":0,"l2p_bias":0} +{"crc":37146,"length":11,"msg_type":258,"payload":"MghAMC8QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271528000,"ns_residual":0,"flags":1} +{"crc":26716,"length":16,"msg_type":259,"payload":"EUAwLxDkBwMZAxkJ/smaOw==","preamble":85,"sender":22963,"flags":17,"tow":271528000,"year":2020,"month":3,"day":25,"hours":3,"minutes":25,"seconds":9,"ns":999999998} +{"crc":22240,"length":34,"msg_type":522,"payload":"QDAvECoBwOtl6kJAQpvlElaSXsADs8agkX8xwAECWwQPBg==","preamble":85,"sender":22963,"tow":271528000,"lat":37.831235378982754,"lon":-122.28650352880962,"height":-17.498315857420504,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":15209,"length":22,"msg_type":526,"payload":"QDAvEAAAAAAJAAAAAQAAAPEAygIPAg==","preamble":85,"sender":22963,"tow":271528000,"n":0,"e":9,"d":1,"h_accuracy":241,"v_accuracy":714,"n_sats":15,"flags":2} +{"crc":37323,"length":15,"msg_type":520,"payload":"QDAvEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271528000,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":49125,"length":22,"msg_type":524,"payload":"QDAvEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271528000,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":1337,"length":6,"msg_type":528,"payload":"QDAvEP//","preamble":85,"sender":22963,"tow":271528000,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":40942,"length":4,"msg_type":65535,"payload":"AAUCgA==","preamble":85,"sender":22963,"flags":2147616000} +{"crc":2168,"length":24,"msg_type":72,"payload":"UO0a3iqORMHK1UJhIkRQwc9nFIPvrk1B","preamble":85,"sender":22963,"x":-2694229.735196747,"y":-4264073.519704292,"z":3890655.0240602265} +{"crc":47991,"length":26,"msg_type":23,"payload":"bWFpbgAAAAAAAAAAAAAAAAAAAAAAAAx1AAA=","preamble":85,"sender":22963,"name":"main\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":0,"stack_free":29964} +{"crc":40310,"length":26,"msg_type":23,"payload":"aWRsZQAAAAAAAAAAAAAAAAAAAAAbAHwAAAA=","preamble":85,"sender":22963,"name":"idle\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":27,"stack_free":124} +{"crc":18957,"length":26,"msg_type":23,"payload":"cnBtc2cAAAAAAAAAAAAAAAAAAAABAOQNAAA=","preamble":85,"sender":22963,"name":"rpmsg\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":1,"stack_free":3556} +{"crc":51784,"length":26,"msg_type":23,"payload":"U0JQAAAAAAAAAAAAAAAAAAAAAAAAAPz/AAA=","preamble":85,"sender":22963,"name":"SBP\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":0,"stack_free":65532} +{"crc":33651,"length":26,"msg_type":23,"payload":"TkFQAAAAAAAAAAAAAAAAAAAAAAAAAASAAAA=","preamble":85,"sender":22963,"name":"NAP\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":0,"stack_free":32772} +{"crc":51010,"length":26,"msg_type":23,"payload":"bWFuYWdlIFBWAAAAAAAAAAAAAAAAAOwDAAA=","preamble":85,"sender":22963,"name":"manage PV\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":0,"stack_free":1004} +{"crc":14252,"length":26,"msg_type":23,"payload":"SU1VAAAAAAAAAAAAAAAAAAAAAAAAAPQHAAA=","preamble":85,"sender":22963,"name":"IMU\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":0,"stack_free":2036} +{"crc":18976,"length":26,"msg_type":23,"payload":"SU1VIGF1eAAAAAAAAAAAAAAAAAAAAEwIAAA=","preamble":85,"sender":22963,"name":"IMU aux\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":0,"stack_free":2124} +{"crc":26120,"length":26,"msg_type":23,"payload":"bmRiAAAAAAAAAAAAAAAAAAAAAAAAAFAMAAA=","preamble":85,"sender":22963,"name":"ndb\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":0,"stack_free":3152} +{"crc":43939,"length":26,"msg_type":23,"payload":"TkFQIFRyYWNraW5nAAAAAAAAAAAuAdR3AAA=","preamble":85,"sender":22963,"name":"NAP Tracking\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":302,"stack_free":30676} +{"crc":55602,"length":26,"msg_type":23,"payload":"ZGVjb2RlAAAAAAAAAAAAAAAAAAAJANQGAAA=","preamble":85,"sender":22963,"name":"decode\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":9,"stack_free":1748} +{"crc":7795,"length":26,"msg_type":23,"payload":"bWFuYWdlIGFjcQAAAAAAAAAAAADzAaR3AAA=","preamble":85,"sender":22963,"name":"manage acq\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":499,"stack_free":30628} +{"crc":58531,"length":26,"msg_type":23,"payload":"c3lzdGVtIG1vbml0b3IAAAAAAAAAACwGAAA=","preamble":85,"sender":22963,"name":"system monitor\u0000\u0000\u0000\u0000\u0000\u0000","cpu":0,"stack_free":1580} +{"crc":44438,"length":26,"msg_type":23,"payload":"V2F0Y2hkb2cAAAAAAAAAAAAAAAAAAOQDAAA=","preamble":85,"sender":22963,"name":"Watchdog\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":0,"stack_free":996} +{"crc":15999,"length":26,"msg_type":23,"payload":"c3RhcmxpbmcAAAAAAAAAAAAAAACVAPz/AAA=","preamble":85,"sender":22963,"name":"starling\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":149,"stack_free":65532} +{"crc":24698,"length":26,"msg_type":23,"payload":"bWVfY2FsY19wdnQAAAAAAAAAAAAHAIwjAAA=","preamble":85,"sender":22963,"name":"me_calc_pvt\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":7,"stack_free":9100} +{"crc":38576,"length":26,"msg_type":23,"payload":"UFBTAAAAAAAAAAAAAAAAAAAAAAAAAEgHAAA=","preamble":85,"sender":22963,"name":"PPS\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":0,"stack_free":1864} +{"crc":50933,"length":26,"msg_type":23,"payload":"c3BlY3RydW0gYW5hbHl6ZXIAAAAAANQPAAA=","preamble":85,"sender":22963,"name":"spectrum analyzer\u0000\u0000\u0000","cpu":0,"stack_free":4052} +{"crc":19042,"length":11,"msg_type":258,"payload":"MgikMC8QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271528100,"ns_residual":0,"flags":1} +{"crc":10989,"length":16,"msg_type":259,"payload":"EaQwLxDkBwMZAxkK/uD1BQ==","preamble":85,"sender":22963,"flags":17,"tow":271528100,"year":2020,"month":3,"day":25,"hours":3,"minutes":25,"seconds":10,"ns":99999998} +{"crc":27134,"length":34,"msg_type":522,"payload":"pDAvEGmFpetl6kJAtsHcElaSXsB8GchbiIAxwAECWwQPBg==","preamble":85,"sender":22963,"tow":271528100,"lat":37.83123536665045,"lon":-122.2865035205676,"height":-17.50208066592448,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":47591,"length":22,"msg_type":526,"payload":"pDAvEP3///8AAAAAAAAAAPEAygIPAg==","preamble":85,"sender":22963,"tow":271528100,"n":-3,"e":0,"d":0,"h_accuracy":241,"v_accuracy":714,"n_sats":15,"flags":2} +{"crc":59766,"length":15,"msg_type":520,"payload":"pDAvEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271528100,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":7622,"length":22,"msg_type":524,"payload":"pDAvEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271528100,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":34976,"length":6,"msg_type":528,"payload":"pDAvEP//","preamble":85,"sender":22963,"tow":271528100,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":41199,"length":11,"msg_type":258,"payload":"MggIMS8QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271528200,"ns_residual":0,"flags":1} +{"crc":21561,"length":16,"msg_type":259,"payload":"EQgxLxDkBwMZAxkK/sHrCw==","preamble":85,"sender":22963,"flags":17,"tow":271528200,"year":2020,"month":3,"day":25,"hours":3,"minutes":25,"seconds":10,"ns":199999998} +{"crc":26313,"length":34,"msg_type":522,"payload":"CDEvEN3gnOtl6kJAKxXSElaSXsBekaQO34ExwAECWwQPBg==","preamble":85,"sender":22963,"tow":271528200,"lat":37.831235362625854,"lon":-122.28650351062667,"height":-17.5073098327424,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":56609,"length":22,"msg_type":526,"payload":"CDEvEAUAAAABAAAACAAAAPEAywIPAg==","preamble":85,"sender":22963,"tow":271528200,"n":5,"e":1,"d":8,"h_accuracy":241,"v_accuracy":715,"n_sats":15,"flags":2} +{"crc":59366,"length":15,"msg_type":520,"payload":"CDEvEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271528200,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":57834,"length":22,"msg_type":524,"payload":"CDEvEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271528200,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":51258,"length":6,"msg_type":528,"payload":"CDEvEP//","preamble":85,"sender":22963,"tow":271528200,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":50213,"length":11,"msg_type":258,"payload":"MghsMS8QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271528300,"ns_residual":0,"flags":1} +{"crc":58909,"length":16,"msg_type":259,"payload":"EWwxLxDkBwMZAxkK/qLhEQ==","preamble":85,"sender":22963,"flags":17,"tow":271528300,"year":2020,"month":3,"day":25,"hours":3,"minutes":25,"seconds":10,"ns":299999998} +{"crc":60846,"length":34,"msg_type":522,"payload":"bDEvEC0Hhutl6kJAF/rPElaSXsCbnL8ed4MxwAECWwQPBg==","preamble":85,"sender":22963,"tow":271528300,"lat":37.831235351985335,"lon":-122.28650350866552,"height":-17.513536378650866,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":28591,"length":22,"msg_type":526,"payload":"bDEvEP////8GAAAA/v////EAywIPAg==","preamble":85,"sender":22963,"tow":271528300,"n":-1,"e":6,"d":-2,"h_accuracy":241,"v_accuracy":715,"n_sats":15,"flags":2} +{"crc":52041,"length":15,"msg_type":520,"payload":"bDEvEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271528300,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":63836,"length":22,"msg_type":524,"payload":"bDEvEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271528300,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":37251,"length":6,"msg_type":528,"payload":"bDEvEP//","preamble":85,"sender":22963,"tow":271528300,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":21854,"length":237,"msg_type":97,"payload":"BQDUFQCzAgC5HwCiAAAAAAAAGQDYDADOHQDUEgDMAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwLLGQHMDAG6HwGXEgHEHQHCAAAABQHBAAAAAAAAAAAAAAAAZAPWYgOzZgOuZQPQXQPQAAAAagO2aAPLYgSrZgTNAAAAZATJZQTEaAS8AAAAagSvIwzIGgysIgyfGAy8GQyfDAy5Ewy5FgzAAAAADA3RAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADA7DAAAAGQ7ACw69GA7MAAAAHw6dIQ6ZGRTJGBTXCxTCHxSvDBTOAAAAIRSpAAAA","preamble":85,"sender":22963,"states":[{"mesid":{"sat":5,"code":0},"cn0":212},{"mesid":{"sat":21,"code":0},"cn0":179},{"mesid":{"sat":2,"code":0},"cn0":185},{"mesid":{"sat":31,"code":0},"cn0":162},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":25,"code":0},"cn0":216},{"mesid":{"sat":12,"code":0},"cn0":206},{"mesid":{"sat":29,"code":0},"cn0":212},{"mesid":{"sat":18,"code":0},"cn0":204},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":131,"code":2},"cn0":203},{"mesid":{"sat":25,"code":1},"cn0":204},{"mesid":{"sat":12,"code":1},"cn0":186},{"mesid":{"sat":31,"code":1},"cn0":151},{"mesid":{"sat":18,"code":1},"cn0":196},{"mesid":{"sat":29,"code":1},"cn0":194},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":5,"code":1},"cn0":193},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":100,"code":3},"cn0":214},{"mesid":{"sat":98,"code":3},"cn0":179},{"mesid":{"sat":102,"code":3},"cn0":174},{"mesid":{"sat":101,"code":3},"cn0":208},{"mesid":{"sat":93,"code":3},"cn0":208},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":106,"code":3},"cn0":182},{"mesid":{"sat":104,"code":3},"cn0":203},{"mesid":{"sat":98,"code":4},"cn0":171},{"mesid":{"sat":102,"code":4},"cn0":205},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":100,"code":4},"cn0":201},{"mesid":{"sat":101,"code":4},"cn0":196},{"mesid":{"sat":104,"code":4},"cn0":188},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":106,"code":4},"cn0":175},{"mesid":{"sat":35,"code":12},"cn0":200},{"mesid":{"sat":26,"code":12},"cn0":172},{"mesid":{"sat":34,"code":12},"cn0":159},{"mesid":{"sat":24,"code":12},"cn0":188},{"mesid":{"sat":25,"code":12},"cn0":159},{"mesid":{"sat":12,"code":12},"cn0":185},{"mesid":{"sat":19,"code":12},"cn0":185},{"mesid":{"sat":22,"code":12},"cn0":192},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":12,"code":13},"cn0":209},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":12,"code":14},"cn0":195},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":25,"code":14},"cn0":192},{"mesid":{"sat":11,"code":14},"cn0":189},{"mesid":{"sat":24,"code":14},"cn0":204},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":31,"code":14},"cn0":157},{"mesid":{"sat":33,"code":14},"cn0":153},{"mesid":{"sat":25,"code":20},"cn0":201},{"mesid":{"sat":24,"code":20},"cn0":215},{"mesid":{"sat":11,"code":20},"cn0":194},{"mesid":{"sat":31,"code":20},"cn0":175},{"mesid":{"sat":12,"code":20},"cn0":206},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":33,"code":20},"cn0":169},{"mesid":{"sat":0,"code":0},"cn0":0}]} +{"crc":14981,"length":11,"msg_type":258,"payload":"MgjQMS8QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271528400,"ns_residual":0,"flags":1} +{"crc":41829,"length":16,"msg_type":259,"payload":"EdAxLxDkBwMZAxkK/oPXFw==","preamble":85,"sender":22963,"flags":17,"tow":271528400,"year":2020,"month":3,"day":25,"hours":3,"minutes":25,"seconds":10,"ns":399999998} +{"crc":6251,"length":34,"msg_type":522,"payload":"0DEvEJ9naetl6kJAg8jaElaSXsDcsmjzmYQxwAECWwQPBg==","preamble":85,"sender":22963,"tow":271528400,"lat":37.83123533865659,"lon":-122.2865035187297,"height":-17.5179741030323,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":63955,"length":22,"msg_type":526,"payload":"0DEvEAIAAAD6////BQAAAPEAywIPAg==","preamble":85,"sender":22963,"tow":271528400,"n":2,"e":-6,"d":5,"h_accuracy":241,"v_accuracy":715,"n_sats":15,"flags":2} +{"crc":61490,"length":15,"msg_type":520,"payload":"0DEvEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271528400,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":28096,"length":22,"msg_type":524,"payload":"0DEvEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271528400,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":25036,"length":6,"msg_type":528,"payload":"0DEvEP//","preamble":85,"sender":22963,"tow":271528400,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":49809,"length":9,"msg_type":117,"payload":"/wAAAAAAAAAA","preamble":85,"sender":22963,"mask":255,"l1ca_bias":0,"l1p_bias":0,"l2ca_bias":0,"l2p_bias":0} +{"crc":10632,"length":11,"msg_type":258,"payload":"Mgg0Mi8QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271528500,"ns_residual":0,"flags":1} +{"crc":15912,"length":16,"msg_type":259,"payload":"ETQyLxDkBwMZAxkK/mTNHQ==","preamble":85,"sender":22963,"flags":17,"tow":271528500,"year":2020,"month":3,"day":25,"hours":3,"minutes":25,"seconds":10,"ns":499999998} +{"crc":793,"length":34,"msg_type":522,"payload":"NDIvEJpgRutl6kJAkCDWElaSXsCKeJUMioUxwAECWwQPBg==","preamble":85,"sender":22963,"tow":271528500,"lat":37.83123532234568,"lon":-122.28650351439342,"height":-17.521637712947758,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":23504,"length":22,"msg_type":526,"payload":"NDIvEPv////5/////f////EAywIPAg==","preamble":85,"sender":22963,"tow":271528500,"n":-5,"e":-7,"d":-3,"h_accuracy":241,"v_accuracy":715,"n_sats":15,"flags":2} +{"crc":1324,"length":15,"msg_type":520,"payload":"NDIvEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271528500,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":41432,"length":22,"msg_type":524,"payload":"NDIvEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271528500,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":647,"length":6,"msg_type":528,"payload":"NDIvEP//","preamble":85,"sender":22963,"tow":271528500,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":34006,"length":11,"msg_type":258,"payload":"MgiYMi8QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271528600,"ns_residual":0,"flags":1} +{"crc":3773,"length":16,"msg_type":259,"payload":"EZgyLxDkBwMZAxkK/kXDIw==","preamble":85,"sender":22963,"flags":17,"tow":271528600,"year":2020,"month":3,"day":25,"hours":3,"minutes":25,"seconds":10,"ns":599999998} +{"crc":59203,"length":34,"msg_type":522,"payload":"mDIvELKkS+tl6kJAe0i3ElaSXsDYfRADooYxwAECWwQPBg==","preamble":85,"sender":22963,"tow":271528600,"lat":37.831235324797845,"lon":-122.28650348566764,"height":-17.525909606481804,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":59259,"length":22,"msg_type":526,"payload":"mDIvEAoAAAANAAAA/f////EAywIPAg==","preamble":85,"sender":22963,"tow":271528600,"n":10,"e":13,"d":-3,"h_accuracy":241,"v_accuracy":715,"n_sats":15,"flags":2} +{"crc":28893,"length":15,"msg_type":520,"payload":"mDIvEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271528600,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":34818,"length":22,"msg_type":524,"payload":"mDIvEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271528600,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":59468,"length":6,"msg_type":528,"payload":"mDIvEP//","preamble":85,"sender":22963,"tow":271528600,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":57372,"length":11,"msg_type":258,"payload":"Mgj8Mi8QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271528700,"ns_residual":0,"flags":1} +{"crc":42737,"length":16,"msg_type":259,"payload":"EfwyLxDkBwMZAxkK/ia5KQ==","preamble":85,"sender":22963,"flags":17,"tow":271528700,"year":2020,"month":3,"day":25,"hours":3,"minutes":25,"seconds":10,"ns":699999998} +{"crc":56626,"length":34,"msg_type":522,"payload":"/DIvECbBROtl6kJACbu0ElaSXsAlBwJ30ocxwAECWwQPBg==","preamble":85,"sender":22963,"tow":271528700,"lat":37.83123532158997,"lon":-122.28650348329042,"height":-17.530555189128012,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":3503,"length":22,"msg_type":526,"payload":"/DIvEAMAAAD3////FQAAAPEAywIPAg==","preamble":85,"sender":22963,"tow":271528700,"n":3,"e":-9,"d":21,"h_accuracy":241,"v_accuracy":715,"n_sats":15,"flags":2} +{"crc":23666,"length":15,"msg_type":520,"payload":"/DIvEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271528700,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":37044,"length":22,"msg_type":524,"payload":"/DIvEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271528700,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":45557,"length":6,"msg_type":528,"payload":"/DIvEP//","preamble":85,"sender":22963,"tow":271528700,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":62134,"length":34,"msg_type":30583,"payload":"gwIZMi8QAlf/AAf/AC//AAf/f//+f/f//+AC5edV7m7lcA==","preamble":85,"sender":22963,"sid":{"sat":131,"code":2},"tow":271528473,"message_type":2,"data":[87,255,0,7,255,0,47,255,0,7,255,127,255,254,127,247,255,255,224,2,229,231,85,238,110,229,112]} +{"crc":65171,"length":11,"msg_type":258,"payload":"MghgMy8QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271528800,"ns_residual":0,"flags":1} +{"crc":794,"length":16,"msg_type":259,"payload":"EWAzLxDkBwMZAxkK/gevLw==","preamble":85,"sender":22963,"flags":17,"tow":271528800,"year":2020,"month":3,"day":25,"hours":3,"minutes":25,"seconds":10,"ns":799999998} +{"crc":60714,"length":34,"msg_type":522,"payload":"YDMvEH0/c+tl6kJA2HupElaSXsAbJRvzaIkxwAECWwQPBg==","preamble":85,"sender":22963,"tow":271528800,"lat":37.8312353432402,"lon":-122.28650347281598,"height":-17.536757654311355,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":37184,"length":22,"msg_type":526,"payload":"YDMvEAIAAAALAAAAAwAAAPEAywIPAg==","preamble":85,"sender":22963,"tow":271528800,"n":2,"e":11,"d":3,"h_accuracy":241,"v_accuracy":715,"n_sats":15,"flags":2} +{"crc":33148,"length":15,"msg_type":520,"payload":"YDMvEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271528800,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":47987,"length":22,"msg_type":524,"payload":"YDMvEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271528800,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":57059,"length":6,"msg_type":528,"payload":"YDMvEP//","preamble":85,"sender":22963,"tow":271528800,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":2603,"length":237,"msg_type":97,"payload":"BQDUFQCzAgC6HwCjAAAAAAAAGQDZDADPHQDUEgDNAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwLMGQHMDAG6HwGYEgHEHQHCAAAABQHBAAAAAAAAAAAAAAAACwPVCQOzFAOtBQPQCgPQAAAABAO2FQPLCQSqFATNAAAACwTJBQTDAAS8AAAABASvIwzIGgysIgyfGAy8GQygDAy5Ewy5FgzAAAAADA3RAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADA7DAAAAGQ6/Cw69GA7MAAAAHw6dIQ6XGRTJGBTXCxTCHxSvDBTOAAAAIRSpAAAA","preamble":85,"sender":22963,"states":[{"mesid":{"sat":5,"code":0},"cn0":212},{"mesid":{"sat":21,"code":0},"cn0":179},{"mesid":{"sat":2,"code":0},"cn0":186},{"mesid":{"sat":31,"code":0},"cn0":163},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":25,"code":0},"cn0":217},{"mesid":{"sat":12,"code":0},"cn0":207},{"mesid":{"sat":29,"code":0},"cn0":212},{"mesid":{"sat":18,"code":0},"cn0":205},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":131,"code":2},"cn0":204},{"mesid":{"sat":25,"code":1},"cn0":204},{"mesid":{"sat":12,"code":1},"cn0":186},{"mesid":{"sat":31,"code":1},"cn0":152},{"mesid":{"sat":18,"code":1},"cn0":196},{"mesid":{"sat":29,"code":1},"cn0":194},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":5,"code":1},"cn0":193},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":11,"code":3},"cn0":213},{"mesid":{"sat":9,"code":3},"cn0":179},{"mesid":{"sat":20,"code":3},"cn0":173},{"mesid":{"sat":5,"code":3},"cn0":208},{"mesid":{"sat":10,"code":3},"cn0":208},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":4,"code":3},"cn0":182},{"mesid":{"sat":21,"code":3},"cn0":203},{"mesid":{"sat":9,"code":4},"cn0":170},{"mesid":{"sat":20,"code":4},"cn0":205},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":11,"code":4},"cn0":201},{"mesid":{"sat":5,"code":4},"cn0":195},{"mesid":{"sat":0,"code":4},"cn0":188},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":4,"code":4},"cn0":175},{"mesid":{"sat":35,"code":12},"cn0":200},{"mesid":{"sat":26,"code":12},"cn0":172},{"mesid":{"sat":34,"code":12},"cn0":159},{"mesid":{"sat":24,"code":12},"cn0":188},{"mesid":{"sat":25,"code":12},"cn0":160},{"mesid":{"sat":12,"code":12},"cn0":185},{"mesid":{"sat":19,"code":12},"cn0":185},{"mesid":{"sat":22,"code":12},"cn0":192},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":12,"code":13},"cn0":209},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":12,"code":14},"cn0":195},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":25,"code":14},"cn0":191},{"mesid":{"sat":11,"code":14},"cn0":189},{"mesid":{"sat":24,"code":14},"cn0":204},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":31,"code":14},"cn0":157},{"mesid":{"sat":33,"code":14},"cn0":151},{"mesid":{"sat":25,"code":20},"cn0":201},{"mesid":{"sat":24,"code":20},"cn0":215},{"mesid":{"sat":11,"code":20},"cn0":194},{"mesid":{"sat":31,"code":20},"cn0":175},{"mesid":{"sat":12,"code":20},"cn0":206},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":33,"code":20},"cn0":169},{"mesid":{"sat":0,"code":0},"cn0":0}]} +{"crc":34187,"length":128,"msg_type":151,"payload":"AgAaHQUAKzUMAFEtFQB9GRkAbUYaAKEBHQChNx8AlQ4EAxUWBQMyIQkDXw4KA3EpCwOYJQwDqgMTAyIHFAMMMRUDlSUMDJQpEwwjIBQMDwIWDEMkGAyCIxkMnQ4aDGcVIgyOESMMIi0LDosyDA4PPBgObDYZDpcpHw5VESEOIA8=","preamble":85,"sender":22963,"azel":[{"sid":{"sat":2,"code":0},"az":26,"el":29},{"sid":{"sat":5,"code":0},"az":43,"el":53},{"sid":{"sat":12,"code":0},"az":81,"el":45},{"sid":{"sat":21,"code":0},"az":125,"el":25},{"sid":{"sat":25,"code":0},"az":109,"el":70},{"sid":{"sat":26,"code":0},"az":161,"el":1},{"sid":{"sat":29,"code":0},"az":161,"el":55},{"sid":{"sat":31,"code":0},"az":149,"el":14},{"sid":{"sat":4,"code":3},"az":21,"el":22},{"sid":{"sat":5,"code":3},"az":50,"el":33},{"sid":{"sat":9,"code":3},"az":95,"el":14},{"sid":{"sat":10,"code":3},"az":113,"el":41},{"sid":{"sat":11,"code":3},"az":152,"el":37},{"sid":{"sat":12,"code":3},"az":170,"el":3},{"sid":{"sat":19,"code":3},"az":34,"el":7},{"sid":{"sat":20,"code":3},"az":12,"el":49},{"sid":{"sat":21,"code":3},"az":149,"el":37},{"sid":{"sat":12,"code":12},"az":148,"el":41},{"sid":{"sat":19,"code":12},"az":35,"el":32},{"sid":{"sat":20,"code":12},"az":15,"el":2},{"sid":{"sat":22,"code":12},"az":67,"el":36},{"sid":{"sat":24,"code":12},"az":130,"el":35},{"sid":{"sat":25,"code":12},"az":157,"el":14},{"sid":{"sat":26,"code":12},"az":103,"el":21},{"sid":{"sat":34,"code":12},"az":142,"el":17},{"sid":{"sat":35,"code":12},"az":34,"el":45},{"sid":{"sat":11,"code":14},"az":139,"el":50},{"sid":{"sat":12,"code":14},"az":15,"el":60},{"sid":{"sat":24,"code":14},"az":108,"el":54},{"sid":{"sat":25,"code":14},"az":151,"el":41},{"sid":{"sat":31,"code":14},"az":85,"el":17},{"sid":{"sat":33,"code":14},"az":32,"el":15}]} +{"crc":31282,"length":11,"msg_type":258,"payload":"MgjEMy8QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271528900,"ns_residual":0,"flags":1} +{"crc":45615,"length":16,"msg_type":259,"payload":"EcQzLxDkBwMZAxkK/uikNQ==","preamble":85,"sender":22963,"flags":17,"tow":271528900,"year":2020,"month":3,"day":25,"hours":3,"minutes":25,"seconds":10,"ns":899999998} +{"crc":56878,"length":34,"msg_type":522,"payload":"xDMvEL4Bh+tl6kJAIqepElaSXsDI0WFbMYsxwAECWwQPBg==","preamble":85,"sender":22963,"tow":271528900,"lat":37.83123535244111,"lon":-122.28650347297346,"height":-17.543721877462104,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":47864,"length":22,"msg_type":526,"payload":"xDMvEPX///8HAAAACQAAAPEAywIPAg==","preamble":85,"sender":22963,"tow":271528900,"n":-11,"e":7,"d":9,"h_accuracy":241,"v_accuracy":715,"n_sats":15,"flags":2} +{"crc":54216,"length":15,"msg_type":520,"payload":"xDMvEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271528900,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":52234,"length":22,"msg_type":524,"payload":"xDMvEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271528900,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":14698,"length":6,"msg_type":528,"payload":"xDMvEP//","preamble":85,"sender":22963,"tow":271528900,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":58446,"length":249,"msg_type":74,"payload":"KDQvEAAAAAAyCEAwX7Q+qh2XBjM//7zUDw8FAA1pEkUQb0IHFHoIHrMPDxUAl5r3Rd+FWgfBUva8uQ8PAgDmXwNJDnqsB9Jt/omjDw8fAI1bKD2Rfm0GTJH76tkPDxkAJy67QJekzQaYZfQ0zw8PDAC0iM0+psKZBlTKBZnUDw8dAMJbKD0oNAIFnoz8xswPDxkBui27QPYfTQUt9Pa9ug8PDAHbXwNJ3ML6BRvG/teYDw8fAWmIzT5HsiQFm4IE6sIPDx0B6160Pt2iIgW/a/9NwQ8PBQFNB/o+cAa7BieDBL/VDw8LAxmL3kQ07FoHu8fuILQPDwkD","preamble":85,"sender":22963,"header":{"t":{"tow":271529000,"ns_residual":0,"wn":2098},"n_obs":64},"obs":[{"P":1052008240,"L":{"i":110566826,"f":51},"D":{"i":-193,"f":188},"cn0":212,"lock":15,"flags":15,"sid":{"sat":5,"code":0}},{"P":1158834445,"L":{"i":121794320,"f":20},"D":{"i":2170,"f":30},"cn0":179,"lock":15,"flags":15,"sid":{"sat":21,"code":0}},{"P":1173854871,"L":{"i":123373023,"f":193},"D":{"i":-2478,"f":188},"cn0":185,"lock":15,"flags":15,"sid":{"sat":2,"code":0}},{"P":1224957926,"L":{"i":128743950,"f":210},"D":{"i":-403,"f":137},"cn0":163,"lock":15,"flags":15,"sid":{"sat":31,"code":0}},{"P":1026055053,"L":{"i":107839121,"f":76},"D":{"i":-1135,"f":234},"cn0":217,"lock":15,"flags":15,"sid":{"sat":25,"code":0}},{"P":1086008871,"L":{"i":114140311,"f":152},"D":{"i":-2971,"f":52},"cn0":207,"lock":15,"flags":15,"sid":{"sat":12,"code":0}},{"P":1053657268,"L":{"i":110740134,"f":84},"D":{"i":1482,"f":153},"cn0":212,"lock":15,"flags":15,"sid":{"sat":29,"code":0}},{"P":1026055106,"L":{"i":84030504,"f":158},"D":{"i":-884,"f":198},"cn0":204,"lock":15,"flags":15,"sid":{"sat":25,"code":1}},{"P":1086008762,"L":{"i":88940534,"f":45},"D":{"i":-2316,"f":189},"cn0":186,"lock":15,"flags":15,"sid":{"sat":12,"code":1}},{"P":1224957915,"L":{"i":100319964,"f":27},"D":{"i":-314,"f":215},"cn0":152,"lock":15,"flags":15,"sid":{"sat":31,"code":1}},{"P":1053657193,"L":{"i":86291015,"f":155},"D":{"i":1154,"f":234},"cn0":194,"lock":15,"flags":15,"sid":{"sat":29,"code":1}},{"P":1052008171,"L":{"i":86155997,"f":191},"D":{"i":-149,"f":77},"cn0":193,"lock":15,"flags":15,"sid":{"sat":5,"code":1}},{"P":1056573261,"L":{"i":112920176,"f":39},"D":{"i":1155,"f":191},"cn0":213,"lock":15,"flags":15,"sid":{"sat":11,"code":3}},{"P":1155435289,"L":{"i":123399220,"f":187},"D":{"i":-4409,"f":32},"cn0":180,"lock":15,"flags":15,"sid":{"sat":9,"code":3}}]} +{"crc":35527,"length":249,"msg_type":74,"payload":"KDQvEAAAAAAyCEET5y89Mj2LBlhE+6yuDw8UAyqkBEBWItgGyI4IvdAPDwUDGcFrPkefpwawFfR60A8PCgM4FApDJwsuB4fS+la2Dw8EA+E9Jz/CSMIGXlUGi8sPDxUDOIveRN1+uAVcmvKRqg8PCQRg6C892fYWBRxR/LnNDw8UBIwI+j5+ITwFAYIDo8kPDwsEKKUEQGPFUgW8pwZcww8PBQQjFQpD3JaVBRn6+2OvDw8EBNJ0mEXtfz8HlyP6kcgPDyMMpun5SSVLtAcDQPRTrA8PGgyuqBFM4RbsB5XJCB2fDw8iDJ1Mo0dr83UHIuT6mbwPDxgM","preamble":85,"sender":22963,"header":{"t":{"tow":271529000,"ns_residual":0,"wn":2098},"n_obs":65},"obs":[{"P":1026549523,"L":{"i":109788466,"f":88},"D":{"i":-1212,"f":172},"cn0":174,"lock":15,"flags":15,"sid":{"sat":20,"code":3}},{"P":1074045994,"L":{"i":114827862,"f":200},"D":{"i":2190,"f":189},"cn0":208,"lock":15,"flags":15,"sid":{"sat":5,"code":3}},{"P":1047249177,"L":{"i":111648583,"f":176},"D":{"i":-3051,"f":122},"cn0":208,"lock":15,"flags":15,"sid":{"sat":10,"code":3}},{"P":1124734008,"L":{"i":120458023,"f":135},"D":{"i":-1326,"f":86},"cn0":182,"lock":15,"flags":15,"sid":{"sat":4,"code":3}},{"P":1059536353,"L":{"i":113395906,"f":94},"D":{"i":1621,"f":139},"cn0":203,"lock":15,"flags":15,"sid":{"sat":21,"code":3}},{"P":1155435320,"L":{"i":95977181,"f":92},"D":{"i":-3430,"f":145},"cn0":170,"lock":15,"flags":15,"sid":{"sat":9,"code":4}},{"P":1026549856,"L":{"i":85391065,"f":28},"D":{"i":-943,"f":185},"cn0":205,"lock":15,"flags":15,"sid":{"sat":20,"code":4}},{"P":1056573580,"L":{"i":87826814,"f":1},"D":{"i":898,"f":163},"cn0":201,"lock":15,"flags":15,"sid":{"sat":11,"code":4}},{"P":1074046248,"L":{"i":89310563,"f":188},"D":{"i":1703,"f":92},"cn0":195,"lock":15,"flags":15,"sid":{"sat":5,"code":4}},{"P":1124734243,"L":{"i":93689564,"f":25},"D":{"i":-1030,"f":99},"cn0":175,"lock":15,"flags":15,"sid":{"sat":4,"code":4}},{"P":1167619282,"L":{"i":121602029,"f":151},"D":{"i":-1501,"f":145},"cn0":200,"lock":15,"flags":15,"sid":{"sat":35,"code":12}},{"P":1241115046,"L":{"i":129256229,"f":3},"D":{"i":-3008,"f":83},"cn0":172,"lock":15,"flags":15,"sid":{"sat":26,"code":12}},{"P":1276225710,"L":{"i":132912865,"f":149},"D":{"i":2249,"f":29},"cn0":159,"lock":15,"flags":15,"sid":{"sat":34,"code":12}},{"P":1201884317,"L":{"i":125170539,"f":34},"D":{"i":-1308,"f":153},"cn0":188,"lock":15,"flags":15,"sid":{"sat":24,"code":12}}]} +{"crc":40959,"length":249,"msg_type":74,"payload":"KDQvEAAAAAAyCEKmkRBN+6IGCN8nBWqfDw8ZDBprS0XmeTcH70wGZ7kPDwwMIOBDR1QDbAd32P44uQ8PEwwx2VlHI01uB4hQCXDADw8WDNdqS0X9lZQFyN4ESNEPDwwNQT4JQsrA8AZZ/Pv/ww8PDA76sR5L6yjlBzs6BM+/Dw8ZDlvpHkc1j3kHfRYEvL0PDwsO+2UrQ68/DwcuK/m6zA8PGA4HnU5RdaGLCG+d80SdDw8fDjcC+1Hgv50IKab3opcPDyEO5rEeS06uDAbrPQPuyQ8PGRQWaCtDp8ZoBdvE+h7XDw8YFJvoHkfGO7oFXSADrMIPDwsU","preamble":85,"sender":22963,"header":{"t":{"tow":271529000,"ns_residual":0,"wn":2098},"n_obs":66},"obs":[{"P":1292931494,"L":{"i":134652667,"f":223},"D":{"i":1319,"f":106},"cn0":159,"lock":15,"flags":15,"sid":{"sat":25,"code":12}},{"P":1162570522,"L":{"i":121076198,"f":239},"D":{"i":1612,"f":103},"cn0":185,"lock":15,"flags":15,"sid":{"sat":12,"code":12}},{"P":1195630624,"L":{"i":124519252,"f":119},"D":{"i":-296,"f":56},"cn0":185,"lock":15,"flags":15,"sid":{"sat":19,"code":12}},{"P":1197070641,"L":{"i":124669219,"f":136},"D":{"i":2384,"f":112},"cn0":192,"lock":15,"flags":15,"sid":{"sat":22,"code":12}},{"P":1162570455,"L":{"i":93623805,"f":200},"D":{"i":1246,"f":72},"cn0":209,"lock":15,"flags":15,"sid":{"sat":12,"code":13}},{"P":1107902017,"L":{"i":116441290,"f":89},"D":{"i":-1028,"f":255},"cn0":195,"lock":15,"flags":15,"sid":{"sat":12,"code":14}},{"P":1260302842,"L":{"i":132458731,"f":59},"D":{"i":1082,"f":207},"cn0":191,"lock":15,"flags":15,"sid":{"sat":25,"code":14}},{"P":1193208155,"L":{"i":125407029,"f":125},"D":{"i":1046,"f":188},"cn0":189,"lock":15,"flags":15,"sid":{"sat":11,"code":14}},{"P":1126917627,"L":{"i":118439855,"f":46},"D":{"i":-1749,"f":186},"cn0":204,"lock":15,"flags":15,"sid":{"sat":24,"code":14}},{"P":1364106503,"L":{"i":143368565,"f":111},"D":{"i":-3171,"f":68},"cn0":157,"lock":15,"flags":15,"sid":{"sat":31,"code":14}},{"P":1375404599,"L":{"i":144556000,"f":41},"D":{"i":-2138,"f":162},"cn0":151,"lock":15,"flags":15,"sid":{"sat":33,"code":14}},{"P":1260302822,"L":{"i":101494350,"f":235},"D":{"i":829,"f":238},"cn0":201,"lock":15,"flags":15,"sid":{"sat":25,"code":20}},{"P":1126918166,"L":{"i":90752679,"f":219},"D":{"i":-1340,"f":30},"cn0":215,"lock":15,"flags":15,"sid":{"sat":24,"code":20}},{"P":1193207963,"L":{"i":96091078,"f":93},"D":{"i":800,"f":172},"cn0":194,"lock":15,"flags":15,"sid":{"sat":11,"code":20}}]} +{"crc":27298,"length":62,"msg_type":74,"payload":"KDQvEAAAAAAyCENwnU5RtTyMBliA9kWuDw8fFJ09CUKfaFEFC+z8h84PDwwUCQL7Ue4emgbwmfk6qQ8PIRQ=","preamble":85,"sender":22963,"header":{"t":{"tow":271529000,"ns_residual":0,"wn":2098},"n_obs":67},"obs":[{"P":1364106608,"L":{"i":109853877,"f":88},"D":{"i":-2432,"f":69},"cn0":174,"lock":15,"flags":15,"sid":{"sat":31,"code":20}},{"P":1107901853,"L":{"i":89221279,"f":11},"D":{"i":-788,"f":135},"cn0":206,"lock":15,"flags":15,"sid":{"sat":12,"code":20}},{"P":1375404553,"L":{"i":110763758,"f":240},"D":{"i":-1639,"f":58},"cn0":169,"lock":15,"flags":15,"sid":{"sat":33,"code":20}}]} +{"crc":49809,"length":9,"msg_type":117,"payload":"/wAAAAAAAAAA","preamble":85,"sender":22963,"mask":255,"l1ca_bias":0,"l1p_bias":0,"l2ca_bias":0,"l2p_bias":0} +{"crc":20397,"length":11,"msg_type":258,"payload":"MggoNC8QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271529000,"ns_residual":0,"flags":1} +{"crc":60275,"length":16,"msg_type":259,"payload":"ESg0LxDkBwMZAxkK/smaOw==","preamble":85,"sender":22963,"flags":17,"tow":271529000,"year":2020,"month":3,"day":25,"hours":3,"minutes":25,"seconds":10,"ns":999999998} +{"crc":43633,"length":34,"msg_type":522,"payload":"KDQvEPeSs+tl6kJAYby4ElaSXsCw8QzB/40xwAECWwQPBg==","preamble":85,"sender":22963,"tow":271529000,"lat":37.83123537319437,"lon":-122.2865034870206,"height":-17.55468374792116,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":10884,"length":22,"msg_type":526,"payload":"KDQvEPz///8BAAAACAAAAPEAywIPAg==","preamble":85,"sender":22963,"tow":271529000,"n":-4,"e":1,"d":8,"h_accuracy":241,"v_accuracy":715,"n_sats":15,"flags":2} +{"crc":64566,"length":15,"msg_type":520,"payload":"KDQvEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271529000,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":14602,"length":22,"msg_type":524,"payload":"KDQvEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271529000,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":56933,"length":6,"msg_type":528,"payload":"KDQvEP//","preamble":85,"sender":22963,"tow":271529000,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":40942,"length":4,"msg_type":65535,"payload":"AAUCgA==","preamble":85,"sender":22963,"flags":2147616000} +{"crc":2168,"length":24,"msg_type":72,"payload":"UO0a3iqORMHK1UJhIkRQwc9nFIPvrk1B","preamble":85,"sender":22963,"x":-2694229.735196747,"y":-4264073.519704292,"z":3890655.0240602265} +{"crc":51980,"length":11,"msg_type":258,"payload":"MgiMNC8QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271529100,"ns_residual":0,"flags":1} +{"crc":51016,"length":16,"msg_type":259,"payload":"EYw0LxDkBwMZAxkL/uD1BQ==","preamble":85,"sender":22963,"flags":17,"tow":271529100,"year":2020,"month":3,"day":25,"hours":3,"minutes":25,"seconds":11,"ns":99999998} +{"crc":12009,"length":34,"msg_type":522,"payload":"jDQvEEtQ7etl6kJAHiDnElaSXsDclzfEaJAxwAECWwQPBg==","preamble":85,"sender":22963,"tow":271529100,"lat":37.83123540008145,"lon":-122.28650353022428,"height":-17.564098609516677,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":11389,"length":22,"msg_type":526,"payload":"jDQvEAkAAADx////+f////EAywIPAg==","preamble":85,"sender":22963,"tow":271529100,"n":9,"e":-15,"d":-7,"h_accuracy":241,"v_accuracy":715,"n_sats":15,"flags":2} +{"crc":44674,"length":15,"msg_type":520,"payload":"jDQvEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271529100,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":20083,"length":22,"msg_type":524,"payload":"jDQvEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271529100,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":14828,"length":6,"msg_type":528,"payload":"jDQvEP//","preamble":85,"sender":22963,"tow":271529100,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":54727,"length":11,"msg_type":258,"payload":"MgjwNC8QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271529200,"ns_residual":0,"flags":1} +{"crc":62060,"length":16,"msg_type":259,"payload":"EfA0LxDkBwMZAxkL/sHrCw==","preamble":85,"sender":22963,"flags":17,"tow":271529200,"year":2020,"month":3,"day":25,"hours":3,"minutes":25,"seconds":11,"ns":199999998} +{"crc":58412,"length":34,"msg_type":522,"payload":"8DQvECBaQuxl6kJAcfUPE1aSXsAxJ2eMUpMxwAECWwQPBg==","preamble":85,"sender":22963,"tow":271529200,"lat":37.83123543968054,"lon":-122.28650356825325,"height":-17.575478339370594,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":36942,"length":22,"msg_type":526,"payload":"8DQvEBYAAAD3////BwAAAPEAywIPAg==","preamble":85,"sender":22963,"tow":271529200,"n":22,"e":-9,"d":7,"h_accuracy":241,"v_accuracy":715,"n_sats":15,"flags":2} +{"crc":60386,"length":15,"msg_type":520,"payload":"8DQvEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271529200,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":46368,"length":22,"msg_type":524,"payload":"8DQvEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271529200,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":30611,"length":6,"msg_type":528,"payload":"8DQvEP//","preamble":85,"sender":22963,"tow":271529200,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":5813,"length":11,"msg_type":258,"payload":"MghUNS8QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271529300,"ns_residual":0,"flags":1} +{"crc":17714,"length":16,"msg_type":259,"payload":"EVQ1LxDkBwMZAxkL/qLhEQ==","preamble":85,"sender":22963,"flags":17,"tow":271529300,"year":2020,"month":3,"day":25,"hours":3,"minutes":25,"seconds":11,"ns":299999998} +{"crc":11336,"length":34,"msg_type":522,"payload":"VDUvEMnSUOxl6kJArAEUE1aSXsC9FwaiXpUxwAECWwQPBg==","preamble":85,"sender":22963,"tow":271529300,"lat":37.83123544641928,"lon":-122.28650357202304,"height":-17.583475233542902,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":7471,"length":22,"msg_type":526,"payload":"VDUvEPL///8OAAAAFAAAAPEAywIPAg==","preamble":85,"sender":22963,"tow":271529300,"n":-14,"e":14,"d":20,"h_accuracy":241,"v_accuracy":715,"n_sats":15,"flags":2} +{"crc":49719,"length":15,"msg_type":520,"payload":"VDUvEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271529300,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":6063,"length":22,"msg_type":524,"payload":"VDUvEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271529300,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":14923,"length":6,"msg_type":528,"payload":"VDUvEP//","preamble":85,"sender":22963,"tow":271529300,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":50922,"length":237,"msg_type":97,"payload":"BQDUFQCzAgC5HwCiAAAAAAAAGQDZDADPHQDUEgDNAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwLMGQHMDAG6HwGYEgHEHQHCAAAABQHBAAAAAAAAAAAAAAAAZAPVYgO0ZgOuZQPQXQPQAAAAagO2aAPLYgSqZgTNAAAAZATJZQTDaAS8AAAAagSvIwzIGgysIgyfGAy7GQygDAy5Ewy5FgzAAAAADA3RAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADA7DAAAAGQ7ACw69GA7MAAAAHw6dIQ6YGRTJGBTXCxTBHxSvDBTOAAAAIRSoAAAA","preamble":85,"sender":22963,"states":[{"mesid":{"sat":5,"code":0},"cn0":212},{"mesid":{"sat":21,"code":0},"cn0":179},{"mesid":{"sat":2,"code":0},"cn0":185},{"mesid":{"sat":31,"code":0},"cn0":162},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":25,"code":0},"cn0":217},{"mesid":{"sat":12,"code":0},"cn0":207},{"mesid":{"sat":29,"code":0},"cn0":212},{"mesid":{"sat":18,"code":0},"cn0":205},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":131,"code":2},"cn0":204},{"mesid":{"sat":25,"code":1},"cn0":204},{"mesid":{"sat":12,"code":1},"cn0":186},{"mesid":{"sat":31,"code":1},"cn0":152},{"mesid":{"sat":18,"code":1},"cn0":196},{"mesid":{"sat":29,"code":1},"cn0":194},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":5,"code":1},"cn0":193},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":100,"code":3},"cn0":213},{"mesid":{"sat":98,"code":3},"cn0":180},{"mesid":{"sat":102,"code":3},"cn0":174},{"mesid":{"sat":101,"code":3},"cn0":208},{"mesid":{"sat":93,"code":3},"cn0":208},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":106,"code":3},"cn0":182},{"mesid":{"sat":104,"code":3},"cn0":203},{"mesid":{"sat":98,"code":4},"cn0":170},{"mesid":{"sat":102,"code":4},"cn0":205},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":100,"code":4},"cn0":201},{"mesid":{"sat":101,"code":4},"cn0":195},{"mesid":{"sat":104,"code":4},"cn0":188},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":106,"code":4},"cn0":175},{"mesid":{"sat":35,"code":12},"cn0":200},{"mesid":{"sat":26,"code":12},"cn0":172},{"mesid":{"sat":34,"code":12},"cn0":159},{"mesid":{"sat":24,"code":12},"cn0":187},{"mesid":{"sat":25,"code":12},"cn0":160},{"mesid":{"sat":12,"code":12},"cn0":185},{"mesid":{"sat":19,"code":12},"cn0":185},{"mesid":{"sat":22,"code":12},"cn0":192},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":12,"code":13},"cn0":209},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":12,"code":14},"cn0":195},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":25,"code":14},"cn0":192},{"mesid":{"sat":11,"code":14},"cn0":189},{"mesid":{"sat":24,"code":14},"cn0":204},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":31,"code":14},"cn0":157},{"mesid":{"sat":33,"code":14},"cn0":152},{"mesid":{"sat":25,"code":20},"cn0":201},{"mesid":{"sat":24,"code":20},"cn0":215},{"mesid":{"sat":11,"code":20},"cn0":193},{"mesid":{"sat":31,"code":20},"cn0":175},{"mesid":{"sat":12,"code":20},"cn0":206},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":33,"code":20},"cn0":168},{"mesid":{"sat":0,"code":0},"cn0":0}]} +{"crc":58418,"length":11,"msg_type":258,"payload":"Mgi4NS8QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271529400,"ns_residual":0,"flags":1} +{"crc":25801,"length":16,"msg_type":259,"payload":"Ebg1LxDkBwMZAxkL/oPXFw==","preamble":85,"sender":22963,"flags":17,"tow":271529400,"year":2020,"month":3,"day":25,"hours":3,"minutes":25,"seconds":11,"ns":399999998} +{"crc":63595,"length":34,"msg_type":522,"payload":"uDUvENWqgexl6kJA4uErE1aSXsDyA4F+HZcxwAECWwQPBg==","preamble":85,"sender":22963,"tow":271529400,"lat":37.83123546916401,"lon":-122.28650359425913,"height":-17.590293795106795,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":52603,"length":22,"msg_type":526,"payload":"uDUvEAEAAAADAAAADwAAAPEAywIPAg==","preamble":85,"sender":22963,"tow":271529400,"n":1,"e":3,"d":15,"h_accuracy":241,"v_accuracy":715,"n_sats":15,"flags":2} +{"crc":40399,"length":15,"msg_type":520,"payload":"uDUvEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271529400,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":60207,"length":22,"msg_type":524,"payload":"uDUvEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271529400,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":47760,"length":6,"msg_type":528,"payload":"uDUvEP//","preamble":85,"sender":22963,"tow":271529400,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":49809,"length":9,"msg_type":117,"payload":"/wAAAAAAAAAA","preamble":85,"sender":22963,"mask":255,"l1ca_bias":0,"l1p_bias":0,"l2ca_bias":0,"l2p_bias":0} +{"crc":43238,"length":11,"msg_type":258,"payload":"MggcNi8QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271529500,"ns_residual":0,"flags":1} +{"crc":54157,"length":16,"msg_type":259,"payload":"ERw2LxDkBwMZAxkL/mTNHQ==","preamble":85,"sender":22963,"flags":17,"tow":271529500,"year":2020,"month":3,"day":25,"hours":3,"minutes":25,"seconds":11,"ns":499999998} +{"crc":7811,"length":34,"msg_type":522,"payload":"HDYvEEeFn+xl6kJA+iI+E1aSXsBrXLstNJgxwAECWwQPBg==","preamble":85,"sender":22963,"tow":271529500,"lat":37.831235483065534,"lon":-122.28650361125975,"height":-17.59454618286365,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":51228,"length":22,"msg_type":526,"payload":"HDYvEPn///8MAAAA/f////EAywIPAg==","preamble":85,"sender":22963,"tow":271529500,"n":-7,"e":12,"d":-3,"h_accuracy":241,"v_accuracy":715,"n_sats":15,"flags":2} +{"crc":17112,"length":15,"msg_type":520,"payload":"HDYvEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271529500,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":62061,"length":22,"msg_type":524,"payload":"HDYvEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271529500,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":46027,"length":6,"msg_type":528,"payload":"HDYvEP//","preamble":85,"sender":22963,"tow":271529500,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":61882,"length":11,"msg_type":258,"payload":"MgiANi8QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271529600,"ns_residual":0,"flags":1} +{"crc":12422,"length":16,"msg_type":259,"payload":"EYA2LxDkBwMZAxkL/kXDIw==","preamble":85,"sender":22963,"flags":17,"tow":271529600,"year":2020,"month":3,"day":25,"hours":3,"minutes":25,"seconds":11,"ns":599999998} +{"crc":15348,"length":34,"msg_type":522,"payload":"gDYvEA390uxl6kJA4JlrE1aSXsDLCq+Vq5oxwAECWwQPBg==","preamble":85,"sender":22963,"tow":271529600,"lat":37.831235507032126,"lon":-122.28650365360181,"height":-17.604180674776938,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":3107,"length":22,"msg_type":526,"payload":"gDYvEAkAAAD2////AwAAAPEAywIPAg==","preamble":85,"sender":22963,"tow":271529600,"n":9,"e":-10,"d":3,"h_accuracy":241,"v_accuracy":715,"n_sats":15,"flags":2} +{"crc":58551,"length":15,"msg_type":520,"payload":"gDYvEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271529600,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":3164,"length":22,"msg_type":524,"payload":"gDYvEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271529600,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":30348,"length":6,"msg_type":528,"payload":"gDYvEP//","preamble":85,"sender":22963,"tow":271529600,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":22219,"length":34,"msg_type":30583,"payload":"gwIFNi8QPwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"sid":{"sat":131,"code":2},"tow":271529477,"message_type":63,"data":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]} +{"crc":38256,"length":11,"msg_type":258,"payload":"MgjkNi8QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271529700,"ns_residual":0,"flags":1} +{"crc":39114,"length":16,"msg_type":259,"payload":"EeQ2LxDkBwMZAxkL/ia5KQ==","preamble":85,"sender":22963,"flags":17,"tow":271529700,"year":2020,"month":3,"day":25,"hours":3,"minutes":25,"seconds":11,"ns":699999998} +{"crc":29085,"length":34,"msg_type":522,"payload":"5DYvEJK/5Oxl6kJAEwmPE1aSXsC4F3X3OpwxwAECWwQPBg==","preamble":85,"sender":22963,"tow":271529700,"lat":37.8312355153022,"lon":-122.28650368660264,"height":-17.610274759375642,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":32907,"length":22,"msg_type":526,"payload":"5DYvEAIAAAD/////9f////EAywIPAg==","preamble":85,"sender":22963,"tow":271529700,"n":2,"e":-1,"d":-11,"h_accuracy":241,"v_accuracy":715,"n_sats":15,"flags":2} +{"crc":51224,"length":15,"msg_type":520,"payload":"5DYvEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271529700,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":5354,"length":22,"msg_type":524,"payload":"5DYvEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271529700,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":12085,"length":6,"msg_type":528,"payload":"5DYvEP//","preamble":85,"sender":22963,"tow":271529700,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":32765,"length":11,"msg_type":258,"payload":"MghINy8QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271529800,"ns_residual":0,"flags":1} +{"crc":61119,"length":16,"msg_type":259,"payload":"EUg3LxDkBwMZAxkL/gevLw==","preamble":85,"sender":22963,"flags":17,"tow":271529800,"year":2020,"month":3,"day":25,"hours":3,"minutes":25,"seconds":11,"ns":799999998} +{"crc":58008,"length":34,"msg_type":522,"payload":"SDcvEDXB9uxl6kJAypOqE1aSXsDy4CJ4fJ0xwAECWwQPBg==","preamble":85,"sender":22963,"tow":271529800,"lat":37.83123552368708,"lon":-122.286503712253,"height":-17.61518050052195,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":62584,"length":22,"msg_type":526,"payload":"SDcvEAQAAAD/////+P////EAywIPAg==","preamble":85,"sender":22963,"tow":271529800,"n":4,"e":-1,"d":-8,"h_accuracy":241,"v_accuracy":715,"n_sats":15,"flags":2} +{"crc":50824,"length":15,"msg_type":520,"payload":"SDcvEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271529800,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":59590,"length":22,"msg_type":524,"payload":"SDcvEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271529800,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":28591,"length":6,"msg_type":528,"payload":"SDcvEP//","preamble":85,"sender":22963,"tow":271529800,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":58530,"length":237,"msg_type":97,"payload":"BQDUFQCzAgC5HwCiAAAAAAAAGQDYDADOHQDTEgDNAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwLMGQHMDAG6HwGZEgHEHQHCAAAABQHBAAAAAAAAAAAAAAAACwPVCQOzFAOtBQPQCgPQAAAABAO2FQPLCQSrFATNCgRNCwTJBQTDAAS8AAAABASvIwzIGgysIgygGAy8GQygDAy5Ewy4FgzBAAAADA3RAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADA7CAAAAGQ6/Cw68GA7LAAAAHw6dIQ6WGRTJGBTXCxTCHxSvDBTOAAAAIRSpAAAA","preamble":85,"sender":22963,"states":[{"mesid":{"sat":5,"code":0},"cn0":212},{"mesid":{"sat":21,"code":0},"cn0":179},{"mesid":{"sat":2,"code":0},"cn0":185},{"mesid":{"sat":31,"code":0},"cn0":162},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":25,"code":0},"cn0":216},{"mesid":{"sat":12,"code":0},"cn0":206},{"mesid":{"sat":29,"code":0},"cn0":211},{"mesid":{"sat":18,"code":0},"cn0":205},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":131,"code":2},"cn0":204},{"mesid":{"sat":25,"code":1},"cn0":204},{"mesid":{"sat":12,"code":1},"cn0":186},{"mesid":{"sat":31,"code":1},"cn0":153},{"mesid":{"sat":18,"code":1},"cn0":196},{"mesid":{"sat":29,"code":1},"cn0":194},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":5,"code":1},"cn0":193},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":11,"code":3},"cn0":213},{"mesid":{"sat":9,"code":3},"cn0":179},{"mesid":{"sat":20,"code":3},"cn0":173},{"mesid":{"sat":5,"code":3},"cn0":208},{"mesid":{"sat":10,"code":3},"cn0":208},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":4,"code":3},"cn0":182},{"mesid":{"sat":21,"code":3},"cn0":203},{"mesid":{"sat":9,"code":4},"cn0":171},{"mesid":{"sat":20,"code":4},"cn0":205},{"mesid":{"sat":10,"code":4},"cn0":77},{"mesid":{"sat":11,"code":4},"cn0":201},{"mesid":{"sat":5,"code":4},"cn0":195},{"mesid":{"sat":0,"code":4},"cn0":188},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":4,"code":4},"cn0":175},{"mesid":{"sat":35,"code":12},"cn0":200},{"mesid":{"sat":26,"code":12},"cn0":172},{"mesid":{"sat":34,"code":12},"cn0":160},{"mesid":{"sat":24,"code":12},"cn0":188},{"mesid":{"sat":25,"code":12},"cn0":160},{"mesid":{"sat":12,"code":12},"cn0":185},{"mesid":{"sat":19,"code":12},"cn0":184},{"mesid":{"sat":22,"code":12},"cn0":193},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":12,"code":13},"cn0":209},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":12,"code":14},"cn0":194},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":25,"code":14},"cn0":191},{"mesid":{"sat":11,"code":14},"cn0":188},{"mesid":{"sat":24,"code":14},"cn0":203},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":31,"code":14},"cn0":157},{"mesid":{"sat":33,"code":14},"cn0":150},{"mesid":{"sat":25,"code":20},"cn0":201},{"mesid":{"sat":24,"code":20},"cn0":215},{"mesid":{"sat":11,"code":20},"cn0":194},{"mesid":{"sat":31,"code":20},"cn0":175},{"mesid":{"sat":12,"code":20},"cn0":206},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":33,"code":20},"cn0":169},{"mesid":{"sat":0,"code":0},"cn0":0}]} +{"crc":34187,"length":128,"msg_type":151,"payload":"AgAaHQUAKzUMAFEtFQB9GRkAbUYaAKEBHQChNx8AlQ4EAxUWBQMyIQkDXw4KA3EpCwOYJQwDqgMTAyIHFAMMMRUDlSUMDJQpEwwjIBQMDwIWDEMkGAyCIxkMnQ4aDGcVIgyOESMMIi0LDosyDA4PPBgObDYZDpcpHw5VESEOIA8=","preamble":85,"sender":22963,"azel":[{"sid":{"sat":2,"code":0},"az":26,"el":29},{"sid":{"sat":5,"code":0},"az":43,"el":53},{"sid":{"sat":12,"code":0},"az":81,"el":45},{"sid":{"sat":21,"code":0},"az":125,"el":25},{"sid":{"sat":25,"code":0},"az":109,"el":70},{"sid":{"sat":26,"code":0},"az":161,"el":1},{"sid":{"sat":29,"code":0},"az":161,"el":55},{"sid":{"sat":31,"code":0},"az":149,"el":14},{"sid":{"sat":4,"code":3},"az":21,"el":22},{"sid":{"sat":5,"code":3},"az":50,"el":33},{"sid":{"sat":9,"code":3},"az":95,"el":14},{"sid":{"sat":10,"code":3},"az":113,"el":41},{"sid":{"sat":11,"code":3},"az":152,"el":37},{"sid":{"sat":12,"code":3},"az":170,"el":3},{"sid":{"sat":19,"code":3},"az":34,"el":7},{"sid":{"sat":20,"code":3},"az":12,"el":49},{"sid":{"sat":21,"code":3},"az":149,"el":37},{"sid":{"sat":12,"code":12},"az":148,"el":41},{"sid":{"sat":19,"code":12},"az":35,"el":32},{"sid":{"sat":20,"code":12},"az":15,"el":2},{"sid":{"sat":22,"code":12},"az":67,"el":36},{"sid":{"sat":24,"code":12},"az":130,"el":35},{"sid":{"sat":25,"code":12},"az":157,"el":14},{"sid":{"sat":26,"code":12},"az":103,"el":21},{"sid":{"sat":34,"code":12},"az":142,"el":17},{"sid":{"sat":35,"code":12},"az":34,"el":45},{"sid":{"sat":11,"code":14},"az":139,"el":50},{"sid":{"sat":12,"code":14},"az":15,"el":60},{"sid":{"sat":24,"code":14},"az":108,"el":54},{"sid":{"sat":25,"code":14},"az":151,"el":41},{"sid":{"sat":31,"code":14},"az":85,"el":17},{"sid":{"sat":33,"code":14},"az":32,"el":15}]} +{"crc":42117,"length":11,"msg_type":258,"payload":"MgisNy8QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271529900,"ns_residual":0,"flags":1} +{"crc":30083,"length":16,"msg_type":259,"payload":"Eaw3LxDkBwMZAxkL/uikNQ==","preamble":85,"sender":22963,"flags":17,"tow":271529900,"year":2020,"month":3,"day":25,"hours":3,"minutes":25,"seconds":11,"ns":899999998} +{"crc":60238,"length":34,"msg_type":522,"payload":"rDcvEEIfAO1l6kJAXsbQE1aSXsDbFAUraZ8xwAECWwQPBg==","preamble":85,"sender":22963,"tow":271529900,"lat":37.831235528049106,"lon":-122.28650374782725,"height":-17.62269848703441,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":11561,"length":22,"msg_type":526,"payload":"rDcvEAMAAAD9////GQAAAPEAywIPAg==","preamble":85,"sender":22963,"tow":271529900,"n":3,"e":-3,"d":25,"h_accuracy":241,"v_accuracy":715,"n_sats":15,"flags":2} +{"crc":48693,"length":15,"msg_type":520,"payload":"rDcvEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271529900,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":19173,"length":22,"msg_type":524,"payload":"rDcvEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271529900,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":57910,"length":6,"msg_type":528,"payload":"rDcvEP//","preamble":85,"sender":22963,"tow":271529900,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":5309,"length":249,"msg_type":74,"payload":"EDgvEAAAAAAyCEBZZrQ+ah6XBt0//1PUDw8FAFAYEkWWZkIHAXkIqbIPDxUAzPb3RY+PWgcZUPaTuQ8PAgDdbgNJoXusB5tt/hOiDw8fAL6FKD0Ag20GtZD7ctgPDxkAppy7QDSwzQZKY/Tezg8PDACkUc0+3LyZBtLJBV3TDw8dAPOFKD2dNwIFXYv8U8wPDxkBLZy7QAIpTQWO8fZSug8PDAHgbgNJFcT6BfnG/geZDw8fAVRRzT7FrSQFLIMEQ8EPDx0BD2a0PnOjIgXgaf+ZwQ8PBQEe3fk+7QG7BumCBJHVDw8LA3Is30Rs/VoH1MjuzLMPDwkD","preamble":85,"sender":22963,"header":{"t":{"tow":271530000,"ns_residual":0,"wn":2098},"n_obs":64},"obs":[{"P":1052010073,"L":{"i":110567018,"f":221},"D":{"i":-193,"f":83},"cn0":212,"lock":15,"flags":15,"sid":{"sat":5,"code":0}},{"P":1158813776,"L":{"i":121792150,"f":1},"D":{"i":2169,"f":169},"cn0":178,"lock":15,"flags":15,"sid":{"sat":21,"code":0}},{"P":1173878476,"L":{"i":123375503,"f":25},"D":{"i":-2480,"f":147},"cn0":185,"lock":15,"flags":15,"sid":{"sat":2,"code":0}},{"P":1224961757,"L":{"i":128744353,"f":155},"D":{"i":-403,"f":19},"cn0":162,"lock":15,"flags":15,"sid":{"sat":31,"code":0}},{"P":1026065854,"L":{"i":107840256,"f":181},"D":{"i":-1136,"f":114},"cn0":216,"lock":15,"flags":15,"sid":{"sat":25,"code":0}},{"P":1086037158,"L":{"i":114143284,"f":74},"D":{"i":-2973,"f":222},"cn0":206,"lock":15,"flags":15,"sid":{"sat":12,"code":0}},{"P":1053643172,"L":{"i":110738652,"f":210},"D":{"i":1481,"f":93},"cn0":211,"lock":15,"flags":15,"sid":{"sat":29,"code":0}},{"P":1026065907,"L":{"i":84031389,"f":93},"D":{"i":-885,"f":83},"cn0":204,"lock":15,"flags":15,"sid":{"sat":25,"code":1}},{"P":1086037037,"L":{"i":88942850,"f":142},"D":{"i":-2319,"f":82},"cn0":186,"lock":15,"flags":15,"sid":{"sat":12,"code":1}},{"P":1224961760,"L":{"i":100320277,"f":249},"D":{"i":-314,"f":7},"cn0":153,"lock":15,"flags":15,"sid":{"sat":31,"code":1}},{"P":1053643092,"L":{"i":86289861,"f":44},"D":{"i":1155,"f":67},"cn0":193,"lock":15,"flags":15,"sid":{"sat":29,"code":1}},{"P":1052009999,"L":{"i":86156147,"f":224},"D":{"i":-151,"f":153},"cn0":193,"lock":15,"flags":15,"sid":{"sat":5,"code":1}},{"P":1056562462,"L":{"i":112919021,"f":233},"D":{"i":1154,"f":145},"cn0":213,"lock":15,"flags":15,"sid":{"sat":11,"code":3}},{"P":1155476594,"L":{"i":123403628,"f":212},"D":{"i":-4408,"f":204},"cn0":179,"lock":15,"flags":15,"sid":{"sat":9,"code":3}}]} +{"crc":58534,"length":249,"msg_type":74,"payload":"EDgvEAAAAAAyCEE6EzA97kGLBrVE+yOuDw8UAzlUBEDKGdgGAIwIWNAPDwUD6zBsPjOrpwbCE/T+0A8PCgOiRApDVhAuB7HQ+sS2Dw8EA8QCJz9uQsIGHVQGkcsPDxUDiyzfREGMuAXanfJkqg8PCQSvFDA9iPoWBQ9Q/GDNDw8UBFXe+T78HTwFQ4EDWMkPDwsEVFUEQL2+UgVbpQawww8PBQSCRQpD5JqVBVP2+zmvDw8EBCWtmEXKhT8HdCL62MgPDyMMjVr6SeVWtAfNPvTTrQ8PGgxxVBFMGQ7sB0jJCDKhDw8iDK99o0eH+HUH4eP6vbwPDxgM","preamble":85,"sender":22963,"header":{"t":{"tow":271530000,"ns_residual":0,"wn":2098},"n_obs":65},"obs":[{"P":1026560826,"L":{"i":109789678,"f":181},"D":{"i":-1212,"f":35},"cn0":174,"lock":15,"flags":15,"sid":{"sat":20,"code":3}},{"P":1074025529,"L":{"i":114825674,"f":0},"D":{"i":2188,"f":88},"cn0":208,"lock":15,"flags":15,"sid":{"sat":5,"code":3}},{"P":1047277803,"L":{"i":111651635,"f":194},"D":{"i":-3053,"f":254},"cn0":208,"lock":15,"flags":15,"sid":{"sat":10,"code":3}},{"P":1124746402,"L":{"i":120459350,"f":177},"D":{"i":-1328,"f":196},"cn0":182,"lock":15,"flags":15,"sid":{"sat":4,"code":3}},{"P":1059521220,"L":{"i":113394286,"f":29},"D":{"i":1620,"f":145},"cn0":203,"lock":15,"flags":15,"sid":{"sat":21,"code":3}},{"P":1155476619,"L":{"i":95980609,"f":218},"D":{"i":-3427,"f":100},"cn0":170,"lock":15,"flags":15,"sid":{"sat":9,"code":4}},{"P":1026561199,"L":{"i":85392008,"f":15},"D":{"i":-944,"f":96},"cn0":205,"lock":15,"flags":15,"sid":{"sat":20,"code":4}},{"P":1056562773,"L":{"i":87825916,"f":67},"D":{"i":897,"f":88},"cn0":201,"lock":15,"flags":15,"sid":{"sat":11,"code":4}},{"P":1074025812,"L":{"i":89308861,"f":91},"D":{"i":1701,"f":176},"cn0":195,"lock":15,"flags":15,"sid":{"sat":5,"code":4}},{"P":1124746626,"L":{"i":93690596,"f":83},"D":{"i":-1034,"f":57},"cn0":175,"lock":15,"flags":15,"sid":{"sat":4,"code":4}},{"P":1167633701,"L":{"i":121603530,"f":116},"D":{"i":-1502,"f":216},"cn0":200,"lock":15,"flags":15,"sid":{"sat":35,"code":12}},{"P":1241143949,"L":{"i":129259237,"f":205},"D":{"i":-3010,"f":211},"cn0":173,"lock":15,"flags":15,"sid":{"sat":26,"code":12}},{"P":1276204145,"L":{"i":132910617,"f":72},"D":{"i":2249,"f":50},"cn0":161,"lock":15,"flags":15,"sid":{"sat":34,"code":12}},{"P":1201896879,"L":{"i":125171847,"f":225},"D":{"i":-1309,"f":189},"cn0":188,"lock":15,"flags":15,"sid":{"sat":24,"code":12}}]} +{"crc":62356,"length":249,"msg_type":74,"payload":"EDgvEAAAAAAyCEIuYBBN1Z0GCIUmBT2gDw8ZDLMuS0WcczcHSkoGVLkPDwwMRutDR30EbAdn1v45uA8PEwzSf1lH1ENuB2VOCSDBDw8WDGouS0UgkZQFVdwEp9EPDwwNeGQJQs7E8AaL/Pt9wg8PDA7HiR5LsSTlBxs5BKe/Dw8ZDoTCHkcgi3kHQhQE5LwPDwsO/aYrQ4RGDwfeKfnyyw8PGA72Ek9R2q2LCFWZ87idDw8fDrtR+1E8yJ0IWKD3EZYPDyEOr4keSxGrDAbDPAMlyQ8PGRQfqStD5MtoBYrC+qzXDw8YFL3BHkelOLoFex8Dq8IPDwsU","preamble":85,"sender":22963,"header":{"t":{"tow":271530000,"ns_residual":0,"wn":2098},"n_obs":66},"obs":[{"P":1292918830,"L":{"i":134651349,"f":133},"D":{"i":1318,"f":61},"cn0":160,"lock":15,"flags":15,"sid":{"sat":25,"code":12}},{"P":1162555059,"L":{"i":121074588,"f":74},"D":{"i":1610,"f":84},"cn0":185,"lock":15,"flags":15,"sid":{"sat":12,"code":12}},{"P":1195633478,"L":{"i":124519549,"f":103},"D":{"i":-298,"f":57},"cn0":184,"lock":15,"flags":15,"sid":{"sat":19,"code":12}},{"P":1197047762,"L":{"i":124666836,"f":101},"D":{"i":2382,"f":32},"cn0":193,"lock":15,"flags":15,"sid":{"sat":22,"code":12}},{"P":1162554986,"L":{"i":93622560,"f":85},"D":{"i":1244,"f":167},"cn0":209,"lock":15,"flags":15,"sid":{"sat":12,"code":13}},{"P":1107911800,"L":{"i":116442318,"f":139},"D":{"i":-1028,"f":125},"cn0":194,"lock":15,"flags":15,"sid":{"sat":12,"code":14}},{"P":1260292551,"L":{"i":132457649,"f":27},"D":{"i":1081,"f":167},"cn0":191,"lock":15,"flags":15,"sid":{"sat":25,"code":14}},{"P":1193198212,"L":{"i":125405984,"f":66},"D":{"i":1044,"f":228},"cn0":188,"lock":15,"flags":15,"sid":{"sat":11,"code":14}},{"P":1126934269,"L":{"i":118441604,"f":222},"D":{"i":-1751,"f":242},"cn0":203,"lock":15,"flags":15,"sid":{"sat":24,"code":14}},{"P":1364136694,"L":{"i":143371738,"f":85},"D":{"i":-3175,"f":184},"cn0":157,"lock":15,"flags":15,"sid":{"sat":31,"code":14}},{"P":1375424955,"L":{"i":144558140,"f":88},"D":{"i":-2144,"f":17},"cn0":150,"lock":15,"flags":15,"sid":{"sat":33,"code":14}},{"P":1260292527,"L":{"i":101493521,"f":195},"D":{"i":828,"f":37},"cn0":201,"lock":15,"flags":15,"sid":{"sat":25,"code":20}},{"P":1126934815,"L":{"i":90754020,"f":138},"D":{"i":-1342,"f":172},"cn0":215,"lock":15,"flags":15,"sid":{"sat":24,"code":20}},{"P":1193198013,"L":{"i":96090277,"f":123},"D":{"i":799,"f":171},"cn0":194,"lock":15,"flags":15,"sid":{"sat":11,"code":20}}]} +{"crc":12805,"length":62,"msg_type":74,"payload":"EDgvEAAAAAAyCENeE09RNEaMBo6A9pavDw8fFNRjCUKya1EF5ev8984PDwwUk1H7UVYlmgbPl/lpqQ8PIRQ=","preamble":85,"sender":22963,"header":{"t":{"tow":271530000,"ns_residual":0,"wn":2098},"n_obs":67},"obs":[{"P":1364136798,"L":{"i":109856308,"f":142},"D":{"i":-2432,"f":150},"cn0":175,"lock":15,"flags":15,"sid":{"sat":31,"code":20}},{"P":1107911636,"L":{"i":89222066,"f":229},"D":{"i":-789,"f":247},"cn0":206,"lock":15,"flags":15,"sid":{"sat":12,"code":20}},{"P":1375424915,"L":{"i":110765398,"f":207},"D":{"i":-1641,"f":105},"cn0":169,"lock":15,"flags":15,"sid":{"sat":33,"code":20}}]} +{"crc":49809,"length":9,"msg_type":117,"payload":"/wAAAAAAAAAA","preamble":85,"sender":22963,"mask":255,"l1ca_bias":0,"l1p_bias":0,"l2ca_bias":0,"l2p_bias":0} +{"crc":33767,"length":11,"msg_type":258,"payload":"MggQOC8QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271530000,"ns_residual":0,"flags":1} +{"crc":41783,"length":16,"msg_type":259,"payload":"ERA4LxDkBwMZAxkL/smaOw==","preamble":85,"sender":22963,"flags":17,"tow":271530000,"year":2020,"month":3,"day":25,"hours":3,"minutes":25,"seconds":11,"ns":999999998} +{"crc":33161,"length":34,"msg_type":522,"payload":"EDgvENBQCe1l6kJAmnTwE1aSXsBSUw8EL6ExwAECWwQPBg==","preamble":85,"sender":22963,"tow":271530000,"lat":37.8312355323302,"lon":-122.28650377733211,"height":-17.629623655072756,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":65526,"length":22,"msg_type":526,"payload":"EDgvEAQAAAABAAAA/P////EAywIPAg==","preamble":85,"sender":22963,"tow":271530000,"n":4,"e":1,"d":-4,"h_accuracy":241,"v_accuracy":715,"n_sats":15,"flags":2} +{"crc":7715,"length":15,"msg_type":520,"payload":"EDgvEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271530000,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":6287,"length":22,"msg_type":524,"payload":"EDgvEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271530000,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":30592,"length":6,"msg_type":528,"payload":"EDgvEP//","preamble":85,"sender":22963,"tow":271530000,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":40942,"length":4,"msg_type":65535,"payload":"AAUCgA==","preamble":85,"sender":22963,"flags":2147616000} +{"crc":2168,"length":24,"msg_type":72,"payload":"UO0a3iqORMHK1UJhIkRQwc9nFIPvrk1B","preamble":85,"sender":22963,"x":-2694229.735196747,"y":-4264073.519704292,"z":3890655.0240602265} +{"crc":47991,"length":26,"msg_type":23,"payload":"bWFpbgAAAAAAAAAAAAAAAAAAAAAAAAx1AAA=","preamble":85,"sender":22963,"name":"main\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":0,"stack_free":29964} +{"crc":5746,"length":26,"msg_type":23,"payload":"aWRsZQAAAAAAAAAAAAAAAAAAAACKAHwAAAA=","preamble":85,"sender":22963,"name":"idle\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":138,"stack_free":124} +{"crc":41209,"length":26,"msg_type":23,"payload":"cnBtc2cAAAAAAAAAAAAAAAAAAAABACQOAAA=","preamble":85,"sender":22963,"name":"rpmsg\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":1,"stack_free":3620} +{"crc":51784,"length":26,"msg_type":23,"payload":"U0JQAAAAAAAAAAAAAAAAAAAAAAAAAPz/AAA=","preamble":85,"sender":22963,"name":"SBP\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":0,"stack_free":65532} +{"crc":33651,"length":26,"msg_type":23,"payload":"TkFQAAAAAAAAAAAAAAAAAAAAAAAAAASAAAA=","preamble":85,"sender":22963,"name":"NAP\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":0,"stack_free":32772} +{"crc":29877,"length":26,"msg_type":23,"payload":"bWFuYWdlIFBWAAAAAAAAAAAAAAAAACQEAAA=","preamble":85,"sender":22963,"name":"manage PV\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":0,"stack_free":1060} +{"crc":14252,"length":26,"msg_type":23,"payload":"SU1VAAAAAAAAAAAAAAAAAAAAAAAAAPQHAAA=","preamble":85,"sender":22963,"name":"IMU\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":0,"stack_free":2036} +{"crc":18976,"length":26,"msg_type":23,"payload":"SU1VIGF1eAAAAAAAAAAAAAAAAAAAAEwIAAA=","preamble":85,"sender":22963,"name":"IMU aux\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":0,"stack_free":2124} +{"crc":26120,"length":26,"msg_type":23,"payload":"bmRiAAAAAAAAAAAAAAAAAAAAAAAAAFAMAAA=","preamble":85,"sender":22963,"name":"ndb\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":0,"stack_free":3152} +{"crc":42721,"length":26,"msg_type":23,"payload":"TkFQIFRyYWNraW5nAAAAAAAAAAAmAdR3AAA=","preamble":85,"sender":22963,"name":"NAP Tracking\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":294,"stack_free":30676} +{"crc":40082,"length":26,"msg_type":23,"payload":"ZGVjb2RlAAAAAAAAAAAAAAAAAAAIANQGAAA=","preamble":85,"sender":22963,"name":"decode\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":8,"stack_free":1748} +{"crc":22189,"length":26,"msg_type":23,"payload":"bWFuYWdlIGFjcQAAAAAAAAAAAACLAaR3AAA=","preamble":85,"sender":22963,"name":"manage acq\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":395,"stack_free":30628} +{"crc":58531,"length":26,"msg_type":23,"payload":"c3lzdGVtIG1vbml0b3IAAAAAAAAAACwGAAA=","preamble":85,"sender":22963,"name":"system monitor\u0000\u0000\u0000\u0000\u0000\u0000","cpu":0,"stack_free":1580} +{"crc":44438,"length":26,"msg_type":23,"payload":"V2F0Y2hkb2cAAAAAAAAAAAAAAAAAAOQDAAA=","preamble":85,"sender":22963,"name":"Watchdog\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":0,"stack_free":996} +{"crc":46399,"length":26,"msg_type":23,"payload":"c3RhcmxpbmcAAAAAAAAAAAAAAACXAPz/AAA=","preamble":85,"sender":22963,"name":"starling\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":151,"stack_free":65532} +{"crc":57561,"length":26,"msg_type":23,"payload":"bWVfY2FsY19wdnQAAAAAAAAAAAAJAIwjAAA=","preamble":85,"sender":22963,"name":"me_calc_pvt\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":9,"stack_free":9100} +{"crc":38576,"length":26,"msg_type":23,"payload":"UFBTAAAAAAAAAAAAAAAAAAAAAAAAAEgHAAA=","preamble":85,"sender":22963,"name":"PPS\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":0,"stack_free":1864} +{"crc":50933,"length":26,"msg_type":23,"payload":"c3BlY3RydW0gYW5hbHl6ZXIAAAAAANQPAAA=","preamble":85,"sender":22963,"name":"spectrum analyzer\u0000\u0000\u0000","cpu":0,"stack_free":4052} +{"crc":2957,"length":10,"msg_type":181,"payload":"8BbdA/MGSxUJFg==","preamble":85,"sender":22963,"dev_vin":5872,"cpu_vint":989,"cpu_vaux":1779,"cpu_temperature":5451,"fe_temperature":5641} +{"crc":59181,"length":11,"msg_type":258,"payload":"Mgh0OC8QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271530100,"ns_residual":0,"flags":1} +{"crc":15506,"length":16,"msg_type":259,"payload":"EXQ4LxDkBwMZAxkM/uD1BQ==","preamble":85,"sender":22963,"flags":17,"tow":271530100,"year":2020,"month":3,"day":25,"hours":3,"minutes":25,"seconds":12,"ns":99999998} +{"crc":15752,"length":34,"msg_type":522,"payload":"dDgvEJ1E++xl6kJAmsv8E1aSXsAEMVgIS6MxwAECWwQPBg==","preamble":85,"sender":22963,"tow":271530100,"lat":37.83123552578875,"lon":-122.28650378882449,"height":-17.637863656550522,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":64928,"length":22,"msg_type":526,"payload":"dDgvEPr///8KAAAABQAAAPEAywIPAg==","preamble":85,"sender":22963,"tow":271530100,"n":-6,"e":10,"d":5,"h_accuracy":241,"v_accuracy":715,"n_sats":15,"flags":2} +{"crc":12940,"length":15,"msg_type":520,"payload":"dDgvEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271530100,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":57,"length":22,"msg_type":524,"payload":"dDgvEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271530100,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":11833,"length":6,"msg_type":528,"payload":"dDgvEP//","preamble":85,"sender":22963,"tow":271530100,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":19059,"length":11,"msg_type":258,"payload":"MgjYOC8QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271530200,"ns_residual":0,"flags":1} +{"crc":14631,"length":16,"msg_type":259,"payload":"Edg4LxDkBwMZAxkM/sHrCw==","preamble":85,"sender":22963,"flags":17,"tow":271530200,"year":2020,"month":3,"day":25,"hours":3,"minutes":25,"seconds":12,"ns":199999998} +{"crc":41772,"length":34,"msg_type":522,"payload":"2DgvEOb6CO1l6kJAq38MFFaSXsA3KL1thqUxwAECWwQPBg==","preamble":85,"sender":22963,"tow":271530200,"lat":37.83123553217392,"lon":-122.2865038034494,"height":-17.646582468682222,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":32551,"length":22,"msg_type":526,"payload":"2DgvEAcAAAABAAAA//////EAywIPAg==","preamble":85,"sender":22963,"tow":271530200,"n":7,"e":1,"d":-1,"h_accuracy":241,"v_accuracy":715,"n_sats":15,"flags":2} +{"crc":18301,"length":15,"msg_type":520,"payload":"2DgvEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271530200,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":10723,"length":22,"msg_type":524,"payload":"2DgvEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271530200,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":50418,"length":6,"msg_type":528,"payload":"2DgvEP//","preamble":85,"sender":22963,"tow":271530200,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":55000,"length":11,"msg_type":258,"payload":"Mgg8OS8QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271530300,"ns_residual":0,"flags":1} +{"crc":42096,"length":16,"msg_type":259,"payload":"ETw5LxDkBwMZAxkM/qLhEQ==","preamble":85,"sender":22963,"flags":17,"tow":271530300,"year":2020,"month":3,"day":25,"hours":3,"minutes":25,"seconds":12,"ns":299999998} +{"crc":29944,"length":34,"msg_type":522,"payload":"PDkvEAJu/uxl6kJAnfgXFFaSXsDyg7vNnKgxwAECWwQPBg==","preamble":85,"sender":22963,"tow":271530300,"lat":37.83123552726103,"lon":-122.28650381413395,"height":-17.658642633705263,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":57241,"length":22,"msg_type":526,"payload":"PDkvEPn///8FAAAAEwAAAPEAywIPAg==","preamble":85,"sender":22963,"tow":271530300,"n":-7,"e":5,"d":19,"h_accuracy":241,"v_accuracy":715,"n_sats":15,"flags":2} +{"crc":17569,"length":15,"msg_type":520,"payload":"PDkvEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271530300,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":24118,"length":22,"msg_type":524,"payload":"PDkvEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271530300,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":58170,"length":6,"msg_type":528,"payload":"PDkvEP//","preamble":85,"sender":22963,"tow":271530300,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":694,"length":51,"msg_type":1025,"payload":"BkdMTyBMMk9GIE1FIDEgWysxMzQxbXNdIGxvdyBDTjAgdG9vIGxvbmcsIGRyb3BwaW5n","preamble":85,"sender":22963,"level":6,"text":"GLO L2OF ME 1 [+1341ms] low CN0 too long, dropping"} +{"crc":57044,"length":237,"msg_type":97,"payload":"BQDUFQCyAgC5HwChAAAAAAAAGQDYDADOHQDTEgDNAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwLLGQHMDAG6HwGYEgHEHQHCAAAABQHBAAAAAAAAAAAAAAAAZAPVYgOzZgOuZQPQXQPQAAAAagO2aAPLYgSrZgTNAAAAZATJZQTDaAS8AAAAagSvIwzIGgytIgyfGAy8GQyhDAy5Ewy5FgzBAAAADA3RAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADA7CAAAAGQ6/Cw68GA7LAAAAHw6dIQ6XGRTJGBTXCxTCHxSuDBTOAAAAIRSpAAAA","preamble":85,"sender":22963,"states":[{"mesid":{"sat":5,"code":0},"cn0":212},{"mesid":{"sat":21,"code":0},"cn0":178},{"mesid":{"sat":2,"code":0},"cn0":185},{"mesid":{"sat":31,"code":0},"cn0":161},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":25,"code":0},"cn0":216},{"mesid":{"sat":12,"code":0},"cn0":206},{"mesid":{"sat":29,"code":0},"cn0":211},{"mesid":{"sat":18,"code":0},"cn0":205},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":131,"code":2},"cn0":203},{"mesid":{"sat":25,"code":1},"cn0":204},{"mesid":{"sat":12,"code":1},"cn0":186},{"mesid":{"sat":31,"code":1},"cn0":152},{"mesid":{"sat":18,"code":1},"cn0":196},{"mesid":{"sat":29,"code":1},"cn0":194},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":5,"code":1},"cn0":193},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":100,"code":3},"cn0":213},{"mesid":{"sat":98,"code":3},"cn0":179},{"mesid":{"sat":102,"code":3},"cn0":174},{"mesid":{"sat":101,"code":3},"cn0":208},{"mesid":{"sat":93,"code":3},"cn0":208},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":106,"code":3},"cn0":182},{"mesid":{"sat":104,"code":3},"cn0":203},{"mesid":{"sat":98,"code":4},"cn0":171},{"mesid":{"sat":102,"code":4},"cn0":205},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":100,"code":4},"cn0":201},{"mesid":{"sat":101,"code":4},"cn0":195},{"mesid":{"sat":104,"code":4},"cn0":188},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":106,"code":4},"cn0":175},{"mesid":{"sat":35,"code":12},"cn0":200},{"mesid":{"sat":26,"code":12},"cn0":173},{"mesid":{"sat":34,"code":12},"cn0":159},{"mesid":{"sat":24,"code":12},"cn0":188},{"mesid":{"sat":25,"code":12},"cn0":161},{"mesid":{"sat":12,"code":12},"cn0":185},{"mesid":{"sat":19,"code":12},"cn0":185},{"mesid":{"sat":22,"code":12},"cn0":193},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":12,"code":13},"cn0":209},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":12,"code":14},"cn0":194},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":25,"code":14},"cn0":191},{"mesid":{"sat":11,"code":14},"cn0":188},{"mesid":{"sat":24,"code":14},"cn0":203},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":31,"code":14},"cn0":157},{"mesid":{"sat":33,"code":14},"cn0":151},{"mesid":{"sat":25,"code":20},"cn0":201},{"mesid":{"sat":24,"code":20},"cn0":215},{"mesid":{"sat":11,"code":20},"cn0":194},{"mesid":{"sat":31,"code":20},"cn0":174},{"mesid":{"sat":12,"code":20},"cn0":206},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":33,"code":20},"cn0":169},{"mesid":{"sat":0,"code":0},"cn0":0}]} +{"crc":36740,"length":11,"msg_type":258,"payload":"MgigOS8QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271530400,"ns_residual":0,"flags":1} +{"crc":31772,"length":16,"msg_type":259,"payload":"EaA5LxDkBwMZAxkM/oPXFw==","preamble":85,"sender":22963,"flags":17,"tow":271530400,"year":2020,"month":3,"day":25,"hours":3,"minutes":25,"seconds":12,"ns":399999998} +{"crc":3110,"length":34,"msg_type":522,"payload":"oDkvENkbBe1l6kJA88cvFFaSXsCvETJpZKsxwAECWwQPBg==","preamble":85,"sender":22963,"tow":271530400,"lat":37.83123553037121,"lon":-122.28650383630865,"height":-17.669500899051567,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":23658,"length":22,"msg_type":526,"payload":"oDkvEP/////7/////f////EAywIPAg==","preamble":85,"sender":22963,"tow":271530400,"n":-1,"e":-5,"d":-3,"h_accuracy":241,"v_accuracy":715,"n_sats":15,"flags":2} +{"crc":58062,"length":15,"msg_type":520,"payload":"oDkvEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271530400,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":40967,"length":22,"msg_type":524,"payload":"oDkvEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271530400,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":9853,"length":6,"msg_type":528,"payload":"oDkvEP//","preamble":85,"sender":22963,"tow":271530400,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":49809,"length":9,"msg_type":117,"payload":"/wAAAAAAAAAA","preamble":85,"sender":22963,"mask":255,"l1ca_bias":0,"l1p_bias":0,"l2ca_bias":0,"l2p_bias":0} +{"crc":50000,"length":11,"msg_type":258,"payload":"MggEOi8QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271530500,"ns_residual":0,"flags":1} +{"crc":52056,"length":16,"msg_type":259,"payload":"EQQ6LxDkBwMZAxkM/mTNHQ==","preamble":85,"sender":22963,"flags":17,"tow":271530500,"year":2020,"month":3,"day":25,"hours":3,"minutes":25,"seconds":12,"ns":499999998} +{"crc":38475,"length":34,"msg_type":522,"payload":"BDovEDKkFe1l6kJAXShHFFaSXsDuz63GHa0xwAECWwQPBg==","preamble":85,"sender":22963,"tow":271530500,"lat":37.831235538069805,"lon":-122.28650385807983,"height":-17.67623559707129,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":19698,"length":22,"msg_type":526,"payload":"BDovEAwAAAD2////7/////EAywIPAg==","preamble":85,"sender":22963,"tow":271530500,"n":12,"e":-10,"d":-17,"h_accuracy":241,"v_accuracy":715,"n_sats":15,"flags":2} +{"crc":15833,"length":15,"msg_type":520,"payload":"BDovEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271530500,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":47429,"length":22,"msg_type":524,"payload":"BDovEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271530500,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":12070,"length":6,"msg_type":528,"payload":"BDovEP//","preamble":85,"sender":22963,"tow":271530500,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":36453,"length":11,"msg_type":258,"payload":"MghoOi8QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271530600,"ns_residual":0,"flags":1} +{"crc":34262,"length":16,"msg_type":259,"payload":"EWg6LxDkBwMZAxkM/kXDIw==","preamble":85,"sender":22963,"flags":17,"tow":271530600,"year":2020,"month":3,"day":25,"hours":3,"minutes":25,"seconds":12,"ns":599999998} +{"crc":39928,"length":34,"msg_type":522,"payload":"aDovEFfn9uxl6kJAxilJFFaSXsD8cm1NSq8xwAECWwQPBg==","preamble":85,"sender":22963,"tow":271530600,"lat":37.83123552375644,"lon":-122.2865038599476,"height":-17.68472751543139,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":36789,"length":22,"msg_type":526,"payload":"aDovEAEAAAADAAAAAAAAAPEAywIPAg==","preamble":85,"sender":22963,"tow":271530600,"n":1,"e":3,"d":0,"h_accuracy":241,"v_accuracy":715,"n_sats":15,"flags":2} +{"crc":13875,"length":15,"msg_type":520,"payload":"aDovEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271530600,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":65360,"length":22,"msg_type":524,"payload":"aDovEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271530600,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":31709,"length":6,"msg_type":528,"payload":"aDovEP//","preamble":85,"sender":22963,"tow":271530600,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":40642,"length":34,"msg_type":30583,"payload":"gwLpOS8QPwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"sid":{"sat":131,"code":2},"tow":271530473,"message_type":63,"data":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]} +{"crc":2756,"length":11,"msg_type":258,"payload":"MgjMOi8QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271530700,"ns_residual":0,"flags":1} +{"crc":21377,"length":16,"msg_type":259,"payload":"Ecw6LxDkBwMZAxkM/ia5KQ==","preamble":85,"sender":22963,"flags":17,"tow":271530700,"year":2020,"month":3,"day":25,"hours":3,"minutes":25,"seconds":12,"ns":699999998} +{"crc":32625,"length":34,"msg_type":522,"payload":"zDovEDI73Oxl6kJApsFQFFaSXsACbAzm4LExwAECWwQPBg==","preamble":85,"sender":22963,"tow":271530700,"lat":37.83123551133612,"lon":-122.28650386701938,"height":-17.6948379307105,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":62229,"length":22,"msg_type":526,"payload":"zDovEP3///8JAAAAFAAAAPEAywIPAg==","preamble":85,"sender":22963,"tow":271530700,"n":-3,"e":9,"d":20,"h_accuracy":241,"v_accuracy":715,"n_sats":15,"flags":2} +{"crc":25735,"length":15,"msg_type":520,"payload":"zDovEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271530700,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":34857,"length":22,"msg_type":524,"payload":"zDovEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271530700,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":40020,"length":6,"msg_type":528,"payload":"zDovEP//","preamble":85,"sender":22963,"tow":271530700,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":60526,"length":11,"msg_type":258,"payload":"MggwOy8QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271530800,"ns_residual":0,"flags":1} +{"crc":16759,"length":16,"msg_type":259,"payload":"ETA7LxDkBwMZAxkM/gevLw==","preamble":85,"sender":22963,"flags":17,"tow":271530800,"year":2020,"month":3,"day":25,"hours":3,"minutes":25,"seconds":12,"ns":799999998} +{"crc":14435,"length":34,"msg_type":522,"payload":"MDsvEDIB0exl6kJAODFaFFaSXsDWtdWbXLQxwAECWwQPBg==","preamble":85,"sender":22963,"tow":271530800,"lat":37.83123550610834,"lon":-122.28650387580717,"height":-17.704538097071996,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":40870,"length":22,"msg_type":526,"payload":"MDsvEAIAAAAHAAAA/f////EAywIPAg==","preamble":85,"sender":22963,"tow":271530800,"n":2,"e":7,"d":-3,"h_accuracy":241,"v_accuracy":715,"n_sats":15,"flags":2} +{"crc":3732,"length":15,"msg_type":520,"payload":"MDsvEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271530800,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":7193,"length":22,"msg_type":524,"payload":"MDsvEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271530800,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":44122,"length":6,"msg_type":528,"payload":"MDsvEP//","preamble":85,"sender":22963,"tow":271530800,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":38053,"length":237,"msg_type":97,"payload":"BQDUFQCyAgC5HwCjAAAAAAAAGQDYDADOHQDTEgDNAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwLMGQHMDAG7HwGZEgHEHQHCAAAABQHBAAAAAAAAAAAAAAAACwPVCQOzFAOuBQPRCgPQAAAABAO2FQPLCQSrFATNAAAACwTJBQTDAAS8AAAABASvIwzIGgysIgyfGAy8GQyhDAy4Ewy5FgzBAAAADA3RAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADA7CAAAAGQ6/Cw68GA7LAAAAHw6dIQ6YGRTJGBTXCxTCHxSuDBTOAAAAIRSpAAAA","preamble":85,"sender":22963,"states":[{"mesid":{"sat":5,"code":0},"cn0":212},{"mesid":{"sat":21,"code":0},"cn0":178},{"mesid":{"sat":2,"code":0},"cn0":185},{"mesid":{"sat":31,"code":0},"cn0":163},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":25,"code":0},"cn0":216},{"mesid":{"sat":12,"code":0},"cn0":206},{"mesid":{"sat":29,"code":0},"cn0":211},{"mesid":{"sat":18,"code":0},"cn0":205},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":131,"code":2},"cn0":204},{"mesid":{"sat":25,"code":1},"cn0":204},{"mesid":{"sat":12,"code":1},"cn0":187},{"mesid":{"sat":31,"code":1},"cn0":153},{"mesid":{"sat":18,"code":1},"cn0":196},{"mesid":{"sat":29,"code":1},"cn0":194},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":5,"code":1},"cn0":193},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":11,"code":3},"cn0":213},{"mesid":{"sat":9,"code":3},"cn0":179},{"mesid":{"sat":20,"code":3},"cn0":174},{"mesid":{"sat":5,"code":3},"cn0":209},{"mesid":{"sat":10,"code":3},"cn0":208},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":4,"code":3},"cn0":182},{"mesid":{"sat":21,"code":3},"cn0":203},{"mesid":{"sat":9,"code":4},"cn0":171},{"mesid":{"sat":20,"code":4},"cn0":205},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":11,"code":4},"cn0":201},{"mesid":{"sat":5,"code":4},"cn0":195},{"mesid":{"sat":0,"code":4},"cn0":188},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":4,"code":4},"cn0":175},{"mesid":{"sat":35,"code":12},"cn0":200},{"mesid":{"sat":26,"code":12},"cn0":172},{"mesid":{"sat":34,"code":12},"cn0":159},{"mesid":{"sat":24,"code":12},"cn0":188},{"mesid":{"sat":25,"code":12},"cn0":161},{"mesid":{"sat":12,"code":12},"cn0":184},{"mesid":{"sat":19,"code":12},"cn0":185},{"mesid":{"sat":22,"code":12},"cn0":193},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":12,"code":13},"cn0":209},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":12,"code":14},"cn0":194},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":25,"code":14},"cn0":191},{"mesid":{"sat":11,"code":14},"cn0":188},{"mesid":{"sat":24,"code":14},"cn0":203},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":31,"code":14},"cn0":157},{"mesid":{"sat":33,"code":14},"cn0":152},{"mesid":{"sat":25,"code":20},"cn0":201},{"mesid":{"sat":24,"code":20},"cn0":215},{"mesid":{"sat":11,"code":20},"cn0":194},{"mesid":{"sat":31,"code":20},"cn0":174},{"mesid":{"sat":12,"code":20},"cn0":206},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":33,"code":20},"cn0":169},{"mesid":{"sat":0,"code":0},"cn0":0}]} +{"crc":34187,"length":128,"msg_type":151,"payload":"AgAaHQUAKzUMAFEtFQB9GRkAbUYaAKEBHQChNx8AlQ4EAxUWBQMyIQkDXw4KA3EpCwOYJQwDqgMTAyIHFAMMMRUDlSUMDJQpEwwjIBQMDwIWDEMkGAyCIxkMnQ4aDGcVIgyOESMMIi0LDosyDA4PPBgObDYZDpcpHw5VESEOIA8=","preamble":85,"sender":22963,"azel":[{"sid":{"sat":2,"code":0},"az":26,"el":29},{"sid":{"sat":5,"code":0},"az":43,"el":53},{"sid":{"sat":12,"code":0},"az":81,"el":45},{"sid":{"sat":21,"code":0},"az":125,"el":25},{"sid":{"sat":25,"code":0},"az":109,"el":70},{"sid":{"sat":26,"code":0},"az":161,"el":1},{"sid":{"sat":29,"code":0},"az":161,"el":55},{"sid":{"sat":31,"code":0},"az":149,"el":14},{"sid":{"sat":4,"code":3},"az":21,"el":22},{"sid":{"sat":5,"code":3},"az":50,"el":33},{"sid":{"sat":9,"code":3},"az":95,"el":14},{"sid":{"sat":10,"code":3},"az":113,"el":41},{"sid":{"sat":11,"code":3},"az":152,"el":37},{"sid":{"sat":12,"code":3},"az":170,"el":3},{"sid":{"sat":19,"code":3},"az":34,"el":7},{"sid":{"sat":20,"code":3},"az":12,"el":49},{"sid":{"sat":21,"code":3},"az":149,"el":37},{"sid":{"sat":12,"code":12},"az":148,"el":41},{"sid":{"sat":19,"code":12},"az":35,"el":32},{"sid":{"sat":20,"code":12},"az":15,"el":2},{"sid":{"sat":22,"code":12},"az":67,"el":36},{"sid":{"sat":24,"code":12},"az":130,"el":35},{"sid":{"sat":25,"code":12},"az":157,"el":14},{"sid":{"sat":26,"code":12},"az":103,"el":21},{"sid":{"sat":34,"code":12},"az":142,"el":17},{"sid":{"sat":35,"code":12},"az":34,"el":45},{"sid":{"sat":11,"code":14},"az":139,"el":50},{"sid":{"sat":12,"code":14},"az":15,"el":60},{"sid":{"sat":24,"code":14},"az":108,"el":54},{"sid":{"sat":25,"code":14},"az":151,"el":41},{"sid":{"sat":31,"code":14},"az":85,"el":17},{"sid":{"sat":33,"code":14},"az":32,"el":15}]} +{"crc":26831,"length":11,"msg_type":258,"payload":"MgiUOy8QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271530900,"ns_residual":0,"flags":1} +{"crc":61506,"length":16,"msg_type":259,"payload":"EZQ7LxDkBwMZAxkM/uikNQ==","preamble":85,"sender":22963,"flags":17,"tow":271530900,"year":2020,"month":3,"day":25,"hours":3,"minutes":25,"seconds":12,"ns":899999998} +{"crc":51994,"length":34,"msg_type":522,"payload":"lDsvEAOsyOxl6kJA7s9xFFaSXsAy4f8ubbYxwAECWwQPBg==","preamble":85,"sender":22963,"tow":271530900,"lat":37.831235502228104,"lon":-122.28650389780498,"height":-17.7126035093981,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":46590,"length":22,"msg_type":526,"payload":"lDsvEAMAAAACAAAAEwAAAPEAywIPAg==","preamble":85,"sender":22963,"tow":271530900,"n":3,"e":2,"d":19,"h_accuracy":241,"v_accuracy":715,"n_sats":15,"flags":2} +{"crc":23584,"length":15,"msg_type":520,"payload":"lDsvEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271530900,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":27488,"length":22,"msg_type":524,"payload":"lDsvEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271530900,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":19411,"length":6,"msg_type":528,"payload":"lDsvEP//","preamble":85,"sender":22963,"tow":271530900,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":20468,"length":249,"msg_type":74,"payload":"+DsvEAAAAAAyCECMbbQ+LB+XBpg//5fUDw8FAKHHEUUcXkIHknoIDrIPDxUA7lL4RT6ZWgfdU/bEuQ8PAgDhfQNJNX2sB1Fv/keiDw8fAACwKD1xh20GIJD7kNgPDxkAIQu8QNG7zQbHZPR5zg8PDACbGs0+E7eZBurLBRXUDw8dADawKD0SOwIF4or85swPDxkBtgq8QA8yTQWP8/aPuw8PDAHmfQNJUMX6BY3F/s6ZDw8fAUoazT5DqSQFO4IENMIPDx0BSm20PgqkIgXWaf/WwQ8PBQH4svk+bP26Bu+CBAjVDw8LA7LN30SlDlsHZMrudLMPDwkD","preamble":85,"sender":22963,"header":{"t":{"tow":271531000,"ns_residual":0,"wn":2098},"n_obs":64},"obs":[{"P":1052011916,"L":{"i":110567212,"f":152},"D":{"i":-193,"f":151},"cn0":212,"lock":15,"flags":15,"sid":{"sat":5,"code":0}},{"P":1158793121,"L":{"i":121789980,"f":146},"D":{"i":2170,"f":14},"cn0":178,"lock":15,"flags":15,"sid":{"sat":21,"code":0}},{"P":1173902062,"L":{"i":123377982,"f":221},"D":{"i":-2477,"f":196},"cn0":185,"lock":15,"flags":15,"sid":{"sat":2,"code":0}},{"P":1224965601,"L":{"i":128744757,"f":81},"D":{"i":-401,"f":71},"cn0":162,"lock":15,"flags":15,"sid":{"sat":31,"code":0}},{"P":1026076672,"L":{"i":107841393,"f":32},"D":{"i":-1136,"f":144},"cn0":216,"lock":15,"flags":15,"sid":{"sat":25,"code":0}},{"P":1086065441,"L":{"i":114146257,"f":199},"D":{"i":-2972,"f":121},"cn0":206,"lock":15,"flags":15,"sid":{"sat":12,"code":0}},{"P":1053629083,"L":{"i":110737171,"f":234},"D":{"i":1483,"f":21},"cn0":212,"lock":15,"flags":15,"sid":{"sat":29,"code":0}},{"P":1026076726,"L":{"i":84032274,"f":226},"D":{"i":-886,"f":230},"cn0":204,"lock":15,"flags":15,"sid":{"sat":25,"code":1}},{"P":1086065334,"L":{"i":88945167,"f":143},"D":{"i":-2317,"f":143},"cn0":187,"lock":15,"flags":15,"sid":{"sat":12,"code":1}},{"P":1224965606,"L":{"i":100320592,"f":141},"D":{"i":-315,"f":206},"cn0":153,"lock":15,"flags":15,"sid":{"sat":31,"code":1}},{"P":1053629002,"L":{"i":86288707,"f":59},"D":{"i":1154,"f":52},"cn0":194,"lock":15,"flags":15,"sid":{"sat":29,"code":1}},{"P":1052011850,"L":{"i":86156298,"f":214},"D":{"i":-151,"f":214},"cn0":193,"lock":15,"flags":15,"sid":{"sat":5,"code":1}},{"P":1056551672,"L":{"i":112917868,"f":239},"D":{"i":1154,"f":8},"cn0":213,"lock":15,"flags":15,"sid":{"sat":11,"code":3}},{"P":1155517874,"L":{"i":123408037,"f":100},"D":{"i":-4406,"f":116},"cn0":179,"lock":15,"flags":15,"sid":{"sat":9,"code":3}}]} +{"crc":30296,"length":249,"msg_type":74,"payload":"+DsvEAAAAAAyCEGGPzA9q0aLBqFE+4WtDw8UA14EBEA+EdgGUo0IQNEPDwUDy6BsPiC3pwbPE/Tm0A8PCgMEdQpDhxUuBw7Q+gu2Dw8EA53HJj8aPMIGcVUGd8sPDxUDxc3fRKaZuAW+nvI4qw8PCQTzQDA9N/4WBXNR/OnNDw8UBBa0+T57GjwFgIEDfckPDwsEcAUEQBe4UgXUpgb7xA8PBQT0dQpD7Z6VBYH4+2ivDw8EBHHlmEWniz8H1SX6TsgPDyMMbMv6SaditAcLQPQRrA8PGgwbABFMUQXsB2/JCM2fDw8iDMyuo0el/XUHc+L6xbwPDxgM","preamble":85,"sender":22963,"header":{"t":{"tow":271531000,"ns_residual":0,"wn":2098},"n_obs":65},"obs":[{"P":1026572166,"L":{"i":109790891,"f":161},"D":{"i":-1212,"f":133},"cn0":173,"lock":15,"flags":15,"sid":{"sat":20,"code":3}},{"P":1074005086,"L":{"i":114823486,"f":82},"D":{"i":2189,"f":64},"cn0":209,"lock":15,"flags":15,"sid":{"sat":5,"code":3}},{"P":1047306443,"L":{"i":111654688,"f":207},"D":{"i":-3053,"f":230},"cn0":208,"lock":15,"flags":15,"sid":{"sat":10,"code":3}},{"P":1124758788,"L":{"i":120460679,"f":14},"D":{"i":-1328,"f":11},"cn0":182,"lock":15,"flags":15,"sid":{"sat":4,"code":3}},{"P":1059506077,"L":{"i":113392666,"f":113},"D":{"i":1621,"f":119},"cn0":203,"lock":15,"flags":15,"sid":{"sat":21,"code":3}},{"P":1155517893,"L":{"i":95984038,"f":190},"D":{"i":-3426,"f":56},"cn0":171,"lock":15,"flags":15,"sid":{"sat":9,"code":4}},{"P":1026572531,"L":{"i":85392951,"f":115},"D":{"i":-943,"f":233},"cn0":205,"lock":15,"flags":15,"sid":{"sat":20,"code":4}},{"P":1056551958,"L":{"i":87825019,"f":128},"D":{"i":897,"f":125},"cn0":201,"lock":15,"flags":15,"sid":{"sat":11,"code":4}},{"P":1074005360,"L":{"i":89307159,"f":212},"D":{"i":1702,"f":251},"cn0":196,"lock":15,"flags":15,"sid":{"sat":5,"code":4}},{"P":1124759028,"L":{"i":93691629,"f":129},"D":{"i":-1032,"f":104},"cn0":175,"lock":15,"flags":15,"sid":{"sat":4,"code":4}},{"P":1167648113,"L":{"i":121605031,"f":213},"D":{"i":-1499,"f":78},"cn0":200,"lock":15,"flags":15,"sid":{"sat":35,"code":12}},{"P":1241172844,"L":{"i":129262247,"f":11},"D":{"i":-3008,"f":17},"cn0":172,"lock":15,"flags":15,"sid":{"sat":26,"code":12}},{"P":1276182555,"L":{"i":132908369,"f":111},"D":{"i":2249,"f":205},"cn0":159,"lock":15,"flags":15,"sid":{"sat":34,"code":12}},{"P":1201909452,"L":{"i":125173157,"f":115},"D":{"i":-1310,"f":197},"cn0":188,"lock":15,"flags":15,"sid":{"sat":24,"code":12}}]} +{"crc":9078,"length":249,"msg_type":74,"payload":"+DsvEAAAAAAyCELQLhBNsJgGCAknBQuhDw8ZDFfySkVSbTcHGkwGCbgPDwwMbvZDR6cFbAdL1v7TuQ8PEwxrJllHhjpuBwBPCUbBDw8WDAPySkVDjJQFQd4EOdAPDwwNsIoJQtPI8AZB/PvGwg8PDA6bYR5LdyDlB9U7BBa/Dw8ZDrabHkcLh3kHnRUEkrwPDwsOCOgrQ1tNDwdXKvmZyw8PGA79iE9RP7qLCKWZ826dDw8fDlGh+1GY0J0I46T3WZgPDyEOfWEeS9WnDAY+PAPoyQ8PGRQw6itDIdFoBdDE+gjXDw8YFOyaHkeFNboFCSAD7MIPDwsU","preamble":85,"sender":22963,"header":{"t":{"tow":271531000,"ns_residual":0,"wn":2098},"n_obs":66},"obs":[{"P":1292906192,"L":{"i":134650032,"f":9},"D":{"i":1319,"f":11},"cn0":161,"lock":15,"flags":15,"sid":{"sat":25,"code":12}},{"P":1162539607,"L":{"i":121072978,"f":26},"D":{"i":1612,"f":9},"cn0":184,"lock":15,"flags":15,"sid":{"sat":12,"code":12}},{"P":1195636334,"L":{"i":124519847,"f":75},"D":{"i":-298,"f":211},"cn0":185,"lock":15,"flags":15,"sid":{"sat":19,"code":12}},{"P":1197024875,"L":{"i":124664454,"f":0},"D":{"i":2383,"f":70},"cn0":193,"lock":15,"flags":15,"sid":{"sat":22,"code":12}},{"P":1162539523,"L":{"i":93621315,"f":65},"D":{"i":1246,"f":57},"cn0":208,"lock":15,"flags":15,"sid":{"sat":12,"code":13}},{"P":1107921584,"L":{"i":116443347,"f":65},"D":{"i":-1028,"f":198},"cn0":194,"lock":15,"flags":15,"sid":{"sat":12,"code":14}},{"P":1260282267,"L":{"i":132456567,"f":213},"D":{"i":1083,"f":22},"cn0":191,"lock":15,"flags":15,"sid":{"sat":25,"code":14}},{"P":1193188278,"L":{"i":125404939,"f":157},"D":{"i":1045,"f":146},"cn0":188,"lock":15,"flags":15,"sid":{"sat":11,"code":14}},{"P":1126950920,"L":{"i":118443355,"f":87},"D":{"i":-1750,"f":153},"cn0":203,"lock":15,"flags":15,"sid":{"sat":24,"code":14}},{"P":1364166909,"L":{"i":143374911,"f":165},"D":{"i":-3175,"f":110},"cn0":157,"lock":15,"flags":15,"sid":{"sat":31,"code":14}},{"P":1375445329,"L":{"i":144560280,"f":227},"D":{"i":-2140,"f":89},"cn0":152,"lock":15,"flags":15,"sid":{"sat":33,"code":14}},{"P":1260282237,"L":{"i":101492693,"f":62},"D":{"i":828,"f":232},"cn0":201,"lock":15,"flags":15,"sid":{"sat":25,"code":20}},{"P":1126951472,"L":{"i":90755361,"f":208},"D":{"i":-1340,"f":8},"cn0":215,"lock":15,"flags":15,"sid":{"sat":24,"code":20}},{"P":1193188076,"L":{"i":96089477,"f":9},"D":{"i":800,"f":236},"cn0":194,"lock":15,"flags":15,"sid":{"sat":11,"code":20}}]} +{"crc":42991,"length":62,"msg_type":74,"payload":"+DsvEAAAAAAyCENOiU9RtE+MBhF/9oGuDw8fFBCKCULHblEFH+38ms4PDwwUJ6H7Ub4rmgb2mfmqqQ8PIRQ=","preamble":85,"sender":22963,"header":{"t":{"tow":271531000,"ns_residual":0,"wn":2098},"n_obs":67},"obs":[{"P":1364166990,"L":{"i":109858740,"f":17},"D":{"i":-2433,"f":129},"cn0":174,"lock":15,"flags":15,"sid":{"sat":31,"code":20}},{"P":1107921424,"L":{"i":89222855,"f":31},"D":{"i":-787,"f":154},"cn0":206,"lock":15,"flags":15,"sid":{"sat":12,"code":20}},{"P":1375445287,"L":{"i":110767038,"f":246},"D":{"i":-1639,"f":170},"cn0":169,"lock":15,"flags":15,"sid":{"sat":33,"code":20}}]} +{"crc":49809,"length":9,"msg_type":117,"payload":"/wAAAAAAAAAA","preamble":85,"sender":22963,"mask":255,"l1ca_bias":0,"l1p_bias":0,"l2ca_bias":0,"l2p_bias":0} +{"crc":9722,"length":11,"msg_type":258,"payload":"Mgj4Oy8QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271531000,"ns_residual":0,"flags":1} +{"crc":36106,"length":16,"msg_type":259,"payload":"Efg7LxDkBwMZAxkM/smaOw==","preamble":85,"sender":22963,"flags":17,"tow":271531000,"year":2020,"month":3,"day":25,"hours":3,"minutes":25,"seconds":12,"ns":999999998} +{"crc":17790,"length":34,"msg_type":522,"payload":"+DsvEPgI0Oxl6kJAHlSbFFaSXsA8n3hVJbkxwAECWwQPBg==","preamble":85,"sender":22963,"tow":271531000,"lat":37.83123550565682,"lon":-122.2865039364701,"height":-17.72322591967462,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":10152,"length":22,"msg_type":526,"payload":"+DsvEP/////8////DQAAAPEAywIPAg==","preamble":85,"sender":22963,"tow":271531000,"n":-1,"e":-4,"d":13,"h_accuracy":241,"v_accuracy":715,"n_sats":15,"flags":2} +{"crc":22474,"length":15,"msg_type":520,"payload":"+DsvEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271531000,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":11637,"length":22,"msg_type":524,"payload":"+DsvEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271531000,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":7976,"length":6,"msg_type":528,"payload":"+DsvEP//","preamble":85,"sender":22963,"tow":271531000,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":40942,"length":4,"msg_type":65535,"payload":"AAUCgA==","preamble":85,"sender":22963,"flags":2147616000} +{"crc":2168,"length":24,"msg_type":72,"payload":"UO0a3iqORMHK1UJhIkRQwc9nFIPvrk1B","preamble":85,"sender":22963,"x":-2694229.735196747,"y":-4264073.519704292,"z":3890655.0240602265} +{"crc":26179,"length":11,"msg_type":258,"payload":"MghcPC8QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271531100,"ns_residual":0,"flags":1} +{"crc":53559,"length":16,"msg_type":259,"payload":"EVw8LxDkBwMZAxkN/uD1BQ==","preamble":85,"sender":22963,"flags":17,"tow":271531100,"year":2020,"month":3,"day":25,"hours":3,"minutes":25,"seconds":13,"ns":99999998} +{"crc":35494,"length":34,"msg_type":522,"payload":"XDwvEE4b5exl6kJAecu2FFaSXsBzPFjf/LsxwAECWwQPBg==","preamble":85,"sender":22963,"tow":271531100,"lat":37.83123551546906,"lon":-122.28650396205002,"height":-17.73432727722361,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":21337,"length":22,"msg_type":526,"payload":"XDwvEAUAAAAHAAAA+/////EAywIPAg==","preamble":85,"sender":22963,"tow":271531100,"n":5,"e":7,"d":-5,"h_accuracy":241,"v_accuracy":715,"n_sats":15,"flags":2} +{"crc":30072,"length":15,"msg_type":520,"payload":"XDwvEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271531100,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":21388,"length":22,"msg_type":524,"payload":"XDwvEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271531100,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":40821,"length":6,"msg_type":528,"payload":"XDwvEP//","preamble":85,"sender":22963,"tow":271531100,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":16159,"length":11,"msg_type":258,"payload":"MgjAPC8QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271531200,"ns_residual":0,"flags":1} +{"crc":1820,"length":16,"msg_type":259,"payload":"EcA8LxDkBwMZAxkN/sHrCw==","preamble":85,"sender":22963,"flags":17,"tow":271531200,"year":2020,"month":3,"day":25,"hours":3,"minutes":25,"seconds":13,"ns":199999998} +{"crc":38079,"length":34,"msg_type":522,"payload":"wDwvEJ+36uxl6kJArK7qFFaSXsC2ldfGr74xwAECWwQPBg==","preamble":85,"sender":22963,"tow":271531200,"lat":37.831235518081705,"lon":-122.28650401037402,"height":-17.744869640000353,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":50137,"length":22,"msg_type":526,"payload":"wDwvEAAAAAD2////AgAAAPEAywIPAg==","preamble":85,"sender":22963,"tow":271531200,"n":0,"e":-10,"d":2,"h_accuracy":241,"v_accuracy":715,"n_sats":15,"flags":2} +{"crc":54039,"length":15,"msg_type":520,"payload":"wDwvEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271531200,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":44477,"length":22,"msg_type":524,"payload":"wDwvEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271531200,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":23090,"length":6,"msg_type":528,"payload":"wDwvEP//","preamble":85,"sender":22963,"tow":271531200,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":41908,"length":11,"msg_type":258,"payload":"MggkPS8QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271531300,"ns_residual":0,"flags":1} +{"crc":39499,"length":16,"msg_type":259,"payload":"ESQ9LxDkBwMZAxkN/qLhEQ==","preamble":85,"sender":22963,"flags":17,"tow":271531300,"year":2020,"month":3,"day":25,"hours":3,"minutes":25,"seconds":13,"ns":299999998} +{"crc":2883,"length":34,"msg_type":522,"payload":"JD0vEAnD1+xl6kJA+yAKFVaSXsDhBzgltMExwAECWwQPBg==","preamble":85,"sender":22963,"tow":271531300,"lat":37.8312355092549,"lon":-122.28650403966087,"height":-17.75665505044879,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":36440,"length":22,"msg_type":526,"payload":"JD0vEPr///8DAAAAEQAAAPEAywIPAg==","preamble":85,"sender":22963,"tow":271531300,"n":-6,"e":3,"d":17,"h_accuracy":241,"v_accuracy":715,"n_sats":15,"flags":2} +{"crc":53451,"length":15,"msg_type":520,"payload":"JD0vEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271531300,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":55912,"length":22,"msg_type":524,"payload":"JD0vEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271531300,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":32250,"length":6,"msg_type":528,"payload":"JD0vEP//","preamble":85,"sender":22963,"tow":271531300,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":49321,"length":237,"msg_type":97,"payload":"BQDUFQCyAgC5HwCiAAAAAAAAGQDZDADPHQDUEgDNAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwLMGQHMDAG7HwGYEgHEHQHCAAAABQHBAAAAAAAAAAAAAAAAZAPVYgOzZgOtZQPRXQPQAAAAagO2aAPLYgSrZgTNXQRIZATJZQTEaAS8AAAAagSuIwzIGgysIgyeGAy8GQyhDAy5Ewy5FgzBAAAADA3QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADA7DAAAAGQ7ACw69GA7MAAAAHw6eIQ6YGRTJGBTXCxTCHxSvDBTOAAAAIRSpAAAA","preamble":85,"sender":22963,"states":[{"mesid":{"sat":5,"code":0},"cn0":212},{"mesid":{"sat":21,"code":0},"cn0":178},{"mesid":{"sat":2,"code":0},"cn0":185},{"mesid":{"sat":31,"code":0},"cn0":162},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":25,"code":0},"cn0":217},{"mesid":{"sat":12,"code":0},"cn0":207},{"mesid":{"sat":29,"code":0},"cn0":212},{"mesid":{"sat":18,"code":0},"cn0":205},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":131,"code":2},"cn0":204},{"mesid":{"sat":25,"code":1},"cn0":204},{"mesid":{"sat":12,"code":1},"cn0":187},{"mesid":{"sat":31,"code":1},"cn0":152},{"mesid":{"sat":18,"code":1},"cn0":196},{"mesid":{"sat":29,"code":1},"cn0":194},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":5,"code":1},"cn0":193},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":100,"code":3},"cn0":213},{"mesid":{"sat":98,"code":3},"cn0":179},{"mesid":{"sat":102,"code":3},"cn0":173},{"mesid":{"sat":101,"code":3},"cn0":209},{"mesid":{"sat":93,"code":3},"cn0":208},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":106,"code":3},"cn0":182},{"mesid":{"sat":104,"code":3},"cn0":203},{"mesid":{"sat":98,"code":4},"cn0":171},{"mesid":{"sat":102,"code":4},"cn0":205},{"mesid":{"sat":93,"code":4},"cn0":72},{"mesid":{"sat":100,"code":4},"cn0":201},{"mesid":{"sat":101,"code":4},"cn0":196},{"mesid":{"sat":104,"code":4},"cn0":188},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":106,"code":4},"cn0":174},{"mesid":{"sat":35,"code":12},"cn0":200},{"mesid":{"sat":26,"code":12},"cn0":172},{"mesid":{"sat":34,"code":12},"cn0":158},{"mesid":{"sat":24,"code":12},"cn0":188},{"mesid":{"sat":25,"code":12},"cn0":161},{"mesid":{"sat":12,"code":12},"cn0":185},{"mesid":{"sat":19,"code":12},"cn0":185},{"mesid":{"sat":22,"code":12},"cn0":193},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":12,"code":13},"cn0":208},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":12,"code":14},"cn0":195},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":25,"code":14},"cn0":192},{"mesid":{"sat":11,"code":14},"cn0":189},{"mesid":{"sat":24,"code":14},"cn0":204},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":31,"code":14},"cn0":158},{"mesid":{"sat":33,"code":14},"cn0":152},{"mesid":{"sat":25,"code":20},"cn0":201},{"mesid":{"sat":24,"code":20},"cn0":215},{"mesid":{"sat":11,"code":20},"cn0":194},{"mesid":{"sat":31,"code":20},"cn0":175},{"mesid":{"sat":12,"code":20},"cn0":206},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":33,"code":20},"cn0":169},{"mesid":{"sat":0,"code":0},"cn0":0}]} +{"crc":3818,"length":11,"msg_type":258,"payload":"MgiIPS8QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271531400,"ns_residual":0,"flags":1} +{"crc":37305,"length":16,"msg_type":259,"payload":"EYg9LxDkBwMZAxkN/oPXFw==","preamble":85,"sender":22963,"flags":17,"tow":271531400,"year":2020,"month":3,"day":25,"hours":3,"minutes":25,"seconds":13,"ns":399999998} +{"crc":21368,"length":34,"msg_type":522,"payload":"iD0vEPGs3Oxl6kJABA8wFVaSXsDQMZDYWMMxwAECWwQPBg==","preamble":85,"sender":22963,"tow":271531400,"lat":37.83123551154302,"lon":-122.28650407498577,"height":-17.76307443161369,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":44789,"length":22,"msg_type":526,"payload":"iD0vEAEAAAAHAAAA//////EAywIPAg==","preamble":85,"sender":22963,"tow":271531400,"n":1,"e":7,"d":-1,"h_accuracy":241,"v_accuracy":715,"n_sats":15,"flags":2} +{"crc":42298,"length":15,"msg_type":520,"payload":"iD0vEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271531400,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":62386,"length":22,"msg_type":524,"payload":"iD0vEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271531400,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":38705,"length":6,"msg_type":528,"payload":"iD0vEP//","preamble":85,"sender":22963,"tow":271531400,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":49809,"length":9,"msg_type":117,"payload":"/wAAAAAAAAAA","preamble":85,"sender":22963,"mask":255,"l1ca_bias":0,"l1p_bias":0,"l2ca_bias":0,"l2p_bias":0} +{"crc":27168,"length":11,"msg_type":258,"payload":"MgjsPS8QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271531500,"ns_residual":0,"flags":1} +{"crc":54597,"length":16,"msg_type":259,"payload":"Eew9LxDkBwMZAxkN/mTNHQ==","preamble":85,"sender":22963,"flags":17,"tow":271531500,"year":2020,"month":3,"day":25,"hours":3,"minutes":25,"seconds":13,"ns":499999998} +{"crc":22142,"length":34,"msg_type":522,"payload":"7D0vEDL8Fe1l6kJAXxlmFVaSXsAdj0wsL8QxwAECWwQPBg==","preamble":85,"sender":22963,"tow":271531500,"lat":37.831235538229876,"lon":-122.28650412531486,"height":-17.766344803515597,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":37941,"length":22,"msg_type":526,"payload":"7D0vEAwAAAD7////+f////EAywIPAg==","preamble":85,"sender":22963,"tow":271531500,"n":12,"e":-5,"d":-7,"h_accuracy":241,"v_accuracy":715,"n_sats":15,"flags":2} +{"crc":35221,"length":15,"msg_type":520,"payload":"7D0vEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271531500,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":60164,"length":22,"msg_type":524,"payload":"7D0vEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271531500,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":52872,"length":6,"msg_type":528,"payload":"7D0vEP//","preamble":85,"sender":22963,"tow":271531500,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":23797,"length":11,"msg_type":258,"payload":"MghQPi8QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271531600,"ns_residual":0,"flags":1} +{"crc":9977,"length":16,"msg_type":259,"payload":"EVA+LxDkBwMZAxkN/kXDIw==","preamble":85,"sender":22963,"flags":17,"tow":271531600,"year":2020,"month":3,"day":25,"hours":3,"minutes":25,"seconds":13,"ns":599999998} +{"crc":3153,"length":34,"msg_type":522,"payload":"UD4vEFYQFO1l6kJAqaGIFVaSXsCtypiQD8YxwAECWwQPBg==","preamble":85,"sender":22963,"tow":271531600,"lat":37.83123553733519,"lon":-122.28650415747565,"height":-17.773675000479376,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":44320,"length":22,"msg_type":526,"payload":"UD4vEP3///8KAAAABgAAAPEAywIPAg==","preamble":85,"sender":22963,"tow":271531600,"n":-3,"e":10,"d":6,"h_accuracy":241,"v_accuracy":715,"n_sats":15,"flags":2} +{"crc":16205,"length":15,"msg_type":520,"payload":"UD4vEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271531600,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":4515,"length":22,"msg_type":524,"payload":"UD4vEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271531600,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":53269,"length":6,"msg_type":528,"payload":"UD4vEP//","preamble":85,"sender":22963,"tow":271531600,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":50435,"length":51,"msg_type":1025,"payload":"BkdMTyBMMk9GIE1FIDEgWysxMzIxbXNdIGxvdyBDTjAgdG9vIGxvbmcsIGRyb3BwaW5n","preamble":85,"sender":22963,"level":6,"text":"GLO L2OF ME 1 [+1321ms] low CN0 too long, dropping"} +{"crc":23581,"length":34,"msg_type":30583,"payload":"gwLNPS8QGZgv/wAIAQBAIAAf4vhmi35P6fz/6BAACAC+UA==","preamble":85,"sender":22963,"sid":{"sat":131,"code":2},"tow":271531469,"message_type":25,"data":[152,47,255,0,8,1,0,64,32,0,31,226,248,102,139,126,79,233,252,255,232,16,0,8,0,190,80]} +{"crc":34701,"length":11,"msg_type":258,"payload":"Mgi0Pi8QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271531700,"ns_residual":0,"flags":1} +{"crc":55975,"length":16,"msg_type":259,"payload":"EbQ+LxDkBwMZAxkN/ia5KQ==","preamble":85,"sender":22963,"flags":17,"tow":271531700,"year":2020,"month":3,"day":25,"hours":3,"minutes":25,"seconds":13,"ns":699999998} +{"crc":8086,"length":34,"msg_type":522,"payload":"tD4vELiTD+1l6kJAAjHAFVaSXsAmLtSxLcgxwAECWwQPBg==","preamble":85,"sender":22963,"tow":271531700,"lat":37.83123553524587,"lon":-122.28650420921988,"height":-17.781947244932006,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":785,"length":22,"msg_type":526,"payload":"tD4vEPn////6////DgAAAPEAywIPAg==","preamble":85,"sender":22963,"tow":271531700,"n":-7,"e":-6,"d":14,"h_accuracy":241,"v_accuracy":715,"n_sats":15,"flags":2} +{"crc":18416,"length":15,"msg_type":520,"payload":"tD4vEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271531700,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":45952,"length":22,"msg_type":524,"payload":"tD4vEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271531700,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":23948,"length":6,"msg_type":528,"payload":"tD4vEP//","preamble":85,"sender":22963,"tow":271531700,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":27904,"length":11,"msg_type":258,"payload":"MggYPy8QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271531800,"ns_residual":0,"flags":1} +{"crc":44242,"length":16,"msg_type":259,"payload":"ERg/LxDkBwMZAxkN/gevLw==","preamble":85,"sender":22963,"flags":17,"tow":271531800,"year":2020,"month":3,"day":25,"hours":3,"minutes":25,"seconds":13,"ns":799999998} +{"crc":4915,"length":34,"msg_type":522,"payload":"GD8vEDtWM+1l6kJAIyDyFVaSXsBRGh2+H8oxwAECWwQPBg==","preamble":85,"sender":22963,"tow":271531800,"lat":37.83123555189783,"lon":-122.28650425572464,"height":-17.789546854119468,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":18174,"length":22,"msg_type":526,"payload":"GD8vEAgAAAD+////+f////EAywIPAg==","preamble":85,"sender":22963,"tow":271531800,"n":8,"e":-2,"d":-7,"h_accuracy":241,"v_accuracy":715,"n_sats":15,"flags":2} +{"crc":18784,"length":15,"msg_type":520,"payload":"GD8vEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271531800,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":20396,"length":22,"msg_type":524,"payload":"GD8vEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271531800,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":7446,"length":6,"msg_type":528,"payload":"GD8vEP//","preamble":85,"sender":22963,"tow":271531800,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":20513,"length":237,"msg_type":97,"payload":"BQDUFQCyAgC5HwCjAAAAAAAAGQDYDADPHQDUEgDNAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwLMGQHMDAG6HwGXEgHEHQHBAAAABQHBAAAAAAAAAAAAAAAACwPVCQOzFAOtBQPRCgPQAAAABAO2FQPLCQSsFATNAAAACwTJBQTEAAS8AAAABASuIwzIGgysIgygGAy8GQyhDAy4Ewy5FgzBAAAADA3PAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADA7DAAAAGQ7ACw69GA7MAAAAHw6fIQ6XGRTJGBTXCxTCHxSvDBTOAAAAIRSpAAAA","preamble":85,"sender":22963,"states":[{"mesid":{"sat":5,"code":0},"cn0":212},{"mesid":{"sat":21,"code":0},"cn0":178},{"mesid":{"sat":2,"code":0},"cn0":185},{"mesid":{"sat":31,"code":0},"cn0":163},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":25,"code":0},"cn0":216},{"mesid":{"sat":12,"code":0},"cn0":207},{"mesid":{"sat":29,"code":0},"cn0":212},{"mesid":{"sat":18,"code":0},"cn0":205},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":131,"code":2},"cn0":204},{"mesid":{"sat":25,"code":1},"cn0":204},{"mesid":{"sat":12,"code":1},"cn0":186},{"mesid":{"sat":31,"code":1},"cn0":151},{"mesid":{"sat":18,"code":1},"cn0":196},{"mesid":{"sat":29,"code":1},"cn0":193},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":5,"code":1},"cn0":193},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":11,"code":3},"cn0":213},{"mesid":{"sat":9,"code":3},"cn0":179},{"mesid":{"sat":20,"code":3},"cn0":173},{"mesid":{"sat":5,"code":3},"cn0":209},{"mesid":{"sat":10,"code":3},"cn0":208},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":4,"code":3},"cn0":182},{"mesid":{"sat":21,"code":3},"cn0":203},{"mesid":{"sat":9,"code":4},"cn0":172},{"mesid":{"sat":20,"code":4},"cn0":205},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":11,"code":4},"cn0":201},{"mesid":{"sat":5,"code":4},"cn0":196},{"mesid":{"sat":0,"code":4},"cn0":188},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":4,"code":4},"cn0":174},{"mesid":{"sat":35,"code":12},"cn0":200},{"mesid":{"sat":26,"code":12},"cn0":172},{"mesid":{"sat":34,"code":12},"cn0":160},{"mesid":{"sat":24,"code":12},"cn0":188},{"mesid":{"sat":25,"code":12},"cn0":161},{"mesid":{"sat":12,"code":12},"cn0":184},{"mesid":{"sat":19,"code":12},"cn0":185},{"mesid":{"sat":22,"code":12},"cn0":193},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":12,"code":13},"cn0":207},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":12,"code":14},"cn0":195},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":25,"code":14},"cn0":192},{"mesid":{"sat":11,"code":14},"cn0":189},{"mesid":{"sat":24,"code":14},"cn0":204},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":31,"code":14},"cn0":159},{"mesid":{"sat":33,"code":14},"cn0":151},{"mesid":{"sat":25,"code":20},"cn0":201},{"mesid":{"sat":24,"code":20},"cn0":215},{"mesid":{"sat":11,"code":20},"cn0":194},{"mesid":{"sat":31,"code":20},"cn0":175},{"mesid":{"sat":12,"code":20},"cn0":206},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":33,"code":20},"cn0":169},{"mesid":{"sat":0,"code":0},"cn0":0}]} +{"crc":34187,"length":128,"msg_type":151,"payload":"AgAaHQUAKzUMAFEtFQB9GRkAbUYaAKEBHQChNx8AlQ4EAxUWBQMyIQkDXw4KA3EpCwOYJQwDqgMTAyIHFAMMMRUDlSUMDJQpEwwjIBQMDwIWDEMkGAyCIxkMnQ4aDGcVIgyOESMMIi0LDosyDA4PPBgObDYZDpcpHw5VESEOIA8=","preamble":85,"sender":22963,"azel":[{"sid":{"sat":2,"code":0},"az":26,"el":29},{"sid":{"sat":5,"code":0},"az":43,"el":53},{"sid":{"sat":12,"code":0},"az":81,"el":45},{"sid":{"sat":21,"code":0},"az":125,"el":25},{"sid":{"sat":25,"code":0},"az":109,"el":70},{"sid":{"sat":26,"code":0},"az":161,"el":1},{"sid":{"sat":29,"code":0},"az":161,"el":55},{"sid":{"sat":31,"code":0},"az":149,"el":14},{"sid":{"sat":4,"code":3},"az":21,"el":22},{"sid":{"sat":5,"code":3},"az":50,"el":33},{"sid":{"sat":9,"code":3},"az":95,"el":14},{"sid":{"sat":10,"code":3},"az":113,"el":41},{"sid":{"sat":11,"code":3},"az":152,"el":37},{"sid":{"sat":12,"code":3},"az":170,"el":3},{"sid":{"sat":19,"code":3},"az":34,"el":7},{"sid":{"sat":20,"code":3},"az":12,"el":49},{"sid":{"sat":21,"code":3},"az":149,"el":37},{"sid":{"sat":12,"code":12},"az":148,"el":41},{"sid":{"sat":19,"code":12},"az":35,"el":32},{"sid":{"sat":20,"code":12},"az":15,"el":2},{"sid":{"sat":22,"code":12},"az":67,"el":36},{"sid":{"sat":24,"code":12},"az":130,"el":35},{"sid":{"sat":25,"code":12},"az":157,"el":14},{"sid":{"sat":26,"code":12},"az":103,"el":21},{"sid":{"sat":34,"code":12},"az":142,"el":17},{"sid":{"sat":35,"code":12},"az":34,"el":45},{"sid":{"sat":11,"code":14},"az":139,"el":50},{"sid":{"sat":12,"code":14},"az":15,"el":60},{"sid":{"sat":24,"code":14},"az":108,"el":54},{"sid":{"sat":25,"code":14},"az":151,"el":41},{"sid":{"sat":31,"code":14},"az":85,"el":17},{"sid":{"sat":33,"code":14},"az":32,"el":15}]} +{"crc":2506,"length":11,"msg_type":258,"payload":"Mgh8Py8QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271531900,"ns_residual":0,"flags":1} +{"crc":25596,"length":16,"msg_type":259,"payload":"EXw/LxDkBwMZAxkN/uikNQ==","preamble":85,"sender":22963,"flags":17,"tow":271531900,"year":2020,"month":3,"day":25,"hours":3,"minutes":25,"seconds":13,"ns":899999998} +{"crc":60001,"length":34,"msg_type":522,"payload":"fD8vENkHUO1l6kJAo4sgFlaSXsC8PBOTycwxwAECWwQPBg==","preamble":85,"sender":22963,"tow":271531900,"lat":37.831235565259426,"lon":-122.28650429895656,"height":-17.799950782963364,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":55697,"length":22,"msg_type":526,"payload":"fD8vEAIAAAAAAAAABgAAAPEAywIPAg==","preamble":85,"sender":22963,"tow":271531900,"n":2,"e":0,"d":6,"h_accuracy":241,"v_accuracy":715,"n_sats":15,"flags":2} +{"crc":26063,"length":15,"msg_type":520,"payload":"fD8vEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271531900,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":22298,"length":22,"msg_type":524,"payload":"fD8vEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271531900,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":17583,"length":6,"msg_type":528,"payload":"fD8vEP//","preamble":85,"sender":22963,"tow":271531900,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":30651,"length":249,"msg_type":74,"payload":"4D8vEAAAAAAyCEDJdLQ+7h+XBnA//+DUDw8FAPZ2EUWiVUIH23kIE7IPDxUAG6/4Re6iWgcUUvaSug8PAgDdjANJyX6sBwJu/qejDw8fAEDaKD3hi20Gl5D7RNkPDxkApnm8QG/HzQYSY/Rkzw8PDACR48w+SrGZBqPJBU7UDw8dAHbaKD2IPgIFcIr868wPDxkBRXm8QBw7TQVn9Pa2ug8PDAH3jANJi8b6BRXF/qWXDw8fATnjzD7ApCQF/IMEcMEPDx0BdHS0PqGkIgXgaf+ZwQ8PBQHNiPk+7Pi6Bj+BBCfVDw8LA85u4ETdH1sHa8fup7MPDwkD","preamble":85,"sender":22963,"header":{"t":{"tow":271532000,"ns_residual":0,"wn":2098},"n_obs":64},"obs":[{"P":1052013769,"L":{"i":110567406,"f":112},"D":{"i":-193,"f":224},"cn0":212,"lock":15,"flags":15,"sid":{"sat":5,"code":0}},{"P":1158772470,"L":{"i":121787810,"f":219},"D":{"i":2169,"f":19},"cn0":178,"lock":15,"flags":15,"sid":{"sat":21,"code":0}},{"P":1173925659,"L":{"i":123380462,"f":20},"D":{"i":-2478,"f":146},"cn0":186,"lock":15,"flags":15,"sid":{"sat":2,"code":0}},{"P":1224969437,"L":{"i":128745161,"f":2},"D":{"i":-402,"f":167},"cn0":163,"lock":15,"flags":15,"sid":{"sat":31,"code":0}},{"P":1026087488,"L":{"i":107842529,"f":151},"D":{"i":-1136,"f":68},"cn0":217,"lock":15,"flags":15,"sid":{"sat":25,"code":0}},{"P":1086093734,"L":{"i":114149231,"f":18},"D":{"i":-2973,"f":100},"cn0":207,"lock":15,"flags":15,"sid":{"sat":12,"code":0}},{"P":1053614993,"L":{"i":110735690,"f":163},"D":{"i":1481,"f":78},"cn0":212,"lock":15,"flags":15,"sid":{"sat":29,"code":0}},{"P":1026087542,"L":{"i":84033160,"f":112},"D":{"i":-886,"f":235},"cn0":204,"lock":15,"flags":15,"sid":{"sat":25,"code":1}},{"P":1086093637,"L":{"i":88947484,"f":103},"D":{"i":-2316,"f":182},"cn0":186,"lock":15,"flags":15,"sid":{"sat":12,"code":1}},{"P":1224969463,"L":{"i":100320907,"f":21},"D":{"i":-315,"f":165},"cn0":151,"lock":15,"flags":15,"sid":{"sat":31,"code":1}},{"P":1053614905,"L":{"i":86287552,"f":252},"D":{"i":1155,"f":112},"cn0":193,"lock":15,"flags":15,"sid":{"sat":29,"code":1}},{"P":1052013684,"L":{"i":86156449,"f":224},"D":{"i":-151,"f":153},"cn0":193,"lock":15,"flags":15,"sid":{"sat":5,"code":1}},{"P":1056540877,"L":{"i":112916716,"f":63},"D":{"i":1153,"f":39},"cn0":213,"lock":15,"flags":15,"sid":{"sat":11,"code":3}},{"P":1155559118,"L":{"i":123412445,"f":107},"D":{"i":-4409,"f":167},"cn0":179,"lock":15,"flags":15,"sid":{"sat":9,"code":3}}]} +{"crc":42590,"length":249,"msg_type":74,"payload":"4D8vEAAAAAAyCEHvazA9aEuLBipF+xWuDw8UA3q0A0CyCNgGv4wIfNEPDwUDpxBtPg3DpwbbEvT00A8PCgOopQpDtxouB6zP+si2Dw8EA3aMJj/GNcIGYFUGgssPDxUDFW/gRAunuAU1m/L1rA8PCQQ1bTA95gEXBYZR/JTNDw8UBP2J+T76FjwF9YAD58kPDwsEabUDQHKxUgVgpQYGww8PBQR0pgpD9qKVBdz2+8WuDw8EBL4dmUWEkT8HxiL67sgPDyMMOzz7SWdutAfIP/TOrA8PGgyzqxBMifzrBwbKCE6gDw8iDO7fo0fCAnYH7uP6O7wPDxgM","preamble":85,"sender":22963,"header":{"t":{"tow":271532000,"ns_residual":0,"wn":2098},"n_obs":65},"obs":[{"P":1026583535,"L":{"i":109792104,"f":42},"D":{"i":-1211,"f":21},"cn0":174,"lock":15,"flags":15,"sid":{"sat":20,"code":3}},{"P":1073984634,"L":{"i":114821298,"f":191},"D":{"i":2188,"f":124},"cn0":209,"lock":15,"flags":15,"sid":{"sat":5,"code":3}},{"P":1047335079,"L":{"i":111657741,"f":219},"D":{"i":-3054,"f":244},"cn0":208,"lock":15,"flags":15,"sid":{"sat":10,"code":3}},{"P":1124771240,"L":{"i":120462007,"f":172},"D":{"i":-1329,"f":200},"cn0":182,"lock":15,"flags":15,"sid":{"sat":4,"code":3}},{"P":1059490934,"L":{"i":113391046,"f":96},"D":{"i":1621,"f":130},"cn0":203,"lock":15,"flags":15,"sid":{"sat":21,"code":3}},{"P":1155559189,"L":{"i":95987467,"f":53},"D":{"i":-3429,"f":245},"cn0":172,"lock":15,"flags":15,"sid":{"sat":9,"code":4}},{"P":1026583861,"L":{"i":85393894,"f":134},"D":{"i":-943,"f":148},"cn0":205,"lock":15,"flags":15,"sid":{"sat":20,"code":4}},{"P":1056541181,"L":{"i":87824122,"f":245},"D":{"i":896,"f":231},"cn0":201,"lock":15,"flags":15,"sid":{"sat":11,"code":4}},{"P":1073984873,"L":{"i":89305458,"f":96},"D":{"i":1701,"f":6},"cn0":195,"lock":15,"flags":15,"sid":{"sat":5,"code":4}},{"P":1124771444,"L":{"i":93692662,"f":220},"D":{"i":-1034,"f":197},"cn0":174,"lock":15,"flags":15,"sid":{"sat":4,"code":4}},{"P":1167662526,"L":{"i":121606532,"f":198},"D":{"i":-1502,"f":238},"cn0":200,"lock":15,"flags":15,"sid":{"sat":35,"code":12}},{"P":1241201723,"L":{"i":129265255,"f":200},"D":{"i":-3009,"f":206},"cn0":172,"lock":15,"flags":15,"sid":{"sat":26,"code":12}},{"P":1276160947,"L":{"i":132906121,"f":6},"D":{"i":2250,"f":78},"cn0":160,"lock":15,"flags":15,"sid":{"sat":34,"code":12}},{"P":1201922030,"L":{"i":125174466,"f":238},"D":{"i":-1309,"f":59},"cn0":188,"lock":15,"flags":15,"sid":{"sat":24,"code":12}}]} +{"crc":51370,"length":249,"msg_type":74,"payload":"4D8vEAAAAAAyCEJo/Q9NipMGCHglBaShDw8ZDOS1SkUHZzcHdEsGmbgPDwwMkwFER9EGbAco1f7puQ8PEwwOzVhHNzFuB1tOCZrBDw8WDKa1SkVlh5QFyd4ES88PDwwN57AJQtfM8AZ8/Ptaww8PDA5oOR5LPhzlB2o6BKbADw8ZDtl0Hkf2gnkHgxcEyb0PDwsOGiksQzFUDwegKvl3zA8PGA7r/k9RpMaLCHKa86CfDw8fDsHw+1H02J0IxqP3fJgPDyEOSzkeS5ikDAadPAPtyQ8PGRQ8KyxDXtZoBe/D+hPXDw8YFBN0HkdkMroFPiIDEMEPDwsU","preamble":85,"sender":22963,"header":{"t":{"tow":271532000,"ns_residual":0,"wn":2098},"n_obs":66},"obs":[{"P":1292893544,"L":{"i":134648714,"f":120},"D":{"i":1317,"f":164},"cn0":161,"lock":15,"flags":15,"sid":{"sat":25,"code":12}},{"P":1162524132,"L":{"i":121071367,"f":116},"D":{"i":1611,"f":153},"cn0":184,"lock":15,"flags":15,"sid":{"sat":12,"code":12}},{"P":1195639187,"L":{"i":124520145,"f":40},"D":{"i":-299,"f":233},"cn0":185,"lock":15,"flags":15,"sid":{"sat":19,"code":12}},{"P":1197001998,"L":{"i":124662071,"f":91},"D":{"i":2382,"f":154},"cn0":193,"lock":15,"flags":15,"sid":{"sat":22,"code":12}},{"P":1162524070,"L":{"i":93620069,"f":201},"D":{"i":1246,"f":75},"cn0":207,"lock":15,"flags":15,"sid":{"sat":12,"code":13}},{"P":1107931367,"L":{"i":116444375,"f":124},"D":{"i":-1028,"f":90},"cn0":195,"lock":15,"flags":15,"sid":{"sat":12,"code":14}},{"P":1260271976,"L":{"i":132455486,"f":106},"D":{"i":1082,"f":166},"cn0":192,"lock":15,"flags":15,"sid":{"sat":25,"code":14}},{"P":1193178329,"L":{"i":125403894,"f":131},"D":{"i":1047,"f":201},"cn0":189,"lock":15,"flags":15,"sid":{"sat":11,"code":14}},{"P":1126967578,"L":{"i":118445105,"f":160},"D":{"i":-1750,"f":119},"cn0":204,"lock":15,"flags":15,"sid":{"sat":24,"code":14}},{"P":1364197099,"L":{"i":143378084,"f":114},"D":{"i":-3174,"f":160},"cn0":159,"lock":15,"flags":15,"sid":{"sat":31,"code":14}},{"P":1375465665,"L":{"i":144562420,"f":198},"D":{"i":-2141,"f":124},"cn0":152,"lock":15,"flags":15,"sid":{"sat":33,"code":14}},{"P":1260271947,"L":{"i":101491864,"f":157},"D":{"i":828,"f":237},"cn0":201,"lock":15,"flags":15,"sid":{"sat":25,"code":20}},{"P":1126968124,"L":{"i":90756702,"f":239},"D":{"i":-1341,"f":19},"cn0":215,"lock":15,"flags":15,"sid":{"sat":24,"code":20}},{"P":1193178131,"L":{"i":96088676,"f":62},"D":{"i":802,"f":16},"cn0":193,"lock":15,"flags":15,"sid":{"sat":11,"code":20}}]} +{"crc":26500,"length":62,"msg_type":74,"payload":"4D8vEAAAAAAyCEM7/09RM1mMBi+B9iOvDw8fFEewCULacVEF/Ov8Mc4PDwwUq/D7USYymgabmfmfqQ8PIRQ=","preamble":85,"sender":22963,"header":{"t":{"tow":271532000,"ns_residual":0,"wn":2098},"n_obs":67},"obs":[{"P":1364197179,"L":{"i":109861171,"f":47},"D":{"i":-2431,"f":35},"cn0":175,"lock":15,"flags":15,"sid":{"sat":31,"code":20}},{"P":1107931207,"L":{"i":89223642,"f":252},"D":{"i":-789,"f":49},"cn0":206,"lock":15,"flags":15,"sid":{"sat":12,"code":20}},{"P":1375465643,"L":{"i":110768678,"f":155},"D":{"i":-1639,"f":159},"cn0":169,"lock":15,"flags":15,"sid":{"sat":33,"code":20}}]} +{"crc":49809,"length":9,"msg_type":117,"payload":"/wAAAAAAAAAA","preamble":85,"sender":22963,"mask":255,"l1ca_bias":0,"l1p_bias":0,"l2ca_bias":0,"l2p_bias":0} +{"crc":20630,"length":11,"msg_type":258,"payload":"MgjgPy8QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271532000,"ns_residual":0,"flags":1} +{"crc":45873,"length":16,"msg_type":259,"payload":"EeA/LxDkBwMZAxkN/smaOw==","preamble":85,"sender":22963,"flags":17,"tow":271532000,"year":2020,"month":3,"day":25,"hours":3,"minutes":25,"seconds":13,"ns":999999998} +{"crc":23503,"length":34,"msg_type":522,"payload":"4D8vEEdLY+1l6kJA2xFGFlaSXsDLxg5Dws4xwAECWwQPBg==","preamble":85,"sender":22963,"tow":271532000,"lat":37.831235574229645,"lon":-122.28650433390378,"height":-17.807651702029755,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":51413,"length":22,"msg_type":526,"payload":"4D8vEPf////8////+v////EAywIPAg==","preamble":85,"sender":22963,"tow":271532000,"n":-9,"e":-4,"d":-6,"h_accuracy":241,"v_accuracy":715,"n_sats":15,"flags":2} +{"crc":50080,"length":15,"msg_type":520,"payload":"4D8vEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271532000,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":43307,"length":22,"msg_type":524,"payload":"4D8vEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271532000,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":33256,"length":6,"msg_type":528,"payload":"4D8vEP//","preamble":85,"sender":22963,"tow":271532000,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":40942,"length":4,"msg_type":65535,"payload":"AAUCgA==","preamble":85,"sender":22963,"flags":2147616000} +{"crc":2168,"length":24,"msg_type":72,"payload":"UO0a3iqORMHK1UJhIkRQwc9nFIPvrk1B","preamble":85,"sender":22963,"x":-2694229.735196747,"y":-4264073.519704292,"z":3890655.0240602265} +{"crc":47991,"length":26,"msg_type":23,"payload":"bWFpbgAAAAAAAAAAAAAAAAAAAAAAAAx1AAA=","preamble":85,"sender":22963,"name":"main\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":0,"stack_free":29964} +{"crc":61976,"length":26,"msg_type":23,"payload":"aWRsZQAAAAAAAAAAAAAAAAAAAABlAXwAAAA=","preamble":85,"sender":22963,"name":"idle\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":357,"stack_free":124} +{"crc":4724,"length":26,"msg_type":23,"payload":"cnBtc2cAAAAAAAAAAAAAAAAAAAABAAwOAAA=","preamble":85,"sender":22963,"name":"rpmsg\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":1,"stack_free":3596} +{"crc":51784,"length":26,"msg_type":23,"payload":"U0JQAAAAAAAAAAAAAAAAAAAAAAAAAPz/AAA=","preamble":85,"sender":22963,"name":"SBP\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":0,"stack_free":65532} +{"crc":33651,"length":26,"msg_type":23,"payload":"TkFQAAAAAAAAAAAAAAAAAAAAAAAAAASAAAA=","preamble":85,"sender":22963,"name":"NAP\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":0,"stack_free":32772} +{"crc":29877,"length":26,"msg_type":23,"payload":"bWFuYWdlIFBWAAAAAAAAAAAAAAAAACQEAAA=","preamble":85,"sender":22963,"name":"manage PV\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":0,"stack_free":1060} +{"crc":14252,"length":26,"msg_type":23,"payload":"SU1VAAAAAAAAAAAAAAAAAAAAAAAAAPQHAAA=","preamble":85,"sender":22963,"name":"IMU\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":0,"stack_free":2036} +{"crc":18976,"length":26,"msg_type":23,"payload":"SU1VIGF1eAAAAAAAAAAAAAAAAAAAAEwIAAA=","preamble":85,"sender":22963,"name":"IMU aux\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":0,"stack_free":2124} +{"crc":26120,"length":26,"msg_type":23,"payload":"bmRiAAAAAAAAAAAAAAAAAAAAAAAAAFAMAAA=","preamble":85,"sender":22963,"name":"ndb\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":0,"stack_free":3152} +{"crc":3951,"length":26,"msg_type":23,"payload":"TkFQIFRyYWNraW5nAAAAAAAAAAAcAdR3AAA=","preamble":85,"sender":22963,"name":"NAP Tracking\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":284,"stack_free":30676} +{"crc":40082,"length":26,"msg_type":23,"payload":"ZGVjb2RlAAAAAAAAAAAAAAAAAAAIANQGAAA=","preamble":85,"sender":22963,"name":"decode\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":8,"stack_free":1748} +{"crc":24209,"length":26,"msg_type":23,"payload":"bWFuYWdlIGFjcQAAAAAAAAAAAAC9AKR3AAA=","preamble":85,"sender":22963,"name":"manage acq\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":189,"stack_free":30628} +{"crc":58531,"length":26,"msg_type":23,"payload":"c3lzdGVtIG1vbml0b3IAAAAAAAAAACwGAAA=","preamble":85,"sender":22963,"name":"system monitor\u0000\u0000\u0000\u0000\u0000\u0000","cpu":0,"stack_free":1580} +{"crc":44438,"length":26,"msg_type":23,"payload":"V2F0Y2hkb2cAAAAAAAAAAAAAAAAAAOQDAAA=","preamble":85,"sender":22963,"name":"Watchdog\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":0,"stack_free":996} +{"crc":15999,"length":26,"msg_type":23,"payload":"c3RhcmxpbmcAAAAAAAAAAAAAAACVAPz/AAA=","preamble":85,"sender":22963,"name":"starling\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":149,"stack_free":65532} +{"crc":57561,"length":26,"msg_type":23,"payload":"bWVfY2FsY19wdnQAAAAAAAAAAAAJAIwjAAA=","preamble":85,"sender":22963,"name":"me_calc_pvt\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":9,"stack_free":9100} +{"crc":38576,"length":26,"msg_type":23,"payload":"UFBTAAAAAAAAAAAAAAAAAAAAAAAAAEgHAAA=","preamble":85,"sender":22963,"name":"PPS\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":0,"stack_free":1864} +{"crc":50933,"length":26,"msg_type":23,"payload":"c3BlY3RydW0gYW5hbHl6ZXIAAAAAANQPAAA=","preamble":85,"sender":22963,"name":"spectrum analyzer\u0000\u0000\u0000","cpu":0,"stack_free":4052} +{"crc":48633,"length":11,"msg_type":258,"payload":"MghEQC8QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271532100,"ns_residual":0,"flags":1} +{"crc":12387,"length":16,"msg_type":259,"payload":"EURALxDkBwMZAxkO/uD1BQ==","preamble":85,"sender":22963,"flags":17,"tow":271532100,"year":2020,"month":3,"day":25,"hours":3,"minutes":25,"seconds":14,"ns":99999998} +{"crc":5160,"length":34,"msg_type":522,"payload":"REAvEHAic+1l6kJAAQ57FlaSXsCnzAEKzNAxwAECWwQPBg==","preamble":85,"sender":22963,"tow":271532100,"lat":37.83123558160594,"lon":-122.28650438324986,"height":-17.81561338943416,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":12747,"length":22,"msg_type":526,"payload":"REAvEAEAAAD6////DAAAAPEAywIPAg==","preamble":85,"sender":22963,"tow":271532100,"n":1,"e":-6,"d":12,"h_accuracy":241,"v_accuracy":715,"n_sats":15,"flags":2} +{"crc":31486,"length":15,"msg_type":520,"payload":"REAvEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271532100,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":32932,"length":22,"msg_type":524,"payload":"REAvEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271532100,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":7710,"length":6,"msg_type":528,"payload":"REAvEP//","preamble":85,"sender":22963,"tow":271532100,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":20350,"length":11,"msg_type":258,"payload":"MgioQC8QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271532200,"ns_residual":0,"flags":1} +{"crc":8159,"length":16,"msg_type":259,"payload":"EahALxDkBwMZAxkO/sHrCw==","preamble":85,"sender":22963,"flags":17,"tow":271532200,"year":2020,"month":3,"day":25,"hours":3,"minutes":25,"seconds":14,"ns":199999998} +{"crc":3495,"length":34,"msg_type":522,"payload":"qEAvEKPKfu1l6kJAAbKpFlaSXsBP1BEVrNMxwAECWwQPBg==","preamble":85,"sender":22963,"tow":271532200,"lat":37.831235587034165,"lon":-122.28650442668733,"height":-17.826844517567505,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":62751,"length":22,"msg_type":526,"payload":"qEAvEP////8EAAAAIQAAAPEAywIPAg==","preamble":85,"sender":22963,"tow":271532200,"n":-1,"e":4,"d":33,"h_accuracy":241,"v_accuracy":715,"n_sats":15,"flags":2} +{"crc":9478,"length":15,"msg_type":520,"payload":"qEAvEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271532200,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":31780,"length":22,"msg_type":524,"payload":"qEAvEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271532200,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":40645,"length":6,"msg_type":528,"payload":"qEAvEP//","preamble":85,"sender":22963,"tow":271532200,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":35852,"length":11,"msg_type":258,"payload":"MggMQS8QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271532300,"ns_residual":0,"flags":1} +{"crc":43137,"length":16,"msg_type":259,"payload":"EQxBLxDkBwMZAxkO/qLhEQ==","preamble":85,"sender":22963,"flags":17,"tow":271532300,"year":2020,"month":3,"day":25,"hours":3,"minutes":25,"seconds":14,"ns":299999998} +{"crc":15450,"length":34,"msg_type":522,"payload":"DEEvEDdSje1l6kJA1tPVFlaSXsDYGTcYZtYxwAECWwQPBg==","preamble":85,"sender":22963,"tow":271532300,"lat":37.83123559380004,"lon":-122.2865044677886,"height":-17.83749533982504,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":21579,"length":22,"msg_type":526,"payload":"DEEvEAMAAAAKAAAA9/////EAywIPAg==","preamble":85,"sender":22963,"tow":271532300,"n":3,"e":10,"d":-9,"h_accuracy":241,"v_accuracy":715,"n_sats":15,"flags":2} +{"crc":3283,"length":15,"msg_type":520,"payload":"DEEvEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271532300,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":57003,"length":22,"msg_type":524,"payload":"DEEvEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271532300,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":54045,"length":6,"msg_type":528,"payload":"DEEvEP//","preamble":85,"sender":22963,"tow":271532300,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":32415,"length":237,"msg_type":97,"payload":"BQDVFQCzAgC6HwCkAAAAAAAAGQDZDADPHQDUEgDOAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwLMGQHLDAG7HwGXEgHEHQHBAAAABQHAAAAAAAAAAAAAAAAAZAPVYgOzZgOtZQPRXQPQAAAAagO2aAPLYgSsZgTNXQRTZATJZQTDaAS8AAAAagSvIwzIGgytIgyfGAy8GQyhDAy5Ewy5FgzBAAAADA3PAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADA7CAAAAGQ6/Cw68GA7LAAAAHw6eIQ6XGRTJGBTXCxTCHxSvDBTOAAAAIRSqAAAA","preamble":85,"sender":22963,"states":[{"mesid":{"sat":5,"code":0},"cn0":213},{"mesid":{"sat":21,"code":0},"cn0":179},{"mesid":{"sat":2,"code":0},"cn0":186},{"mesid":{"sat":31,"code":0},"cn0":164},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":25,"code":0},"cn0":217},{"mesid":{"sat":12,"code":0},"cn0":207},{"mesid":{"sat":29,"code":0},"cn0":212},{"mesid":{"sat":18,"code":0},"cn0":206},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":131,"code":2},"cn0":204},{"mesid":{"sat":25,"code":1},"cn0":203},{"mesid":{"sat":12,"code":1},"cn0":187},{"mesid":{"sat":31,"code":1},"cn0":151},{"mesid":{"sat":18,"code":1},"cn0":196},{"mesid":{"sat":29,"code":1},"cn0":193},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":5,"code":1},"cn0":192},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":100,"code":3},"cn0":213},{"mesid":{"sat":98,"code":3},"cn0":179},{"mesid":{"sat":102,"code":3},"cn0":173},{"mesid":{"sat":101,"code":3},"cn0":209},{"mesid":{"sat":93,"code":3},"cn0":208},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":106,"code":3},"cn0":182},{"mesid":{"sat":104,"code":3},"cn0":203},{"mesid":{"sat":98,"code":4},"cn0":172},{"mesid":{"sat":102,"code":4},"cn0":205},{"mesid":{"sat":93,"code":4},"cn0":83},{"mesid":{"sat":100,"code":4},"cn0":201},{"mesid":{"sat":101,"code":4},"cn0":195},{"mesid":{"sat":104,"code":4},"cn0":188},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":106,"code":4},"cn0":175},{"mesid":{"sat":35,"code":12},"cn0":200},{"mesid":{"sat":26,"code":12},"cn0":173},{"mesid":{"sat":34,"code":12},"cn0":159},{"mesid":{"sat":24,"code":12},"cn0":188},{"mesid":{"sat":25,"code":12},"cn0":161},{"mesid":{"sat":12,"code":12},"cn0":185},{"mesid":{"sat":19,"code":12},"cn0":185},{"mesid":{"sat":22,"code":12},"cn0":193},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":12,"code":13},"cn0":207},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":12,"code":14},"cn0":194},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":25,"code":14},"cn0":191},{"mesid":{"sat":11,"code":14},"cn0":188},{"mesid":{"sat":24,"code":14},"cn0":203},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":31,"code":14},"cn0":158},{"mesid":{"sat":33,"code":14},"cn0":151},{"mesid":{"sat":25,"code":20},"cn0":201},{"mesid":{"sat":24,"code":20},"cn0":215},{"mesid":{"sat":11,"code":20},"cn0":194},{"mesid":{"sat":31,"code":20},"cn0":175},{"mesid":{"sat":12,"code":20},"cn0":206},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":33,"code":20},"cn0":170},{"mesid":{"sat":0,"code":0},"cn0":0}]} +{"crc":37575,"length":11,"msg_type":258,"payload":"MghwQS8QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271532400,"ns_residual":0,"flags":1} +{"crc":37858,"length":16,"msg_type":259,"payload":"EXBBLxDkBwMZAxkO/oPXFw==","preamble":85,"sender":22963,"flags":17,"tow":271532400,"year":2020,"month":3,"day":25,"hours":3,"minutes":25,"seconds":14,"ns":399999998} +{"crc":12989,"length":34,"msg_type":522,"payload":"cEEvEAQHk+1l6kJAH7sIF1aSXsBmRo3NoNkxwAECWwQPBg==","preamble":85,"sender":22963,"tow":271532400,"lat":37.83123559645722,"lon":-122.28650451519614,"height":-17.850109908095327,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":65038,"length":22,"msg_type":526,"payload":"cEEvEAYAAAD6////+/////EAywIPAg==","preamble":85,"sender":22963,"tow":271532400,"n":6,"e":-6,"d":-5,"h_accuracy":241,"v_accuracy":715,"n_sats":15,"flags":2} +{"crc":18867,"length":15,"msg_type":520,"payload":"cEEvEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271532400,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":9720,"length":22,"msg_type":524,"payload":"cEEvEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271532400,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":40290,"length":6,"msg_type":528,"payload":"cEEvEP//","preamble":85,"sender":22963,"tow":271532400,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":49809,"length":9,"msg_type":117,"payload":"/wAAAAAAAAAA","preamble":85,"sender":22963,"mask":255,"l1ca_bias":0,"l1p_bias":0,"l2ca_bias":0,"l2p_bias":0} +{"crc":5734,"length":11,"msg_type":258,"payload":"MgjUQS8QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271532500,"ns_residual":0,"flags":1} +{"crc":43269,"length":16,"msg_type":259,"payload":"EdRBLxDkBwMZAxkO/mTNHQ==","preamble":85,"sender":22963,"flags":17,"tow":271532500,"year":2020,"month":3,"day":25,"hours":3,"minutes":25,"seconds":14,"ns":499999998} +{"crc":3224,"length":34,"msg_type":522,"payload":"1EEvEE/Jj+1l6kJAfVc+F1aSXsCY0Fd+k9wxwAECWwQPBg==","preamble":85,"sender":22963,"tow":271532500,"lat":37.83123559494799,"lon":-122.2865045651251,"height":-17.86162557262341,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":14265,"length":22,"msg_type":526,"payload":"1EEvEP7/////////9/////EAywIPAg==","preamble":85,"sender":22963,"tow":271532500,"n":-2,"e":-1,"d":-9,"h_accuracy":241,"v_accuracy":715,"n_sats":15,"flags":2} +{"crc":6919,"length":15,"msg_type":520,"payload":"1EEvEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271532500,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":21121,"length":22,"msg_type":524,"payload":"1EEvEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271532500,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":31467,"length":6,"msg_type":528,"payload":"1EEvEP//","preamble":85,"sender":22963,"tow":271532500,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":11412,"length":11,"msg_type":258,"payload":"Mgg4Qi8QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271532600,"ns_residual":0,"flags":1} +{"crc":15930,"length":16,"msg_type":259,"payload":"EThCLxDkBwMZAxkO/kXDIw==","preamble":85,"sender":22963,"flags":17,"tow":271532600,"year":2020,"month":3,"day":25,"hours":3,"minutes":25,"seconds":14,"ns":599999998} +{"crc":24264,"length":34,"msg_type":522,"payload":"OEIvEMhym+1l6kJAp/uIF1aSXsATY5ztsuAxwAECWwQPBg==","preamble":85,"sender":22963,"tow":271532600,"lat":37.831235600378534,"lon":-122.2865046346402,"height":-17.877730227165625,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":4477,"length":22,"msg_type":526,"payload":"OEIvEAQAAAD1////HQAAAPEAywIPAg==","preamble":85,"sender":22963,"tow":271532600,"n":4,"e":-11,"d":29,"h_accuracy":241,"v_accuracy":715,"n_sats":15,"flags":2} +{"crc":51548,"length":15,"msg_type":520,"payload":"OEIvEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271532600,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":49210,"length":22,"msg_type":524,"payload":"OEIvEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271532600,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":5346,"length":6,"msg_type":528,"payload":"OEIvEP//","preamble":85,"sender":22963,"tow":271532600,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":30051,"length":147,"msg_type":137,"payload":"Iwy+HgQAMggAAABAMCoAAAEAwwCGscMAhrEAgPlBANjTQgCwzDUAHFQ3AABIsgAAOjMUuSw6w7kuPn/O4GKYQgBAAAAAgJKsSD8AAEDjnqK0QJ1VR5JSigbAf+7mjHBQPL5w7E/+60+tv7WNXBae1O4/TfYYl9sb7T0AAACArUROvwAGni0AAAAAvh4EADIIh4cA","preamble":85,"sender":22963,"common":{"sid":{"sat":35,"code":12},"toe":{"tow":270014,"wn":2098},"ura":2.0,"fit_interval":10800,"valid":1,"health_bits":0},"tgd1":-3.9e-9,"tgd2":-3.9e-9,"c_rs":31.1875,"c_rc":105.921875,"c_uc":0.0000015250407,"c_us":0.000012642704,"c_ic":-1.1641532e-8,"c_is":4.33065e-8,"dn":3.576934707973788e-9,"m0":2.03251721619182,"ecc":0.000752994092181325,"sqrta":5282.620655059814,"omega0":-2.817540304948763,"omegadot":-6.592417457791331e-9,"w":-0.05725038031956664,"inc":0.963454288172605,"inc_dot":2.1179453637827823e-10,"af0":-0.000923714367672801,"af1":1.7965185e-11,"af2":0.0,"toc":{"tow":270014,"wn":2098},"iode":135,"iodc":135} +{"crc":36026,"length":147,"msg_type":137,"payload":"Ggy+HgQAMggAAABAMCoAAAEAjyjOsY8ozrEACItCAAKUQwDIajYAMFE2AACGMwAAADHP95QuoDAyPiLf2/NWewdAAAAAAAXqRT8AAKA5nqK0QPup189o9PU//N6OmJlDP77QO8wk88PUP5/Et3R4h+4/gsMdrMKq/D0AAACAiUhEPwAwdy0AAAAAvh4EADIIh4cA","preamble":85,"sender":22963,"common":{"sid":{"sat":26,"code":12},"toe":{"tow":270014,"wn":2098},"ura":2.0,"fit_interval":10800,"valid":1,"health_bits":0},"tgd1":-6e-9,"tgd2":-6e-9,"c_rs":69.515625,"c_rc":296.01562,"c_uc":0.0000034985133,"c_us":0.0000031171367,"c_ic":6.239861e-8,"c_is":1.8626451e-9,"dn":4.235176412097173e-9,"m0":2.935224442622613,"ecc":0.0006687664426863194,"sqrta":5282.61806678772,"omega0":1.372170268902322,"omegadot":-7.279231780650402e-9,"w":0.32445982545408203,"inc":0.9540369300504102,"inc_dot":4.1716023354102695e-10,"af0":0.0006189986597746611,"af1":1.4050983e-11,"af2":0.0,"toc":{"tow":270014,"wn":2098},"iode":135,"iodc":135} +{"crc":62150,"length":147,"msg_type":137,"payload":"Igy+HgQAMggAAABAMCoAAAEAWdkAslnZALIAAPZBAAi9QgBwyTUA2mA3AABwMgAAKDJjDrfYncEuPsrGdL5ZIcw/AAAAQGOWQj8AAICzoKK0QIU/AkIEigbAJhks3F1UPL4vPWpWu+3FP6YFBUkK1O4/ejptkv007T0AAACAtNxCvwCgC64AAAAAvh4EADIIh4cA","preamble":85,"sender":22963,"common":{"sid":{"sat":34,"code":12},"toe":{"tow":270014,"wn":2098},"ura":2.0,"fit_interval":10800,"valid":1,"health_bits":0},"tgd1":-7.5e-9,"tgd2":-7.5e-9,"c_rs":30.75,"c_rc":94.515625,"c_uc":0.0000015008263,"c_us":0.0000134021975,"c_ic":1.3969839e-8,"c_is":9.778887e-9,"dn":3.5805062853157493e-9,"m0":0.21976777839295486,"ecc":0.0005672440165653825,"sqrta":5282.627738952637,"omega0":-2.8173909336982796,"omegadot":-6.595989035133292e-9,"w":0.17131749839288932,"inc":0.9633838106312183,"inc_dot":2.125088518466704e-10,"af0":-0.0005756265018135309,"af1":-3.174705e-11,"af2":0.0,"toc":{"tow":270014,"wn":2098},"iode":135,"iodc":135} +{"crc":37866,"length":147,"msg_type":137,"payload":"GAy+HgQAMggAAABAMCoAAAEA/+bbMf/m2zEA+IVCAKiTQwBQXjYAoEo2AABYMwAAjLIVM8pGpbAyPiifS3+Dnf4/AAAAwBY8Qz8AAEACnaK0QCg91PljXPY/lGvUpVN9P742eTqWOAfjP+Iz0JJ5fe4/ndgi/RFG+D0AAABAEg5NvwAkli0AAAAAvh4EADIIh4cA","preamble":85,"sender":22963,"common":{"sid":{"sat":24,"code":12},"toe":{"tow":270014,"wn":2098},"ura":2.0,"fit_interval":10800,"valid":1,"health_bits":0},"tgd1":6.4e-9,"tgd2":6.4e-9,"c_rs":66.984375,"c_rc":295.3125,"c_uc":0.0000033127144,"c_us":0.0000030193478,"c_ic":5.029142e-8,"c_is":-1.6298145e-8,"dn":4.351609833445096e-9,"m0":1.9134554836727578,"ecc":0.0005869971355423331,"sqrta":5282.613315582275,"omega0":1.397556281943091,"omegadot":-7.331733967577227e-9,"w":0.5946314748905823,"inc":0.9528167598197081,"inc_dot":3.532289991199278e-10,"af0":-0.0008866871939972043,"af1":1.7069013e-11,"af2":0.0,"toc":{"tow":270014,"wn":2098},"iode":135,"iodc":135} +{"crc":4271,"length":147,"msg_type":137,"payload":"GQy+HgQAMggAAABAMCoAAAEAP+2krz/tpK8AcI5CAByQQwC4bDYAIGo2AACUsgAAtLNlYpFiOUYyPjyioq2B4/M/AAAAANawOj8AAOBanqK0QNMn20Uo8vU/daM2E0QKP75XmFPFLSfdPykqFKcEh+4/DQoOoigw+j0AAACA/ldCvwCgZK0AAAAAvh4EADIIh4cA","preamble":85,"sender":22963,"common":{"sid":{"sat":25,"code":12},"toe":{"tow":270014,"wn":2098},"ura":2.0,"fit_interval":10800,"valid":1,"health_bits":0},"tgd1":-3e-10,"tgd2":-3e-10,"c_rs":71.21875,"c_rc":288.21875,"c_uc":0.0000035273843,"c_us":0.0000034887344,"c_ic":-1.7229468e-8,"c_is":-8.381903e-8,"dn":4.254820087477957e-9,"m0":1.2430435927036703,"ecc":0.0004072687588632107,"sqrta":5282.618574142456,"omega0":1.37162043845682,"omegadot":-7.227086751457774e-9,"w":0.4555162837044739,"inc":0.9539817107445902,"inc_dot":3.8108730238722235e-10,"af0":-0.0005598061252385378,"af1":-1.2995827e-11,"af2":0.0,"toc":{"tow":270014,"wn":2098},"iode":135,"iodc":135} +{"crc":42543,"length":147,"msg_type":137,"payload":"DAy+HgQAMggAAABAMCoAAAEAzy4XMV9wCbAAABtCAMjSQgAw7zUArGE3AACoMgAAALJoI1sFfXQqPnhZ35WZjwVAAAAA4LVyUj8AAIB2oKK0QPC50DJHWwbA+Cbw+HE4O76Vghpf7of+v3czuyPlpO8/MRP6+nc/8D0AAAAAZh82PwCo3iwAAAAAvh4EADIIh4cA","preamble":85,"sender":22963,"common":{"sid":{"sat":12,"code":12},"toe":{"tow":270014,"wn":2098},"ura":2.0,"fit_interval":10800,"valid":1,"health_bits":0},"tgd1":2.2e-9,"tgd2":-5e-10,"c_rs":38.75,"c_rc":105.390625,"c_uc":0.0000017820857,"c_us":0.000013451092,"c_ic":1.9557774e-8,"c_is":-7.450581e-9,"dn":3.0797711419728383e-9,"m0":2.695117159727655,"ecc":0.0011259819148108363,"sqrta":5282.626808166504,"omega0":-2.794569394106695,"omegadot":-6.337763993309523e-9,"w":-1.9081863131506556,"inc":0.9888787935138755,"inc_dot":2.3643842003780805e-10,"af0":0.0003375648520886898,"af1":6.3282712e-12,"af2":0.0,"toc":{"tow":270014,"wn":2098},"iode":135,"iodc":135} +{"crc":22496,"length":147,"msg_type":137,"payload":"Ewy+HgQAMggAAABAMCoAAAEAUbI+MlGyPjIAILLCAMhnQwCQkbYAWNA2AAB4sgAAhbO3JwNJRSExPsX1sYGVhf4/AAAAwGZgTj8AACA1oKK0QLpUxzpa1+a/nPmKHYAmPr66HEOqzv3zv9CGs83N0u4/GoYZD6w0Bb4AAACAEbc3PwD8SC0AAAAAvh4EADIIh4cA","preamble":85,"sender":22963,"common":{"sid":{"sat":19,"code":12},"toe":{"tow":270014,"wn":2098},"ura":2.0,"fit_interval":10800,"valid":1,"health_bits":0},"tgd1":1.11e-8,"tgd2":1.11e-8,"c_rs":-89.0625,"c_rc":231.78125,"c_uc":-0.0000043381006,"c_us":0.0000062091276,"c_ic":-1.44355e-8,"c_is":-6.193295e-8,"dn":3.988380417767678e-9,"m0":1.9076132837502524,"ecc":0.0009270192822441459,"sqrta":5282.625810623169,"omega0":-0.7137881420154806,"omegadot":-7.019935265624045e-9,"w":-1.2494646693101417,"inc":0.9632329003909152,"inc_dot":-6.171685646908344e-10,"af0":0.0003618638729676604,"af1":1.1424639e-11,"af2":0.0,"toc":{"tow":270014,"wn":2098},"iode":135,"iodc":135} +{"crc":61525,"length":147,"msg_type":137,"payload":"Fgy+HgQAMggAAABAMCoAAAEA5fp/MuX6fzIAKLXCAChjQwDUmrYAhN02AADksgAAgDLoZ92aQewwPiTcBIFHTtQ/AAAAwEvARD8AAGDun6K0QNF2psYWw+a/K084KavnPb4H1cEaEa7cv5y4HRYKze4/0Nr8rnXhBb4AAAAAlSpMvwDsfy0AAAAAvh4EADIIh4cA","preamble":85,"sender":22963,"common":{"sid":{"sat":22,"code":12},"toe":{"tow":270014,"wn":2098},"ura":2.0,"fit_interval":10800,"valid":1,"health_bits":0},"tgd1":1.49e-8,"tgd2":1.49e-8,"c_rs":-90.578125,"c_rc":227.15625,"c_uc":-0.0000046142377,"c_us":0.00000660168,"c_ic":-2.6542693e-8,"c_is":1.4901161e-8,"dn":3.9401641236512066e-9,"m0":0.31727779006490864,"ecc":0.0006332750199362636,"sqrta":5282.624731063843,"omega0":-0.711314571369906,"omegadot":-6.962790028152671e-9,"w":-0.4481241952228889,"inc":0.962529223628525,"inc_dot":-6.36812240071619e-10,"af0":-0.0008595683611929417,"af1":1.4547474e-11,"af2":0.0,"toc":{"tow":270014,"wn":2098},"iode":135,"iodc":135} +{"crc":13409,"length":34,"msg_type":30583,"payload":"gwK3QS8QA1f/AB/+f/f/AAf//9f/f/AA////6M725+/lcA==","preamble":85,"sender":22963,"sid":{"sat":131,"code":2},"tow":271532471,"message_type":3,"data":[87,255,0,31,254,127,247,255,0,7,255,255,215,255,127,240,0,255,255,255,232,206,246,231,239,229,112]} +{"crc":43061,"length":11,"msg_type":258,"payload":"MgicQi8QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271532700,"ns_residual":0,"flags":1} +{"crc":59501,"length":16,"msg_type":259,"payload":"EZxCLxDkBwMZAxkO/ia5KQ==","preamble":85,"sender":22963,"flags":17,"tow":271532700,"year":2020,"month":3,"day":25,"hours":3,"minutes":25,"seconds":14,"ns":699999998} +{"crc":30569,"length":34,"msg_type":522,"payload":"nEIvEBTcq+1l6kJAEGzLF1aSXsAI4SIWKuQxwAECWwQPBg==","preamble":85,"sender":22963,"tow":271532700,"lat":37.83123560802065,"lon":-122.28650469651643,"height":-17.891267188563717,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":55200,"length":22,"msg_type":526,"payload":"nEIvEP7///8CAAAA9f////EAywIPAg==","preamble":85,"sender":22963,"tow":271532700,"n":-2,"e":2,"d":-11,"h_accuracy":241,"v_accuracy":715,"n_sats":15,"flags":2} +{"crc":39912,"length":15,"msg_type":520,"payload":"nEIvEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271532700,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":46915,"length":22,"msg_type":524,"payload":"nEIvEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271532700,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":62315,"length":6,"msg_type":528,"payload":"nEIvEP//","preamble":85,"sender":22963,"tow":271532700,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":46778,"length":11,"msg_type":258,"payload":"MggAQy8QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271532800,"ns_residual":0,"flags":1} +{"crc":19846,"length":16,"msg_type":259,"payload":"EQBDLxDkBwMZAxkO/gevLw==","preamble":85,"sender":22963,"flags":17,"tow":271532800,"year":2020,"month":3,"day":25,"hours":3,"minutes":25,"seconds":14,"ns":799999998} +{"crc":38433,"length":34,"msg_type":522,"payload":"AEMvEMPo1e1l6kJA6o8JGFaSXsBc1FRcyOYxwAECWwQPBg==","preamble":85,"sender":22963,"tow":271532800,"lat":37.831235627601494,"lon":-122.28650475438886,"height":-17.901494761190733,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":5957,"length":22,"msg_type":526,"payload":"AEMvEAMAAAAFAAAAAAAAAPEAywIPAg==","preamble":85,"sender":22963,"tow":271532800,"n":3,"e":5,"d":0,"h_accuracy":241,"v_accuracy":715,"n_sats":15,"flags":2} +{"crc":18150,"length":15,"msg_type":520,"payload":"AEMvEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271532800,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":40068,"length":22,"msg_type":524,"payload":"AEMvEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271532800,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":40061,"length":6,"msg_type":528,"payload":"AEMvEP//","preamble":85,"sender":22963,"tow":271532800,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":44876,"length":237,"msg_type":97,"payload":"BQDUFQCyAgC5HwCiAAAAAAAAGQDYDADOHQDTEgDNAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwLLGQHMDAG7HwGXEgHEHQHBAAAABQHBAAAAAAAAAAAAAAAACwPVCQOzFAOtBQPRCgPPAAAABAO2FQPLCQSsFATNCgRBCwTJBQTDAAS8AAAABASuIwzIGgytIgygGAy8GQyhDAy5Ewy5FgzBAAAADA3PAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADA7BAAAAGQ6+Cw67GA7KAAAAHw6cIQ6VGRTJGBTXCxTCHxSuDBTOAAAAIRSpAAAA","preamble":85,"sender":22963,"states":[{"mesid":{"sat":5,"code":0},"cn0":212},{"mesid":{"sat":21,"code":0},"cn0":178},{"mesid":{"sat":2,"code":0},"cn0":185},{"mesid":{"sat":31,"code":0},"cn0":162},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":25,"code":0},"cn0":216},{"mesid":{"sat":12,"code":0},"cn0":206},{"mesid":{"sat":29,"code":0},"cn0":211},{"mesid":{"sat":18,"code":0},"cn0":205},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":131,"code":2},"cn0":203},{"mesid":{"sat":25,"code":1},"cn0":204},{"mesid":{"sat":12,"code":1},"cn0":187},{"mesid":{"sat":31,"code":1},"cn0":151},{"mesid":{"sat":18,"code":1},"cn0":196},{"mesid":{"sat":29,"code":1},"cn0":193},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":5,"code":1},"cn0":193},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":11,"code":3},"cn0":213},{"mesid":{"sat":9,"code":3},"cn0":179},{"mesid":{"sat":20,"code":3},"cn0":173},{"mesid":{"sat":5,"code":3},"cn0":209},{"mesid":{"sat":10,"code":3},"cn0":207},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":4,"code":3},"cn0":182},{"mesid":{"sat":21,"code":3},"cn0":203},{"mesid":{"sat":9,"code":4},"cn0":172},{"mesid":{"sat":20,"code":4},"cn0":205},{"mesid":{"sat":10,"code":4},"cn0":65},{"mesid":{"sat":11,"code":4},"cn0":201},{"mesid":{"sat":5,"code":4},"cn0":195},{"mesid":{"sat":0,"code":4},"cn0":188},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":4,"code":4},"cn0":174},{"mesid":{"sat":35,"code":12},"cn0":200},{"mesid":{"sat":26,"code":12},"cn0":173},{"mesid":{"sat":34,"code":12},"cn0":160},{"mesid":{"sat":24,"code":12},"cn0":188},{"mesid":{"sat":25,"code":12},"cn0":161},{"mesid":{"sat":12,"code":12},"cn0":185},{"mesid":{"sat":19,"code":12},"cn0":185},{"mesid":{"sat":22,"code":12},"cn0":193},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":12,"code":13},"cn0":207},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":12,"code":14},"cn0":193},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":25,"code":14},"cn0":190},{"mesid":{"sat":11,"code":14},"cn0":187},{"mesid":{"sat":24,"code":14},"cn0":202},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":31,"code":14},"cn0":156},{"mesid":{"sat":33,"code":14},"cn0":149},{"mesid":{"sat":25,"code":20},"cn0":201},{"mesid":{"sat":24,"code":20},"cn0":215},{"mesid":{"sat":11,"code":20},"cn0":194},{"mesid":{"sat":31,"code":20},"cn0":174},{"mesid":{"sat":12,"code":20},"cn0":206},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":33,"code":20},"cn0":169},{"mesid":{"sat":0,"code":0},"cn0":0}]} +{"crc":34187,"length":128,"msg_type":151,"payload":"AgAaHQUAKzUMAFEtFQB9GRkAbUYaAKEBHQChNx8AlQ4EAxUWBQMyIQkDXw4KA3EpCwOYJQwDqgMTAyIHFAMMMRUDlSUMDJQpEwwjIBQMDwIWDEMkGAyCIxkMnQ4aDGcVIgyOESMMIi0LDosyDA4PPBgObDYZDpcpHw5VESEOIA8=","preamble":85,"sender":22963,"azel":[{"sid":{"sat":2,"code":0},"az":26,"el":29},{"sid":{"sat":5,"code":0},"az":43,"el":53},{"sid":{"sat":12,"code":0},"az":81,"el":45},{"sid":{"sat":21,"code":0},"az":125,"el":25},{"sid":{"sat":25,"code":0},"az":109,"el":70},{"sid":{"sat":26,"code":0},"az":161,"el":1},{"sid":{"sat":29,"code":0},"az":161,"el":55},{"sid":{"sat":31,"code":0},"az":149,"el":14},{"sid":{"sat":4,"code":3},"az":21,"el":22},{"sid":{"sat":5,"code":3},"az":50,"el":33},{"sid":{"sat":9,"code":3},"az":95,"el":14},{"sid":{"sat":10,"code":3},"az":113,"el":41},{"sid":{"sat":11,"code":3},"az":152,"el":37},{"sid":{"sat":12,"code":3},"az":170,"el":3},{"sid":{"sat":19,"code":3},"az":34,"el":7},{"sid":{"sat":20,"code":3},"az":12,"el":49},{"sid":{"sat":21,"code":3},"az":149,"el":37},{"sid":{"sat":12,"code":12},"az":148,"el":41},{"sid":{"sat":19,"code":12},"az":35,"el":32},{"sid":{"sat":20,"code":12},"az":15,"el":2},{"sid":{"sat":22,"code":12},"az":67,"el":36},{"sid":{"sat":24,"code":12},"az":130,"el":35},{"sid":{"sat":25,"code":12},"az":157,"el":14},{"sid":{"sat":26,"code":12},"az":103,"el":21},{"sid":{"sat":34,"code":12},"az":142,"el":17},{"sid":{"sat":35,"code":12},"az":34,"el":45},{"sid":{"sat":11,"code":14},"az":139,"el":50},{"sid":{"sat":12,"code":14},"az":15,"el":60},{"sid":{"sat":24,"code":14},"az":108,"el":54},{"sid":{"sat":25,"code":14},"az":151,"el":41},{"sid":{"sat":31,"code":14},"az":85,"el":17},{"sid":{"sat":33,"code":14},"az":32,"el":15}]} +{"crc":53872,"length":11,"msg_type":258,"payload":"MghkQy8QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271532900,"ns_residual":0,"flags":1} +{"crc":33448,"length":16,"msg_type":259,"payload":"EWRDLxDkBwMZAxkO/uikNQ==","preamble":85,"sender":22963,"flags":17,"tow":271532900,"year":2020,"month":3,"day":25,"hours":3,"minutes":25,"seconds":14,"ns":899999998} +{"crc":48802,"length":34,"msg_type":522,"payload":"ZEMvEFbl4O1l6kJAXJpMGFaSXsDqQfZ58OkxwAECWwQPBg==","preamble":85,"sender":22963,"tow":271532900,"lat":37.83123563271754,"lon":-122.28650481682547,"height":-17.913825628873305,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":13782,"length":22,"msg_type":526,"payload":"ZEMvEPH////8////KwAAAPEAywIPAg==","preamble":85,"sender":22963,"tow":271532900,"n":-15,"e":-4,"d":43,"h_accuracy":241,"v_accuracy":715,"n_sats":15,"flags":2} +{"crc":27209,"length":15,"msg_type":520,"payload":"ZEMvEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271532900,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":33842,"length":22,"msg_type":524,"payload":"ZEMvEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271532900,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":50628,"length":6,"msg_type":528,"payload":"ZEMvEP//","preamble":85,"sender":22963,"tow":271532900,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":12431,"length":51,"msg_type":1025,"payload":"BkdMTyBMMk9GIE1FIDEgWysxMjQ4bXNdIGxvdyBDTjAgdG9vIGxvbmcsIGRyb3BwaW5n","preamble":85,"sender":22963,"level":6,"text":"GLO L2OF ME 1 [+1248ms] low CN0 too long, dropping"} +{"crc":36836,"length":249,"msg_type":74,"payload":"yEMvEAAAAAAyCEAJfLQ+sSCXBrY9/8PTDw8FAGEmEUUqTUIHJXkIcrIPDxUASgv5RZ6sWgcPUfbWuQ8PAgDamwNJXYCsB+tr/nmiDw8fAIcEKT1TkG0GbY/7yNgPDxkAJ+i8QA3TzQZ9YvRazg8PDACGrMw+gquZBkzJBW/TDw8dAL8EKT3/QQIFD4r8CswPDxkB2Oe8QCpETQUl8/Zhuw8PDAHSmwNJxsf6BaTE/m2YDw8fAS2szD4/oCQFe4MEDsEPDx0Bu3u0PjqlIgULZv+uwQ8PBQG2Xvk+bfS6Bid/BODVDw8LA/wP4UQWMVsHP8nuurMPDwkD","preamble":85,"sender":22963,"header":{"t":{"tow":271533000,"ns_residual":0,"wn":2098},"n_obs":64},"obs":[{"P":1052015625,"L":{"i":110567601,"f":182},"D":{"i":-195,"f":195},"cn0":211,"lock":15,"flags":15,"sid":{"sat":5,"code":0}},{"P":1158751841,"L":{"i":121785642,"f":37},"D":{"i":2169,"f":114},"cn0":178,"lock":15,"flags":15,"sid":{"sat":21,"code":0}},{"P":1173949258,"L":{"i":123382942,"f":15},"D":{"i":-2479,"f":214},"cn0":185,"lock":15,"flags":15,"sid":{"sat":2,"code":0}},{"P":1224973274,"L":{"i":128745565,"f":235},"D":{"i":-405,"f":121},"cn0":162,"lock":15,"flags":15,"sid":{"sat":31,"code":0}},{"P":1026098311,"L":{"i":107843667,"f":109},"D":{"i":-1137,"f":200},"cn0":216,"lock":15,"flags":15,"sid":{"sat":25,"code":0}},{"P":1086122023,"L":{"i":114152205,"f":125},"D":{"i":-2974,"f":90},"cn0":206,"lock":15,"flags":15,"sid":{"sat":12,"code":0}},{"P":1053600902,"L":{"i":110734210,"f":76},"D":{"i":1481,"f":111},"cn0":211,"lock":15,"flags":15,"sid":{"sat":29,"code":0}},{"P":1026098367,"L":{"i":84034047,"f":15},"D":{"i":-886,"f":10},"cn0":204,"lock":15,"flags":15,"sid":{"sat":25,"code":1}},{"P":1086121944,"L":{"i":88949802,"f":37},"D":{"i":-2317,"f":97},"cn0":187,"lock":15,"flags":15,"sid":{"sat":12,"code":1}},{"P":1224973266,"L":{"i":100321222,"f":164},"D":{"i":-316,"f":109},"cn0":152,"lock":15,"flags":15,"sid":{"sat":31,"code":1}},{"P":1053600813,"L":{"i":86286399,"f":123},"D":{"i":1155,"f":14},"cn0":193,"lock":15,"flags":15,"sid":{"sat":29,"code":1}},{"P":1052015547,"L":{"i":86156602,"f":11},"D":{"i":-154,"f":174},"cn0":193,"lock":15,"flags":15,"sid":{"sat":5,"code":1}},{"P":1056530102,"L":{"i":112915565,"f":39},"D":{"i":1151,"f":224},"cn0":213,"lock":15,"flags":15,"sid":{"sat":11,"code":3}},{"P":1155600380,"L":{"i":123416854,"f":63},"D":{"i":-4407,"f":186},"cn0":179,"lock":15,"flags":15,"sid":{"sat":9,"code":3}}]} +{"crc":52465,"length":249,"msg_type":74,"payload":"yEMvEAAAAAAyCEE/mDA9JVCLBqZD+9WuDw8UA5tkA0AoANgGk4sIYtEPDwUDloBtPvzOpwY9EvRQzw8PCgMe1gpD6R8uB9fO+oC2Dw8EA1ZRJj9zL8IGP1MG0coPDxUDZBDhRHC0uAVHmfKtqw8PCQSbmTA9lgUXBVdR/FDNDw8UBOVf+T57EzwFrIADgskPDwsEdWUDQM6qUgUHpQZ/ww8PBQQG1wpDAaeVBXb1+0auDw8EBBJWmUVilz8HjyP6m8gPDyMMLK37SSl6tAdQP/SBrQ8PGgxiVxBMwfPrB2DJCCSgDw8iDBkRpEfhB3YHmeH6srwPDxgM","preamble":85,"sender":22963,"header":{"t":{"tow":271533000,"ns_residual":0,"wn":2098},"n_obs":65},"obs":[{"P":1026594879,"L":{"i":109793317,"f":166},"D":{"i":-1213,"f":213},"cn0":174,"lock":15,"flags":15,"sid":{"sat":20,"code":3}},{"P":1073964187,"L":{"i":114819112,"f":147},"D":{"i":2187,"f":98},"cn0":209,"lock":15,"flags":15,"sid":{"sat":5,"code":3}},{"P":1047363734,"L":{"i":111660796,"f":61},"D":{"i":-3054,"f":80},"cn0":207,"lock":15,"flags":15,"sid":{"sat":10,"code":3}},{"P":1124783646,"L":{"i":120463337,"f":215},"D":{"i":-1330,"f":128},"cn0":182,"lock":15,"flags":15,"sid":{"sat":4,"code":3}},{"P":1059475798,"L":{"i":113389427,"f":63},"D":{"i":1619,"f":209},"cn0":202,"lock":15,"flags":15,"sid":{"sat":21,"code":3}},{"P":1155600484,"L":{"i":95990896,"f":71},"D":{"i":-3431,"f":173},"cn0":171,"lock":15,"flags":15,"sid":{"sat":9,"code":4}},{"P":1026595227,"L":{"i":85394838,"f":87},"D":{"i":-943,"f":80},"cn0":205,"lock":15,"flags":15,"sid":{"sat":20,"code":4}},{"P":1056530405,"L":{"i":87823227,"f":172},"D":{"i":896,"f":130},"cn0":201,"lock":15,"flags":15,"sid":{"sat":11,"code":4}},{"P":1073964405,"L":{"i":89303758,"f":7},"D":{"i":1701,"f":127},"cn0":195,"lock":15,"flags":15,"sid":{"sat":5,"code":4}},{"P":1124783878,"L":{"i":93693697,"f":118},"D":{"i":-1035,"f":70},"cn0":174,"lock":15,"flags":15,"sid":{"sat":4,"code":4}},{"P":1167676946,"L":{"i":121608034,"f":143},"D":{"i":-1501,"f":155},"cn0":200,"lock":15,"flags":15,"sid":{"sat":35,"code":12}},{"P":1241230636,"L":{"i":129268265,"f":80},"D":{"i":-3009,"f":129},"cn0":173,"lock":15,"flags":15,"sid":{"sat":26,"code":12}},{"P":1276139362,"L":{"i":132903873,"f":96},"D":{"i":2249,"f":36},"cn0":160,"lock":15,"flags":15,"sid":{"sat":34,"code":12}},{"P":1201934617,"L":{"i":125175777,"f":153},"D":{"i":-1311,"f":178},"cn0":188,"lock":15,"flags":15,"sid":{"sat":24,"code":12}}]} +{"crc":63018,"length":249,"msg_type":74,"payload":"yEMvEAAAAAAyCEIdzA9NZo4GCBwkBdGhDw8ZDH95SkW9YDcHoUsGSLgPDwwM0QxER/wHbAdQ1f56uQ8PEwy7c1hH6SduB8FPCRfBDw8WDEZ5SkWIgpQF990EktAPDwwNKNcJQtzQ8AaO+/vJwQ8PDA5KER5LBhjlByk5BN+9Dw8ZDgZOHkfifnkHVxUEK7sPDwsOL2osQwlbDwcNKfmzyQ8PGA7JdFBRCtOLCAqc8/GcDw8fDm5A/FFR4Z0IT6T3xZUPDyEOIREeS1yhDAbmPAPfyQ8PGRRVbCxDnNtoBe/C+vfXDw8YFENNHkdEL7oFKyEDRcIPDwsU","preamble":85,"sender":22963,"header":{"t":{"tow":271533000,"ns_residual":0,"wn":2098},"n_obs":66},"obs":[{"P":1292880925,"L":{"i":134647398,"f":28},"D":{"i":1316,"f":209},"cn0":161,"lock":15,"flags":15,"sid":{"sat":25,"code":12}},{"P":1162508671,"L":{"i":121069757,"f":161},"D":{"i":1611,"f":72},"cn0":184,"lock":15,"flags":15,"sid":{"sat":12,"code":12}},{"P":1195642065,"L":{"i":124520444,"f":80},"D":{"i":-299,"f":122},"cn0":185,"lock":15,"flags":15,"sid":{"sat":19,"code":12}},{"P":1196979131,"L":{"i":124659689,"f":193},"D":{"i":2383,"f":23},"cn0":193,"lock":15,"flags":15,"sid":{"sat":22,"code":12}},{"P":1162508614,"L":{"i":93618824,"f":247},"D":{"i":1245,"f":146},"cn0":208,"lock":15,"flags":15,"sid":{"sat":12,"code":13}},{"P":1107941160,"L":{"i":116445404,"f":142},"D":{"i":-1029,"f":201},"cn0":193,"lock":15,"flags":15,"sid":{"sat":12,"code":14}},{"P":1260261706,"L":{"i":132454406,"f":41},"D":{"i":1081,"f":223},"cn0":189,"lock":15,"flags":15,"sid":{"sat":25,"code":14}},{"P":1193168390,"L":{"i":125402850,"f":87},"D":{"i":1045,"f":43},"cn0":187,"lock":15,"flags":15,"sid":{"sat":11,"code":14}},{"P":1126984239,"L":{"i":118446857,"f":13},"D":{"i":-1751,"f":179},"cn0":201,"lock":15,"flags":15,"sid":{"sat":24,"code":14}},{"P":1364227273,"L":{"i":143381258,"f":10},"D":{"i":-3172,"f":241},"cn0":156,"lock":15,"flags":15,"sid":{"sat":31,"code":14}},{"P":1375486062,"L":{"i":144564561,"f":79},"D":{"i":-2140,"f":197},"cn0":149,"lock":15,"flags":15,"sid":{"sat":33,"code":14}},{"P":1260261665,"L":{"i":101491036,"f":230},"D":{"i":828,"f":223},"cn0":201,"lock":15,"flags":15,"sid":{"sat":25,"code":20}},{"P":1126984789,"L":{"i":90758044,"f":239},"D":{"i":-1342,"f":247},"cn0":215,"lock":15,"flags":15,"sid":{"sat":24,"code":20}},{"P":1193168195,"L":{"i":96087876,"f":43},"D":{"i":801,"f":69},"cn0":194,"lock":15,"flags":15,"sid":{"sat":11,"code":20}}]} +{"crc":35905,"length":62,"msg_type":74,"payload":"yEMvEAAAAAAyCEMpdVBRsmKMBt+B9ryuDw8fFIbWCULvdFEFf+v8pM4PDwwUN0D8UY44mgbMmfngqQ8PIRQ=","preamble":85,"sender":22963,"header":{"t":{"tow":271533000,"ns_residual":0,"wn":2098},"n_obs":67},"obs":[{"P":1364227369,"L":{"i":109863602,"f":223},"D":{"i":-2431,"f":188},"cn0":174,"lock":15,"flags":15,"sid":{"sat":31,"code":20}},{"P":1107940998,"L":{"i":89224431,"f":127},"D":{"i":-789,"f":164},"cn0":206,"lock":15,"flags":15,"sid":{"sat":12,"code":20}},{"P":1375486007,"L":{"i":110770318,"f":204},"D":{"i":-1639,"f":224},"cn0":169,"lock":15,"flags":15,"sid":{"sat":33,"code":20}}]} +{"crc":49809,"length":9,"msg_type":117,"payload":"/wAAAAAAAAAA","preamble":85,"sender":22963,"mask":255,"l1ca_bias":0,"l1p_bias":0,"l2ca_bias":0,"l2p_bias":0} +{"crc":32558,"length":11,"msg_type":258,"payload":"MgjIQy8QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271533000,"ns_residual":0,"flags":1} +{"crc":33275,"length":16,"msg_type":259,"payload":"EchDLxDkBwMZAxkO/smaOw==","preamble":85,"sender":22963,"flags":17,"tow":271533000,"year":2020,"month":3,"day":25,"hours":3,"minutes":25,"seconds":14,"ns":999999998} +{"crc":45032,"length":34,"msg_type":522,"payload":"yEMvELvrAu5l6kJAhByFGFaSXsB5ROTKOewxwAECWwQPBg==","preamble":85,"sender":22963,"tow":271533000,"lat":37.83123564856165,"lon":-122.28650486945304,"height":-17.92275684426247,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":13023,"length":22,"msg_type":526,"payload":"yEMvEAEAAAAHAAAA+v////EAywIPAg==","preamble":85,"sender":22963,"tow":271533000,"n":1,"e":7,"d":-6,"h_accuracy":241,"v_accuracy":715,"n_sats":15,"flags":2} +{"crc":8120,"length":15,"msg_type":520,"payload":"yEMvEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271533000,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":44520,"length":22,"msg_type":524,"payload":"yEMvEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271533000,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":12047,"length":6,"msg_type":528,"payload":"yEMvEP//","preamble":85,"sender":22963,"tow":271533000,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":40942,"length":4,"msg_type":65535,"payload":"AAUCgA==","preamble":85,"sender":22963,"flags":2147616000} +{"crc":2168,"length":24,"msg_type":72,"payload":"UO0a3iqORMHK1UJhIkRQwc9nFIPvrk1B","preamble":85,"sender":22963,"x":-2694229.735196747,"y":-4264073.519704292,"z":3890655.0240602265} +{"crc":33243,"length":10,"msg_type":181,"payload":"6BbcA/MGPBUJFg==","preamble":85,"sender":22963,"dev_vin":5864,"cpu_vint":988,"cpu_vaux":1779,"cpu_temperature":5436,"fe_temperature":5641} +{"crc":25422,"length":11,"msg_type":258,"payload":"MggsRC8QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271533100,"ns_residual":0,"flags":1} +{"crc":63439,"length":16,"msg_type":259,"payload":"ESxELxDkBwMZAxkP/uD1BQ==","preamble":85,"sender":22963,"flags":17,"tow":271533100,"year":2020,"month":3,"day":25,"hours":3,"minutes":25,"seconds":15,"ns":99999998} +{"crc":28443,"length":34,"msg_type":522,"payload":"LEQvEJXHKO5l6kJAvKLVGFaSXsC3qOj7ye0xwAECWwQPBg==","preamble":85,"sender":22963,"tow":271533100,"lat":37.83123566619103,"lon":-122.28650494444713,"height":-17.928863281537556,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":12421,"length":22,"msg_type":526,"payload":"LEQvEAUAAAD2////8P////EAywIPAg==","preamble":85,"sender":22963,"tow":271533100,"n":5,"e":-10,"d":-16,"h_accuracy":241,"v_accuracy":715,"n_sats":15,"flags":2} +{"crc":5891,"length":15,"msg_type":520,"payload":"LEQvEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271533100,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":1611,"length":22,"msg_type":524,"payload":"LEQvEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271533100,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":50498,"length":6,"msg_type":528,"payload":"LEQvEP//","preamble":85,"sender":22963,"tow":271533100,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":40430,"length":11,"msg_type":258,"payload":"MgiQRC8QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271533200,"ns_residual":0,"flags":1} +{"crc":48368,"length":16,"msg_type":259,"payload":"EZBELxDkBwMZAxkP/sHrCw==","preamble":85,"sender":22963,"flags":17,"tow":271533200,"year":2020,"month":3,"day":25,"hours":3,"minutes":25,"seconds":15,"ns":199999998} +{"crc":308,"length":34,"msg_type":522,"payload":"kEQvEG31Vu5l6kJAy2wkGVaSXsCE9yVtEPAxwAECWwQPBg==","preamble":85,"sender":22963,"tow":271533200,"lat":37.831235687694836,"lon":-122.28650501782538,"height":-17.93775064637113,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":57980,"length":22,"msg_type":526,"payload":"kEQvEAsAAADy////+P////EAywIPAg==","preamble":85,"sender":22963,"tow":271533200,"n":11,"e":-14,"d":-8,"h_accuracy":241,"v_accuracy":715,"n_sats":15,"flags":2} +{"crc":11384,"length":15,"msg_type":520,"payload":"kEQvEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271533200,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":37591,"length":22,"msg_type":524,"payload":"kEQvEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271533200,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":13581,"length":6,"msg_type":528,"payload":"kEQvEP//","preamble":85,"sender":22963,"tow":271533200,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":63780,"length":11,"msg_type":258,"payload":"Mgj0RC8QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271533300,"ns_residual":0,"flags":1} +{"crc":3796,"length":16,"msg_type":259,"payload":"EfRELxDkBwMZAxkP/qLhEQ==","preamble":85,"sender":22963,"flags":17,"tow":271533300,"year":2020,"month":3,"day":25,"hours":3,"minutes":25,"seconds":15,"ns":299999998} +{"crc":53557,"length":34,"msg_type":522,"payload":"9EQvEH/Xbu5l6kJAaPlmGVaSXsDCD2VTrvMxwAECWwQPBg==","preamble":85,"sender":22963,"tow":271533300,"lat":37.831235698816265,"lon":-122.28650507980421,"height":-17.951878750012618,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":19883,"length":22,"msg_type":526,"payload":"9EQvEAQAAAAHAAAAEgAAAPEAywIPAg==","preamble":85,"sender":22963,"tow":271533300,"n":4,"e":7,"d":18,"h_accuracy":241,"v_accuracy":715,"n_sats":15,"flags":2} +{"crc":215,"length":15,"msg_type":520,"payload":"9EQvEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271533300,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":35425,"length":22,"msg_type":524,"payload":"9EQvEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271533300,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":27828,"length":6,"msg_type":528,"payload":"9EQvEP//","preamble":85,"sender":22963,"tow":271533300,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":20365,"length":237,"msg_type":97,"payload":"BQDSFQCxAgC4HwChAAAAAAAAGQDXDADNHQDSEgDLAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwLKGQHMDAG7HwGXEgHEHQHCAAAABQHBAAAAAAAAAAAAAAAAZAPVYgOzZgOuZQPRXQPPAAAAagO2aAPLYgSsZgTNAAAAZATJZQTDaAS8AAAAagSuIwzIGgytIgygGAy8GQyhDAy4Ewy5FgzAAAAADA3QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADA7BAAAAGQ6+Cw67GA7KAAAAHw6cIQ6WGRTJGBTXCxTBHxSvDBTOAAAAIRSpAAAA","preamble":85,"sender":22963,"states":[{"mesid":{"sat":5,"code":0},"cn0":210},{"mesid":{"sat":21,"code":0},"cn0":177},{"mesid":{"sat":2,"code":0},"cn0":184},{"mesid":{"sat":31,"code":0},"cn0":161},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":25,"code":0},"cn0":215},{"mesid":{"sat":12,"code":0},"cn0":205},{"mesid":{"sat":29,"code":0},"cn0":210},{"mesid":{"sat":18,"code":0},"cn0":203},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":131,"code":2},"cn0":202},{"mesid":{"sat":25,"code":1},"cn0":204},{"mesid":{"sat":12,"code":1},"cn0":187},{"mesid":{"sat":31,"code":1},"cn0":151},{"mesid":{"sat":18,"code":1},"cn0":196},{"mesid":{"sat":29,"code":1},"cn0":194},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":5,"code":1},"cn0":193},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":100,"code":3},"cn0":213},{"mesid":{"sat":98,"code":3},"cn0":179},{"mesid":{"sat":102,"code":3},"cn0":174},{"mesid":{"sat":101,"code":3},"cn0":209},{"mesid":{"sat":93,"code":3},"cn0":207},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":106,"code":3},"cn0":182},{"mesid":{"sat":104,"code":3},"cn0":203},{"mesid":{"sat":98,"code":4},"cn0":172},{"mesid":{"sat":102,"code":4},"cn0":205},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":100,"code":4},"cn0":201},{"mesid":{"sat":101,"code":4},"cn0":195},{"mesid":{"sat":104,"code":4},"cn0":188},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":106,"code":4},"cn0":174},{"mesid":{"sat":35,"code":12},"cn0":200},{"mesid":{"sat":26,"code":12},"cn0":173},{"mesid":{"sat":34,"code":12},"cn0":160},{"mesid":{"sat":24,"code":12},"cn0":188},{"mesid":{"sat":25,"code":12},"cn0":161},{"mesid":{"sat":12,"code":12},"cn0":184},{"mesid":{"sat":19,"code":12},"cn0":185},{"mesid":{"sat":22,"code":12},"cn0":192},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":12,"code":13},"cn0":208},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":12,"code":14},"cn0":193},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":25,"code":14},"cn0":190},{"mesid":{"sat":11,"code":14},"cn0":187},{"mesid":{"sat":24,"code":14},"cn0":202},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":31,"code":14},"cn0":156},{"mesid":{"sat":33,"code":14},"cn0":150},{"mesid":{"sat":25,"code":20},"cn0":201},{"mesid":{"sat":24,"code":20},"cn0":215},{"mesid":{"sat":11,"code":20},"cn0":193},{"mesid":{"sat":31,"code":20},"cn0":175},{"mesid":{"sat":12,"code":20},"cn0":206},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":33,"code":20},"cn0":169},{"mesid":{"sat":0,"code":0},"cn0":0}]} +{"crc":5033,"length":11,"msg_type":258,"payload":"MghYRS8QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271533400,"ns_residual":0,"flags":1} +{"crc":32327,"length":16,"msg_type":259,"payload":"EVhFLxDkBwMZAxkP/oPXFw==","preamble":85,"sender":22963,"flags":17,"tow":271533400,"year":2020,"month":3,"day":25,"hours":3,"minutes":25,"seconds":15,"ns":399999998} +{"crc":49894,"length":34,"msg_type":522,"payload":"WEUvELV9a+5l6kJAjNzDGVaSXsAtW6h2lPUxwAECWwQPBg==","preamble":85,"sender":22963,"tow":271533400,"lat":37.831235697255956,"lon":-122.28650516631222,"height":-17.959296623327806,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":56398,"length":22,"msg_type":526,"payload":"WEUvEPf////3/////v////EAywIPAg==","preamble":85,"sender":22963,"tow":271533400,"n":-9,"e":-9,"d":-2,"h_accuracy":241,"v_accuracy":715,"n_sats":15,"flags":2} +{"crc":3655,"length":15,"msg_type":520,"payload":"WEUvEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271533400,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":30285,"length":22,"msg_type":524,"payload":"WEUvEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271533400,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":11310,"length":6,"msg_type":528,"payload":"WEUvEP//","preamble":85,"sender":22963,"tow":271533400,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":49809,"length":9,"msg_type":117,"payload":"/wAAAAAAAAAA","preamble":85,"sender":22963,"mask":255,"l1ca_bias":0,"l1p_bias":0,"l2ca_bias":0,"l2p_bias":0} +{"crc":51409,"length":11,"msg_type":258,"payload":"Mgi8RS8QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271533500,"ns_residual":0,"flags":1} +{"crc":28329,"length":16,"msg_type":259,"payload":"EbxFLxDkBwMZAxkP/mTNHQ==","preamble":85,"sender":22963,"flags":17,"tow":271533500,"year":2020,"month":3,"day":25,"hours":3,"minutes":25,"seconds":15,"ns":499999998} +{"crc":21420,"length":34,"msg_type":522,"payload":"vEUvEM+kVO5l6kJAjh0TGlaSXsCwSABDiPcxwAECWwQPBg==","preamble":85,"sender":22963,"tow":271533500,"lat":37.83123568661687,"lon":-122.2865052401232,"height":-17.96692293888981,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":40205,"length":22,"msg_type":526,"payload":"vEUvEPH///8FAAAABwAAAPEAywIPAg==","preamble":85,"sender":22963,"tow":271533500,"n":-15,"e":5,"d":7,"h_accuracy":241,"v_accuracy":715,"n_sats":15,"flags":2} +{"crc":30458,"length":15,"msg_type":520,"payload":"vEUvEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271533500,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":54382,"length":22,"msg_type":524,"payload":"vEUvEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271533500,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":41399,"length":6,"msg_type":528,"payload":"vEUvEP//","preamble":85,"sender":22963,"tow":271533500,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":23032,"length":11,"msg_type":258,"payload":"MgggRi8QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271533600,"ns_residual":0,"flags":1} +{"crc":1,"length":16,"msg_type":259,"payload":"ESBGLxDkBwMZAxkP/kXDIw==","preamble":85,"sender":22963,"flags":17,"tow":271533600,"year":2020,"month":3,"day":25,"hours":3,"minutes":25,"seconds":15,"ns":599999998} +{"crc":9873,"length":34,"msg_type":522,"payload":"IEYvEI9tPu5l6kJAMJ5hGlaSXsC/cocfh/gxwAECWwQPBg==","preamble":85,"sender":22963,"tow":271533600,"lat":37.831235676271824,"lon":-122.28650531323433,"height":-17.970811815803923,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":50881,"length":22,"msg_type":526,"payload":"IEYvEPz///8HAAAA//////EAywIPAg==","preamble":85,"sender":22963,"tow":271533600,"n":-4,"e":7,"d":-1,"h_accuracy":241,"v_accuracy":715,"n_sats":15,"flags":2} +{"crc":23862,"length":15,"msg_type":520,"payload":"IEYvEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271533600,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":17508,"length":22,"msg_type":524,"payload":"IEYvEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271533600,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":35362,"length":6,"msg_type":528,"payload":"IEYvEP//","preamble":85,"sender":22963,"tow":271533600,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":56665,"length":11,"msg_type":258,"payload":"MgiERi8QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271533700,"ns_residual":0,"flags":1} +{"crc":54870,"length":16,"msg_type":259,"payload":"EYRGLxDkBwMZAxkP/ia5KQ==","preamble":85,"sender":22963,"flags":17,"tow":271533700,"year":2020,"month":3,"day":25,"hours":3,"minutes":25,"seconds":15,"ns":699999998} +{"crc":42562,"length":34,"msg_type":522,"payload":"hEYvEP0fT+5l6kJA7la+GlaSXsCeOQEipPgxwAECWwQPBg==","preamble":85,"sender":22963,"tow":271533700,"lat":37.831235684046966,"lon":-122.2865053995881,"height":-17.971254468249406,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":18720,"length":22,"msg_type":526,"payload":"hEYvEBAAAAD5////1/////EAywIPAg==","preamble":85,"sender":22963,"tow":271533700,"n":16,"e":-7,"d":-41,"h_accuracy":241,"v_accuracy":715,"n_sats":15,"flags":2} +{"crc":3970,"length":15,"msg_type":520,"payload":"hEYvEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271533700,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":13085,"length":22,"msg_type":524,"payload":"hEYvEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271533700,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":28075,"length":6,"msg_type":528,"payload":"hEYvEP//","preamble":85,"sender":22963,"tow":271533700,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":53755,"length":34,"msg_type":30583,"payload":"gwKiRS8QBFf/f//+f/AAf//9/+/8f/f/f/f/7l5uqq//8A==","preamble":85,"sender":22963,"sid":{"sat":131,"code":2},"tow":271533474,"message_type":4,"data":[87,255,127,255,254,127,240,0,127,255,253,255,239,252,127,247,255,127,247,255,238,94,110,170,175,255,240]} +{"crc":36972,"length":11,"msg_type":258,"payload":"MgjoRi8QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271533800,"ns_residual":0,"flags":1} +{"crc":42329,"length":16,"msg_type":259,"payload":"EehGLxDkBwMZAxkP/gevLw==","preamble":85,"sender":22963,"flags":17,"tow":271533800,"year":2020,"month":3,"day":25,"hours":3,"minutes":25,"seconds":15,"ns":799999998} +{"crc":35490,"length":34,"msg_type":522,"payload":"6EYvEO9uB+5l6kJAFDH9GlaSXsCJ3MbwgPsxwAECWwQPBg==","preamble":85,"sender":22963,"tow":271533800,"lat":37.831235650662954,"lon":-122.28650545812371,"height":-17.98243622641579,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":32732,"length":22,"msg_type":526,"payload":"6EYvEPn///8CAAAANgAAAPEAywIPAg==","preamble":85,"sender":22963,"tow":271533800,"n":-7,"e":2,"d":54,"h_accuracy":241,"v_accuracy":715,"n_sats":15,"flags":2} +{"crc":1128,"length":15,"msg_type":520,"payload":"6EYvEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271533800,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":29960,"length":22,"msg_type":524,"payload":"6EYvEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271533800,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":14672,"length":6,"msg_type":528,"payload":"6EYvEP//","preamble":85,"sender":22963,"tow":271533800,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":10447,"length":237,"msg_type":97,"payload":"BQDRFQCwAgC3HwCgAAAAAAAAGQDWDADLHQDREgDLAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwLJGQHMDAG8HwGXEgHEHQHCAAAABQHBAAAAAAAAAAAAAAAACwPVCQOzFAOuBQPRCgPPAAAABAO1FQPLCQSsFATNAAAACwTIBQTDAAS8AAAABAStIwzIGgysIgyhGAy8GQyhDAy5Ewy5FgzBAAAADA3QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADA7BAAAAGQ6+Cw68GA7KAAAAHw6dIQ6WGRTJGBTXCxTCHxSvDBTOAAAAIRSpAAAA","preamble":85,"sender":22963,"states":[{"mesid":{"sat":5,"code":0},"cn0":209},{"mesid":{"sat":21,"code":0},"cn0":176},{"mesid":{"sat":2,"code":0},"cn0":183},{"mesid":{"sat":31,"code":0},"cn0":160},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":25,"code":0},"cn0":214},{"mesid":{"sat":12,"code":0},"cn0":203},{"mesid":{"sat":29,"code":0},"cn0":209},{"mesid":{"sat":18,"code":0},"cn0":203},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":131,"code":2},"cn0":201},{"mesid":{"sat":25,"code":1},"cn0":204},{"mesid":{"sat":12,"code":1},"cn0":188},{"mesid":{"sat":31,"code":1},"cn0":151},{"mesid":{"sat":18,"code":1},"cn0":196},{"mesid":{"sat":29,"code":1},"cn0":194},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":5,"code":1},"cn0":193},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":11,"code":3},"cn0":213},{"mesid":{"sat":9,"code":3},"cn0":179},{"mesid":{"sat":20,"code":3},"cn0":174},{"mesid":{"sat":5,"code":3},"cn0":209},{"mesid":{"sat":10,"code":3},"cn0":207},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":4,"code":3},"cn0":181},{"mesid":{"sat":21,"code":3},"cn0":203},{"mesid":{"sat":9,"code":4},"cn0":172},{"mesid":{"sat":20,"code":4},"cn0":205},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":11,"code":4},"cn0":200},{"mesid":{"sat":5,"code":4},"cn0":195},{"mesid":{"sat":0,"code":4},"cn0":188},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":4,"code":4},"cn0":173},{"mesid":{"sat":35,"code":12},"cn0":200},{"mesid":{"sat":26,"code":12},"cn0":172},{"mesid":{"sat":34,"code":12},"cn0":161},{"mesid":{"sat":24,"code":12},"cn0":188},{"mesid":{"sat":25,"code":12},"cn0":161},{"mesid":{"sat":12,"code":12},"cn0":185},{"mesid":{"sat":19,"code":12},"cn0":185},{"mesid":{"sat":22,"code":12},"cn0":193},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":12,"code":13},"cn0":208},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":12,"code":14},"cn0":193},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":25,"code":14},"cn0":190},{"mesid":{"sat":11,"code":14},"cn0":188},{"mesid":{"sat":24,"code":14},"cn0":202},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":31,"code":14},"cn0":157},{"mesid":{"sat":33,"code":14},"cn0":150},{"mesid":{"sat":25,"code":20},"cn0":201},{"mesid":{"sat":24,"code":20},"cn0":215},{"mesid":{"sat":11,"code":20},"cn0":194},{"mesid":{"sat":31,"code":20},"cn0":175},{"mesid":{"sat":12,"code":20},"cn0":206},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":33,"code":20},"cn0":169},{"mesid":{"sat":0,"code":0},"cn0":0}]} +{"crc":34187,"length":128,"msg_type":151,"payload":"AgAaHQUAKzUMAFEtFQB9GRkAbUYaAKEBHQChNx8AlQ4EAxUWBQMyIQkDXw4KA3EpCwOYJQwDqgMTAyIHFAMMMRUDlSUMDJQpEwwjIBQMDwIWDEMkGAyCIxkMnQ4aDGcVIgyOESMMIi0LDosyDA4PPBgObDYZDpcpHw5VESEOIA8=","preamble":85,"sender":22963,"azel":[{"sid":{"sat":2,"code":0},"az":26,"el":29},{"sid":{"sat":5,"code":0},"az":43,"el":53},{"sid":{"sat":12,"code":0},"az":81,"el":45},{"sid":{"sat":21,"code":0},"az":125,"el":25},{"sid":{"sat":25,"code":0},"az":109,"el":70},{"sid":{"sat":26,"code":0},"az":161,"el":1},{"sid":{"sat":29,"code":0},"az":161,"el":55},{"sid":{"sat":31,"code":0},"az":149,"el":14},{"sid":{"sat":4,"code":3},"az":21,"el":22},{"sid":{"sat":5,"code":3},"az":50,"el":33},{"sid":{"sat":9,"code":3},"az":95,"el":14},{"sid":{"sat":10,"code":3},"az":113,"el":41},{"sid":{"sat":11,"code":3},"az":152,"el":37},{"sid":{"sat":12,"code":3},"az":170,"el":3},{"sid":{"sat":19,"code":3},"az":34,"el":7},{"sid":{"sat":20,"code":3},"az":12,"el":49},{"sid":{"sat":21,"code":3},"az":149,"el":37},{"sid":{"sat":12,"code":12},"az":148,"el":41},{"sid":{"sat":19,"code":12},"az":35,"el":32},{"sid":{"sat":20,"code":12},"az":15,"el":2},{"sid":{"sat":22,"code":12},"az":67,"el":36},{"sid":{"sat":24,"code":12},"az":130,"el":35},{"sid":{"sat":25,"code":12},"az":157,"el":14},{"sid":{"sat":26,"code":12},"az":103,"el":21},{"sid":{"sat":34,"code":12},"az":142,"el":17},{"sid":{"sat":35,"code":12},"az":34,"el":45},{"sid":{"sat":11,"code":14},"az":139,"el":50},{"sid":{"sat":12,"code":14},"az":15,"el":60},{"sid":{"sat":24,"code":14},"az":108,"el":54},{"sid":{"sat":25,"code":14},"az":151,"el":41},{"sid":{"sat":31,"code":14},"az":85,"el":17},{"sid":{"sat":33,"code":14},"az":32,"el":15}]} +{"crc":21278,"length":11,"msg_type":258,"payload":"MghMRy8QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271533900,"ns_residual":0,"flags":1} +{"crc":28429,"length":16,"msg_type":259,"payload":"EUxHLxDkBwMZAxkP/uikNQ==","preamble":85,"sender":22963,"flags":17,"tow":271533900,"year":2020,"month":3,"day":25,"hours":3,"minutes":25,"seconds":15,"ns":899999998} +{"crc":55639,"length":34,"msg_type":522,"payload":"TEcvEA9myO1l6kJAYAQ9G1aSXsDu1oQoL/4xwAECWwQPBg==","preamble":85,"sender":22963,"tow":271533900,"lat":37.83123562131015,"lon":-122.28650551756573,"height":-17.99290707820085,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":62775,"length":22,"msg_type":526,"payload":"TEcvEPz////+////FQAAAPEAywIPAg==","preamble":85,"sender":22963,"tow":271533900,"n":-4,"e":-2,"d":21,"h_accuracy":241,"v_accuracy":715,"n_sats":15,"flags":2} +{"crc":11709,"length":15,"msg_type":520,"payload":"TEcvEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271533900,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":55175,"length":22,"msg_type":524,"payload":"TEcvEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271533900,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":29832,"length":6,"msg_type":528,"payload":"TEcvEP//","preamble":85,"sender":22963,"tow":271533900,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":33625,"length":249,"msg_type":74,"payload":"sEcvEAAAAAAyCEBGg7Q+dCGXBtE+/2PRDw8FALnVEEWwREIH1HoIiLAPDxUAdmf5RU22Wgc1UfYftw8PAgDyqgNJ8oGsB4tr/megDw8fAMcuKT3FlG0GAY/75NYPDxkAq1a9QKvezQZzY/S8zA8PDAB2dcw+uaWZBk7KBUjRDw8dAAAvKT11RQIFfIn88MwPDxkBXVa9QDdNTQWB9Pb8uw8PDAHBqgNJAcn6BenF/hOXDw8fASV1zD69myQFdYEEuMIPDx0B+4K0PtKlIgUUZ/86wQ8PBQGbNPk+7u+6BgWABEvVDw8LAzWx4UROQlsHPsjun7MPDwkD","preamble":85,"sender":22963,"header":{"t":{"tow":271534000,"ns_residual":0,"wn":2098},"n_obs":64},"obs":[{"P":1052017478,"L":{"i":110567796,"f":209},"D":{"i":-194,"f":99},"cn0":209,"lock":15,"flags":15,"sid":{"sat":5,"code":0}},{"P":1158731193,"L":{"i":121783472,"f":212},"D":{"i":2170,"f":136},"cn0":176,"lock":15,"flags":15,"sid":{"sat":21,"code":0}},{"P":1173972854,"L":{"i":123385421,"f":53},"D":{"i":-2479,"f":31},"cn0":183,"lock":15,"flags":15,"sid":{"sat":2,"code":0}},{"P":1224977138,"L":{"i":128745970,"f":139},"D":{"i":-405,"f":103},"cn0":160,"lock":15,"flags":15,"sid":{"sat":31,"code":0}},{"P":1026109127,"L":{"i":107844805,"f":1},"D":{"i":-1137,"f":228},"cn0":214,"lock":15,"flags":15,"sid":{"sat":25,"code":0}},{"P":1086150315,"L":{"i":114155179,"f":115},"D":{"i":-2973,"f":188},"cn0":204,"lock":15,"flags":15,"sid":{"sat":12,"code":0}},{"P":1053586806,"L":{"i":110732729,"f":78},"D":{"i":1482,"f":72},"cn0":209,"lock":15,"flags":15,"sid":{"sat":29,"code":0}},{"P":1026109184,"L":{"i":84034933,"f":124},"D":{"i":-887,"f":240},"cn0":204,"lock":15,"flags":15,"sid":{"sat":25,"code":1}},{"P":1086150237,"L":{"i":88952119,"f":129},"D":{"i":-2316,"f":252},"cn0":187,"lock":15,"flags":15,"sid":{"sat":12,"code":1}},{"P":1224977089,"L":{"i":100321537,"f":233},"D":{"i":-315,"f":19},"cn0":151,"lock":15,"flags":15,"sid":{"sat":31,"code":1}},{"P":1053586725,"L":{"i":86285245,"f":117},"D":{"i":1153,"f":184},"cn0":194,"lock":15,"flags":15,"sid":{"sat":29,"code":1}},{"P":1052017403,"L":{"i":86156754,"f":20},"D":{"i":-153,"f":58},"cn0":193,"lock":15,"flags":15,"sid":{"sat":5,"code":1}},{"P":1056519323,"L":{"i":112914414,"f":5},"D":{"i":1152,"f":75},"cn0":213,"lock":15,"flags":15,"sid":{"sat":11,"code":3}},{"P":1155641653,"L":{"i":123421262,"f":62},"D":{"i":-4408,"f":159},"cn0":179,"lock":15,"flags":15,"sid":{"sat":9,"code":3}}]} +{"crc":53857,"length":249,"msg_type":74,"payload":"sEcvEAAAAAAyCEGjxDA94lSLBmpF+1etDw8UA6YUA0Ce99cGMYoI/NEPDwUDf/BtPurapwZVE/Q/zw8PCgOLBgtDGyUuB/PO+o+1Dw8EAy8WJj8fKcIGbVUGisoPDxUDibHhRNTBuAW8nfLGrA8PCQTcxTA9RQkXBZtR/EjMDw8UBNQ1+T78DzwFWIEDH8gPDwsEmBUDQCmkUgWBpAb+ww8PBQREBwtDC6uVBfb2+7CtDw8EBF2OmUU/nT8HoSP6HcgPDyMM9B38SeqFtAcSQfQ6rQ8PGgwuAxBM+OrrB+rKCGCgDw8iDDlCpEf/DHYH3OH6/rwPDxgM","preamble":85,"sender":22963,"header":{"t":{"tow":271534000,"ns_residual":0,"wn":2098},"n_obs":65},"obs":[{"P":1026606243,"L":{"i":109794530,"f":106},"D":{"i":-1211,"f":87},"cn0":173,"lock":15,"flags":15,"sid":{"sat":20,"code":3}},{"P":1073943718,"L":{"i":114816926,"f":49},"D":{"i":2186,"f":252},"cn0":209,"lock":15,"flags":15,"sid":{"sat":5,"code":3}},{"P":1047392383,"L":{"i":111663850,"f":85},"D":{"i":-3053,"f":63},"cn0":207,"lock":15,"flags":15,"sid":{"sat":10,"code":3}},{"P":1124796043,"L":{"i":120464667,"f":243},"D":{"i":-1330,"f":143},"cn0":181,"lock":15,"flags":15,"sid":{"sat":4,"code":3}},{"P":1059460655,"L":{"i":113387807,"f":109},"D":{"i":1621,"f":138},"cn0":202,"lock":15,"flags":15,"sid":{"sat":21,"code":3}},{"P":1155641737,"L":{"i":95994324,"f":188},"D":{"i":-3427,"f":198},"cn0":172,"lock":15,"flags":15,"sid":{"sat":9,"code":4}},{"P":1026606556,"L":{"i":85395781,"f":155},"D":{"i":-943,"f":72},"cn0":204,"lock":15,"flags":15,"sid":{"sat":20,"code":4}},{"P":1056519636,"L":{"i":87822332,"f":88},"D":{"i":897,"f":31},"cn0":200,"lock":15,"flags":15,"sid":{"sat":11,"code":4}},{"P":1073943960,"L":{"i":89302057,"f":129},"D":{"i":1700,"f":254},"cn0":195,"lock":15,"flags":15,"sid":{"sat":5,"code":4}},{"P":1124796228,"L":{"i":93694731,"f":246},"D":{"i":-1034,"f":176},"cn0":173,"lock":15,"flags":15,"sid":{"sat":4,"code":4}},{"P":1167691357,"L":{"i":121609535,"f":161},"D":{"i":-1501,"f":29},"cn0":200,"lock":15,"flags":15,"sid":{"sat":35,"code":12}},{"P":1241259508,"L":{"i":129271274,"f":18},"D":{"i":-3007,"f":58},"cn0":173,"lock":15,"flags":15,"sid":{"sat":26,"code":12}},{"P":1276117806,"L":{"i":132901624,"f":234},"D":{"i":2250,"f":96},"cn0":160,"lock":15,"flags":15,"sid":{"sat":34,"code":12}},{"P":1201947193,"L":{"i":125177087,"f":220},"D":{"i":-1311,"f":254},"cn0":188,"lock":15,"flags":15,"sid":{"sat":24,"code":12}}]} +{"crc":28311,"length":249,"msg_type":74,"payload":"sEcvEAAAAAAyCEKomg9NQYkGCGElBTWhDw8ZDAs9SkVzWjcHDUwGPbgPDwwMCBhERycJbAci1f6duQ8PEwxjGlhHmx5uB6FPCRfBDw8WDOI8SkWrfZQFkd4EDdAPDwwNWv0JQuDU8Abd/fsmwQ8PDA4W6R1LzRPlB3o4BAW+Dw8ZDjcnHkfNenkHbhUEe7sPDwsOQqssQ+BhDwcAKfn1yg8PGA6h6lBRbt+LCMad8+GcDw8fDu+P/FGt6Z0ICqb3fJYPDyEO9+gdSyCeDAbaPAMZyQ8PGRRnrSxD2uBoBZLC+pLXDw8YFG8mHkcjLLoFhCEDzMIPDwsU","preamble":85,"sender":22963,"header":{"t":{"tow":271534000,"ns_residual":0,"wn":2098},"n_obs":66},"obs":[{"P":1292868264,"L":{"i":134646081,"f":97},"D":{"i":1317,"f":53},"cn0":161,"lock":15,"flags":15,"sid":{"sat":25,"code":12}},{"P":1162493195,"L":{"i":121068147,"f":13},"D":{"i":1612,"f":61},"cn0":184,"lock":15,"flags":15,"sid":{"sat":12,"code":12}},{"P":1195644936,"L":{"i":124520743,"f":34},"D":{"i":-299,"f":157},"cn0":185,"lock":15,"flags":15,"sid":{"sat":19,"code":12}},{"P":1196956259,"L":{"i":124657307,"f":161},"D":{"i":2383,"f":23},"cn0":193,"lock":15,"flags":15,"sid":{"sat":22,"code":12}},{"P":1162493154,"L":{"i":93617579,"f":145},"D":{"i":1246,"f":13},"cn0":208,"lock":15,"flags":15,"sid":{"sat":12,"code":13}},{"P":1107950938,"L":{"i":116446432,"f":221},"D":{"i":-1027,"f":38},"cn0":193,"lock":15,"flags":15,"sid":{"sat":12,"code":14}},{"P":1260251414,"L":{"i":132453325,"f":122},"D":{"i":1080,"f":5},"cn0":190,"lock":15,"flags":15,"sid":{"sat":25,"code":14}},{"P":1193158455,"L":{"i":125401805,"f":110},"D":{"i":1045,"f":123},"cn0":187,"lock":15,"flags":15,"sid":{"sat":11,"code":14}},{"P":1127000898,"L":{"i":118448608,"f":0},"D":{"i":-1751,"f":245},"cn0":202,"lock":15,"flags":15,"sid":{"sat":24,"code":14}},{"P":1364257441,"L":{"i":143384430,"f":198},"D":{"i":-3171,"f":225},"cn0":156,"lock":15,"flags":15,"sid":{"sat":31,"code":14}},{"P":1375506415,"L":{"i":144566701,"f":10},"D":{"i":-2138,"f":124},"cn0":150,"lock":15,"flags":15,"sid":{"sat":33,"code":14}},{"P":1260251383,"L":{"i":101490208,"f":218},"D":{"i":828,"f":25},"cn0":201,"lock":15,"flags":15,"sid":{"sat":25,"code":20}},{"P":1127001447,"L":{"i":90759386,"f":146},"D":{"i":-1342,"f":146},"cn0":215,"lock":15,"flags":15,"sid":{"sat":24,"code":20}},{"P":1193158255,"L":{"i":96087075,"f":132},"D":{"i":801,"f":204},"cn0":194,"lock":15,"flags":15,"sid":{"sat":11,"code":20}}]} +{"crc":18208,"length":62,"msg_type":74,"payload":"sEcvEAAAAAAyCEMU61BRMWyMBu2D9l+uDw8fFL78CUIDeFEFbe38v84PDwwUuo/8UfY+mgZKmPmNqQ8PIRQ=","preamble":85,"sender":22963,"header":{"t":{"tow":271534000,"ns_residual":0,"wn":2098},"n_obs":67},"obs":[{"P":1364257556,"L":{"i":109866033,"f":237},"D":{"i":-2429,"f":95},"cn0":174,"lock":15,"flags":15,"sid":{"sat":31,"code":20}},{"P":1107950782,"L":{"i":89225219,"f":109},"D":{"i":-787,"f":191},"cn0":206,"lock":15,"flags":15,"sid":{"sat":12,"code":20}},{"P":1375506362,"L":{"i":110771958,"f":74},"D":{"i":-1640,"f":141},"cn0":169,"lock":15,"flags":15,"sid":{"sat":33,"code":20}}]} +{"crc":49809,"length":9,"msg_type":117,"payload":"/wAAAAAAAAAA","preamble":85,"sender":22963,"mask":255,"l1ca_bias":0,"l1p_bias":0,"l2ca_bias":0,"l2p_bias":0} +{"crc":62055,"length":11,"msg_type":258,"payload":"MgiwRy8QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271534000,"ns_residual":0,"flags":1} +{"crc":2269,"length":16,"msg_type":259,"payload":"EbBHLxDkBwMZAxkP/smaOw==","preamble":85,"sender":22963,"flags":17,"tow":271534000,"year":2020,"month":3,"day":25,"hours":3,"minutes":25,"seconds":15,"ns":999999998} +{"crc":14448,"length":34,"msg_type":522,"payload":"sEcvECm/mO1l6kJAOVt8G1aSXsBvRfoBEwAywAECWwQPBg==","preamble":85,"sender":22963,"tow":271534000,"lat":37.83123559912048,"lon":-122.286505576555,"height":-18.000290034867643,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":22500,"length":22,"msg_type":526,"payload":"sEcvEP3////0////6P////EAywIPAg==","preamble":85,"sender":22963,"tow":271534000,"n":-3,"e":-12,"d":-24,"h_accuracy":241,"v_accuracy":715,"n_sats":15,"flags":2} +{"crc":15567,"length":15,"msg_type":520,"payload":"sEcvEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271534000,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":38465,"length":22,"msg_type":524,"payload":"sEcvEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271534000,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":61143,"length":6,"msg_type":528,"payload":"sEcvEP//","preamble":85,"sender":22963,"tow":271534000,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":40942,"length":4,"msg_type":65535,"payload":"AAUCgA==","preamble":85,"sender":22963,"flags":2147616000} +{"crc":2168,"length":24,"msg_type":72,"payload":"UO0a3iqORMHK1UJhIkRQwc9nFIPvrk1B","preamble":85,"sender":22963,"x":-2694229.735196747,"y":-4264073.519704292,"z":3890655.0240602265} +{"crc":47991,"length":26,"msg_type":23,"payload":"bWFpbgAAAAAAAAAAAAAAAAAAAAAAAAx1AAA=","preamble":85,"sender":22963,"name":"main\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":0,"stack_free":29964} +{"crc":37847,"length":26,"msg_type":23,"payload":"aWRsZQAAAAAAAAAAAAAAAAAAAABYAXwAAAA=","preamble":85,"sender":22963,"name":"idle\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":344,"stack_free":124} +{"crc":54377,"length":26,"msg_type":23,"payload":"cnBtc2cAAAAAAAAAAAAAAAAAAAABAPwNAAA=","preamble":85,"sender":22963,"name":"rpmsg\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":1,"stack_free":3580} +{"crc":51784,"length":26,"msg_type":23,"payload":"U0JQAAAAAAAAAAAAAAAAAAAAAAAAAPz/AAA=","preamble":85,"sender":22963,"name":"SBP\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":0,"stack_free":65532} +{"crc":33651,"length":26,"msg_type":23,"payload":"TkFQAAAAAAAAAAAAAAAAAAAAAAAAAASAAAA=","preamble":85,"sender":22963,"name":"NAP\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":0,"stack_free":32772} +{"crc":29877,"length":26,"msg_type":23,"payload":"bWFuYWdlIFBWAAAAAAAAAAAAAAAAACQEAAA=","preamble":85,"sender":22963,"name":"manage PV\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":0,"stack_free":1060} +{"crc":14252,"length":26,"msg_type":23,"payload":"SU1VAAAAAAAAAAAAAAAAAAAAAAAAAPQHAAA=","preamble":85,"sender":22963,"name":"IMU\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":0,"stack_free":2036} +{"crc":18976,"length":26,"msg_type":23,"payload":"SU1VIGF1eAAAAAAAAAAAAAAAAAAAAEwIAAA=","preamble":85,"sender":22963,"name":"IMU aux\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":0,"stack_free":2124} +{"crc":26120,"length":26,"msg_type":23,"payload":"bmRiAAAAAAAAAAAAAAAAAAAAAAAAAFAMAAA=","preamble":85,"sender":22963,"name":"ndb\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":0,"stack_free":3152} +{"crc":58848,"length":26,"msg_type":23,"payload":"TkFQIFRyYWNraW5nAAAAAAAAAAAjAdR3AAA=","preamble":85,"sender":22963,"name":"NAP Tracking\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":291,"stack_free":30676} +{"crc":40082,"length":26,"msg_type":23,"payload":"ZGVjb2RlAAAAAAAAAAAAAAAAAAAIANQGAAA=","preamble":85,"sender":22963,"name":"decode\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":8,"stack_free":1748} +{"crc":54737,"length":26,"msg_type":23,"payload":"bWFuYWdlIGFjcQAAAAAAAAAAAAC/AKR3AAA=","preamble":85,"sender":22963,"name":"manage acq\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":191,"stack_free":30628} +{"crc":58531,"length":26,"msg_type":23,"payload":"c3lzdGVtIG1vbml0b3IAAAAAAAAAACwGAAA=","preamble":85,"sender":22963,"name":"system monitor\u0000\u0000\u0000\u0000\u0000\u0000","cpu":0,"stack_free":1580} +{"crc":44438,"length":26,"msg_type":23,"payload":"V2F0Y2hkb2cAAAAAAAAAAAAAAAAAAOQDAAA=","preamble":85,"sender":22963,"name":"Watchdog\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":0,"stack_free":996} +{"crc":46399,"length":26,"msg_type":23,"payload":"c3RhcmxpbmcAAAAAAAAAAAAAAACXAPz/AAA=","preamble":85,"sender":22963,"name":"starling\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":151,"stack_free":65532} +{"crc":57561,"length":26,"msg_type":23,"payload":"bWVfY2FsY19wdnQAAAAAAAAAAAAJAIwjAAA=","preamble":85,"sender":22963,"name":"me_calc_pvt\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":9,"stack_free":9100} +{"crc":38576,"length":26,"msg_type":23,"payload":"UFBTAAAAAAAAAAAAAAAAAAAAAAAAAEgHAAA=","preamble":85,"sender":22963,"name":"PPS\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":0,"stack_free":1864} +{"crc":50933,"length":26,"msg_type":23,"payload":"c3BlY3RydW0gYW5hbHl6ZXIAAAAAANQPAAA=","preamble":85,"sender":22963,"name":"spectrum analyzer\u0000\u0000\u0000","cpu":0,"stack_free":4052} +{"crc":44804,"length":11,"msg_type":258,"payload":"MggUSC8QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271534100,"ns_residual":0,"flags":1} +{"crc":29817,"length":16,"msg_type":259,"payload":"ERRILxDkBwMZAxkQ/uD1BQ==","preamble":85,"sender":22963,"flags":17,"tow":271534100,"year":2020,"month":3,"day":25,"hours":3,"minutes":25,"seconds":16,"ns":99999998} +{"crc":6502,"length":34,"msg_type":522,"payload":"FEgvEC5WaO1l6kJADcisG1aSXsDf0T7KrgMywAECWwQPBg==","preamble":85,"sender":22963,"tow":271534100,"lat":37.83123557657778,"lon":-122.2865056216544,"height":-18.014385834061496,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":50031,"length":22,"msg_type":526,"payload":"FEgvEAAAAAAFAAAAGwAAAPEAywIPAg==","preamble":85,"sender":22963,"tow":271534100,"n":0,"e":5,"d":27,"h_accuracy":241,"v_accuracy":715,"n_sats":15,"flags":2} +{"crc":62742,"length":15,"msg_type":520,"payload":"FEgvEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271534100,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":10190,"length":22,"msg_type":524,"payload":"FEgvEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271534100,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":27815,"length":6,"msg_type":528,"payload":"FEgvEP//","preamble":85,"sender":22963,"tow":271534100,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":57905,"length":11,"msg_type":258,"payload":"Mgh4SC8QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271534200,"ns_residual":0,"flags":1} +{"crc":4055,"length":16,"msg_type":259,"payload":"EXhILxDkBwMZAxkQ/sHrCw==","preamble":85,"sender":22963,"flags":17,"tow":271534200,"year":2020,"month":3,"day":25,"hours":3,"minutes":25,"seconds":16,"ns":199999998} +{"crc":49970,"length":34,"msg_type":522,"payload":"eEgvEATAP+1l6kJAaGfmG1aSXsCf31FrXQYywAECWwQPBg==","preamble":85,"sender":22963,"tow":271534200,"lat":37.831235557678184,"lon":-122.28650567531952,"height":-18.024862964142468,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":16258,"length":22,"msg_type":526,"payload":"eEgvEAcAAAD+////9v////EAywIPAg==","preamble":85,"sender":22963,"tow":271534200,"n":7,"e":-2,"d":-10,"h_accuracy":241,"v_accuracy":715,"n_sats":15,"flags":2} +{"crc":65276,"length":15,"msg_type":520,"payload":"eEgvEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271534200,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":25051,"length":22,"msg_type":524,"payload":"eEgvEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271534200,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":14428,"length":6,"msg_type":528,"payload":"eEgvEP//","preamble":85,"sender":22963,"tow":271534200,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":26256,"length":11,"msg_type":258,"payload":"MgjcSC8QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271534300,"ns_residual":0,"flags":1} +{"crc":50152,"length":16,"msg_type":259,"payload":"EdxILxDkBwMZAxkQ/qLhEQ==","preamble":85,"sender":22963,"flags":17,"tow":271534300,"year":2020,"month":3,"day":25,"hours":3,"minutes":25,"seconds":16,"ns":299999998} +{"crc":14337,"length":34,"msg_type":522,"payload":"3EgvEOOjAu1l6kJAq2QEHFaSXsCVU0EzSAkywAECWwQPBg==","preamble":85,"sender":22963,"tow":271534300,"lat":37.83123552922168,"lon":-122.28650570324923,"height":-18.036257937859393,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":40015,"length":22,"msg_type":526,"payload":"3EgvEPr///8DAAAACQAAAPEAywIPAg==","preamble":85,"sender":22963,"tow":271534300,"n":-6,"e":3,"d":9,"h_accuracy":241,"v_accuracy":715,"n_sats":15,"flags":2} +{"crc":44104,"length":15,"msg_type":520,"payload":"3EgvEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271534300,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":5794,"length":22,"msg_type":524,"payload":"3EgvEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271534300,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":57301,"length":6,"msg_type":528,"payload":"3EgvEP//","preamble":85,"sender":22963,"tow":271534300,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":60593,"length":237,"msg_type":97,"payload":"BQDRFQCvAgC2HwCgAAAAAAAAGQDVDADLHQDQEgDKAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwLIGQHMDAG7HwGXEgHEHQHCAAAABQHBAAAAAAAAAAAAAAAAZAPUYgOyZgOtZQPQXQPOAAAAagO0aAPKYgSsZgTMAAAAZATIZQTCaAS8AAAAagStIwzIGgysIgygGAy8GQygDAy4Ewy4FgzAAAAADA3QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADA7BAAAAGQ6+Cw67GA7KAAAAHw6dIQ6VGRTJGBTXCxTCHxSuDBTOAAAAIRSpAAAA","preamble":85,"sender":22963,"states":[{"mesid":{"sat":5,"code":0},"cn0":209},{"mesid":{"sat":21,"code":0},"cn0":175},{"mesid":{"sat":2,"code":0},"cn0":182},{"mesid":{"sat":31,"code":0},"cn0":160},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":25,"code":0},"cn0":213},{"mesid":{"sat":12,"code":0},"cn0":203},{"mesid":{"sat":29,"code":0},"cn0":208},{"mesid":{"sat":18,"code":0},"cn0":202},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":131,"code":2},"cn0":200},{"mesid":{"sat":25,"code":1},"cn0":204},{"mesid":{"sat":12,"code":1},"cn0":187},{"mesid":{"sat":31,"code":1},"cn0":151},{"mesid":{"sat":18,"code":1},"cn0":196},{"mesid":{"sat":29,"code":1},"cn0":194},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":5,"code":1},"cn0":193},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":100,"code":3},"cn0":212},{"mesid":{"sat":98,"code":3},"cn0":178},{"mesid":{"sat":102,"code":3},"cn0":173},{"mesid":{"sat":101,"code":3},"cn0":208},{"mesid":{"sat":93,"code":3},"cn0":206},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":106,"code":3},"cn0":180},{"mesid":{"sat":104,"code":3},"cn0":202},{"mesid":{"sat":98,"code":4},"cn0":172},{"mesid":{"sat":102,"code":4},"cn0":204},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":100,"code":4},"cn0":200},{"mesid":{"sat":101,"code":4},"cn0":194},{"mesid":{"sat":104,"code":4},"cn0":188},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":106,"code":4},"cn0":173},{"mesid":{"sat":35,"code":12},"cn0":200},{"mesid":{"sat":26,"code":12},"cn0":172},{"mesid":{"sat":34,"code":12},"cn0":160},{"mesid":{"sat":24,"code":12},"cn0":188},{"mesid":{"sat":25,"code":12},"cn0":160},{"mesid":{"sat":12,"code":12},"cn0":184},{"mesid":{"sat":19,"code":12},"cn0":184},{"mesid":{"sat":22,"code":12},"cn0":192},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":12,"code":13},"cn0":208},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":12,"code":14},"cn0":193},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":25,"code":14},"cn0":190},{"mesid":{"sat":11,"code":14},"cn0":187},{"mesid":{"sat":24,"code":14},"cn0":202},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":31,"code":14},"cn0":157},{"mesid":{"sat":33,"code":14},"cn0":149},{"mesid":{"sat":25,"code":20},"cn0":201},{"mesid":{"sat":24,"code":20},"cn0":215},{"mesid":{"sat":11,"code":20},"cn0":194},{"mesid":{"sat":31,"code":20},"cn0":174},{"mesid":{"sat":12,"code":20},"cn0":206},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":33,"code":20},"cn0":169},{"mesid":{"sat":0,"code":0},"cn0":0}]} +{"crc":30751,"length":11,"msg_type":258,"payload":"MghASS8QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271534400,"ns_residual":0,"flags":1} +{"crc":24805,"length":16,"msg_type":259,"payload":"EUBJLxDkBwMZAxkQ/oPXFw==","preamble":85,"sender":22963,"flags":17,"tow":271534400,"year":2020,"month":3,"day":25,"hours":3,"minutes":25,"seconds":16,"ns":399999998} +{"crc":56269,"length":34,"msg_type":522,"payload":"QEkvEMu5x+xl6kJAQk0aHFaSXsAjbIRTzgoywAECWwQPBg==","preamble":85,"sender":22963,"tow":271534400,"lat":37.83123550178751,"lon":-122.28650572365316,"height":-18.042210788564386,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":32531,"length":22,"msg_type":526,"payload":"QEkvEPH///8GAAAA9/////EAywIPAg==","preamble":85,"sender":22963,"tow":271534400,"n":-15,"e":6,"d":-9,"h_accuracy":241,"v_accuracy":715,"n_sats":15,"flags":2} +{"crc":28998,"length":15,"msg_type":520,"payload":"QEkvEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271534400,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":15717,"length":22,"msg_type":524,"payload":"QEkvEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271534400,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":45251,"length":6,"msg_type":528,"payload":"QEkvEP//","preamble":85,"sender":22963,"tow":271534400,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":49809,"length":9,"msg_type":117,"payload":"/wAAAAAAAAAA","preamble":85,"sender":22963,"mask":255,"l1ca_bias":0,"l1p_bias":0,"l2ca_bias":0,"l2p_bias":0} +{"crc":41831,"length":11,"msg_type":258,"payload":"MgikSS8QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271534500,"ns_residual":0,"flags":1} +{"crc":28683,"length":16,"msg_type":259,"payload":"EaRJLxDkBwMZAxkQ/mTNHQ==","preamble":85,"sender":22963,"flags":17,"tow":271534500,"year":2020,"month":3,"day":25,"hours":3,"minutes":25,"seconds":16,"ns":499999998} +{"crc":17821,"length":34,"msg_type":522,"payload":"pEkvEBehuOxl6kJAxcxCHFaSXsAYL70ZRwwywAECWwQPBg==","preamble":85,"sender":22963,"tow":271534500,"lat":37.83123549475766,"lon":-122.28650576136995,"height":-18.04795990818738,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":26617,"length":22,"msg_type":526,"payload":"pEkvEAUAAAAAAAAA7P////EAywIPAg==","preamble":85,"sender":22963,"tow":271534500,"n":5,"e":0,"d":-20,"h_accuracy":241,"v_accuracy":715,"n_sats":15,"flags":2} +{"crc":2555,"length":15,"msg_type":520,"payload":"pEkvEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271534500,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":40774,"length":22,"msg_type":524,"payload":"pEkvEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271534500,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":15706,"length":6,"msg_type":528,"payload":"pEkvEP//","preamble":85,"sender":22963,"tow":271534500,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":50764,"length":11,"msg_type":258,"payload":"MggISi8QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271534600,"ns_residual":0,"flags":1} +{"crc":52541,"length":16,"msg_type":259,"payload":"EQhKLxDkBwMZAxkQ/kXDIw==","preamble":85,"sender":22963,"flags":17,"tow":271534600,"year":2020,"month":3,"day":25,"hours":3,"minutes":25,"seconds":16,"ns":599999998} +{"crc":34480,"length":34,"msg_type":522,"payload":"CEovEGJUyexl6kJAqXCKHFaSXsA+r+6fxA0ywAECWwQPBg==","preamble":85,"sender":22963,"tow":271534600,"lat":37.83123550253437,"lon":-122.28650582809009,"height":-18.053781505367844,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":54779,"length":22,"msg_type":526,"payload":"CEovEBEAAADq////AQAAAPEAywIPAg==","preamble":85,"sender":22963,"tow":271534600,"n":17,"e":-22,"d":1,"h_accuracy":241,"v_accuracy":715,"n_sats":15,"flags":2} +{"crc":61865,"length":15,"msg_type":520,"payload":"CEovEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271534600,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":55463,"length":22,"msg_type":524,"payload":"CEovEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271534600,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":14659,"length":6,"msg_type":528,"payload":"CEovEP//","preamble":85,"sender":22963,"tow":271534600,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":41606,"length":11,"msg_type":258,"payload":"MghsSi8QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271534700,"ns_residual":0,"flags":1} +{"crc":25969,"length":16,"msg_type":259,"payload":"EWxKLxDkBwMZAxkQ/ia5KQ==","preamble":85,"sender":22963,"flags":17,"tow":271534700,"year":2020,"month":3,"day":25,"hours":3,"minutes":25,"seconds":16,"ns":699999998} +{"crc":40244,"length":34,"msg_type":522,"payload":"bEovEPVQpuxl6kJAaUHFHFaSXsA3zW1djQ8ywAECWwQPBg==","preamble":85,"sender":22963,"tow":271534700,"lat":37.83123548622999,"lon":-122.28650588286622,"height":-18.06075080805496,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":20827,"length":22,"msg_type":526,"payload":"bEovEPT/////////GwAAAPEAywIPAg==","preamble":85,"sender":22963,"tow":271534700,"n":-12,"e":-1,"d":27,"h_accuracy":241,"v_accuracy":715,"n_sats":15,"flags":2} +{"crc":56582,"length":15,"msg_type":520,"payload":"bEovEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271534700,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":49169,"length":22,"msg_type":524,"payload":"bEovEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271534700,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":24826,"length":6,"msg_type":528,"payload":"bEovEP//","preamble":85,"sender":22963,"tow":271534700,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":54460,"length":34,"msg_type":30583,"payload":"gwKNSS8QApf/AAf/AB/+//f/f///f/f//9AB5edV7m7lcA==","preamble":85,"sender":22963,"sid":{"sat":131,"code":2},"tow":271534477,"message_type":2,"data":[151,255,0,7,255,0,31,254,255,247,255,127,255,255,127,247,255,255,208,1,229,231,85,238,110,229,112]} +{"crc":23590,"length":11,"msg_type":258,"payload":"MgjQSi8QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271534800,"ns_residual":0,"flags":1} +{"crc":9967,"length":16,"msg_type":259,"payload":"EdBKLxDkBwMZAxkQ/gevLw==","preamble":85,"sender":22963,"flags":17,"tow":271534800,"year":2020,"month":3,"day":25,"hours":3,"minutes":25,"seconds":16,"ns":799999998} +{"crc":12905,"length":34,"msg_type":522,"payload":"0EovEAy6iOxl6kJAxq3THFaSXsAiAjQAShEywAECWwQPBg==","preamble":85,"sender":22963,"tow":271534800,"lat":37.83123547245131,"lon":-122.28650589629896,"height":-18.06753541249976,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":19521,"length":22,"msg_type":526,"payload":"0EovEP////8HAAAAEgAAAPEAywIPAg==","preamble":85,"sender":22963,"tow":271534800,"n":-1,"e":7,"d":18,"h_accuracy":241,"v_accuracy":715,"n_sats":15,"flags":2} +{"crc":59005,"length":15,"msg_type":520,"payload":"0EovEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271534800,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":21645,"length":22,"msg_type":524,"payload":"0EovEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271534800,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":37045,"length":6,"msg_type":528,"payload":"0EovEP//","preamble":85,"sender":22963,"tow":271534800,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":3081,"length":237,"msg_type":97,"payload":"BQDQFQCvAgC2HwCfAAAAAAAAGQDVDADLHQDQEgDKAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwLIGQHLDAG7HwGXEgHEHQHBAAAABQHBAAAAAAAAAAAAAAAACwPTCQOxFAOsBQPPCgPNAAAABAOzFQPJCQSsFATMCgRgCwTIBQTCAAS8AAAABASsIwzIGgyrIgyfGAy8GQygDAy3Ewy4FgzAAAAADA3QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADA7BAAAAGQ69Cw67GA7JAAAAHw6cIQ6WGRTIGBTXCxTBHxSuDBTOAAAAIRSpAAAA","preamble":85,"sender":22963,"states":[{"mesid":{"sat":5,"code":0},"cn0":208},{"mesid":{"sat":21,"code":0},"cn0":175},{"mesid":{"sat":2,"code":0},"cn0":182},{"mesid":{"sat":31,"code":0},"cn0":159},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":25,"code":0},"cn0":213},{"mesid":{"sat":12,"code":0},"cn0":203},{"mesid":{"sat":29,"code":0},"cn0":208},{"mesid":{"sat":18,"code":0},"cn0":202},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":131,"code":2},"cn0":200},{"mesid":{"sat":25,"code":1},"cn0":203},{"mesid":{"sat":12,"code":1},"cn0":187},{"mesid":{"sat":31,"code":1},"cn0":151},{"mesid":{"sat":18,"code":1},"cn0":196},{"mesid":{"sat":29,"code":1},"cn0":193},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":5,"code":1},"cn0":193},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":11,"code":3},"cn0":211},{"mesid":{"sat":9,"code":3},"cn0":177},{"mesid":{"sat":20,"code":3},"cn0":172},{"mesid":{"sat":5,"code":3},"cn0":207},{"mesid":{"sat":10,"code":3},"cn0":205},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":4,"code":3},"cn0":179},{"mesid":{"sat":21,"code":3},"cn0":201},{"mesid":{"sat":9,"code":4},"cn0":172},{"mesid":{"sat":20,"code":4},"cn0":204},{"mesid":{"sat":10,"code":4},"cn0":96},{"mesid":{"sat":11,"code":4},"cn0":200},{"mesid":{"sat":5,"code":4},"cn0":194},{"mesid":{"sat":0,"code":4},"cn0":188},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":4,"code":4},"cn0":172},{"mesid":{"sat":35,"code":12},"cn0":200},{"mesid":{"sat":26,"code":12},"cn0":171},{"mesid":{"sat":34,"code":12},"cn0":159},{"mesid":{"sat":24,"code":12},"cn0":188},{"mesid":{"sat":25,"code":12},"cn0":160},{"mesid":{"sat":12,"code":12},"cn0":183},{"mesid":{"sat":19,"code":12},"cn0":184},{"mesid":{"sat":22,"code":12},"cn0":192},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":12,"code":13},"cn0":208},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":12,"code":14},"cn0":193},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":25,"code":14},"cn0":189},{"mesid":{"sat":11,"code":14},"cn0":187},{"mesid":{"sat":24,"code":14},"cn0":201},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":31,"code":14},"cn0":156},{"mesid":{"sat":33,"code":14},"cn0":150},{"mesid":{"sat":25,"code":20},"cn0":200},{"mesid":{"sat":24,"code":20},"cn0":215},{"mesid":{"sat":11,"code":20},"cn0":193},{"mesid":{"sat":31,"code":20},"cn0":174},{"mesid":{"sat":12,"code":20},"cn0":206},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":33,"code":20},"cn0":169},{"mesid":{"sat":0,"code":0},"cn0":0}]} +{"crc":34187,"length":128,"msg_type":151,"payload":"AgAaHQUAKzUMAFEtFQB9GRkAbUYaAKEBHQChNx8AlQ4EAxUWBQMyIQkDXw4KA3EpCwOYJQwDqgMTAyIHFAMMMRUDlSUMDJQpEwwjIBQMDwIWDEMkGAyCIxkMnQ4aDGcVIgyOESMMIi0LDosyDA4PPBgObDYZDpcpHw5VESEOIA8=","preamble":85,"sender":22963,"azel":[{"sid":{"sat":2,"code":0},"az":26,"el":29},{"sid":{"sat":5,"code":0},"az":43,"el":53},{"sid":{"sat":12,"code":0},"az":81,"el":45},{"sid":{"sat":21,"code":0},"az":125,"el":25},{"sid":{"sat":25,"code":0},"az":109,"el":70},{"sid":{"sat":26,"code":0},"az":161,"el":1},{"sid":{"sat":29,"code":0},"az":161,"el":55},{"sid":{"sat":31,"code":0},"az":149,"el":14},{"sid":{"sat":4,"code":3},"az":21,"el":22},{"sid":{"sat":5,"code":3},"az":50,"el":33},{"sid":{"sat":9,"code":3},"az":95,"el":14},{"sid":{"sat":10,"code":3},"az":113,"el":41},{"sid":{"sat":11,"code":3},"az":152,"el":37},{"sid":{"sat":12,"code":3},"az":170,"el":3},{"sid":{"sat":19,"code":3},"az":34,"el":7},{"sid":{"sat":20,"code":3},"az":12,"el":49},{"sid":{"sat":21,"code":3},"az":149,"el":37},{"sid":{"sat":12,"code":12},"az":148,"el":41},{"sid":{"sat":19,"code":12},"az":35,"el":32},{"sid":{"sat":20,"code":12},"az":15,"el":2},{"sid":{"sat":22,"code":12},"az":67,"el":36},{"sid":{"sat":24,"code":12},"az":130,"el":35},{"sid":{"sat":25,"code":12},"az":157,"el":14},{"sid":{"sat":26,"code":12},"az":103,"el":21},{"sid":{"sat":34,"code":12},"az":142,"el":17},{"sid":{"sat":35,"code":12},"az":34,"el":45},{"sid":{"sat":11,"code":14},"az":139,"el":50},{"sid":{"sat":12,"code":14},"az":15,"el":60},{"sid":{"sat":24,"code":14},"az":108,"el":54},{"sid":{"sat":25,"code":14},"az":151,"el":41},{"sid":{"sat":31,"code":14},"az":85,"el":17},{"sid":{"sat":33,"code":14},"az":32,"el":15}]} +{"crc":49293,"length":11,"msg_type":258,"payload":"Mgg0Sy8QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271534900,"ns_residual":0,"flags":1} +{"crc":50866,"length":16,"msg_type":259,"payload":"ETRLLxDkBwMZAxkQ/uikNQ==","preamble":85,"sender":22963,"flags":17,"tow":271534900,"year":2020,"month":3,"day":25,"hours":3,"minutes":25,"seconds":16,"ns":899999998} +{"crc":13480,"length":34,"msg_type":522,"payload":"NEsvEHG3hexl6kJAE2jZHFaSXsBg+mib5BEywAECWwQPBg==","preamble":85,"sender":22963,"tow":271534900,"lat":37.83123547104959,"lon":-122.28650590163333,"height":-18.069894517068292,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":59905,"length":22,"msg_type":526,"payload":"NEsvEAkAAAALAAAA+f////EAywIPAg==","preamble":85,"sender":22963,"tow":271534900,"n":9,"e":11,"d":-7,"h_accuracy":241,"v_accuracy":715,"n_sats":15,"flags":2} +{"crc":58785,"length":15,"msg_type":520,"payload":"NEsvEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271534900,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":9048,"length":22,"msg_type":524,"payload":"NEsvEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271534900,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":46973,"length":6,"msg_type":528,"payload":"NEsvEP//","preamble":85,"sender":22963,"tow":271534900,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":3439,"length":249,"msg_type":74,"payload":"mEsvEAAAAAAyCECSirQ+OCKXBsE8/x3RDw8FACOFEEU3PEIH6nkI3q8PDxUAlcP5Rfy/WgeEUPYytg8PAgAHugNJh4OsB9tq/mOgDw8fABlZKT03mW0GXo370dUPDxkAPMW9QEnqzQb1YfTIyw8PDABwPsw+8J+ZBq7IBRvQDw8dAE1ZKT3sSAIFhYj898wPDxkB98S9QEVWTQVN8vb1uw8PDAHKuQNJPcr6BbbC/viWDw8fASA+zD47lyQFuYIEJMEPDx0BR4q0PmqmIgXCZ/+rwQ8PBQGiCvk+b+u6BuV+BFvTDw8LA4VS4kSGU1sHdMjuh7IPDwkD","preamble":85,"sender":22963,"header":{"t":{"tow":271535000,"ns_residual":0,"wn":2098},"n_obs":64},"obs":[{"P":1052019346,"L":{"i":110567992,"f":193},"D":{"i":-196,"f":29},"cn0":209,"lock":15,"flags":15,"sid":{"sat":5,"code":0}},{"P":1158710563,"L":{"i":121781303,"f":234},"D":{"i":2169,"f":222},"cn0":175,"lock":15,"flags":15,"sid":{"sat":21,"code":0}},{"P":1173996437,"L":{"i":123387900,"f":132},"D":{"i":-2480,"f":50},"cn0":182,"lock":15,"flags":15,"sid":{"sat":2,"code":0}},{"P":1224980999,"L":{"i":128746375,"f":219},"D":{"i":-406,"f":99},"cn0":160,"lock":15,"flags":15,"sid":{"sat":31,"code":0}},{"P":1026119961,"L":{"i":107845943,"f":94},"D":{"i":-1139,"f":209},"cn0":213,"lock":15,"flags":15,"sid":{"sat":25,"code":0}},{"P":1086178620,"L":{"i":114158153,"f":245},"D":{"i":-2975,"f":200},"cn0":203,"lock":15,"flags":15,"sid":{"sat":12,"code":0}},{"P":1053572720,"L":{"i":110731248,"f":174},"D":{"i":1480,"f":27},"cn0":208,"lock":15,"flags":15,"sid":{"sat":29,"code":0}},{"P":1026120013,"L":{"i":84035820,"f":133},"D":{"i":-888,"f":247},"cn0":204,"lock":15,"flags":15,"sid":{"sat":25,"code":1}},{"P":1086178551,"L":{"i":88954437,"f":77},"D":{"i":-2318,"f":245},"cn0":187,"lock":15,"flags":15,"sid":{"sat":12,"code":1}},{"P":1224980938,"L":{"i":100321853,"f":182},"D":{"i":-318,"f":248},"cn0":150,"lock":15,"flags":15,"sid":{"sat":31,"code":1}},{"P":1053572640,"L":{"i":86284091,"f":185},"D":{"i":1154,"f":36},"cn0":193,"lock":15,"flags":15,"sid":{"sat":29,"code":1}},{"P":1052019271,"L":{"i":86156906,"f":194},"D":{"i":-153,"f":171},"cn0":193,"lock":15,"flags":15,"sid":{"sat":5,"code":1}},{"P":1056508578,"L":{"i":112913263,"f":229},"D":{"i":1150,"f":91},"cn0":211,"lock":15,"flags":15,"sid":{"sat":11,"code":3}},{"P":1155682949,"L":{"i":123425670,"f":116},"D":{"i":-4408,"f":135},"cn0":178,"lock":15,"flags":15,"sid":{"sat":9,"code":3}}]} +{"crc":50129,"length":249,"msg_type":74,"payload":"mEsvEAAAAAAyCEH+8DA9n1mLBohC+7CsDw8UA77EAkAU79cGpokIOc8PDwUDX2BuPtnmpwYqEfTBzg8PCgPrNgtDTyouBwLM+hCzDw8EAwzbJT/LIsIG9lIG8skPDxUDzFLiRDnPuAVWnPJfrA8PCQQm8jA99QwXBSBR/FrMDw8UBNcL+T59DDwF0H0DdcgPDwsEwMUCQIWdUgWkowZLwg8PBQTGNwtDF6+VBTnz+7mtDw8EBLbGmUUcoz8H+CP6i8gPDyMMyI78SauRtAcDP/RirA8PGgzBrg9MMOLrB5vICHOgDw8iDGhzpEceEnYHteH6U7wPDxgM","preamble":85,"sender":22963,"header":{"t":{"tow":271535000,"ns_residual":0,"wn":2098},"n_obs":65},"obs":[{"P":1026617598,"L":{"i":109795743,"f":136},"D":{"i":-1214,"f":176},"cn0":172,"lock":15,"flags":15,"sid":{"sat":20,"code":3}},{"P":1073923262,"L":{"i":114814740,"f":166},"D":{"i":2185,"f":57},"cn0":207,"lock":15,"flags":15,"sid":{"sat":5,"code":3}},{"P":1047421023,"L":{"i":111666905,"f":42},"D":{"i":-3055,"f":193},"cn0":206,"lock":15,"flags":15,"sid":{"sat":10,"code":3}},{"P":1124808427,"L":{"i":120465999,"f":2},"D":{"i":-1332,"f":16},"cn0":179,"lock":15,"flags":15,"sid":{"sat":4,"code":3}},{"P":1059445516,"L":{"i":113386187,"f":246},"D":{"i":1618,"f":242},"cn0":201,"lock":15,"flags":15,"sid":{"sat":21,"code":3}},{"P":1155683020,"L":{"i":95997753,"f":86},"D":{"i":-3428,"f":95},"cn0":172,"lock":15,"flags":15,"sid":{"sat":9,"code":4}},{"P":1026617894,"L":{"i":85396725,"f":32},"D":{"i":-943,"f":90},"cn0":204,"lock":15,"flags":15,"sid":{"sat":20,"code":4}},{"P":1056508887,"L":{"i":87821437,"f":208},"D":{"i":893,"f":117},"cn0":200,"lock":15,"flags":15,"sid":{"sat":11,"code":4}},{"P":1073923520,"L":{"i":89300357,"f":164},"D":{"i":1699,"f":75},"cn0":194,"lock":15,"flags":15,"sid":{"sat":5,"code":4}},{"P":1124808646,"L":{"i":93695767,"f":57},"D":{"i":-1037,"f":185},"cn0":173,"lock":15,"flags":15,"sid":{"sat":4,"code":4}},{"P":1167705782,"L":{"i":121611036,"f":248},"D":{"i":-1501,"f":139},"cn0":200,"lock":15,"flags":15,"sid":{"sat":35,"code":12}},{"P":1241288392,"L":{"i":129274283,"f":3},"D":{"i":-3009,"f":98},"cn0":172,"lock":15,"flags":15,"sid":{"sat":26,"code":12}},{"P":1276096193,"L":{"i":132899376,"f":155},"D":{"i":2248,"f":115},"cn0":160,"lock":15,"flags":15,"sid":{"sat":34,"code":12}},{"P":1201959784,"L":{"i":125178398,"f":181},"D":{"i":-1311,"f":83},"cn0":188,"lock":15,"flags":15,"sid":{"sat":24,"code":12}}]} +{"crc":922,"length":249,"msg_type":74,"payload":"mEsvEAAAAAAyCEJJaQ9NHYQGCEElBc6gDw8ZDKIASkUoVDcHsUkGs7gPDwwMRSNER1IKbAeo1P7puA8PEwwLwVdHTRVuB/dNCXjADw8WDHoASkXOeJQFV90EL9APDwwNliMKQuXY8AZs+/viwQ8PDA7ywB1LlQ/lB2Y3BCu+Dw8ZDl0AHke4dnkH3RQEaLsPDwsOXOwsQ7doDwd/KPlByQ8PGA6mYFFR0+uLCMSc8xacDw8fDmPf/FEI8p0I0KD32ZYPDyEO1sAdS+WaDAZAOwMzyA8PGRSC7ixDGOZoBaDC+g7XDw8YFJ3/HUcDKboFIx8D2sEPDwsU","preamble":85,"sender":22963,"header":{"t":{"tow":271535000,"ns_residual":0,"wn":2098},"n_obs":66},"obs":[{"P":1292855625,"L":{"i":134644765,"f":65},"D":{"i":1317,"f":206},"cn0":160,"lock":15,"flags":15,"sid":{"sat":25,"code":12}},{"P":1162477730,"L":{"i":121066536,"f":177},"D":{"i":1609,"f":179},"cn0":184,"lock":15,"flags":15,"sid":{"sat":12,"code":12}},{"P":1195647813,"L":{"i":124521042,"f":168},"D":{"i":-300,"f":233},"cn0":184,"lock":15,"flags":15,"sid":{"sat":19,"code":12}},{"P":1196933387,"L":{"i":124654925,"f":247},"D":{"i":2381,"f":120},"cn0":192,"lock":15,"flags":15,"sid":{"sat":22,"code":12}},{"P":1162477690,"L":{"i":93616334,"f":87},"D":{"i":1245,"f":47},"cn0":208,"lock":15,"flags":15,"sid":{"sat":12,"code":13}},{"P":1107960726,"L":{"i":116447461,"f":108},"D":{"i":-1029,"f":226},"cn0":193,"lock":15,"flags":15,"sid":{"sat":12,"code":14}},{"P":1260241138,"L":{"i":132452245,"f":102},"D":{"i":1079,"f":43},"cn0":190,"lock":15,"flags":15,"sid":{"sat":25,"code":14}},{"P":1193148509,"L":{"i":125400760,"f":221},"D":{"i":1044,"f":104},"cn0":187,"lock":15,"flags":15,"sid":{"sat":11,"code":14}},{"P":1127017564,"L":{"i":118450359,"f":127},"D":{"i":-1752,"f":65},"cn0":201,"lock":15,"flags":15,"sid":{"sat":24,"code":14}},{"P":1364287654,"L":{"i":143387603,"f":196},"D":{"i":-3172,"f":22},"cn0":156,"lock":15,"flags":15,"sid":{"sat":31,"code":14}},{"P":1375526755,"L":{"i":144568840,"f":208},"D":{"i":-2144,"f":217},"cn0":150,"lock":15,"flags":15,"sid":{"sat":33,"code":14}},{"P":1260241110,"L":{"i":101489381,"f":64},"D":{"i":827,"f":51},"cn0":200,"lock":15,"flags":15,"sid":{"sat":25,"code":20}},{"P":1127018114,"L":{"i":90760728,"f":160},"D":{"i":-1342,"f":14},"cn0":215,"lock":15,"flags":15,"sid":{"sat":24,"code":20}},{"P":1193148317,"L":{"i":96086275,"f":35},"D":{"i":799,"f":218},"cn0":193,"lock":15,"flags":15,"sid":{"sat":11,"code":20}}]} +{"crc":22115,"length":62,"msg_type":74,"payload":"mEsvEAAAAAAyCEMFYVFRsXWMBiuA9kauDw8fFPsiCkIXe1EFiuv8E84PDwwUSN/8UV1FmgbimfmKqQ8PIRQ=","preamble":85,"sender":22963,"header":{"t":{"tow":271535000,"ns_residual":0,"wn":2098},"n_obs":67},"obs":[{"P":1364287749,"L":{"i":109868465,"f":43},"D":{"i":-2432,"f":70},"cn0":174,"lock":15,"flags":15,"sid":{"sat":31,"code":20}},{"P":1107960571,"L":{"i":89226007,"f":138},"D":{"i":-789,"f":19},"cn0":206,"lock":15,"flags":15,"sid":{"sat":12,"code":20}},{"P":1375526728,"L":{"i":110773597,"f":226},"D":{"i":-1639,"f":138},"cn0":169,"lock":15,"flags":15,"sid":{"sat":33,"code":20}}]} +{"crc":49809,"length":9,"msg_type":117,"payload":"/wAAAAAAAAAA","preamble":85,"sender":22963,"mask":255,"l1ca_bias":0,"l1p_bias":0,"l2ca_bias":0,"l2p_bias":0} +{"crc":28115,"length":11,"msg_type":258,"payload":"MgiYSy8QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271535000,"ns_residual":0,"flags":1} +{"crc":50657,"length":16,"msg_type":259,"payload":"EZhLLxDkBwMZAxkQ/smaOw==","preamble":85,"sender":22963,"flags":17,"tow":271535000,"year":2020,"month":3,"day":25,"hours":3,"minutes":25,"seconds":16,"ns":999999998} +{"crc":9117,"length":34,"msg_type":522,"payload":"mEsvEJjlZuxl6kJAd27tHFaSXsAixM9JNRMywAECWwQPBg==","preamble":85,"sender":22963,"tow":271535000,"lat":37.83123545669804,"lon":-122.28650592028303,"height":-18.075031865333706,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":40335,"length":22,"msg_type":526,"payload":"mEsvEPT///8AAAAA9f////EAywIPAg==","preamble":85,"sender":22963,"tow":271535000,"n":-12,"e":0,"d":-11,"h_accuracy":241,"v_accuracy":715,"n_sats":15,"flags":2} +{"crc":36944,"length":15,"msg_type":520,"payload":"mEsvEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271535000,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":2690,"length":22,"msg_type":524,"payload":"mEsvEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271535000,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":23990,"length":6,"msg_type":528,"payload":"mEsvEP//","preamble":85,"sender":22963,"tow":271535000,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":40942,"length":4,"msg_type":65535,"payload":"AAUCgA==","preamble":85,"sender":22963,"flags":2147616000} +{"crc":2168,"length":24,"msg_type":72,"payload":"UO0a3iqORMHK1UJhIkRQwc9nFIPvrk1B","preamble":85,"sender":22963,"x":-2694229.735196747,"y":-4264073.519704292,"z":3890655.0240602265} +{"crc":2329,"length":11,"msg_type":258,"payload":"Mgj8Sy8QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271535100,"ns_residual":0,"flags":1} +{"crc":38849,"length":16,"msg_type":259,"payload":"EfxLLxDkBwMZAxkR/uD1BQ==","preamble":85,"sender":22963,"flags":17,"tow":271535100,"year":2020,"month":3,"day":25,"hours":3,"minutes":25,"seconds":17,"ns":99999998} +{"crc":54077,"length":34,"msg_type":522,"payload":"/EsvEKzRVOxl6kJAj5L9HFaSXsA/M3uymBQywAECWwQPBg==","preamble":85,"sender":22963,"tow":271535100,"lat":37.8312354482799,"lon":-122.2865059353155,"height":-18.080454974249047,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":15901,"length":22,"msg_type":526,"payload":"/EsvEPz///8AAAAA/f////EAywIPAg==","preamble":85,"sender":22963,"tow":271535100,"n":-4,"e":0,"d":-3,"h_accuracy":241,"v_accuracy":715,"n_sats":15,"flags":2} +{"crc":48383,"length":15,"msg_type":520,"payload":"/EsvEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271535100,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":4660,"length":22,"msg_type":524,"payload":"/EsvEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271535100,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":1039,"length":6,"msg_type":528,"payload":"/EsvEP//","preamble":85,"sender":22963,"tow":271535100,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":38749,"length":11,"msg_type":258,"payload":"MghgTC8QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271535200,"ns_residual":0,"flags":1} +{"crc":12780,"length":16,"msg_type":259,"payload":"EWBMLxDkBwMZAxkR/sHrCw==","preamble":85,"sender":22963,"flags":17,"tow":271535200,"year":2020,"month":3,"day":25,"hours":3,"minutes":25,"seconds":17,"ns":199999998} +{"crc":1580,"length":34,"msg_type":522,"payload":"YEwvENZqaOxl6kJA6qcUHVaSXsDDT4r7ghUywAECWwQPBg==","preamble":85,"sender":22963,"tow":271535200,"lat":37.831235457406066,"lon":-122.28650595681361,"height":-18.084029885547135,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":28209,"length":22,"msg_type":526,"payload":"YEwvEAQAAAD9////BAAAAPEAywIPAg==","preamble":85,"sender":22963,"tow":271535200,"n":4,"e":-3,"d":4,"h_accuracy":241,"v_accuracy":715,"n_sats":15,"flags":2} +{"crc":27286,"length":15,"msg_type":520,"payload":"YEwvEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271535200,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":58757,"length":22,"msg_type":524,"payload":"YEwvEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271535200,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":42652,"length":6,"msg_type":528,"payload":"YEwvEP//","preamble":85,"sender":22963,"tow":271535200,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":5116,"length":11,"msg_type":258,"payload":"MgjETC8QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271535300,"ns_residual":0,"flags":1} +{"crc":64979,"length":16,"msg_type":259,"payload":"EcRMLxDkBwMZAxkR/qLhEQ==","preamble":85,"sender":22963,"flags":17,"tow":271535300,"year":2020,"month":3,"day":25,"hours":3,"minutes":25,"seconds":17,"ns":299999998} +{"crc":16107,"length":34,"msg_type":522,"payload":"xEwvEKyYk+xl6kJAxEkkHVaSXsDUdXITJhYywAECWwQPBg==","preamble":85,"sender":22963,"tow":271535300,"lat":37.83123547751288,"lon":-122.28650597137226,"height":-18.086518493122483,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":14859,"length":22,"msg_type":526,"payload":"xEwvEAoAAAD1////EAAAAPEAywIPAg==","preamble":85,"sender":22963,"tow":271535300,"n":10,"e":-11,"d":16,"h_accuracy":241,"v_accuracy":715,"n_sats":15,"flags":2} +{"crc":14370,"length":15,"msg_type":520,"payload":"xEwvEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271535300,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":37628,"length":22,"msg_type":524,"payload":"xEwvEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271535300,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":16661,"length":6,"msg_type":528,"payload":"xEwvEP//","preamble":85,"sender":22963,"tow":271535300,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":14543,"length":237,"msg_type":97,"payload":"BQDSFQCwAgC4HwChAAAAAAAAGQDWDADMHQDREgDKAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwLJGQHMDAG8HwGXEgHEHQHCAAAABQHCAAAAAAAAAAAAAAAAZAPUYgOyZgOtZQPQXQPPAAAAagO0aAPKYgSsZgTMXQREZATIZQTCaAS8AAAAagStIwzIGgysIgygGAy8GQygDAy4Ewy4FgzAAAAADA3RAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADA7BAAAAGQ6+Cw67GA7KAAAAHw6cIQ6WGRTJGBTXCxTBHxSuDBTOAAAAIRSqAAAA","preamble":85,"sender":22963,"states":[{"mesid":{"sat":5,"code":0},"cn0":210},{"mesid":{"sat":21,"code":0},"cn0":176},{"mesid":{"sat":2,"code":0},"cn0":184},{"mesid":{"sat":31,"code":0},"cn0":161},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":25,"code":0},"cn0":214},{"mesid":{"sat":12,"code":0},"cn0":204},{"mesid":{"sat":29,"code":0},"cn0":209},{"mesid":{"sat":18,"code":0},"cn0":202},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":131,"code":2},"cn0":201},{"mesid":{"sat":25,"code":1},"cn0":204},{"mesid":{"sat":12,"code":1},"cn0":188},{"mesid":{"sat":31,"code":1},"cn0":151},{"mesid":{"sat":18,"code":1},"cn0":196},{"mesid":{"sat":29,"code":1},"cn0":194},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":5,"code":1},"cn0":194},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":100,"code":3},"cn0":212},{"mesid":{"sat":98,"code":3},"cn0":178},{"mesid":{"sat":102,"code":3},"cn0":173},{"mesid":{"sat":101,"code":3},"cn0":208},{"mesid":{"sat":93,"code":3},"cn0":207},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":106,"code":3},"cn0":180},{"mesid":{"sat":104,"code":3},"cn0":202},{"mesid":{"sat":98,"code":4},"cn0":172},{"mesid":{"sat":102,"code":4},"cn0":204},{"mesid":{"sat":93,"code":4},"cn0":68},{"mesid":{"sat":100,"code":4},"cn0":200},{"mesid":{"sat":101,"code":4},"cn0":194},{"mesid":{"sat":104,"code":4},"cn0":188},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":106,"code":4},"cn0":173},{"mesid":{"sat":35,"code":12},"cn0":200},{"mesid":{"sat":26,"code":12},"cn0":172},{"mesid":{"sat":34,"code":12},"cn0":160},{"mesid":{"sat":24,"code":12},"cn0":188},{"mesid":{"sat":25,"code":12},"cn0":160},{"mesid":{"sat":12,"code":12},"cn0":184},{"mesid":{"sat":19,"code":12},"cn0":184},{"mesid":{"sat":22,"code":12},"cn0":192},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":12,"code":13},"cn0":209},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":12,"code":14},"cn0":193},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":25,"code":14},"cn0":190},{"mesid":{"sat":11,"code":14},"cn0":187},{"mesid":{"sat":24,"code":14},"cn0":202},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":31,"code":14},"cn0":156},{"mesid":{"sat":33,"code":14},"cn0":150},{"mesid":{"sat":25,"code":20},"cn0":201},{"mesid":{"sat":24,"code":20},"cn0":215},{"mesid":{"sat":11,"code":20},"cn0":193},{"mesid":{"sat":31,"code":20},"cn0":174},{"mesid":{"sat":12,"code":20},"cn0":206},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":33,"code":20},"cn0":170},{"mesid":{"sat":0,"code":0},"cn0":0}]} +{"crc":42664,"length":11,"msg_type":258,"payload":"MggoTS8QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271535400,"ns_residual":0,"flags":1} +{"crc":42825,"length":16,"msg_type":259,"payload":"EShNLxDkBwMZAxkR/oPXFw==","preamble":85,"sender":22963,"flags":17,"tow":271535400,"year":2020,"month":3,"day":25,"hours":3,"minutes":25,"seconds":17,"ns":399999998} +{"crc":58164,"length":34,"msg_type":522,"payload":"KE0vEHPssOxl6kJALdgxHVaSXsC++zkKIBcywAECWwQPBg==","preamble":85,"sender":22963,"tow":271535400,"lat":37.831235491169444,"lon":-122.28650598399754,"height":-18.090332640796753,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":64462,"length":22,"msg_type":526,"payload":"KE0vEP3//////////v////EAywIPAg==","preamble":85,"sender":22963,"tow":271535400,"n":-3,"e":-1,"d":-2,"h_accuracy":241,"v_accuracy":715,"n_sats":15,"flags":2} +{"crc":7355,"length":15,"msg_type":520,"payload":"KE0vEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271535400,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":48010,"length":22,"msg_type":524,"payload":"KE0vEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271535400,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":27551,"length":6,"msg_type":528,"payload":"KE0vEP//","preamble":85,"sender":22963,"tow":271535400,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":49809,"length":9,"msg_type":117,"payload":"/wAAAAAAAAAA","preamble":85,"sender":22963,"mask":255,"l1ca_bias":0,"l1p_bias":0,"l2ca_bias":0,"l2p_bias":0} +{"crc":8713,"length":11,"msg_type":258,"payload":"MgiMTS8QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271535500,"ns_residual":0,"flags":1} +{"crc":40366,"length":16,"msg_type":259,"payload":"EYxNLxDkBwMZAxkR/mTNHQ==","preamble":85,"sender":22963,"flags":17,"tow":271535500,"year":2020,"month":3,"day":25,"hours":3,"minutes":25,"seconds":17,"ns":499999998} +{"crc":1355,"length":34,"msg_type":522,"payload":"jE0vEFII0exl6kJALb0pHVaSXsC/BaIsBBgywAECWwQPBg==","preamble":85,"sender":22963,"tow":271535500,"lat":37.8312355061213,"lon":-122.28650597644874,"height":-18.09381369548441,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":55043,"length":22,"msg_type":526,"payload":"jE0vEP7///8GAAAABQAAAPEAywIPAg==","preamble":85,"sender":22963,"tow":271535500,"n":-2,"e":6,"d":5,"h_accuracy":241,"v_accuracy":715,"n_sats":15,"flags":2} +{"crc":19983,"length":15,"msg_type":520,"payload":"jE0vEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271535500,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":52467,"length":22,"msg_type":524,"payload":"jE0vEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271535500,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":35862,"length":6,"msg_type":528,"payload":"jE0vEP//","preamble":85,"sender":22963,"tow":271535500,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":53859,"length":51,"msg_type":1025,"payload":"BkdMTyBMMk9GIE1FIDEgWysxMjI2bXNdIGxvdyBDTjAgdG9vIGxvbmcsIGRyb3BwaW5n","preamble":85,"sender":22963,"level":6,"text":"GLO L2OF ME 1 [+1226ms] low CN0 too long, dropping"} +{"crc":15554,"length":11,"msg_type":258,"payload":"MgjwTS8QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271535600,"ns_residual":0,"flags":1} +{"crc":40362,"length":16,"msg_type":259,"payload":"EfBNLxDkBwMZAxkR/kXDIw==","preamble":85,"sender":22963,"flags":17,"tow":271535600,"year":2020,"month":3,"day":25,"hours":3,"minutes":25,"seconds":17,"ns":599999998} +{"crc":58139,"length":34,"msg_type":522,"payload":"8E0vELmY7uxl6kJAiHMbHVaSXsDc+oqaKRkywAECWwQPBg==","preamble":85,"sender":22963,"tow":271535600,"lat":37.831235519888146,"lon":-122.2865059631423,"height":-18.098291071825642,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":2836,"length":22,"msg_type":526,"payload":"8E0vEPz///8NAAAABgAAAPEAywIPAg==","preamble":85,"sender":22963,"tow":271535600,"n":-4,"e":13,"d":6,"h_accuracy":241,"v_accuracy":715,"n_sats":15,"flags":2} +{"crc":2927,"length":15,"msg_type":520,"payload":"8E0vEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271535600,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":14240,"length":22,"msg_type":524,"payload":"8E0vEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271535600,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":49769,"length":6,"msg_type":528,"payload":"8E0vEP//","preamble":85,"sender":22963,"tow":271535600,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":64045,"length":34,"msg_type":30583,"payload":"gwJvTS8QHGKy4VB4ArIDzpesDYBx1Oj8TAF5Awf79Q6AQA==","preamble":85,"sender":22963,"sid":{"sat":131,"code":2},"tow":271535471,"message_type":28,"data":[98,178,225,80,120,2,178,3,206,151,172,13,128,113,212,232,252,76,1,121,3,7,251,245,14,128,64]} +{"crc":28694,"length":11,"msg_type":258,"payload":"MghUTi8QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271535700,"ns_residual":0,"flags":1} +{"crc":50782,"length":16,"msg_type":259,"payload":"EVROLxDkBwMZAxkR/ia5KQ==","preamble":85,"sender":22963,"flags":17,"tow":271535700,"year":2020,"month":3,"day":25,"hours":3,"minutes":25,"seconds":17,"ns":699999998} +{"crc":6318,"length":34,"msg_type":522,"payload":"VE4vEGbzJe1l6kJA4h0WHVaSXsAjyDVmtxoywAECWwQPBg==","preamble":85,"sender":22963,"tow":271535700,"lat":37.831235545664455,"lon":-122.2865059581741,"height":-18.104360950594252,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":48343,"length":22,"msg_type":526,"payload":"VE4vEAUAAAADAAAA+v////EAywIPAg==","preamble":85,"sender":22963,"tow":271535700,"n":5,"e":3,"d":-6,"h_accuracy":241,"v_accuracy":715,"n_sats":15,"flags":2} +{"crc":54392,"length":15,"msg_type":520,"payload":"VE4vEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271535700,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":12002,"length":22,"msg_type":524,"payload":"VE4vEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271535700,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":52018,"length":6,"msg_type":528,"payload":"VE4vEP//","preamble":85,"sender":22963,"tow":271535700,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":33425,"length":11,"msg_type":258,"payload":"Mgi4Ti8QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271535800,"ns_residual":0,"flags":1} +{"crc":57667,"length":16,"msg_type":259,"payload":"EbhOLxDkBwMZAxkR/gevLw==","preamble":85,"sender":22963,"flags":17,"tow":271535800,"year":2020,"month":3,"day":25,"hours":3,"minutes":25,"seconds":17,"ns":799999998} +{"crc":24593,"length":34,"msg_type":522,"payload":"uE4vEJbtWu1l6kJAcqYUHVaSXsB/S/G/Fx0ywAECWwQPBg==","preamble":85,"sender":22963,"tow":271535800,"lat":37.83123557033393,"lon":-122.28650595680827,"height":-18.113643642816438,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":36738,"length":22,"msg_type":526,"payload":"uE4vEAQAAAD8////AAAAAPEAywIPAg==","preamble":85,"sender":22963,"tow":271535800,"n":4,"e":-4,"d":0,"h_accuracy":241,"v_accuracy":715,"n_sats":15,"flags":2} +{"crc":35712,"length":15,"msg_type":520,"payload":"uE4vEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271535800,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":53858,"length":22,"msg_type":524,"payload":"uE4vEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271535800,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":19433,"length":6,"msg_type":528,"payload":"uE4vEP//","preamble":85,"sender":22963,"tow":271535800,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":32469,"length":237,"msg_type":97,"payload":"BQDSFQCxAgC4HwChAAAAAAAAGQDXDADMHQDREgDMAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwLKGQHMDAG8HwGWEgHFHQHCAAAABQHCAAAAAAAAAAAAAAAACwPUCQOyFAOtBQPQCgPPAAAABAO0FQPLCQStFATMAAAACwTIBQTCAAS8AAAABAStIwzIGgysIgygGAy8GQygDAy4Ewy4FgzAAAAADA3RAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADA7BAAAAGQ6+Cw68GA7KAAAAHw6cIQ6XGRTJGBTXCxTBHxSuDBTOAAAAIRSpAAAA","preamble":85,"sender":22963,"states":[{"mesid":{"sat":5,"code":0},"cn0":210},{"mesid":{"sat":21,"code":0},"cn0":177},{"mesid":{"sat":2,"code":0},"cn0":184},{"mesid":{"sat":31,"code":0},"cn0":161},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":25,"code":0},"cn0":215},{"mesid":{"sat":12,"code":0},"cn0":204},{"mesid":{"sat":29,"code":0},"cn0":209},{"mesid":{"sat":18,"code":0},"cn0":204},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":131,"code":2},"cn0":202},{"mesid":{"sat":25,"code":1},"cn0":204},{"mesid":{"sat":12,"code":1},"cn0":188},{"mesid":{"sat":31,"code":1},"cn0":150},{"mesid":{"sat":18,"code":1},"cn0":197},{"mesid":{"sat":29,"code":1},"cn0":194},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":5,"code":1},"cn0":194},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":11,"code":3},"cn0":212},{"mesid":{"sat":9,"code":3},"cn0":178},{"mesid":{"sat":20,"code":3},"cn0":173},{"mesid":{"sat":5,"code":3},"cn0":208},{"mesid":{"sat":10,"code":3},"cn0":207},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":4,"code":3},"cn0":180},{"mesid":{"sat":21,"code":3},"cn0":203},{"mesid":{"sat":9,"code":4},"cn0":173},{"mesid":{"sat":20,"code":4},"cn0":204},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":11,"code":4},"cn0":200},{"mesid":{"sat":5,"code":4},"cn0":194},{"mesid":{"sat":0,"code":4},"cn0":188},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":4,"code":4},"cn0":173},{"mesid":{"sat":35,"code":12},"cn0":200},{"mesid":{"sat":26,"code":12},"cn0":172},{"mesid":{"sat":34,"code":12},"cn0":160},{"mesid":{"sat":24,"code":12},"cn0":188},{"mesid":{"sat":25,"code":12},"cn0":160},{"mesid":{"sat":12,"code":12},"cn0":184},{"mesid":{"sat":19,"code":12},"cn0":184},{"mesid":{"sat":22,"code":12},"cn0":192},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":12,"code":13},"cn0":209},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":12,"code":14},"cn0":193},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":25,"code":14},"cn0":190},{"mesid":{"sat":11,"code":14},"cn0":188},{"mesid":{"sat":24,"code":14},"cn0":202},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":31,"code":14},"cn0":156},{"mesid":{"sat":33,"code":14},"cn0":151},{"mesid":{"sat":25,"code":20},"cn0":201},{"mesid":{"sat":24,"code":20},"cn0":215},{"mesid":{"sat":11,"code":20},"cn0":193},{"mesid":{"sat":31,"code":20},"cn0":174},{"mesid":{"sat":12,"code":20},"cn0":206},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":33,"code":20},"cn0":169},{"mesid":{"sat":0,"code":0},"cn0":0}]} +{"crc":34187,"length":128,"msg_type":151,"payload":"AgAaHQUAKzUMAFEtFQB9GRkAbUYaAKEBHQChNx8AlQ4EAxUWBQMyIQkDXw4KA3EpCwOYJQwDqgMTAyIHFAMMMRUDlSUMDJQpEwwjIBQMDwIWDEMkGAyCIxkMnQ4aDGcVIgyOESMMIi0LDosyDA4PPBgObDYZDpcpHw5VESEOIA8=","preamble":85,"sender":22963,"azel":[{"sid":{"sat":2,"code":0},"az":26,"el":29},{"sid":{"sat":5,"code":0},"az":43,"el":53},{"sid":{"sat":12,"code":0},"az":81,"el":45},{"sid":{"sat":21,"code":0},"az":125,"el":25},{"sid":{"sat":25,"code":0},"az":109,"el":70},{"sid":{"sat":26,"code":0},"az":161,"el":1},{"sid":{"sat":29,"code":0},"az":161,"el":55},{"sid":{"sat":31,"code":0},"az":149,"el":14},{"sid":{"sat":4,"code":3},"az":21,"el":22},{"sid":{"sat":5,"code":3},"az":50,"el":33},{"sid":{"sat":9,"code":3},"az":95,"el":14},{"sid":{"sat":10,"code":3},"az":113,"el":41},{"sid":{"sat":11,"code":3},"az":152,"el":37},{"sid":{"sat":12,"code":3},"az":170,"el":3},{"sid":{"sat":19,"code":3},"az":34,"el":7},{"sid":{"sat":20,"code":3},"az":12,"el":49},{"sid":{"sat":21,"code":3},"az":149,"el":37},{"sid":{"sat":12,"code":12},"az":148,"el":41},{"sid":{"sat":19,"code":12},"az":35,"el":32},{"sid":{"sat":20,"code":12},"az":15,"el":2},{"sid":{"sat":22,"code":12},"az":67,"el":36},{"sid":{"sat":24,"code":12},"az":130,"el":35},{"sid":{"sat":25,"code":12},"az":157,"el":14},{"sid":{"sat":26,"code":12},"az":103,"el":21},{"sid":{"sat":34,"code":12},"az":142,"el":17},{"sid":{"sat":35,"code":12},"az":34,"el":45},{"sid":{"sat":11,"code":14},"az":139,"el":50},{"sid":{"sat":12,"code":14},"az":15,"el":60},{"sid":{"sat":24,"code":14},"az":108,"el":54},{"sid":{"sat":25,"code":14},"az":151,"el":41},{"sid":{"sat":31,"code":14},"az":85,"el":17},{"sid":{"sat":33,"code":14},"az":32,"el":15}]} +{"crc":16867,"length":11,"msg_type":258,"payload":"MggcTy8QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271535900,"ns_residual":0,"flags":1} +{"crc":11031,"length":16,"msg_type":259,"payload":"ERxPLxDkBwMZAxkR/uikNQ==","preamble":85,"sender":22963,"flags":17,"tow":271535900,"year":2020,"month":3,"day":25,"hours":3,"minutes":25,"seconds":17,"ns":899999998} +{"crc":2111,"length":34,"msg_type":522,"payload":"HE8vEPkCgO1l6kJAH2oPHVaSXsDljtcP2B4ywAECWwQPBg==","preamble":85,"sender":22963,"tow":271535900,"lat":37.8312355876023,"lon":-122.2865059519322,"height":-18.120484342695722,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":45629,"length":22,"msg_type":526,"payload":"HE8vEAEAAAD6////CgAAAPEAywIPAg==","preamble":85,"sender":22963,"tow":271535900,"n":1,"e":-6,"d":10,"h_accuracy":241,"v_accuracy":715,"n_sats":15,"flags":2} +{"crc":41557,"length":15,"msg_type":520,"payload":"HE8vEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271535900,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":28909,"length":22,"msg_type":524,"payload":"HE8vEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271535900,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":1585,"length":6,"msg_type":528,"payload":"HE8vEP//","preamble":85,"sender":22963,"tow":271535900,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":44420,"length":249,"msg_type":74,"payload":"gE8vEAAAAAAyCEDjkbQ+/SKXBuQ7/6nTDw8FAJs0EEW/M0IHxXgI+bEPDxUAtR/6RazJWgddTvbXuA8PAgAryQNJHoWsBzJq/lCiDw8fAHWDKT2qnW0G3o37u9cPDxkA0jO+QOn1zQZZYfRbzQ8PDABoB8w+KJqZBsLKBUTSDw8dAKuDKT1kTAIFc4j888wPDxkBjTO+QFNfTQXM8vYCvA8PDAHZyANJesv6BVjF/vqWDw8fAR0HzD66kiQFi4EEyMIPDx0Bm5G0PgSnIgVhZ/+qwg8PBQGV4Pg+8+a6BjJ8BJjUDw8LA6fz4kS/ZFsHPsruErIPDwkD","preamble":85,"sender":22963,"header":{"t":{"tow":271536000,"ns_residual":0,"wn":2098},"n_obs":64},"obs":[{"P":1052021219,"L":{"i":110568189,"f":228},"D":{"i":-197,"f":169},"cn0":211,"lock":15,"flags":15,"sid":{"sat":5,"code":0}},{"P":1158689947,"L":{"i":121779135,"f":197},"D":{"i":2168,"f":249},"cn0":177,"lock":15,"flags":15,"sid":{"sat":21,"code":0}},{"P":1174020021,"L":{"i":123390380,"f":93},"D":{"i":-2482,"f":215},"cn0":184,"lock":15,"flags":15,"sid":{"sat":2,"code":0}},{"P":1224984875,"L":{"i":128746782,"f":50},"D":{"i":-406,"f":80},"cn0":162,"lock":15,"flags":15,"sid":{"sat":31,"code":0}},{"P":1026130805,"L":{"i":107847082,"f":222},"D":{"i":-1139,"f":187},"cn0":215,"lock":15,"flags":15,"sid":{"sat":25,"code":0}},{"P":1086206930,"L":{"i":114161129,"f":89},"D":{"i":-2975,"f":91},"cn0":205,"lock":15,"flags":15,"sid":{"sat":12,"code":0}},{"P":1053558632,"L":{"i":110729768,"f":194},"D":{"i":1482,"f":68},"cn0":210,"lock":15,"flags":15,"sid":{"sat":29,"code":0}},{"P":1026130859,"L":{"i":84036708,"f":115},"D":{"i":-888,"f":243},"cn0":204,"lock":15,"flags":15,"sid":{"sat":25,"code":1}},{"P":1086206861,"L":{"i":88956755,"f":204},"D":{"i":-2318,"f":2},"cn0":188,"lock":15,"flags":15,"sid":{"sat":12,"code":1}},{"P":1224984793,"L":{"i":100322170,"f":88},"D":{"i":-315,"f":250},"cn0":150,"lock":15,"flags":15,"sid":{"sat":31,"code":1}},{"P":1053558557,"L":{"i":86282938,"f":139},"D":{"i":1153,"f":200},"cn0":194,"lock":15,"flags":15,"sid":{"sat":29,"code":1}},{"P":1052021147,"L":{"i":86157060,"f":97},"D":{"i":-153,"f":170},"cn0":194,"lock":15,"flags":15,"sid":{"sat":5,"code":1}},{"P":1056497813,"L":{"i":112912115,"f":50},"D":{"i":1148,"f":152},"cn0":212,"lock":15,"flags":15,"sid":{"sat":11,"code":3}},{"P":1155724199,"L":{"i":123430079,"f":62},"D":{"i":-4406,"f":18},"cn0":178,"lock":15,"flags":15,"sid":{"sat":9,"code":3}}]} +{"crc":28483,"length":249,"msg_type":74,"payload":"gE8vEAAAAAAyCEFCHTE9XV6LBkxC+2utDw8UA/F0AkCM5tcGT4gIrNAPDwUDXtBuPsnypwYcEfRJzw8PCgOaZwtDgy8uB2XM+nq0Dw8EAwugJT95HMIGOVMGVssPDxUD/fPiRJ7cuAVnnfJTrQ8PCQRvHjE9pRAXBS9Q/HzMDw8UBNHh+D4ACTwFXn0DgcgPDwsE53UCQOKWUgW1owaGwg8PBQRZaAtDI7OVBYrz+7atDw8EBAv/mUX6qD8H8SL67MgPDyMMoP/8SWydtAeJPvQfrA8PGgyDWg9MaNnrB9bHCEGgDw8iDJqkpEc+F3YHiuH6ibwPDxgM","preamble":85,"sender":22963,"header":{"t":{"tow":271536000,"ns_residual":0,"wn":2098},"n_obs":65},"obs":[{"P":1026628930,"L":{"i":109796957,"f":76},"D":{"i":-1214,"f":107},"cn0":173,"lock":15,"flags":15,"sid":{"sat":20,"code":3}},{"P":1073902833,"L":{"i":114812556,"f":79},"D":{"i":2184,"f":172},"cn0":208,"lock":15,"flags":15,"sid":{"sat":5,"code":3}},{"P":1047449694,"L":{"i":111669961,"f":28},"D":{"i":-3055,"f":73},"cn0":207,"lock":15,"flags":15,"sid":{"sat":10,"code":3}},{"P":1124820890,"L":{"i":120467331,"f":101},"D":{"i":-1332,"f":122},"cn0":180,"lock":15,"flags":15,"sid":{"sat":4,"code":3}},{"P":1059430411,"L":{"i":113384569,"f":57},"D":{"i":1619,"f":86},"cn0":203,"lock":15,"flags":15,"sid":{"sat":21,"code":3}},{"P":1155724285,"L":{"i":96001182,"f":103},"D":{"i":-3427,"f":83},"cn0":173,"lock":15,"flags":15,"sid":{"sat":9,"code":4}},{"P":1026629231,"L":{"i":85397669,"f":47},"D":{"i":-944,"f":124},"cn0":204,"lock":15,"flags":15,"sid":{"sat":20,"code":4}},{"P":1056498129,"L":{"i":87820544,"f":94},"D":{"i":893,"f":129},"cn0":200,"lock":15,"flags":15,"sid":{"sat":11,"code":4}},{"P":1073903079,"L":{"i":89298658,"f":181},"D":{"i":1699,"f":134},"cn0":194,"lock":15,"flags":15,"sid":{"sat":5,"code":4}},{"P":1124821081,"L":{"i":93696803,"f":138},"D":{"i":-1037,"f":182},"cn0":173,"lock":15,"flags":15,"sid":{"sat":4,"code":4}},{"P":1167720203,"L":{"i":121612538,"f":241},"D":{"i":-1502,"f":236},"cn0":200,"lock":15,"flags":15,"sid":{"sat":35,"code":12}},{"P":1241317280,"L":{"i":129277292,"f":137},"D":{"i":-3010,"f":31},"cn0":172,"lock":15,"flags":15,"sid":{"sat":26,"code":12}},{"P":1276074627,"L":{"i":132897128,"f":214},"D":{"i":2247,"f":65},"cn0":160,"lock":15,"flags":15,"sid":{"sat":34,"code":12}},{"P":1201972378,"L":{"i":125179710,"f":138},"D":{"i":-1311,"f":137},"cn0":188,"lock":15,"flags":15,"sid":{"sat":24,"code":12}}]} +{"crc":33626,"length":249,"msg_type":74,"payload":"gE8vEAAAAAAyCEL7Nw9N+n4GCCUkBR+gDw8ZDEXESUXeTTcH9koGz7gPDwwMiC5ER38LbAc50/5uuQ8PEwy9Z1dHAQxuByBNCVvADw8WDBnESUXxc5QFld4EftEPDwwN1kkKQurc8Aaa+/s3wQ8PDA7emB1LXgvlB0Q2BMC+Dw8ZDpPZHUekcnkH8RQER7wPDwsOei0tQ49vDwfkJ/nZyg8PGA6R1lFROfiLCD2b86KcDw8fDtgu/VFl+p0IFKX3UJYPDyEOt5gdS6qXDAZiPANqyQ8PGRSkLy1DV+toBV/B+nLXDw8YFNHYHUfjJboFQB8D5cEPDwsU","preamble":85,"sender":22963,"header":{"t":{"tow":271536000,"ns_residual":0,"wn":2098},"n_obs":66},"obs":[{"P":1292843003,"L":{"i":134643450,"f":37},"D":{"i":1316,"f":31},"cn0":160,"lock":15,"flags":15,"sid":{"sat":25,"code":12}},{"P":1162462277,"L":{"i":121064926,"f":246},"D":{"i":1610,"f":207},"cn0":184,"lock":15,"flags":15,"sid":{"sat":12,"code":12}},{"P":1195650696,"L":{"i":124521343,"f":57},"D":{"i":-301,"f":110},"cn0":185,"lock":15,"flags":15,"sid":{"sat":19,"code":12}},{"P":1196910525,"L":{"i":124652545,"f":32},"D":{"i":2381,"f":91},"cn0":192,"lock":15,"flags":15,"sid":{"sat":22,"code":12}},{"P":1162462233,"L":{"i":93615089,"f":149},"D":{"i":1246,"f":126},"cn0":209,"lock":15,"flags":15,"sid":{"sat":12,"code":13}},{"P":1107970518,"L":{"i":116448490,"f":154},"D":{"i":-1029,"f":55},"cn0":193,"lock":15,"flags":15,"sid":{"sat":12,"code":14}},{"P":1260230878,"L":{"i":132451166,"f":68},"D":{"i":1078,"f":192},"cn0":190,"lock":15,"flags":15,"sid":{"sat":25,"code":14}},{"P":1193138579,"L":{"i":125399716,"f":241},"D":{"i":1044,"f":71},"cn0":188,"lock":15,"flags":15,"sid":{"sat":11,"code":14}},{"P":1127034234,"L":{"i":118452111,"f":228},"D":{"i":-1753,"f":217},"cn0":202,"lock":15,"flags":15,"sid":{"sat":24,"code":14}},{"P":1364317841,"L":{"i":143390777,"f":61},"D":{"i":-3173,"f":162},"cn0":156,"lock":15,"flags":15,"sid":{"sat":31,"code":14}},{"P":1375547096,"L":{"i":144570981,"f":20},"D":{"i":-2139,"f":80},"cn0":150,"lock":15,"flags":15,"sid":{"sat":33,"code":14}},{"P":1260230839,"L":{"i":101488554,"f":98},"D":{"i":828,"f":106},"cn0":201,"lock":15,"flags":15,"sid":{"sat":25,"code":20}},{"P":1127034788,"L":{"i":90762071,"f":95},"D":{"i":-1343,"f":114},"cn0":215,"lock":15,"flags":15,"sid":{"sat":24,"code":20}},{"P":1193138385,"L":{"i":96085475,"f":64},"D":{"i":799,"f":229},"cn0":193,"lock":15,"flags":15,"sid":{"sat":11,"code":20}}]} +{"crc":7828,"length":62,"msg_type":74,"payload":"gE8vEAAAAAAyCEP61lFRMH+MBs+C9nquDw8fFDpJCkIsflEFI+z8lM4PDwwU1C79UcVLmgbQmfksqg8PIRQ=","preamble":85,"sender":22963,"header":{"t":{"tow":271536000,"ns_residual":0,"wn":2098},"n_obs":67},"obs":[{"P":1364317946,"L":{"i":109870896,"f":207},"D":{"i":-2430,"f":122},"cn0":174,"lock":15,"flags":15,"sid":{"sat":31,"code":20}},{"P":1107970362,"L":{"i":89226796,"f":35},"D":{"i":-788,"f":148},"cn0":206,"lock":15,"flags":15,"sid":{"sat":12,"code":20}},{"P":1375547092,"L":{"i":110775237,"f":208},"D":{"i":-1639,"f":44},"cn0":170,"lock":15,"flags":15,"sid":{"sat":33,"code":20}}]} +{"crc":49809,"length":9,"msg_type":117,"payload":"/wAAAAAAAAAA","preamble":85,"sender":22963,"mask":255,"l1ca_bias":0,"l1p_bias":0,"l2ca_bias":0,"l2p_bias":0} +{"crc":6335,"length":11,"msg_type":258,"payload":"MgiATy8QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271536000,"ns_residual":0,"flags":1} +{"crc":64474,"length":16,"msg_type":259,"payload":"EYBPLxDkBwMZAxkR/smaOw==","preamble":85,"sender":22963,"flags":17,"tow":271536000,"year":2020,"month":3,"day":25,"hours":3,"minutes":25,"seconds":17,"ns":999999998} +{"crc":64674,"length":34,"msg_type":522,"payload":"gE8vEA2fmO1l6kJAWyPpHFaSXsBuA0YI8SEywAECWwQPBg==","preamble":85,"sender":22963,"tow":271536000,"lat":37.831235599062076,"lon":-122.2865059162845,"height":-18.132584111302485,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":3422,"length":22,"msg_type":526,"payload":"gE8vEPr///8RAAAAMwAAAPEAywIPAg==","preamble":85,"sender":22963,"tow":271536000,"n":-6,"e":17,"d":51,"h_accuracy":241,"v_accuracy":715,"n_sats":15,"flags":2} +{"crc":1082,"length":15,"msg_type":520,"payload":"gE8vEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271536000,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":36572,"length":22,"msg_type":524,"payload":"gE8vEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271536000,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":50038,"length":6,"msg_type":528,"payload":"gE8vEP//","preamble":85,"sender":22963,"tow":271536000,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":40942,"length":4,"msg_type":65535,"payload":"AAUCgA==","preamble":85,"sender":22963,"flags":2147616000} +{"crc":2168,"length":24,"msg_type":72,"payload":"UO0a3iqORMHK1UJhIkRQwc9nFIPvrk1B","preamble":85,"sender":22963,"x":-2694229.735196747,"y":-4264073.519704292,"z":3890655.0240602265} +{"crc":47991,"length":26,"msg_type":23,"payload":"bWFpbgAAAAAAAAAAAAAAAAAAAAAAAAx1AAA=","preamble":85,"sender":22963,"name":"main\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":0,"stack_free":29964} +{"crc":47032,"length":26,"msg_type":23,"payload":"aWRsZQAAAAAAAAAAAAAAAAAAAABkAXwAAAA=","preamble":85,"sender":22963,"name":"idle\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":356,"stack_free":124} +{"crc":18957,"length":26,"msg_type":23,"payload":"cnBtc2cAAAAAAAAAAAAAAAAAAAABAOQNAAA=","preamble":85,"sender":22963,"name":"rpmsg\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":1,"stack_free":3556} +{"crc":51784,"length":26,"msg_type":23,"payload":"U0JQAAAAAAAAAAAAAAAAAAAAAAAAAPz/AAA=","preamble":85,"sender":22963,"name":"SBP\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":0,"stack_free":65532} +{"crc":33651,"length":26,"msg_type":23,"payload":"TkFQAAAAAAAAAAAAAAAAAAAAAAAAAASAAAA=","preamble":85,"sender":22963,"name":"NAP\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":0,"stack_free":32772} +{"crc":61814,"length":26,"msg_type":23,"payload":"bWFuYWdlIFBWAAAAAAAAAAAAAAAAACwEAAA=","preamble":85,"sender":22963,"name":"manage PV\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":0,"stack_free":1068} +{"crc":14252,"length":26,"msg_type":23,"payload":"SU1VAAAAAAAAAAAAAAAAAAAAAAAAAPQHAAA=","preamble":85,"sender":22963,"name":"IMU\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":0,"stack_free":2036} +{"crc":18976,"length":26,"msg_type":23,"payload":"SU1VIGF1eAAAAAAAAAAAAAAAAAAAAEwIAAA=","preamble":85,"sender":22963,"name":"IMU aux\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":0,"stack_free":2124} +{"crc":26120,"length":26,"msg_type":23,"payload":"bmRiAAAAAAAAAAAAAAAAAAAAAAAAAFAMAAA=","preamble":85,"sender":22963,"name":"ndb\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":0,"stack_free":3152} +{"crc":19151,"length":26,"msg_type":23,"payload":"TkFQIFRyYWNraW5nAAAAAAAAAAAdAdR3AAA=","preamble":85,"sender":22963,"name":"NAP Tracking\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":285,"stack_free":30676} +{"crc":22929,"length":26,"msg_type":23,"payload":"ZGVjb2RlAAAAAAAAAAAAAAAAAAAHANQGAAA=","preamble":85,"sender":22963,"name":"decode\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":7,"stack_free":1748} +{"crc":24209,"length":26,"msg_type":23,"payload":"bWFuYWdlIGFjcQAAAAAAAAAAAAC9AKR3AAA=","preamble":85,"sender":22963,"name":"manage acq\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":189,"stack_free":30628} +{"crc":58531,"length":26,"msg_type":23,"payload":"c3lzdGVtIG1vbml0b3IAAAAAAAAAACwGAAA=","preamble":85,"sender":22963,"name":"system monitor\u0000\u0000\u0000\u0000\u0000\u0000","cpu":0,"stack_free":1580} +{"crc":44438,"length":26,"msg_type":23,"payload":"V2F0Y2hkb2cAAAAAAAAAAAAAAAAAAOQDAAA=","preamble":85,"sender":22963,"name":"Watchdog\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":0,"stack_free":996} +{"crc":15999,"length":26,"msg_type":23,"payload":"c3RhcmxpbmcAAAAAAAAAAAAAAACVAPz/AAA=","preamble":85,"sender":22963,"name":"starling\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":149,"stack_free":65532} +{"crc":57561,"length":26,"msg_type":23,"payload":"bWVfY2FsY19wdnQAAAAAAAAAAAAJAIwjAAA=","preamble":85,"sender":22963,"name":"me_calc_pvt\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":9,"stack_free":9100} +{"crc":38576,"length":26,"msg_type":23,"payload":"UFBTAAAAAAAAAAAAAAAAAAAAAAAAAEgHAAA=","preamble":85,"sender":22963,"name":"PPS\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":0,"stack_free":1864} +{"crc":50933,"length":26,"msg_type":23,"payload":"c3BlY3RydW0gYW5hbHl6ZXIAAAAAANQPAAA=","preamble":85,"sender":22963,"name":"spectrum analyzer\u0000\u0000\u0000","cpu":0,"stack_free":4052} +{"crc":22055,"length":152,"msg_type":149,"payload":"DA4IIQQAMggUrkdAQDgAAAEAAABcsgAAXLIAENRCALgCQwAApjYACC03AABAsgAAgDNL+3P5s60nPnUMqQwPaP4/AAAAwAaFQD8AAIBTm0C1QIrkGgU4CAPAN7MGedwuN77+6PiV5Dfcv4P9KHoHme8/6TII/sTfAj7///9/qx14P///////m7S9AAAAAAghBAAyCEMAQwA=","preamble":85,"sender":22963,"common":{"sid":{"sat":12,"code":14},"toe":{"tow":270600,"wn":2098},"ura":3.12,"fit_interval":14400,"valid":1,"health_bits":0},"bgd_e1e5a":-1.2805685e-8,"bgd_e1e5b":-1.2805685e-8,"c_rs":106.03125,"c_rc":130.71875,"c_uc":0.0000049471855,"c_us":0.000010313466,"c_ic":-1.1175871e-8,"c_is":5.9604645e-8,"dn":2.7565433925253817e-9,"m0":1.9004049772782114,"ecc":0.0005041392287239432,"sqrta":5440.606742858887,"omega0":-2.379013099559022,"omegadot":-5.397724836905428e-9,"w":-0.44091143270237854,"inc":0.9874303232135592,"inc_dot":5.493085951935782e-10,"af0":0.005887670442461967,"af1":-1.874411736935144e-11,"af2":0.0,"toc":{"tow":270600,"wn":2098},"iode":67,"iodc":67} +{"crc":48590,"length":10,"msg_type":181,"payload":"6hbcA/QGRhUJFg==","preamble":85,"sender":22963,"dev_vin":5866,"cpu_vint":988,"cpu_vaux":1780,"cpu_temperature":5446,"fe_temperature":5641} +{"crc":17160,"length":152,"msg_type":149,"payload":"GA4IIQQAMggUrkdAQDgAAAEAAABDMwAAWjMAwLDBACiiQwAAerUAwKE1AADAMgAAkLIDohqtQvkrPghvDWj2Cv8/AAAAAO8HRT8AACApmUC1QAE7BZsOMv0/fijCh1SQOb6TYpEkRKLpP79dPRTHYe8/dQCRpGwQsr3///9LCLR2P///////07W9AAAAAAghBAAyCEMAQwA=","preamble":85,"sender":22963,"common":{"sid":{"sat":24,"code":14},"toe":{"tow":270600,"wn":2098},"ura":3.12,"fit_interval":14400,"valid":1,"health_bits":0},"bgd_e1e5a":4.5401976e-8,"bgd_e1e5b":5.075708e-8,"c_rs":-22.09375,"c_rc":324.3125,"c_uc":-9.313226e-7,"c_us":0.0000012051314,"c_ic":2.2351742e-8,"c_is":-1.6763806e-8,"dn":3.2565642203999004e-9,"m0":1.9401763977575133,"ecc":0.000641814898699522,"sqrta":5440.5982837677,"omega0":1.8247209601865395,"omegadot":-5.952033640377751e-9,"w":0.8010578836647987,"inc":0.9806857486063832,"inc_dot":-1.6429255773019897e-11,"af0":0.005542786035221069,"af1":-1.9852564037137196e-11,"af2":0.0,"toc":{"tow":270600,"wn":2098},"iode":67,"iodc":67} +{"crc":2583,"length":152,"msg_type":149,"payload":"Cw4IIQQAMggUrkdAQDgAAAEAAACEsgAAkLIAgNtCAHAEQwDQpjYAAC43AADAMQAA8DIJ2QezQtAnPuz3xuNXe+U/AAAAAPZQPD8AAIBGm0C1QK3tOpsxCAPAXpX5kcEpN74w4dX1xQeQv9UhC83qmO8/RLuw9AgSAz7///8/oT9fP/7/////ces9AAAAIgghBAAyCEMAQwA=","preamble":85,"sender":22963,"common":{"sid":{"sat":11,"code":14},"toe":{"tow":270600,"wn":2098},"ura":3.12,"fit_interval":14400,"valid":1,"health_bits":0},"bgd_e1e5a":-1.5366822e-8,"bgd_e1e5b":-1.6763806e-8,"c_rs":109.75,"c_rc":132.4375,"c_uc":0.0000049714,"c_us":0.000010371208,"c_ic":5.5879354e-9,"c_is":2.7939677e-8,"dn":2.7722583328300094e-9,"m0":0.6713065575383985,"ecc":0.0004320717416703701,"sqrta":5440.606544494629,"omega0":-2.379000866638043,"omegadot":-5.393081786360879e-9,"w":-0.015654652719122086,"inc":0.9874166493182722,"inc_dot":5.550231189407157e-10,"af0":0.001907260389998555,"af1":1.996909304580185e-10,"af2":1.7347235e-18,"toc":{"tow":270600,"wn":2098},"iode":67,"iodc":67} +{"crc":3,"length":152,"msg_type":149,"payload":"Hw4IIQQAMggUrkdAQDgAAAEAAAAgMQAAMDEAAHbBAHijQwCANLUAQJw1AAAAsQAA8DL+96xunkQrPkZyn/wvcwHAAAAAAPRGET8AAMBxnEC1QJaRgpusG/0/YRMSO3ZTOb6iNeqgzZXiv43JI3Ekcu8/wO8/t+Srsb3///+/R/A+v/7//////y+9AAAAAAghBAAyCEMAQwA=","preamble":85,"sender":22963,"common":{"sid":{"sat":31,"code":14},"toe":{"tow":270600,"wn":2098},"ura":3.12,"fit_interval":14400,"valid":1,"health_bits":0},"bgd_e1e5a":2.3283064e-9,"bgd_e1e5b":2.561137e-9,"c_rs":-15.375,"c_rc":326.9375,"c_uc":-6.724149e-7,"c_us":0.0000011641532,"c_ic":-1.8626451e-9,"c_is":2.7939677e-8,"dn":3.1744179415348008e-9,"m0":-2.181243871322553,"ecc":0.00006590713746845722,"sqrta":5440.611110687256,"omega0":1.8192564081774427,"omegadot":-5.8966741915773585e-9,"w":-0.5807865279072539,"inc":0.9826833925019841,"inc_dot":-1.607209803882381e-11,"af0":-0.00047208549221977586,"af1":-5.6843418860808e-14,"af2":0.0,"toc":{"tow":270600,"wn":2098},"iode":67,"iodc":67} +{"crc":31861,"length":11,"msg_type":258,"payload":"MgjkTy8QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271536100,"ns_residual":0,"flags":1} +{"crc":60793,"length":16,"msg_type":259,"payload":"EeRPLxDkBwMZAxkS/uD1BQ==","preamble":85,"sender":22963,"flags":17,"tow":271536100,"year":2020,"month":3,"day":25,"hours":3,"minutes":25,"seconds":18,"ns":99999998} +{"crc":33970,"length":34,"msg_type":522,"payload":"5E8vEGOEwe1l6kJAOU7xHFaSXsARfS3q2yIywAECWwQPBg==","preamble":85,"sender":22963,"tow":271536100,"lat":37.83123561810569,"lon":-122.28650592389103,"height":-18.13616813288269,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":9231,"length":22,"msg_type":526,"payload":"5E8vEAQAAAD4////4P////EAywIPAg==","preamble":85,"sender":22963,"tow":271536100,"n":4,"e":-8,"d":-32,"h_accuracy":241,"v_accuracy":715,"n_sats":15,"flags":2} +{"crc":10389,"length":15,"msg_type":520,"payload":"5E8vEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271536100,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":38506,"length":22,"msg_type":524,"payload":"5E8vEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271536100,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":39631,"length":6,"msg_type":528,"payload":"5E8vEP//","preamble":85,"sender":22963,"tow":271536100,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":18815,"length":152,"msg_type":149,"payload":"IQ6wHgQAMggUrkdAQDgAAAEAAACwsQAA0LEAMLNCALgFQwCgjzYAQC03AACIswAAwLE7r4zPtuAmPkwWPLbJbwhAAAAAgIPwOT8AAGAvnEC1QDTgM7QeEQPA+GrXryTfNr7k8TuFtX/sv6HbAEo2s+8/tGUD6d1QAz7///8/Bb8+v/7//////109AAAAALAeBAAyCEIAQgA=","preamble":85,"sender":22963,"common":{"sid":{"sat":33,"code":14},"toe":{"tow":270000,"wn":2098},"ura":3.12,"fit_interval":14400,"valid":1,"health_bits":0},"bgd_e1e5a":-5.122274e-9,"bgd_e1e5b":-6.0535967e-9,"c_rs":89.59375,"c_rc":133.71875,"c_uc":0.0000042803586,"c_us":0.000010326505,"c_ic":-6.3329935e-8,"c_is":-5.5879354e-9,"dn":2.6633252239002037e-9,"m0":3.0545839535796286,"ecc":0.00039580545853823423,"sqrta":5440.610097885132,"omega0":-2.383359344323276,"omegadot":-5.325221816863623e-9,"w":-0.8905894853810961,"inc":0.9906264729860262,"inc_dot":5.621662736246373e-10,"af0":-0.00046914938138797874,"af1":4.2632564145606e-13,"af2":0.0,"toc":{"tow":270000,"wn":2098},"iode":66,"iodc":66} +{"crc":13661,"length":11,"msg_type":258,"payload":"MghIUC8QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271536200,"ns_residual":0,"flags":1} +{"crc":46422,"length":16,"msg_type":259,"payload":"EUhQLxDkBwMZAxkS/sHrCw==","preamble":85,"sender":22963,"flags":17,"tow":271536200,"year":2020,"month":3,"day":25,"hours":3,"minutes":25,"seconds":18,"ns":199999998} +{"crc":39405,"length":34,"msg_type":522,"payload":"SFAvEI3K2+1l6kJACLHwHFaSXsCaElTWtSQywAECWwQPBg==","preamble":85,"sender":22963,"tow":271536200,"lat":37.83123563034051,"lon":-122.28650592331917,"height":-18.143399615788987,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":12761,"length":22,"msg_type":526,"payload":"SFAvEPz////8////9f////EAywIPAg==","preamble":85,"sender":22963,"tow":271536200,"n":-4,"e":-4,"d":-11,"h_accuracy":241,"v_accuracy":715,"n_sats":15,"flags":2} +{"crc":254,"length":15,"msg_type":520,"payload":"SFAvEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271536200,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":63371,"length":22,"msg_type":524,"payload":"SFAvEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271536200,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":4519,"length":6,"msg_type":528,"payload":"SFAvEP//","preamble":85,"sender":22963,"tow":271536200,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":60965,"length":11,"msg_type":258,"payload":"MgisUC8QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271536300,"ns_residual":0,"flags":1} +{"crc":21344,"length":16,"msg_type":259,"payload":"EaxQLxDkBwMZAxkS/qLhEQ==","preamble":85,"sender":22963,"flags":17,"tow":271536300,"year":2020,"month":3,"day":25,"hours":3,"minutes":25,"seconds":18,"ns":299999998} +{"crc":62178,"length":34,"msg_type":522,"payload":"rFAvEKpaCO5l6kJAtofcHFaSXsATumN74yYywAECWwQPBg==","preamble":85,"sender":22963,"tow":271536300,"lat":37.831235651091745,"lon":-122.2865059045424,"height":-18.151908599707962,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":14838,"length":22,"msg_type":526,"payload":"rFAvEAgAAAAQAAAADwAAAPEAywIPAg==","preamble":85,"sender":22963,"tow":271536300,"n":8,"e":16,"d":15,"h_accuracy":241,"v_accuracy":715,"n_sats":15,"flags":2} +{"crc":30787,"length":15,"msg_type":520,"payload":"rFAvEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271536300,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":21928,"length":22,"msg_type":524,"payload":"rFAvEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271536300,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":39998,"length":6,"msg_type":528,"payload":"rFAvEP//","preamble":85,"sender":22963,"tow":271536300,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":53590,"length":237,"msg_type":97,"payload":"BQDTFQCxAgC5HwCiAAAAAAAAGQDYDADOHQDSEgDNAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwLLGQHMDAG8HwGWEgHEHQHCAAAABQHCAAAAAAAAAAAAAAAAZAPUYgOyZgOuZQPQXQPPAAAAagO0aAPLYgSsZgTNXQRMZATIZQTCaAS8AAAAagSsIwzIGgysIgygGAy9GQyhDAy4Ewy4FgzAAAAADA3RAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADA7CAAAAGQ6+Cw68GA7KAAAAHw6cIQ6WGRTJGBTXCxTBHxSuDBTOAAAAIRSqAAAA","preamble":85,"sender":22963,"states":[{"mesid":{"sat":5,"code":0},"cn0":211},{"mesid":{"sat":21,"code":0},"cn0":177},{"mesid":{"sat":2,"code":0},"cn0":185},{"mesid":{"sat":31,"code":0},"cn0":162},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":25,"code":0},"cn0":216},{"mesid":{"sat":12,"code":0},"cn0":206},{"mesid":{"sat":29,"code":0},"cn0":210},{"mesid":{"sat":18,"code":0},"cn0":205},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":131,"code":2},"cn0":203},{"mesid":{"sat":25,"code":1},"cn0":204},{"mesid":{"sat":12,"code":1},"cn0":188},{"mesid":{"sat":31,"code":1},"cn0":150},{"mesid":{"sat":18,"code":1},"cn0":196},{"mesid":{"sat":29,"code":1},"cn0":194},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":5,"code":1},"cn0":194},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":100,"code":3},"cn0":212},{"mesid":{"sat":98,"code":3},"cn0":178},{"mesid":{"sat":102,"code":3},"cn0":174},{"mesid":{"sat":101,"code":3},"cn0":208},{"mesid":{"sat":93,"code":3},"cn0":207},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":106,"code":3},"cn0":180},{"mesid":{"sat":104,"code":3},"cn0":203},{"mesid":{"sat":98,"code":4},"cn0":172},{"mesid":{"sat":102,"code":4},"cn0":205},{"mesid":{"sat":93,"code":4},"cn0":76},{"mesid":{"sat":100,"code":4},"cn0":200},{"mesid":{"sat":101,"code":4},"cn0":194},{"mesid":{"sat":104,"code":4},"cn0":188},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":106,"code":4},"cn0":172},{"mesid":{"sat":35,"code":12},"cn0":200},{"mesid":{"sat":26,"code":12},"cn0":172},{"mesid":{"sat":34,"code":12},"cn0":160},{"mesid":{"sat":24,"code":12},"cn0":189},{"mesid":{"sat":25,"code":12},"cn0":161},{"mesid":{"sat":12,"code":12},"cn0":184},{"mesid":{"sat":19,"code":12},"cn0":184},{"mesid":{"sat":22,"code":12},"cn0":192},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":12,"code":13},"cn0":209},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":12,"code":14},"cn0":194},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":25,"code":14},"cn0":190},{"mesid":{"sat":11,"code":14},"cn0":188},{"mesid":{"sat":24,"code":14},"cn0":202},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":31,"code":14},"cn0":156},{"mesid":{"sat":33,"code":14},"cn0":150},{"mesid":{"sat":25,"code":20},"cn0":201},{"mesid":{"sat":24,"code":20},"cn0":215},{"mesid":{"sat":11,"code":20},"cn0":193},{"mesid":{"sat":31,"code":20},"cn0":174},{"mesid":{"sat":12,"code":20},"cn0":206},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":33,"code":20},"cn0":170},{"mesid":{"sat":0,"code":0},"cn0":0}]} +{"crc":22358,"length":11,"msg_type":258,"payload":"MggQUS8QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271536400,"ns_residual":0,"flags":1} +{"crc":28025,"length":16,"msg_type":259,"payload":"ERBRLxDkBwMZAxkS/oPXFw==","preamble":85,"sender":22963,"flags":17,"tow":271536400,"year":2020,"month":3,"day":25,"hours":3,"minutes":25,"seconds":18,"ns":399999998} +{"crc":54818,"length":34,"msg_type":522,"payload":"EFEvEIOPF+5l6kJACg7oHFaSXsBeTtQUZycywAECWwQPBg==","preamble":85,"sender":22963,"tow":271536400,"lat":37.831235658172794,"lon":-122.28650591527563,"height":-18.153916646797704,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":64385,"length":22,"msg_type":526,"payload":"EFEvEAIAAAAAAAAA+v////EAywIPAg==","preamble":85,"sender":22963,"tow":271536400,"n":2,"e":0,"d":-6,"h_accuracy":241,"v_accuracy":715,"n_sats":15,"flags":2} +{"crc":14425,"length":15,"msg_type":520,"payload":"EFEvEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271536400,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":5314,"length":22,"msg_type":524,"payload":"EFEvEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271536400,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":50720,"length":6,"msg_type":528,"payload":"EFEvEP//","preamble":85,"sender":22963,"tow":271536400,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":49809,"length":9,"msg_type":117,"payload":"/wAAAAAAAAAA","preamble":85,"sender":22963,"mask":255,"l1ca_bias":0,"l1p_bias":0,"l2ca_bias":0,"l2p_bias":0} +{"crc":13212,"length":11,"msg_type":258,"payload":"Mgh0US8QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271536500,"ns_residual":0,"flags":1} +{"crc":10629,"length":16,"msg_type":259,"payload":"EXRRLxDkBwMZAxkS/mTNHQ==","preamble":85,"sender":22963,"flags":17,"tow":271536500,"year":2020,"month":3,"day":25,"hours":3,"minutes":25,"seconds":18,"ns":499999998} +{"crc":44905,"length":34,"msg_type":522,"payload":"dFEvEKB2HO5l6kJA+Mz0HFaSXsBRM/OsUycywAECWwQPBg==","preamble":85,"sender":22963,"tow":271536500,"lat":37.83123566045583,"lon":-122.2865059271461,"height":-18.153620538115607,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":37746,"length":22,"msg_type":526,"payload":"dFEvEAEAAAD8////BQAAAPEAywIPAg==","preamble":85,"sender":22963,"tow":271536500,"n":1,"e":-4,"d":5,"h_accuracy":241,"v_accuracy":715,"n_sats":15,"flags":2} +{"crc":5366,"length":15,"msg_type":520,"payload":"dFEvEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271536500,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":3188,"length":22,"msg_type":524,"payload":"dFEvEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271536500,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":40857,"length":6,"msg_type":528,"payload":"dFEvEP//","preamble":85,"sender":22963,"tow":271536500,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":40642,"length":11,"msg_type":258,"payload":"MgjYUS8QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271536600,"ns_residual":0,"flags":1} +{"crc":6416,"length":16,"msg_type":259,"payload":"EdhRLxDkBwMZAxkS/kXDIw==","preamble":85,"sender":22963,"flags":17,"tow":271536600,"year":2020,"month":3,"day":25,"hours":3,"minutes":25,"seconds":18,"ns":599999998} +{"crc":36736,"length":34,"msg_type":522,"payload":"2FEvEMTfEO5l6kJA6jPqHFaSXsBb5AKcXycywAECWwQPBg==","preamble":85,"sender":22963,"tow":271536600,"lat":37.831235655059146,"lon":-122.28650591727606,"height":-18.153802633958872,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":14792,"length":22,"msg_type":526,"payload":"2FEvEPv///8NAAAA+f////EAywIPAg==","preamble":85,"sender":22963,"tow":271536600,"n":-5,"e":13,"d":-7,"h_accuracy":241,"v_accuracy":715,"n_sats":15,"flags":2} +{"crc":24839,"length":15,"msg_type":520,"payload":"2FEvEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271536600,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":9646,"length":22,"msg_type":524,"payload":"2FEvEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271536600,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":30034,"length":6,"msg_type":528,"payload":"2FEvEP//","preamble":85,"sender":22963,"tow":271536600,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":39110,"length":34,"msg_type":30583,"payload":"gwJdUS8QPwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"sid":{"sat":131,"code":2},"tow":271536477,"message_type":63,"data":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]} +{"crc":36303,"length":11,"msg_type":258,"payload":"Mgg8Ui8QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271536700,"ns_residual":0,"flags":1} +{"crc":26861,"length":16,"msg_type":259,"payload":"ETxSLxDkBwMZAxkS/ia5KQ==","preamble":85,"sender":22963,"flags":17,"tow":271536700,"year":2020,"month":3,"day":25,"hours":3,"minutes":25,"seconds":18,"ns":699999998} +{"crc":12223,"length":34,"msg_type":522,"payload":"PFIvEMUJGe5l6kJAG9MIHVaSXsBqgJGNqycywAECWwQPBg==","preamble":85,"sender":22963,"tow":271536700,"lat":37.83123565886084,"lon":-122.28650594579487,"height":-18.154961441061836,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":15187,"length":22,"msg_type":526,"payload":"PFIvEAcAAADu/////v////EAywIPAg==","preamble":85,"sender":22963,"tow":271536700,"n":7,"e":-18,"d":-2,"h_accuracy":241,"v_accuracy":715,"n_sats":15,"flags":2} +{"crc":37913,"length":15,"msg_type":520,"payload":"PFIvEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271536700,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":59830,"length":22,"msg_type":524,"payload":"PFIvEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271536700,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":5657,"length":6,"msg_type":528,"payload":"PFIvEP//","preamble":85,"sender":22963,"tow":271536700,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":54419,"length":11,"msg_type":258,"payload":"MgigUi8QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271536800,"ns_residual":0,"flags":1} +{"crc":46695,"length":16,"msg_type":259,"payload":"EaBSLxDkBwMZAxkS/gevLw==","preamble":85,"sender":22963,"flags":17,"tow":271536800,"year":2020,"month":3,"day":25,"hours":3,"minutes":25,"seconds":18,"ns":799999998} +{"crc":19631,"length":34,"msg_type":522,"payload":"oFIvEF0X9u1l6kJAa3QEHVaSXsDa4DPpASgywAECWwQPBg==","preamble":85,"sender":22963,"tow":271536800,"lat":37.83123564258742,"lon":-122.28650594172511,"height":-18.15627915875016,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":32067,"length":22,"msg_type":526,"payload":"oFIvEPn///8NAAAAEwAAAPEAywIPAg==","preamble":85,"sender":22963,"tow":271536800,"n":-7,"e":13,"d":19,"h_accuracy":241,"v_accuracy":715,"n_sats":15,"flags":2} +{"crc":12918,"length":15,"msg_type":520,"payload":"oFIvEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271536800,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":6023,"length":22,"msg_type":524,"payload":"oFIvEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271536800,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":54110,"length":6,"msg_type":528,"payload":"oFIvEP//","preamble":85,"sender":22963,"tow":271536800,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":52127,"length":51,"msg_type":1025,"payload":"BkdMTyBMMk9GIE1FIDEgWysxMjA5bXNdIGxvdyBDTjAgdG9vIGxvbmcsIGRyb3BwaW5n","preamble":85,"sender":22963,"level":6,"text":"GLO L2OF ME 1 [+1209ms] low CN0 too long, dropping"} +{"crc":19929,"length":237,"msg_type":97,"payload":"BQDUFQCyAgC6HwCjAAAAAAAAGQDYDADOHQDSEgDNAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwLLGQHMDAG8HwGWEgHFHQHCAAAABQHCAAAAAAAAAAAAAAAACwPUCQOyFAOtBQPQCgPPAAAABAO0FQPLCQStFATNAAAACwTIBQTCAAS8AAAABAStIwzJGgysIgyhGAy9GQyhDAy4Ewy5FgzBAAAADA3RAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADA7CAAAAGQ6/Cw68GA7LAAAAHw6cIQ6XGRTJGBTXCxTCHxSuDBTOAAAAIRSqAAAA","preamble":85,"sender":22963,"states":[{"mesid":{"sat":5,"code":0},"cn0":212},{"mesid":{"sat":21,"code":0},"cn0":178},{"mesid":{"sat":2,"code":0},"cn0":186},{"mesid":{"sat":31,"code":0},"cn0":163},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":25,"code":0},"cn0":216},{"mesid":{"sat":12,"code":0},"cn0":206},{"mesid":{"sat":29,"code":0},"cn0":210},{"mesid":{"sat":18,"code":0},"cn0":205},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":131,"code":2},"cn0":203},{"mesid":{"sat":25,"code":1},"cn0":204},{"mesid":{"sat":12,"code":1},"cn0":188},{"mesid":{"sat":31,"code":1},"cn0":150},{"mesid":{"sat":18,"code":1},"cn0":197},{"mesid":{"sat":29,"code":1},"cn0":194},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":5,"code":1},"cn0":194},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":11,"code":3},"cn0":212},{"mesid":{"sat":9,"code":3},"cn0":178},{"mesid":{"sat":20,"code":3},"cn0":173},{"mesid":{"sat":5,"code":3},"cn0":208},{"mesid":{"sat":10,"code":3},"cn0":207},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":4,"code":3},"cn0":180},{"mesid":{"sat":21,"code":3},"cn0":203},{"mesid":{"sat":9,"code":4},"cn0":173},{"mesid":{"sat":20,"code":4},"cn0":205},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":11,"code":4},"cn0":200},{"mesid":{"sat":5,"code":4},"cn0":194},{"mesid":{"sat":0,"code":4},"cn0":188},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":4,"code":4},"cn0":173},{"mesid":{"sat":35,"code":12},"cn0":201},{"mesid":{"sat":26,"code":12},"cn0":172},{"mesid":{"sat":34,"code":12},"cn0":161},{"mesid":{"sat":24,"code":12},"cn0":189},{"mesid":{"sat":25,"code":12},"cn0":161},{"mesid":{"sat":12,"code":12},"cn0":184},{"mesid":{"sat":19,"code":12},"cn0":185},{"mesid":{"sat":22,"code":12},"cn0":193},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":12,"code":13},"cn0":209},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":12,"code":14},"cn0":194},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":25,"code":14},"cn0":191},{"mesid":{"sat":11,"code":14},"cn0":188},{"mesid":{"sat":24,"code":14},"cn0":203},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":31,"code":14},"cn0":156},{"mesid":{"sat":33,"code":14},"cn0":151},{"mesid":{"sat":25,"code":20},"cn0":201},{"mesid":{"sat":24,"code":20},"cn0":215},{"mesid":{"sat":11,"code":20},"cn0":194},{"mesid":{"sat":31,"code":20},"cn0":174},{"mesid":{"sat":12,"code":20},"cn0":206},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":33,"code":20},"cn0":170},{"mesid":{"sat":0,"code":0},"cn0":0}]} +{"crc":34187,"length":128,"msg_type":151,"payload":"AgAaHQUAKzUMAFEtFQB9GRkAbUYaAKEBHQChNx8AlQ4EAxUWBQMyIQkDXw4KA3EpCwOYJQwDqgMTAyIHFAMMMRUDlSUMDJQpEwwjIBQMDwIWDEMkGAyCIxkMnQ4aDGcVIgyOESMMIi0LDosyDA4PPBgObDYZDpcpHw5VESEOIA8=","preamble":85,"sender":22963,"azel":[{"sid":{"sat":2,"code":0},"az":26,"el":29},{"sid":{"sat":5,"code":0},"az":43,"el":53},{"sid":{"sat":12,"code":0},"az":81,"el":45},{"sid":{"sat":21,"code":0},"az":125,"el":25},{"sid":{"sat":25,"code":0},"az":109,"el":70},{"sid":{"sat":26,"code":0},"az":161,"el":1},{"sid":{"sat":29,"code":0},"az":161,"el":55},{"sid":{"sat":31,"code":0},"az":149,"el":14},{"sid":{"sat":4,"code":3},"az":21,"el":22},{"sid":{"sat":5,"code":3},"az":50,"el":33},{"sid":{"sat":9,"code":3},"az":95,"el":14},{"sid":{"sat":10,"code":3},"az":113,"el":41},{"sid":{"sat":11,"code":3},"az":152,"el":37},{"sid":{"sat":12,"code":3},"az":170,"el":3},{"sid":{"sat":19,"code":3},"az":34,"el":7},{"sid":{"sat":20,"code":3},"az":12,"el":49},{"sid":{"sat":21,"code":3},"az":149,"el":37},{"sid":{"sat":12,"code":12},"az":148,"el":41},{"sid":{"sat":19,"code":12},"az":35,"el":32},{"sid":{"sat":20,"code":12},"az":15,"el":2},{"sid":{"sat":22,"code":12},"az":67,"el":36},{"sid":{"sat":24,"code":12},"az":130,"el":35},{"sid":{"sat":25,"code":12},"az":157,"el":14},{"sid":{"sat":26,"code":12},"az":103,"el":21},{"sid":{"sat":34,"code":12},"az":142,"el":17},{"sid":{"sat":35,"code":12},"az":34,"el":45},{"sid":{"sat":11,"code":14},"az":139,"el":50},{"sid":{"sat":12,"code":14},"az":15,"el":60},{"sid":{"sat":24,"code":14},"az":108,"el":54},{"sid":{"sat":25,"code":14},"az":151,"el":41},{"sid":{"sat":31,"code":14},"az":85,"el":17},{"sid":{"sat":33,"code":14},"az":32,"el":15}]} +{"crc":6113,"length":11,"msg_type":258,"payload":"MggEUy8QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271536900,"ns_residual":0,"flags":1} +{"crc":31795,"length":16,"msg_type":259,"payload":"EQRTLxDkBwMZAxkS/uikNQ==","preamble":85,"sender":22963,"flags":17,"tow":271536900,"year":2020,"month":3,"day":25,"hours":3,"minutes":25,"seconds":18,"ns":899999998} +{"crc":4216,"length":34,"msg_type":522,"payload":"BFMvEME47+1l6kJAwfAIHVaSXsAwMoY/rSYywAECWwQPBg==","preamble":85,"sender":22963,"tow":271536900,"lat":37.83123563938853,"lon":-122.28650594590273,"height":-18.151081056845385,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":54590,"length":22,"msg_type":526,"payload":"BFMvEAgAAAD6////8/////EAywIPAg==","preamble":85,"sender":22963,"tow":271536900,"n":8,"e":-6,"d":-13,"h_accuracy":241,"v_accuracy":715,"n_sats":15,"flags":2} +{"crc":7075,"length":15,"msg_type":520,"payload":"BFMvEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271536900,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":46344,"length":22,"msg_type":524,"payload":"BFMvEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271536900,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":40582,"length":6,"msg_type":528,"payload":"BFMvEP//","preamble":85,"sender":22963,"tow":271536900,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":50169,"length":249,"msg_type":74,"payload":"aFMvEAAAAAAyCEBAmbQ+wyOXBgM6/9TUDw8FAAHkD0VHK0IHKnkIDbIPDxUA5Xv6RVvTWgeMUvZ/ug8PAgBU2ANJtIasB11q/m6jDw8fANCtKT0eom0GQYz7YtgPDxkAXqK+QIgBzgZvYfQuzg8PDABl0Ms+YJSZBlbIBUnTDw8dAP6tKT3cTwIFSYf82MwPDxkBJaK+QGJoTQUM8va+vA8PDAH61wNJtsz6BdXC/uyWDw8fARzQyz44jiQF9oEEr8IPDx0B85i0Pp2nIgX4Zv/qwg8PBQGbtvg+duK6BqF8BMvVDw8LA9+U40T3dVsHV8juZbEPDwkD","preamble":85,"sender":22963,"header":{"t":{"tow":271537000,"ns_residual":0,"wn":2098},"n_obs":64},"obs":[{"P":1052023104,"L":{"i":110568387,"f":3},"D":{"i":-198,"f":212},"cn0":212,"lock":15,"flags":15,"sid":{"sat":5,"code":0}},{"P":1158669313,"L":{"i":121776967,"f":42},"D":{"i":2169,"f":13},"cn0":178,"lock":15,"flags":15,"sid":{"sat":21,"code":0}},{"P":1174043621,"L":{"i":123392859,"f":140},"D":{"i":-2478,"f":127},"cn0":186,"lock":15,"flags":15,"sid":{"sat":2,"code":0}},{"P":1224988756,"L":{"i":128747188,"f":93},"D":{"i":-406,"f":110},"cn0":163,"lock":15,"flags":15,"sid":{"sat":31,"code":0}},{"P":1026141648,"L":{"i":107848222,"f":65},"D":{"i":-1140,"f":98},"cn0":216,"lock":15,"flags":15,"sid":{"sat":25,"code":0}},{"P":1086235230,"L":{"i":114164104,"f":111},"D":{"i":-2975,"f":46},"cn0":206,"lock":15,"flags":15,"sid":{"sat":12,"code":0}},{"P":1053544549,"L":{"i":110728288,"f":86},"D":{"i":1480,"f":73},"cn0":211,"lock":15,"flags":15,"sid":{"sat":29,"code":0}},{"P":1026141694,"L":{"i":84037596,"f":73},"D":{"i":-889,"f":216},"cn0":204,"lock":15,"flags":15,"sid":{"sat":25,"code":1}},{"P":1086235173,"L":{"i":88959074,"f":12},"D":{"i":-2318,"f":190},"cn0":188,"lock":15,"flags":15,"sid":{"sat":12,"code":1}},{"P":1224988666,"L":{"i":100322486,"f":213},"D":{"i":-318,"f":236},"cn0":150,"lock":15,"flags":15,"sid":{"sat":31,"code":1}},{"P":1053544476,"L":{"i":86281784,"f":246},"D":{"i":1153,"f":175},"cn0":194,"lock":15,"flags":15,"sid":{"sat":29,"code":1}},{"P":1052023027,"L":{"i":86157213,"f":248},"D":{"i":-154,"f":234},"cn0":194,"lock":15,"flags":15,"sid":{"sat":5,"code":1}},{"P":1056487067,"L":{"i":112910966,"f":161},"D":{"i":1148,"f":203},"cn0":213,"lock":15,"flags":15,"sid":{"sat":11,"code":3}},{"P":1155765471,"L":{"i":123434487,"f":87},"D":{"i":-4408,"f":101},"cn0":177,"lock":15,"flags":15,"sid":{"sat":9,"code":3}}]} +{"crc":28423,"length":249,"msg_type":74,"payload":"aFMvEAAAAAAyCEGLSTE9GmOLBnxC+wmuDw8UAxclAkAD3tcG7YgIJ9APDwUDSkBvPrj+pwbrD/S0zw8PCgMzmAtDtzQuB93L+rG0Dw8EA+dkJT8lFsIG8FMGAcsPDxUDQ5XjRALquAXsm/LVrQ8PCQTGSjE9VBQXBcpQ/P3NDw8UBM63+D6DBTwFCn4DFcgPDwsEECYCQD+QUgW/owbPwg8PBQQRmQtDL7eVBef1+xitDw8EBFs3mkXYrj8HUyL64skPDyMMg3D9SS2ptAdxPvT1rA8PGgw3Bg9MoNDrB17ICA+hDw8iDNPVpEdeHHYHHeH6J70PDxgM","preamble":85,"sender":22963,"header":{"t":{"tow":271537000,"ns_residual":0,"wn":2098},"n_obs":65},"obs":[{"P":1026640267,"L":{"i":109798170,"f":124},"D":{"i":-1214,"f":9},"cn0":174,"lock":15,"flags":15,"sid":{"sat":20,"code":3}},{"P":1073882391,"L":{"i":114810371,"f":237},"D":{"i":2184,"f":39},"cn0":208,"lock":15,"flags":15,"sid":{"sat":5,"code":3}},{"P":1047478346,"L":{"i":111673016,"f":235},"D":{"i":-3057,"f":180},"cn0":207,"lock":15,"flags":15,"sid":{"sat":10,"code":3}},{"P":1124833331,"L":{"i":120468663,"f":221},"D":{"i":-1333,"f":177},"cn0":180,"lock":15,"flags":15,"sid":{"sat":4,"code":3}},{"P":1059415271,"L":{"i":113382949,"f":240},"D":{"i":1619,"f":1},"cn0":203,"lock":15,"flags":15,"sid":{"sat":21,"code":3}},{"P":1155765571,"L":{"i":96004610,"f":236},"D":{"i":-3429,"f":213},"cn0":173,"lock":15,"flags":15,"sid":{"sat":9,"code":4}},{"P":1026640582,"L":{"i":85398612,"f":202},"D":{"i":-944,"f":253},"cn0":205,"lock":15,"flags":15,"sid":{"sat":20,"code":4}},{"P":1056487374,"L":{"i":87819651,"f":10},"D":{"i":894,"f":21},"cn0":200,"lock":15,"flags":15,"sid":{"sat":11,"code":4}},{"P":1073882640,"L":{"i":89296959,"f":191},"D":{"i":1699,"f":207},"cn0":194,"lock":15,"flags":15,"sid":{"sat":5,"code":4}},{"P":1124833553,"L":{"i":93697839,"f":231},"D":{"i":-1035,"f":24},"cn0":173,"lock":15,"flags":15,"sid":{"sat":4,"code":4}},{"P":1167734619,"L":{"i":121614040,"f":83},"D":{"i":-1502,"f":226},"cn0":201,"lock":15,"flags":15,"sid":{"sat":35,"code":12}},{"P":1241346179,"L":{"i":129280301,"f":113},"D":{"i":-3010,"f":245},"cn0":172,"lock":15,"flags":15,"sid":{"sat":26,"code":12}},{"P":1276053047,"L":{"i":132894880,"f":94},"D":{"i":2248,"f":15},"cn0":161,"lock":15,"flags":15,"sid":{"sat":34,"code":12}},{"P":1201984979,"L":{"i":125181022,"f":29},"D":{"i":-1311,"f":39},"cn0":189,"lock":15,"flags":15,"sid":{"sat":24,"code":12}}]} +{"crc":48757,"length":249,"msg_type":74,"payload":"aFMvEAAAAAAyCEKiBg9N1nkGCMUiBbGhDw8ZDOmHSUWURzcHlUoGG7gPDwwM0TlER6sMbAeh0/4auQ8PEwxyDldHswJuB+dNCYHBDw8WDK+HSUUUb5QFWN0EhtIPDwwNFnAKQu/g8AYs+/twwg8PDA65cB1LJgflB9s4BFW/Dw8ZDsGyHUeQbnkHfRQEy7wPDwsOmG4tQ2d2Dwf3KPlvyw8PGA53TFJRngSMCBWb8/adDw8fDm5+/VHAAp4Ilaf3AJcPDyEOmXAdS2+UDAZKOgNGyQ8PGRTDcC1DlfBoBd3B+pHXDw8YFP6xHUfCIroF8yEDCcIPDwsU","preamble":85,"sender":22963,"header":{"t":{"tow":271537000,"ns_residual":0,"wn":2098},"n_obs":66},"obs":[{"P":1292830370,"L":{"i":134642134,"f":197},"D":{"i":1314,"f":177},"cn0":161,"lock":15,"flags":15,"sid":{"sat":25,"code":12}},{"P":1162446825,"L":{"i":121063316,"f":149},"D":{"i":1610,"f":27},"cn0":184,"lock":15,"flags":15,"sid":{"sat":12,"code":12}},{"P":1195653585,"L":{"i":124521643,"f":161},"D":{"i":-301,"f":26},"cn0":185,"lock":15,"flags":15,"sid":{"sat":19,"code":12}},{"P":1196887666,"L":{"i":124650163,"f":231},"D":{"i":2381,"f":129},"cn0":193,"lock":15,"flags":15,"sid":{"sat":22,"code":12}},{"P":1162446767,"L":{"i":93613844,"f":88},"D":{"i":1245,"f":134},"cn0":210,"lock":15,"flags":15,"sid":{"sat":12,"code":13}},{"P":1107980310,"L":{"i":116449519,"f":44},"D":{"i":-1029,"f":112},"cn0":194,"lock":15,"flags":15,"sid":{"sat":12,"code":14}},{"P":1260220601,"L":{"i":132450086,"f":219},"D":{"i":1080,"f":85},"cn0":191,"lock":15,"flags":15,"sid":{"sat":25,"code":14}},{"P":1193128641,"L":{"i":125398672,"f":125},"D":{"i":1044,"f":203},"cn0":188,"lock":15,"flags":15,"sid":{"sat":11,"code":14}},{"P":1127050904,"L":{"i":118453863,"f":247},"D":{"i":-1752,"f":111},"cn0":203,"lock":15,"flags":15,"sid":{"sat":24,"code":14}},{"P":1364348023,"L":{"i":143393950,"f":21},"D":{"i":-3173,"f":246},"cn0":157,"lock":15,"flags":15,"sid":{"sat":31,"code":14}},{"P":1375567470,"L":{"i":144573120,"f":149},"D":{"i":-2137,"f":0},"cn0":151,"lock":15,"flags":15,"sid":{"sat":33,"code":14}},{"P":1260220569,"L":{"i":101487727,"f":74},"D":{"i":826,"f":70},"cn0":201,"lock":15,"flags":15,"sid":{"sat":25,"code":20}},{"P":1127051459,"L":{"i":90763413,"f":221},"D":{"i":-1343,"f":145},"cn0":215,"lock":15,"flags":15,"sid":{"sat":24,"code":20}},{"P":1193128446,"L":{"i":96084674,"f":243},"D":{"i":801,"f":9},"cn0":194,"lock":15,"flags":15,"sid":{"sat":11,"code":20}}]} +{"crc":21370,"length":62,"msg_type":74,"payload":"aFMvEAAAAAAyCEPoTFJRr4iMBvB/9jOuDw8fFHRvCkJAgVEFQuv8Us4PDwwUWH79US1SmgYnlvn9qQ8PIRQ=","preamble":85,"sender":22963,"header":{"t":{"tow":271537000,"ns_residual":0,"wn":2098},"n_obs":67},"obs":[{"P":1364348136,"L":{"i":109873327,"f":240},"D":{"i":-2433,"f":51},"cn0":174,"lock":15,"flags":15,"sid":{"sat":31,"code":20}},{"P":1107980148,"L":{"i":89227584,"f":66},"D":{"i":-789,"f":82},"cn0":206,"lock":15,"flags":15,"sid":{"sat":12,"code":20}},{"P":1375567448,"L":{"i":110776877,"f":39},"D":{"i":-1642,"f":253},"cn0":169,"lock":15,"flags":15,"sid":{"sat":33,"code":20}}]} +{"crc":49809,"length":9,"msg_type":117,"payload":"/wAAAAAAAAAA","preamble":85,"sender":22963,"mask":255,"l1ca_bias":0,"l1p_bias":0,"l2ca_bias":0,"l2p_bias":0} +{"crc":23252,"length":11,"msg_type":258,"payload":"MghoUy8QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271537000,"ns_residual":0,"flags":1} +{"crc":379,"length":16,"msg_type":259,"payload":"EWhTLxDkBwMZAxkS/smaOw==","preamble":85,"sender":22963,"flags":17,"tow":271537000,"year":2020,"month":3,"day":25,"hours":3,"minutes":25,"seconds":18,"ns":999999998} +{"crc":453,"length":34,"msg_type":522,"payload":"aFMvEIdWz+1l6kJAF+IMHVaSXsDCq7NKSicywAECWwQPBg==","preamble":85,"sender":22963,"tow":271537000,"lat":37.83123562454153,"lon":-122.28650594957467,"height":-18.153477352967236,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":37938,"length":22,"msg_type":526,"payload":"aFMvEAEAAAAFAAAAHQAAAPEAywIPAg==","preamble":85,"sender":22963,"tow":271537000,"n":1,"e":5,"d":29,"h_accuracy":241,"v_accuracy":715,"n_sats":15,"flags":2} +{"crc":4169,"length":15,"msg_type":520,"payload":"aFMvEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271537000,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":62237,"length":22,"msg_type":524,"payload":"aFMvEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271537000,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":51837,"length":6,"msg_type":528,"payload":"aFMvEP//","preamble":85,"sender":22963,"tow":271537000,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":40942,"length":4,"msg_type":65535,"payload":"AAUCgA==","preamble":85,"sender":22963,"flags":2147616000} +{"crc":2168,"length":24,"msg_type":72,"payload":"UO0a3iqORMHK1UJhIkRQwc9nFIPvrk1B","preamble":85,"sender":22963,"x":-2694229.735196747,"y":-4264073.519704292,"z":3890655.0240602265} +{"crc":56949,"length":11,"msg_type":258,"payload":"MgjMUy8QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271537100,"ns_residual":0,"flags":1} +{"crc":11584,"length":16,"msg_type":259,"payload":"EcxTLxDkBwMZAxkT/uD1BQ==","preamble":85,"sender":22963,"flags":17,"tow":271537100,"year":2020,"month":3,"day":25,"hours":3,"minutes":25,"seconds":19,"ns":99999998} +{"crc":963,"length":34,"msg_type":522,"payload":"zFMvEBEWru1l6kJAGesIHVaSXsDLZ647tyUywAECWwQPBg==","preamble":85,"sender":22963,"tow":271537100,"lat":37.83123560905745,"lon":-122.28650594588215,"height":-18.14732716567941,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":19704,"length":22,"msg_type":526,"payload":"zFMvEP////8HAAAA9/////EAywIPAg==","preamble":85,"sender":22963,"tow":271537100,"n":-1,"e":7,"d":-9,"h_accuracy":241,"v_accuracy":715,"n_sats":15,"flags":2} +{"crc":17149,"length":15,"msg_type":520,"payload":"zFMvEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271537100,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":33892,"length":22,"msg_type":524,"payload":"zFMvEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271537100,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":11764,"length":6,"msg_type":528,"payload":"zFMvEP//","preamble":85,"sender":22963,"tow":271537100,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":47124,"length":11,"msg_type":258,"payload":"MggwVC8QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271537200,"ns_residual":0,"flags":1} +{"crc":15472,"length":16,"msg_type":259,"payload":"ETBULxDkBwMZAxkT/sHrCw==","preamble":85,"sender":22963,"flags":17,"tow":271537200,"year":2020,"month":3,"day":25,"hours":3,"minutes":25,"seconds":19,"ns":199999998} +{"crc":18276,"length":34,"msg_type":522,"payload":"MFQvEPhInO1l6kJAnqAkHVaSXsBwbt5blyUywAECWwQPBg==","preamble":85,"sender":22963,"tow":271537200,"lat":37.83123560076814,"lon":-122.28650597168823,"height":-18.146840802959957,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":56603,"length":22,"msg_type":526,"payload":"MFQvEAIAAAD4////GQAAAPEAywIPAg==","preamble":85,"sender":22963,"tow":271537200,"n":2,"e":-8,"d":25,"h_accuracy":241,"v_accuracy":715,"n_sats":15,"flags":2} +{"crc":9097,"length":15,"msg_type":520,"payload":"MFQvEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271537200,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":52258,"length":22,"msg_type":524,"payload":"MFQvEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271537200,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":53375,"length":6,"msg_type":528,"payload":"MFQvEP//","preamble":85,"sender":22963,"tow":271537200,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":17495,"length":139,"msg_type":138,"payload":"BQDALAQAMggAAABAQDgAAAEAAABAsgBALsIAFJZDAKALtgDAdzYAAACxAACAMRHWGb5eZzY+T/dUY52P0T8AAAAgg6d3PwAAIDCfIbRARtfJCOom8b9M1QV73plCvqU6ueguN+k/EhTM+Tx17j/o1QJxDTj7vQCAIrcAAECrAAAAAMAsBAAyCBsbAA==","preamble":85,"sender":22963,"common":{"sid":{"sat":5,"code":0},"toe":{"tow":273600,"wn":2098},"ura":2.0,"fit_interval":14400,"valid":1,"health_bits":0},"tgd":-1.1175871e-8,"c_rs":-43.5625,"c_rc":300.15625,"c_uc":-0.0000020805746,"c_us":0.0000036917627,"c_ic":-1.8626451e-9,"c_is":3.7252903e-9,"dn":5.216288707933817e-9,"m0":0.2743905515707085,"ecc":0.00577498646453023,"sqrta":5153.621828079224,"omega0":-1.0720005362795333,"omegadot":-8.661789369723447e-9,"w":0.7879862351781709,"inc":0.9518113020755001,"inc_dot":-3.9608792722345795e-10,"af0":-0.000009685755,"af1":-6.82121e-13,"af2":0.0,"toc":{"tow":273600,"wn":2098},"iode":27,"iodc":27} +{"crc":19841,"length":139,"msg_type":138,"payload":"GQDALAQAMggAAABAQDgAAAEAAADAMQAgX8IA/JZDAGBGtgDwizYAADa0AAAotFSYPIsW8TM+5hz4wc+O/z8AAAAsFe+CPwAAYP2RIbRAFhvTsJnQAEDKAtIKQNlBvuja0oEnP+0/Qj1ZqGzq7j/cS8aiBt3svQDk8rYAABgsAAAAAMAsBAAyCAUFAA==","preamble":85,"sender":22963,"common":{"sid":{"sat":25,"code":0},"toe":{"tow":273600,"wn":2098},"ura":2.0,"fit_interval":14400,"valid":1,"health_bits":0},"tgd":5.5879354e-9,"c_rs":-55.78125,"c_rc":301.96875,"c_uc":-0.0000029560179,"c_us":0.0000041704625,"c_ic":-1.6950071e-7,"c_is":-1.5646219e-7,"dn":4.643050544549101e-9,"m0":1.9723661019250414,"ecc":0.009245076566003263,"sqrta":5153.570272445679,"omega0":2.101855641786993,"omegadot":-8.311417632477088e-9,"w":0.913959268152067,"inc":0.9661162651117723,"inc_dot":-2.100087477072978e-10,"af0":-0.0000072387047,"af1":2.16005e-12,"af2":0.0,"toc":{"tow":273600,"wn":2098},"iode":5,"iodc":5} +{"crc":50178,"length":139,"msg_type":138,"payload":"DADALAQAMggAAABAQDgAAAEAAABYsgCge8IApJZDAABgtgDwlzYAAKAyAAAgtI3VKOguUzI+msQrVfHbAUAAAACUY5OAPwAAoMK4IbRAOKAgCzJcAUCtOHejHT9BvuQZXGWA/fE/c6ROYnhS7z8M3+7JXEfxvcCPDzkAAJisAAAAAMAsBAAyCBcXAA==","preamble":85,"sender":22963,"common":{"sid":{"sat":12,"code":0},"toe":{"tow":273600,"wn":2098},"ura":2.0,"fit_interval":14400,"valid":1,"health_bits":0},"tgd":-1.2572855e-8,"c_rs":-62.90625,"c_rc":301.28125,"c_uc":-0.00000333786,"c_us":0.0000045280904,"c_ic":1.8626451e-8,"c_is":-1.4901161e-7,"dn":4.266606292706428e-9,"m0":2.2323938993436743,"ecc":0.00809362216386944,"sqrta":5153.721719741821,"omega0":2.1700173253375645,"omegadot":-8.031048811133161e-9,"w":1.124390026032068,"inc":0.9788171691954076,"inc_dot":-2.5143904487404365e-10,"af0":0.00013691094,"af1":-4.3201e-12,"af2":0.0,"toc":{"tow":273600,"wn":2098},"iode":23,"iodc":23} +{"crc":20617,"length":139,"msg_type":138,"payload":"HQDALAQAMggAAABAQDgAAAEAAAAwsgCAYsEAABlDAMCCtQAQUDcAAOAyAACQMqWXiWwGDDA+XB/TSA2OvL8AAABACjNUPwAA4CSdIbRAtqOeydGKCMBFFRj0+k5AvgMu88xB7f0/FO/KteyN7z8ahhkPrDSlvUDRh7gAACKtAAAAAMAsBAAyCEREAA==","preamble":85,"sender":22963,"common":{"sid":{"sat":29,"code":0},"toe":{"tow":273600,"wn":2098},"ura":2.0,"fit_interval":14400,"valid":1,"health_bits":0},"tgd":-1.0244548e-8,"c_rs":-14.15625,"c_rc":153.0,"c_uc":-9.741634e-7,"c_us":0.000012401491,"c_ic":2.6077032e-8,"c_is":1.6763806e-8,"dn":3.736227057425242e-9,"m0":-0.11154253986307822,"ecc":0.0012328720185905695,"sqrta":5153.613843917847,"omega0":-3.067782950547975,"omegadot":-7.594244902211349e-9,"w":1.8704240804535182,"inc":0.9860747862471464,"inc_dot":-9.643258823294287e-12,"af0":-0.000064762775,"af1":-9.208634e-12,"af2":0.0,"toc":{"tow":273600,"wn":2098},"iode":68,"iodc":68} +{"crc":18755,"length":139,"msg_type":138,"payload":"AgDALAQAMggAAABAQDgAAAEAAACYsgCwpkIAuGpDAPCTNgCw8jYAAGg0AAAsNA3HXKiZKzQ+FOBzlwsNA8AAAAD6JUCUPwAAwIqpIbRAOU/fvEhCAcC2dBUDFOtAvp68qRqkSfq/uJiunyKq7j/puaCuBosEPjBM4LkAAOisAAAAAMAsBAAyCDQ0AA==","preamble":85,"sender":22963,"common":{"sid":{"sat":2,"code":0},"toe":{"tow":273600,"wn":2098},"ura":2.0,"fit_interval":14400,"valid":1,"health_bits":0},"tgd":-1.7695129e-8,"c_rs":83.34375,"c_rc":234.71875,"c_uc":0.000004408881,"c_us":0.000007232651,"c_ic":2.1606684e-7,"c_is":1.6018748e-7,"dn":4.696267046944317e-9,"m0":-2.3813697654950463,"ecc":0.0197759565198794,"sqrta":5153.662273406982,"omega0":-2.1573652988098755,"omegadot":-7.878185300897237e-9,"w":-1.6429787675404337,"inc":0.9582684630193148,"inc_dot":5.978820470442458e-10,"af0":-0.00042781373,"af1":-6.5938366e-12,"af2":0.0,"toc":{"tow":273600,"wn":2098},"iode":52,"iodc":52} +{"crc":15541,"length":11,"msg_type":258,"payload":"MgiUVC8QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271537300,"ns_residual":0,"flags":1} +{"crc":61519,"length":16,"msg_type":259,"payload":"EZRULxDkBwMZAxkT/qLhEQ==","preamble":85,"sender":22963,"flags":17,"tow":271537300,"year":2020,"month":3,"day":25,"hours":3,"minutes":25,"seconds":19,"ns":299999998} +{"crc":43062,"length":34,"msg_type":522,"payload":"lFQvEKMnhO1l6kJAGiI9HVaSXsA0KDpsTSMywAECWwQPBg==","preamble":85,"sender":22963,"tow":271537300,"lat":37.83123558953164,"lon":-122.28650599451103,"height":-18.13790012760019,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":4626,"length":22,"msg_type":526,"payload":"lFQvEPr///8CAAAA1f////EAywIPAg==","preamble":85,"sender":22963,"tow":271537300,"n":-6,"e":2,"d":-43,"h_accuracy":241,"v_accuracy":715,"n_sats":15,"flags":2} +{"crc":28989,"length":15,"msg_type":520,"payload":"lFQvEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271537300,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":47963,"length":22,"msg_type":524,"payload":"lFQvEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271537300,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":14326,"length":6,"msg_type":528,"payload":"lFQvEP//","preamble":85,"sender":22963,"tow":271537300,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":58534,"length":237,"msg_type":97,"payload":"BQDUFQCyAgC6HwCjAAAAAAAAGQDYDADOHQDTEgDNAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwLMGQHMDAG8HwGWEgHFHQHCAAAABQHCAAAAAAAAAAAAAAAAZAPUYgOxZgOuZQPQXQPPAAAAagO0aAPLYgStZgTNAAAAZATIZQTCaAS9AAAAagStIwzIGgysIgyhGAy9GQygDAy4Ewy5FgzBAAAADA3SAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADA7DAAAAGQ7ACw69GA7LAAAAHw6eIQ6YGRTJGBTXCxTCHxSuDBTOAAAAIRSpAAAA","preamble":85,"sender":22963,"states":[{"mesid":{"sat":5,"code":0},"cn0":212},{"mesid":{"sat":21,"code":0},"cn0":178},{"mesid":{"sat":2,"code":0},"cn0":186},{"mesid":{"sat":31,"code":0},"cn0":163},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":25,"code":0},"cn0":216},{"mesid":{"sat":12,"code":0},"cn0":206},{"mesid":{"sat":29,"code":0},"cn0":211},{"mesid":{"sat":18,"code":0},"cn0":205},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":131,"code":2},"cn0":204},{"mesid":{"sat":25,"code":1},"cn0":204},{"mesid":{"sat":12,"code":1},"cn0":188},{"mesid":{"sat":31,"code":1},"cn0":150},{"mesid":{"sat":18,"code":1},"cn0":197},{"mesid":{"sat":29,"code":1},"cn0":194},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":5,"code":1},"cn0":194},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":100,"code":3},"cn0":212},{"mesid":{"sat":98,"code":3},"cn0":177},{"mesid":{"sat":102,"code":3},"cn0":174},{"mesid":{"sat":101,"code":3},"cn0":208},{"mesid":{"sat":93,"code":3},"cn0":207},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":106,"code":3},"cn0":180},{"mesid":{"sat":104,"code":3},"cn0":203},{"mesid":{"sat":98,"code":4},"cn0":173},{"mesid":{"sat":102,"code":4},"cn0":205},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":100,"code":4},"cn0":200},{"mesid":{"sat":101,"code":4},"cn0":194},{"mesid":{"sat":104,"code":4},"cn0":189},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":106,"code":4},"cn0":173},{"mesid":{"sat":35,"code":12},"cn0":200},{"mesid":{"sat":26,"code":12},"cn0":172},{"mesid":{"sat":34,"code":12},"cn0":161},{"mesid":{"sat":24,"code":12},"cn0":189},{"mesid":{"sat":25,"code":12},"cn0":160},{"mesid":{"sat":12,"code":12},"cn0":184},{"mesid":{"sat":19,"code":12},"cn0":185},{"mesid":{"sat":22,"code":12},"cn0":193},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":12,"code":13},"cn0":210},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":12,"code":14},"cn0":195},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":25,"code":14},"cn0":192},{"mesid":{"sat":11,"code":14},"cn0":189},{"mesid":{"sat":24,"code":14},"cn0":203},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":31,"code":14},"cn0":158},{"mesid":{"sat":33,"code":14},"cn0":152},{"mesid":{"sat":25,"code":20},"cn0":201},{"mesid":{"sat":24,"code":20},"cn0":215},{"mesid":{"sat":11,"code":20},"cn0":194},{"mesid":{"sat":31,"code":20},"cn0":174},{"mesid":{"sat":12,"code":20},"cn0":206},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":33,"code":20},"cn0":169},{"mesid":{"sat":0,"code":0},"cn0":0}]} +{"crc":29056,"length":11,"msg_type":258,"payload":"Mgj4VC8QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271537400,"ns_residual":0,"flags":1} +{"crc":34214,"length":16,"msg_type":259,"payload":"EfhULxDkBwMZAxkT/oPXFw==","preamble":85,"sender":22963,"flags":17,"tow":271537400,"year":2020,"month":3,"day":25,"hours":3,"minutes":25,"seconds":19,"ns":399999998} +{"crc":3640,"length":34,"msg_type":522,"payload":"+FQvEI8Vau1l6kJAQotjHVaSXsBnLtX4RSMywAECWwQPBg==","preamble":85,"sender":22963,"tow":271537400,"lat":37.83123557739156,"lon":-122.28650603028385,"height":-18.137786438032347,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":55964,"length":22,"msg_type":526,"payload":"+FQvEAQAAAD3////BwAAAPEAywIPAg==","preamble":85,"sender":22963,"tow":271537400,"n":4,"e":-9,"d":7,"h_accuracy":241,"v_accuracy":715,"n_sats":15,"flags":2} +{"crc":31447,"length":15,"msg_type":520,"payload":"+FQvEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271537400,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":64846,"length":22,"msg_type":524,"payload":"+FQvEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271537400,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":25357,"length":6,"msg_type":528,"payload":"+FQvEP//","preamble":85,"sender":22963,"tow":271537400,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":49809,"length":9,"msg_type":117,"payload":"/wAAAAAAAAAA","preamble":85,"sender":22963,"mask":255,"l1ca_bias":0,"l1p_bias":0,"l2ca_bias":0,"l2p_bias":0} +{"crc":45810,"length":11,"msg_type":258,"payload":"MghcVS8QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271537500,"ns_residual":0,"flags":1} +{"crc":50208,"length":16,"msg_type":259,"payload":"EVxVLxDkBwMZAxkT/mTNHQ==","preamble":85,"sender":22963,"flags":17,"tow":271537500,"year":2020,"month":3,"day":25,"hours":3,"minutes":25,"seconds":19,"ns":499999998} +{"crc":24986,"length":34,"msg_type":522,"payload":"XFUvEGfgYu1l6kJAgQh0HVaSXsCjq12nPSQywAECWwQPBg==","preamble":85,"sender":22963,"tow":271537500,"lat":37.83123557403524,"lon":-122.28650604564065,"height":-18.141565761917843,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":14091,"length":22,"msg_type":526,"payload":"XFUvEP////8AAAAAEgAAAPEAywIPAg==","preamble":85,"sender":22963,"tow":271537500,"n":-1,"e":0,"d":18,"h_accuracy":241,"v_accuracy":715,"n_sats":15,"flags":2} +{"crc":21250,"length":15,"msg_type":520,"payload":"XFUvEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271537500,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":24513,"length":22,"msg_type":524,"payload":"XFUvEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271537500,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":11989,"length":6,"msg_type":528,"payload":"XFUvEP//","preamble":85,"sender":22963,"tow":271537500,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":60334,"length":11,"msg_type":258,"payload":"MgjAVS8QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271537600,"ns_residual":0,"flags":1} +{"crc":10027,"length":16,"msg_type":259,"payload":"EcBVLxDkBwMZAxkT/kXDIw==","preamble":85,"sender":22963,"flags":17,"tow":271537600,"year":2020,"month":3,"day":25,"hours":3,"minutes":25,"seconds":19,"ns":599999998} +{"crc":56677,"length":34,"msg_type":522,"payload":"wFUvEKXgXu1l6kJAl7pzHVaSXsDBtB9s8CQywAECWwQPBg==","preamble":85,"sender":22963,"tow":271537600,"lat":37.831235572173036,"lon":-122.2865060453572,"height":-18.14429355405878,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":14193,"length":22,"msg_type":526,"payload":"wFUvEPz///8GAAAA/v////EAywIPAg==","preamble":85,"sender":22963,"tow":271537600,"n":-4,"e":6,"d":-2,"h_accuracy":241,"v_accuracy":715,"n_sats":15,"flags":2} +{"crc":62829,"length":15,"msg_type":520,"payload":"wFUvEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271537600,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":41456,"length":22,"msg_type":524,"payload":"wFUvEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271537600,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":60306,"length":6,"msg_type":528,"payload":"wFUvEP//","preamble":85,"sender":22963,"tow":271537600,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":33970,"length":34,"msg_type":30583,"payload":"gwJBVS8QGZwb/UAgBAC/4AAf4vpuon8wGgCAMAAAAAC+kA==","preamble":85,"sender":22963,"sid":{"sat":131,"code":2},"tow":271537473,"message_type":25,"data":[156,27,253,64,32,4,0,191,224,0,31,226,250,110,162,127,48,26,0,128,48,0,0,0,0,190,144]} +{"crc":63651,"length":11,"msg_type":258,"payload":"MggkVi8QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271537700,"ns_residual":0,"flags":1} +{"crc":22230,"length":16,"msg_type":259,"payload":"ESRWLxDkBwMZAxkT/ia5KQ==","preamble":85,"sender":22963,"flags":17,"tow":271537700,"year":2020,"month":3,"day":25,"hours":3,"minutes":25,"seconds":19,"ns":699999998} +{"crc":34250,"length":34,"msg_type":522,"payload":"JFYvEJm3bu1l6kJAy/VoHVaSXsBdulqQ9CQywAECWwQPBg==","preamble":85,"sender":22963,"tow":271537700,"lat":37.83123557954895,"lon":-122.28650603532803,"height":-18.144356748724352,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":44221,"length":22,"msg_type":526,"payload":"JFYvEAsAAAAJAAAABAAAAPEAywIPAg==","preamble":85,"sender":22963,"tow":271537700,"n":11,"e":9,"d":4,"h_accuracy":241,"v_accuracy":715,"n_sats":15,"flags":2} +{"crc":115,"length":15,"msg_type":520,"payload":"JFYvEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271537700,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":28136,"length":22,"msg_type":524,"payload":"JFYvEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271537700,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":35033,"length":6,"msg_type":528,"payload":"JFYvEP//","preamble":85,"sender":22963,"tow":271537700,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":22013,"length":11,"msg_type":258,"payload":"MgiIVi8QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271537800,"ns_residual":0,"flags":1} +{"crc":23490,"length":16,"msg_type":259,"payload":"EYhWLxDkBwMZAxkT/gevLw==","preamble":85,"sender":22963,"flags":17,"tow":271537800,"year":2020,"month":3,"day":25,"hours":3,"minutes":25,"seconds":19,"ns":799999998} +{"crc":30570,"length":34,"msg_type":522,"payload":"iFYvEAS6Wu1l6kJAp7tiHVaSXsD75Z5A5yUywAECWwQPBg==","preamble":85,"sender":22963,"tow":271537800,"lat":37.831235570240125,"lon":-122.28650602952858,"height":-18.14805988196711,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":50724,"length":22,"msg_type":526,"payload":"iFYvEPn///8CAAAAFQAAAPEAywIPAg==","preamble":85,"sender":22963,"tow":271537800,"n":-7,"e":2,"d":21,"h_accuracy":241,"v_accuracy":715,"n_sats":15,"flags":2} +{"crc":30082,"length":15,"msg_type":520,"payload":"iFYvEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271537800,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":17458,"length":22,"msg_type":524,"payload":"iFYvEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271537800,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":25106,"length":6,"msg_type":528,"payload":"iFYvEP//","preamble":85,"sender":22963,"tow":271537800,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":24828,"length":237,"msg_type":97,"payload":"BQDUFQCyAgC6HwCkAAAAAAAAGQDYDADOHQDTEgDNAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwLMGQHMDAG8HwGVEgHEHQHCAAAABQHBAAAAAAAAAAAAAAAACwPUCQOxFAOuBQPPCgPPAAAABAO1FQPLCQStFATNAAAACwTIBQTDAAS9AAAABASsIwzJGgyrIgyhGAy8GQygDAy4Ewy5FgzBAAAADA3RAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADA7DAAAAGQ7ACw6+GA7MAAAAHw6fIQ6YGRTJGBTXCxTBHxSvDBTOAAAAIRSqAAAA","preamble":85,"sender":22963,"states":[{"mesid":{"sat":5,"code":0},"cn0":212},{"mesid":{"sat":21,"code":0},"cn0":178},{"mesid":{"sat":2,"code":0},"cn0":186},{"mesid":{"sat":31,"code":0},"cn0":164},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":25,"code":0},"cn0":216},{"mesid":{"sat":12,"code":0},"cn0":206},{"mesid":{"sat":29,"code":0},"cn0":211},{"mesid":{"sat":18,"code":0},"cn0":205},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":131,"code":2},"cn0":204},{"mesid":{"sat":25,"code":1},"cn0":204},{"mesid":{"sat":12,"code":1},"cn0":188},{"mesid":{"sat":31,"code":1},"cn0":149},{"mesid":{"sat":18,"code":1},"cn0":196},{"mesid":{"sat":29,"code":1},"cn0":194},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":5,"code":1},"cn0":193},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":11,"code":3},"cn0":212},{"mesid":{"sat":9,"code":3},"cn0":177},{"mesid":{"sat":20,"code":3},"cn0":174},{"mesid":{"sat":5,"code":3},"cn0":207},{"mesid":{"sat":10,"code":3},"cn0":207},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":4,"code":3},"cn0":181},{"mesid":{"sat":21,"code":3},"cn0":203},{"mesid":{"sat":9,"code":4},"cn0":173},{"mesid":{"sat":20,"code":4},"cn0":205},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":11,"code":4},"cn0":200},{"mesid":{"sat":5,"code":4},"cn0":195},{"mesid":{"sat":0,"code":4},"cn0":189},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":4,"code":4},"cn0":172},{"mesid":{"sat":35,"code":12},"cn0":201},{"mesid":{"sat":26,"code":12},"cn0":171},{"mesid":{"sat":34,"code":12},"cn0":161},{"mesid":{"sat":24,"code":12},"cn0":188},{"mesid":{"sat":25,"code":12},"cn0":160},{"mesid":{"sat":12,"code":12},"cn0":184},{"mesid":{"sat":19,"code":12},"cn0":185},{"mesid":{"sat":22,"code":12},"cn0":193},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":12,"code":13},"cn0":209},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":12,"code":14},"cn0":195},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":25,"code":14},"cn0":192},{"mesid":{"sat":11,"code":14},"cn0":190},{"mesid":{"sat":24,"code":14},"cn0":204},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":31,"code":14},"cn0":159},{"mesid":{"sat":33,"code":14},"cn0":152},{"mesid":{"sat":25,"code":20},"cn0":201},{"mesid":{"sat":24,"code":20},"cn0":215},{"mesid":{"sat":11,"code":20},"cn0":193},{"mesid":{"sat":31,"code":20},"cn0":175},{"mesid":{"sat":12,"code":20},"cn0":206},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":33,"code":20},"cn0":170},{"mesid":{"sat":0,"code":0},"cn0":0}]} +{"crc":34187,"length":128,"msg_type":151,"payload":"AgAaHQUAKzUMAFEtFQB9GRkAbUYaAKEBHQChNx8AlQ4EAxUWBQMyIQkDXw4KA3EpCwOYJQwDqgMTAyIHFAMMMRUDlSUMDJQpEwwjIBQMDwIWDEMkGAyCIxkMnQ4aDGcVIgyOESMMIi0LDosyDA4PPBgObDYZDpcpHw5VESEOIA8=","preamble":85,"sender":22963,"azel":[{"sid":{"sat":2,"code":0},"az":26,"el":29},{"sid":{"sat":5,"code":0},"az":43,"el":53},{"sid":{"sat":12,"code":0},"az":81,"el":45},{"sid":{"sat":21,"code":0},"az":125,"el":25},{"sid":{"sat":25,"code":0},"az":109,"el":70},{"sid":{"sat":26,"code":0},"az":161,"el":1},{"sid":{"sat":29,"code":0},"az":161,"el":55},{"sid":{"sat":31,"code":0},"az":149,"el":14},{"sid":{"sat":4,"code":3},"az":21,"el":22},{"sid":{"sat":5,"code":3},"az":50,"el":33},{"sid":{"sat":9,"code":3},"az":95,"el":14},{"sid":{"sat":10,"code":3},"az":113,"el":41},{"sid":{"sat":11,"code":3},"az":152,"el":37},{"sid":{"sat":12,"code":3},"az":170,"el":3},{"sid":{"sat":19,"code":3},"az":34,"el":7},{"sid":{"sat":20,"code":3},"az":12,"el":49},{"sid":{"sat":21,"code":3},"az":149,"el":37},{"sid":{"sat":12,"code":12},"az":148,"el":41},{"sid":{"sat":19,"code":12},"az":35,"el":32},{"sid":{"sat":20,"code":12},"az":15,"el":2},{"sid":{"sat":22,"code":12},"az":67,"el":36},{"sid":{"sat":24,"code":12},"az":130,"el":35},{"sid":{"sat":25,"code":12},"az":157,"el":14},{"sid":{"sat":26,"code":12},"az":103,"el":21},{"sid":{"sat":34,"code":12},"az":142,"el":17},{"sid":{"sat":35,"code":12},"az":34,"el":45},{"sid":{"sat":11,"code":14},"az":139,"el":50},{"sid":{"sat":12,"code":14},"az":15,"el":60},{"sid":{"sat":24,"code":14},"az":108,"el":54},{"sid":{"sat":25,"code":14},"az":151,"el":41},{"sid":{"sat":31,"code":14},"az":85,"el":17},{"sid":{"sat":33,"code":14},"az":32,"el":15}]} +{"crc":12599,"length":11,"msg_type":258,"payload":"MgjsVi8QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271537900,"ns_residual":0,"flags":1} +{"crc":38124,"length":16,"msg_type":259,"payload":"EexWLxDkBwMZAxkT/uikNQ==","preamble":85,"sender":22963,"flags":17,"tow":271537900,"year":2020,"month":3,"day":25,"hours":3,"minutes":25,"seconds":19,"ns":899999998} +{"crc":43377,"length":34,"msg_type":522,"payload":"7FYvEOAIWO1l6kJAuDtkHVaSXsAXfUNkqSYywAECWwQPBg==","preamble":85,"sender":22963,"tow":271537900,"lat":37.831235568986585,"lon":-122.2865060309258,"height":-18.15102221152946,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":39507,"length":22,"msg_type":526,"payload":"7FYvEP7/////////FAAAAPEAywIPAg==","preamble":85,"sender":22963,"tow":271537900,"n":-2,"e":-1,"d":20,"h_accuracy":241,"v_accuracy":715,"n_sats":15,"flags":2} +{"crc":22829,"length":15,"msg_type":520,"payload":"7FYvEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271537900,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":23684,"length":22,"msg_type":524,"payload":"7FYvEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271537900,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":15275,"length":6,"msg_type":528,"payload":"7FYvEP//","preamble":85,"sender":22963,"tow":271537900,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":60154,"length":249,"msg_type":74,"payload":"UFcvEAAAAAAyCECeoLQ+iSSXBmo5/zrUDw8FAHKTD0XPIkIHbXcI+LIPDxUAGNj6RQvdWgdZUfZxuQ8PAgBv5wNJS4isB6hr/mqkDw8fADfYKT2Spm0G34z7BdgPDxkA/BC/QCgNzgaDYPSKzg8PDABrmcs+mI6ZBrbIBe3TDw8dAGLYKT1VUwIFEof8M8wPDxkBxxC/QHFxTQUQ8fY/vA8PDAEP5wNJ9M36BTa//uyWDw8fARqZyz64iSQFA4AEz8IPDx0BT6C0PjioIgWPZP+awQ8PBQGkjPg++926Bnx7BEXUDw8LAyA25EQwh1sHG8juW7EPDwkD","preamble":85,"sender":22963,"header":{"t":{"tow":271538000,"ns_residual":0,"wn":2098},"n_obs":64},"obs":[{"P":1052024990,"L":{"i":110568585,"f":106},"D":{"i":-199,"f":58},"cn0":212,"lock":15,"flags":15,"sid":{"sat":5,"code":0}},{"P":1158648690,"L":{"i":121774799,"f":109},"D":{"i":2167,"f":248},"cn0":178,"lock":15,"flags":15,"sid":{"sat":21,"code":0}},{"P":1174067224,"L":{"i":123395339,"f":89},"D":{"i":-2479,"f":113},"cn0":185,"lock":15,"flags":15,"sid":{"sat":2,"code":0}},{"P":1224992623,"L":{"i":128747595,"f":168},"D":{"i":-405,"f":106},"cn0":164,"lock":15,"flags":15,"sid":{"sat":31,"code":0}},{"P":1026152503,"L":{"i":107849362,"f":223},"D":{"i":-1140,"f":5},"cn0":216,"lock":15,"flags":15,"sid":{"sat":25,"code":0}},{"P":1086263548,"L":{"i":114167080,"f":131},"D":{"i":-2976,"f":138},"cn0":206,"lock":15,"flags":15,"sid":{"sat":12,"code":0}},{"P":1053530475,"L":{"i":110726808,"f":182},"D":{"i":1480,"f":237},"cn0":211,"lock":15,"flags":15,"sid":{"sat":29,"code":0}},{"P":1026152546,"L":{"i":84038485,"f":18},"D":{"i":-889,"f":51},"cn0":204,"lock":15,"flags":15,"sid":{"sat":25,"code":1}},{"P":1086263495,"L":{"i":88961393,"f":16},"D":{"i":-2319,"f":63},"cn0":188,"lock":15,"flags":15,"sid":{"sat":12,"code":1}},{"P":1224992527,"L":{"i":100322804,"f":54},"D":{"i":-321,"f":236},"cn0":150,"lock":15,"flags":15,"sid":{"sat":31,"code":1}},{"P":1053530394,"L":{"i":86280632,"f":3},"D":{"i":1152,"f":207},"cn0":194,"lock":15,"flags":15,"sid":{"sat":29,"code":1}},{"P":1052024911,"L":{"i":86157368,"f":143},"D":{"i":-156,"f":154},"cn0":193,"lock":15,"flags":15,"sid":{"sat":5,"code":1}},{"P":1056476324,"L":{"i":112909819,"f":124},"D":{"i":1147,"f":69},"cn0":212,"lock":15,"flags":15,"sid":{"sat":11,"code":3}},{"P":1155806752,"L":{"i":123438896,"f":27},"D":{"i":-4408,"f":91},"cn0":177,"lock":15,"flags":15,"sid":{"sat":9,"code":3}}]} +{"crc":47975,"length":249,"msg_type":74,"payload":"UFcvEAAAAAAyCEHMdTE92GeLBn9C+5OuDw8UA0TVAUB81dcG2IYI7c8PDwUDP7BvPqkKqAbpD/Twzw8PCgP3yAtD7TkuB7rJ+iq1Dw8EA94pJT/TD8IGcFIG08sPDxUDmTbkRGf3uAX5m/JVrg8PCQQudzE9BRgXBQBQ/DbNDw8UBNqN+D4GAjwF03wDysgPDwsEWtYBQJ2JUgXJoQauww8PBQSxyQtDPbuVBVny+8usDw8EBLJvmkW2tD8HbSH67skPDyMMaeH9Se60tAf7PfQmrA8PGgzosQ5M2MfrB4nJCGihDw8iDBYHpUd+IXYHu976zrwPDxgM","preamble":85,"sender":22963,"header":{"t":{"tow":271538000,"ns_residual":0,"wn":2098},"n_obs":65},"obs":[{"P":1026651596,"L":{"i":109799384,"f":127},"D":{"i":-1214,"f":147},"cn0":174,"lock":15,"flags":15,"sid":{"sat":20,"code":3}},{"P":1073861956,"L":{"i":114808188,"f":216},"D":{"i":2182,"f":237},"cn0":207,"lock":15,"flags":15,"sid":{"sat":5,"code":3}},{"P":1047507007,"L":{"i":111676073,"f":233},"D":{"i":-3057,"f":240},"cn0":207,"lock":15,"flags":15,"sid":{"sat":10,"code":3}},{"P":1124845815,"L":{"i":120469997,"f":186},"D":{"i":-1335,"f":42},"cn0":181,"lock":15,"flags":15,"sid":{"sat":4,"code":3}},{"P":1059400158,"L":{"i":113381331,"f":112},"D":{"i":1618,"f":211},"cn0":203,"lock":15,"flags":15,"sid":{"sat":21,"code":3}},{"P":1155806873,"L":{"i":96008039,"f":249},"D":{"i":-3429,"f":85},"cn0":174,"lock":15,"flags":15,"sid":{"sat":9,"code":4}},{"P":1026651950,"L":{"i":85399557,"f":0},"D":{"i":-944,"f":54},"cn0":205,"lock":15,"flags":15,"sid":{"sat":20,"code":4}},{"P":1056476634,"L":{"i":87818758,"f":211},"D":{"i":892,"f":202},"cn0":200,"lock":15,"flags":15,"sid":{"sat":11,"code":4}},{"P":1073862234,"L":{"i":89295261,"f":201},"D":{"i":1697,"f":174},"cn0":195,"lock":15,"flags":15,"sid":{"sat":5,"code":4}},{"P":1124846001,"L":{"i":93698877,"f":89},"D":{"i":-1038,"f":203},"cn0":172,"lock":15,"flags":15,"sid":{"sat":4,"code":4}},{"P":1167749042,"L":{"i":121615542,"f":109},"D":{"i":-1503,"f":238},"cn0":201,"lock":15,"flags":15,"sid":{"sat":35,"code":12}},{"P":1241375081,"L":{"i":129283310,"f":251},"D":{"i":-3011,"f":38},"cn0":172,"lock":15,"flags":15,"sid":{"sat":26,"code":12}},{"P":1276031464,"L":{"i":132892632,"f":137},"D":{"i":2249,"f":104},"cn0":161,"lock":15,"flags":15,"sid":{"sat":34,"code":12}},{"P":1201997590,"L":{"i":125182334,"f":187},"D":{"i":-1314,"f":206},"cn0":188,"lock":15,"flags":15,"sid":{"sat":24,"code":12}}]} +{"crc":51351,"length":249,"msg_type":74,"payload":"UFcvEAAAAAAyCEJf1Q5NtHQGCHokBQ+gDw8ZDI5LSUVKQTcH6EoGz7kPDwwMIkVER9kNbAcq0/7cuQ8PEwwttVZHZ/ltB5tMCdfBDw8WDEpLSUU3apQFpN0ECdEPDwwNTpYKQvTk8AZw+vumww8PDA6fSB1L8ALlB3g2BI/ADw8ZDvSLHUd8ankHwxMEEr4PDwsOuK8tQ0F9DwcGJvnzzA8PGA5nwlJRAxGMCI+c89ifDw8fDuvN/VEcC54ImaP3TZgPDyEOhUgdSzWRDAYAOgMDyQ8PGRTtsS1D1fVoBR7A+j7XDw8YFDGLHUejH7oFMyADSMEPDwsU","preamble":85,"sender":22963,"header":{"t":{"tow":271538000,"ns_residual":0,"wn":2098},"n_obs":66},"obs":[{"P":1292817759,"L":{"i":134640820,"f":122},"D":{"i":1316,"f":15},"cn0":160,"lock":15,"flags":15,"sid":{"sat":25,"code":12}},{"P":1162431374,"L":{"i":121061706,"f":232},"D":{"i":1610,"f":207},"cn0":185,"lock":15,"flags":15,"sid":{"sat":12,"code":12}},{"P":1195656482,"L":{"i":124521945,"f":42},"D":{"i":-301,"f":220},"cn0":185,"lock":15,"flags":15,"sid":{"sat":19,"code":12}},{"P":1196864813,"L":{"i":124647783,"f":155},"D":{"i":2380,"f":215},"cn0":193,"lock":15,"flags":15,"sid":{"sat":22,"code":12}},{"P":1162431306,"L":{"i":93612599,"f":164},"D":{"i":1245,"f":9},"cn0":209,"lock":15,"flags":15,"sid":{"sat":12,"code":13}},{"P":1107990094,"L":{"i":116450548,"f":112},"D":{"i":-1030,"f":166},"cn0":195,"lock":15,"flags":15,"sid":{"sat":12,"code":14}},{"P":1260210335,"L":{"i":132449008,"f":120},"D":{"i":1078,"f":143},"cn0":192,"lock":15,"flags":15,"sid":{"sat":25,"code":14}},{"P":1193118708,"L":{"i":125397628,"f":195},"D":{"i":1043,"f":18},"cn0":190,"lock":15,"flags":15,"sid":{"sat":11,"code":14}},{"P":1127067576,"L":{"i":118455617,"f":6},"D":{"i":-1754,"f":243},"cn0":204,"lock":15,"flags":15,"sid":{"sat":24,"code":14}},{"P":1364378215,"L":{"i":143397123,"f":143},"D":{"i":-3172,"f":216},"cn0":159,"lock":15,"flags":15,"sid":{"sat":31,"code":14}},{"P":1375587819,"L":{"i":144575260,"f":153},"D":{"i":-2141,"f":77},"cn0":152,"lock":15,"flags":15,"sid":{"sat":33,"code":14}},{"P":1260210309,"L":{"i":101486901,"f":0},"D":{"i":826,"f":3},"cn0":201,"lock":15,"flags":15,"sid":{"sat":25,"code":20}},{"P":1127068141,"L":{"i":90764757,"f":30},"D":{"i":-1344,"f":62},"cn0":215,"lock":15,"flags":15,"sid":{"sat":24,"code":20}},{"P":1193118513,"L":{"i":96083875,"f":51},"D":{"i":800,"f":72},"cn0":193,"lock":15,"flags":15,"sid":{"sat":11,"code":20}}]} +{"crc":19135,"length":62,"msg_type":74,"payload":"UFcvEAAAAAAyCEPYwlJRL5KMBo6C9nqvDw8fFLKVCkJUhFEF6uv8XM4PDwwU5M39UZRYmgbsl/lIqg8PIRQ=","preamble":85,"sender":22963,"header":{"t":{"tow":271538000,"ns_residual":0,"wn":2098},"n_obs":67},"obs":[{"P":1364378328,"L":{"i":109875759,"f":142},"D":{"i":-2430,"f":122},"cn0":175,"lock":15,"flags":15,"sid":{"sat":31,"code":20}},{"P":1107989938,"L":{"i":89228372,"f":234},"D":{"i":-789,"f":92},"cn0":206,"lock":15,"flags":15,"sid":{"sat":12,"code":20}},{"P":1375587812,"L":{"i":110778516,"f":236},"D":{"i":-1641,"f":72},"cn0":170,"lock":15,"flags":15,"sid":{"sat":33,"code":20}}]} +{"crc":49809,"length":9,"msg_type":117,"payload":"/wAAAAAAAAAA","preamble":85,"sender":22963,"mask":255,"l1ca_bias":0,"l1p_bias":0,"l2ca_bias":0,"l2p_bias":0} +{"crc":34884,"length":11,"msg_type":258,"payload":"MghQVy8QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271538000,"ns_residual":0,"flags":1} +{"crc":41556,"length":16,"msg_type":259,"payload":"EVBXLxDkBwMZAxkT/smaOw==","preamble":85,"sender":22963,"flags":17,"tow":271538000,"year":2020,"month":3,"day":25,"hours":3,"minutes":25,"seconds":19,"ns":999999998} +{"crc":3554,"length":34,"msg_type":522,"payload":"UFcvEHeqZe1l6kJAAvl9HVaSXsCGmfpNyiUywAECWwQPBg==","preamble":85,"sender":22963,"tow":271538000,"lat":37.83123557533411,"lon":-122.2865060548975,"height":-18.147618173295562,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":44245,"length":22,"msg_type":526,"payload":"UFcvEAkAAADz////3v////EAywIPAg==","preamble":85,"sender":22963,"tow":271538000,"n":9,"e":-13,"d":-34,"h_accuracy":241,"v_accuracy":715,"n_sats":15,"flags":2} +{"crc":6455,"length":15,"msg_type":520,"payload":"UFcvEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271538000,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":7662,"length":22,"msg_type":524,"payload":"UFcvEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271538000,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":25013,"length":6,"msg_type":528,"payload":"UFcvEP//","preamble":85,"sender":22963,"tow":271538000,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":40942,"length":4,"msg_type":65535,"payload":"AAUCgA==","preamble":85,"sender":22963,"flags":2147616000} +{"crc":2168,"length":24,"msg_type":72,"payload":"UO0a3iqORMHK1UJhIkRQwc9nFIPvrk1B","preamble":85,"sender":22963,"x":-2694229.735196747,"y":-4264073.519704292,"z":3890655.0240602265} +{"crc":47991,"length":26,"msg_type":23,"payload":"bWFpbgAAAAAAAAAAAAAAAAAAAAAAAAx1AAA=","preamble":85,"sender":22963,"name":"main\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":0,"stack_free":29964} +{"crc":11900,"length":26,"msg_type":23,"payload":"aWRsZQAAAAAAAAAAAAAAAAAAAAAxAHwAAAA=","preamble":85,"sender":22963,"name":"idle\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":49,"stack_free":124} +{"crc":38839,"length":26,"msg_type":23,"payload":"cnBtc2cAAAAAAAAAAAAAAAAAAAABAAQOAAA=","preamble":85,"sender":22963,"name":"rpmsg\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":1,"stack_free":3588} +{"crc":51784,"length":26,"msg_type":23,"payload":"U0JQAAAAAAAAAAAAAAAAAAAAAAAAAPz/AAA=","preamble":85,"sender":22963,"name":"SBP\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":0,"stack_free":65532} +{"crc":33651,"length":26,"msg_type":23,"payload":"TkFQAAAAAAAAAAAAAAAAAAAAAAAAAASAAAA=","preamble":85,"sender":22963,"name":"NAP\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":0,"stack_free":32772} +{"crc":61814,"length":26,"msg_type":23,"payload":"bWFuYWdlIFBWAAAAAAAAAAAAAAAAACwEAAA=","preamble":85,"sender":22963,"name":"manage PV\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":0,"stack_free":1068} +{"crc":14252,"length":26,"msg_type":23,"payload":"SU1VAAAAAAAAAAAAAAAAAAAAAAAAAPQHAAA=","preamble":85,"sender":22963,"name":"IMU\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":0,"stack_free":2036} +{"crc":18976,"length":26,"msg_type":23,"payload":"SU1VIGF1eAAAAAAAAAAAAAAAAAAAAEwIAAA=","preamble":85,"sender":22963,"name":"IMU aux\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":0,"stack_free":2124} +{"crc":26120,"length":26,"msg_type":23,"payload":"bmRiAAAAAAAAAAAAAAAAAAAAAAAAAFAMAAA=","preamble":85,"sender":22963,"name":"ndb\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":0,"stack_free":3152} +{"crc":25923,"length":26,"msg_type":23,"payload":"TkFQIFRyYWNraW5nAAAAAAAAAAAtAdR3AAA=","preamble":85,"sender":22963,"name":"NAP Tracking\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":301,"stack_free":30676} +{"crc":6098,"length":26,"msg_type":23,"payload":"ZGVjb2RlAAAAAAAAAAAAAAAAAAAKANQGAAA=","preamble":85,"sender":22963,"name":"decode\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":10,"stack_free":1748} +{"crc":61048,"length":26,"msg_type":23,"payload":"bWFuYWdlIGFjcQAAAAAAAAAAAADcAaR3AAA=","preamble":85,"sender":22963,"name":"manage acq\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":476,"stack_free":30628} +{"crc":58531,"length":26,"msg_type":23,"payload":"c3lzdGVtIG1vbml0b3IAAAAAAAAAACwGAAA=","preamble":85,"sender":22963,"name":"system monitor\u0000\u0000\u0000\u0000\u0000\u0000","cpu":0,"stack_free":1580} +{"crc":44438,"length":26,"msg_type":23,"payload":"V2F0Y2hkb2cAAAAAAAAAAAAAAAAAAOQDAAA=","preamble":85,"sender":22963,"name":"Watchdog\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":0,"stack_free":996} +{"crc":61599,"length":26,"msg_type":23,"payload":"c3RhcmxpbmcAAAAAAAAAAAAAAACWAPz/AAA=","preamble":85,"sender":22963,"name":"starling\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":150,"stack_free":65532} +{"crc":42361,"length":26,"msg_type":23,"payload":"bWVfY2FsY19wdnQAAAAAAAAAAAAIAIwjAAA=","preamble":85,"sender":22963,"name":"me_calc_pvt\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":8,"stack_free":9100} +{"crc":38576,"length":26,"msg_type":23,"payload":"UFBTAAAAAAAAAAAAAAAAAAAAAAAAAEgHAAA=","preamble":85,"sender":22963,"name":"PPS\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":0,"stack_free":1864} +{"crc":50933,"length":26,"msg_type":23,"payload":"c3BlY3RydW0gYW5hbHl6ZXIAAAAAANQPAAA=","preamble":85,"sender":22963,"name":"spectrum analyzer\u0000\u0000\u0000","cpu":0,"stack_free":4052} +{"crc":21308,"length":11,"msg_type":258,"payload":"Mgi0Vy8QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271538100,"ns_residual":0,"flags":1} +{"crc":27107,"length":16,"msg_type":259,"payload":"EbRXLxDkBwMZAxkU/uD1BQ==","preamble":85,"sender":22963,"flags":17,"tow":271538100,"year":2020,"month":3,"day":25,"hours":3,"minutes":25,"seconds":20,"ns":99999998} +{"crc":62296,"length":34,"msg_type":522,"payload":"tFcvEKDzdu1l6kJAQCttHVaSXsCUQOZI3SUywAECWwQPBg==","preamble":85,"sender":22963,"tow":271538100,"lat":37.83123558338343,"lon":-122.2865060392478,"height":-18.147907787527018,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":21961,"length":22,"msg_type":526,"payload":"tFcvEAkAAAAKAAAACwAAAPEAywIPAg==","preamble":85,"sender":22963,"tow":271538100,"n":9,"e":10,"d":11,"h_accuracy":241,"v_accuracy":715,"n_sats":15,"flags":2} +{"crc":24970,"length":15,"msg_type":520,"payload":"tFcvEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271538100,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":49101,"length":22,"msg_type":524,"payload":"tFcvEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271538100,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":60460,"length":6,"msg_type":528,"payload":"tFcvEP//","preamble":85,"sender":22963,"tow":271538100,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":10144,"length":11,"msg_type":258,"payload":"MggYWC8QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271538200,"ns_residual":0,"flags":1} +{"crc":63291,"length":16,"msg_type":259,"payload":"ERhYLxDkBwMZAxkU/sHrCw==","preamble":85,"sender":22963,"flags":17,"tow":271538200,"year":2020,"month":3,"day":25,"hours":3,"minutes":25,"seconds":20,"ns":199999998} +{"crc":45143,"length":34,"msg_type":522,"payload":"GFgvEJ4AdO1l6kJAvRxsHVaSXsDL2f1hKiUywAECWwQPBg==","preamble":85,"sender":22963,"tow":271538200,"lat":37.83123558201008,"lon":-122.28650603826368,"height":-18.145177959895403,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":13098,"length":22,"msg_type":526,"payload":"GFgvEPz////4////BwAAAPEAywIPAg==","preamble":85,"sender":22963,"tow":271538200,"n":-4,"e":-8,"d":7,"h_accuracy":241,"v_accuracy":715,"n_sats":15,"flags":2} +{"crc":36630,"length":15,"msg_type":520,"payload":"GFgvEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271538200,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":20705,"length":22,"msg_type":524,"payload":"GFgvEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271538200,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":25374,"length":6,"msg_type":528,"payload":"GFgvEP//","preamble":85,"sender":22963,"tow":271538200,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":17258,"length":11,"msg_type":258,"payload":"Mgh8WC8QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271538300,"ns_residual":0,"flags":1} +{"crc":17695,"length":16,"msg_type":259,"payload":"EXxYLxDkBwMZAxkU/qLhEQ==","preamble":85,"sender":22963,"flags":17,"tow":271538300,"year":2020,"month":3,"day":25,"hours":3,"minutes":25,"seconds":20,"ns":299999998} +{"crc":53427,"length":34,"msg_type":522,"payload":"fFgvEH6Ca+1l6kJAhklYHVaSXsBQp24yoSUywAECWwQPBg==","preamble":85,"sender":22963,"tow":271538300,"lat":37.83123557805537,"lon":-122.28650601980016,"height":-18.146990921034842,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":25786,"length":22,"msg_type":526,"payload":"fFgvEPf///8QAAAAFAAAAPEAywIPAg==","preamble":85,"sender":22963,"tow":271538300,"n":-9,"e":16,"d":20,"h_accuracy":241,"v_accuracy":715,"n_sats":15,"flags":2} +{"crc":41913,"length":15,"msg_type":520,"payload":"fFgvEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271538300,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":18519,"length":22,"msg_type":524,"payload":"fFgvEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271538300,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":15015,"length":6,"msg_type":528,"payload":"fFgvEP//","preamble":85,"sender":22963,"tow":271538300,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":45086,"length":237,"msg_type":97,"payload":"BQDUFQCyAgC5HwClAAAAAAAAGQDYDADOHQDSEgDNAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwLLGQHMDAG8HwGVEgHEHQHCAAAABQHBAAAAAAAAAAAAAAAAZAPUYgOxZgOuZQPPXQPPAAAAagO1aAPLYgStZgTNAAAAZATIZQTDaAS9AAAAagSsIwzJGgysIgyhGAy8GQygDAy4Ewy5FgzAAAAADA3SAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADA7DAAAAGQ7ACw69GA7MAAAAHw6eIQ6YGRTJGBTXCxTCHxSuDBTOAAAAIRSqAAAA","preamble":85,"sender":22963,"states":[{"mesid":{"sat":5,"code":0},"cn0":212},{"mesid":{"sat":21,"code":0},"cn0":178},{"mesid":{"sat":2,"code":0},"cn0":185},{"mesid":{"sat":31,"code":0},"cn0":165},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":25,"code":0},"cn0":216},{"mesid":{"sat":12,"code":0},"cn0":206},{"mesid":{"sat":29,"code":0},"cn0":210},{"mesid":{"sat":18,"code":0},"cn0":205},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":131,"code":2},"cn0":203},{"mesid":{"sat":25,"code":1},"cn0":204},{"mesid":{"sat":12,"code":1},"cn0":188},{"mesid":{"sat":31,"code":1},"cn0":149},{"mesid":{"sat":18,"code":1},"cn0":196},{"mesid":{"sat":29,"code":1},"cn0":194},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":5,"code":1},"cn0":193},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":100,"code":3},"cn0":212},{"mesid":{"sat":98,"code":3},"cn0":177},{"mesid":{"sat":102,"code":3},"cn0":174},{"mesid":{"sat":101,"code":3},"cn0":207},{"mesid":{"sat":93,"code":3},"cn0":207},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":106,"code":3},"cn0":181},{"mesid":{"sat":104,"code":3},"cn0":203},{"mesid":{"sat":98,"code":4},"cn0":173},{"mesid":{"sat":102,"code":4},"cn0":205},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":100,"code":4},"cn0":200},{"mesid":{"sat":101,"code":4},"cn0":195},{"mesid":{"sat":104,"code":4},"cn0":189},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":106,"code":4},"cn0":172},{"mesid":{"sat":35,"code":12},"cn0":201},{"mesid":{"sat":26,"code":12},"cn0":172},{"mesid":{"sat":34,"code":12},"cn0":161},{"mesid":{"sat":24,"code":12},"cn0":188},{"mesid":{"sat":25,"code":12},"cn0":160},{"mesid":{"sat":12,"code":12},"cn0":184},{"mesid":{"sat":19,"code":12},"cn0":185},{"mesid":{"sat":22,"code":12},"cn0":192},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":12,"code":13},"cn0":210},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":12,"code":14},"cn0":195},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":25,"code":14},"cn0":192},{"mesid":{"sat":11,"code":14},"cn0":189},{"mesid":{"sat":24,"code":14},"cn0":204},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":31,"code":14},"cn0":158},{"mesid":{"sat":33,"code":14},"cn0":152},{"mesid":{"sat":25,"code":20},"cn0":201},{"mesid":{"sat":24,"code":20},"cn0":215},{"mesid":{"sat":11,"code":20},"cn0":194},{"mesid":{"sat":31,"code":20},"cn0":174},{"mesid":{"sat":12,"code":20},"cn0":206},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":33,"code":20},"cn0":170},{"mesid":{"sat":0,"code":0},"cn0":0}]} +{"crc":6710,"length":11,"msg_type":258,"payload":"MgjgWC8QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271538400,"ns_residual":0,"flags":1} +{"crc":40307,"length":16,"msg_type":259,"payload":"EeBYLxDkBwMZAxkU/oPXFw==","preamble":85,"sender":22963,"flags":17,"tow":271538400,"year":2020,"month":3,"day":25,"hours":3,"minutes":25,"seconds":20,"ns":399999998} +{"crc":7193,"length":34,"msg_type":522,"payload":"4FgvEGEecO1l6kJAeolnHVaSXsDEwHDmQSUywAECWwQPBg==","preamble":85,"sender":22963,"tow":271538400,"lat":37.83123558020157,"lon":-122.28650603400266,"height":-18.145536806609712,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":38832,"length":22,"msg_type":526,"payload":"4FgvEAQAAAD2////5v////EAywIPAg==","preamble":85,"sender":22963,"tow":271538400,"n":4,"e":-10,"d":-26,"h_accuracy":241,"v_accuracy":715,"n_sats":15,"flags":2} +{"crc":1494,"length":15,"msg_type":520,"payload":"4FgvEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271538400,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":46694,"length":22,"msg_type":524,"payload":"4FgvEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271538400,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":65504,"length":6,"msg_type":528,"payload":"4FgvEP//","preamble":85,"sender":22963,"tow":271538400,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":49809,"length":9,"msg_type":117,"payload":"/wAAAAAAAAAA","preamble":85,"sender":22963,"mask":255,"l1ca_bias":0,"l1p_bias":0,"l2ca_bias":0,"l2p_bias":0} +{"crc":55620,"length":11,"msg_type":258,"payload":"MghEWS8QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271538500,"ns_residual":0,"flags":1} +{"crc":56565,"length":16,"msg_type":259,"payload":"EURZLxDkBwMZAxkU/mTNHQ==","preamble":85,"sender":22963,"flags":17,"tow":271538500,"year":2020,"month":3,"day":25,"hours":3,"minutes":25,"seconds":20,"ns":499999998} +{"crc":2481,"length":34,"msg_type":522,"payload":"RFkvEFSti+1l6kJA8z95HVaSXsDVFm8RtSUywAECWwQPBg==","preamble":85,"sender":22963,"tow":271538500,"lat":37.83123559303445,"lon":-122.28650605049897,"height":-18.14729412996424,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":56547,"length":22,"msg_type":526,"payload":"RFkvEAkAAAABAAAA/v////EAywIPAg==","preamble":85,"sender":22963,"tow":271538500,"n":9,"e":1,"d":-2,"h_accuracy":241,"v_accuracy":715,"n_sats":15,"flags":2} +{"crc":11267,"length":15,"msg_type":520,"payload":"RFkvEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271538500,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":5353,"length":22,"msg_type":524,"payload":"RFkvEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271538500,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":45624,"length":6,"msg_type":528,"payload":"RFkvEP//","preamble":85,"sender":22963,"tow":271538500,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":11203,"length":11,"msg_type":258,"payload":"MgioWS8QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271538600,"ns_residual":0,"flags":1} +{"crc":50793,"length":16,"msg_type":259,"payload":"EahZLxDkBwMZAxkU/kXDIw==","preamble":85,"sender":22963,"flags":17,"tow":271538600,"year":2020,"month":3,"day":25,"hours":3,"minutes":25,"seconds":20,"ns":599999998} +{"crc":42803,"length":34,"msg_type":522,"payload":"qFkvEFYPiu1l6kJA1dGBHVaSXsDJFmwlJCYywAECWwQPBg==","preamble":85,"sender":22963,"tow":271538600,"lat":37.8312355922814,"lon":-122.28650605848027,"height":-18.14898904694454,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":51682,"length":22,"msg_type":526,"payload":"qFkvEPn///8HAAAABgAAAPEAywIPAg==","preamble":85,"sender":22963,"tow":271538600,"n":-7,"e":7,"d":6,"h_accuracy":241,"v_accuracy":715,"n_sats":15,"flags":2} +{"crc":29691,"length":15,"msg_type":520,"payload":"qFkvEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271538600,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":59497,"length":22,"msg_type":524,"payload":"qFkvEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271538600,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":13027,"length":6,"msg_type":528,"payload":"qFkvEP//","preamble":85,"sender":22963,"tow":271538600,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":26391,"length":11,"msg_type":258,"payload":"MggMWi8QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271538700,"ns_residual":0,"flags":1} +{"crc":40349,"length":16,"msg_type":259,"payload":"EQxaLxDkBwMZAxkU/ia5KQ==","preamble":85,"sender":22963,"flags":17,"tow":271538700,"year":2020,"month":3,"day":25,"hours":3,"minutes":25,"seconds":20,"ns":699999998} +{"crc":56893,"length":34,"msg_type":522,"payload":"DFovEPhFt+1l6kJAIsGmHVaSXsCKr4Q3FScywAECWwQPBg==","preamble":85,"sender":22963,"tow":271538700,"lat":37.83123561333554,"lon":-122.28650609287845,"height":-18.152667493719072,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":22960,"length":22,"msg_type":526,"payload":"DFovEAQAAAD5////BgAAAPEAywIPAg==","preamble":85,"sender":22963,"tow":271538700,"n":4,"e":-7,"d":6,"h_accuracy":241,"v_accuracy":715,"n_sats":15,"flags":2} +{"crc":44268,"length":15,"msg_type":520,"payload":"DFovEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271538700,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":61739,"length":22,"msg_type":524,"payload":"DFovEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271538700,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":15288,"length":6,"msg_type":528,"payload":"DFovEP//","preamble":85,"sender":22963,"tow":271538700,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":3966,"length":34,"msg_type":30583,"payload":"gwIvWS8QA5f/AA/9f/f/ABf//+f/f/AB//AA6M725+/lcA==","preamble":85,"sender":22963,"sid":{"sat":131,"code":2},"tow":271538479,"message_type":3,"data":[151,255,0,15,253,127,247,255,0,23,255,255,231,255,127,240,1,255,240,0,232,206,246,231,239,229,112]} +{"crc":31196,"length":11,"msg_type":258,"payload":"MghwWi8QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271538800,"ns_residual":0,"flags":1} +{"crc":40984,"length":16,"msg_type":259,"payload":"EXBaLxDkBwMZAxkU/gevLw==","preamble":85,"sender":22963,"flags":17,"tow":271538800,"year":2020,"month":3,"day":25,"hours":3,"minutes":25,"seconds":20,"ns":799999998} +{"crc":10236,"length":34,"msg_type":522,"payload":"cFovEPpG3O1l6kJAg07FHVaSXsDzvB2t1ScywAECWwQPBg==","preamble":85,"sender":22963,"tow":271538800,"lat":37.83123563056684,"lon":-122.28650612133247,"height":-18.155604190597796,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":36527,"length":22,"msg_type":526,"payload":"cFovEAMAAAD0////KwAAAPEAywIPAg==","preamble":85,"sender":22963,"tow":271538800,"n":3,"e":-12,"d":43,"h_accuracy":241,"v_accuracy":715,"n_sats":15,"flags":2} +{"crc":59788,"length":15,"msg_type":520,"payload":"cFovEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271538800,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":2680,"length":22,"msg_type":524,"payload":"cFovEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271538800,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":30151,"length":6,"msg_type":528,"payload":"cFovEP//","preamble":85,"sender":22963,"tow":271538800,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":44289,"length":237,"msg_type":97,"payload":"BQDUFQCyAgC6HwCkAAAAAAAAGQDYDADOHQDTEgDMAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwLLGQHMDAG8HwGVEgHEHQHCAAAABQHBAAAAAAAAAAAAAAAACwPUCQOxFAOuBQPPCgPPAAAABAO0FQPLCQStFATNAAAACwTIBQTDAAS9AAAABAStIwzJGgysIgyiGAy8GQygDAy4Ewy5FgzAAAAADA3RAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADA7DAAAAGQ7ACw69GA7MAAAAHw6eIQ6YGRTJGBTXCxTCHxSuDBTOAAAAIRSqAAAA","preamble":85,"sender":22963,"states":[{"mesid":{"sat":5,"code":0},"cn0":212},{"mesid":{"sat":21,"code":0},"cn0":178},{"mesid":{"sat":2,"code":0},"cn0":186},{"mesid":{"sat":31,"code":0},"cn0":164},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":25,"code":0},"cn0":216},{"mesid":{"sat":12,"code":0},"cn0":206},{"mesid":{"sat":29,"code":0},"cn0":211},{"mesid":{"sat":18,"code":0},"cn0":204},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":131,"code":2},"cn0":203},{"mesid":{"sat":25,"code":1},"cn0":204},{"mesid":{"sat":12,"code":1},"cn0":188},{"mesid":{"sat":31,"code":1},"cn0":149},{"mesid":{"sat":18,"code":1},"cn0":196},{"mesid":{"sat":29,"code":1},"cn0":194},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":5,"code":1},"cn0":193},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":11,"code":3},"cn0":212},{"mesid":{"sat":9,"code":3},"cn0":177},{"mesid":{"sat":20,"code":3},"cn0":174},{"mesid":{"sat":5,"code":3},"cn0":207},{"mesid":{"sat":10,"code":3},"cn0":207},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":4,"code":3},"cn0":180},{"mesid":{"sat":21,"code":3},"cn0":203},{"mesid":{"sat":9,"code":4},"cn0":173},{"mesid":{"sat":20,"code":4},"cn0":205},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":11,"code":4},"cn0":200},{"mesid":{"sat":5,"code":4},"cn0":195},{"mesid":{"sat":0,"code":4},"cn0":189},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":4,"code":4},"cn0":173},{"mesid":{"sat":35,"code":12},"cn0":201},{"mesid":{"sat":26,"code":12},"cn0":172},{"mesid":{"sat":34,"code":12},"cn0":162},{"mesid":{"sat":24,"code":12},"cn0":188},{"mesid":{"sat":25,"code":12},"cn0":160},{"mesid":{"sat":12,"code":12},"cn0":184},{"mesid":{"sat":19,"code":12},"cn0":185},{"mesid":{"sat":22,"code":12},"cn0":192},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":12,"code":13},"cn0":209},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":12,"code":14},"cn0":195},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":25,"code":14},"cn0":192},{"mesid":{"sat":11,"code":14},"cn0":189},{"mesid":{"sat":24,"code":14},"cn0":204},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":31,"code":14},"cn0":158},{"mesid":{"sat":33,"code":14},"cn0":152},{"mesid":{"sat":25,"code":20},"cn0":201},{"mesid":{"sat":24,"code":20},"cn0":215},{"mesid":{"sat":11,"code":20},"cn0":194},{"mesid":{"sat":31,"code":20},"cn0":174},{"mesid":{"sat":12,"code":20},"cn0":206},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":33,"code":20},"cn0":170},{"mesid":{"sat":0,"code":0},"cn0":0}]} +{"crc":34187,"length":128,"msg_type":151,"payload":"AgAaHQUAKzUMAFEtFQB9GRkAbUYaAKEBHQChNx8AlQ4EAxUWBQMyIQkDXw4KA3EpCwOYJQwDqgMTAyIHFAMMMRUDlSUMDJQpEwwjIBQMDwIWDEMkGAyCIxkMnQ4aDGcVIgyOESMMIi0LDosyDA4PPBgObDYZDpcpHw5VESEOIA8=","preamble":85,"sender":22963,"azel":[{"sid":{"sat":2,"code":0},"az":26,"el":29},{"sid":{"sat":5,"code":0},"az":43,"el":53},{"sid":{"sat":12,"code":0},"az":81,"el":45},{"sid":{"sat":21,"code":0},"az":125,"el":25},{"sid":{"sat":25,"code":0},"az":109,"el":70},{"sid":{"sat":26,"code":0},"az":161,"el":1},{"sid":{"sat":29,"code":0},"az":161,"el":55},{"sid":{"sat":31,"code":0},"az":149,"el":14},{"sid":{"sat":4,"code":3},"az":21,"el":22},{"sid":{"sat":5,"code":3},"az":50,"el":33},{"sid":{"sat":9,"code":3},"az":95,"el":14},{"sid":{"sat":10,"code":3},"az":113,"el":41},{"sid":{"sat":11,"code":3},"az":152,"el":37},{"sid":{"sat":12,"code":3},"az":170,"el":3},{"sid":{"sat":19,"code":3},"az":34,"el":7},{"sid":{"sat":20,"code":3},"az":12,"el":49},{"sid":{"sat":21,"code":3},"az":149,"el":37},{"sid":{"sat":12,"code":12},"az":148,"el":41},{"sid":{"sat":19,"code":12},"az":35,"el":32},{"sid":{"sat":20,"code":12},"az":15,"el":2},{"sid":{"sat":22,"code":12},"az":67,"el":36},{"sid":{"sat":24,"code":12},"az":130,"el":35},{"sid":{"sat":25,"code":12},"az":157,"el":14},{"sid":{"sat":26,"code":12},"az":103,"el":21},{"sid":{"sat":34,"code":12},"az":142,"el":17},{"sid":{"sat":35,"code":12},"az":34,"el":45},{"sid":{"sat":11,"code":14},"az":139,"el":50},{"sid":{"sat":12,"code":14},"az":15,"el":60},{"sid":{"sat":24,"code":14},"az":108,"el":54},{"sid":{"sat":25,"code":14},"az":151,"el":41},{"sid":{"sat":31,"code":14},"az":85,"el":17},{"sid":{"sat":33,"code":14},"az":32,"el":15}]} +{"crc":64893,"length":11,"msg_type":258,"payload":"MgjUWi8QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271538900,"ns_residual":0,"flags":1} +{"crc":4397,"length":16,"msg_type":259,"payload":"EdRaLxDkBwMZAxkU/uikNQ==","preamble":85,"sender":22963,"flags":17,"tow":271538900,"year":2020,"month":3,"day":25,"hours":3,"minutes":25,"seconds":20,"ns":899999998} +{"crc":62946,"length":34,"msg_type":522,"payload":"1FovEFGJDu5l6kJAkhTaHVaSXsCkN4ZFCCYywAECWwQPBg==","preamble":85,"sender":22963,"tow":271538900,"lat":37.83123565397057,"lon":-122.28650614067945,"height":-18.1485637142829,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":41641,"length":22,"msg_type":526,"payload":"1FovEAgAAAD/////yf////EAywIPAg==","preamble":85,"sender":22963,"tow":271538900,"n":8,"e":-1,"d":-55,"h_accuracy":241,"v_accuracy":715,"n_sats":15,"flags":2} +{"crc":47928,"length":15,"msg_type":520,"payload":"1FovEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271538900,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":32001,"length":22,"msg_type":524,"payload":"1FovEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271538900,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":37454,"length":6,"msg_type":528,"payload":"1FovEP//","preamble":85,"sender":22963,"tow":271538900,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":46440,"length":249,"msg_type":74,"payload":"OFsvEAAAAAAyCED/p7Q+TyWXBng5/2vUDw8FANFCD0VWGkIH6ngI2LIPDxUAMDT7RbrmWgceTvaqug8PAgCf9gNJ4omsB3Bn/oekDw8fAJYCKj0Hq20GE4v7StgPDxkAk3+/QMcYzgbzYPQozg8PDABfYss+0IiZBkXIBRXTDw8dAMQCKj3NVgIFiob87MwPDxkBY3+/QH96TQWU8fYovA8PDAET9gNJMc/6BTTF/lSVDw8fARJiyz42hSQFaoAE0sIPDx0Bqae0PtKoIgXmZf/VwQ8PBQGtYvg+gNm6Bih6BDXUDw8LAz7X5ERnmFsH4cnucrEPDwkD","preamble":85,"sender":22963,"header":{"t":{"tow":271539000,"ns_residual":0,"wn":2098},"n_obs":64},"obs":[{"P":1052026879,"L":{"i":110568783,"f":120},"D":{"i":-199,"f":107},"cn0":212,"lock":15,"flags":15,"sid":{"sat":5,"code":0}},{"P":1158628049,"L":{"i":121772630,"f":234},"D":{"i":2168,"f":216},"cn0":178,"lock":15,"flags":15,"sid":{"sat":21,"code":0}},{"P":1174090800,"L":{"i":123397818,"f":30},"D":{"i":-2482,"f":170},"cn0":186,"lock":15,"flags":15,"sid":{"sat":2,"code":0}},{"P":1224996511,"L":{"i":128748002,"f":112},"D":{"i":-409,"f":135},"cn0":164,"lock":15,"flags":15,"sid":{"sat":31,"code":0}},{"P":1026163350,"L":{"i":107850503,"f":19},"D":{"i":-1141,"f":74},"cn0":216,"lock":15,"flags":15,"sid":{"sat":25,"code":0}},{"P":1086291859,"L":{"i":114170055,"f":243},"D":{"i":-2976,"f":40},"cn0":206,"lock":15,"flags":15,"sid":{"sat":12,"code":0}},{"P":1053516383,"L":{"i":110725328,"f":69},"D":{"i":1480,"f":21},"cn0":211,"lock":15,"flags":15,"sid":{"sat":29,"code":0}},{"P":1026163396,"L":{"i":84039373,"f":138},"D":{"i":-890,"f":236},"cn0":204,"lock":15,"flags":15,"sid":{"sat":25,"code":1}},{"P":1086291811,"L":{"i":88963711,"f":148},"D":{"i":-2319,"f":40},"cn0":188,"lock":15,"flags":15,"sid":{"sat":12,"code":1}},{"P":1224996371,"L":{"i":100323121,"f":52},"D":{"i":-315,"f":84},"cn0":149,"lock":15,"flags":15,"sid":{"sat":31,"code":1}},{"P":1053516306,"L":{"i":86279478,"f":106},"D":{"i":1152,"f":210},"cn0":194,"lock":15,"flags":15,"sid":{"sat":29,"code":1}},{"P":1052026793,"L":{"i":86157522,"f":230},"D":{"i":-155,"f":213},"cn0":193,"lock":15,"flags":15,"sid":{"sat":5,"code":1}},{"P":1056465581,"L":{"i":112908672,"f":40},"D":{"i":1146,"f":53},"cn0":212,"lock":15,"flags":15,"sid":{"sat":11,"code":3}},{"P":1155847998,"L":{"i":123443303,"f":225},"D":{"i":-4407,"f":114},"cn0":177,"lock":15,"flags":15,"sid":{"sat":9,"code":3}}]} +{"crc":52089,"length":249,"msg_type":74,"payload":"OFsvEAAAAAAyCEEmojE9lWyLBphC+92uDw8UA3WFAUD1zNcGYoYIrs8PDwUDPSBwPpoWqAZtD/QZzg8PCgOR+QtDIz8uB1/I+rK0Dw8EA8vuJD+ACcIGD1MGJMsPDxUDydfkRMwEuQU5mvLSrQ8PCQSAozE9tBsXBYdP/P3NDw8UBN5j+D6K/jsFc3sDOcgPDwsEm4YBQPuCUgWKoga5ww8PBQRY+gtDSr+VBaHz+0esDw8EBAKomkWTuj8HpSL63skPDyMMMFL+Sa/AtAeSPvSGrA8PGgyNXQ5MD7/rB7HICL2hDw8iDE04pUeeJnYHyuD6NLwPDxgM","preamble":85,"sender":22963,"header":{"t":{"tow":271539000,"ns_residual":0,"wn":2098},"n_obs":65},"obs":[{"P":1026662950,"L":{"i":109800597,"f":152},"D":{"i":-1214,"f":221},"cn0":174,"lock":15,"flags":15,"sid":{"sat":20,"code":3}},{"P":1073841525,"L":{"i":114806005,"f":98},"D":{"i":2182,"f":174},"cn0":207,"lock":15,"flags":15,"sid":{"sat":5,"code":3}},{"P":1047535677,"L":{"i":111679130,"f":109},"D":{"i":-3057,"f":25},"cn0":206,"lock":15,"flags":15,"sid":{"sat":10,"code":3}},{"P":1124858257,"L":{"i":120471331,"f":95},"D":{"i":-1336,"f":178},"cn0":180,"lock":15,"flags":15,"sid":{"sat":4,"code":3}},{"P":1059385035,"L":{"i":113379712,"f":15},"D":{"i":1619,"f":36},"cn0":203,"lock":15,"flags":15,"sid":{"sat":21,"code":3}},{"P":1155848137,"L":{"i":96011468,"f":57},"D":{"i":-3430,"f":210},"cn0":173,"lock":15,"flags":15,"sid":{"sat":9,"code":4}},{"P":1026663296,"L":{"i":85400500,"f":135},"D":{"i":-945,"f":253},"cn0":205,"lock":15,"flags":15,"sid":{"sat":20,"code":4}},{"P":1056465886,"L":{"i":87817866,"f":115},"D":{"i":891,"f":57},"cn0":200,"lock":15,"flags":15,"sid":{"sat":11,"code":4}},{"P":1073841819,"L":{"i":89293563,"f":138},"D":{"i":1698,"f":185},"cn0":195,"lock":15,"flags":15,"sid":{"sat":5,"code":4}},{"P":1124858456,"L":{"i":93699914,"f":161},"D":{"i":-1037,"f":71},"cn0":172,"lock":15,"flags":15,"sid":{"sat":4,"code":4}},{"P":1167763458,"L":{"i":121617043,"f":165},"D":{"i":-1502,"f":222},"cn0":201,"lock":15,"flags":15,"sid":{"sat":35,"code":12}},{"P":1241403952,"L":{"i":129286319,"f":146},"D":{"i":-3010,"f":134},"cn0":172,"lock":15,"flags":15,"sid":{"sat":26,"code":12}},{"P":1276009869,"L":{"i":132890383,"f":177},"D":{"i":2248,"f":189},"cn0":161,"lock":15,"flags":15,"sid":{"sat":34,"code":12}},{"P":1202010189,"L":{"i":125183646,"f":202},"D":{"i":-1312,"f":52},"cn0":188,"lock":15,"flags":15,"sid":{"sat":24,"code":12}}]} +{"crc":11625,"length":249,"msg_type":74,"payload":"OFsvEAAAAAAyCEIOpA5NkW8GCKUjBZGgDw8ZDCYPSUUAOzcHSkoGUbgPDwwMZ1BERwYPbAc50v7iuQ8PEwzeW1ZHGvBtB5lMCTXADw8WDNoOSUVaZZQFNt4Ei9EPDwwNhrwKQvjo8AbG+vtzww8PDA6DIB1Luf7kB4A2BKPADw8ZDh5lHUdoZnkHLhUEGb0PDwsO3fAtQxmEDwdxJfnkzA8PGA5ZOFNRaB2MCAib83OeDw8fDnYd/lF3E54IlKL3fpcPDyEObSAdS/qNDAZAOQPIyQ8PGRQO8y1DE/toBeLC+m3XDw8YFGFkHUeCHLoFzyED/cIPDwsU","preamble":85,"sender":22963,"header":{"t":{"tow":271539000,"ns_residual":0,"wn":2098},"n_obs":66},"obs":[{"P":1292805134,"L":{"i":134639505,"f":165},"D":{"i":1315,"f":145},"cn0":160,"lock":15,"flags":15,"sid":{"sat":25,"code":12}},{"P":1162415910,"L":{"i":121060096,"f":74},"D":{"i":1610,"f":81},"cn0":184,"lock":15,"flags":15,"sid":{"sat":12,"code":12}},{"P":1195659367,"L":{"i":124522246,"f":57},"D":{"i":-302,"f":226},"cn0":185,"lock":15,"flags":15,"sid":{"sat":19,"code":12}},{"P":1196841950,"L":{"i":124645402,"f":153},"D":{"i":2380,"f":53},"cn0":192,"lock":15,"flags":15,"sid":{"sat":22,"code":12}},{"P":1162415834,"L":{"i":93611354,"f":54},"D":{"i":1246,"f":139},"cn0":209,"lock":15,"flags":15,"sid":{"sat":12,"code":13}},{"P":1107999878,"L":{"i":116451576,"f":198},"D":{"i":-1030,"f":115},"cn0":195,"lock":15,"flags":15,"sid":{"sat":12,"code":14}},{"P":1260200067,"L":{"i":132447929,"f":128},"D":{"i":1078,"f":163},"cn0":192,"lock":15,"flags":15,"sid":{"sat":25,"code":14}},{"P":1193108766,"L":{"i":125396584,"f":46},"D":{"i":1045,"f":25},"cn0":189,"lock":15,"flags":15,"sid":{"sat":11,"code":14}},{"P":1127084253,"L":{"i":118457369,"f":113},"D":{"i":-1755,"f":228},"cn0":204,"lock":15,"flags":15,"sid":{"sat":24,"code":14}},{"P":1364408409,"L":{"i":143400296,"f":8},"D":{"i":-3173,"f":115},"cn0":158,"lock":15,"flags":15,"sid":{"sat":31,"code":14}},{"P":1375608182,"L":{"i":144577399,"f":148},"D":{"i":-2142,"f":126},"cn0":151,"lock":15,"flags":15,"sid":{"sat":33,"code":14}},{"P":1260200045,"L":{"i":101486074,"f":64},"D":{"i":825,"f":200},"cn0":201,"lock":15,"flags":15,"sid":{"sat":25,"code":20}},{"P":1127084814,"L":{"i":90766099,"f":226},"D":{"i":-1342,"f":109},"cn0":215,"lock":15,"flags":15,"sid":{"sat":24,"code":20}},{"P":1193108577,"L":{"i":96083074,"f":207},"D":{"i":801,"f":253},"cn0":194,"lock":15,"flags":15,"sid":{"sat":11,"code":20}}]} +{"crc":40369,"length":62,"msg_type":74,"payload":"OFsvEAAAAAAyCEPCOFNRrpuMBmmA9mWuDw8fFOq7CkJoh1EF3u38Sc4PDwwUbB3+UftemgbhmfkEqg8PIRQ=","preamble":85,"sender":22963,"header":{"t":{"tow":271539000,"ns_residual":0,"wn":2098},"n_obs":67},"obs":[{"P":1364408514,"L":{"i":109878190,"f":105},"D":{"i":-2432,"f":101},"cn0":174,"lock":15,"flags":15,"sid":{"sat":31,"code":20}},{"P":1107999722,"L":{"i":89229160,"f":222},"D":{"i":-787,"f":73},"cn0":206,"lock":15,"flags":15,"sid":{"sat":12,"code":20}},{"P":1375608172,"L":{"i":110780155,"f":225},"D":{"i":-1639,"f":4},"cn0":170,"lock":15,"flags":15,"sid":{"sat":33,"code":20}}]} +{"crc":49809,"length":9,"msg_type":117,"payload":"/wAAAAAAAAAA","preamble":85,"sender":22963,"mask":255,"l1ca_bias":0,"l1p_bias":0,"l2ca_bias":0,"l2p_bias":0} +{"crc":18473,"length":11,"msg_type":258,"payload":"Mgg4Wy8QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271539000,"ns_residual":0,"flags":1} +{"crc":17174,"length":16,"msg_type":259,"payload":"EThbLxDkBwMZAxkU/smaOw==","preamble":85,"sender":22963,"flags":17,"tow":271539000,"year":2020,"month":3,"day":25,"hours":3,"minutes":25,"seconds":20,"ns":999999998} +{"crc":42062,"length":34,"msg_type":522,"payload":"OFsvELhkM+5l6kJAnkPlHVaSXsDsty25zSYywAECWwQPBg==","preamble":85,"sender":22963,"tow":271539000,"lat":37.83123567113347,"lon":-122.28650615109515,"height":-18.15157658926175,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":29834,"length":22,"msg_type":526,"payload":"OFsvEPr///8NAAAAGwAAAPEAywIPAg==","preamble":85,"sender":22963,"tow":271539000,"n":-6,"e":13,"d":27,"h_accuracy":241,"v_accuracy":715,"n_sats":15,"flags":2} +{"crc":40865,"length":15,"msg_type":520,"payload":"OFsvEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271539000,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":21623,"length":22,"msg_type":524,"payload":"OFsvEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271539000,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":47300,"length":6,"msg_type":528,"payload":"OFsvEP//","preamble":85,"sender":22963,"tow":271539000,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":40942,"length":4,"msg_type":65535,"payload":"AAUCgA==","preamble":85,"sender":22963,"flags":2147616000} +{"crc":2168,"length":24,"msg_type":72,"payload":"UO0a3iqORMHK1UJhIkRQwc9nFIPvrk1B","preamble":85,"sender":22963,"x":-2694229.735196747,"y":-4264073.519704292,"z":3890655.0240602265} +{"crc":34043,"length":10,"msg_type":181,"payload":"7BbcA/QGURUJFg==","preamble":85,"sender":22963,"dev_vin":5868,"cpu_vint":988,"cpu_vaux":1780,"cpu_temperature":5457,"fe_temperature":5641} +{"crc":52360,"length":11,"msg_type":258,"payload":"MgicWy8QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271539100,"ns_residual":0,"flags":1} +{"crc":28461,"length":16,"msg_type":259,"payload":"EZxbLxDkBwMZAxkV/uD1BQ==","preamble":85,"sender":22963,"flags":17,"tow":271539100,"year":2020,"month":3,"day":25,"hours":3,"minutes":25,"seconds":21,"ns":99999998} +{"crc":34851,"length":34,"msg_type":522,"payload":"nFsvEF2VaO5l6kJAtOn7HVaSXsCu3J1lFCcywAECWwQPBg==","preamble":85,"sender":22963,"tow":271539100,"lat":37.831235695902,"lon":-122.28650617218847,"height":-18.15265498260549,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":38237,"length":22,"msg_type":526,"payload":"nFsvEPv///8GAAAAAQAAAPEAywIPAg==","preamble":85,"sender":22963,"tow":271539100,"n":-5,"e":6,"d":1,"h_accuracy":241,"v_accuracy":715,"n_sats":15,"flags":2} +{"crc":52501,"length":15,"msg_type":520,"payload":"nFsvEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271539100,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":8974,"length":22,"msg_type":524,"payload":"nFsvEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271539100,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":24397,"length":6,"msg_type":528,"payload":"nFsvEP//","preamble":85,"sender":22963,"tow":271539100,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":21196,"length":11,"msg_type":258,"payload":"MggAXC8QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271539200,"ns_residual":0,"flags":1} +{"crc":51456,"length":16,"msg_type":259,"payload":"EQBcLxDkBwMZAxkV/sHrCw==","preamble":85,"sender":22963,"flags":17,"tow":271539200,"year":2020,"month":3,"day":25,"hours":3,"minutes":25,"seconds":21,"ns":199999998} +{"crc":37031,"length":34,"msg_type":522,"payload":"AFwvEH/Gw+5l6kJAIosdHlaSXsAxtQysnicywAECWwQPBg==","preamble":85,"sender":22963,"tow":271539200,"lat":37.83123573836655,"lon":-122.28650620350939,"height":-18.154764893629537,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":53918,"length":22,"msg_type":526,"payload":"AFwvEAAAAAD9//////////EAywIPAg==","preamble":85,"sender":22963,"tow":271539200,"n":0,"e":-3,"d":-1,"h_accuracy":241,"v_accuracy":715,"n_sats":15,"flags":2} +{"crc":7036,"length":15,"msg_type":520,"payload":"AFwvEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271539200,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":54463,"length":22,"msg_type":524,"payload":"AFwvEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271539200,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":64990,"length":6,"msg_type":528,"payload":"AFwvEP//","preamble":85,"sender":22963,"tow":271539200,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":13830,"length":11,"msg_type":258,"payload":"MghkXC8QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271539300,"ns_residual":0,"flags":1} +{"crc":31524,"length":16,"msg_type":259,"payload":"EWRcLxDkBwMZAxkV/qLhEQ==","preamble":85,"sender":22963,"flags":17,"tow":271539300,"year":2020,"month":3,"day":25,"hours":3,"minutes":25,"seconds":21,"ns":299999998} +{"crc":24775,"length":34,"msg_type":522,"payload":"ZFwvELNYN+9l6kJAw5QtHlaSXsBp9ajlwCcywAECWwQPBg==","preamble":85,"sender":22963,"tow":271539300,"lat":37.83123579218354,"lon":-122.28650621844558,"height":-18.1552871263024,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":20140,"length":22,"msg_type":526,"payload":"ZFwvEA8AAAABAAAA9v////EAywIPAg==","preamble":85,"sender":22963,"tow":271539300,"n":15,"e":1,"d":-10,"h_accuracy":241,"v_accuracy":715,"n_sats":15,"flags":2} +{"crc":14291,"length":15,"msg_type":520,"payload":"ZFwvEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271539300,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":52233,"length":22,"msg_type":524,"payload":"ZFwvEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271539300,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":42087,"length":6,"msg_type":528,"payload":"ZFwvEP//","preamble":85,"sender":22963,"tow":271539300,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":12908,"length":237,"msg_type":97,"payload":"BQDVFQCzAgC6HwClAAAAAAAAGQDZDADOHQDTEgDNAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwLMGQHLDAG8HwGVEgHEHQHCAAAABQHBAAAAAAAAAAAAAAAAZAPUYgOwZgOuZQPOXQPOAAAAagO0aAPMYgStZgTNXQRKZATHZQTDaAS9AAAAagSsIwzJGgyrIgyiGAy8GQyfDAy4Ewy5FgzBAAAADA3RAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADA7CAAAAGQ6/Cw69GA7LAAAAHw6eIQ6XGRTJGBTXCxTCHxSuDBTOAAAAIRSrAAAA","preamble":85,"sender":22963,"states":[{"mesid":{"sat":5,"code":0},"cn0":213},{"mesid":{"sat":21,"code":0},"cn0":179},{"mesid":{"sat":2,"code":0},"cn0":186},{"mesid":{"sat":31,"code":0},"cn0":165},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":25,"code":0},"cn0":217},{"mesid":{"sat":12,"code":0},"cn0":206},{"mesid":{"sat":29,"code":0},"cn0":211},{"mesid":{"sat":18,"code":0},"cn0":205},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":131,"code":2},"cn0":204},{"mesid":{"sat":25,"code":1},"cn0":203},{"mesid":{"sat":12,"code":1},"cn0":188},{"mesid":{"sat":31,"code":1},"cn0":149},{"mesid":{"sat":18,"code":1},"cn0":196},{"mesid":{"sat":29,"code":1},"cn0":194},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":5,"code":1},"cn0":193},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":100,"code":3},"cn0":212},{"mesid":{"sat":98,"code":3},"cn0":176},{"mesid":{"sat":102,"code":3},"cn0":174},{"mesid":{"sat":101,"code":3},"cn0":206},{"mesid":{"sat":93,"code":3},"cn0":206},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":106,"code":3},"cn0":180},{"mesid":{"sat":104,"code":3},"cn0":204},{"mesid":{"sat":98,"code":4},"cn0":173},{"mesid":{"sat":102,"code":4},"cn0":205},{"mesid":{"sat":93,"code":4},"cn0":74},{"mesid":{"sat":100,"code":4},"cn0":199},{"mesid":{"sat":101,"code":4},"cn0":195},{"mesid":{"sat":104,"code":4},"cn0":189},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":106,"code":4},"cn0":172},{"mesid":{"sat":35,"code":12},"cn0":201},{"mesid":{"sat":26,"code":12},"cn0":171},{"mesid":{"sat":34,"code":12},"cn0":162},{"mesid":{"sat":24,"code":12},"cn0":188},{"mesid":{"sat":25,"code":12},"cn0":159},{"mesid":{"sat":12,"code":12},"cn0":184},{"mesid":{"sat":19,"code":12},"cn0":185},{"mesid":{"sat":22,"code":12},"cn0":193},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":12,"code":13},"cn0":209},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":12,"code":14},"cn0":194},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":25,"code":14},"cn0":191},{"mesid":{"sat":11,"code":14},"cn0":189},{"mesid":{"sat":24,"code":14},"cn0":203},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":31,"code":14},"cn0":158},{"mesid":{"sat":33,"code":14},"cn0":151},{"mesid":{"sat":25,"code":20},"cn0":201},{"mesid":{"sat":24,"code":20},"cn0":215},{"mesid":{"sat":11,"code":20},"cn0":194},{"mesid":{"sat":31,"code":20},"cn0":174},{"mesid":{"sat":12,"code":20},"cn0":206},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":33,"code":20},"cn0":171},{"mesid":{"sat":0,"code":0},"cn0":0}]} +{"crc":39768,"length":11,"msg_type":258,"payload":"MgjIXC8QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271539400,"ns_residual":0,"flags":1} +{"crc":28886,"length":16,"msg_type":259,"payload":"EchcLxDkBwMZAxkV/oPXFw==","preamble":85,"sender":22963,"flags":17,"tow":271539400,"year":2020,"month":3,"day":25,"hours":3,"minutes":25,"seconds":21,"ns":399999998} +{"crc":13997,"length":34,"msg_type":522,"payload":"yFwvEIQChO9l6kJAFqZRHlaSXsBMeZKgICkywAECWwQPBg==","preamble":85,"sender":22963,"tow":271539400,"lat":37.83123582788269,"lon":-122.28650625203622,"height":-18.160654102096757,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":33913,"length":22,"msg_type":526,"payload":"yFwvEP/////1////KAAAAPEAywIPAg==","preamble":85,"sender":22963,"tow":271539400,"n":-1,"e":-11,"d":40,"h_accuracy":241,"v_accuracy":715,"n_sats":15,"flags":2} +{"crc":16930,"length":15,"msg_type":520,"payload":"yFwvEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271539400,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":58835,"length":22,"msg_type":524,"payload":"yFwvEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271539400,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":20140,"length":6,"msg_type":528,"payload":"yFwvEP//","preamble":85,"sender":22963,"tow":271539400,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":49809,"length":9,"msg_type":117,"payload":"/wAAAAAAAAAA","preamble":85,"sender":22963,"mask":255,"l1ca_bias":0,"l1p_bias":0,"l2ca_bias":0,"l2p_bias":0} +{"crc":2035,"length":11,"msg_type":258,"payload":"MggsXS8QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271539500,"ns_residual":0,"flags":1} +{"crc":7001,"length":16,"msg_type":259,"payload":"ESxdLxDkBwMZAxkV/mTNHQ==","preamble":85,"sender":22963,"flags":17,"tow":271539500,"year":2020,"month":3,"day":25,"hours":3,"minutes":25,"seconds":21,"ns":499999998} +{"crc":25541,"length":34,"msg_type":522,"payload":"LF0vELCdxu9l6kJAn9dsHlaSXsBUyBO6QykywAECWwQPBg==","preamble":85,"sender":22963,"tow":271539500,"lat":37.831235858898594,"lon":-122.28650627736214,"height":-18.161189679937095,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":31650,"length":22,"msg_type":526,"payload":"LF0vEAMAAAD8////7/////EAywIPAg==","preamble":85,"sender":22963,"tow":271539500,"n":3,"e":-4,"d":-17,"h_accuracy":241,"v_accuracy":715,"n_sats":15,"flags":2} +{"crc":16894,"length":15,"msg_type":520,"payload":"LF0vEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271539500,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":37382,"length":22,"msg_type":524,"payload":"LF0vEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271539500,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":26980,"length":6,"msg_type":528,"payload":"LF0vEP//","preamble":85,"sender":22963,"tow":271539500,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":63827,"length":11,"msg_type":258,"payload":"MgiQXS8QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271539600,"ns_residual":0,"flags":1} +{"crc":25926,"length":16,"msg_type":259,"payload":"EZBdLxDkBwMZAxkV/kXDIw==","preamble":85,"sender":22963,"flags":17,"tow":271539600,"year":2020,"month":3,"day":25,"hours":3,"minutes":25,"seconds":21,"ns":599999998} +{"crc":60119,"length":34,"msg_type":522,"payload":"kF0vED4n8+9l6kJA7nB7HlaSXsDInsZQ/ikywAECWwQPBg==","preamble":85,"sender":22963,"tow":271539600,"lat":37.8312358796379,"lon":-122.28650629095839,"height":-18.164036797038335,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":14381,"length":22,"msg_type":526,"payload":"kF0vEAAAAAAMAAAACQAAAPEAywIPAg==","preamble":85,"sender":22963,"tow":271539600,"n":0,"e":12,"d":9,"h_accuracy":241,"v_accuracy":715,"n_sats":15,"flags":2} +{"crc":31365,"length":15,"msg_type":520,"payload":"kF0vEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271539600,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":1690,"length":22,"msg_type":524,"payload":"kF0vEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271539600,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":39211,"length":6,"msg_type":528,"payload":"kF0vEP//","preamble":85,"sender":22963,"tow":271539600,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":40345,"length":11,"msg_type":258,"payload":"Mgj0XS8QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271539700,"ns_residual":0,"flags":1} +{"crc":52490,"length":16,"msg_type":259,"payload":"EfRdLxDkBwMZAxkV/ia5KQ==","preamble":85,"sender":22963,"flags":17,"tow":271539700,"year":2020,"month":3,"day":25,"hours":3,"minutes":25,"seconds":21,"ns":699999998} +{"crc":6413,"length":34,"msg_type":522,"payload":"9F0vEGYINPBl6kJAWDKaHlaSXsDGRM+ttSoywAECWwQPBg==","preamble":85,"sender":22963,"tow":271539700,"lat":37.83123590984978,"lon":-122.2865063196017,"height":-18.16683470068235,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":11356,"length":22,"msg_type":526,"payload":"9F0vEAEAAAACAAAADgAAAPEAywIPAg==","preamble":85,"sender":22963,"tow":271539700,"n":1,"e":2,"d":14,"h_accuracy":241,"v_accuracy":715,"n_sats":15,"flags":2} +{"crc":22058,"length":15,"msg_type":520,"payload":"9F0vEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271539700,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":7724,"length":22,"msg_type":524,"payload":"9F0vEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271539700,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":49298,"length":6,"msg_type":528,"payload":"9F0vEP//","preamble":85,"sender":22963,"tow":271539700,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":42194,"length":34,"msg_type":30583,"payload":"gwISXS8QBJf/f//9f/ABf//7/9/8f/f/f/f/7l5eqq//8A==","preamble":85,"sender":22963,"sid":{"sat":131,"code":2},"tow":271539474,"message_type":4,"data":[151,255,127,255,253,127,240,1,127,255,251,255,223,252,127,247,255,127,247,255,238,94,94,170,175,255,240]} +{"crc":56805,"length":51,"msg_type":1025,"payload":"BkdMTyBMMk9GIE1FIDEgWysxMzI1bXNdIGxvdyBDTjAgdG9vIGxvbmcsIGRyb3BwaW5n","preamble":85,"sender":22963,"level":6,"text":"GLO L2OF ME 1 [+1325ms] low CN0 too long, dropping"} +{"crc":63666,"length":11,"msg_type":258,"payload":"MghYXi8QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271539800,"ns_residual":0,"flags":1} +{"crc":19901,"length":16,"msg_type":259,"payload":"EVheLxDkBwMZAxkV/gevLw==","preamble":85,"sender":22963,"flags":17,"tow":271539800,"year":2020,"month":3,"day":25,"hours":3,"minutes":25,"seconds":21,"ns":799999998} +{"crc":12970,"length":34,"msg_type":522,"payload":"WF4vEHDPgvBl6kJAzL3CHlaSXsC7TDEFSSoywAECWwQPBg==","preamble":85,"sender":22963,"tow":271539800,"lat":37.83123594653341,"lon":-122.28650635736193,"height":-18.165176701103274,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":20524,"length":22,"msg_type":526,"payload":"WF4vEP7////9////GgAAAPEAywIPAg==","preamble":85,"sender":22963,"tow":271539800,"n":-2,"e":-3,"d":26,"h_accuracy":241,"v_accuracy":715,"n_sats":15,"flags":2} +{"crc":44664,"length":15,"msg_type":520,"payload":"WF4vEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271539800,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":22989,"length":22,"msg_type":524,"payload":"WF4vEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271539800,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":50315,"length":6,"msg_type":528,"payload":"WF4vEP//","preamble":85,"sender":22963,"tow":271539800,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":44094,"length":237,"msg_type":97,"payload":"BQDVFQC0AgC6HwCmAAAAAAAAGQDZDADPHQDUEgDOAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwLNGQHMDAG8HwGVEgHEHQHCAAAABQHBAAAAAAAAAAAAAAAACwPUCQOwFAOuBQPOCgPOAAAABAO0FQPMCQSuFATNAAAACwTIBQTDAAS9AAAABASsIwzJGgyrIgyhGAy8GQyfDAy4Ewy5FgzBAAAADA3QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADA7CAAAAGQ6/Cw68GA7LAAAAHw6fIQ6XGRTJGBTXCxTCHxSuDBTOAAAAIRSqAAAA","preamble":85,"sender":22963,"states":[{"mesid":{"sat":5,"code":0},"cn0":213},{"mesid":{"sat":21,"code":0},"cn0":180},{"mesid":{"sat":2,"code":0},"cn0":186},{"mesid":{"sat":31,"code":0},"cn0":166},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":25,"code":0},"cn0":217},{"mesid":{"sat":12,"code":0},"cn0":207},{"mesid":{"sat":29,"code":0},"cn0":212},{"mesid":{"sat":18,"code":0},"cn0":206},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":131,"code":2},"cn0":205},{"mesid":{"sat":25,"code":1},"cn0":204},{"mesid":{"sat":12,"code":1},"cn0":188},{"mesid":{"sat":31,"code":1},"cn0":149},{"mesid":{"sat":18,"code":1},"cn0":196},{"mesid":{"sat":29,"code":1},"cn0":194},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":5,"code":1},"cn0":193},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":11,"code":3},"cn0":212},{"mesid":{"sat":9,"code":3},"cn0":176},{"mesid":{"sat":20,"code":3},"cn0":174},{"mesid":{"sat":5,"code":3},"cn0":206},{"mesid":{"sat":10,"code":3},"cn0":206},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":4,"code":3},"cn0":180},{"mesid":{"sat":21,"code":3},"cn0":204},{"mesid":{"sat":9,"code":4},"cn0":174},{"mesid":{"sat":20,"code":4},"cn0":205},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":11,"code":4},"cn0":200},{"mesid":{"sat":5,"code":4},"cn0":195},{"mesid":{"sat":0,"code":4},"cn0":189},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":4,"code":4},"cn0":172},{"mesid":{"sat":35,"code":12},"cn0":201},{"mesid":{"sat":26,"code":12},"cn0":171},{"mesid":{"sat":34,"code":12},"cn0":161},{"mesid":{"sat":24,"code":12},"cn0":188},{"mesid":{"sat":25,"code":12},"cn0":159},{"mesid":{"sat":12,"code":12},"cn0":184},{"mesid":{"sat":19,"code":12},"cn0":185},{"mesid":{"sat":22,"code":12},"cn0":193},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":12,"code":13},"cn0":208},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":12,"code":14},"cn0":194},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":25,"code":14},"cn0":191},{"mesid":{"sat":11,"code":14},"cn0":188},{"mesid":{"sat":24,"code":14},"cn0":203},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":31,"code":14},"cn0":159},{"mesid":{"sat":33,"code":14},"cn0":151},{"mesid":{"sat":25,"code":20},"cn0":201},{"mesid":{"sat":24,"code":20},"cn0":215},{"mesid":{"sat":11,"code":20},"cn0":194},{"mesid":{"sat":31,"code":20},"cn0":174},{"mesid":{"sat":12,"code":20},"cn0":206},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":33,"code":20},"cn0":170},{"mesid":{"sat":0,"code":0},"cn0":0}]} +{"crc":34187,"length":128,"msg_type":151,"payload":"AgAaHQUAKzUMAFEtFQB9GRkAbUYaAKEBHQChNx8AlQ4EAxUWBQMyIQkDXw4KA3EpCwOYJQwDqgMTAyIHFAMMMRUDlSUMDJQpEwwjIBQMDwIWDEMkGAyCIxkMnQ4aDGcVIgyOESMMIi0LDosyDA4PPBgObDYZDpcpHw5VESEOIA8=","preamble":85,"sender":22963,"azel":[{"sid":{"sat":2,"code":0},"az":26,"el":29},{"sid":{"sat":5,"code":0},"az":43,"el":53},{"sid":{"sat":12,"code":0},"az":81,"el":45},{"sid":{"sat":21,"code":0},"az":125,"el":25},{"sid":{"sat":25,"code":0},"az":109,"el":70},{"sid":{"sat":26,"code":0},"az":161,"el":1},{"sid":{"sat":29,"code":0},"az":161,"el":55},{"sid":{"sat":31,"code":0},"az":149,"el":14},{"sid":{"sat":4,"code":3},"az":21,"el":22},{"sid":{"sat":5,"code":3},"az":50,"el":33},{"sid":{"sat":9,"code":3},"az":95,"el":14},{"sid":{"sat":10,"code":3},"az":113,"el":41},{"sid":{"sat":11,"code":3},"az":152,"el":37},{"sid":{"sat":12,"code":3},"az":170,"el":3},{"sid":{"sat":19,"code":3},"az":34,"el":7},{"sid":{"sat":20,"code":3},"az":12,"el":49},{"sid":{"sat":21,"code":3},"az":149,"el":37},{"sid":{"sat":12,"code":12},"az":148,"el":41},{"sid":{"sat":19,"code":12},"az":35,"el":32},{"sid":{"sat":20,"code":12},"az":15,"el":2},{"sid":{"sat":22,"code":12},"az":67,"el":36},{"sid":{"sat":24,"code":12},"az":130,"el":35},{"sid":{"sat":25,"code":12},"az":157,"el":14},{"sid":{"sat":26,"code":12},"az":103,"el":21},{"sid":{"sat":34,"code":12},"az":142,"el":17},{"sid":{"sat":35,"code":12},"az":34,"el":45},{"sid":{"sat":11,"code":14},"az":139,"el":50},{"sid":{"sat":12,"code":14},"az":15,"el":60},{"sid":{"sat":24,"code":14},"az":108,"el":54},{"sid":{"sat":25,"code":14},"az":151,"el":41},{"sid":{"sat":31,"code":14},"az":85,"el":17},{"sid":{"sat":33,"code":14},"az":32,"el":15}]} +{"crc":9162,"length":11,"msg_type":258,"payload":"Mgi8Xi8QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271539900,"ns_residual":0,"flags":1} +{"crc":54913,"length":16,"msg_type":259,"payload":"EbxeLxDkBwMZAxkV/uikNQ==","preamble":85,"sender":22963,"flags":17,"tow":271539900,"year":2020,"month":3,"day":25,"hours":3,"minutes":25,"seconds":21,"ns":899999998} +{"crc":11985,"length":34,"msg_type":522,"payload":"vF4vENjH5PBl6kJAgPvgHlaSXsDsx7T24CcywAECWwQPBg==","preamble":85,"sender":22963,"tow":271539900,"lat":37.831235992154404,"lon":-122.28650638552608,"height":-18.15577642358396,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":59683,"length":22,"msg_type":526,"payload":"vF4vEAMAAAACAAAA3/////EAywIPAg==","preamble":85,"sender":22963,"tow":271539900,"n":3,"e":2,"d":-33,"h_accuracy":241,"v_accuracy":715,"n_sats":15,"flags":2} +{"crc":54981,"length":15,"msg_type":520,"payload":"vF4vEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271539900,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":64494,"length":22,"msg_type":524,"payload":"vF4vEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271539900,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":18706,"length":6,"msg_type":528,"payload":"vF4vEP//","preamble":85,"sender":22963,"tow":271539900,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":9807,"length":249,"msg_type":74,"payload":"IF8vEAAAAAAyCEBzr7Q+FyaXBlo4/yDVDw8FAFfyDkXfEUIH0HcIoLQPDxUAVpD7RWrwWgcTUPavug8PAgDMBQRJeousB+dn/kSmDw8fAAUtKj19r20GCYn7GtoPDxkAPe6/QGgkzgbrXvSMzw8PDABnK8s+CYOZBivHBXTUDw8dADQtKj1HWgIFYob80cwPDxkBC+6/QI+DTQVK7/blvA8PDAE7BQRJb9D6BXPD/kqVDw8fARAryz61gCQF4YAE7sIPDx0BFK+0Pm6pIgWlZP+hwQ8PBQHTOPg+BtW6Btl4BKXUDw8LA2145USgqVsH28fu7q8PDwkD","preamble":85,"sender":22963,"header":{"t":{"tow":271540000,"ns_residual":0,"wn":2098},"n_obs":64},"obs":[{"P":1052028787,"L":{"i":110568983,"f":90},"D":{"i":-200,"f":32},"cn0":213,"lock":15,"flags":15,"sid":{"sat":5,"code":0}},{"P":1158607447,"L":{"i":121770463,"f":208},"D":{"i":2167,"f":160},"cn0":180,"lock":15,"flags":15,"sid":{"sat":21,"code":0}},{"P":1174114390,"L":{"i":123400298,"f":19},"D":{"i":-2480,"f":175},"cn0":186,"lock":15,"flags":15,"sid":{"sat":2,"code":0}},{"P":1225000396,"L":{"i":128748410,"f":231},"D":{"i":-409,"f":68},"cn0":166,"lock":15,"flags":15,"sid":{"sat":31,"code":0}},{"P":1026174213,"L":{"i":107851645,"f":9},"D":{"i":-1143,"f":26},"cn0":218,"lock":15,"flags":15,"sid":{"sat":25,"code":0}},{"P":1086320189,"L":{"i":114173032,"f":235},"D":{"i":-2978,"f":140},"cn0":207,"lock":15,"flags":15,"sid":{"sat":12,"code":0}},{"P":1053502311,"L":{"i":110723849,"f":43},"D":{"i":1479,"f":116},"cn0":212,"lock":15,"flags":15,"sid":{"sat":29,"code":0}},{"P":1026174260,"L":{"i":84040263,"f":98},"D":{"i":-890,"f":209},"cn0":204,"lock":15,"flags":15,"sid":{"sat":25,"code":1}},{"P":1086320139,"L":{"i":88966031,"f":74},"D":{"i":-2321,"f":229},"cn0":188,"lock":15,"flags":15,"sid":{"sat":12,"code":1}},{"P":1225000251,"L":{"i":100323439,"f":115},"D":{"i":-317,"f":74},"cn0":149,"lock":15,"flags":15,"sid":{"sat":31,"code":1}},{"P":1053502224,"L":{"i":86278325,"f":225},"D":{"i":1152,"f":238},"cn0":194,"lock":15,"flags":15,"sid":{"sat":29,"code":1}},{"P":1052028692,"L":{"i":86157678,"f":165},"D":{"i":-156,"f":161},"cn0":193,"lock":15,"flags":15,"sid":{"sat":5,"code":1}},{"P":1056454867,"L":{"i":112907526,"f":217},"D":{"i":1144,"f":165},"cn0":212,"lock":15,"flags":15,"sid":{"sat":11,"code":3}},{"P":1155889261,"L":{"i":123447712,"f":219},"D":{"i":-4409,"f":238},"cn0":175,"lock":15,"flags":15,"sid":{"sat":9,"code":3}}]} +{"crc":58953,"length":249,"msg_type":74,"payload":"IF8vEAAAAAAyCEGlzjE9VHGLBgdA+yuuDw8UA7k1AUBvxNcGwoQIgM4PDwUDOpBwPowiqAarDPS8zg8PCgM8KgxDW0QuBwDG+va0Dw8EA8izJD8uA8IGD1EGxMwPDxUDBnnlRDESuQVsm/KFrg8PCQTgzzE9ZR8XBRdQ/BbNDw8UBBo6+D4P+zsFqXoDFccPDwsE+zYBQFp8UgW4oAZWww8PBQTyKgxDWcOVBXHw+0esDw8EBFjgmkVywD8HHCH6g8kPDyMMFcP+SXHMtAdZPfROrA8PGgw5CQ5MSLbrBwTHCHahDw8iDJRppUfAK3YHbN36nL0PDxgM","preamble":85,"sender":22963,"header":{"t":{"tow":271540000,"ns_residual":0,"wn":2098},"n_obs":65},"obs":[{"P":1026674341,"L":{"i":109801812,"f":7},"D":{"i":-1216,"f":43},"cn0":174,"lock":15,"flags":15,"sid":{"sat":20,"code":3}},{"P":1073821113,"L":{"i":114803823,"f":194},"D":{"i":2180,"f":128},"cn0":206,"lock":15,"flags":15,"sid":{"sat":5,"code":3}},{"P":1047564346,"L":{"i":111682188,"f":171},"D":{"i":-3060,"f":188},"cn0":206,"lock":15,"flags":15,"sid":{"sat":10,"code":3}},{"P":1124870716,"L":{"i":120472667,"f":0},"D":{"i":-1338,"f":246},"cn0":180,"lock":15,"flags":15,"sid":{"sat":4,"code":3}},{"P":1059369928,"L":{"i":113378094,"f":15},"D":{"i":1617,"f":196},"cn0":204,"lock":15,"flags":15,"sid":{"sat":21,"code":3}},{"P":1155889414,"L":{"i":96014897,"f":108},"D":{"i":-3429,"f":133},"cn0":174,"lock":15,"flags":15,"sid":{"sat":9,"code":4}},{"P":1026674656,"L":{"i":85401445,"f":23},"D":{"i":-944,"f":22},"cn0":205,"lock":15,"flags":15,"sid":{"sat":20,"code":4}},{"P":1056455194,"L":{"i":87816975,"f":169},"D":{"i":890,"f":21},"cn0":199,"lock":15,"flags":15,"sid":{"sat":11,"code":4}},{"P":1073821435,"L":{"i":89291866,"f":184},"D":{"i":1696,"f":86},"cn0":195,"lock":15,"flags":15,"sid":{"sat":5,"code":4}},{"P":1124870898,"L":{"i":93700953,"f":113},"D":{"i":-1040,"f":71},"cn0":172,"lock":15,"flags":15,"sid":{"sat":4,"code":4}},{"P":1167777880,"L":{"i":121618546,"f":28},"D":{"i":-1503,"f":131},"cn0":201,"lock":15,"flags":15,"sid":{"sat":35,"code":12}},{"P":1241432853,"L":{"i":129289329,"f":89},"D":{"i":-3011,"f":78},"cn0":172,"lock":15,"flags":15,"sid":{"sat":26,"code":12}},{"P":1275988281,"L":{"i":132888136,"f":4},"D":{"i":2247,"f":118},"cn0":161,"lock":15,"flags":15,"sid":{"sat":34,"code":12}},{"P":1202022804,"L":{"i":125184960,"f":108},"D":{"i":-1315,"f":156},"cn0":189,"lock":15,"flags":15,"sid":{"sat":24,"code":12}}]} +{"crc":13114,"length":249,"msg_type":74,"payload":"IF8vEAAAAAAyCEK9cg5NcGoGCGsgBVWfDw8ZDMTSSEW2NDcH5kgGurgPDwwMxFtERzQQbAfz0P4muQ8PEwyhAlZHz+ZtBwtLCe/BDw8WDH/SSEV9YJQFvdwExtAPDwwNyeIKQv7s8AZa+vtCwQ8PDA59+BxLhPrkBxo0BIS+Dw8ZDlg+HUdUYnkH4hIEc7wPDwsODjIuQ/OKDwdlJflvyg8PGA5MrlNRzSmMCLGZ8/+eDw8fDght/lHTG54Io6H36pcPDyEOX/gcS8CKDAa3OgM6yQ8PGRQ9NC5DUwBpBdO/+o3XDw8YFJs9HUdjGboFaR4DH8IPDwsU","preamble":85,"sender":22963,"header":{"t":{"tow":271540000,"ns_residual":0,"wn":2098},"n_obs":66},"obs":[{"P":1292792509,"L":{"i":134638192,"f":107},"D":{"i":1312,"f":85},"cn0":159,"lock":15,"flags":15,"sid":{"sat":25,"code":12}},{"P":1162400452,"L":{"i":121058486,"f":230},"D":{"i":1608,"f":186},"cn0":184,"lock":15,"flags":15,"sid":{"sat":12,"code":12}},{"P":1195662276,"L":{"i":124522548,"f":243},"D":{"i":-304,"f":38},"cn0":185,"lock":15,"flags":15,"sid":{"sat":19,"code":12}},{"P":1196819105,"L":{"i":124643023,"f":11},"D":{"i":2379,"f":239},"cn0":193,"lock":15,"flags":15,"sid":{"sat":22,"code":12}},{"P":1162400383,"L":{"i":93610109,"f":189},"D":{"i":1244,"f":198},"cn0":208,"lock":15,"flags":15,"sid":{"sat":12,"code":13}},{"P":1108009673,"L":{"i":116452606,"f":90},"D":{"i":-1030,"f":66},"cn0":193,"lock":15,"flags":15,"sid":{"sat":12,"code":14}},{"P":1260189821,"L":{"i":132446852,"f":26},"D":{"i":1076,"f":132},"cn0":190,"lock":15,"flags":15,"sid":{"sat":25,"code":14}},{"P":1193098840,"L":{"i":125395540,"f":226},"D":{"i":1042,"f":115},"cn0":188,"lock":15,"flags":15,"sid":{"sat":11,"code":14}},{"P":1127100942,"L":{"i":118459123,"f":101},"D":{"i":-1755,"f":111},"cn0":202,"lock":15,"flags":15,"sid":{"sat":24,"code":14}},{"P":1364438604,"L":{"i":143403469,"f":177},"D":{"i":-3175,"f":255},"cn0":158,"lock":15,"flags":15,"sid":{"sat":31,"code":14}},{"P":1375628552,"L":{"i":144579539,"f":163},"D":{"i":-2143,"f":234},"cn0":151,"lock":15,"flags":15,"sid":{"sat":33,"code":14}},{"P":1260189791,"L":{"i":101485248,"f":183},"D":{"i":826,"f":58},"cn0":201,"lock":15,"flags":15,"sid":{"sat":25,"code":20}},{"P":1127101501,"L":{"i":90767443,"f":211},"D":{"i":-1345,"f":141},"cn0":215,"lock":15,"flags":15,"sid":{"sat":24,"code":20}},{"P":1193098651,"L":{"i":96082275,"f":105},"D":{"i":798,"f":31},"cn0":194,"lock":15,"flags":15,"sid":{"sat":11,"code":20}}]} +{"crc":3383,"length":62,"msg_type":74,"payload":"IF8vEAAAAAAyCEO7rlNRLqWMBjGB9tauDw8fFC7iCkJ9ilEFxer8gs4PDwwU82z+UWNlmgasmPl6qQ8PIRQ=","preamble":85,"sender":22963,"header":{"t":{"tow":271540000,"ns_residual":0,"wn":2098},"n_obs":67},"obs":[{"P":1364438715,"L":{"i":109880622,"f":49},"D":{"i":-2431,"f":214},"cn0":174,"lock":15,"flags":15,"sid":{"sat":31,"code":20}},{"P":1108009518,"L":{"i":89229949,"f":197},"D":{"i":-790,"f":130},"cn0":206,"lock":15,"flags":15,"sid":{"sat":12,"code":20}},{"P":1375628531,"L":{"i":110781795,"f":172},"D":{"i":-1640,"f":122},"cn0":169,"lock":15,"flags":15,"sid":{"sat":33,"code":20}}]} +{"crc":49809,"length":9,"msg_type":117,"payload":"/wAAAAAAAAAA","preamble":85,"sender":22963,"mask":255,"l1ca_bias":0,"l1p_bias":0,"l2ca_bias":0,"l2p_bias":0} +{"crc":15685,"length":11,"msg_type":258,"payload":"MgggXy8QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271540000,"ns_residual":0,"flags":1} +{"crc":32045,"length":16,"msg_type":259,"payload":"ESBfLxDkBwMZAxkV/smaOw==","preamble":85,"sender":22963,"flags":17,"tow":271540000,"year":2020,"month":3,"day":25,"hours":3,"minutes":25,"seconds":21,"ns":999999998} +{"crc":58016,"length":34,"msg_type":522,"payload":"IF8vEB1NSfFl6kJAbbsCH1aSXsBxYsTIByYywAECWwQPBg==","preamble":85,"sender":22963,"tow":271540000,"lat":37.83123603896295,"lon":-122.28650641695795,"height":-18.14855627817673,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":54906,"length":22,"msg_type":526,"payload":"IF8vEAMAAAD9//////////EAywIPAg==","preamble":85,"sender":22963,"tow":271540000,"n":3,"e":-3,"d":-1,"h_accuracy":241,"v_accuracy":715,"n_sats":15,"flags":2} +{"crc":3019,"length":15,"msg_type":520,"payload":"IF8vEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271540000,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":53289,"length":22,"msg_type":524,"payload":"IF8vEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271540000,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":9732,"length":6,"msg_type":528,"payload":"IF8vEP//","preamble":85,"sender":22963,"tow":271540000,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":40942,"length":4,"msg_type":65535,"payload":"AAUCgA==","preamble":85,"sender":22963,"flags":2147616000} +{"crc":2168,"length":24,"msg_type":72,"payload":"UO0a3iqORMHK1UJhIkRQwc9nFIPvrk1B","preamble":85,"sender":22963,"x":-2694229.735196747,"y":-4264073.519704292,"z":3890655.0240602265} +{"crc":47991,"length":26,"msg_type":23,"payload":"bWFpbgAAAAAAAAAAAAAAAAAAAAAAAAx1AAA=","preamble":85,"sender":22963,"name":"main\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":0,"stack_free":29964} +{"crc":36916,"length":26,"msg_type":23,"payload":"aWRsZQAAAAAAAAAAAAAAAAAAAAATAHwAAAA=","preamble":85,"sender":22963,"name":"idle\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":19,"stack_free":124} +{"crc":18957,"length":26,"msg_type":23,"payload":"cnBtc2cAAAAAAAAAAAAAAAAAAAABAOQNAAA=","preamble":85,"sender":22963,"name":"rpmsg\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":1,"stack_free":3556} +{"crc":51784,"length":26,"msg_type":23,"payload":"U0JQAAAAAAAAAAAAAAAAAAAAAAAAAPz/AAA=","preamble":85,"sender":22963,"name":"SBP\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":0,"stack_free":65532} +{"crc":33651,"length":26,"msg_type":23,"payload":"TkFQAAAAAAAAAAAAAAAAAAAAAAAAAASAAAA=","preamble":85,"sender":22963,"name":"NAP\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":0,"stack_free":32772} +{"crc":61814,"length":26,"msg_type":23,"payload":"bWFuYWdlIFBWAAAAAAAAAAAAAAAAACwEAAA=","preamble":85,"sender":22963,"name":"manage PV\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":0,"stack_free":1068} +{"crc":14252,"length":26,"msg_type":23,"payload":"SU1VAAAAAAAAAAAAAAAAAAAAAAAAAPQHAAA=","preamble":85,"sender":22963,"name":"IMU\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":0,"stack_free":2036} +{"crc":18976,"length":26,"msg_type":23,"payload":"SU1VIGF1eAAAAAAAAAAAAAAAAAAAAEwIAAA=","preamble":85,"sender":22963,"name":"IMU aux\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":0,"stack_free":2124} +{"crc":26120,"length":26,"msg_type":23,"payload":"bmRiAAAAAAAAAAAAAAAAAAAAAAAAAFAMAAA=","preamble":85,"sender":22963,"name":"ndb\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":0,"stack_free":3152} +{"crc":25570,"length":26,"msg_type":23,"payload":"TkFQIFRyYWNraW5nAAAAAAAAAAApAdR3AAA=","preamble":85,"sender":22963,"name":"NAP Tracking\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":297,"stack_free":30676} +{"crc":40082,"length":26,"msg_type":23,"payload":"ZGVjb2RlAAAAAAAAAAAAAAAAAAAIANQGAAA=","preamble":85,"sender":22963,"name":"decode\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":8,"stack_free":1748} +{"crc":5520,"length":26,"msg_type":23,"payload":"bWFuYWdlIGFjcQAAAAAAAAAAAAD/AaR3AAA=","preamble":85,"sender":22963,"name":"manage acq\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":511,"stack_free":30628} +{"crc":58531,"length":26,"msg_type":23,"payload":"c3lzdGVtIG1vbml0b3IAAAAAAAAAACwGAAA=","preamble":85,"sender":22963,"name":"system monitor\u0000\u0000\u0000\u0000\u0000\u0000","cpu":0,"stack_free":1580} +{"crc":44438,"length":26,"msg_type":23,"payload":"V2F0Y2hkb2cAAAAAAAAAAAAAAAAAAOQDAAA=","preamble":85,"sender":22963,"name":"Watchdog\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":0,"stack_free":996} +{"crc":46399,"length":26,"msg_type":23,"payload":"c3RhcmxpbmcAAAAAAAAAAAAAAACXAPz/AAA=","preamble":85,"sender":22963,"name":"starling\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":151,"stack_free":65532} +{"crc":57561,"length":26,"msg_type":23,"payload":"bWVfY2FsY19wdnQAAAAAAAAAAAAJAIwjAAA=","preamble":85,"sender":22963,"name":"me_calc_pvt\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":9,"stack_free":9100} +{"crc":38576,"length":26,"msg_type":23,"payload":"UFBTAAAAAAAAAAAAAAAAAAAAAAAAAEgHAAA=","preamble":85,"sender":22963,"name":"PPS\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":0,"stack_free":1864} +{"crc":50933,"length":26,"msg_type":23,"payload":"c3BlY3RydW0gYW5hbHl6ZXIAAAAAANQPAAA=","preamble":85,"sender":22963,"name":"spectrum analyzer\u0000\u0000\u0000","cpu":0,"stack_free":4052} +{"crc":47588,"length":11,"msg_type":258,"payload":"MgiEXy8QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271540100,"ns_residual":0,"flags":1} +{"crc":5525,"length":16,"msg_type":259,"payload":"EYRfLxDkBwMZAxkW/uD1BQ==","preamble":85,"sender":22963,"flags":17,"tow":271540100,"year":2020,"month":3,"day":25,"hours":3,"minutes":25,"seconds":22,"ns":99999998} +{"crc":11167,"length":34,"msg_type":522,"payload":"hF8vEJjikfFl6kJA+QoiH1aSXsDyck39tCMywAECWwQPBg==","preamble":85,"sender":22963,"tow":271540100,"lat":37.831236072762465,"lon":-122.28650644611834,"height":-18.13948043003888,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":45940,"length":22,"msg_type":526,"payload":"hF8vEAAAAAD4////9f////EAywIPAg==","preamble":85,"sender":22963,"tow":271540100,"n":0,"e":-8,"d":-11,"h_accuracy":241,"v_accuracy":715,"n_sats":15,"flags":2} +{"crc":22911,"length":15,"msg_type":520,"payload":"hF8vEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271540100,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":42832,"length":22,"msg_type":524,"payload":"hF8vEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271540100,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":49549,"length":6,"msg_type":528,"payload":"hF8vEP//","preamble":85,"sender":22963,"tow":271540100,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":62673,"length":11,"msg_type":258,"payload":"MgjoXy8QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271540200,"ns_residual":0,"flags":1} +{"crc":28219,"length":16,"msg_type":259,"payload":"EehfLxDkBwMZAxkW/sHrCw==","preamble":85,"sender":22963,"flags":17,"tow":271540200,"year":2020,"month":3,"day":25,"hours":3,"minutes":25,"seconds":22,"ns":199999998} +{"crc":57578,"length":34,"msg_type":522,"payload":"6F8vELBO2PFl6kJArsY8H1aSXsCNcpYeVCIywAECWwQPBg==","preamble":85,"sender":22963,"tow":271540200,"lat":37.83123610555538,"lon":-122.2865064710156,"height":-18.134096061449373,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":13882,"length":22,"msg_type":526,"payload":"6F8vEP7///8DAAAADQAAAPEAywIPAg==","preamble":85,"sender":22963,"tow":271540200,"n":-2,"e":3,"d":13,"h_accuracy":241,"v_accuracy":715,"n_sats":15,"flags":2} +{"crc":21141,"length":15,"msg_type":520,"payload":"6F8vEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271540200,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":57669,"length":22,"msg_type":524,"payload":"6F8vEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271540200,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":38262,"length":6,"msg_type":528,"payload":"6F8vEP//","preamble":85,"sender":22963,"tow":271540200,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":61294,"length":11,"msg_type":258,"payload":"MghMYC8QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271540300,"ns_residual":0,"flags":1} +{"crc":25169,"length":16,"msg_type":259,"payload":"EUxgLxDkBwMZAxkW/qLhEQ==","preamble":85,"sender":22963,"flags":17,"tow":271540300,"year":2020,"month":3,"day":25,"hours":3,"minutes":25,"seconds":22,"ns":299999998} +{"crc":3155,"length":34,"msg_type":522,"payload":"TGAvEJGFNvJl6kJAkw1PH1aSXsCCgAOrxiEywAECWwQPBg==","preamble":85,"sender":22963,"tow":271540300,"lat":37.83123614942736,"lon":-122.28650648803732,"height":-18.131937683444,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":20711,"length":22,"msg_type":526,"payload":"TGAvEAcAAAACAAAADQAAAPEAywIPAg==","preamble":85,"sender":22963,"tow":271540300,"n":7,"e":2,"d":13,"h_accuracy":241,"v_accuracy":715,"n_sats":15,"flags":2} +{"crc":49268,"length":15,"msg_type":520,"payload":"TGAvEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271540300,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":54204,"length":22,"msg_type":524,"payload":"TGAvEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271540300,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":7144,"length":6,"msg_type":528,"payload":"TGAvEP//","preamble":85,"sender":22963,"tow":271540300,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":20823,"length":237,"msg_type":97,"payload":"BQDVFQC0AgC6HwClAAAAAAAAGQDZDADPHQDUEgDOAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwLMGQHMDAG8HwGVEgHEHQHCAAAABQHBAAAAAAAAAAAAAAAAZAPUYgOwZgOuZQPOXQPOAAAAagO0aAPLYgSuZgTNAAAAZATHZQTDaAS8AAAAagStIwzIGgyrIgyhGAy8GQyfDAy5Ewy5FgzBAAAADA3QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADA7BAAAAGQ6+Cw67GA7KAAAAHw6dIQ6WGRTJGBTXCxTCHxSuDBTOAAAAIRSqAAAA","preamble":85,"sender":22963,"states":[{"mesid":{"sat":5,"code":0},"cn0":213},{"mesid":{"sat":21,"code":0},"cn0":180},{"mesid":{"sat":2,"code":0},"cn0":186},{"mesid":{"sat":31,"code":0},"cn0":165},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":25,"code":0},"cn0":217},{"mesid":{"sat":12,"code":0},"cn0":207},{"mesid":{"sat":29,"code":0},"cn0":212},{"mesid":{"sat":18,"code":0},"cn0":206},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":131,"code":2},"cn0":204},{"mesid":{"sat":25,"code":1},"cn0":204},{"mesid":{"sat":12,"code":1},"cn0":188},{"mesid":{"sat":31,"code":1},"cn0":149},{"mesid":{"sat":18,"code":1},"cn0":196},{"mesid":{"sat":29,"code":1},"cn0":194},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":5,"code":1},"cn0":193},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":100,"code":3},"cn0":212},{"mesid":{"sat":98,"code":3},"cn0":176},{"mesid":{"sat":102,"code":3},"cn0":174},{"mesid":{"sat":101,"code":3},"cn0":206},{"mesid":{"sat":93,"code":3},"cn0":206},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":106,"code":3},"cn0":180},{"mesid":{"sat":104,"code":3},"cn0":203},{"mesid":{"sat":98,"code":4},"cn0":174},{"mesid":{"sat":102,"code":4},"cn0":205},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":100,"code":4},"cn0":199},{"mesid":{"sat":101,"code":4},"cn0":195},{"mesid":{"sat":104,"code":4},"cn0":188},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":106,"code":4},"cn0":173},{"mesid":{"sat":35,"code":12},"cn0":200},{"mesid":{"sat":26,"code":12},"cn0":171},{"mesid":{"sat":34,"code":12},"cn0":161},{"mesid":{"sat":24,"code":12},"cn0":188},{"mesid":{"sat":25,"code":12},"cn0":159},{"mesid":{"sat":12,"code":12},"cn0":185},{"mesid":{"sat":19,"code":12},"cn0":185},{"mesid":{"sat":22,"code":12},"cn0":193},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":12,"code":13},"cn0":208},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":12,"code":14},"cn0":193},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":25,"code":14},"cn0":190},{"mesid":{"sat":11,"code":14},"cn0":187},{"mesid":{"sat":24,"code":14},"cn0":202},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":31,"code":14},"cn0":157},{"mesid":{"sat":33,"code":14},"cn0":150},{"mesid":{"sat":25,"code":20},"cn0":201},{"mesid":{"sat":24,"code":20},"cn0":215},{"mesid":{"sat":11,"code":20},"cn0":194},{"mesid":{"sat":31,"code":20},"cn0":174},{"mesid":{"sat":12,"code":20},"cn0":206},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":33,"code":20},"cn0":170},{"mesid":{"sat":0,"code":0},"cn0":0}]} +{"crc":19991,"length":11,"msg_type":258,"payload":"MgiwYC8QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271540400,"ns_residual":0,"flags":1} +{"crc":3360,"length":16,"msg_type":259,"payload":"EbBgLxDkBwMZAxkW/oPXFw==","preamble":85,"sender":22963,"flags":17,"tow":271540400,"year":2020,"month":3,"day":25,"hours":3,"minutes":25,"seconds":22,"ns":399999998} +{"crc":63590,"length":34,"msg_type":522,"payload":"sGAvECjWivJl6kJA8QdbH1aSXsCOdUL/6iEywAECWwQPBg==","preamble":85,"sender":22963,"tow":271540400,"lat":37.8312361886895,"lon":-122.2865064991927,"height":-18.13249202129878,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":53652,"length":22,"msg_type":526,"payload":"sGAvEAkAAAD9////EAAAAPEAywIPAg==","preamble":85,"sender":22963,"tow":271540400,"n":9,"e":-3,"d":16,"h_accuracy":241,"v_accuracy":715,"n_sats":15,"flags":2} +{"crc":53510,"length":15,"msg_type":520,"payload":"sGAvEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271540400,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":37498,"length":22,"msg_type":524,"payload":"sGAvEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271540400,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":33207,"length":6,"msg_type":528,"payload":"sGAvEP//","preamble":85,"sender":22963,"tow":271540400,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":49809,"length":9,"msg_type":117,"payload":"/wAAAAAAAAAA","preamble":85,"sender":22963,"mask":255,"l1ca_bias":0,"l1p_bias":0,"l2ca_bias":0,"l2p_bias":0} +{"crc":36197,"length":11,"msg_type":258,"payload":"MggUYS8QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271540500,"ns_residual":0,"flags":1} +{"crc":19622,"length":16,"msg_type":259,"payload":"ERRhLxDkBwMZAxkW/mTNHQ==","preamble":85,"sender":22963,"flags":17,"tow":271540500,"year":2020,"month":3,"day":25,"hours":3,"minutes":25,"seconds":22,"ns":499999998} +{"crc":43792,"length":34,"msg_type":522,"payload":"FGEvEPcP1/Jl6kJArCxlH1aSXsCAgDnBWCEywAECWwQPBg==","preamble":85,"sender":22963,"tow":271540500,"lat":37.83123622418491,"lon":-122.28650650863955,"height":-18.13026054052216,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":60953,"length":22,"msg_type":526,"payload":"FGEvEAAAAAACAAAAEwAAAPEAywIPAg==","preamble":85,"sender":22963,"tow":271540500,"n":0,"e":2,"d":19,"h_accuracy":241,"v_accuracy":715,"n_sats":15,"flags":2} +{"crc":63699,"length":15,"msg_type":520,"payload":"FGEvEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271540500,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":12533,"length":22,"msg_type":524,"payload":"FGEvEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271540500,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":52335,"length":6,"msg_type":528,"payload":"FGEvEP//","preamble":85,"sender":22963,"tow":271540500,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":49232,"length":11,"msg_type":258,"payload":"Mgh4YS8QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271540600,"ns_residual":0,"flags":1} +{"crc":552,"length":16,"msg_type":259,"payload":"EXhhLxDkBwMZAxkW/kXDIw==","preamble":85,"sender":22963,"flags":17,"tow":271540600,"year":2020,"month":3,"day":25,"hours":3,"minutes":25,"seconds":22,"ns":599999998} +{"crc":10529,"length":34,"msg_type":522,"payload":"eGEvEAEELvNl6kJAB2VwH1aSXsDD59I8QyAywAECWwQPBg==","preamble":85,"sender":22963,"tow":271540600,"lat":37.83123626467569,"lon":-122.28650651908912,"height":-18.126025964251095,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":33364,"length":22,"msg_type":526,"payload":"eGEvEAgAAAAEAAAA9v////EAywIPAg==","preamble":85,"sender":22963,"tow":271540600,"n":8,"e":4,"d":-10,"h_accuracy":241,"v_accuracy":715,"n_sats":15,"flags":2} +{"crc":62265,"length":15,"msg_type":520,"payload":"eGEvEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271540600,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":30432,"length":22,"msg_type":524,"payload":"eGEvEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271540600,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":39060,"length":6,"msg_type":528,"payload":"eGEvEP//","preamble":85,"sender":22963,"tow":271540600,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":49929,"length":34,"msg_type":30583,"payload":"gwL+YC8QAhf///f/AC//AAf/f//+f/f//+AC5edV7m7lcA==","preamble":85,"sender":22963,"sid":{"sat":131,"code":2},"tow":271540478,"message_type":2,"data":[23,255,255,247,255,0,47,255,0,7,255,127,255,254,127,247,255,255,224,2,229,231,85,238,110,229,112]} +{"crc":17649,"length":11,"msg_type":258,"payload":"MgjcYS8QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271540700,"ns_residual":0,"flags":1} +{"crc":54399,"length":16,"msg_type":259,"payload":"EdxhLxDkBwMZAxkW/ia5KQ==","preamble":85,"sender":22963,"flags":17,"tow":271540700,"year":2020,"month":3,"day":25,"hours":3,"minutes":25,"seconds":22,"ns":699999998} +{"crc":32561,"length":34,"msg_type":522,"payload":"3GEvEA4yh/Nl6kJAeCafH1aSXsBMWsO/5R0ywAECWwQPBg==","preamble":85,"sender":22963,"tow":271540700,"lat":37.83123630620331,"lon":-122.28650656263369,"height":-18.116786942666565,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":42357,"length":22,"msg_type":526,"payload":"3GEvEPj////4////2v////EAywIPAg==","preamble":85,"sender":22963,"tow":271540700,"n":-8,"e":-8,"d":-38,"h_accuracy":241,"v_accuracy":715,"n_sats":15,"flags":2} +{"crc":41357,"length":15,"msg_type":520,"payload":"3GEvEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271540700,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":409,"length":22,"msg_type":524,"payload":"3GEvEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271540700,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":32541,"length":6,"msg_type":528,"payload":"3GEvEP//","preamble":85,"sender":22963,"tow":271540700,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":54744,"length":11,"msg_type":258,"payload":"MghAYi8QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271540800,"ns_residual":0,"flags":1} +{"crc":34646,"length":16,"msg_type":259,"payload":"EUBiLxDkBwMZAxkW/gevLw==","preamble":85,"sender":22963,"flags":17,"tow":271540800,"year":2020,"month":3,"day":25,"hours":3,"minutes":25,"seconds":22,"ns":799999998} +{"crc":33523,"length":34,"msg_type":522,"payload":"QGIvEInWBPRl6kJAAk/NH1aSXsDIui/zZh0ywAECWwQPBg==","preamble":85,"sender":22963,"tow":271540800,"lat":37.83123636471016,"lon":-122.28650660562201,"height":-18.114852141525972,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":64920,"length":22,"msg_type":526,"payload":"QGIvEAEAAAD9////EgAAAPEAywIPAg==","preamble":85,"sender":22963,"tow":271540800,"n":1,"e":-3,"d":18,"h_accuracy":241,"v_accuracy":715,"n_sats":15,"flags":2} +{"crc":35393,"length":15,"msg_type":520,"payload":"QGIvEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271540800,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":37267,"length":22,"msg_type":524,"payload":"QGIvEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271540800,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":21640,"length":6,"msg_type":528,"payload":"QGIvEP//","preamble":85,"sender":22963,"tow":271540800,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":45120,"length":237,"msg_type":97,"payload":"BQDUFQCyAgC5HwCkAAAAAAAAGQDYDADOHQDSEgDNAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwLLGQHMDAG8HwGUEgHEHQHCAAAABQHBAAAAAAAAAAAAAAAACwPUCQOvFAOvBQPOCgPOAAAABAO0FQPMCQSuFATNCgROCwTHBQTDAAS8AAAABASsIwzIGgyqIgyhGAy8GQyfDAy4Ewy5FgzBAAAADA3RAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADA7CAAAAGQ6/Cw68GA7LAAAAHw6dIQ6XGRTJGBTXCxTCHxSuDBTOAAAAIRSqAAAA","preamble":85,"sender":22963,"states":[{"mesid":{"sat":5,"code":0},"cn0":212},{"mesid":{"sat":21,"code":0},"cn0":178},{"mesid":{"sat":2,"code":0},"cn0":185},{"mesid":{"sat":31,"code":0},"cn0":164},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":25,"code":0},"cn0":216},{"mesid":{"sat":12,"code":0},"cn0":206},{"mesid":{"sat":29,"code":0},"cn0":210},{"mesid":{"sat":18,"code":0},"cn0":205},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":131,"code":2},"cn0":203},{"mesid":{"sat":25,"code":1},"cn0":204},{"mesid":{"sat":12,"code":1},"cn0":188},{"mesid":{"sat":31,"code":1},"cn0":148},{"mesid":{"sat":18,"code":1},"cn0":196},{"mesid":{"sat":29,"code":1},"cn0":194},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":5,"code":1},"cn0":193},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":11,"code":3},"cn0":212},{"mesid":{"sat":9,"code":3},"cn0":175},{"mesid":{"sat":20,"code":3},"cn0":175},{"mesid":{"sat":5,"code":3},"cn0":206},{"mesid":{"sat":10,"code":3},"cn0":206},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":4,"code":3},"cn0":180},{"mesid":{"sat":21,"code":3},"cn0":204},{"mesid":{"sat":9,"code":4},"cn0":174},{"mesid":{"sat":20,"code":4},"cn0":205},{"mesid":{"sat":10,"code":4},"cn0":78},{"mesid":{"sat":11,"code":4},"cn0":199},{"mesid":{"sat":5,"code":4},"cn0":195},{"mesid":{"sat":0,"code":4},"cn0":188},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":4,"code":4},"cn0":172},{"mesid":{"sat":35,"code":12},"cn0":200},{"mesid":{"sat":26,"code":12},"cn0":170},{"mesid":{"sat":34,"code":12},"cn0":161},{"mesid":{"sat":24,"code":12},"cn0":188},{"mesid":{"sat":25,"code":12},"cn0":159},{"mesid":{"sat":12,"code":12},"cn0":184},{"mesid":{"sat":19,"code":12},"cn0":185},{"mesid":{"sat":22,"code":12},"cn0":193},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":12,"code":13},"cn0":209},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":12,"code":14},"cn0":194},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":25,"code":14},"cn0":191},{"mesid":{"sat":11,"code":14},"cn0":188},{"mesid":{"sat":24,"code":14},"cn0":203},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":31,"code":14},"cn0":157},{"mesid":{"sat":33,"code":14},"cn0":151},{"mesid":{"sat":25,"code":20},"cn0":201},{"mesid":{"sat":24,"code":20},"cn0":215},{"mesid":{"sat":11,"code":20},"cn0":194},{"mesid":{"sat":31,"code":20},"cn0":174},{"mesid":{"sat":12,"code":20},"cn0":206},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":33,"code":20},"cn0":170},{"mesid":{"sat":0,"code":0},"cn0":0}]} +{"crc":34187,"length":128,"msg_type":151,"payload":"AgAaHQUAKzUMAFEtFQB9GRkAbUYaAKEBHQChNx8AlQ4EAxUWBQMyIQkDXw4KA3EpCwOYJQwDqgMTAyIHFAMMMRUDlSUMDJQpEwwjIBQMDwIWDEMkGAyCIxkMnQ4aDGcVIgyOESMMIi0LDosyDA4PPBgObDYZDpcpHw5VESEOIA8=","preamble":85,"sender":22963,"azel":[{"sid":{"sat":2,"code":0},"az":26,"el":29},{"sid":{"sat":5,"code":0},"az":43,"el":53},{"sid":{"sat":12,"code":0},"az":81,"el":45},{"sid":{"sat":21,"code":0},"az":125,"el":25},{"sid":{"sat":25,"code":0},"az":109,"el":70},{"sid":{"sat":26,"code":0},"az":161,"el":1},{"sid":{"sat":29,"code":0},"az":161,"el":55},{"sid":{"sat":31,"code":0},"az":149,"el":14},{"sid":{"sat":4,"code":3},"az":21,"el":22},{"sid":{"sat":5,"code":3},"az":50,"el":33},{"sid":{"sat":9,"code":3},"az":95,"el":14},{"sid":{"sat":10,"code":3},"az":113,"el":41},{"sid":{"sat":11,"code":3},"az":152,"el":37},{"sid":{"sat":12,"code":3},"az":170,"el":3},{"sid":{"sat":19,"code":3},"az":34,"el":7},{"sid":{"sat":20,"code":3},"az":12,"el":49},{"sid":{"sat":21,"code":3},"az":149,"el":37},{"sid":{"sat":12,"code":12},"az":148,"el":41},{"sid":{"sat":19,"code":12},"az":35,"el":32},{"sid":{"sat":20,"code":12},"az":15,"el":2},{"sid":{"sat":22,"code":12},"az":67,"el":36},{"sid":{"sat":24,"code":12},"az":130,"el":35},{"sid":{"sat":25,"code":12},"az":157,"el":14},{"sid":{"sat":26,"code":12},"az":103,"el":21},{"sid":{"sat":34,"code":12},"az":142,"el":17},{"sid":{"sat":35,"code":12},"az":34,"el":45},{"sid":{"sat":11,"code":14},"az":139,"el":50},{"sid":{"sat":12,"code":14},"az":15,"el":60},{"sid":{"sat":24,"code":14},"az":108,"el":54},{"sid":{"sat":25,"code":14},"az":151,"el":41},{"sid":{"sat":31,"code":14},"az":85,"el":17},{"sid":{"sat":33,"code":14},"az":32,"el":15}]} +{"crc":3744,"length":11,"msg_type":258,"payload":"MgikYi8QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271540900,"ns_residual":0,"flags":1} +{"crc":7274,"length":16,"msg_type":259,"payload":"EaRiLxDkBwMZAxkW/uikNQ==","preamble":85,"sender":22963,"flags":17,"tow":271540900,"year":2020,"month":3,"day":25,"hours":3,"minutes":25,"seconds":22,"ns":899999998} +{"crc":11338,"length":34,"msg_type":522,"payload":"pGIvEKzTdfRl6kJAZgb2H1aSXsArpsYBJRwywAECWwQPBg==","preamble":85,"sender":22963,"tow":271540900,"lat":37.831236417324675,"lon":-122.28650664354208,"height":-18.109939681051554,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":5725,"length":22,"msg_type":526,"payload":"pGIvEAIAAAABAAAA+f////EAywIPAg==","preamble":85,"sender":22963,"tow":271540900,"n":2,"e":1,"d":-7,"h_accuracy":241,"v_accuracy":715,"n_sats":15,"flags":2} +{"crc":62204,"length":15,"msg_type":520,"payload":"pGIvEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271540900,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":13232,"length":22,"msg_type":524,"payload":"pGIvEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271540900,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":55569,"length":6,"msg_type":528,"payload":"pGIvEP//","preamble":85,"sender":22963,"tow":271540900,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":59430,"length":249,"msg_type":74,"payload":"CGMvEAAAAAAyCEDctrQ+3yaXBiw3/zDTDw8FAMWhDkVoCUIHNXcIP7IPDxUAiOz7RRn6WgdKUPbsuQ8PAgD7FARJE42sByFn/kOkDw8fAHZXKj3ys20G34n7ldgPDxkA3lzAQAkwzgaFYPTNzg8PDABr9Mo+QX2ZBoPHBcPTDw8dAKRXKj3BXQIFIIb8GMwPDxkBtFzAQJ6MTQW58PanvA8PDAFiFARJrdH6BZG//u2UDw8fARH0yj40fCQF5oAEK8IPDx0Be7a0PgqqIgVXY//rwQ8PBQH+Dvg+jdC6BqN4BOLUDw8LA7UZ5kTZulsHG8fuNK8PDwkD","preamble":85,"sender":22963,"header":{"t":{"tow":271541000,"ns_residual":0,"wn":2098},"n_obs":64},"obs":[{"P":1052030684,"L":{"i":110569183,"f":44},"D":{"i":-201,"f":48},"cn0":211,"lock":15,"flags":15,"sid":{"sat":5,"code":0}},{"P":1158586821,"L":{"i":121768296,"f":53},"D":{"i":2167,"f":63},"cn0":178,"lock":15,"flags":15,"sid":{"sat":21,"code":0}},{"P":1174137992,"L":{"i":123402777,"f":74},"D":{"i":-2480,"f":236},"cn0":185,"lock":15,"flags":15,"sid":{"sat":2,"code":0}},{"P":1225004283,"L":{"i":128748819,"f":33},"D":{"i":-409,"f":67},"cn0":164,"lock":15,"flags":15,"sid":{"sat":31,"code":0}},{"P":1026185078,"L":{"i":107852786,"f":223},"D":{"i":-1143,"f":149},"cn0":216,"lock":15,"flags":15,"sid":{"sat":25,"code":0}},{"P":1086348510,"L":{"i":114176009,"f":133},"D":{"i":-2976,"f":205},"cn0":206,"lock":15,"flags":15,"sid":{"sat":12,"code":0}},{"P":1053488235,"L":{"i":110722369,"f":131},"D":{"i":1479,"f":195},"cn0":211,"lock":15,"flags":15,"sid":{"sat":29,"code":0}},{"P":1026185124,"L":{"i":84041153,"f":32},"D":{"i":-890,"f":24},"cn0":204,"lock":15,"flags":15,"sid":{"sat":25,"code":1}},{"P":1086348468,"L":{"i":88968350,"f":185},"D":{"i":-2320,"f":167},"cn0":188,"lock":15,"flags":15,"sid":{"sat":12,"code":1}},{"P":1225004130,"L":{"i":100323757,"f":145},"D":{"i":-321,"f":237},"cn0":148,"lock":15,"flags":15,"sid":{"sat":31,"code":1}},{"P":1053488145,"L":{"i":86277172,"f":230},"D":{"i":1152,"f":43},"cn0":194,"lock":15,"flags":15,"sid":{"sat":29,"code":1}},{"P":1052030587,"L":{"i":86157834,"f":87},"D":{"i":-157,"f":235},"cn0":193,"lock":15,"flags":15,"sid":{"sat":5,"code":1}},{"P":1056444158,"L":{"i":112906381,"f":163},"D":{"i":1144,"f":226},"cn0":212,"lock":15,"flags":15,"sid":{"sat":11,"code":3}},{"P":1155930549,"L":{"i":123452121,"f":27},"D":{"i":-4409,"f":52},"cn0":175,"lock":15,"flags":15,"sid":{"sat":9,"code":3}}]} +{"crc":40103,"length":249,"msg_type":74,"payload":"CGMvEAAAAAAyCEH1+jE9EXaLBuJC+6GuDw8UA/vlAEDqu9cGEIUIRc4PDwUDVQBxPn4uqAa6DfQyzg8PCgMFWwxDkkkuB6rI+hS0Dw8EA8Z4JD/b/MEGelMGJMwPDxUDOhrmRJYfuQUTnPKmrg8PCQQ9/DE9FSMXBTJP/HXNDw8UBDcQ+D6U9zsF8noDpMcPDwsEK+cAQLl1UgXZoAY5ww8PBQSmWwxDaMeVBU3w+62sDw8EBLAYm0VPxj8H7yD63MgPDyMM8DP/STLYtAdwP/RUqw8PGgzjtA1Mf63rB57GCBqgDw8iDNSapUfhMHYHxt36DrwPDxgM","preamble":85,"sender":22963,"header":{"t":{"tow":271541000,"ns_residual":0,"wn":2098},"n_obs":65},"obs":[{"P":1026685685,"L":{"i":109803025,"f":226},"D":{"i":-1214,"f":161},"cn0":174,"lock":15,"flags":15,"sid":{"sat":20,"code":3}},{"P":1073800699,"L":{"i":114801642,"f":16},"D":{"i":2181,"f":69},"cn0":206,"lock":15,"flags":15,"sid":{"sat":5,"code":3}},{"P":1047593045,"L":{"i":111685246,"f":186},"D":{"i":-3059,"f":50},"cn0":206,"lock":15,"flags":15,"sid":{"sat":10,"code":3}},{"P":1124883205,"L":{"i":120474002,"f":170},"D":{"i":-1336,"f":20},"cn0":180,"lock":15,"flags":15,"sid":{"sat":4,"code":3}},{"P":1059354822,"L":{"i":113376475,"f":122},"D":{"i":1619,"f":36},"cn0":204,"lock":15,"flags":15,"sid":{"sat":21,"code":3}},{"P":1155930682,"L":{"i":96018326,"f":19},"D":{"i":-3428,"f":166},"cn0":174,"lock":15,"flags":15,"sid":{"sat":9,"code":4}},{"P":1026686013,"L":{"i":85402389,"f":50},"D":{"i":-945,"f":117},"cn0":205,"lock":15,"flags":15,"sid":{"sat":20,"code":4}},{"P":1056444471,"L":{"i":87816084,"f":242},"D":{"i":890,"f":164},"cn0":199,"lock":15,"flags":15,"sid":{"sat":11,"code":4}},{"P":1073801003,"L":{"i":89290169,"f":217},"D":{"i":1696,"f":57},"cn0":195,"lock":15,"flags":15,"sid":{"sat":5,"code":4}},{"P":1124883366,"L":{"i":93701992,"f":77},"D":{"i":-1040,"f":173},"cn0":172,"lock":15,"flags":15,"sid":{"sat":4,"code":4}},{"P":1167792304,"L":{"i":121620047,"f":239},"D":{"i":-1504,"f":220},"cn0":200,"lock":15,"flags":15,"sid":{"sat":35,"code":12}},{"P":1241461744,"L":{"i":129292338,"f":112},"D":{"i":-3009,"f":84},"cn0":171,"lock":15,"flags":15,"sid":{"sat":26,"code":12}},{"P":1275966691,"L":{"i":132885887,"f":158},"D":{"i":2246,"f":26},"cn0":160,"lock":15,"flags":15,"sid":{"sat":34,"code":12}},{"P":1202035412,"L":{"i":125186273,"f":198},"D":{"i":-1315,"f":14},"cn0":188,"lock":15,"flags":15,"sid":{"sat":24,"code":12}}]} +{"crc":22695,"length":249,"msg_type":74,"payload":"CGMvEAAAAAAyCEJxQQ5NTmUGCOghBdafDw8ZDGGWSEVsLjcH20kGfrgPDwwMF2dER2MRbAd90v4UuQ8PEwxbqVVHg91tBxJLCVfBDw8WDByWSEWgW5QFvdwEGdEPDwwNCAkLQgPx8AZG+vutwg8PDA5i0BxLTvbkB2IzBMO/Dw8ZDo8XHUdBXnkHABQE6bwPDwsOOXMuQ8yRDwf9JflQyw8PGA45JFRRMjaMCKea83KeDw8fDnG8/lEuJJ4I6qT3XpgPDyEOT9AcS4aHDAbxOQOEyQ8PGRRodS5DkwVpBXq/+ivXDw8YFM8WHUdDFroFiyADDMIPDwsU","preamble":85,"sender":22963,"header":{"t":{"tow":271541000,"ns_residual":0,"wn":2098},"n_obs":66},"obs":[{"P":1292779889,"L":{"i":134636878,"f":232},"D":{"i":1313,"f":214},"cn0":159,"lock":15,"flags":15,"sid":{"sat":25,"code":12}},{"P":1162384993,"L":{"i":121056876,"f":219},"D":{"i":1609,"f":126},"cn0":184,"lock":15,"flags":15,"sid":{"sat":12,"code":12}},{"P":1195665175,"L":{"i":124522851,"f":125},"D":{"i":-302,"f":20},"cn0":185,"lock":15,"flags":15,"sid":{"sat":19,"code":12}},{"P":1196796251,"L":{"i":124640643,"f":18},"D":{"i":2379,"f":87},"cn0":193,"lock":15,"flags":15,"sid":{"sat":22,"code":12}},{"P":1162384924,"L":{"i":93608864,"f":189},"D":{"i":1244,"f":25},"cn0":209,"lock":15,"flags":15,"sid":{"sat":12,"code":13}},{"P":1108019464,"L":{"i":116453635,"f":70},"D":{"i":-1030,"f":173},"cn0":194,"lock":15,"flags":15,"sid":{"sat":12,"code":14}},{"P":1260179554,"L":{"i":132445774,"f":98},"D":{"i":1075,"f":195},"cn0":191,"lock":15,"flags":15,"sid":{"sat":25,"code":14}},{"P":1193088911,"L":{"i":125394497,"f":0},"D":{"i":1044,"f":233},"cn0":188,"lock":15,"flags":15,"sid":{"sat":11,"code":14}},{"P":1127117625,"L":{"i":118460876,"f":253},"D":{"i":-1755,"f":80},"cn0":203,"lock":15,"flags":15,"sid":{"sat":24,"code":14}},{"P":1364468793,"L":{"i":143406642,"f":167},"D":{"i":-3174,"f":114},"cn0":158,"lock":15,"flags":15,"sid":{"sat":31,"code":14}},{"P":1375648881,"L":{"i":144581678,"f":234},"D":{"i":-2140,"f":94},"cn0":152,"lock":15,"flags":15,"sid":{"sat":33,"code":14}},{"P":1260179535,"L":{"i":101484422,"f":241},"D":{"i":825,"f":132},"cn0":201,"lock":15,"flags":15,"sid":{"sat":25,"code":20}},{"P":1127118184,"L":{"i":90768787,"f":122},"D":{"i":-1345,"f":43},"cn0":215,"lock":15,"flags":15,"sid":{"sat":24,"code":20}},{"P":1193088719,"L":{"i":96081475,"f":139},"D":{"i":800,"f":12},"cn0":194,"lock":15,"flags":15,"sid":{"sat":11,"code":20}}]} +{"crc":35994,"length":62,"msg_type":74,"payload":"CGMvEAAAAAAyCEOqJFRRra6MBmaC9qiuDw8fFG0IC0KSjVEFJuv8Xc4PDwwUc7z+UcprmgbTmPkpqg8PIRQ=","preamble":85,"sender":22963,"header":{"t":{"tow":271541000,"ns_residual":0,"wn":2098},"n_obs":67},"obs":[{"P":1364468906,"L":{"i":109883053,"f":102},"D":{"i":-2430,"f":168},"cn0":174,"lock":15,"flags":15,"sid":{"sat":31,"code":20}},{"P":1108019309,"L":{"i":89230738,"f":38},"D":{"i":-789,"f":93},"cn0":206,"lock":15,"flags":15,"sid":{"sat":12,"code":20}},{"P":1375648883,"L":{"i":110783434,"f":211},"D":{"i":-1640,"f":41},"cn0":170,"lock":15,"flags":15,"sid":{"sat":33,"code":20}}]} +{"crc":49809,"length":9,"msg_type":117,"payload":"/wAAAAAAAAAA","preamble":85,"sender":22963,"mask":255,"l1ca_bias":0,"l1p_bias":0,"l2ca_bias":0,"l2p_bias":0} +{"crc":58413,"length":11,"msg_type":258,"payload":"MggIYy8QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271541000,"ns_residual":0,"flags":1} +{"crc":25688,"length":16,"msg_type":259,"payload":"EQhjLxDkBwMZAxkW/smaOw==","preamble":85,"sender":22963,"flags":17,"tow":271541000,"year":2020,"month":3,"day":25,"hours":3,"minutes":25,"seconds":22,"ns":999999998} +{"crc":10329,"length":34,"msg_type":522,"payload":"CGMvEHT0+PRl6kJA7+cRIFaSXsDUeTuk7BoywAECWwQPBg==","preamble":85,"sender":22963,"tow":271541000,"lat":37.83123647838593,"lon":-122.28650666950828,"height":-18.105173363228303,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":17953,"length":22,"msg_type":526,"payload":"CGMvEAYAAAAIAAAAAQAAAPEAywIPAg==","preamble":85,"sender":22963,"tow":271541000,"n":6,"e":8,"d":1,"h_accuracy":241,"v_accuracy":715,"n_sats":15,"flags":2} +{"crc":64620,"length":15,"msg_type":520,"payload":"CGMvEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271541000,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":53148,"length":22,"msg_type":524,"payload":"CGMvEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271541000,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":39307,"length":6,"msg_type":528,"payload":"CGMvEP//","preamble":85,"sender":22963,"tow":271541000,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":40942,"length":4,"msg_type":65535,"payload":"AAUCgA==","preamble":85,"sender":22963,"flags":2147616000} +{"crc":2168,"length":24,"msg_type":72,"payload":"UO0a3iqORMHK1UJhIkRQwc9nFIPvrk1B","preamble":85,"sender":22963,"x":-2694229.735196747,"y":-4264073.519704292,"z":3890655.0240602265} +{"crc":32999,"length":11,"msg_type":258,"payload":"MghsYy8QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271541100,"ns_residual":0,"flags":1} +{"crc":13944,"length":16,"msg_type":259,"payload":"EWxjLxDkBwMZAxkX/uD1BQ==","preamble":85,"sender":22963,"flags":17,"tow":271541100,"year":2020,"month":3,"day":25,"hours":3,"minutes":25,"seconds":23,"ns":99999998} +{"crc":7943,"length":34,"msg_type":522,"payload":"bGMvEJgVWfVl6kJA50cpIFaSXsB1LUaCuxoywAECWwQPBg==","preamble":85,"sender":22963,"tow":271541100,"lat":37.8312365231497,"lon":-122.28650669127784,"height":-18.104423658497996,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":17050,"length":22,"msg_type":526,"payload":"bGMvEPf///8IAAAAHgAAAPEAywIPAg==","preamble":85,"sender":22963,"tow":271541100,"n":-9,"e":8,"d":30,"h_accuracy":241,"v_accuracy":715,"n_sats":15,"flags":2} +{"crc":53443,"length":15,"msg_type":520,"payload":"bGMvEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271541100,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":55082,"length":22,"msg_type":524,"payload":"bGMvEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271541100,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":49202,"length":6,"msg_type":528,"payload":"bGMvEP//","preamble":85,"sender":22963,"tow":271541100,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":32327,"length":11,"msg_type":258,"payload":"MgjQYy8QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271541200,"ns_residual":0,"flags":1} +{"crc":32071,"length":16,"msg_type":259,"payload":"EdBjLxDkBwMZAxkX/sHrCw==","preamble":85,"sender":22963,"flags":17,"tow":271541200,"year":2020,"month":3,"day":25,"hours":3,"minutes":25,"seconds":23,"ns":199999998} +{"crc":55873,"length":34,"msg_type":522,"payload":"0GMvEDQs0/Vl6kJANdRKIFaSXsCKqNYuZRkywAECWwQPBg==","preamble":85,"sender":22963,"tow":271541200,"lat":37.8312365800015,"lon":-122.2865067225219,"height":-18.099200179488015,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":12634,"length":22,"msg_type":526,"payload":"0GMvEAMAAAD2////BQAAAPEAywIPAg==","preamble":85,"sender":22963,"tow":271541200,"n":3,"e":-10,"d":5,"h_accuracy":241,"v_accuracy":715,"n_sats":15,"flags":2} +{"crc":60344,"length":15,"msg_type":520,"payload":"0GMvEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271541200,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":17334,"length":22,"msg_type":524,"payload":"0GMvEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271541200,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":12413,"length":6,"msg_type":528,"payload":"0GMvEP//","preamble":85,"sender":22963,"tow":271541200,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":25127,"length":11,"msg_type":258,"payload":"Mgg0ZC8QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271541300,"ns_residual":0,"flags":1} +{"crc":60279,"length":16,"msg_type":259,"payload":"ETRkLxDkBwMZAxkX/qLhEQ==","preamble":85,"sender":22963,"flags":17,"tow":271541300,"year":2020,"month":3,"day":25,"hours":3,"minutes":25,"seconds":23,"ns":299999998} +{"crc":12054,"length":34,"msg_type":522,"payload":"NGQvEOPkUfZl6kJAyGFdIFaSXsB/mp+vPhYywAECWwQPBg==","preamble":85,"sender":22963,"tow":271541300,"lat":37.83123663901076,"lon":-122.28650673980076,"height":-18.086894012895296,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":42456,"length":22,"msg_type":526,"payload":"NGQvEAkAAAD9////2f////EAywIPAg==","preamble":85,"sender":22963,"tow":271541300,"n":9,"e":-3,"d":-39,"h_accuracy":241,"v_accuracy":715,"n_sats":15,"flags":2} +{"crc":58115,"length":15,"msg_type":520,"payload":"NGQvEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271541300,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":59413,"length":22,"msg_type":524,"payload":"NGQvEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271541300,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":55856,"length":6,"msg_type":528,"payload":"NGQvEP//","preamble":85,"sender":22963,"tow":271541300,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":38,"length":237,"msg_type":97,"payload":"BQDTFQCyAgC4HwCkAAAAAAAAGQDXDADNHQDSEgDMAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwLLGQHNDAG9HwGVEgHFHQHCAAAABQHBAAAAAAAAAAAAAAAAZAPUYgOvZgOuZQPOXQPOAAAAagO1aAPMYgSuZgTNXQRDZATHZQTCaAS8AAAAagSsIwzIGgyrIgyhGAy8GQyfDAy4Ewy5FgzBAAAADA3TAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADA7CAAAAGQ6/Cw68GA7LAAAAHw6fIQ6YGRTJGBTXCxTCHxSuDBTOAAAAIRSqAAAA","preamble":85,"sender":22963,"states":[{"mesid":{"sat":5,"code":0},"cn0":211},{"mesid":{"sat":21,"code":0},"cn0":178},{"mesid":{"sat":2,"code":0},"cn0":184},{"mesid":{"sat":31,"code":0},"cn0":164},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":25,"code":0},"cn0":215},{"mesid":{"sat":12,"code":0},"cn0":205},{"mesid":{"sat":29,"code":0},"cn0":210},{"mesid":{"sat":18,"code":0},"cn0":204},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":131,"code":2},"cn0":203},{"mesid":{"sat":25,"code":1},"cn0":205},{"mesid":{"sat":12,"code":1},"cn0":189},{"mesid":{"sat":31,"code":1},"cn0":149},{"mesid":{"sat":18,"code":1},"cn0":197},{"mesid":{"sat":29,"code":1},"cn0":194},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":5,"code":1},"cn0":193},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":100,"code":3},"cn0":212},{"mesid":{"sat":98,"code":3},"cn0":175},{"mesid":{"sat":102,"code":3},"cn0":174},{"mesid":{"sat":101,"code":3},"cn0":206},{"mesid":{"sat":93,"code":3},"cn0":206},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":106,"code":3},"cn0":181},{"mesid":{"sat":104,"code":3},"cn0":204},{"mesid":{"sat":98,"code":4},"cn0":174},{"mesid":{"sat":102,"code":4},"cn0":205},{"mesid":{"sat":93,"code":4},"cn0":67},{"mesid":{"sat":100,"code":4},"cn0":199},{"mesid":{"sat":101,"code":4},"cn0":194},{"mesid":{"sat":104,"code":4},"cn0":188},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":106,"code":4},"cn0":172},{"mesid":{"sat":35,"code":12},"cn0":200},{"mesid":{"sat":26,"code":12},"cn0":171},{"mesid":{"sat":34,"code":12},"cn0":161},{"mesid":{"sat":24,"code":12},"cn0":188},{"mesid":{"sat":25,"code":12},"cn0":159},{"mesid":{"sat":12,"code":12},"cn0":184},{"mesid":{"sat":19,"code":12},"cn0":185},{"mesid":{"sat":22,"code":12},"cn0":193},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":12,"code":13},"cn0":211},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":12,"code":14},"cn0":194},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":25,"code":14},"cn0":191},{"mesid":{"sat":11,"code":14},"cn0":188},{"mesid":{"sat":24,"code":14},"cn0":203},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":31,"code":14},"cn0":159},{"mesid":{"sat":33,"code":14},"cn0":152},{"mesid":{"sat":25,"code":20},"cn0":201},{"mesid":{"sat":24,"code":20},"cn0":215},{"mesid":{"sat":11,"code":20},"cn0":194},{"mesid":{"sat":31,"code":20},"cn0":174},{"mesid":{"sat":12,"code":20},"cn0":206},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":33,"code":20},"cn0":170},{"mesid":{"sat":0,"code":0},"cn0":0}]} +{"crc":65052,"length":51,"msg_type":1025,"payload":"BkdMTyBMMk9GIE1FIDEgWysxMjc2bXNdIGxvdyBDTjAgdG9vIGxvbmcsIGRyb3BwaW5n","preamble":85,"sender":22963,"level":6,"text":"GLO L2OF ME 1 [+1276ms] low CN0 too long, dropping"} +{"crc":53113,"length":11,"msg_type":258,"payload":"MgiYZC8QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271541400,"ns_residual":0,"flags":1} +{"crc":57477,"length":16,"msg_type":259,"payload":"EZhkLxDkBwMZAxkX/oPXFw==","preamble":85,"sender":22963,"flags":17,"tow":271541400,"year":2020,"month":3,"day":25,"hours":3,"minutes":25,"seconds":23,"ns":399999998} +{"crc":63209,"length":34,"msg_type":522,"payload":"mGQvEPcOs/Zl6kJA58lyIFaSXsDhD7V5ChQywAECWwQPBg==","preamble":85,"sender":22963,"tow":271541400,"lat":37.831236684256446,"lon":-122.28650675973732,"height":-18.07828484220943,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":57489,"length":22,"msg_type":526,"payload":"mGQvEP/////8////+f////EAywIPAg==","preamble":85,"sender":22963,"tow":271541400,"n":-1,"e":-4,"d":-7,"h_accuracy":241,"v_accuracy":715,"n_sats":15,"flags":2} +{"crc":38642,"length":15,"msg_type":520,"payload":"mGQvEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271541400,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":49615,"length":22,"msg_type":524,"payload":"mGQvEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271541400,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":12539,"length":6,"msg_type":528,"payload":"mGQvEP//","preamble":85,"sender":22963,"tow":271541400,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":49809,"length":9,"msg_type":117,"payload":"/wAAAAAAAAAA","preamble":85,"sender":22963,"mask":255,"l1ca_bias":0,"l1p_bias":0,"l2ca_bias":0,"l2p_bias":0} +{"crc":43955,"length":11,"msg_type":258,"payload":"Mgj8ZC8QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271541500,"ns_residual":0,"flags":1} +{"crc":42105,"length":16,"msg_type":259,"payload":"EfxkLxDkBwMZAxkX/mTNHQ==","preamble":85,"sender":22963,"flags":17,"tow":271541500,"year":2020,"month":3,"day":25,"hours":3,"minutes":25,"seconds":23,"ns":499999998} +{"crc":4004,"length":34,"msg_type":522,"payload":"/GQvEJwk/fZl6kJAVyqIIFaSXsDqUvYabhMywAECWwQPBg==","preamble":85,"sender":22963,"tow":271541500,"lat":37.83123671875475,"lon":-122.28650677964593,"height":-18.075898823869387,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":36638,"length":22,"msg_type":526,"payload":"/GQvEP7///8IAAAANQAAAPEAywIPAg==","preamble":85,"sender":22963,"tow":271541500,"n":-2,"e":8,"d":53,"h_accuracy":241,"v_accuracy":715,"n_sats":15,"flags":2} +{"crc":47709,"length":15,"msg_type":520,"payload":"/GQvEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271541500,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":55673,"length":22,"msg_type":524,"payload":"/GQvEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271541500,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":26946,"length":6,"msg_type":528,"payload":"/GQvEP//","preamble":85,"sender":22963,"tow":271541500,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":46396,"length":11,"msg_type":258,"payload":"MghgZS8QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271541600,"ns_residual":0,"flags":1} +{"crc":15379,"length":16,"msg_type":259,"payload":"EWBlLxDkBwMZAxkX/kXDIw==","preamble":85,"sender":22963,"flags":17,"tow":271541600,"year":2020,"month":3,"day":25,"hours":3,"minutes":25,"seconds":23,"ns":599999998} +{"crc":2512,"length":34,"msg_type":522,"payload":"YGUvEKaSUPdl6kJArRGjIFaSXsDXY0r0PRAywAECWwQPBg==","preamble":85,"sender":22963,"tow":271541600,"lat":37.8312367576048,"lon":-122.28650680470192,"height":-18.06344534698641,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":23250,"length":22,"msg_type":526,"payload":"YGUvEAUAAAD6////5/////EAywIPAg==","preamble":85,"sender":22963,"tow":271541600,"n":5,"e":-6,"d":-25,"h_accuracy":241,"v_accuracy":715,"n_sats":15,"flags":2} +{"crc":26451,"length":15,"msg_type":520,"payload":"YGUvEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271541600,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":62142,"length":22,"msg_type":524,"payload":"YGUvEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271541600,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":1620,"length":6,"msg_type":528,"payload":"YGUvEP//","preamble":85,"sender":22963,"tow":271541600,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":22659,"length":34,"msg_type":30583,"payload":"gwLiZC8QHEkwCeN4IEN0W69X52yOl8LaGhAIfNLP9QpyMA==","preamble":85,"sender":22963,"sid":{"sat":131,"code":2},"tow":271541474,"message_type":28,"data":[73,48,9,227,120,32,67,116,91,175,87,231,108,142,151,194,218,26,16,8,124,210,207,245,10,114,48]} +{"crc":12701,"length":11,"msg_type":258,"payload":"MgjEZS8QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271541700,"ns_residual":0,"flags":1} +{"crc":59972,"length":16,"msg_type":259,"payload":"EcRlLxDkBwMZAxkX/ia5KQ==","preamble":85,"sender":22963,"flags":17,"tow":271541700,"year":2020,"month":3,"day":25,"hours":3,"minutes":25,"seconds":23,"ns":699999998} +{"crc":62711,"length":34,"msg_type":522,"payload":"xGUvED+Xl/dl6kJAM3OzIFaSXsC1JtlhQw0ywAECWwQPBg==","preamble":85,"sender":22963,"tow":271541700,"lat":37.83123679067511,"lon":-122.28650681995786,"height":-18.051809421077184,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":30334,"length":22,"msg_type":526,"payload":"xGUvEAIAAAAAAAAA/f////EAywIPAg==","preamble":85,"sender":22963,"tow":271541700,"n":2,"e":0,"d":-3,"h_accuracy":241,"v_accuracy":715,"n_sats":15,"flags":2} +{"crc":13799,"length":15,"msg_type":520,"payload":"xGUvEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271541700,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":34247,"length":22,"msg_type":524,"payload":"xGUvEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271541700,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":57821,"length":6,"msg_type":528,"payload":"xGUvEP//","preamble":85,"sender":22963,"tow":271541700,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":2927,"length":11,"msg_type":258,"payload":"MggoZi8QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271541800,"ns_residual":0,"flags":1} +{"crc":16634,"length":16,"msg_type":259,"payload":"EShmLxDkBwMZAxkX/gevLw==","preamble":85,"sender":22963,"flags":17,"tow":271541800,"year":2020,"month":3,"day":25,"hours":3,"minutes":25,"seconds":23,"ns":799999998} +{"crc":21063,"length":34,"msg_type":522,"payload":"KGYvEEfg2fdl6kJAGe29IFaSXsCmXC6fGQoywAECWwQPBg==","preamble":85,"sender":22963,"tow":271541800,"lat":37.8312368215416,"lon":-122.28650682971455,"height":-18.039453457659555,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":43350,"length":22,"msg_type":526,"payload":"KGYvEP3////5////CAAAAPEAywIPAg==","preamble":85,"sender":22963,"tow":271541800,"n":-3,"e":-7,"d":8,"h_accuracy":241,"v_accuracy":715,"n_sats":15,"flags":2} +{"crc":59324,"length":15,"msg_type":520,"payload":"KGYvEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271541800,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":6012,"length":22,"msg_type":524,"payload":"KGYvEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271541800,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":36820,"length":6,"msg_type":528,"payload":"KGYvEP//","preamble":85,"sender":22963,"tow":271541800,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":53710,"length":237,"msg_type":97,"payload":"BQDUFQCzAgC5HwClAAAAAAAAGQDYDADOHQDSEgDNAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwLKGQHMDAG9HwGVEgHFHQHCAAAABQHBAAAAAAAAAAAAAAAACwPUCQOvFAOtBQPPCgPOAAAABAO1FQPMCQStFATNAAAACwTHBQTCAAS8AAAABASsIwzJGgysIgyhGAy8GQyfDAy4Ewy5FgzBAAAADA3UAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADA7CAAAAGQ6/Cw69GA7LAAAAHw6fIQ6WGRTJGBTXCxTCHxSuDBTOAAAAIRSpAAAA","preamble":85,"sender":22963,"states":[{"mesid":{"sat":5,"code":0},"cn0":212},{"mesid":{"sat":21,"code":0},"cn0":179},{"mesid":{"sat":2,"code":0},"cn0":185},{"mesid":{"sat":31,"code":0},"cn0":165},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":25,"code":0},"cn0":216},{"mesid":{"sat":12,"code":0},"cn0":206},{"mesid":{"sat":29,"code":0},"cn0":210},{"mesid":{"sat":18,"code":0},"cn0":205},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":131,"code":2},"cn0":202},{"mesid":{"sat":25,"code":1},"cn0":204},{"mesid":{"sat":12,"code":1},"cn0":189},{"mesid":{"sat":31,"code":1},"cn0":149},{"mesid":{"sat":18,"code":1},"cn0":197},{"mesid":{"sat":29,"code":1},"cn0":194},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":5,"code":1},"cn0":193},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":11,"code":3},"cn0":212},{"mesid":{"sat":9,"code":3},"cn0":175},{"mesid":{"sat":20,"code":3},"cn0":173},{"mesid":{"sat":5,"code":3},"cn0":207},{"mesid":{"sat":10,"code":3},"cn0":206},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":4,"code":3},"cn0":181},{"mesid":{"sat":21,"code":3},"cn0":204},{"mesid":{"sat":9,"code":4},"cn0":173},{"mesid":{"sat":20,"code":4},"cn0":205},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":11,"code":4},"cn0":199},{"mesid":{"sat":5,"code":4},"cn0":194},{"mesid":{"sat":0,"code":4},"cn0":188},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":4,"code":4},"cn0":172},{"mesid":{"sat":35,"code":12},"cn0":201},{"mesid":{"sat":26,"code":12},"cn0":172},{"mesid":{"sat":34,"code":12},"cn0":161},{"mesid":{"sat":24,"code":12},"cn0":188},{"mesid":{"sat":25,"code":12},"cn0":159},{"mesid":{"sat":12,"code":12},"cn0":184},{"mesid":{"sat":19,"code":12},"cn0":185},{"mesid":{"sat":22,"code":12},"cn0":193},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":12,"code":13},"cn0":212},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":12,"code":14},"cn0":194},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":25,"code":14},"cn0":191},{"mesid":{"sat":11,"code":14},"cn0":189},{"mesid":{"sat":24,"code":14},"cn0":203},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":31,"code":14},"cn0":159},{"mesid":{"sat":33,"code":14},"cn0":150},{"mesid":{"sat":25,"code":20},"cn0":201},{"mesid":{"sat":24,"code":20},"cn0":215},{"mesid":{"sat":11,"code":20},"cn0":194},{"mesid":{"sat":31,"code":20},"cn0":174},{"mesid":{"sat":12,"code":20},"cn0":206},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":33,"code":20},"cn0":169},{"mesid":{"sat":0,"code":0},"cn0":0}]} +{"crc":34187,"length":128,"msg_type":151,"payload":"AgAaHQUAKzUMAFEtFQB9GRkAbUYaAKEBHQChNx8AlQ4EAxUWBQMyIQkDXw4KA3EpCwOYJQwDqgMTAyIHFAMMMRUDlSUMDJQpEwwjIBQMDwIWDEMkGAyCIxkMnQ4aDGcVIgyOESMMIi0LDosyDA4PPBgObDYZDpcpHw5VESEOIA8=","preamble":85,"sender":22963,"azel":[{"sid":{"sat":2,"code":0},"az":26,"el":29},{"sid":{"sat":5,"code":0},"az":43,"el":53},{"sid":{"sat":12,"code":0},"az":81,"el":45},{"sid":{"sat":21,"code":0},"az":125,"el":25},{"sid":{"sat":25,"code":0},"az":109,"el":70},{"sid":{"sat":26,"code":0},"az":161,"el":1},{"sid":{"sat":29,"code":0},"az":161,"el":55},{"sid":{"sat":31,"code":0},"az":149,"el":14},{"sid":{"sat":4,"code":3},"az":21,"el":22},{"sid":{"sat":5,"code":3},"az":50,"el":33},{"sid":{"sat":9,"code":3},"az":95,"el":14},{"sid":{"sat":10,"code":3},"az":113,"el":41},{"sid":{"sat":11,"code":3},"az":152,"el":37},{"sid":{"sat":12,"code":3},"az":170,"el":3},{"sid":{"sat":19,"code":3},"az":34,"el":7},{"sid":{"sat":20,"code":3},"az":12,"el":49},{"sid":{"sat":21,"code":3},"az":149,"el":37},{"sid":{"sat":12,"code":12},"az":148,"el":41},{"sid":{"sat":19,"code":12},"az":35,"el":32},{"sid":{"sat":20,"code":12},"az":15,"el":2},{"sid":{"sat":22,"code":12},"az":67,"el":36},{"sid":{"sat":24,"code":12},"az":130,"el":35},{"sid":{"sat":25,"code":12},"az":157,"el":14},{"sid":{"sat":26,"code":12},"az":103,"el":21},{"sid":{"sat":34,"code":12},"az":142,"el":17},{"sid":{"sat":35,"code":12},"az":34,"el":45},{"sid":{"sat":11,"code":14},"az":139,"el":50},{"sid":{"sat":12,"code":14},"az":15,"el":60},{"sid":{"sat":24,"code":14},"az":108,"el":54},{"sid":{"sat":25,"code":14},"az":151,"el":41},{"sid":{"sat":31,"code":14},"az":85,"el":17},{"sid":{"sat":33,"code":14},"az":32,"el":15}]} +{"crc":36814,"length":11,"msg_type":258,"payload":"MgiMZi8QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271541900,"ns_residual":0,"flags":1} +{"crc":61903,"length":16,"msg_type":259,"payload":"EYxmLxDkBwMZAxkX/uikNQ==","preamble":85,"sender":22963,"flags":17,"tow":271541900,"year":2020,"month":3,"day":25,"hours":3,"minutes":25,"seconds":23,"ns":899999998} +{"crc":11529,"length":34,"msg_type":522,"payload":"jGYvEC9zFPhl6kJAHTOeIFaSXsBWLcYCgwcywAECWwQPBg==","preamble":85,"sender":22963,"tow":271541900,"lat":37.83123684881718,"lon":-122.28650680016695,"height":-18.029342816718177,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":54702,"length":22,"msg_type":526,"payload":"jGYvEAEAAAAUAAAABgAAAPEAywIPAg==","preamble":85,"sender":22963,"tow":271541900,"n":1,"e":20,"d":6,"h_accuracy":241,"v_accuracy":715,"n_sats":15,"flags":2} +{"crc":46344,"length":15,"msg_type":520,"payload":"jGYvEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271541900,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":24581,"length":22,"msg_type":524,"payload":"jGYvEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271541900,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":26717,"length":6,"msg_type":528,"payload":"jGYvEP//","preamble":85,"sender":22963,"tow":271541900,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":1160,"length":249,"msg_type":74,"payload":"8GYvEAAAAAAyCEBGvrQ+pyeXBmo3/xXTDw8FADtRDkXwAEIHm3YI77IPDxUAqEj8RcgDWwdGUPbWuQ8PAgAxJARJq46sB6Fm/qGlDw8fAOWBKj1puG0GEoj7k9gPDxkAgsvAQKo7zgZDXvR3zg8PDABtvco+eXeZBtLFBf3TDw8dABqCKj07YQIFJ4T8vMwPDxkBU8vAQK6VTQVF8PZPvQ8PDAGmIwRJ69L6BeLC/qKWDw8fARi9yj6zdyQF4n8EzsIPDx0B5720PqaqIgVkY/87wQ8PBQEu5fc+Fcy6Bgh2BPnUDw8LA+S65kQRzFsHKcfuLa8PDwkD","preamble":85,"sender":22963,"header":{"t":{"tow":271542000,"ns_residual":0,"wn":2098},"n_obs":64},"obs":[{"P":1052032582,"L":{"i":110569383,"f":106},"D":{"i":-201,"f":21},"cn0":211,"lock":15,"flags":15,"sid":{"sat":5,"code":0}},{"P":1158566203,"L":{"i":121766128,"f":155},"D":{"i":2166,"f":239},"cn0":178,"lock":15,"flags":15,"sid":{"sat":21,"code":0}},{"P":1174161576,"L":{"i":123405256,"f":70},"D":{"i":-2480,"f":214},"cn0":185,"lock":15,"flags":15,"sid":{"sat":2,"code":0}},{"P":1225008177,"L":{"i":128749227,"f":161},"D":{"i":-410,"f":161},"cn0":165,"lock":15,"flags":15,"sid":{"sat":31,"code":0}},{"P":1026195941,"L":{"i":107853929,"f":18},"D":{"i":-1144,"f":147},"cn0":216,"lock":15,"flags":15,"sid":{"sat":25,"code":0}},{"P":1086376834,"L":{"i":114178986,"f":67},"D":{"i":-2978,"f":119},"cn0":206,"lock":15,"flags":15,"sid":{"sat":12,"code":0}},{"P":1053474157,"L":{"i":110720889,"f":210},"D":{"i":1477,"f":253},"cn0":211,"lock":15,"flags":15,"sid":{"sat":29,"code":0}},{"P":1026195994,"L":{"i":84042043,"f":39},"D":{"i":-892,"f":188},"cn0":204,"lock":15,"flags":15,"sid":{"sat":25,"code":1}},{"P":1086376787,"L":{"i":88970670,"f":69},"D":{"i":-2320,"f":79},"cn0":189,"lock":15,"flags":15,"sid":{"sat":12,"code":1}},{"P":1225008038,"L":{"i":100324075,"f":226},"D":{"i":-318,"f":162},"cn0":150,"lock":15,"flags":15,"sid":{"sat":31,"code":1}},{"P":1053474072,"L":{"i":86276019,"f":226},"D":{"i":1151,"f":206},"cn0":194,"lock":15,"flags":15,"sid":{"sat":29,"code":1}},{"P":1052032487,"L":{"i":86157990,"f":100},"D":{"i":-157,"f":59},"cn0":193,"lock":15,"flags":15,"sid":{"sat":5,"code":1}},{"P":1056433454,"L":{"i":112905237,"f":8},"D":{"i":1142,"f":249},"cn0":212,"lock":15,"flags":15,"sid":{"sat":11,"code":3}},{"P":1155971812,"L":{"i":123456529,"f":41},"D":{"i":-4409,"f":45},"cn0":175,"lock":15,"flags":15,"sid":{"sat":9,"code":3}}]} +{"crc":48163,"length":249,"msg_type":74,"payload":"8GYvEAAAAAAyCEFNJzI9z3qLBqpB+z6uDw8UA0eWAEBks9cGzIMI5s8PDwUDUHBxPnE6qAYeC/Tbzg8PCgOqiwxDyk4uB9nF+t20Dw8EA6Y9JD+I9sEG0VEGYswPDxUDN7vmRPosuQWMmvKBrQ8PCQSLKDI9xSYXBT9O/NbNDw8UBE3m9z4a9DsFsnkDFscPDwsEgpcAQBlvUgVQoAanwg8PBQRwjAxDd8uVBY3w+zCsDw8EBAxRm0UtzD8HqCD6v8kPDyMMzqT/SfPjtAdWPfRrqw8PGgyRYA1MtqTrB/jGCM6gDw8iDCDMpUcDNnYHU936s7wPDxgM","preamble":85,"sender":22963,"header":{"t":{"tow":271542000,"ns_residual":0,"wn":2098},"n_obs":65},"obs":[{"P":1026697037,"L":{"i":109804239,"f":170},"D":{"i":-1215,"f":62},"cn0":174,"lock":15,"flags":15,"sid":{"sat":20,"code":3}},{"P":1073780295,"L":{"i":114799460,"f":204},"D":{"i":2179,"f":230},"cn0":207,"lock":15,"flags":15,"sid":{"sat":5,"code":3}},{"P":1047621712,"L":{"i":111688305,"f":30},"D":{"i":-3061,"f":219},"cn0":206,"lock":15,"flags":15,"sid":{"sat":10,"code":3}},{"P":1124895658,"L":{"i":120475338,"f":217},"D":{"i":-1339,"f":221},"cn0":180,"lock":15,"flags":15,"sid":{"sat":4,"code":3}},{"P":1059339686,"L":{"i":113374856,"f":209},"D":{"i":1617,"f":98},"cn0":204,"lock":15,"flags":15,"sid":{"sat":21,"code":3}},{"P":1155971895,"L":{"i":96021754,"f":140},"D":{"i":-3430,"f":129},"cn0":173,"lock":15,"flags":15,"sid":{"sat":9,"code":4}},{"P":1026697355,"L":{"i":85403333,"f":63},"D":{"i":-946,"f":214},"cn0":205,"lock":15,"flags":15,"sid":{"sat":20,"code":4}},{"P":1056433741,"L":{"i":87815194,"f":178},"D":{"i":889,"f":22},"cn0":199,"lock":15,"flags":15,"sid":{"sat":11,"code":4}},{"P":1073780610,"L":{"i":89288473,"f":80},"D":{"i":1696,"f":167},"cn0":194,"lock":15,"flags":15,"sid":{"sat":5,"code":4}},{"P":1124895856,"L":{"i":93703031,"f":141},"D":{"i":-1040,"f":48},"cn0":172,"lock":15,"flags":15,"sid":{"sat":4,"code":4}},{"P":1167806732,"L":{"i":121621549,"f":168},"D":{"i":-1504,"f":191},"cn0":201,"lock":15,"flags":15,"sid":{"sat":35,"code":12}},{"P":1241490638,"L":{"i":129295347,"f":86},"D":{"i":-3011,"f":107},"cn0":171,"lock":15,"flags":15,"sid":{"sat":26,"code":12}},{"P":1275945105,"L":{"i":132883638,"f":248},"D":{"i":2246,"f":206},"cn0":160,"lock":15,"flags":15,"sid":{"sat":34,"code":12}},{"P":1202048032,"L":{"i":125187587,"f":83},"D":{"i":-1315,"f":179},"cn0":188,"lock":15,"flags":15,"sid":{"sat":24,"code":12}}]} +{"crc":25095,"length":249,"msg_type":74,"payload":"8GYvEAAAAAAyCEIdEA5NLWAGCKAfBb2fDw8ZDP5ZSEUiKDcHpUgGKbgPDwwMeXJER5ISbAdQ0f52uQ8PEwwbUFVHN9RtBylKCfzBDw8WDLVZSEXDVpQFotwEz9QPDwwNTS8LQgj18AYN+vtVww8PDA5aqBxLGPLkB9o0BGu/Dw8ZDrvwHEctWnkHBREEtL0PDwsOZrQuQ6aYDwe2JfmVyw8PGA4nmlRRl0KMCGKZ89WeDw8fDgQM/1GJLJ4I2aL3AZcPDyEORKgcS02EDAZMOQMxyQ8PGRSWti5D0wppBT2++qzXDw8YFATwHEcjE7oFnSADPsEPDwsU","preamble":85,"sender":22963,"header":{"t":{"tow":271542000,"ns_residual":0,"wn":2098},"n_obs":66},"obs":[{"P":1292767261,"L":{"i":134635565,"f":160},"D":{"i":1311,"f":189},"cn0":159,"lock":15,"flags":15,"sid":{"sat":25,"code":12}},{"P":1162369534,"L":{"i":121055266,"f":165},"D":{"i":1608,"f":41},"cn0":184,"lock":15,"flags":15,"sid":{"sat":12,"code":12}},{"P":1195668089,"L":{"i":124523154,"f":80},"D":{"i":-303,"f":118},"cn0":185,"lock":15,"flags":15,"sid":{"sat":19,"code":12}},{"P":1196773403,"L":{"i":124638263,"f":41},"D":{"i":2378,"f":252},"cn0":193,"lock":15,"flags":15,"sid":{"sat":22,"code":12}},{"P":1162369461,"L":{"i":93607619,"f":162},"D":{"i":1244,"f":207},"cn0":212,"lock":15,"flags":15,"sid":{"sat":12,"code":13}},{"P":1108029261,"L":{"i":116454664,"f":13},"D":{"i":-1030,"f":85},"cn0":195,"lock":15,"flags":15,"sid":{"sat":12,"code":14}},{"P":1260169306,"L":{"i":132444696,"f":218},"D":{"i":1076,"f":107},"cn0":191,"lock":15,"flags":15,"sid":{"sat":25,"code":14}},{"P":1193078971,"L":{"i":125393453,"f":5},"D":{"i":1041,"f":180},"cn0":189,"lock":15,"flags":15,"sid":{"sat":11,"code":14}},{"P":1127134310,"L":{"i":118462630,"f":182},"D":{"i":-1755,"f":149},"cn0":203,"lock":15,"flags":15,"sid":{"sat":24,"code":14}},{"P":1364498983,"L":{"i":143409815,"f":98},"D":{"i":-3175,"f":213},"cn0":158,"lock":15,"flags":15,"sid":{"sat":31,"code":14}},{"P":1375669252,"L":{"i":144583817,"f":217},"D":{"i":-2142,"f":1},"cn0":151,"lock":15,"flags":15,"sid":{"sat":33,"code":14}},{"P":1260169284,"L":{"i":101483597,"f":76},"D":{"i":825,"f":49},"cn0":201,"lock":15,"flags":15,"sid":{"sat":25,"code":20}},{"P":1127134870,"L":{"i":90770131,"f":61},"D":{"i":-1346,"f":172},"cn0":215,"lock":15,"flags":15,"sid":{"sat":24,"code":20}},{"P":1193078788,"L":{"i":96080675,"f":157},"D":{"i":800,"f":62},"cn0":193,"lock":15,"flags":15,"sid":{"sat":11,"code":20}}]} +{"crc":35991,"length":62,"msg_type":74,"payload":"8GYvEAAAAAAyCEOOmlRRLLiMBnV/9k2uDw8fFKkuC0KmkFEFcOv8xc4PDwwU9Av/UTFymgbKlvnYqg8PIRQ=","preamble":85,"sender":22963,"header":{"t":{"tow":271542000,"ns_residual":0,"wn":2098},"n_obs":67},"obs":[{"P":1364499086,"L":{"i":109885484,"f":117},"D":{"i":-2433,"f":77},"cn0":174,"lock":15,"flags":15,"sid":{"sat":31,"code":20}},{"P":1108029097,"L":{"i":89231526,"f":112},"D":{"i":-789,"f":197},"cn0":206,"lock":15,"flags":15,"sid":{"sat":12,"code":20}},{"P":1375669236,"L":{"i":110785073,"f":202},"D":{"i":-1642,"f":216},"cn0":170,"lock":15,"flags":15,"sid":{"sat":33,"code":20}}]} +{"crc":49809,"length":9,"msg_type":117,"payload":"/wAAAAAAAAAA","preamble":85,"sender":22963,"mask":255,"l1ca_bias":0,"l1p_bias":0,"l2ca_bias":0,"l2p_bias":0} +{"crc":37125,"length":11,"msg_type":258,"payload":"MgjwZi8QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271542000,"ns_residual":0,"flags":1} +{"crc":49677,"length":16,"msg_type":259,"payload":"EfBmLxDkBwMZAxkX/smaOw==","preamble":85,"sender":22963,"flags":17,"tow":271542000,"year":2020,"month":3,"day":25,"hours":3,"minutes":25,"seconds":23,"ns":999999998} +{"crc":14336,"length":34,"msg_type":522,"payload":"8GYvEAz5Svhl6kJAb1+lIFaSXsDAWg2bIwUywAECWwQPBg==","preamble":85,"sender":22963,"tow":271542000,"lat":37.83123687420638,"lon":-122.28650680684744,"height":-18.020074549446463,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":46270,"length":22,"msg_type":526,"payload":"8GYvEAIAAAD2////AQAAAPEAywIPAg==","preamble":85,"sender":22963,"tow":271542000,"n":2,"e":-10,"d":1,"h_accuracy":241,"v_accuracy":715,"n_sats":15,"flags":2} +{"crc":61544,"length":15,"msg_type":520,"payload":"8GYvEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271542000,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":39766,"length":22,"msg_type":524,"payload":"8GYvEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271542000,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":9762,"length":6,"msg_type":528,"payload":"8GYvEP//","preamble":85,"sender":22963,"tow":271542000,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":40942,"length":4,"msg_type":65535,"payload":"AAUCgA==","preamble":85,"sender":22963,"flags":2147616000} +{"crc":2168,"length":24,"msg_type":72,"payload":"UO0a3iqORMHK1UJhIkRQwc9nFIPvrk1B","preamble":85,"sender":22963,"x":-2694229.735196747,"y":-4264073.519704292,"z":3890655.0240602265} +{"crc":47991,"length":26,"msg_type":23,"payload":"bWFpbgAAAAAAAAAAAAAAAAAAAAAAAAx1AAA=","preamble":85,"sender":22963,"name":"main\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":0,"stack_free":29964} +{"crc":7734,"length":26,"msg_type":23,"payload":"aWRsZQAAAAAAAAAAAAAAAAAAAABeAXwAAAA=","preamble":85,"sender":22963,"name":"idle\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":350,"stack_free":124} +{"crc":26340,"length":26,"msg_type":23,"payload":"cnBtc2cAAAAAAAAAAAAAAAAAAAABANQNAAA=","preamble":85,"sender":22963,"name":"rpmsg\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":1,"stack_free":3540} +{"crc":51784,"length":26,"msg_type":23,"payload":"U0JQAAAAAAAAAAAAAAAAAAAAAAAAAPz/AAA=","preamble":85,"sender":22963,"name":"SBP\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":0,"stack_free":65532} +{"crc":33651,"length":26,"msg_type":23,"payload":"TkFQAAAAAAAAAAAAAAAAAAAAAAAAAASAAAA=","preamble":85,"sender":22963,"name":"NAP\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":0,"stack_free":32772} +{"crc":61814,"length":26,"msg_type":23,"payload":"bWFuYWdlIFBWAAAAAAAAAAAAAAAAACwEAAA=","preamble":85,"sender":22963,"name":"manage PV\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":0,"stack_free":1068} +{"crc":14252,"length":26,"msg_type":23,"payload":"SU1VAAAAAAAAAAAAAAAAAAAAAAAAAPQHAAA=","preamble":85,"sender":22963,"name":"IMU\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":0,"stack_free":2036} +{"crc":18976,"length":26,"msg_type":23,"payload":"SU1VIGF1eAAAAAAAAAAAAAAAAAAAAEwIAAA=","preamble":85,"sender":22963,"name":"IMU aux\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":0,"stack_free":2124} +{"crc":26120,"length":26,"msg_type":23,"payload":"bmRiAAAAAAAAAAAAAAAAAAAAAAAAAFAMAAA=","preamble":85,"sender":22963,"name":"ndb\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":0,"stack_free":3152} +{"crc":19151,"length":26,"msg_type":23,"payload":"TkFQIFRyYWNraW5nAAAAAAAAAAAdAdR3AAA=","preamble":85,"sender":22963,"name":"NAP Tracking\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":285,"stack_free":30676} +{"crc":22929,"length":26,"msg_type":23,"payload":"ZGVjb2RlAAAAAAAAAAAAAAAAAAAHANQGAAA=","preamble":85,"sender":22963,"name":"decode\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":7,"stack_free":1748} +{"crc":21487,"length":26,"msg_type":23,"payload":"bWFuYWdlIGFjcQAAAAAAAAAAAADEAKR3AAA=","preamble":85,"sender":22963,"name":"manage acq\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":196,"stack_free":30628} +{"crc":58531,"length":26,"msg_type":23,"payload":"c3lzdGVtIG1vbml0b3IAAAAAAAAAACwGAAA=","preamble":85,"sender":22963,"name":"system monitor\u0000\u0000\u0000\u0000\u0000\u0000","cpu":0,"stack_free":1580} +{"crc":44438,"length":26,"msg_type":23,"payload":"V2F0Y2hkb2cAAAAAAAAAAAAAAAAAAOQDAAA=","preamble":85,"sender":22963,"name":"Watchdog\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":0,"stack_free":996} +{"crc":15999,"length":26,"msg_type":23,"payload":"c3RhcmxpbmcAAAAAAAAAAAAAAACVAPz/AAA=","preamble":85,"sender":22963,"name":"starling\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":149,"stack_free":65532} +{"crc":57561,"length":26,"msg_type":23,"payload":"bWVfY2FsY19wdnQAAAAAAAAAAAAJAIwjAAA=","preamble":85,"sender":22963,"name":"me_calc_pvt\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":9,"stack_free":9100} +{"crc":38576,"length":26,"msg_type":23,"payload":"UFBTAAAAAAAAAAAAAAAAAAAAAAAAAEgHAAA=","preamble":85,"sender":22963,"name":"PPS\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":0,"stack_free":1864} +{"crc":50933,"length":26,"msg_type":23,"payload":"c3BlY3RydW0gYW5hbHl6ZXIAAAAAANQPAAA=","preamble":85,"sender":22963,"name":"spectrum analyzer\u0000\u0000\u0000","cpu":0,"stack_free":4052} +{"crc":31283,"length":10,"msg_type":181,"payload":"7RbdA/MGWhUJFg==","preamble":85,"sender":22963,"dev_vin":5869,"cpu_vint":989,"cpu_vaux":1779,"cpu_temperature":5466,"fe_temperature":5641} +{"crc":21111,"length":11,"msg_type":258,"payload":"MghUZy8QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271542100,"ns_residual":0,"flags":1} +{"crc":23295,"length":16,"msg_type":259,"payload":"EVRnLxDkBwMZAxkY/uD1BQ==","preamble":85,"sender":22963,"flags":17,"tow":271542100,"year":2020,"month":3,"day":25,"hours":3,"minutes":25,"seconds":24,"ns":99999998} +{"crc":33091,"length":34,"msg_type":522,"payload":"VGcvEH8KdPhl6kJAAlOeIFaSXsAyK7EgqQIywAECWwQPBg==","preamble":85,"sender":22963,"tow":271542100,"lat":37.831236893330235,"lon":-122.28650680028298,"height":-18.010393183950505,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":703,"length":22,"msg_type":526,"payload":"VGcvEP3///8AAAAA8f////EAywIPAg==","preamble":85,"sender":22963,"tow":271542100,"n":-3,"e":0,"d":-15,"h_accuracy":241,"v_accuracy":715,"n_sats":15,"flags":2} +{"crc":55741,"length":15,"msg_type":520,"payload":"VGcvEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271542100,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":14809,"length":22,"msg_type":524,"payload":"VGcvEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271542100,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":27642,"length":6,"msg_type":528,"payload":"VGcvEP//","preamble":85,"sender":22963,"tow":271542100,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":41200,"length":11,"msg_type":258,"payload":"Mgi4Zy8QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271542200,"ns_residual":0,"flags":1} +{"crc":30019,"length":16,"msg_type":259,"payload":"EbhnLxDkBwMZAxkY/sHrCw==","preamble":85,"sender":22963,"flags":17,"tow":271542200,"year":2020,"month":3,"day":25,"hours":3,"minutes":25,"seconds":24,"ns":199999998} +{"crc":13088,"length":34,"msg_type":522,"payload":"uGcvEKRgnPhl6kJAXFeUIFaSXsDRzR74/wAywAECWwQPBg==","preamble":85,"sender":22963,"tow":271542200,"lat":37.83123691211338,"lon":-122.28650679098558,"height":-18.00390578033495,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":529,"length":22,"msg_type":526,"payload":"uGcvEAEAAAD5////BwAAAPEAywIPAg==","preamble":85,"sender":22963,"tow":271542200,"n":1,"e":-7,"d":7,"h_accuracy":241,"v_accuracy":715,"n_sats":15,"flags":2} +{"crc":34373,"length":15,"msg_type":520,"payload":"uGcvEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271542200,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":50521,"length":22,"msg_type":524,"payload":"uGcvEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271542200,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":60193,"length":6,"msg_type":528,"payload":"uGcvEP//","preamble":85,"sender":22963,"tow":271542200,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":64915,"length":11,"msg_type":258,"payload":"MggcaC8QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271542300,"ns_residual":0,"flags":1} +{"crc":8721,"length":16,"msg_type":259,"payload":"ERxoLxDkBwMZAxkY/qLhEQ==","preamble":85,"sender":22963,"flags":17,"tow":271542300,"year":2020,"month":3,"day":25,"hours":3,"minutes":25,"seconds":24,"ns":299999998} +{"crc":6604,"length":34,"msg_type":522,"payload":"HGgvEAdTuPhl6kJAwQKMIFaSXsDKdnZ+pf8xwAECWwQPBg==","preamble":85,"sender":22963,"tow":271542300,"lat":37.831236925127136,"lon":-122.28650678322721,"height":-17.998618987962608,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":42904,"length":22,"msg_type":526,"payload":"HGgvEPX///8GAAAAEQAAAPEAywIPAg==","preamble":85,"sender":22963,"tow":271542300,"n":-11,"e":6,"d":17,"h_accuracy":241,"v_accuracy":715,"n_sats":15,"flags":2} +{"crc":20380,"length":15,"msg_type":520,"payload":"HGgvEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271542300,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":29910,"length":22,"msg_type":524,"payload":"HGgvEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271542300,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":26961,"length":6,"msg_type":528,"payload":"HGgvEP//","preamble":85,"sender":22963,"tow":271542300,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":16617,"length":237,"msg_type":97,"payload":"BQDUFQCyAgC5HwCkAAAAAAAAGQDYDADOHQDTEgDNAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwLLGQHMDAG9HwGWEgHFHQHCAAAABQHBAAAAAAAAAAAAAAAAZAPUYgOuZgOuZQPPXQPOAAAAagO0aAPMYgStZgTNXQREZATHZQTCaAS8AAAAagStIwzJGgyrIgygGAy8GQyeDAy5Ewy5FgzBAAAADA3UAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADA7DAAAAGQ6/Cw68GA7LAAAAHw6fIQ6YGRTJGBTXCxTCHxSuDBTOAAAAIRSrAAAA","preamble":85,"sender":22963,"states":[{"mesid":{"sat":5,"code":0},"cn0":212},{"mesid":{"sat":21,"code":0},"cn0":178},{"mesid":{"sat":2,"code":0},"cn0":185},{"mesid":{"sat":31,"code":0},"cn0":164},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":25,"code":0},"cn0":216},{"mesid":{"sat":12,"code":0},"cn0":206},{"mesid":{"sat":29,"code":0},"cn0":211},{"mesid":{"sat":18,"code":0},"cn0":205},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":131,"code":2},"cn0":203},{"mesid":{"sat":25,"code":1},"cn0":204},{"mesid":{"sat":12,"code":1},"cn0":189},{"mesid":{"sat":31,"code":1},"cn0":150},{"mesid":{"sat":18,"code":1},"cn0":197},{"mesid":{"sat":29,"code":1},"cn0":194},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":5,"code":1},"cn0":193},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":100,"code":3},"cn0":212},{"mesid":{"sat":98,"code":3},"cn0":174},{"mesid":{"sat":102,"code":3},"cn0":174},{"mesid":{"sat":101,"code":3},"cn0":207},{"mesid":{"sat":93,"code":3},"cn0":206},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":106,"code":3},"cn0":180},{"mesid":{"sat":104,"code":3},"cn0":204},{"mesid":{"sat":98,"code":4},"cn0":173},{"mesid":{"sat":102,"code":4},"cn0":205},{"mesid":{"sat":93,"code":4},"cn0":68},{"mesid":{"sat":100,"code":4},"cn0":199},{"mesid":{"sat":101,"code":4},"cn0":194},{"mesid":{"sat":104,"code":4},"cn0":188},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":106,"code":4},"cn0":173},{"mesid":{"sat":35,"code":12},"cn0":201},{"mesid":{"sat":26,"code":12},"cn0":171},{"mesid":{"sat":34,"code":12},"cn0":160},{"mesid":{"sat":24,"code":12},"cn0":188},{"mesid":{"sat":25,"code":12},"cn0":158},{"mesid":{"sat":12,"code":12},"cn0":185},{"mesid":{"sat":19,"code":12},"cn0":185},{"mesid":{"sat":22,"code":12},"cn0":193},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":12,"code":13},"cn0":212},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":12,"code":14},"cn0":195},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":25,"code":14},"cn0":191},{"mesid":{"sat":11,"code":14},"cn0":188},{"mesid":{"sat":24,"code":14},"cn0":203},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":31,"code":14},"cn0":159},{"mesid":{"sat":33,"code":14},"cn0":152},{"mesid":{"sat":25,"code":20},"cn0":201},{"mesid":{"sat":24,"code":20},"cn0":215},{"mesid":{"sat":11,"code":20},"cn0":194},{"mesid":{"sat":31,"code":20},"cn0":174},{"mesid":{"sat":12,"code":20},"cn0":206},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":33,"code":20},"cn0":171},{"mesid":{"sat":0,"code":0},"cn0":0}]} +{"crc":42191,"length":11,"msg_type":258,"payload":"MgiAaC8QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271542400,"ns_residual":0,"flags":1} +{"crc":64125,"length":16,"msg_type":259,"payload":"EYBoLxDkBwMZAxkY/oPXFw==","preamble":85,"sender":22963,"flags":17,"tow":271542400,"year":2020,"month":3,"day":25,"hours":3,"minutes":25,"seconds":24,"ns":399999998} +{"crc":33173,"length":34,"msg_type":522,"payload":"gGgvEBJI/fhl6kJANxWFIFaSXsAX81kbM/0xwAECWwQPBg==","preamble":85,"sender":22963,"tow":271542400,"lat":37.831236957237834,"lon":-122.28650677677511,"height":-17.989061078510613,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":5139,"length":22,"msg_type":526,"payload":"gGgvEBIAAAD4////4v////EAywIPAg==","preamble":85,"sender":22963,"tow":271542400,"n":18,"e":-8,"d":-30,"h_accuracy":241,"v_accuracy":715,"n_sats":15,"flags":2} +{"crc":59891,"length":15,"msg_type":520,"payload":"gGgvEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271542400,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":35559,"length":22,"msg_type":524,"payload":"gGgvEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271542400,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":44054,"length":6,"msg_type":528,"payload":"gGgvEP//","preamble":85,"sender":22963,"tow":271542400,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":49809,"length":9,"msg_type":117,"payload":"/wAAAAAAAAAA","preamble":85,"sender":22963,"mask":255,"l1ca_bias":0,"l1p_bias":0,"l2ca_bias":0,"l2p_bias":0} +{"crc":49157,"length":11,"msg_type":258,"payload":"MgjkaC8QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271542500,"ns_residual":0,"flags":1} +{"crc":48769,"length":16,"msg_type":259,"payload":"EeRoLxDkBwMZAxkY/mTNHQ==","preamble":85,"sender":22963,"flags":17,"tow":271542500,"year":2020,"month":3,"day":25,"hours":3,"minutes":25,"seconds":24,"ns":499999998} +{"crc":50824,"length":34,"msg_type":522,"payload":"5GgvEOlTEPll6kJAww9mIFaSXsB+nGFdiPsxwAECWwQPBg==","preamble":85,"sender":22963,"tow":271542500,"lat":37.831236966106935,"lon":-122.28650674788427,"height":-17.982549511271365,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":14713,"length":22,"msg_type":526,"payload":"5GgvEPr///8KAAAACgAAAPEAywIPAg==","preamble":85,"sender":22963,"tow":271542500,"n":-6,"e":10,"d":10,"h_accuracy":241,"v_accuracy":715,"n_sats":15,"flags":2} +{"crc":50524,"length":15,"msg_type":520,"payload":"5GgvEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271542500,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":37457,"length":22,"msg_type":524,"payload":"5GgvEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271542500,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":62895,"length":6,"msg_type":528,"payload":"5GgvEP//","preamble":85,"sender":22963,"tow":271542500,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":10888,"length":11,"msg_type":258,"payload":"MghIaS8QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271542600,"ns_residual":0,"flags":1} +{"crc":62837,"length":16,"msg_type":259,"payload":"EUhpLxDkBwMZAxkY/kXDIw==","preamble":85,"sender":22963,"flags":17,"tow":271542600,"year":2020,"month":3,"day":25,"hours":3,"minutes":25,"seconds":24,"ns":599999998} +{"crc":11089,"length":34,"msg_type":522,"payload":"SGkvEB+MS/ll6kJAx2NTIFaSXsAKcpuICPkxwAECWwQPBg==","preamble":85,"sender":22963,"tow":271542600,"lat":37.8312369936832,"lon":-122.28650673049479,"height":-17.972786462736657,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":17924,"length":22,"msg_type":526,"payload":"SGkvEAAAAAAAAAAACQAAAPEAywIPAg==","preamble":85,"sender":22963,"tow":271542600,"n":0,"e":0,"d":9,"h_accuracy":241,"v_accuracy":715,"n_sats":15,"flags":2} +{"crc":52172,"length":15,"msg_type":520,"payload":"SGkvEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271542600,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":28285,"length":22,"msg_type":524,"payload":"SGkvEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271542600,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":46389,"length":6,"msg_type":528,"payload":"SGkvEP//","preamble":85,"sender":22963,"tow":271542600,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":7250,"length":51,"msg_type":1025,"payload":"BkdMTyBMMk9GIE1FIDEgWysxMjgzbXNdIGxvdyBDTjAgdG9vIGxvbmcsIGRyb3BwaW5n","preamble":85,"sender":22963,"level":6,"text":"GLO L2OF ME 1 [+1283ms] low CN0 too long, dropping"} +{"crc":22878,"length":34,"msg_type":30583,"payload":"gwLHaC8QPwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"sid":{"sat":131,"code":2},"tow":271542471,"message_type":63,"data":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]} +{"crc":61936,"length":11,"msg_type":258,"payload":"MgisaS8QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271542700,"ns_residual":0,"flags":1} +{"crc":2347,"length":16,"msg_type":259,"payload":"EaxpLxDkBwMZAxkY/ia5KQ==","preamble":85,"sender":22963,"flags":17,"tow":271542700,"year":2020,"month":3,"day":25,"hours":3,"minutes":25,"seconds":24,"ns":699999998} +{"crc":4100,"length":34,"msg_type":522,"payload":"rGkvEA68d/ll6kJAVfk6IFaSXsC+PgScX/YxwAECWwQPBg==","preamble":85,"sender":22963,"tow":271542700,"lat":37.831237014259486,"lon":-122.2865067077558,"height":-17.96239638427391,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":51882,"length":22,"msg_type":526,"payload":"rGkvEPb///8FAAAA+f////EAywIPAg==","preamble":85,"sender":22963,"tow":271542700,"n":-10,"e":5,"d":-7,"h_accuracy":241,"v_accuracy":715,"n_sats":15,"flags":2} +{"crc":45937,"length":15,"msg_type":520,"payload":"rGkvEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271542700,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":52318,"length":22,"msg_type":524,"payload":"rGkvEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271542700,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":14508,"length":6,"msg_type":528,"payload":"rGkvEP//","preamble":85,"sender":22963,"tow":271542700,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":50981,"length":11,"msg_type":258,"payload":"MggQai8QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271542800,"ns_residual":0,"flags":1} +{"crc":50966,"length":16,"msg_type":259,"payload":"ERBqLxDkBwMZAxkY/gevLw==","preamble":85,"sender":22963,"flags":17,"tow":271542800,"year":2020,"month":3,"day":25,"hours":3,"minutes":25,"seconds":24,"ns":799999998} +{"crc":21640,"length":34,"msg_type":522,"payload":"EGovEOGhuvll6kJABG1BIFaSXsBWdRsOUPMxwAECWwQPBg==","preamble":85,"sender":22963,"tow":271542800,"lat":37.83123704541118,"lon":-122.2865067137646,"height":-17.95044029398317,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":21829,"length":22,"msg_type":526,"payload":"EGovEAIAAADu/////f////EAywIPAg==","preamble":85,"sender":22963,"tow":271542800,"n":2,"e":-18,"d":-3,"h_accuracy":241,"v_accuracy":715,"n_sats":15,"flags":2} +{"crc":1449,"length":15,"msg_type":520,"payload":"EGovEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271542800,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":14073,"length":22,"msg_type":524,"payload":"EGovEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271542800,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":9777,"length":6,"msg_type":528,"payload":"EGovEP//","preamble":85,"sender":22963,"tow":271542800,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":62294,"length":237,"msg_type":97,"payload":"BQDUFQCyAgC5HwClAAAAAAAAGQDYDADOHQDTEgDNAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwLMGQHMDAG8HwGWEgHFHQHCAAAABQHBAAAAAAAAAAAAAAAACwPUCQOuFAOuBQPPCgPOAAAABAO1FQPMCQSuFATNAAAACwTHBQTCAAS7AAAABASsIwzJGgysIgyhGAy8GQyfDAy5Ewy5FgzBAAAADA3UAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADA7DAAAAGQ6/Cw68GA7LAAAAHw6gIQ6YGRTJGBTXCxTCHxSuDBTOAAAAIRSqAAAA","preamble":85,"sender":22963,"states":[{"mesid":{"sat":5,"code":0},"cn0":212},{"mesid":{"sat":21,"code":0},"cn0":178},{"mesid":{"sat":2,"code":0},"cn0":185},{"mesid":{"sat":31,"code":0},"cn0":165},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":25,"code":0},"cn0":216},{"mesid":{"sat":12,"code":0},"cn0":206},{"mesid":{"sat":29,"code":0},"cn0":211},{"mesid":{"sat":18,"code":0},"cn0":205},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":131,"code":2},"cn0":204},{"mesid":{"sat":25,"code":1},"cn0":204},{"mesid":{"sat":12,"code":1},"cn0":188},{"mesid":{"sat":31,"code":1},"cn0":150},{"mesid":{"sat":18,"code":1},"cn0":197},{"mesid":{"sat":29,"code":1},"cn0":194},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":5,"code":1},"cn0":193},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":11,"code":3},"cn0":212},{"mesid":{"sat":9,"code":3},"cn0":174},{"mesid":{"sat":20,"code":3},"cn0":174},{"mesid":{"sat":5,"code":3},"cn0":207},{"mesid":{"sat":10,"code":3},"cn0":206},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":4,"code":3},"cn0":181},{"mesid":{"sat":21,"code":3},"cn0":204},{"mesid":{"sat":9,"code":4},"cn0":174},{"mesid":{"sat":20,"code":4},"cn0":205},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":11,"code":4},"cn0":199},{"mesid":{"sat":5,"code":4},"cn0":194},{"mesid":{"sat":0,"code":4},"cn0":187},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":4,"code":4},"cn0":172},{"mesid":{"sat":35,"code":12},"cn0":201},{"mesid":{"sat":26,"code":12},"cn0":172},{"mesid":{"sat":34,"code":12},"cn0":161},{"mesid":{"sat":24,"code":12},"cn0":188},{"mesid":{"sat":25,"code":12},"cn0":159},{"mesid":{"sat":12,"code":12},"cn0":185},{"mesid":{"sat":19,"code":12},"cn0":185},{"mesid":{"sat":22,"code":12},"cn0":193},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":12,"code":13},"cn0":212},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":12,"code":14},"cn0":195},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":25,"code":14},"cn0":191},{"mesid":{"sat":11,"code":14},"cn0":188},{"mesid":{"sat":24,"code":14},"cn0":203},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":31,"code":14},"cn0":160},{"mesid":{"sat":33,"code":14},"cn0":152},{"mesid":{"sat":25,"code":20},"cn0":201},{"mesid":{"sat":24,"code":20},"cn0":215},{"mesid":{"sat":11,"code":20},"cn0":194},{"mesid":{"sat":31,"code":20},"cn0":174},{"mesid":{"sat":12,"code":20},"cn0":206},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":33,"code":20},"cn0":170},{"mesid":{"sat":0,"code":0},"cn0":0}]} +{"crc":34187,"length":128,"msg_type":151,"payload":"AgAaHQUAKzUMAFEtFQB9GRkAbUYaAKEBHQChNx8AlQ4EAxUWBQMyIQkDXw4KA3EpCwOYJQwDqgMTAyIHFAMMMRUDlSUMDJQpEwwjIBQMDwIWDEMkGAyCIxkMnQ4aDGcVIgyOESMMIi0LDosyDA4PPBgObDYZDpcpHw5VESEOIA8=","preamble":85,"sender":22963,"azel":[{"sid":{"sat":2,"code":0},"az":26,"el":29},{"sid":{"sat":5,"code":0},"az":43,"el":53},{"sid":{"sat":12,"code":0},"az":81,"el":45},{"sid":{"sat":21,"code":0},"az":125,"el":25},{"sid":{"sat":25,"code":0},"az":109,"el":70},{"sid":{"sat":26,"code":0},"az":161,"el":1},{"sid":{"sat":29,"code":0},"az":161,"el":55},{"sid":{"sat":31,"code":0},"az":149,"el":14},{"sid":{"sat":4,"code":3},"az":21,"el":22},{"sid":{"sat":5,"code":3},"az":50,"el":33},{"sid":{"sat":9,"code":3},"az":95,"el":14},{"sid":{"sat":10,"code":3},"az":113,"el":41},{"sid":{"sat":11,"code":3},"az":152,"el":37},{"sid":{"sat":12,"code":3},"az":170,"el":3},{"sid":{"sat":19,"code":3},"az":34,"el":7},{"sid":{"sat":20,"code":3},"az":12,"el":49},{"sid":{"sat":21,"code":3},"az":149,"el":37},{"sid":{"sat":12,"code":12},"az":148,"el":41},{"sid":{"sat":19,"code":12},"az":35,"el":32},{"sid":{"sat":20,"code":12},"az":15,"el":2},{"sid":{"sat":22,"code":12},"az":67,"el":36},{"sid":{"sat":24,"code":12},"az":130,"el":35},{"sid":{"sat":25,"code":12},"az":157,"el":14},{"sid":{"sat":26,"code":12},"az":103,"el":21},{"sid":{"sat":34,"code":12},"az":142,"el":17},{"sid":{"sat":35,"code":12},"az":34,"el":45},{"sid":{"sat":11,"code":14},"az":139,"el":50},{"sid":{"sat":12,"code":14},"az":15,"el":60},{"sid":{"sat":24,"code":14},"az":108,"el":54},{"sid":{"sat":25,"code":14},"az":151,"el":41},{"sid":{"sat":31,"code":14},"az":85,"el":17},{"sid":{"sat":33,"code":14},"az":32,"el":15}]} +{"crc":41967,"length":11,"msg_type":258,"payload":"Mgh0ai8QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271542900,"ns_residual":0,"flags":1} +{"crc":2104,"length":16,"msg_type":259,"payload":"EXRqLxDkBwMZAxkY/uikNQ==","preamble":85,"sender":22963,"flags":17,"tow":271542900,"year":2020,"month":3,"day":25,"hours":3,"minutes":25,"seconds":24,"ns":899999998} +{"crc":30746,"length":34,"msg_type":522,"payload":"dGovEMwJB/pl6kJAq8IwIFaSXsAAVb3RX/AxwAECWwQPBg==","preamble":85,"sender":22963,"tow":271542900,"lat":37.83123708099046,"lon":-122.28650669824371,"height":-17.938962086413994,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":6783,"length":22,"msg_type":526,"payload":"dGovEAYAAAAAAAAAFAAAAPEAywIPAg==","preamble":85,"sender":22963,"tow":271542900,"n":6,"e":0,"d":20,"h_accuracy":241,"v_accuracy":715,"n_sats":15,"flags":2} +{"crc":10502,"length":15,"msg_type":520,"payload":"dGovEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271542900,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":11855,"length":22,"msg_type":524,"payload":"dGovEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271542900,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":32648,"length":6,"msg_type":528,"payload":"dGovEP//","preamble":85,"sender":22963,"tow":271542900,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":59026,"length":249,"msg_type":74,"payload":"2GovEAAAAAAyCEC8xbQ+cCiXBoU2/8rUDw8FAKwADkV5+EEHcncIZrIPDxUAz6T8RXcNWwd6UfYxuQ8PAgB1MwRJRJCsB9Zn/hOkDw8fAF+sKj3gvG0GDoj7TdgPDxkAMDrBQEtHzgaRX/RFzg8PDABzhso+snGZBn/HBRzTDw8dAJisKj21ZAIFyYX88MwPDxkBAzrBQL6eTQU+8PY4vA8PDAHmMgRJKtT6BbrC/tmWDw8fARuGyj4zcyQFLIAEoMIPDx0BW8W0PkOrIgUVY/9VwQ8PBQFsu/c+nce6Bnx3BHrVDw8LAx1c50RJ3VsHcMjuGK8PDwkD","preamble":85,"sender":22963,"header":{"t":{"tow":271543000,"ns_residual":0,"wn":2098},"n_obs":64},"obs":[{"P":1052034492,"L":{"i":110569584,"f":133},"D":{"i":-202,"f":202},"cn0":212,"lock":15,"flags":15,"sid":{"sat":5,"code":0}},{"P":1158545580,"L":{"i":121763961,"f":114},"D":{"i":2167,"f":102},"cn0":178,"lock":15,"flags":15,"sid":{"sat":21,"code":0}},{"P":1174185167,"L":{"i":123407735,"f":122},"D":{"i":-2479,"f":49},"cn0":185,"lock":15,"flags":15,"sid":{"sat":2,"code":0}},{"P":1225012085,"L":{"i":128749636,"f":214},"D":{"i":-409,"f":19},"cn0":164,"lock":15,"flags":15,"sid":{"sat":31,"code":0}},{"P":1026206815,"L":{"i":107855072,"f":14},"D":{"i":-1144,"f":77},"cn0":216,"lock":15,"flags":15,"sid":{"sat":25,"code":0}},{"P":1086405168,"L":{"i":114181963,"f":145},"D":{"i":-2977,"f":69},"cn0":206,"lock":15,"flags":15,"sid":{"sat":12,"code":0}},{"P":1053460083,"L":{"i":110719410,"f":127},"D":{"i":1479,"f":28},"cn0":211,"lock":15,"flags":15,"sid":{"sat":29,"code":0}},{"P":1026206872,"L":{"i":84042933,"f":201},"D":{"i":-891,"f":240},"cn0":204,"lock":15,"flags":15,"sid":{"sat":25,"code":1}},{"P":1086405123,"L":{"i":88972990,"f":62},"D":{"i":-2320,"f":56},"cn0":188,"lock":15,"flags":15,"sid":{"sat":12,"code":1}},{"P":1225011942,"L":{"i":100324394,"f":186},"D":{"i":-318,"f":217},"cn0":150,"lock":15,"flags":15,"sid":{"sat":31,"code":1}},{"P":1053459995,"L":{"i":86274867,"f":44},"D":{"i":1152,"f":160},"cn0":194,"lock":15,"flags":15,"sid":{"sat":29,"code":1}},{"P":1052034395,"L":{"i":86158147,"f":21},"D":{"i":-157,"f":85},"cn0":193,"lock":15,"flags":15,"sid":{"sat":5,"code":1}},{"P":1056422764,"L":{"i":112904093,"f":124},"D":{"i":1143,"f":122},"cn0":213,"lock":15,"flags":15,"sid":{"sat":11,"code":3}},{"P":1156013085,"L":{"i":123460937,"f":112},"D":{"i":-4408,"f":24},"cn0":175,"lock":15,"flags":15,"sid":{"sat":9,"code":3}}]} +{"crc":6262,"length":249,"msg_type":74,"payload":"2GovEAAAAAAyCEGfUzI9jX+LBs5D+wquDw8UA6lGAEDgqtcGYYMI/s8PDwUDb+BxPmRGqAZCDPSjzg8PCgN1vAxDBFQuBwLG+om1Dw8EA6MCJD828MEGgVIGQcwPDxUDolznRF86uQU3nfJ0rg8PCQTdVDI9dSoXBZJP/PTNDw8UBI689z6h8DsFRHkDeccPDwsEzEcAQHloUgVvnwbhwg8PBQQsvQxDh8+VBZPw+1CsDw8EBGGJm0UL0j8HqSH6d8kPDyMMtBUASrTvtAd5QPQhrA8PGgw0DA1M7pvrB4jICLeiDw8iDG79pUclO3YHft36rLwPDxgM","preamble":85,"sender":22963,"header":{"t":{"tow":271543000,"ns_residual":0,"wn":2098},"n_obs":65},"obs":[{"P":1026708383,"L":{"i":109805453,"f":206},"D":{"i":-1213,"f":10},"cn0":174,"lock":15,"flags":15,"sid":{"sat":20,"code":3}},{"P":1073759913,"L":{"i":114797280,"f":97},"D":{"i":2179,"f":254},"cn0":207,"lock":15,"flags":15,"sid":{"sat":5,"code":3}},{"P":1047650415,"L":{"i":111691364,"f":66},"D":{"i":-3060,"f":163},"cn0":206,"lock":15,"flags":15,"sid":{"sat":10,"code":3}},{"P":1124908149,"L":{"i":120476676,"f":2},"D":{"i":-1338,"f":137},"cn0":181,"lock":15,"flags":15,"sid":{"sat":4,"code":3}},{"P":1059324579,"L":{"i":113373238,"f":129},"D":{"i":1618,"f":65},"cn0":204,"lock":15,"flags":15,"sid":{"sat":21,"code":3}},{"P":1156013218,"L":{"i":96025183,"f":55},"D":{"i":-3427,"f":116},"cn0":174,"lock":15,"flags":15,"sid":{"sat":9,"code":4}},{"P":1026708701,"L":{"i":85404277,"f":146},"D":{"i":-945,"f":244},"cn0":205,"lock":15,"flags":15,"sid":{"sat":20,"code":4}},{"P":1056423054,"L":{"i":87814305,"f":68},"D":{"i":889,"f":121},"cn0":199,"lock":15,"flags":15,"sid":{"sat":11,"code":4}},{"P":1073760204,"L":{"i":89286777,"f":111},"D":{"i":1695,"f":225},"cn0":194,"lock":15,"flags":15,"sid":{"sat":5,"code":4}},{"P":1124908332,"L":{"i":93704071,"f":147},"D":{"i":-1040,"f":80},"cn0":172,"lock":15,"flags":15,"sid":{"sat":4,"code":4}},{"P":1167821153,"L":{"i":121623051,"f":169},"D":{"i":-1503,"f":119},"cn0":201,"lock":15,"flags":15,"sid":{"sat":35,"code":12}},{"P":1241519540,"L":{"i":129298356,"f":121},"D":{"i":-3008,"f":33},"cn0":172,"lock":15,"flags":15,"sid":{"sat":26,"code":12}},{"P":1275923508,"L":{"i":132881390,"f":136},"D":{"i":2248,"f":183},"cn0":162,"lock":15,"flags":15,"sid":{"sat":34,"code":12}},{"P":1202060654,"L":{"i":125188901,"f":126},"D":{"i":-1315,"f":172},"cn0":188,"lock":15,"flags":15,"sid":{"sat":24,"code":12}}]} +{"crc":64552,"length":249,"msg_type":74,"payload":"2GovEAAAAAAyCELY3g1NDFsGCP4fBcOfDw8ZDJ0dSEXYITcHtEoGHbkPDwwM5H1ER8ETbAfVz/7HuA8PEwzU9lRH68ptB7xLCSrBDw8WDFIdSEXmUZQFt9wEttQPDwwNg1ULQg358AYY+/u1ww8PDA5XgBxL4+3kB+0zBBu/Dw8ZDuzJHEcZVnkHVhMEJrwPDwsOoPUuQ4CfDwf/JPnLyw8PGA4oEFVR/E6MCFCc8xegDw8fDnBb/1HkNJ4I9qb305kPDyEOPoAcSxSBDAYfOAPRyQ8PGRTL9y5DExBpBW+/+uTXDw8YFDvJHEcDELoF6CADo8IPDwsU","preamble":85,"sender":22963,"header":{"t":{"tow":271543000,"ns_residual":0,"wn":2098},"n_obs":66},"obs":[{"P":1292754648,"L":{"i":134634252,"f":254},"D":{"i":1311,"f":195},"cn0":159,"lock":15,"flags":15,"sid":{"sat":25,"code":12}},{"P":1162354077,"L":{"i":121053656,"f":180},"D":{"i":1610,"f":29},"cn0":185,"lock":15,"flags":15,"sid":{"sat":12,"code":12}},{"P":1195671012,"L":{"i":124523457,"f":213},"D":{"i":-305,"f":199},"cn0":184,"lock":15,"flags":15,"sid":{"sat":19,"code":12}},{"P":1196750548,"L":{"i":124635883,"f":188},"D":{"i":2379,"f":42},"cn0":193,"lock":15,"flags":15,"sid":{"sat":22,"code":12}},{"P":1162354002,"L":{"i":93606374,"f":183},"D":{"i":1244,"f":182},"cn0":212,"lock":15,"flags":15,"sid":{"sat":12,"code":13}},{"P":1108039043,"L":{"i":116455693,"f":24},"D":{"i":-1029,"f":181},"cn0":195,"lock":15,"flags":15,"sid":{"sat":12,"code":14}},{"P":1260159063,"L":{"i":132443619,"f":237},"D":{"i":1075,"f":27},"cn0":191,"lock":15,"flags":15,"sid":{"sat":25,"code":14}},{"P":1193069036,"L":{"i":125392409,"f":86},"D":{"i":1043,"f":38},"cn0":188,"lock":15,"flags":15,"sid":{"sat":11,"code":14}},{"P":1127151008,"L":{"i":118464384,"f":255},"D":{"i":-1756,"f":203},"cn0":203,"lock":15,"flags":15,"sid":{"sat":24,"code":14}},{"P":1364529192,"L":{"i":143412988,"f":80},"D":{"i":-3172,"f":23},"cn0":160,"lock":15,"flags":15,"sid":{"sat":31,"code":14}},{"P":1375689584,"L":{"i":144585956,"f":246},"D":{"i":-2138,"f":211},"cn0":153,"lock":15,"flags":15,"sid":{"sat":33,"code":14}},{"P":1260159038,"L":{"i":101482772,"f":31},"D":{"i":824,"f":209},"cn0":201,"lock":15,"flags":15,"sid":{"sat":25,"code":20}},{"P":1127151563,"L":{"i":90771475,"f":111},"D":{"i":-1345,"f":228},"cn0":215,"lock":15,"flags":15,"sid":{"sat":24,"code":20}},{"P":1193068859,"L":{"i":96079875,"f":232},"D":{"i":800,"f":163},"cn0":194,"lock":15,"flags":15,"sid":{"sat":11,"code":20}}]} +{"crc":46456,"length":62,"msg_type":74,"payload":"2GovEAAAAAAyCEOEEFVRq8GMBrGB9i2vDw8fFOlUC0K6k1EF7er85M4PDwwUe1v/UZh4mgbSmfmGqg8PIRQ=","preamble":85,"sender":22963,"header":{"t":{"tow":271543000,"ns_residual":0,"wn":2098},"n_obs":67},"obs":[{"P":1364529284,"L":{"i":109887915,"f":177},"D":{"i":-2431,"f":45},"cn0":175,"lock":15,"flags":15,"sid":{"sat":31,"code":20}},{"P":1108038889,"L":{"i":89232314,"f":237},"D":{"i":-790,"f":228},"cn0":206,"lock":15,"flags":15,"sid":{"sat":12,"code":20}},{"P":1375689595,"L":{"i":110786712,"f":210},"D":{"i":-1639,"f":134},"cn0":170,"lock":15,"flags":15,"sid":{"sat":33,"code":20}}]} +{"crc":49809,"length":9,"msg_type":117,"payload":"/wAAAAAAAAAA","preamble":85,"sender":22963,"mask":255,"l1ca_bias":0,"l1p_bias":0,"l2ca_bias":0,"l2p_bias":0} +{"crc":3761,"length":11,"msg_type":258,"payload":"MgjYai8QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271543000,"ns_residual":0,"flags":1} +{"crc":2923,"length":16,"msg_type":259,"payload":"EdhqLxDkBwMZAxkY/smaOw==","preamble":85,"sender":22963,"flags":17,"tow":271543000,"year":2020,"month":3,"day":25,"hours":3,"minutes":25,"seconds":24,"ns":999999998} +{"crc":56305,"length":34,"msg_type":522,"payload":"2GovEKYnXvpl6kJAPlMfIFaSXsCEibEkKOwxwAECWwQPBg==","preamble":85,"sender":22963,"tow":271543000,"lat":37.831237121557294,"lon":-122.28650668200586,"height":-17.922487538665806,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":22713,"length":22,"msg_type":526,"payload":"2GovEPz////+////2v////EAywIPAg==","preamble":85,"sender":22963,"tow":271543000,"n":-4,"e":-2,"d":-38,"h_accuracy":241,"v_accuracy":715,"n_sats":15,"flags":2} +{"crc":23799,"length":15,"msg_type":520,"payload":"2GovEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271543000,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":1941,"length":22,"msg_type":524,"payload":"2GovEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271543000,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":38211,"length":6,"msg_type":528,"payload":"2GovEP//","preamble":85,"sender":22963,"tow":271543000,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":40942,"length":4,"msg_type":65535,"payload":"AAUCgA==","preamble":85,"sender":22963,"flags":2147616000} +{"crc":2168,"length":24,"msg_type":72,"payload":"UO0a3iqORMHK1UJhIkRQwc9nFIPvrk1B","preamble":85,"sender":22963,"x":-2694229.735196747,"y":-4264073.519704292,"z":3890655.0240602265} +{"crc":37402,"length":11,"msg_type":258,"payload":"Mgg8ay8QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271543100,"ns_residual":0,"flags":1} +{"crc":30264,"length":16,"msg_type":259,"payload":"ETxrLxDkBwMZAxkZ/uD1BQ==","preamble":85,"sender":22963,"flags":17,"tow":271543100,"year":2020,"month":3,"day":25,"hours":3,"minutes":25,"seconds":25,"ns":99999998} +{"crc":61097,"length":34,"msg_type":522,"payload":"PGsvEKRnuPpl6kJAalgEIFaSXsAdrzMuBuoxwAECWwQPBg==","preamble":85,"sender":22963,"tow":271543100,"lat":37.83123716358321,"lon":-122.28650665687897,"height":-17.914156806581662,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":36974,"length":22,"msg_type":526,"payload":"PGsvEAQAAAAKAAAAGgAAAPEAywIPAg==","preamble":85,"sender":22963,"tow":271543100,"n":4,"e":10,"d":26,"h_accuracy":241,"v_accuracy":715,"n_sats":15,"flags":2} +{"crc":24363,"length":15,"msg_type":520,"payload":"PGsvEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271543100,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":28736,"length":22,"msg_type":524,"payload":"PGsvEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271543100,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":45707,"length":6,"msg_type":528,"payload":"PGsvEP//","preamble":85,"sender":22963,"tow":271543100,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":52038,"length":11,"msg_type":258,"payload":"Mgigay8QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271543200,"ns_residual":0,"flags":1} +{"crc":40979,"length":16,"msg_type":259,"payload":"EaBrLxDkBwMZAxkZ/sHrCw==","preamble":85,"sender":22963,"flags":17,"tow":271543200,"year":2020,"month":3,"day":25,"hours":3,"minutes":25,"seconds":25,"ns":199999998} +{"crc":58071,"length":34,"msg_type":522,"payload":"oGsvEMfX/Ppl6kJACyP4H1aSXsDNPJg5KucxwAECWwQPBg==","preamble":85,"sender":22963,"tow":271543200,"lat":37.831237195452154,"lon":-122.28650664550894,"height":-17.902988052050933,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":19899,"length":22,"msg_type":526,"payload":"oGsvEPz/////////+P////EAywIPAg==","preamble":85,"sender":22963,"tow":271543200,"n":-4,"e":-1,"d":-8,"h_accuracy":241,"v_accuracy":715,"n_sats":15,"flags":2} +{"crc":63812,"length":15,"msg_type":520,"payload":"oGsvEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271543200,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":36465,"length":22,"msg_type":524,"payload":"oGsvEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271543200,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":30668,"length":6,"msg_type":528,"payload":"oGsvEP//","preamble":85,"sender":22963,"tow":271543200,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":59056,"length":139,"msg_type":138,"payload":"FQDALAQAMggAAABAQDgAAAEAAAAwsgCwk0IAcGpDAOBtNgAg6zYAgAQ1AABmtKhKIq7G4zQ+zoPVH/LR/D8AAAD4MWaZPwAAwDyJIbRATXV4Dg49AcAnH2j36ClBvpWVt822ivW/nz9Vvld47j/jWw9tDf79PQDTwrcAALQsAAAAAMAsBAAyCCEhAA==","preamble":85,"sender":22963,"common":{"sid":{"sat":21,"code":0},"toe":{"tow":273600,"wn":2098},"ura":2.0,"fit_interval":14400,"valid":1,"health_bits":0},"tgd":-1.0244548e-8,"c_rs":73.84375,"c_rc":234.4375,"c_uc":0.0000035446137,"c_us":0.000007007271,"c_ic":4.9360096e-7,"c_is":-2.1420419e-7,"dn":4.863774024282281e-9,"m0":1.8012562984006197,"ecc":0.024803906213492155,"sqrta":5153.536083221436,"omega0":-2.154811966944783,"omegadot":-7.992475775839984e-9,"w":-1.3463657413316004,"inc":0.9521902768556066,"inc_dot":4.364467511876155e-10,"af0":-0.000023224857,"af1":5.1159077e-12,"af2":0.0,"toc":{"tow":273600,"wn":2098},"iode":33,"iodc":33} +{"crc":15733,"length":139,"msg_type":138,"payload":"HwCwLAQAMggAAABAQDgAAAEAAABosgBwr0IAuHZDAKCVNgAA6TYAALyzAADwMmzcL2LIITQ+jRvCTcbTA0AAAAB80IWDPwAAIJyLIbRAgzPjXdBF8T/3kXvrHZVBvmQ5Ig1ffr8/craUyTun7j8RGcu37Wv8PYChBLgAADCsAAAAALAsBAAyCCgoAA==","preamble":85,"sender":22963,"common":{"sid":{"sat":31,"code":0},"toe":{"tow":273584,"wn":2098},"ura":2.0,"fit_interval":14400,"valid":1,"health_bits":0},"tgd":-1.3504177e-8,"c_rs":87.71875,"c_rc":246.71875,"c_uc":0.0000044591725,"c_us":0.000006943941,"c_ic":-8.754432e-8,"c_is":2.7939677e-8,"dn":4.687338103589416e-9,"m0":2.478405578123278,"ecc":0.0095325744478032,"sqrta":5153.545351028442,"omega0":1.0795444171410231,"omegadot":-8.187483898711045e-9,"w":0.12302202292105374,"inc":0.9579142510535361,"inc_dot":4.135886561990661e-10,"af0":-0.00003162166,"af1":-2.5011104e-12,"af2":0.0,"toc":{"tow":273584,"wn":2098},"iode":40,"iodc":40} +{"crc":35071,"length":11,"msg_type":258,"payload":"MggEbC8QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271543300,"ns_residual":0,"flags":1} +{"crc":7210,"length":16,"msg_type":259,"payload":"EQRsLxDkBwMZAxkZ/qLhEQ==","preamble":85,"sender":22963,"flags":17,"tow":271543300,"year":2020,"month":3,"day":25,"hours":3,"minutes":25,"seconds":25,"ns":299999998} +{"crc":44033,"length":34,"msg_type":522,"payload":"BGwvEH8XRPtl6kJAe8DsH1aSXsBgQRaZWuQxwAECWwQPBg==","preamble":85,"sender":22963,"tow":271543300,"lat":37.83123722863001,"lon":-122.28650663490582,"height":-17.892007415708008,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":8662,"length":22,"msg_type":526,"payload":"BGwvEP3///8CAAAA9v////EAywIPAg==","preamble":85,"sender":22963,"tow":271543300,"n":-3,"e":2,"d":-10,"h_accuracy":241,"v_accuracy":715,"n_sats":15,"flags":2} +{"crc":56310,"length":15,"msg_type":520,"payload":"BGwvEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271543300,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":61576,"length":22,"msg_type":524,"payload":"BGwvEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271543300,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":63377,"length":6,"msg_type":528,"payload":"BGwvEP//","preamble":85,"sender":22963,"tow":271543300,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":64563,"length":237,"msg_type":97,"payload":"BQDUFQCzAgC5HwClAAAAAAAAGQDYDADOHQDTEgDNAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwLLGQHNDAG9HwGXEgHFHQHCAAAABQHBAAAAAAAAAAAAAAAAZAPVYgOvZgOuZQPPXQPOAAAAagO1aAPMYgSuZgTOAAAAZATHZQTCaAS7AAAAagSsIwzJGgysIgyjGAy8GQyfDAy5Ewy4FgzBAAAADA3TAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADA7CAAAAGQ6/Cw68GA7LAAAAHw6fIQ6ZGRTJGBTXCxTCHxSuDBTOAAAAIRSqAAAA","preamble":85,"sender":22963,"states":[{"mesid":{"sat":5,"code":0},"cn0":212},{"mesid":{"sat":21,"code":0},"cn0":179},{"mesid":{"sat":2,"code":0},"cn0":185},{"mesid":{"sat":31,"code":0},"cn0":165},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":25,"code":0},"cn0":216},{"mesid":{"sat":12,"code":0},"cn0":206},{"mesid":{"sat":29,"code":0},"cn0":211},{"mesid":{"sat":18,"code":0},"cn0":205},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":131,"code":2},"cn0":203},{"mesid":{"sat":25,"code":1},"cn0":205},{"mesid":{"sat":12,"code":1},"cn0":189},{"mesid":{"sat":31,"code":1},"cn0":151},{"mesid":{"sat":18,"code":1},"cn0":197},{"mesid":{"sat":29,"code":1},"cn0":194},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":5,"code":1},"cn0":193},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":100,"code":3},"cn0":213},{"mesid":{"sat":98,"code":3},"cn0":175},{"mesid":{"sat":102,"code":3},"cn0":174},{"mesid":{"sat":101,"code":3},"cn0":207},{"mesid":{"sat":93,"code":3},"cn0":206},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":106,"code":3},"cn0":181},{"mesid":{"sat":104,"code":3},"cn0":204},{"mesid":{"sat":98,"code":4},"cn0":174},{"mesid":{"sat":102,"code":4},"cn0":206},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":100,"code":4},"cn0":199},{"mesid":{"sat":101,"code":4},"cn0":194},{"mesid":{"sat":104,"code":4},"cn0":187},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":106,"code":4},"cn0":172},{"mesid":{"sat":35,"code":12},"cn0":201},{"mesid":{"sat":26,"code":12},"cn0":172},{"mesid":{"sat":34,"code":12},"cn0":163},{"mesid":{"sat":24,"code":12},"cn0":188},{"mesid":{"sat":25,"code":12},"cn0":159},{"mesid":{"sat":12,"code":12},"cn0":185},{"mesid":{"sat":19,"code":12},"cn0":184},{"mesid":{"sat":22,"code":12},"cn0":193},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":12,"code":13},"cn0":211},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":12,"code":14},"cn0":194},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":25,"code":14},"cn0":191},{"mesid":{"sat":11,"code":14},"cn0":188},{"mesid":{"sat":24,"code":14},"cn0":203},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":31,"code":14},"cn0":159},{"mesid":{"sat":33,"code":14},"cn0":153},{"mesid":{"sat":25,"code":20},"cn0":201},{"mesid":{"sat":24,"code":20},"cn0":215},{"mesid":{"sat":11,"code":20},"cn0":194},{"mesid":{"sat":31,"code":20},"cn0":174},{"mesid":{"sat":12,"code":20},"cn0":206},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":33,"code":20},"cn0":170},{"mesid":{"sat":0,"code":0},"cn0":0}]} +{"crc":50634,"length":11,"msg_type":258,"payload":"MghobC8QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271543400,"ns_residual":0,"flags":1} +{"crc":27075,"length":16,"msg_type":259,"payload":"EWhsLxDkBwMZAxkZ/oPXFw==","preamble":85,"sender":22963,"flags":17,"tow":271543400,"year":2020,"month":3,"day":25,"hours":3,"minutes":25,"seconds":25,"ns":399999998} +{"crc":38202,"length":34,"msg_type":522,"payload":"aGwvEJl/o/tl6kJABkX2H1aSXsD7cnoxT+ExwAECWwQPBg==","preamble":85,"sender":22963,"tow":271543400,"lat":37.83123727305719,"lon":-122.28650664376991,"height":-17.880114643473444,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":23001,"length":22,"msg_type":526,"payload":"aGwvEAYAAAD4/////v////EAywIPAg==","preamble":85,"sender":22963,"tow":271543400,"n":6,"e":-8,"d":-2,"h_accuracy":241,"v_accuracy":715,"n_sats":15,"flags":2} +{"crc":53276,"length":15,"msg_type":520,"payload":"aGwvEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271543400,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":46749,"length":22,"msg_type":524,"payload":"aGwvEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271543400,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":41834,"length":6,"msg_type":528,"payload":"aGwvEP//","preamble":85,"sender":22963,"tow":271543400,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":49809,"length":9,"msg_type":117,"payload":"/wAAAAAAAAAA","preamble":85,"sender":22963,"mask":255,"l1ca_bias":0,"l1p_bias":0,"l2ca_bias":0,"l2p_bias":0} +{"crc":16747,"length":11,"msg_type":258,"payload":"MgjMbC8QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271543500,"ns_residual":0,"flags":1} +{"crc":21284,"length":16,"msg_type":259,"payload":"EcxsLxDkBwMZAxkZ/mTNHQ==","preamble":85,"sender":22963,"flags":17,"tow":271543500,"year":2020,"month":3,"day":25,"hours":3,"minutes":25,"seconds":25,"ns":499999998} +{"crc":31394,"length":34,"msg_type":522,"payload":"zGwvEOF64ftl6kJAsfH4H1aSXsBK/gVxbd8xwAECWwQPBg==","preamble":85,"sender":22963,"tow":271543500,"lat":37.83123730191961,"lon":-122.28650664626072,"height":-17.8727636947281,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":23358,"length":22,"msg_type":526,"payload":"zGwvEPb/////////CgAAAPEAywIPAg==","preamble":85,"sender":22963,"tow":271543500,"n":-10,"e":-1,"d":10,"h_accuracy":241,"v_accuracy":715,"n_sats":15,"flags":2} +{"crc":33448,"length":15,"msg_type":520,"payload":"zGwvEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271543500,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":49636,"length":22,"msg_type":524,"payload":"zGwvEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271543500,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":17635,"length":6,"msg_type":528,"payload":"zGwvEP//","preamble":85,"sender":22963,"tow":271543500,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":42945,"length":11,"msg_type":258,"payload":"MggwbS8QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271543600,"ns_residual":0,"flags":1} +{"crc":31827,"length":16,"msg_type":259,"payload":"ETBtLxDkBwMZAxkZ/kXDIw==","preamble":85,"sender":22963,"flags":17,"tow":271543600,"year":2020,"month":3,"day":25,"hours":3,"minutes":25,"seconds":25,"ns":599999998} +{"crc":34088,"length":34,"msg_type":522,"payload":"MG0vEONATPxl6kJA3doDIFaSXsBAIpsLPt0xwAECWwQPBg==","preamble":85,"sender":22963,"tow":271543600,"lat":37.83123735163988,"lon":-122.28650665642222,"height":-17.864227986692867,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":34316,"length":22,"msg_type":526,"payload":"MG0vEAMAAAAAAAAAGAAAAPEAywIPAg==","preamble":85,"sender":22963,"tow":271543600,"n":3,"e":0,"d":24,"h_accuracy":241,"v_accuracy":715,"n_sats":15,"flags":2} +{"crc":59579,"length":15,"msg_type":520,"payload":"MG0vEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271543600,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":21972,"length":22,"msg_type":524,"payload":"MG0vEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271543600,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":29933,"length":6,"msg_type":528,"payload":"MG0vEP//","preamble":85,"sender":22963,"tow":271543600,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":9056,"length":11,"msg_type":258,"payload":"MgiUbS8QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271543700,"ns_residual":0,"flags":1} +{"crc":43524,"length":16,"msg_type":259,"payload":"EZRtLxDkBwMZAxkZ/ia5KQ==","preamble":85,"sender":22963,"flags":17,"tow":271543700,"year":2020,"month":3,"day":25,"hours":3,"minutes":25,"seconds":25,"ns":699999998} +{"crc":35563,"length":34,"msg_type":522,"payload":"lG0vEJYJ1/xl6kJACoQUIFaSXsBYQrOtrdoxwAECWwQPBg==","preamble":85,"sender":22963,"tow":271543700,"lat":37.831237416266205,"lon":-122.28650667193884,"height":-17.854212623848383,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":27653,"length":22,"msg_type":526,"payload":"lG0vEAoAAAD6////6/////EAywIPAg==","preamble":85,"sender":22963,"tow":271543700,"n":10,"e":-6,"d":-21,"h_accuracy":241,"v_accuracy":715,"n_sats":15,"flags":2} +{"crc":47631,"length":15,"msg_type":520,"payload":"lG0vEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271543700,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":8877,"length":22,"msg_type":524,"payload":"lG0vEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271543700,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":37732,"length":6,"msg_type":528,"payload":"lG0vEP//","preamble":85,"sender":22963,"tow":271543700,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":26227,"length":34,"msg_type":30583,"payload":"gwK/bC8QGZJ8AgB/9gBAACAAAwVsG/8ADAJAQAAAAADBUA==","preamble":85,"sender":22963,"sid":{"sat":131,"code":2},"tow":271543487,"message_type":25,"data":[146,124,2,0,127,246,0,64,0,32,0,3,5,108,27,255,0,12,2,64,64,0,0,0,0,193,80]} +{"crc":28245,"length":11,"msg_type":258,"payload":"Mgj4bS8QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271543800,"ns_residual":0,"flags":1} +{"crc":55563,"length":16,"msg_type":259,"payload":"EfhtLxDkBwMZAxkZ/gevLw==","preamble":85,"sender":22963,"flags":17,"tow":271543800,"year":2020,"month":3,"day":25,"hours":3,"minutes":25,"seconds":25,"ns":799999998} +{"crc":10184,"length":34,"msg_type":522,"payload":"+G0vEAYALP1l6kJAwzgPIFaSXsCKyRSUGtkxwAECWwQPBg==","preamble":85,"sender":22963,"tow":271543800,"lat":37.83123745583002,"lon":-122.28650666700837,"height":-17.848061804842963,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":11443,"length":22,"msg_type":526,"payload":"+G0vEPz///8GAAAA/P////EAywIPAg==","preamble":85,"sender":22963,"tow":271543800,"n":-4,"e":6,"d":-4,"h_accuracy":241,"v_accuracy":715,"n_sats":15,"flags":2} +{"crc":45541,"length":15,"msg_type":520,"payload":"+G0vEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271543800,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":25784,"length":22,"msg_type":524,"payload":"+G0vEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271543800,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":51103,"length":6,"msg_type":528,"payload":"+G0vEP//","preamble":85,"sender":22963,"tow":271543800,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":14472,"length":237,"msg_type":97,"payload":"BQDVFQC0AgC6HwCnAAAAAAAAGQDZDADQHQDUEgDOAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwLMGQHNDAG9HwGWEgHFHQHCAAAABQHBAAAAAAAAAAAAAAAACwPVCQOvFAOuBQPPCgPPAAAABAO1FQPMCQSuFATOAAAACwTHBQTDAAS7AAAABASsIwzJGgysIgyiGAy8GQyfDAy5Ewy4FgzBAAAADA3SAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADA7CAAAAGQ6/Cw68GA7LAAAAHw6fIQ6YGRTJGBTXCxTCHxSvDBTOAAAAIRSqAAAA","preamble":85,"sender":22963,"states":[{"mesid":{"sat":5,"code":0},"cn0":213},{"mesid":{"sat":21,"code":0},"cn0":180},{"mesid":{"sat":2,"code":0},"cn0":186},{"mesid":{"sat":31,"code":0},"cn0":167},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":25,"code":0},"cn0":217},{"mesid":{"sat":12,"code":0},"cn0":208},{"mesid":{"sat":29,"code":0},"cn0":212},{"mesid":{"sat":18,"code":0},"cn0":206},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":131,"code":2},"cn0":204},{"mesid":{"sat":25,"code":1},"cn0":205},{"mesid":{"sat":12,"code":1},"cn0":189},{"mesid":{"sat":31,"code":1},"cn0":150},{"mesid":{"sat":18,"code":1},"cn0":197},{"mesid":{"sat":29,"code":1},"cn0":194},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":5,"code":1},"cn0":193},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":11,"code":3},"cn0":213},{"mesid":{"sat":9,"code":3},"cn0":175},{"mesid":{"sat":20,"code":3},"cn0":174},{"mesid":{"sat":5,"code":3},"cn0":207},{"mesid":{"sat":10,"code":3},"cn0":207},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":4,"code":3},"cn0":181},{"mesid":{"sat":21,"code":3},"cn0":204},{"mesid":{"sat":9,"code":4},"cn0":174},{"mesid":{"sat":20,"code":4},"cn0":206},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":11,"code":4},"cn0":199},{"mesid":{"sat":5,"code":4},"cn0":195},{"mesid":{"sat":0,"code":4},"cn0":187},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":4,"code":4},"cn0":172},{"mesid":{"sat":35,"code":12},"cn0":201},{"mesid":{"sat":26,"code":12},"cn0":172},{"mesid":{"sat":34,"code":12},"cn0":162},{"mesid":{"sat":24,"code":12},"cn0":188},{"mesid":{"sat":25,"code":12},"cn0":159},{"mesid":{"sat":12,"code":12},"cn0":185},{"mesid":{"sat":19,"code":12},"cn0":184},{"mesid":{"sat":22,"code":12},"cn0":193},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":12,"code":13},"cn0":210},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":12,"code":14},"cn0":194},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":25,"code":14},"cn0":191},{"mesid":{"sat":11,"code":14},"cn0":188},{"mesid":{"sat":24,"code":14},"cn0":203},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":31,"code":14},"cn0":159},{"mesid":{"sat":33,"code":14},"cn0":152},{"mesid":{"sat":25,"code":20},"cn0":201},{"mesid":{"sat":24,"code":20},"cn0":215},{"mesid":{"sat":11,"code":20},"cn0":194},{"mesid":{"sat":31,"code":20},"cn0":175},{"mesid":{"sat":12,"code":20},"cn0":206},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":33,"code":20},"cn0":170},{"mesid":{"sat":0,"code":0},"cn0":0}]} +{"crc":34187,"length":128,"msg_type":151,"payload":"AgAaHQUAKzUMAFEtFQB9GRkAbUYaAKEBHQChNx8AlQ4EAxUWBQMyIQkDXw4KA3EpCwOYJQwDqgMTAyIHFAMMMRUDlSUMDJQpEwwjIBQMDwIWDEMkGAyCIxkMnQ4aDGcVIgyOESMMIi0LDosyDA4PPBgObDYZDpcpHw5VESEOIA8=","preamble":85,"sender":22963,"azel":[{"sid":{"sat":2,"code":0},"az":26,"el":29},{"sid":{"sat":5,"code":0},"az":43,"el":53},{"sid":{"sat":12,"code":0},"az":81,"el":45},{"sid":{"sat":21,"code":0},"az":125,"el":25},{"sid":{"sat":25,"code":0},"az":109,"el":70},{"sid":{"sat":26,"code":0},"az":161,"el":1},{"sid":{"sat":29,"code":0},"az":161,"el":55},{"sid":{"sat":31,"code":0},"az":149,"el":14},{"sid":{"sat":4,"code":3},"az":21,"el":22},{"sid":{"sat":5,"code":3},"az":50,"el":33},{"sid":{"sat":9,"code":3},"az":95,"el":14},{"sid":{"sat":10,"code":3},"az":113,"el":41},{"sid":{"sat":11,"code":3},"az":152,"el":37},{"sid":{"sat":12,"code":3},"az":170,"el":3},{"sid":{"sat":19,"code":3},"az":34,"el":7},{"sid":{"sat":20,"code":3},"az":12,"el":49},{"sid":{"sat":21,"code":3},"az":149,"el":37},{"sid":{"sat":12,"code":12},"az":148,"el":41},{"sid":{"sat":19,"code":12},"az":35,"el":32},{"sid":{"sat":20,"code":12},"az":15,"el":2},{"sid":{"sat":22,"code":12},"az":67,"el":36},{"sid":{"sat":24,"code":12},"az":130,"el":35},{"sid":{"sat":25,"code":12},"az":157,"el":14},{"sid":{"sat":26,"code":12},"az":103,"el":21},{"sid":{"sat":34,"code":12},"az":142,"el":17},{"sid":{"sat":35,"code":12},"az":34,"el":45},{"sid":{"sat":11,"code":14},"az":139,"el":50},{"sid":{"sat":12,"code":14},"az":15,"el":60},{"sid":{"sat":24,"code":14},"az":108,"el":54},{"sid":{"sat":25,"code":14},"az":151,"el":41},{"sid":{"sat":31,"code":14},"az":85,"el":17},{"sid":{"sat":33,"code":14},"az":32,"el":15}]} +{"crc":8833,"length":11,"msg_type":258,"payload":"Mghcbi8QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271543900,"ns_residual":0,"flags":1} +{"crc":58781,"length":16,"msg_type":259,"payload":"EVxuLxDkBwMZAxkZ/uikNQ==","preamble":85,"sender":22963,"flags":17,"tow":271543900,"year":2020,"month":3,"day":25,"hours":3,"minutes":25,"seconds":25,"ns":899999998} +{"crc":59023,"length":34,"msg_type":522,"payload":"XG4vEOvKfP1l6kJAVPkfIFaSXsB44lSlj9YxwAECWwQPBg==","preamble":85,"sender":22963,"tow":271543900,"lat":37.83123749345199,"lon":-122.28650668261008,"height":-17.83812936136607,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":64660,"length":22,"msg_type":526,"payload":"XG4vEP////8AAAAA+f////EAywIPAg==","preamble":85,"sender":22963,"tow":271543900,"n":-1,"e":0,"d":-7,"h_accuracy":241,"v_accuracy":715,"n_sats":15,"flags":2} +{"crc":28402,"length":15,"msg_type":520,"payload":"XG4vEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271543900,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":32250,"length":22,"msg_type":524,"payload":"XG4vEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271543900,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":52932,"length":6,"msg_type":528,"payload":"XG4vEP//","preamble":85,"sender":22963,"tow":271543900,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":53528,"length":249,"msg_type":74,"payload":"wG4vEAAAAAAyCEBAzbQ+OimXBv80/7HVDw8FACOwDUUD8EEHO3QI27QPDxUA8AD9RScXWwdeT/Zbuw8PAgDDQgRJ35GsB0Nk/q2oDw8fAOnWKj1YwW0GW4f7MtkPDxkA5qjBQO1SzgbzXfSc0A8PDAB/T8o+7GuZBg/GBUvUDw8dABzXKj0xaAIFcoT8HM0PDxkBsajBQM+nTQUQ7/acvQ8PDAEIQgRJatX6BYvA/r2XDw8fASRPyj6zbiQFJX8E7cMPDx0B5cy0PuCrIgXfYv/twQ8PBQGrkfc+J8O6BoJ1BC7VDw8LA0n950SC7lsHbcfuRK8PDwkD","preamble":85,"sender":22963,"header":{"t":{"tow":271544000,"ns_residual":0,"wn":2098},"n_obs":64},"obs":[{"P":1052036416,"L":{"i":110569786,"f":255},"D":{"i":-204,"f":177},"cn0":213,"lock":15,"flags":15,"sid":{"sat":5,"code":0}},{"P":1158524963,"L":{"i":121761795,"f":59},"D":{"i":2164,"f":219},"cn0":180,"lock":15,"flags":15,"sid":{"sat":21,"code":0}},{"P":1174208752,"L":{"i":123410215,"f":94},"D":{"i":-2481,"f":91},"cn0":187,"lock":15,"flags":15,"sid":{"sat":2,"code":0}},{"P":1225016003,"L":{"i":128750047,"f":67},"D":{"i":-412,"f":173},"cn0":168,"lock":15,"flags":15,"sid":{"sat":31,"code":0}},{"P":1026217705,"L":{"i":107856216,"f":91},"D":{"i":-1145,"f":50},"cn0":217,"lock":15,"flags":15,"sid":{"sat":25,"code":0}},{"P":1086433510,"L":{"i":114184941,"f":243},"D":{"i":-2979,"f":156},"cn0":208,"lock":15,"flags":15,"sid":{"sat":12,"code":0}},{"P":1053446015,"L":{"i":110717932,"f":15},"D":{"i":1478,"f":75},"cn0":212,"lock":15,"flags":15,"sid":{"sat":29,"code":0}},{"P":1026217756,"L":{"i":84043825,"f":114},"D":{"i":-892,"f":28},"cn0":205,"lock":15,"flags":15,"sid":{"sat":25,"code":1}},{"P":1086433457,"L":{"i":88975311,"f":16},"D":{"i":-2321,"f":156},"cn0":189,"lock":15,"flags":15,"sid":{"sat":12,"code":1}},{"P":1225015816,"L":{"i":100324714,"f":139},"D":{"i":-320,"f":189},"cn0":151,"lock":15,"flags":15,"sid":{"sat":31,"code":1}},{"P":1053445924,"L":{"i":86273715,"f":37},"D":{"i":1151,"f":237},"cn0":195,"lock":15,"flags":15,"sid":{"sat":29,"code":1}},{"P":1052036325,"L":{"i":86158304,"f":223},"D":{"i":-158,"f":237},"cn0":193,"lock":15,"flags":15,"sid":{"sat":5,"code":1}},{"P":1056412075,"L":{"i":112902951,"f":130},"D":{"i":1141,"f":46},"cn0":213,"lock":15,"flags":15,"sid":{"sat":11,"code":3}},{"P":1156054345,"L":{"i":123465346,"f":109},"D":{"i":-4409,"f":68},"cn0":175,"lock":15,"flags":15,"sid":{"sat":9,"code":3}}]} +{"crc":30205,"length":249,"msg_type":74,"payload":"wG4vEAAAAAAyCEEZgDI9TISLBtRA++KuDw8UAw/3/z9dotcGV4II8s8PDwUDlFByPlhSqAavC/TJzw8PCgNP7QxDPlkuB7jE+si1Dw8EA5bHIz/l6cEGE1AG38wPDxUDAv7nRMRHuQVumvKerQ8PCQRCgTI9Ji4XBZdP/AfODw8UBMiS9z4p7TsFD3cDjMcPDwsEQPj/P9phUgWgngb9ww8PBQQQ7gxDmNOVBcbu+2usDw8EBLvBm0Xq1z8HeiH6R8kPDyMMmoYASnb7tAdYPPTFrA8PGgzrtwxMJpPrB8vICHiiDw8iDLoupkdIQHYHzdz6MLwPDxgM","preamble":85,"sender":22963,"header":{"t":{"tow":271544000,"ns_residual":0,"wn":2098},"n_obs":65},"obs":[{"P":1026719769,"L":{"i":109806668,"f":212},"D":{"i":-1216,"f":226},"cn0":174,"lock":15,"flags":15,"sid":{"sat":20,"code":3}},{"P":1073739535,"L":{"i":114795101,"f":87},"D":{"i":2178,"f":242},"cn0":207,"lock":15,"flags":15,"sid":{"sat":5,"code":3}},{"P":1047679124,"L":{"i":111694424,"f":175},"D":{"i":-3061,"f":201},"cn0":207,"lock":15,"flags":15,"sid":{"sat":10,"code":3}},{"P":1124920655,"L":{"i":120478014,"f":184},"D":{"i":-1340,"f":200},"cn0":181,"lock":15,"flags":15,"sid":{"sat":4,"code":3}},{"P":1059309462,"L":{"i":113371621,"f":19},"D":{"i":1616,"f":223},"cn0":204,"lock":15,"flags":15,"sid":{"sat":21,"code":3}},{"P":1156054530,"L":{"i":96028612,"f":110},"D":{"i":-3430,"f":158},"cn0":173,"lock":15,"flags":15,"sid":{"sat":9,"code":4}},{"P":1026720066,"L":{"i":85405222,"f":151},"D":{"i":-945,"f":7},"cn0":206,"lock":15,"flags":15,"sid":{"sat":20,"code":4}},{"P":1056412360,"L":{"i":87813417,"f":15},"D":{"i":887,"f":140},"cn0":199,"lock":15,"flags":15,"sid":{"sat":11,"code":4}},{"P":1073739840,"L":{"i":89285082,"f":160},"D":{"i":1694,"f":253},"cn0":195,"lock":15,"flags":15,"sid":{"sat":5,"code":4}},{"P":1124920848,"L":{"i":93705112,"f":198},"D":{"i":-1042,"f":107},"cn0":172,"lock":15,"flags":15,"sid":{"sat":4,"code":4}},{"P":1167835579,"L":{"i":121624554,"f":122},"D":{"i":-1503,"f":71},"cn0":201,"lock":15,"flags":15,"sid":{"sat":35,"code":12}},{"P":1241548442,"L":{"i":129301366,"f":88},"D":{"i":-3012,"f":197},"cn0":172,"lock":15,"flags":15,"sid":{"sat":26,"code":12}},{"P":1275901931,"L":{"i":132879142,"f":203},"D":{"i":2248,"f":120},"cn0":162,"lock":15,"flags":15,"sid":{"sat":34,"code":12}},{"P":1202073274,"L":{"i":125190216,"f":205},"D":{"i":-1316,"f":48},"cn0":188,"lock":15,"flags":15,"sid":{"sat":24,"code":12}}]} +{"crc":54459,"length":249,"msg_type":74,"payload":"wG4vEAAAAAAyCEKtrQ1N7VUGCIMdBeqfDw8ZDEPhR0WPGzcHh0kGLrkPDwwMVolER/IUbAeXzf7huQ8PEwypnVRHocFtB1NJCdHBDw8WDPPgR0UKTZQFZ9sEbNIPDwwNxHsLQhL98Abu+vuGwg8PDA5VWBxLsOnkByEzBFa/Dw8ZDi6jHEcGUnkHihIEzrwPDwsO2jYvQ1ymDwdeI/mjyw8PGA4ThlVRYluMCAOZ8/efDw8fDhur/1FAPZ4IqaX33ZgPDyEORFgcS9t9DAbPNwO5yQ8PGRQJOS9DVBVpBXS9+qnXDw8YFHOiHEfkDLoF5B4Dd8IPDwsU","preamble":85,"sender":22963,"header":{"t":{"tow":271544000,"ns_residual":0,"wn":2098},"n_obs":66},"obs":[{"P":1292742061,"L":{"i":134632941,"f":131},"D":{"i":1309,"f":234},"cn0":159,"lock":15,"flags":15,"sid":{"sat":25,"code":12}},{"P":1162338627,"L":{"i":121052047,"f":135},"D":{"i":1609,"f":46},"cn0":185,"lock":15,"flags":15,"sid":{"sat":12,"code":12}},{"P":1195673942,"L":{"i":124523762,"f":151},"D":{"i":-307,"f":225},"cn0":185,"lock":15,"flags":15,"sid":{"sat":19,"code":12}},{"P":1196727721,"L":{"i":124633505,"f":83},"D":{"i":2377,"f":209},"cn0":193,"lock":15,"flags":15,"sid":{"sat":22,"code":12}},{"P":1162338547,"L":{"i":93605130,"f":103},"D":{"i":1243,"f":108},"cn0":210,"lock":15,"flags":15,"sid":{"sat":12,"code":13}},{"P":1108048836,"L":{"i":116456722,"f":238},"D":{"i":-1030,"f":134},"cn0":194,"lock":15,"flags":15,"sid":{"sat":12,"code":14}},{"P":1260148821,"L":{"i":132442544,"f":33},"D":{"i":1075,"f":86},"cn0":191,"lock":15,"flags":15,"sid":{"sat":25,"code":14}},{"P":1193059118,"L":{"i":125391366,"f":138},"D":{"i":1042,"f":206},"cn0":188,"lock":15,"flags":15,"sid":{"sat":11,"code":14}},{"P":1127167706,"L":{"i":118466140,"f":94},"D":{"i":-1757,"f":163},"cn0":203,"lock":15,"flags":15,"sid":{"sat":24,"code":14}},{"P":1364559379,"L":{"i":143416162,"f":3},"D":{"i":-3175,"f":247},"cn0":159,"lock":15,"flags":15,"sid":{"sat":31,"code":14}},{"P":1375709979,"L":{"i":144588096,"f":169},"D":{"i":-2139,"f":221},"cn0":152,"lock":15,"flags":15,"sid":{"sat":33,"code":14}},{"P":1260148804,"L":{"i":101481947,"f":207},"D":{"i":823,"f":185},"cn0":201,"lock":15,"flags":15,"sid":{"sat":25,"code":20}},{"P":1127168265,"L":{"i":90772820,"f":116},"D":{"i":-1347,"f":169},"cn0":215,"lock":15,"flags":15,"sid":{"sat":24,"code":20}},{"P":1193058931,"L":{"i":96079076,"f":228},"D":{"i":798,"f":119},"cn0":194,"lock":15,"flags":15,"sid":{"sat":11,"code":20}}]} +{"crc":28052,"length":62,"msg_type":74,"payload":"wG4vEAAAAAAyCEOAhlVRK8uMBnJ/9s+vDw8fFC57C0LQllEFBur8us4PDwwUAav/UQB/mgZTl/l8qg8PIRQ=","preamble":85,"sender":22963,"header":{"t":{"tow":271544000,"ns_residual":0,"wn":2098},"n_obs":67},"obs":[{"P":1364559488,"L":{"i":109890347,"f":114},"D":{"i":-2433,"f":207},"cn0":175,"lock":15,"flags":15,"sid":{"sat":31,"code":20}},{"P":1108048686,"L":{"i":89233104,"f":6},"D":{"i":-790,"f":186},"cn0":206,"lock":15,"flags":15,"sid":{"sat":12,"code":20}},{"P":1375709953,"L":{"i":110788352,"f":83},"D":{"i":-1641,"f":124},"cn0":170,"lock":15,"flags":15,"sid":{"sat":33,"code":20}}]} +{"crc":49809,"length":9,"msg_type":117,"payload":"/wAAAAAAAAAA","preamble":85,"sender":22963,"mask":255,"l1ca_bias":0,"l1p_bias":0,"l2ca_bias":0,"l2p_bias":0} +{"crc":31709,"length":11,"msg_type":258,"payload":"MgjAbi8QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271544000,"ns_residual":0,"flags":1} +{"crc":13648,"length":16,"msg_type":259,"payload":"EcBuLxDkBwMZAxkZ/smaOw==","preamble":85,"sender":22963,"flags":17,"tow":271544000,"year":2020,"month":3,"day":25,"hours":3,"minutes":25,"seconds":25,"ns":999999998} +{"crc":64869,"length":34,"msg_type":522,"payload":"wG4vELJa0/1l6kJAyPAhIFaSXsCwqzFrk9UxwAECWwQPBg==","preamble":85,"sender":22963,"tow":271544000,"lat":37.83123753376039,"lon":-122.28650668444163,"height":-17.83428068125403,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":58285,"length":22,"msg_type":526,"payload":"wG4vEPz///8BAAAAFAAAAPEAywIPAg==","preamble":85,"sender":22963,"tow":271544000,"n":-4,"e":1,"d":20,"h_accuracy":241,"v_accuracy":715,"n_sats":15,"flags":2} +{"crc":51357,"length":15,"msg_type":520,"payload":"wG4vEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271544000,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":33739,"length":22,"msg_type":524,"payload":"wG4vEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271544000,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":2947,"length":6,"msg_type":528,"payload":"wG4vEP//","preamble":85,"sender":22963,"tow":271544000,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":40942,"length":4,"msg_type":65535,"payload":"AAUCgA==","preamble":85,"sender":22963,"flags":2147616000} +{"crc":2168,"length":24,"msg_type":72,"payload":"UO0a3iqORMHK1UJhIkRQwc9nFIPvrk1B","preamble":85,"sender":22963,"x":-2694229.735196747,"y":-4264073.519704292,"z":3890655.0240602265} +{"crc":47991,"length":26,"msg_type":23,"payload":"bWFpbgAAAAAAAAAAAAAAAAAAAAAAAAx1AAA=","preamble":85,"sender":22963,"name":"main\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":0,"stack_free":29964} +{"crc":35155,"length":26,"msg_type":23,"payload":"aWRsZQAAAAAAAAAAAAAAAAAAAABIAXwAAAA=","preamble":85,"sender":22963,"name":"idle\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":328,"stack_free":124} +{"crc":18957,"length":26,"msg_type":23,"payload":"cnBtc2cAAAAAAAAAAAAAAAAAAAABAOQNAAA=","preamble":85,"sender":22963,"name":"rpmsg\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":1,"stack_free":3556} +{"crc":51784,"length":26,"msg_type":23,"payload":"U0JQAAAAAAAAAAAAAAAAAAAAAAAAAPz/AAA=","preamble":85,"sender":22963,"name":"SBP\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":0,"stack_free":65532} +{"crc":33651,"length":26,"msg_type":23,"payload":"TkFQAAAAAAAAAAAAAAAAAAAAAAAAAASAAAA=","preamble":85,"sender":22963,"name":"NAP\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":0,"stack_free":32772} +{"crc":61814,"length":26,"msg_type":23,"payload":"bWFuYWdlIFBWAAAAAAAAAAAAAAAAACwEAAA=","preamble":85,"sender":22963,"name":"manage PV\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":0,"stack_free":1068} +{"crc":14252,"length":26,"msg_type":23,"payload":"SU1VAAAAAAAAAAAAAAAAAAAAAAAAAPQHAAA=","preamble":85,"sender":22963,"name":"IMU\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":0,"stack_free":2036} +{"crc":18976,"length":26,"msg_type":23,"payload":"SU1VIGF1eAAAAAAAAAAAAAAAAAAAAEwIAAA=","preamble":85,"sender":22963,"name":"IMU aux\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":0,"stack_free":2124} +{"crc":26120,"length":26,"msg_type":23,"payload":"bmRiAAAAAAAAAAAAAAAAAAAAAAAAAFAMAAA=","preamble":85,"sender":22963,"name":"ndb\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":0,"stack_free":3152} +{"crc":9794,"length":26,"msg_type":23,"payload":"TkFQIFRyYWNraW5nAAAAAAAAAAAoAdR3AAA=","preamble":85,"sender":22963,"name":"NAP Tracking\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":296,"stack_free":30676} +{"crc":55602,"length":26,"msg_type":23,"payload":"ZGVjb2RlAAAAAAAAAAAAAAAAAAAJANQGAAA=","preamble":85,"sender":22963,"name":"decode\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":9,"stack_free":1748} +{"crc":7596,"length":26,"msg_type":23,"payload":"bWFuYWdlIGFjcQAAAAAAAAAAAADJAKR3AAA=","preamble":85,"sender":22963,"name":"manage acq\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":201,"stack_free":30628} +{"crc":58531,"length":26,"msg_type":23,"payload":"c3lzdGVtIG1vbml0b3IAAAAAAAAAACwGAAA=","preamble":85,"sender":22963,"name":"system monitor\u0000\u0000\u0000\u0000\u0000\u0000","cpu":0,"stack_free":1580} +{"crc":44438,"length":26,"msg_type":23,"payload":"V2F0Y2hkb2cAAAAAAAAAAAAAAAAAAOQDAAA=","preamble":85,"sender":22963,"name":"Watchdog\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":0,"stack_free":996} +{"crc":46399,"length":26,"msg_type":23,"payload":"c3RhcmxpbmcAAAAAAAAAAAAAAACXAPz/AAA=","preamble":85,"sender":22963,"name":"starling\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":151,"stack_free":65532} +{"crc":57561,"length":26,"msg_type":23,"payload":"bWVfY2FsY19wdnQAAAAAAAAAAAAJAIwjAAA=","preamble":85,"sender":22963,"name":"me_calc_pvt\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":9,"stack_free":9100} +{"crc":38576,"length":26,"msg_type":23,"payload":"UFBTAAAAAAAAAAAAAAAAAAAAAAAAAEgHAAA=","preamble":85,"sender":22963,"name":"PPS\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","cpu":0,"stack_free":1864} +{"crc":50933,"length":26,"msg_type":23,"payload":"c3BlY3RydW0gYW5hbHl6ZXIAAAAAANQPAAA=","preamble":85,"sender":22963,"name":"spectrum analyzer\u0000\u0000\u0000","cpu":0,"stack_free":4052} +{"crc":59254,"length":11,"msg_type":258,"payload":"Mggkby8QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271544100,"ns_residual":0,"flags":1} +{"crc":3200,"length":16,"msg_type":259,"payload":"ESRvLxDkBwMZAxka/uD1BQ==","preamble":85,"sender":22963,"flags":17,"tow":271544100,"year":2020,"month":3,"day":25,"hours":3,"minutes":25,"seconds":26,"ns":99999998} +{"crc":22461,"length":34,"msg_type":522,"payload":"JG8vEAU+Ff5l6kJA7mYfIFaSXsBHsZY3PdMxwAECWwQPBg==","preamble":85,"sender":22963,"tow":271544100,"lat":37.83123756444187,"lon":-122.28650668207749,"height":-17.825152849474104,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":17133,"length":22,"msg_type":526,"payload":"JG8vEPr///8FAAAA+v////EAywIPAg==","preamble":85,"sender":22963,"tow":271544100,"n":-6,"e":5,"d":-6,"h_accuracy":241,"v_accuracy":715,"n_sats":15,"flags":2} +{"crc":52033,"length":15,"msg_type":520,"payload":"JG8vEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271544100,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":62494,"length":22,"msg_type":524,"payload":"JG8vEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271544100,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":11339,"length":6,"msg_type":528,"payload":"JG8vEP//","preamble":85,"sender":22963,"tow":271544100,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":18984,"length":11,"msg_type":258,"payload":"MgiIby8QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271544200,"ns_residual":0,"flags":1} +{"crc":2357,"length":16,"msg_type":259,"payload":"EYhvLxDkBwMZAxka/sHrCw==","preamble":85,"sender":22963,"flags":17,"tow":271544200,"year":2020,"month":3,"day":25,"hours":3,"minutes":25,"seconds":26,"ns":199999998} +{"crc":5270,"length":34,"msg_type":522,"payload":"iG8vENyteP5l6kJAm+EyIFaSXsDjk4idVNExwAECWwQPBg==","preamble":85,"sender":22963,"tow":271544200,"lat":37.831237610745774,"lon":-122.28650670021891,"height":-17.81769737800995,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":64051,"length":22,"msg_type":526,"payload":"iG8vEAQAAADy////7f////EAywIPAg==","preamble":85,"sender":22963,"tow":271544200,"n":4,"e":-14,"d":-19,"h_accuracy":241,"v_accuracy":715,"n_sats":15,"flags":2} +{"crc":48816,"length":15,"msg_type":520,"payload":"iG8vEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271544200,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":56772,"length":22,"msg_type":524,"payload":"iG8vEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271544200,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":50816,"length":6,"msg_type":528,"payload":"iG8vEP//","preamble":85,"sender":22963,"tow":271544200,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":12002,"length":11,"msg_type":258,"payload":"Mgjsby8QAAAAAAE=","preamble":85,"sender":22963,"wn":2098,"tow":271544300,"ns_residual":0,"flags":1} +{"crc":47889,"length":16,"msg_type":259,"payload":"EexvLxDkBwMZAxka/qLhEQ==","preamble":85,"sender":22963,"flags":17,"tow":271544300,"year":2020,"month":3,"day":25,"hours":3,"minutes":25,"seconds":26,"ns":299999998} +{"crc":23694,"length":34,"msg_type":522,"payload":"7G8vEJpq6P5l6kJA6PY2IFaSXsAQWdxUBdAxwAECWwQPBg==","preamble":85,"sender":22963,"tow":271544300,"lat":37.8312376627775,"lon":-122.28650670402169,"height":-17.812581352039217,"h_accuracy":513,"v_accuracy":1115,"n_sats":15,"flags":6} +{"crc":16364,"length":22,"msg_type":526,"payload":"7G8vEA4AAAD6////BAAAAPEAywIPAg==","preamble":85,"sender":22963,"tow":271544300,"n":14,"e":-6,"d":4,"h_accuracy":241,"v_accuracy":715,"n_sats":15,"flags":2} +{"crc":37407,"length":15,"msg_type":520,"payload":"7G8vEJsAhwBMAEgAcgAG","preamble":85,"sender":22963,"tow":271544300,"gdop":155,"pdop":135,"tdop":76,"hdop":72,"vdop":114,"flags":6} +{"crc":50546,"length":22,"msg_type":524,"payload":"7G8vEAAAAAAAAAAAAAAAAAAAAAAAAA==","preamble":85,"sender":22963,"tow":271544300,"n":0,"e":0,"d":0,"h_accuracy":0,"v_accuracy":0,"n_sats":0,"flags":0} +{"crc":40761,"length":6,"msg_type":528,"payload":"7G8vEP//","preamble":85,"sender":22963,"tow":271544300,"age":65535} +{"crc":51630,"length":4,"msg_type":65282,"payload":"AAAAAA==","preamble":85,"sender":22963,"flags":0,"latency":0,"num_signals":0,"source":""} +{"crc":54351,"length":237,"msg_type":97,"payload":"BQDWFQC1AgC7HwCoAAAAAAAAGQDaDADQHQDVEgDPAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwLOGQHNDAG9HwGWEgHFHQHCAAAABQHBAAAAAAAAAAAAAAAAZAPVYgOvZgOuZQPQXQPPAAAAagO1aAPMYgSuZgTOAAAAZATHZQTDaAS7AAAAagSsIwzJGgysIgyiGAy8GQyfDAy5Ewy5FgzBAAAADA3SAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADA7CAAAAGQ6/Cw68GA7LAAAAHw6fIQ6YGRTJGBTXCxTCHxSvDBTOAAAAIRSrAAAA","preamble":85,"sender":22963,"states":[{"mesid":{"sat":5,"code":0},"cn0":214},{"mesid":{"sat":21,"code":0},"cn0":181},{"mesid":{"sat":2,"code":0},"cn0":187},{"mesid":{"sat":31,"code":0},"cn0":168},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":25,"code":0},"cn0":218},{"mesid":{"sat":12,"code":0},"cn0":208},{"mesid":{"sat":29,"code":0},"cn0":213},{"mesid":{"sat":18,"code":0},"cn0":207},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":131,"code":2},"cn0":206},{"mesid":{"sat":25,"code":1},"cn0":205},{"mesid":{"sat":12,"code":1},"cn0":189},{"mesid":{"sat":31,"code":1},"cn0":150},{"mesid":{"sat":18,"code":1},"cn0":197},{"mesid":{"sat":29,"code":1},"cn0":194},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":5,"code":1},"cn0":193},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":100,"code":3},"cn0":213},{"mesid":{"sat":98,"code":3},"cn0":175},{"mesid":{"sat":102,"code":3},"cn0":174},{"mesid":{"sat":101,"code":3},"cn0":208},{"mesid":{"sat":93,"code":3},"cn0":207},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":106,"code":3},"cn0":181},{"mesid":{"sat":104,"code":3},"cn0":204},{"mesid":{"sat":98,"code":4},"cn0":174},{"mesid":{"sat":102,"code":4},"cn0":206},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":100,"code":4},"cn0":199},{"mesid":{"sat":101,"code":4},"cn0":195},{"mesid":{"sat":104,"code":4},"cn0":187},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":106,"code":4},"cn0":172},{"mesid":{"sat":35,"code":12},"cn0":201},{"mesid":{"sat":26,"code":12},"cn0":172},{"mesid":{"sat":34,"code":12},"cn0":162},{"mesid":{"sat":24,"code":12},"cn0":188},{"mesid":{"sat":25,"code":12},"cn0":159},{"mesid":{"sat":12,"code":12},"cn0":185},{"mesid":{"sat":19,"code":12},"cn0":185},{"mesid":{"sat":22,"code":12},"cn0":193},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":12,"code":13},"cn0":210},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":12,"code":14},"cn0":194},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":25,"code":14},"cn0":191},{"mesid":{"sat":11,"code":14},"cn0":188},{"mesid":{"sat":24,"code":14},"cn0":203},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":31,"code":14},"cn0":159},{"mesid":{"sat":33,"code":14},"cn0":152},{"mesid":{"sat":25,"code":20},"cn0":201},{"mesid":{"sat":24,"code":20},"cn0":215},{"mesid":{"sat":11,"code":20},"cn0":194},{"mesid":{"sat":31,"code":20},"cn0":175},{"mesid":{"sat":12,"code":20},"cn0":206},{"mesid":{"sat":0,"code":0},"cn0":0},{"mesid":{"sat":33,"code":20},"cn0":171},{"mesid":{"sat":0,"code":0},"cn0":0}]} diff --git a/test_data/roundtrip_float_compat.json b/test_data/roundtrip_float_compat.json new file mode 100644 index 0000000000..1c2db5e2df --- /dev/null +++ b/test_data/roundtrip_float_compat.json @@ -0,0 +1,5000 @@ +{"length":92,"gamma":0,"vel":[2992.52986907959,-1104.3386459350586,-178.58600616455078],"iod":100,"preamble":85,"sender":22963,"d_tau":4.656613e-9,"msg_type":139,"payload":"FANGIgQAMggAAIBAYAkAAAEAAAAAAECe1TkAAKAxAAAAuA7SQcEAAEBAz29jwQAA4GdQM3ZBAAAASw9hp0AAAADGWkGRwAAAAJDAUmbAAAB6NQAAAIAAAPq1CmQ=","pos":[-2335773.4375,-1.01904580078125e7,2.32788544921875e7],"crc":33330,"common":{"health_bits":0,"fit_interval":2400,"valid":1,"sid":{"sat":20,"code":3},"toe":{"wn":2098,"tow":270918},"ura":4},"tau":4.074443e-4,"fcn":10,"acc":[9.313226e-7,0,-1.8626451e-6]} +{"length":92,"gamma":9.094947e-13,"vel":[-301.24950408935547,848.7043380737305,3434.189796447754],"iod":100,"preamble":85,"sender":22963,"d_tau":2.7939677e-9,"msg_type":139,"payload":"BQNGIgQAMggAAIBAYAkAAAEAAACAKwC7RrgAAEAxAACAPjXzWEEAADCIaLR2wQAAAJfDqlhBAAAA+P3TcsAAAAB8ooWKQAAAAC1h1KpAAAB6NgAA+rUAAHq1CWQ=","pos":[6540500.9765625,-2.380762451171875e7,6466318.359375],"crc":53984,"common":{"health_bits":0,"fit_interval":2400,"valid":1,"sid":{"sat":5,"code":3},"toe":{"wn":2098,"tow":270918},"ura":4},"tau":-4.7381036e-5,"fcn":9,"acc":[3.7252903e-6,-1.8626451e-6,-9.313226e-7]} +{"length":92,"gamma":0,"vel":[-696.5875625610352,-328.67431640625,-3462.845802307129],"iod":100,"preamble":85,"sender":22963,"d_tau":0,"msg_type":139,"payload":"CgNGIgQAMggAAOBAYAkAAAEAAAAAAADEbTgAAAAAAAAAFwhFdMEAACB48+dowQAAwO6k8VRBAAAAVLPEhcAAAAAAyop0wAAAAA2xDavAAAAAAACAOzYAAACAAWQ=","pos":[-2.12542734375e7,-1.305794775390625e7,5490323.73046875],"crc":45853,"common":{"health_bits":0,"fit_interval":2400,"valid":1,"sid":{"sat":10,"code":3},"toe":{"wn":2098,"tow":270918},"ura":7},"tau":5.6687742e-5,"fcn":1,"acc":[0,2.7939677e-6,0]} +{"length":92,"gamma":-2.728484e-12,"vel":[2159.489631652832,-671.0147857666016,2543.1900024414063],"iod":100,"preamble":85,"sender":22963,"d_tau":9.313226e-10,"msg_type":139,"payload":"FQNGIgQAMggAAIBAYAkAAAEAAABArIAU7jgAAIAwAAAwUcqXcsEAAAA0nRoUwQAAgBD6ZG9BAAAAsfreoEAAAABIHviEwAAAAEhh3qNAAAB6tQCAOzYAAPq1DGQ=","pos":[-1.949610107421875e7,-329383.30078125,1.6459728515625e7],"crc":11629,"common":{"health_bits":0,"fit_interval":2400,"valid":1,"sid":{"sat":21,"code":3},"toe":{"wn":2098,"tow":270918},"ura":4},"tau":1.1352543e-4,"fcn":12,"acc":[-9.313226e-7,2.7939677e-6,-1.8626451e-6]} +{"length":92,"gamma":1.8189894e-12,"vel":[809.9918365478516,769.8259353637695,-3324.6536254882813],"iod":100,"preamble":85,"sender":22963,"d_tau":-3.7252903e-9,"msg_type":139,"payload":"CQNGIgQAMggAAABAYAkAAAEAAAAALICvAbkAAICxAACga9onb8EAAIA6nfZwwQAAgLft6F7BAAAASO9PiUAAAACEmw6IQAAAAKhO+anAAAD6NQAA+jUAAHo1BmQ=","pos":[-1.633454736328125e7,-1.778734765625e7,-8102838.8671875],"crc":34365,"common":{"health_bits":0,"fit_interval":2400,"valid":1,"sid":{"sat":9,"code":3},"toe":{"wn":2098,"tow":270918},"ura":2},"tau":-1.2367778e-4,"fcn":6,"acc":[1.8626451e-6,1.8626451e-6,9.313226e-7]} +{"length":92,"gamma":3.637979e-12,"vel":[-2375.812530517578,-1914.5755767822266,901.9088745117188],"iod":100,"preamble":85,"sender":22963,"d_tau":6.519258e-9,"msg_type":139,"payload":"DANGIgQAMggAAABAaBAAAAEAAACALAAJ9bgAAOAxAAAAuMtWNsEAAAD5A3NnQQAA8ELTSHVBAAAABKCPosAAAABkTeqdwAAAAGBFL4xAAAD6tQAAejUAAPq1B2Q=","pos":[-1464011.71875,1.229417578125e7,2.231838818359375e7],"crc":24240,"common":{"health_bits":0,"fit_interval":4200,"valid":1,"sid":{"sat":12,"code":3},"toe":{"wn":2098,"tow":270918},"ura":2},"tau":-1.1684187e-4,"fcn":7,"acc":[-1.8626451e-6,9.313226e-7,-1.8626451e-6]} +{"length":92,"gamma":1.8189894e-12,"vel":[-479.2194366455078,2705.232620239258,1765.4428482055664],"iod":100,"preamble":85,"sender":22963,"d_tau":-2.7939677e-9,"msg_type":139,"payload":"BANGIgQAMggAAKBAYAkAAAEAAAAALAAiNbgAAECxAAAgdUE8ZUEAAGA4CTplwQAAUEpjK3NBAAAA0ILzfcAAAAAadyKlQAAAAHrFlZtAAAD6NQAA+rUAAPq1DmQ=","pos":[1.113345166015625e7,-1.112890576171875e7,2.010066064453125e7],"crc":64387,"common":{"health_bits":0,"fit_interval":2400,"valid":1,"sid":{"sat":4,"code":3},"toe":{"wn":2098,"tow":270918},"ura":5},"tau":-4.3185428e-5,"fcn":14,"acc":[1.8626451e-6,-1.8626451e-6,-1.8626451e-6]} +{"length":92,"gamma":3.637979e-12,"vel":[-2375.812530517578,-1914.5755767822266,901.9088745117188],"iod":100,"preamble":85,"sender":22963,"d_tau":6.519258e-9,"msg_type":139,"payload":"DANGIgQAMggAAABAaBAAAAEAAACALAAJ9bgAAOAxAAAAuMtWNsEAAAD5A3NnQQAA8ELTSHVBAAAABKCPosAAAABkTeqdwAAAAGBFL4xAAAD6tQAAejUAAPq1B2Q=","pos":[-1464011.71875,1.229417578125e7,2.231838818359375e7],"crc":24240,"common":{"health_bits":0,"fit_interval":4200,"valid":1,"sid":{"sat":12,"code":3},"toe":{"wn":2098,"tow":270918},"ura":2},"tau":-1.1684187e-4,"fcn":7,"acc":[-1.8626451e-6,9.313226e-7,-1.8626451e-6]} +{"length":37,"preamble":85,"sender":22963,"msg_type":167,"setting":"ntrip\u0000enable\u0000False\u0000enum:False,True\u0000","payload":"AABudHJpcABlbmFibGUARmFsc2UAZW51bTpGYWxzZSxUcnVlAA==","crc":28665,"index":0} +{"length":136,"preamble":85,"sender":22963,"msg_type":151,"payload":"AgAaHgUALDUMAFEtFQB9GRkAbUYaAKEBHQChNx8AlQ4EAxYWBQMyIQYDTggJA18OCgNxKQsDmCUMA6oDEwMiBxQDCzEVA5UlDAyUKRMMIyAUDA8CFgxDIxgMgiMZDJ0OGgxnFR0MLAAiDI4RIwwiLQsOizIMDg88GA5sNhkOlykfDlURIQ4fDw==","crc":41336,"azel":[{"el":30,"az":26,"sid":{"sat":2,"code":0}},{"el":53,"az":44,"sid":{"sat":5,"code":0}},{"el":45,"az":81,"sid":{"sat":12,"code":0}},{"el":25,"az":125,"sid":{"sat":21,"code":0}},{"el":70,"az":109,"sid":{"sat":25,"code":0}},{"el":1,"az":161,"sid":{"sat":26,"code":0}},{"el":55,"az":161,"sid":{"sat":29,"code":0}},{"el":14,"az":149,"sid":{"sat":31,"code":0}},{"el":22,"az":22,"sid":{"sat":4,"code":3}},{"el":33,"az":50,"sid":{"sat":5,"code":3}},{"el":8,"az":78,"sid":{"sat":6,"code":3}},{"el":14,"az":95,"sid":{"sat":9,"code":3}},{"el":41,"az":113,"sid":{"sat":10,"code":3}},{"el":37,"az":152,"sid":{"sat":11,"code":3}},{"el":3,"az":170,"sid":{"sat":12,"code":3}},{"el":7,"az":34,"sid":{"sat":19,"code":3}},{"el":49,"az":11,"sid":{"sat":20,"code":3}},{"el":37,"az":149,"sid":{"sat":21,"code":3}},{"el":41,"az":148,"sid":{"sat":12,"code":12}},{"el":32,"az":35,"sid":{"sat":19,"code":12}},{"el":2,"az":15,"sid":{"sat":20,"code":12}},{"el":35,"az":67,"sid":{"sat":22,"code":12}},{"el":35,"az":130,"sid":{"sat":24,"code":12}},{"el":14,"az":157,"sid":{"sat":25,"code":12}},{"el":21,"az":103,"sid":{"sat":26,"code":12}},{"el":0,"az":44,"sid":{"sat":29,"code":12}},{"el":17,"az":142,"sid":{"sat":34,"code":12}},{"el":45,"az":34,"sid":{"sat":35,"code":12}},{"el":50,"az":139,"sid":{"sat":11,"code":14}},{"el":60,"az":15,"sid":{"sat":12,"code":14}},{"el":54,"az":108,"sid":{"sat":24,"code":14}},{"el":41,"az":151,"sid":{"sat":25,"code":14}},{"el":17,"az":85,"sid":{"sat":31,"code":14}},{"el":15,"az":31,"sid":{"sat":33,"code":14}}]} +{"length":53,"text":"GLO L1OF ME 7 [+15846ms] channel is masked, dropping","preamble":85,"sender":22963,"msg_type":1025,"payload":"BkdMTyBMMU9GIE1FIDcgWysxNTg0Nm1zXSBjaGFubmVsIGlzIG1hc2tlZCwgZHJvcHBpbmc=","crc":63555,"level":6} +{"length":53,"text":"GLO L2OF ME 7 [+14477ms] channel is masked, dropping","preamble":85,"sender":22963,"msg_type":1025,"payload":"BkdMTyBMMk9GIE1FIDcgWysxNDQ3N21zXSBjaGFubmVsIGlzIG1hc2tlZCwgZHJvcHBpbmc=","crc":63240,"level":6} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MghIui4QAAAAAAE=","wn":2098,"tow":271497800,"crc":27769} +{"length":16,"flags":17,"ns":799999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EUi6LhDkBwMZAxgn/gevLw==","day":25,"tow":271497800,"year":2020,"crc":22322,"minutes":24,"month":3,"seconds":39} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.215181577283488,"preamble":85,"sender":22963,"msg_type":522,"payload":"SLouEKx+tOpl6kJAouh9IFaSXsBgIs0jFjcxwAECWwQPBg==","lat":37.831235254413826,"tow":271497800,"h_accuracy":513,"crc":59641,"lon":-122.28650677009367} +{"v_accuracy":713,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"SLouEAYAAAACAAAA8/////AAyQIPAg==","n":6,"d":-13,"tow":271497800,"h_accuracy":240,"crc":62018,"e":2} +{"length":15,"gdop":155,"flags":6,"tdop":77,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"SLouEJsAhwBNAEgAcgAG","tow":271497800,"crc":347,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"SLouEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271497800,"h_accuracy":0,"crc":38562,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"SLouEP//","tow":271497800,"crc":6833} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":36,"preamble":85,"sender":22963,"msg_type":167,"setting":"ntrip\u0000debug\u0000False\u0000enum:False,True\u0000","payload":"AQBudHJpcABkZWJ1ZwBGYWxzZQBlbnVtOkZhbHNlLFRydWUA","crc":7201,"index":1} +{"length":19,"preamble":85,"sender":22963,"msg_type":167,"setting":"ntrip\u0000username\u0000\u0000\u0000","payload":"AgBudHJpcAB1c2VybmFtZQAAAA==","crc":31693,"index":2} +{"length":19,"preamble":85,"sender":22963,"msg_type":167,"setting":"ntrip\u0000password\u0000\u0000\u0000","payload":"AwBudHJpcABwYXNzd29yZAAAAA==","crc":41830,"index":3} +{"length":14,"preamble":85,"sender":22963,"msg_type":167,"setting":"ntrip\u0000url\u0000\u0000\u0000","payload":"BABudHJpcAB1cmwAAAA=","crc":47724,"index":4} +{"length":28,"preamble":85,"sender":22963,"msg_type":167,"setting":"ntrip\u0000gga_out_interval\u00000\u0000\u0000","payload":"BQBudHJpcABnZ2Ffb3V0X2ludGVydmFsADAAAA==","crc":17702,"index":5} +{"length":43,"preamble":85,"sender":22963,"msg_type":167,"setting":"ntrip\u0000gga_out_rev1\u0000False\u0000enum:False,True\u0000","payload":"BgBudHJpcABnZ2Ffb3V0X3JldjEARmFsc2UAZW51bTpGYWxzZSxUcnVlAA==","crc":22575,"index":6} +{"length":52,"preamble":85,"sender":22963,"msg_type":167,"setting":"ethernet\u0000interface_mode\u0000Active\u0000enum:Active,Config\u0000","payload":"BwBldGhlcm5ldABpbnRlcmZhY2VfbW9kZQBBY3RpdmUAZW51bTpBY3RpdmUsQ29uZmlnAA==","crc":63127,"index":7} +{"length":48,"preamble":85,"sender":22963,"msg_type":167,"setting":"ethernet\u0000ip_config_mode\u0000DHCP\u0000enum:Static,DHCP\u0000","payload":"CABldGhlcm5ldABpcF9jb25maWdfbW9kZQBESENQAGVudW06U3RhdGljLERIQ1AA","crc":19193,"index":8} +{"length":37,"preamble":85,"sender":22963,"msg_type":167,"setting":"ethernet\u0000ip_address\u0000192.168.0.222\u0000\u0000","payload":"CQBldGhlcm5ldABpcF9hZGRyZXNzADE5Mi4xNjguMC4yMjIAAA==","crc":30179,"index":9} +{"length":237,"states":[{"cn0":215,"mesid":{"sat":5,"code":0}},{"cn0":181,"mesid":{"sat":21,"code":0}},{"cn0":192,"mesid":{"sat":2,"code":0}},{"cn0":167,"mesid":{"sat":31,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":220,"mesid":{"sat":25,"code":0}},{"cn0":209,"mesid":{"sat":12,"code":0}},{"cn0":214,"mesid":{"sat":29,"code":0}},{"cn0":209,"mesid":{"sat":18,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":208,"mesid":{"sat":131,"code":2}},{"cn0":204,"mesid":{"sat":25,"code":1}},{"cn0":187,"mesid":{"sat":12,"code":1}},{"cn0":151,"mesid":{"sat":31,"code":1}},{"cn0":194,"mesid":{"sat":18,"code":1}},{"cn0":194,"mesid":{"sat":29,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":194,"mesid":{"sat":5,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":213,"mesid":{"sat":11,"code":3}},{"cn0":176,"mesid":{"sat":9,"code":3}},{"cn0":173,"mesid":{"sat":20,"code":3}},{"cn0":208,"mesid":{"sat":5,"code":3}},{"cn0":206,"mesid":{"sat":10,"code":3}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":183,"mesid":{"sat":4,"code":3}},{"cn0":204,"mesid":{"sat":21,"code":3}},{"cn0":172,"mesid":{"sat":9,"code":4}},{"cn0":204,"mesid":{"sat":20,"code":4}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":200,"mesid":{"sat":11,"code":4}},{"cn0":193,"mesid":{"sat":5,"code":4}},{"cn0":186,"mesid":{"sat":0,"code":4}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":176,"mesid":{"sat":4,"code":4}},{"cn0":199,"mesid":{"sat":35,"code":12}},{"cn0":168,"mesid":{"sat":26,"code":12}},{"cn0":161,"mesid":{"sat":34,"code":12}},{"cn0":189,"mesid":{"sat":24,"code":12}},{"cn0":157,"mesid":{"sat":25,"code":12}},{"cn0":185,"mesid":{"sat":12,"code":12}},{"cn0":185,"mesid":{"sat":19,"code":12}},{"cn0":191,"mesid":{"sat":22,"code":12}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":209,"mesid":{"sat":12,"code":13}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":196,"mesid":{"sat":12,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":193,"mesid":{"sat":25,"code":14}},{"cn0":189,"mesid":{"sat":11,"code":14}},{"cn0":205,"mesid":{"sat":24,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":161,"mesid":{"sat":31,"code":14}},{"cn0":155,"mesid":{"sat":33,"code":14}},{"cn0":201,"mesid":{"sat":25,"code":20}},{"cn0":215,"mesid":{"sat":24,"code":20}},{"cn0":194,"mesid":{"sat":11,"code":20}},{"cn0":172,"mesid":{"sat":31,"code":20}},{"cn0":207,"mesid":{"sat":12,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":169,"mesid":{"sat":33,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}}],"preamble":85,"sender":22963,"msg_type":97,"payload":"BQDXFQC1AgDAHwCnAAAAAAAAGQDcDADRHQDWEgDRAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwLQGQHMDAG7HwGXEgHCHQHCAAAABQHCAAAAAAAAAAAAAAAACwPVCQOwFAOtBQPQCgPOAAAABAO3FQPMCQSsFATMAAAACwTIBQTBAAS6AAAABASwIwzHGgyoIgyhGAy9GQydDAy5Ewy5Fgy/AAAADA3RAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADA7EAAAAGQ7BCw69GA7NAAAAHw6hIQ6bGRTJGBTXCxTCHxSsDBTPAAAAIRSpAAAA","crc":54884} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"Mgisui4QAAAAAAE=","wn":2098,"tow":271497900,"crc":46849} +{"length":16,"flags":17,"ns":899999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"Eay6LhDkBwMZAxgn/uikNQ==","day":25,"tow":271497900,"year":2020,"crc":52238,"minutes":24,"month":3,"seconds":39} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.218318053116388,"preamble":85,"sender":22963,"msg_type":522,"payload":"rLouENXxWupl6kJAzb+GIFaSXsDjQiKx4zcxwAECWwQPBg==","lat":37.831235212713786,"tow":271497900,"h_accuracy":513,"crc":50102,"lon":-122.28650677832702} +{"v_accuracy":713,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"rLouEP3////+////+f////AAyQIPAg==","n":-3,"d":-7,"tow":271497900,"h_accuracy":240,"crc":48022,"e":-2} +{"length":15,"gdop":155,"flags":6,"tdop":77,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"rLouEJsAhwBNAEgAcgAG","tow":271497900,"crc":31206,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"rLouEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271497900,"h_accuracy":0,"crc":13441,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"rLouEP//","tow":271497900,"crc":38696} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":34,"preamble":85,"sender":22963,"msg_type":167,"setting":"ethernet\u0000netmask\u0000255.255.255.0\u0000\u0000","payload":"CgBldGhlcm5ldABuZXRtYXNrADI1NS4yNTUuMjU1LjAAAA==","crc":55669,"index":10} +{"length":32,"preamble":85,"sender":22963,"msg_type":167,"setting":"ethernet\u0000gateway\u0000192.168.0.1\u0000\u0000","payload":"CwBldGhlcm5ldABnYXRld2F5ADE5Mi4xNjguMC4xAAA=","crc":65129,"index":11} +{"length":46,"preamble":85,"sender":22963,"msg_type":167,"setting":"uart0\u0000enabled_sbp_messages\u000072,74,117,65535\u0000\u0000","payload":"DAB1YXJ0MABlbmFibGVkX3NicF9tZXNzYWdlcwA3Miw3NCwxMTcsNjU1MzUAAA==","crc":33701,"index":12} +{"length":72,"preamble":85,"sender":22963,"msg_type":167,"setting":"uart0\u0000mode\u0000RTCMv3 OUT\u0000enum:Disabled,SBP,RTCMv3 OUT,NMEA OUT,RTCMv3 IN\u0000","payload":"DQB1YXJ0MABtb2RlAFJUQ012MyBPVVQAZW51bTpEaXNhYmxlZCxTQlAsUlRDTXYzIE9VVCxOTUVBIE9VVCxSVENNdjMgSU4A","crc":51770,"index":13} +{"length":95,"preamble":85,"sender":22963,"msg_type":167,"setting":"uart0\u0000baudrate\u0000115200\u0000enum:1200,2400,4800,9600,19200,38400,57600,115200,230400,460800,921600\u0000","payload":"DgB1YXJ0MABiYXVkcmF0ZQAxMTUyMDAAZW51bToxMjAwLDI0MDAsNDgwMCw5NjAwLDE5MjAwLDM4NDAwLDU3NjAwLDExNTIwMCwyMzA0MDAsNDYwODAwLDkyMTYwMAA=","crc":48756,"index":14} +{"length":44,"preamble":85,"sender":22963,"msg_type":167,"setting":"uart0\u0000flow_control\u0000None\u0000enum:None,RTS/CTS\u0000","payload":"DwB1YXJ0MABmbG93X2NvbnRyb2wATm9uZQBlbnVtOk5vbmUsUlRTL0NUUwA=","crc":64292,"index":15} +{"length":214,"preamble":85,"sender":22963,"msg_type":167,"setting":"uart1\u0000enabled_sbp_messages\u000023,65,72,74,81,97,117,134,136,137,138,139,144,149,163,165,166,167,171,175,181,185,187,188,189,190,257,258,259,520,522,524,526,527,528,1025,2304/50,2305,2306/50,30583,65280,65282,65535\u0000\u0000","payload":"EAB1YXJ0MQBlbmFibGVkX3NicF9tZXNzYWdlcwAyMyw2NSw3Miw3NCw4MSw5NywxMTcsMTM0LDEzNiwxMzcsMTM4LDEzOSwxNDQsMTQ5LDE2MywxNjUsMTY2LDE2NywxNzEsMTc1LDE4MSwxODUsMTg3LDE4OCwxODksMTkwLDI1NywyNTgsMjU5LDUyMCw1MjIsNTI0LDUyNiw1MjcsNTI4LDEwMjUsMjMwNC81MCwyMzA1LDIzMDYvNTAsMzA1ODMsNjUyODAsNjUyODIsNjU1MzUAAA==","crc":40537,"index":16} +{"length":65,"preamble":85,"sender":22963,"msg_type":167,"setting":"uart1\u0000mode\u0000SBP\u0000enum:Disabled,SBP,RTCMv3 OUT,NMEA OUT,RTCMv3 IN\u0000","payload":"EQB1YXJ0MQBtb2RlAFNCUABlbnVtOkRpc2FibGVkLFNCUCxSVENNdjMgT1VULE5NRUEgT1VULFJUQ012MyBJTgA=","crc":25156,"index":17} +{"length":95,"preamble":85,"sender":22963,"msg_type":167,"setting":"uart1\u0000baudrate\u0000115200\u0000enum:1200,2400,4800,9600,19200,38400,57600,115200,230400,460800,921600\u0000","payload":"EgB1YXJ0MQBiYXVkcmF0ZQAxMTUyMDAAZW51bToxMjAwLDI0MDAsNDgwMCw5NjAwLDE5MjAwLDM4NDAwLDU3NjAwLDExNTIwMCwyMzA0MDAsNDYwODAwLDkyMTYwMAA=","crc":32726,"index":18} +{"length":44,"preamble":85,"sender":22963,"msg_type":167,"setting":"uart1\u0000flow_control\u0000None\u0000enum:None,RTS/CTS\u0000","payload":"EwB1YXJ0MQBmbG93X2NvbnRyb2wATm9uZQBlbnVtOk5vbmUsUlRTL0NUUwA=","crc":12616,"index":19} +{"length":249,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":47,"i":110561215},"flags":15,"cn0":215,"P":1051954854,"D":{"f":31,"i":-171},"lock":15,"sid":{"sat":5,"code":0}},{"L":{"f":102,"i":121861742},"flags":15,"cn0":181,"P":1159475925,"D":{"f":248,"i":2178},"lock":15,"sid":{"sat":21,"code":0}},{"L":{"f":19,"i":123296198},"flags":15,"cn0":192,"P":1173123946,"D":{"f":196,"i":-2480},"lock":15,"sid":{"sat":2,"code":0}},{"L":{"f":201,"i":128731748},"flags":15,"cn0":167,"P":1224841850,"D":{"f":51,"i":-385},"lock":15,"sid":{"sat":31,"code":0}},{"L":{"f":77,"i":107804252},"flags":15,"cn0":220,"P":1025723288,"D":{"f":59,"i":-1116},"lock":15,"sid":{"sat":25,"code":0}},{"L":{"f":125,"i":114048374},"flags":15,"cn0":209,"P":1085134092,"D":{"f":190,"i":-2961},"lock":15,"sid":{"sat":12,"code":0}},{"L":{"f":131,"i":110786183},"flags":15,"cn0":214,"P":1054095395,"D":{"f":122,"i":1488},"lock":15,"sid":{"sat":29,"code":0}},{"L":{"f":250,"i":84003333},"flags":15,"cn0":204,"P":1025723320,"D":{"f":11,"i":-870},"lock":15,"sid":{"sat":25,"code":1}},{"L":{"f":225,"i":88868894},"flags":15,"cn0":187,"P":1085134021,"D":{"f":13,"i":-2307},"lock":15,"sid":{"sat":12,"code":1}},{"L":{"f":6,"i":100310456},"flags":15,"cn0":151,"P":1224841828,"D":{"f":159,"i":-303},"lock":15,"sid":{"sat":31,"code":1}},{"L":{"f":15,"i":86326898},"flags":15,"cn0":194,"P":1054095324,"D":{"f":42,"i":1159},"lock":15,"sid":{"sat":29,"code":1}},{"L":{"f":130,"i":86151625},"flags":15,"cn0":194,"P":1051954788,"D":{"f":223,"i":-134},"lock":15,"sid":{"sat":5,"code":1}},{"L":{"f":128,"i":112956403},"flags":15,"cn0":213,"P":1056912242,"D":{"f":155,"i":1180},"lock":15,"sid":{"sat":11,"code":3}},{"L":{"f":241,"i":123262616},"flags":15,"cn0":175,"P":1154156121,"D":{"f":112,"i":-4407},"lock":15,"sid":{"sat":9,"code":3}}],"payload":"ELsuEAAAAAAyCECmjrM+vweXBi9V/x/XDw8FANUyHEVudkMHZoII+LUPDxUAanPsRcZZWQcTUPbEwA8PAgB6mgFJZEqsB8l//jOnDw8fAJhLIz1c9mwGTaT7O9wPDxkADNWtQHY9zAZ9b/S+0Q8PDAAjONQ+h3aaBoPQBXrWDw8dALhLIz0FygEF+pr8C8wPDxkBxdStQB4ITAXh/fYNuw8PDAFkmgFJuJ36BQbR/p+XDw8fAdw31D5yPiUFD4cEKsIPDx0BZI6zPsmRIgWCev/fwg8PBQFyM/8+85O7BoCcBJvVDw8LA1kGy0SY1lgH8cnucK8PDwkD","header":{"n_obs":64,"t":{"ns_residual":0,"wn":2098,"tow":271498000}},"crc":62667} +{"length":249,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":148,"i":109750989},"flags":15,"cn0":173,"P":1026199089,"D":{"f":14,"i":-1208},"lock":15,"sid":{"sat":20,"code":3}},{"L":{"f":100,"i":114896073},"flags":15,"cn0":208,"P":1074684015,"D":{"f":146,"i":2209},"lock":15,"sid":{"sat":5,"code":3}},{"L":{"f":106,"i":111554282},"flags":15,"cn0":206,"P":1046364598,"D":{"f":18,"i":-3034},"lock":15,"sid":{"sat":10,"code":3}},{"L":{"f":56,"i":120417304},"flags":15,"cn0":183,"P":1124353839,"D":{"f":255,"i":-1303},"lock":15,"sid":{"sat":4,"code":3}},{"L":{"f":33,"i":113446249},"flags":15,"cn0":204,"P":1060006731,"D":{"f":97,"i":1626},"lock":15,"sid":{"sat":21,"code":3}},{"L":{"f":238,"i":95870933},"flags":15,"cn0":172,"P":1154156245,"D":{"f":122,"i":-3427},"lock":15,"sid":{"sat":9,"code":4}},{"L":{"f":129,"i":85361916},"flags":15,"cn0":204,"P":1026199418,"D":{"f":240,"i":-940},"lock":15,"sid":{"sat":20,"code":4}},{"L":{"f":214,"i":87854990},"flags":15,"cn0":200,"P":1056912543,"D":{"f":247,"i":918},"lock":15,"sid":{"sat":11,"code":4}},{"L":{"f":108,"i":89363616},"flags":15,"cn0":193,"P":1074684207,"D":{"f":130,"i":1717},"lock":15,"sid":{"sat":5,"code":4}},{"L":{"f":128,"i":93657893},"flags":15,"cn0":176,"P":1124353980,"D":{"f":112,"i":-1014},"lock":15,"sid":{"sat":4,"code":4}},{"L":{"f":98,"i":121555585},"flags":15,"cn0":199,"P":1167173307,"D":{"f":53,"i":-1497},"lock":15,"sid":{"sat":35,"code":12}},{"L":{"f":217,"i":129163009},"flags":15,"cn0":168,"P":1240219934,"D":{"f":236,"i":-3006},"lock":15,"sid":{"sat":26,"code":12}},{"L":{"f":194,"i":132982594},"flags":15,"cn0":162,"P":1276895254,"D":{"f":129,"i":2250},"lock":15,"sid":{"sat":34,"code":12}},{"L":{"f":75,"i":125130215},"flags":15,"cn0":189,"P":1201497134,"D":{"f":211,"i":-1294},"lock":15,"sid":{"sat":24,"code":12}}],"payload":"ELsuEAAAAAAyCEExjio9zaqKBpRI+w6tDw8UA29gDkDJLNkGZKEIktAPDwUDtkFePuoupgZqJvQSzg8PCgMvRwRDGGwtBzjp+v+3Dw8EA0trLj9pDcMGIVoGYcwPDxUD1QbLRNXftgXunfJ6rA8PCQR6jyo9/IQWBYFU/PDMDw8UBJ80/z6OjzwF1pYD98gPDwsEL2EOQKCUUwVstQaCwQ8PBQS8RwRDJRuVBYAK/HCwDw8EBLumkUWByj4HYif6NccPDyMMHkHsSQHfsgfZQvTsqA8PGgwW4BtMQiftB8LKCIGiDw8iDC5knUfnVXUHS/L6070PDxgM","header":{"n_obs":65,"t":{"ns_residual":0,"wn":2098,"tow":271498000}},"crc":42095} +{"length":249,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":235,"i":134693792},"flags":15,"cn0":157,"P":1293326340,"D":{"f":232,"i":1332},"lock":15,"sid":{"sat":25,"code":12}},{"L":{"f":233,"i":121126194},"flags":15,"cn0":185,"P":1163050577,"D":{"f":210,"i":1613},"lock":15,"sid":{"sat":12,"code":12}},{"L":{"f":159,"i":124510336},"flags":15,"cn0":185,"P":1195545026,"D":{"f":20,"i":-281},"lock":15,"sid":{"sat":19,"code":12}},{"L":{"f":111,"i":124743275},"flags":15,"cn0":191,"P":1197781703,"D":{"f":201,"i":2393},"lock":15,"sid":{"sat":22,"code":12}},{"L":{"f":209,"i":93662465},"flags":15,"cn0":209,"P":1163050511,"D":{"f":88,"i":1247},"lock":15,"sid":{"sat":12,"code":13}},{"L":{"f":160,"i":116409487},"flags":15,"cn0":196,"P":1107599432,"D":{"f":97,"i":-1026},"lock":15,"sid":{"sat":12,"code":14}},{"L":{"f":35,"i":132492514},"flags":15,"cn0":192,"P":1260624276,"D":{"f":187,"i":1094},"lock":15,"sid":{"sat":25,"code":14}},{"L":{"f":237,"i":125439529},"flags":15,"cn0":189,"P":1193517375,"D":{"f":174,"i":1050},"lock":15,"sid":{"sat":11,"code":14}},{"L":{"f":52,"i":118385830},"flags":15,"cn0":205,"P":1126403598,"D":{"f":162,"i":-1738},"lock":15,"sid":{"sat":24,"code":14}},{"L":{"f":102,"i":143270247},"flags":15,"cn0":162,"P":1363171094,"D":{"f":5,"i":-3172},"lock":15,"sid":{"sat":31,"code":14}},{"L":{"f":159,"i":144489652},"flags":15,"cn0":155,"P":1374773342,"D":{"f":192,"i":-2142},"lock":15,"sid":{"sat":33,"code":14}},{"L":{"f":129,"i":101520236},"flags":15,"cn0":200,"P":1260624248,"D":{"f":64,"i":839},"lock":15,"sid":{"sat":25,"code":20}},{"L":{"f":26,"i":90711284},"flags":15,"cn0":215,"P":1126404135,"D":{"f":91,"i":-1332},"lock":15,"sid":{"sat":24,"code":20}},{"L":{"f":68,"i":96115981},"flags":15,"cn0":194,"P":1193517204,"D":{"f":8,"i":804},"lock":15,"sid":{"sat":11,"code":20}}],"payload":"ELsuEAAAAAAyCEIEmBZNoEMHCOs0BeidDw8ZDFG+UkUyPTgH6U0G0rkPDwwMwpFCR4Dgawef5/4UuQ8PEwzHsmRHa25vB29ZCcm/Dw8WDA++UkUBLZUF0d8EWNEPDwwNSKAEQo9E8Aag/vthxA8PDA6UmSNL4qzlByNGBLvADw8ZDj+hI0cpDnoH7RoErr0PDwsODo4jQ6ZsDgc0NvmizQ8PGA4WV0BRZyGKCGac8wWiDw8fDl5g8VG0vJwIn6L3wJsPDyEOeJkjS2wTDQaBRwNAyA8PGRQnkCND9CRoBRrM+lvXDw8YFJSgI0cNnboFRCQDCMIPDwsU","header":{"n_obs":66,"t":{"ns_residual":0,"wn":2098,"tow":271498000}},"crc":14569} +{"length":62,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":194,"i":109778542},"flags":15,"cn0":172,"P":1363171118,"D":{"f":105,"i":-2432},"lock":15,"sid":{"sat":31,"code":20}},{"L":{"f":184,"i":89196910},"flags":15,"cn0":207,"P":1107599267,"D":{"f":168,"i":-787},"lock":15,"sid":{"sat":12,"code":20}},{"L":{"f":57,"i":110712921},"flags":15,"cn0":170,"P":1374773291,"D":{"f":129,"i":-1641},"lock":15,"sid":{"sat":33,"code":20}}],"payload":"ELsuEAAAAAAyCEMuV0BRbhaLBsKA9mmsDw8fFKOfBEJuCVEFuO38qM8PDwwUK2DxUVlYmQY5l/mBqg8PIRQ=","header":{"n_obs":67,"t":{"ns_residual":0,"wn":2098,"tow":271498000}},"crc":13253} +{"length":9,"l2ca_bias":0,"preamble":85,"l2p_bias":0,"sender":22963,"msg_type":117,"payload":"/wAAAAAAAAAA","l1ca_bias":0,"mask":255,"crc":49809,"l1p_bias":0} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MggQuy4QAAAAAAE=","wn":2098,"tow":271498000,"crc":3698} +{"length":16,"flags":17,"ns":999999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"ERC7LhDkBwMZAxgn/smaOw==","day":25,"tow":271498000,"year":2020,"crc":64182,"minutes":24,"month":3,"seconds":39} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.22420971125668,"preamble":85,"sender":22963,"msg_type":522,"payload":"ELsuENu7Fepl6kJA9reCIFaSXsAFS8HOZTkxwAECWwQPBg==","lat":37.831235180484974,"tow":271498000,"h_accuracy":513,"crc":29379,"lon":-122.28650677457321} +{"v_accuracy":713,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"ELsuEPT///8SAAAAHwAAAPAAyQIPAg==","n":-12,"d":31,"tow":271498000,"h_accuracy":240,"crc":64762,"e":18} +{"length":15,"gdop":155,"flags":6,"tdop":77,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"ELsuEJsAhwBNAEgAcgAG","tow":271498000,"crc":14844,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"ELsuEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271498000,"h_accuracy":0,"crc":30187,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"ELsuEP//","tow":271498000,"crc":52534} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":4,"flags":2147616000,"preamble":85,"sender":22963,"msg_type":65535,"payload":"AAUCgA==","crc":40942} +{"length":24,"z":3890655.0240602265,"preamble":85,"sender":22963,"msg_type":72,"payload":"UO0a3iqORMHK1UJhIkRQwc9nFIPvrk1B","crc":2168,"x":-2694229.735196747,"y":-4264073.519704292} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"bWFpbgAAAAAAAAAAAAAAAAAAAAAAAAx1AAA=","name":"main\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":47991,"stack_free":29964,"cpu":0} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"aWRsZQAAAAAAAAAAAAAAAAAAAACiAHwAAAA=","name":"idle\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":11832,"stack_free":124,"cpu":162} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"cnBtc2cAAAAAAAAAAAAAAAAAAAABANwNAAA=","name":"rpmsg\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":58151,"stack_free":3548,"cpu":1} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"U0JQAAAAAAAAAAAAAAAAAAAAAAAAAPz/AAA=","name":"SBP\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":51784,"stack_free":65532,"cpu":0} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"TkFQAAAAAAAAAAAAAAAAAAAAAAAAAASAAAA=","name":"NAP\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":33651,"stack_free":32772,"cpu":0} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"bWFuYWdlIFBWAAAAAAAAAAAAAAAAACwEAAA=","name":"manage PV\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":61814,"stack_free":1068,"cpu":0} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"SU1VAAAAAAAAAAAAAAAAAAAAAAAAAPQHAAA=","name":"IMU\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":14252,"stack_free":2036,"cpu":0} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"SU1VIGF1eAAAAAAAAAAAAAAAAAAAAEwIAAA=","name":"IMU aux\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":18976,"stack_free":2124,"cpu":0} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"bmRiAAAAAAAAAAAAAAAAAAAAAAAAAFAMAAA=","name":"ndb\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":26120,"stack_free":3152,"cpu":0} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"TkFQIFRyYWNraW5nAAAAAAAAAAApAdR3AAA=","name":"NAP Tracking\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":25570,"stack_free":30676,"cpu":297} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"ZGVjb2RlAAAAAAAAAAAAAAAAAAAJANQGAAA=","name":"decode\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":55602,"stack_free":1748,"cpu":9} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"bWFuYWdlIGFjcQAAAAAAAAAAAABwAaR3AAA=","name":"manage acq\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":1203,"stack_free":30628,"cpu":368} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"c3lzdGVtIG1vbml0b3IAAAAAAAAAACwGAAA=","name":"system monitor\u0000\u0000\u0000\u0000\u0000\u0000","crc":58531,"stack_free":1580,"cpu":0} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"V2F0Y2hkb2cAAAAAAAAAAAAAAAAAAOQDAAA=","name":"Watchdog\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":44438,"stack_free":996,"cpu":0} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"c3RhcmxpbmcAAAAAAAAAAAAAAACVAPz/AAA=","name":"starling\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":15999,"stack_free":65532,"cpu":149} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"bWVfY2FsY19wdnQAAAAAAAAAAAAJAIwjAAA=","name":"me_calc_pvt\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":57561,"stack_free":9100,"cpu":9} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"UFBTAAAAAAAAAAAAAAAAAAAAAAAAAEgHAAA=","name":"PPS\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":38576,"stack_free":1864,"cpu":0} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"c3BlY3RydW0gYW5hbHl6ZXIAAAAAANQPAAA=","name":"spectrum analyzer\u0000\u0000\u0000","crc":50933,"stack_free":4052,"cpu":0} +{"length":30,"preamble":85,"sender":22963,"msg_type":167,"setting":"usb0\u0000enabled_sbp_messages\u0000\u0000\u0000","payload":"FAB1c2IwAGVuYWJsZWRfc2JwX21lc3NhZ2VzAAAA","crc":18888,"index":20} +{"length":64,"preamble":85,"sender":22963,"msg_type":167,"setting":"usb0\u0000mode\u0000SBP\u0000enum:Disabled,SBP,RTCMv3 OUT,NMEA OUT,RTCMv3 IN\u0000","payload":"FQB1c2IwAG1vZGUAU0JQAGVudW06RGlzYWJsZWQsU0JQLFJUQ012MyBPVVQsTk1FQSBPVVQsUlRDTXYzIElOAA==","crc":17492,"index":21} +{"length":229,"preamble":85,"sender":22963,"msg_type":167,"setting":"tcp_server0\u0000enabled_sbp_messages\u000023,65,72,74,81,97,117,134,136,137,138,139,144,149,151,163,165,166,167,171,175,181,185,187,188,189,190,257,258,259,520,522,524,526,527,528,1025,2304/50,2305,2306/50,4098,30583,65280,65282,65535\u0000\u0000","payload":"FgB0Y3Bfc2VydmVyMABlbmFibGVkX3NicF9tZXNzYWdlcwAyMyw2NSw3Miw3NCw4MSw5NywxMTcsMTM0LDEzNiwxMzcsMTM4LDEzOSwxNDQsMTQ5LDE1MSwxNjMsMTY1LDE2NiwxNjcsMTcxLDE3NSwxODEsMTg1LDE4NywxODgsMTg5LDE5MCwyNTcsMjU4LDI1OSw1MjAsNTIyLDUyNCw1MjYsNTI3LDUyOCwxMDI1LDIzMDQvNTAsMjMwNSwyMzA2LzUwLDQwOTgsMzA1ODMsNjUyODAsNjUyODIsNjU1MzUAAA==","crc":41475,"index":22} +{"length":26,"preamble":85,"sender":22963,"msg_type":167,"setting":"tcp_server0\u0000port\u000055555\u0000\u0000","payload":"FwB0Y3Bfc2VydmVyMABwb3J0ADU1NTU1AAA=","crc":64683,"index":23} +{"length":71,"preamble":85,"sender":22963,"msg_type":167,"setting":"tcp_server0\u0000mode\u0000SBP\u0000enum:Disabled,SBP,RTCMv3 OUT,NMEA OUT,RTCMv3 IN\u0000","payload":"GAB0Y3Bfc2VydmVyMABtb2RlAFNCUABlbnVtOkRpc2FibGVkLFNCUCxSVENNdjMgT1VULE5NRUEgT1VULFJUQ012MyBJTgA=","crc":37489,"index":24} +{"length":225,"preamble":85,"sender":22963,"msg_type":167,"setting":"tcp_server1\u0000enabled_sbp_messages\u000023,65,72,74,81,97,117,134,136,137,138,139,144,149,163,165,166,167,171,175,181,185,187,188,189,190,257,258,259,520,522,524,526,527,528,1025,2304/50,2305,2306/50,4098,30583,65280,65282,65535\u0000\u0000","payload":"GQB0Y3Bfc2VydmVyMQBlbmFibGVkX3NicF9tZXNzYWdlcwAyMyw2NSw3Miw3NCw4MSw5NywxMTcsMTM0LDEzNiwxMzcsMTM4LDEzOSwxNDQsMTQ5LDE2MywxNjUsMTY2LDE2NywxNzEsMTc1LDE4MSwxODUsMTg3LDE4OCwxODksMTkwLDI1NywyNTgsMjU5LDUyMCw1MjIsNTI0LDUyNiw1MjcsNTI4LDEwMjUsMjMwNC81MCwyMzA1LDIzMDYvNTAsNDA5OCwzMDU4Myw2NTI4MCw2NTI4Miw2NTUzNQAA","crc":12981,"index":25} +{"length":26,"preamble":85,"sender":22963,"msg_type":167,"setting":"tcp_server1\u0000port\u000055556\u0000\u0000","payload":"GgB0Y3Bfc2VydmVyMQBwb3J0ADU1NTU2AAA=","crc":53392,"index":26} +{"length":71,"preamble":85,"sender":22963,"msg_type":167,"setting":"tcp_server1\u0000mode\u0000SBP\u0000enum:Disabled,SBP,RTCMv3 OUT,NMEA OUT,RTCMv3 IN\u0000","payload":"GwB0Y3Bfc2VydmVyMQBtb2RlAFNCUABlbnVtOkRpc2FibGVkLFNCUCxSVENNdjMgT1VULE5NRUEgT1VULFJUQ012MyBJTgA=","crc":48984,"index":27} +{"length":221,"preamble":85,"sender":22963,"msg_type":167,"setting":"tcp_client0\u0000enabled_sbp_messages\u000023,65,72,74,81,97,117,134,136,137,138,139,144,149,163,165,166,167,171,181,185,187,188,189,190,257,258,259,520,522,524,526,527,528,1025,2304/50,2305,2306/50,4098,30583,65280,65282,65535\u0000\u0000","payload":"HAB0Y3BfY2xpZW50MABlbmFibGVkX3NicF9tZXNzYWdlcwAyMyw2NSw3Miw3NCw4MSw5NywxMTcsMTM0LDEzNiwxMzcsMTM4LDEzOSwxNDQsMTQ5LDE2MywxNjUsMTY2LDE2NywxNzEsMTgxLDE4NSwxODcsMTg4LDE4OSwxOTAsMjU3LDI1OCwyNTksNTIwLDUyMiw1MjQsNTI2LDUyNyw1MjgsMTAyNSwyMzA0LzUwLDIzMDUsMjMwNi81MCw0MDk4LDMwNTgzLDY1MjgwLDY1MjgyLDY1NTM1AAA=","crc":28658,"index":28} +{"length":24,"preamble":85,"sender":22963,"msg_type":167,"setting":"tcp_client0\u0000address\u0000\u0000\u0000","payload":"HQB0Y3BfY2xpZW50MABhZGRyZXNzAAAA","crc":37917,"index":29} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"Mgh0uy4QAAAAAAE=","wn":2098,"tow":271498100,"crc":27320} +{"length":16,"flags":17,"ns":99999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EXS7LhDkBwMZAxgo/uD1BQ==","day":25,"tow":271498100,"year":2020,"crc":26430,"minutes":24,"month":3,"seconds":40} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.23013488617199,"preamble":85,"sender":22963,"msg_type":522,"payload":"dLsuEBEy9ull6kJAYACSIFaSXsACx7Ee6joxwAECWwQPBg==","lat":37.83123516579884,"tow":271498100,"h_accuracy":513,"crc":2189,"lon":-122.28650678880649} +{"v_accuracy":713,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"dLsuEP3///8BAAAAEwAAAPAAyQIPAg==","n":-3,"d":19,"tow":271498100,"h_accuracy":240,"crc":18744,"e":1} +{"length":15,"gdop":155,"flags":6,"tdop":77,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"dLsuEJsAhwBNAEgAcgAG","tow":271498100,"crc":5459,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"dLsuEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271498100,"h_accuracy":0,"crc":27997,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"dLsuEP//","tow":271498100,"crc":38031} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":76,"preamble":85,"sender":22963,"msg_type":167,"setting":"tcp_client0\u0000mode\u0000Disabled\u0000enum:Disabled,SBP,RTCMv3 OUT,NMEA OUT,RTCMv3 IN\u0000","payload":"HgB0Y3BfY2xpZW50MABtb2RlAERpc2FibGVkAGVudW06RGlzYWJsZWQsU0JQLFJUQ012MyBPVVQsTk1FQSBPVVQsUlRDTXYzIElOAA==","crc":60753,"index":30} +{"length":221,"preamble":85,"sender":22963,"msg_type":167,"setting":"tcp_client1\u0000enabled_sbp_messages\u000023,65,72,74,81,97,117,134,136,137,138,139,144,149,163,165,166,167,171,181,185,187,188,189,190,257,258,259,520,522,524,526,527,528,1025,2304/50,2305,2306/50,4098,30583,65280,65282,65535\u0000\u0000","payload":"HwB0Y3BfY2xpZW50MQBlbmFibGVkX3NicF9tZXNzYWdlcwAyMyw2NSw3Miw3NCw4MSw5NywxMTcsMTM0LDEzNiwxMzcsMTM4LDEzOSwxNDQsMTQ5LDE2MywxNjUsMTY2LDE2NywxNzEsMTgxLDE4NSwxODcsMTg4LDE4OSwxOTAsMjU3LDI1OCwyNTksNTIwLDUyMiw1MjQsNTI2LDUyNyw1MjgsMTAyNSwyMzA0LzUwLDIzMDUsMjMwNi81MCw0MDk4LDMwNTgzLDY1MjgwLDY1MjgyLDY1NTM1AAA=","crc":8030,"index":31} +{"length":24,"preamble":85,"sender":22963,"msg_type":167,"setting":"tcp_client1\u0000address\u0000\u0000\u0000","payload":"IAB0Y3BfY2xpZW50MQBhZGRyZXNzAAAA","crc":5291,"index":32} +{"length":76,"preamble":85,"sender":22963,"msg_type":167,"setting":"tcp_client1\u0000mode\u0000Disabled\u0000enum:Disabled,SBP,RTCMv3 OUT,NMEA OUT,RTCMv3 IN\u0000","payload":"IQB0Y3BfY2xpZW50MQBtb2RlAERpc2FibGVkAGVudW06RGlzYWJsZWQsU0JQLFJUQ012MyBPVVQsTk1FQSBPVVQsUlRDTXYzIElOAA==","crc":50177,"index":33} +{"length":37,"preamble":85,"sender":22963,"msg_type":167,"setting":"udp_server0\u0000enabled_sbp_messages\u0000\u0000\u0000","payload":"IgB1ZHBfc2VydmVyMABlbmFibGVkX3NicF9tZXNzYWdlcwAAAA==","crc":48728,"index":34} +{"length":26,"preamble":85,"sender":22963,"msg_type":167,"setting":"udp_server0\u0000port\u000055557\u0000\u0000","payload":"IwB1ZHBfc2VydmVyMABwb3J0ADU1NTU3AAA=","crc":46832,"index":35} +{"length":71,"preamble":85,"sender":22963,"msg_type":167,"setting":"udp_server0\u0000mode\u0000SBP\u0000enum:Disabled,SBP,RTCMv3 OUT,NMEA OUT,RTCMv3 IN\u0000","payload":"JAB1ZHBfc2VydmVyMABtb2RlAFNCUABlbnVtOkRpc2FibGVkLFNCUCxSVENNdjMgT1VULE5NRUEgT1VULFJUQ012MyBJTgA=","crc":20811,"index":36} +{"length":37,"preamble":85,"sender":22963,"msg_type":167,"setting":"udp_server1\u0000enabled_sbp_messages\u0000\u0000\u0000","payload":"JQB1ZHBfc2VydmVyMQBlbmFibGVkX3NicF9tZXNzYWdlcwAAAA==","crc":5727,"index":37} +{"length":26,"preamble":85,"sender":22963,"msg_type":167,"setting":"udp_server1\u0000port\u000055558\u0000\u0000","payload":"JgB1ZHBfc2VydmVyMQBwb3J0ADU1NTU4AAA=","crc":56327,"index":38} +{"length":71,"preamble":85,"sender":22963,"msg_type":167,"setting":"udp_server1\u0000mode\u0000SBP\u0000enum:Disabled,SBP,RTCMv3 OUT,NMEA OUT,RTCMv3 IN\u0000","payload":"JwB1ZHBfc2VydmVyMQBtb2RlAFNCUABlbnVtOkRpc2FibGVkLFNCUCxSVENNdjMgT1VULE5NRUEgT1VULFJUQ012MyBJTgA=","crc":31842,"index":39} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgjYuy4QAAAAAAE=","wn":2098,"tow":271498200,"crc":51174} +{"length":16,"flags":17,"ns":199999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"Edi7LhDkBwMZAxgo/sHrCw==","day":25,"tow":271498200,"year":2020,"crc":25227,"minutes":24,"month":3,"seconds":40} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.23051501322515,"preamble":85,"sender":22963,"msg_type":522,"payload":"2LsuEPs++Oll6kJAiUi5IFaSXsD+CSsIAzsxwAECWwQPBg==","lat":37.83123516675365,"tow":271498200,"h_accuracy":513,"crc":1546,"lon":-122.28650682539059} +{"v_accuracy":713,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"2LsuEAUAAADv////2/////AAyQIPAg==","n":5,"d":-37,"tow":271498200,"h_accuracy":240,"crc":20213,"e":-17} +{"length":15,"gdop":155,"flags":6,"tdop":77,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"2LsuEJsAhwBNAEgAcgAG","tow":271498200,"crc":24738,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"2LsuEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271498200,"h_accuracy":0,"crc":17543,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"2LsuEP//","tow":271498200,"crc":32324} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":221,"preamble":85,"sender":22963,"msg_type":167,"setting":"udp_client0\u0000enabled_sbp_messages\u000023,65,72,74,81,97,117,134,136,137,138,139,144,149,163,165,166,167,171,181,185,187,188,189,190,257,258,259,520,522,524,526,527,528,1025,2304/50,2305,2306/50,4098,30583,65280,65282,65535\u0000\u0000","payload":"KAB1ZHBfY2xpZW50MABlbmFibGVkX3NicF9tZXNzYWdlcwAyMyw2NSw3Miw3NCw4MSw5NywxMTcsMTM0LDEzNiwxMzcsMTM4LDEzOSwxNDQsMTQ5LDE2MywxNjUsMTY2LDE2NywxNzEsMTgxLDE4NSwxODcsMTg4LDE4OSwxOTAsMjU3LDI1OCwyNTksNTIwLDUyMiw1MjQsNTI2LDUyNyw1MjgsMTAyNSwyMzA0LzUwLDIzMDUsMjMwNi81MCw0MDk4LDMwNTgzLDY1MjgwLDY1MjgyLDY1NTM1AAA=","crc":1932,"index":40} +{"length":24,"preamble":85,"sender":22963,"msg_type":167,"setting":"udp_client0\u0000address\u0000\u0000\u0000","payload":"KQB1ZHBfY2xpZW50MABhZGRyZXNzAAAA","crc":60604,"index":41} +{"length":76,"preamble":85,"sender":22963,"msg_type":167,"setting":"udp_client0\u0000mode\u0000Disabled\u0000enum:Disabled,SBP,RTCMv3 OUT,NMEA OUT,RTCMv3 IN\u0000","payload":"KgB1ZHBfY2xpZW50MABtb2RlAERpc2FibGVkAGVudW06RGlzYWJsZWQsU0JQLFJUQ012MyBPVVQsTk1FQSBPVVQsUlRDTXYzIElOAA==","crc":3966,"index":42} +{"length":221,"preamble":85,"sender":22963,"msg_type":167,"setting":"udp_client1\u0000enabled_sbp_messages\u000023,65,72,74,81,97,117,134,136,137,138,139,144,149,163,165,166,167,171,181,185,187,188,189,190,257,258,259,520,522,524,526,527,528,1025,2304/50,2305,2306/50,4098,30583,65280,65282,65535\u0000\u0000","payload":"KwB1ZHBfY2xpZW50MQBlbmFibGVkX3NicF9tZXNzYWdlcwAyMyw2NSw3Miw3NCw4MSw5NywxMTcsMTM0LDEzNiwxMzcsMTM4LDEzOSwxNDQsMTQ5LDE2MywxNjUsMTY2LDE2NywxNzEsMTgxLDE4NSwxODcsMTg4LDE4OSwxOTAsMjU3LDI1OCwyNTksNTIwLDUyMiw1MjQsNTI2LDUyNyw1MjgsMTAyNSwyMzA0LzUwLDIzMDUsMjMwNi81MCw0MDk4LDMwNTgzLDY1MjgwLDY1MjgyLDY1NTM1AAA=","crc":30496,"index":43} +{"length":24,"preamble":85,"sender":22963,"msg_type":167,"setting":"udp_client1\u0000address\u0000\u0000\u0000","payload":"LAB1ZHBfY2xpZW50MQBhZGRyZXNzAAAA","crc":1222,"index":44} +{"length":76,"preamble":85,"sender":22963,"msg_type":167,"setting":"udp_client1\u0000mode\u0000Disabled\u0000enum:Disabled,SBP,RTCMv3 OUT,NMEA OUT,RTCMv3 IN\u0000","payload":"LQB1ZHBfY2xpZW50MQBtb2RlAERpc2FibGVkAGVudW06RGlzYWJsZWQsU0JQLFJUQ012MyBPVVQsTk1FQSBPVVQsUlRDTXYzIElOAA==","crc":22298,"index":45} +{"length":25,"preamble":85,"sender":22963,"msg_type":167,"setting":"nmea\u0000gpgga_msg_rate\u00001\u0000\u0000","payload":"LgBubWVhAGdwZ2dhX21zZ19yYXRlADEAAA==","crc":25942,"index":46} +{"length":26,"preamble":85,"sender":22963,"msg_type":167,"setting":"nmea\u0000gprmc_msg_rate\u000010\u0000\u0000","payload":"LwBubWVhAGdwcm1jX21zZ19yYXRlADEwAAA=","crc":27955,"index":47} +{"length":25,"preamble":85,"sender":22963,"msg_type":167,"setting":"nmea\u0000gpvtg_msg_rate\u00001\u0000\u0000","payload":"MABubWVhAGdwdnRnX21zZ19yYXRlADEAAA==","crc":54031,"index":48} +{"length":25,"preamble":85,"sender":22963,"msg_type":167,"setting":"nmea\u0000gphdt_msg_rate\u00001\u0000\u0000","payload":"MQBubWVhAGdwaGR0X21zZ19yYXRlADEAAA==","crc":24913,"index":49} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"Mgg8vC4QAAAAAAE=","wn":2098,"tow":271498300,"crc":56198} +{"length":16,"flags":17,"ns":299999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"ETy8LhDkBwMZAxgo/qLhEQ==","day":25,"tow":271498300,"year":2020,"crc":62651,"minutes":24,"month":3,"seconds":40} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.23370142364709,"preamble":85,"sender":22963,"msg_type":522,"payload":"PLwuEJWj7ull6kJAki7EIFaSXsDIl0Pb0zsxwAECWwQPBg==","lat":37.83123516228003,"tow":271498300,"h_accuracy":513,"crc":25621,"lon":-122.28650683554068} +{"v_accuracy":713,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"PLwuEAIAAAD/////BwAAAPAAyQIPAg==","n":2,"d":7,"tow":271498300,"h_accuracy":240,"crc":35761,"e":-1} +{"length":15,"gdop":155,"flags":6,"tdop":77,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"PLwuEJsAhwBNAEgAcgAG","tow":271498300,"crc":26649,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"PLwuEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271498300,"h_accuracy":0,"crc":61220,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"PLwuEP//","tow":271498300,"crc":37897} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":26,"preamble":85,"sender":22963,"msg_type":167,"setting":"nmea\u0000gpgll_msg_rate\u000010\u0000\u0000","payload":"MgBubWVhAGdwZ2xsX21zZ19yYXRlADEwAAA=","crc":48894,"index":50} +{"length":26,"preamble":85,"sender":22963,"msg_type":167,"setting":"nmea\u0000gpzda_msg_rate\u000010\u0000\u0000","payload":"MwBubWVhAGdwemRhX21zZ19yYXRlADEwAAA=","crc":56170,"index":51} +{"length":24,"preamble":85,"sender":22963,"msg_type":167,"setting":"nmea\u0000gsa_msg_rate\u000010\u0000\u0000","payload":"NABubWVhAGdzYV9tc2dfcmF0ZQAxMAAA","crc":64495,"index":52} +{"length":25,"preamble":85,"sender":22963,"msg_type":167,"setting":"nmea\u0000gpgst_msg_rate\u00001\u0000\u0000","payload":"NQBubWVhAGdwZ3N0X21zZ19yYXRlADEAAA==","crc":10407,"index":53} +{"length":26,"preamble":85,"sender":22963,"msg_type":167,"setting":"nmea\u0000gpgsv_msg_rate\u000010\u0000\u0000","payload":"NgBubWVhAGdwZ3N2X21zZ19yYXRlADEwAAA=","crc":20798,"index":54} +{"length":50,"preamble":85,"sender":22963,"msg_type":167,"setting":"system\u0000system_time\u0000GPS+NTP\u0000enum:GPS+NTP,GPS,NTP\u0000","payload":"NwBzeXN0ZW0Ac3lzdGVtX3RpbWUAR1BTK05UUABlbnVtOkdQUytOVFAsR1BTLE5UUAA=","crc":36707,"index":55} +{"length":43,"preamble":85,"sender":22963,"msg_type":167,"setting":"system\u0000connectivity_check_frequency\u00000.1\u0000\u0000","payload":"OABzeXN0ZW0AY29ubmVjdGl2aXR5X2NoZWNrX2ZyZXF1ZW5jeQAwLjEAAA==","crc":39857,"index":56} +{"length":237,"states":[{"cn0":214,"mesid":{"sat":5,"code":0}},{"cn0":181,"mesid":{"sat":21,"code":0}},{"cn0":192,"mesid":{"sat":2,"code":0}},{"cn0":166,"mesid":{"sat":31,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":220,"mesid":{"sat":25,"code":0}},{"cn0":208,"mesid":{"sat":12,"code":0}},{"cn0":214,"mesid":{"sat":29,"code":0}},{"cn0":209,"mesid":{"sat":18,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":206,"mesid":{"sat":131,"code":2}},{"cn0":204,"mesid":{"sat":25,"code":1}},{"cn0":187,"mesid":{"sat":12,"code":1}},{"cn0":151,"mesid":{"sat":31,"code":1}},{"cn0":194,"mesid":{"sat":18,"code":1}},{"cn0":194,"mesid":{"sat":29,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":193,"mesid":{"sat":5,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":213,"mesid":{"sat":100,"code":3}},{"cn0":175,"mesid":{"sat":98,"code":3}},{"cn0":173,"mesid":{"sat":102,"code":3}},{"cn0":208,"mesid":{"sat":101,"code":3}},{"cn0":206,"mesid":{"sat":93,"code":3}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":182,"mesid":{"sat":106,"code":3}},{"cn0":203,"mesid":{"sat":104,"code":3}},{"cn0":171,"mesid":{"sat":98,"code":4}},{"cn0":204,"mesid":{"sat":102,"code":4}},{"cn0":84,"mesid":{"sat":93,"code":4}},{"cn0":200,"mesid":{"sat":100,"code":4}},{"cn0":193,"mesid":{"sat":101,"code":4}},{"cn0":186,"mesid":{"sat":104,"code":4}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":176,"mesid":{"sat":106,"code":4}},{"cn0":198,"mesid":{"sat":35,"code":12}},{"cn0":168,"mesid":{"sat":26,"code":12}},{"cn0":161,"mesid":{"sat":34,"code":12}},{"cn0":189,"mesid":{"sat":24,"code":12}},{"cn0":156,"mesid":{"sat":25,"code":12}},{"cn0":184,"mesid":{"sat":12,"code":12}},{"cn0":185,"mesid":{"sat":19,"code":12}},{"cn0":190,"mesid":{"sat":22,"code":12}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":209,"mesid":{"sat":12,"code":13}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":196,"mesid":{"sat":12,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":192,"mesid":{"sat":25,"code":14}},{"cn0":189,"mesid":{"sat":11,"code":14}},{"cn0":205,"mesid":{"sat":24,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":162,"mesid":{"sat":31,"code":14}},{"cn0":155,"mesid":{"sat":33,"code":14}},{"cn0":201,"mesid":{"sat":25,"code":20}},{"cn0":215,"mesid":{"sat":24,"code":20}},{"cn0":194,"mesid":{"sat":11,"code":20}},{"cn0":172,"mesid":{"sat":31,"code":20}},{"cn0":206,"mesid":{"sat":12,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":170,"mesid":{"sat":33,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}}],"preamble":85,"sender":22963,"msg_type":97,"payload":"BQDWFQC1AgDAHwCmAAAAAAAAGQDcDADQHQDWEgDRAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwLOGQHMDAG7HwGXEgHCHQHCAAAABQHBAAAAAAAAAAAAAAAAZAPVYgOvZgOtZQPQXQPOAAAAagO2aAPLYgSrZgTMXQRUZATIZQTBaAS6AAAAagSwIwzGGgyoIgyhGAy9GQycDAy4Ewy5Fgy+AAAADA3RAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADA7EAAAAGQ7ACw69GA7NAAAAHw6iIQ6bGRTJGBTXCxTCHxSsDBTOAAAAIRSqAAAA","crc":26559} +{"length":47,"preamble":85,"sender":22963,"msg_type":167,"setting":"system\u0000connectivity_check_addresses\u00008.8.8.8\u0000\u0000","payload":"OQBzeXN0ZW0AY29ubmVjdGl2aXR5X2NoZWNrX2FkZHJlc3NlcwA4LjguOC44AAA=","crc":57491,"index":57} +{"length":41,"preamble":85,"sender":22963,"msg_type":167,"setting":"system\u0000connectivity_retry_frequency\u00001\u0000\u0000","payload":"OgBzeXN0ZW0AY29ubmVjdGl2aXR5X3JldHJ5X2ZyZXF1ZW5jeQAxAAA=","crc":58359,"index":58} +{"length":49,"preamble":85,"sender":22963,"msg_type":167,"setting":"system\u0000log_ping_activity\u0000False\u0000enum:False,True\u0000","payload":"OwBzeXN0ZW0AbG9nX3BpbmdfYWN0aXZpdHkARmFsc2UAZW51bTpGYWxzZSxUcnVlAA==","crc":17956,"index":59} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgigvC4QAAAAAAE=","wn":2098,"tow":271498400,"crc":33498} +{"length":16,"flags":17,"ns":399999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EaC8LhDkBwMZAxgo/oPXFw==","day":25,"tow":271498400,"year":2020,"crc":11479,"minutes":24,"month":3,"seconds":40} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.236536265618664,"preamble":85,"sender":22963,"msg_type":522,"payload":"oLwuEIEV5ull6kJA34zIIFaSXsBvJgWkjTwxwAECWwQPBg==","lat":37.8312351582963,"tow":271498400,"h_accuracy":513,"crc":12675,"lon":-122.28650683960903} +{"v_accuracy":713,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"oLwuEAQAAAAFAAAACwAAAPAAyQIPAg==","n":4,"d":11,"tow":271498400,"h_accuracy":240,"crc":14669,"e":5} +{"length":15,"gdop":155,"flags":6,"tdop":77,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"oLwuEJsAhwBNAEgAcgAG","tow":271498400,"crc":52854,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"oLwuEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271498400,"h_accuracy":0,"crc":4373,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"oLwuEP//","tow":271498400,"crc":20814} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":43,"preamble":85,"sender":22963,"msg_type":167,"setting":"system\u0000ota_enabled\u0000False\u0000enum:False,True\u0000","payload":"PABzeXN0ZW0Ab3RhX2VuYWJsZWQARmFsc2UAZW51bTpGYWxzZSxUcnVlAA==","crc":1395,"index":60} +{"length":41,"preamble":85,"sender":22963,"msg_type":167,"setting":"system\u0000ota_debug\u0000False\u0000enum:False,True\u0000","payload":"PQBzeXN0ZW0Ab3RhX2RlYnVnAEZhbHNlAGVudW06RmFsc2UsVHJ1ZQA=","crc":54273,"index":61} +{"length":19,"preamble":85,"sender":22963,"msg_type":167,"setting":"system\u0000ota_url\u0000\u0000\u0000","payload":"PgBzeXN0ZW0Ab3RhX3VybAAAAA==","crc":38465,"index":62} +{"length":45,"preamble":85,"sender":22963,"msg_type":167,"setting":"system\u0000resource_monitor_update_interval\u00000\u0000\u0000","payload":"PwBzeXN0ZW0AcmVzb3VyY2VfbW9uaXRvcl91cGRhdGVfaW50ZXJ2YWwAMAAA","crc":17110,"index":63} +{"length":41,"preamble":85,"sender":22963,"msg_type":167,"setting":"system_info\u0000imageset_build_id\u0000v2.3.19\u0000\u0000","payload":"QABzeXN0ZW1faW5mbwBpbWFnZXNldF9idWlsZF9pZAB2Mi4zLjE5AAA=","crc":10565,"index":64} +{"length":41,"preamble":85,"sender":22963,"msg_type":167,"setting":"system_info\u0000firmware_build_id\u0000v2.3.19\u0000\u0000","payload":"QQBzeXN0ZW1faW5mbwBmaXJtd2FyZV9idWlsZF9pZAB2Mi4zLjE5AAA=","crc":38781,"index":65} +{"length":40,"preamble":85,"sender":22963,"msg_type":167,"setting":"system_info\u0000firmware_version\u0000v2.3.19\u0000\u0000","payload":"QgBzeXN0ZW1faW5mbwBmaXJtd2FyZV92ZXJzaW9uAHYyLjMuMTkAAA==","crc":64133,"index":66} +{"length":59,"preamble":85,"sender":22963,"msg_type":167,"setting":"system_info\u0000firmware_build_date\u00002019-08-23 00:47:27 UTC\u0000\u0000","payload":"QwBzeXN0ZW1faW5mbwBmaXJtd2FyZV9idWlsZF9kYXRlADIwMTktMDgtMjMgMDA6NDc6MjcgVVRDAAA=","crc":63354,"index":67} +{"length":61,"preamble":85,"sender":22963,"msg_type":167,"setting":"system_info\u0000loader_build_id\u0000U-Boot d47e99b for zynq board\u0000\u0000","payload":"RABzeXN0ZW1faW5mbwBsb2FkZXJfYnVpbGRfaWQAVS1Cb290IGQ0N2U5OWIgZm9yIHp5bnEgYm9hcmQAAA==","crc":28916,"index":68} +{"length":57,"preamble":85,"sender":22963,"msg_type":167,"setting":"system_info\u0000loader_build_date\u00002017-02-07 00:48:15 UTC\u0000\u0000","payload":"RQBzeXN0ZW1faW5mbwBsb2FkZXJfYnVpbGRfZGF0ZQAyMDE3LTAyLTA3IDAwOjQ4OjE1IFVUQwAA","crc":6888,"index":69} +{"length":9,"l2ca_bias":0,"preamble":85,"l2p_bias":0,"sender":22963,"msg_type":117,"payload":"/wAAAAAAAAAA","l1ca_bias":0,"mask":255,"crc":49809,"l1p_bias":0} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MggEvS4QAAAAAAE=","wn":2098,"tow":271498500,"crc":16808} +{"length":16,"flags":17,"ns":499999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EQS9LhDkBwMZAxgo/mTNHQ==","day":25,"tow":271498500,"year":2020,"crc":27985,"minutes":24,"month":3,"seconds":40} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.237950086429287,"preamble":85,"sender":22963,"msg_type":522,"payload":"BL0uEHE41+ll6kJAYVHdIFaSXsBOS/9L6jwxwAECWwQPBg==","lat":37.83123515137493,"tow":271498500,"h_accuracy":513,"crc":13383,"lon":-122.28650685895037} +{"v_accuracy":713,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"BL0uEPv///8AAAAADwAAAPAAyQIPAg==","n":-5,"d":15,"tow":271498500,"h_accuracy":240,"crc":40850,"e":0} +{"length":15,"gdop":155,"flags":6,"tdop":77,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"BL0uEJsAhwBNAEgAcgAG","tow":271498500,"crc":59299,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"BL0uEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271498500,"h_accuracy":0,"crc":45978,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"BL0uEP//","tow":271498500,"crc":7318} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":30,"preamble":85,"sender":22963,"msg_type":167,"setting":"system_info\u0000hw_version\u00000.0\u0000\u0000","payload":"RgBzeXN0ZW1faW5mbwBod192ZXJzaW9uADAuMAAA","crc":29540,"index":70} +{"length":39,"preamble":85,"sender":22963,"msg_type":167,"setting":"system_info\u0000hw_revision\u0000Piksi Multi\u0000\u0000","payload":"RwBzeXN0ZW1faW5mbwBod19yZXZpc2lvbgBQaWtzaSBNdWx0aQAA","crc":44630,"index":71} +{"length":32,"preamble":85,"sender":22963,"msg_type":167,"setting":"system_info\u0000hw_variant\u0000Multi\u0000\u0000","payload":"SABzeXN0ZW1faW5mbwBod192YXJpYW50AE11bHRpAAA=","crc":58200,"index":72} +{"length":47,"preamble":85,"sender":22963,"msg_type":167,"setting":"system_info\u0000product_id\u0000Piksi Multi Inertial\u0000\u0000","payload":"SQBzeXN0ZW1faW5mbwBwcm9kdWN0X2lkAFBpa3NpIE11bHRpIEluZXJ0aWFsAAA=","crc":62896,"index":73} +{"length":34,"preamble":85,"sender":22963,"msg_type":167,"setting":"system_info\u0000sbp_sender_id\u000059B3\u0000\u0000","payload":"SgBzeXN0ZW1faW5mbwBzYnBfc2VuZGVyX2lkADU5QjMAAA==","crc":46628,"index":74} +{"length":47,"preamble":85,"sender":22963,"msg_type":167,"setting":"system_info\u0000serial_number\u000000108051217000098\u0000\u0000","payload":"SwBzeXN0ZW1faW5mbwBzZXJpYWxfbnVtYmVyADAwMTA4MDUxMjE3MDAwMDk4AAA=","crc":64562,"index":75} +{"length":37,"preamble":85,"sender":22963,"msg_type":167,"setting":"system_info\u0000pfwp_build_id\u0000v2.3.19\u0000\u0000","payload":"TABzeXN0ZW1faW5mbwBwZndwX2J1aWxkX2lkAHYyLjMuMTkAAA==","crc":64713,"index":76} +{"length":52,"preamble":85,"sender":22963,"msg_type":167,"setting":"system_info\u0000pfwp_build_date\u0000Aug 22 2019 19:01:21\u0000\u0000","payload":"TQBzeXN0ZW1faW5mbwBwZndwX2J1aWxkX2RhdGUAQXVnIDIyIDIwMTkgMTk6MDE6MjEAAA==","crc":1671,"index":77} +{"length":47,"preamble":85,"sender":22963,"msg_type":167,"setting":"system_info\u0000nap_build_id\u0000v2.3.19-0-g9d1c408\u0000\u0000","payload":"TgBzeXN0ZW1faW5mbwBuYXBfYnVpbGRfaWQAdjIuMy4xOS0wLWc5ZDFjNDA4AAA=","crc":63806,"index":78} +{"length":54,"preamble":85,"sender":22963,"msg_type":167,"setting":"system_info\u0000nap_build_date\u00002019-08-22 23:47:51 UTC\u0000\u0000","payload":"TwBzeXN0ZW1faW5mbwBuYXBfYnVpbGRfZGF0ZQAyMDE5LTA4LTIyIDIzOjQ3OjUxIFVUQwAA","crc":50345,"index":79} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MghovS4QAAAAAAE=","wn":2098,"tow":271498600,"crc":3229} +{"length":16,"flags":17,"ns":599999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EWi9LhDkBwMZAxgo/kXDIw==","day":25,"tow":271498600,"year":2020,"crc":9183,"minutes":24,"month":3,"seconds":40} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.2427086899109,"preamble":85,"sender":22963,"msg_type":522,"payload":"aL0uEDs7r+ll6kJARxzjIFaSXsBQnx0oIj4xwAECWwQPBg==","lat":37.831235132753555,"tow":271498600,"h_accuracy":513,"crc":48498,"lon":-122.28650686434513} +{"v_accuracy":713,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"aL0uEPv///8IAAAAIQAAAPAAyQIPAg==","n":-5,"d":33,"tow":271498600,"h_accuracy":240,"crc":12821,"e":8} +{"length":15,"gdop":155,"flags":6,"tdop":77,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"aL0uEJsAhwBNAEgAcgAG","tow":271498600,"crc":60489,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"aL0uEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271498600,"h_accuracy":0,"crc":62863,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"aL0uEP//","tow":271498600,"crc":18541} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"message_type":2,"length":34,"data":[151,255,0,23,255,0,47,255,255,247,255,127,255,255,127,247,255,255,224,1,229,231,85,238,110,229,112],"preamble":85,"sender":22963,"msg_type":30583,"payload":"gwLrvC4QApf/ABf/AC////f/f///f/f//+AB5edV7m7lcA==","tow":271498475,"crc":8923,"sid":{"sat":131,"code":2}} +{"length":31,"preamble":85,"sender":22963,"msg_type":167,"setting":"system_info\u0000nap_channels\u000079\u0000\u0000","payload":"UABzeXN0ZW1faW5mbwBuYXBfY2hhbm5lbHMANzkAAA==","crc":45892,"index":80} +{"length":45,"preamble":85,"sender":22963,"msg_type":167,"setting":"system_info\u0000mac_address\u00008C-C8-F4-90-05-79\u0000\u0000","payload":"UQBzeXN0ZW1faW5mbwBtYWNfYWRkcmVzcwA4Qy1DOC1GNC05MC0wNS03OQAA","crc":16877,"index":81} +{"length":57,"preamble":85,"sender":22963,"msg_type":167,"setting":"system_info\u0000uuid\u0000A516AB02-32DE-441C-9BE7-2AFEB80659B3\u0000\u0000","payload":"UgBzeXN0ZW1faW5mbwB1dWlkAEE1MTZBQjAyLTMyREUtNDQxQy05QkU3LTJBRkVCODA2NTlCMwAA","crc":4186,"index":82} +{"length":50,"preamble":85,"sender":22963,"msg_type":167,"setting":"standalone_logging\u0000enable\u0000False\u0000enum:False,True\u0000","payload":"UwBzdGFuZGFsb25lX2xvZ2dpbmcAZW5hYmxlAEZhbHNlAGVudW06RmFsc2UsVHJ1ZQA=","crc":20678,"index":83} +{"length":52,"preamble":85,"sender":22963,"msg_type":167,"setting":"standalone_logging\u0000output_directory\u0000/media/sda1/\u0000\u0000","payload":"VABzdGFuZGFsb25lX2xvZ2dpbmcAb3V0cHV0X2RpcmVjdG9yeQAvbWVkaWEvc2RhMS8AAA==","crc":60613,"index":84} +{"length":34,"preamble":85,"sender":22963,"msg_type":167,"setting":"standalone_logging\u0000max_fill\u000095\u0000\u0000","payload":"VQBzdGFuZGFsb25lX2xvZ2dpbmcAbWF4X2ZpbGwAOTUAAA==","crc":26638,"index":85} +{"length":39,"preamble":85,"sender":22963,"msg_type":167,"setting":"standalone_logging\u0000file_duration\u000010\u0000\u0000","payload":"VgBzdGFuZGFsb25lX2xvZ2dpbmcAZmlsZV9kdXJhdGlvbgAxMAAA","crc":62818,"index":86} +{"length":64,"preamble":85,"sender":22963,"msg_type":167,"setting":"standalone_logging\u0000logging_file_system\u0000FAT\u0000enum:FAT,F2FS,NTFS\u0000","payload":"VwBzdGFuZGFsb25lX2xvZ2dpbmcAbG9nZ2luZ19maWxlX3N5c3RlbQBGQVQAZW51bTpGQVQsRjJGUyxOVEZTAA==","crc":32416,"index":87} +{"length":60,"preamble":85,"sender":22963,"msg_type":167,"setting":"standalone_logging\u0000copy_system_logs\u0000False\u0000enum:False,True\u0000","payload":"WABzdGFuZGFsb25lX2xvZ2dpbmcAY29weV9zeXN0ZW1fbG9ncwBGYWxzZQBlbnVtOkZhbHNlLFRydWUA","crc":40460,"index":88} +{"length":27,"preamble":85,"sender":22963,"msg_type":167,"setting":"cell_modem\u0000APN\u0000hologram\u0000\u0000","payload":"WQBjZWxsX21vZGVtAEFQTgBob2xvZ3JhbQAA","crc":3343,"index":89} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgjMvS4QAAAAAAE=","wn":2098,"tow":271498700,"crc":34876} +{"length":16,"flags":17,"ns":699999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"Ecy9LhDkBwMZAxgo/ia5KQ==","day":25,"tow":271498700,"year":2020,"crc":62856,"minutes":24,"month":3,"seconds":40} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.24244267612277,"preamble":85,"sender":22963,"msg_type":522,"payload":"zL0uEB24dull6kJAeXYTIVaSXsAeGiW5ED4xwAECWwQPBg==","lat":37.83123510643802,"tow":271498700,"h_accuracy":513,"crc":58751,"lon":-122.28650690937674} +{"v_accuracy":713,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"zL0uEP3/////////3f////AAyQIPAg==","n":-3,"d":-35,"tow":271498700,"h_accuracy":240,"crc":58040,"e":-1} +{"length":15,"gdop":155,"flags":6,"tdop":77,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"zL0uEJsAhwBNAEgAcgAG","tow":271498700,"crc":48893,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"zL0uEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271498700,"h_accuracy":0,"crc":33526,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"zL0uEP//","tow":271498700,"crc":45028} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":42,"preamble":85,"sender":22963,"msg_type":167,"setting":"cell_modem\u0000enable\u0000False\u0000enum:False,True\u0000","payload":"WgBjZWxsX21vZGVtAGVuYWJsZQBGYWxzZQBlbnVtOkZhbHNlLFRydWUA","crc":3796,"index":90} +{"length":41,"preamble":85,"sender":22963,"msg_type":167,"setting":"cell_modem\u0000debug\u0000False\u0000enum:False,True\u0000","payload":"WwBjZWxsX21vZGVtAGRlYnVnAEZhbHNlAGVudW06RmFsc2UsVHJ1ZQA=","crc":42815,"index":91} +{"length":38,"preamble":85,"sender":22963,"msg_type":167,"setting":"cell_modem\u0000device_override\u0000ttyACM0\u0000\u0000","payload":"XABjZWxsX21vZGVtAGRldmljZV9vdmVycmlkZQB0dHlBQ00wAAA=","crc":33669,"index":92} +{"length":50,"preamble":85,"sender":22963,"msg_type":167,"setting":"rtcm_out\u0000output_mode\u0000MSM4\u0000enum:Legacy,MSM4,MSM5\u0000","payload":"XQBydGNtX291dABvdXRwdXRfbW9kZQBNU000AGVudW06TGVnYWN5LE1TTTQsTVNNNQA=","crc":3099,"index":93} +{"length":29,"preamble":85,"sender":22963,"msg_type":167,"setting":"rtcm_out\u0000antenna_height\u00000\u0000\u0000","payload":"XgBydGNtX291dABhbnRlbm5hX2hlaWdodAAwAAA=","crc":26109,"index":94} +{"length":48,"preamble":85,"sender":22963,"msg_type":167,"setting":"rtcm_out\u0000ant_descriptor\u0000HXCGPS500 NONE\u0000\u0000","payload":"XwBydGNtX291dABhbnRfZGVzY3JpcHRvcgBIWENHUFM1MDAgICAgICAgTk9ORQAA","crc":52909,"index":95} +{"length":33,"preamble":85,"sender":22963,"msg_type":167,"setting":"rtcm_out\u0000rcv_descriptor\u0000PIKSI\u0000\u0000","payload":"YABydGNtX291dAByY3ZfZGVzY3JpcHRvcgBQSUtTSQAA","crc":52578,"index":96} +{"length":60,"preamble":85,"sender":22963,"msg_type":167,"setting":"frontend\u0000antenna_selection\u0000Primary\u0000enum:Primary,Secondary\u0000","payload":"YQBmcm9udGVuZABhbnRlbm5hX3NlbGVjdGlvbgBQcmltYXJ5AGVudW06UHJpbWFyeSxTZWNvbmRhcnkA","crc":8235,"index":97} +{"length":45,"preamble":85,"sender":22963,"msg_type":167,"setting":"frontend\u0000antenna_bias\u0000True\u0000enum:False,True\u0000","payload":"YgBmcm9udGVuZABhbnRlbm5hX2JpYXMAVHJ1ZQBlbnVtOkZhbHNlLFRydWUA","crc":11570,"index":98} +{"length":58,"preamble":85,"sender":22963,"msg_type":167,"setting":"metrics_daemon\u0000enable_log_to_file\u0000False\u0000enum:False,True\u0000","payload":"YwBtZXRyaWNzX2RhZW1vbgBlbmFibGVfbG9nX3RvX2ZpbGUARmFsc2UAZW51bTpGYWxzZSxUcnVlAA==","crc":8283,"index":99} +{"length":136,"preamble":85,"sender":22963,"msg_type":151,"payload":"AgAaHgUALDUMAFEtFQB9GRkAbUYaAKEBHQChNx8AlQ4EAxYWBQMyIQYDTggJA18OCgNxKQsDmCUMA6oDEwMiBxQDCzEVA5UlDAyUKRMMIyAUDA8CFgxDIxgMgiMZDJ0OGgxnFR0MLAAiDI4RIwwiLQsOizIMDg88GA5sNhkOlykfDlURIQ4fDw==","crc":41336,"azel":[{"el":30,"az":26,"sid":{"sat":2,"code":0}},{"el":53,"az":44,"sid":{"sat":5,"code":0}},{"el":45,"az":81,"sid":{"sat":12,"code":0}},{"el":25,"az":125,"sid":{"sat":21,"code":0}},{"el":70,"az":109,"sid":{"sat":25,"code":0}},{"el":1,"az":161,"sid":{"sat":26,"code":0}},{"el":55,"az":161,"sid":{"sat":29,"code":0}},{"el":14,"az":149,"sid":{"sat":31,"code":0}},{"el":22,"az":22,"sid":{"sat":4,"code":3}},{"el":33,"az":50,"sid":{"sat":5,"code":3}},{"el":8,"az":78,"sid":{"sat":6,"code":3}},{"el":14,"az":95,"sid":{"sat":9,"code":3}},{"el":41,"az":113,"sid":{"sat":10,"code":3}},{"el":37,"az":152,"sid":{"sat":11,"code":3}},{"el":3,"az":170,"sid":{"sat":12,"code":3}},{"el":7,"az":34,"sid":{"sat":19,"code":3}},{"el":49,"az":11,"sid":{"sat":20,"code":3}},{"el":37,"az":149,"sid":{"sat":21,"code":3}},{"el":41,"az":148,"sid":{"sat":12,"code":12}},{"el":32,"az":35,"sid":{"sat":19,"code":12}},{"el":2,"az":15,"sid":{"sat":20,"code":12}},{"el":35,"az":67,"sid":{"sat":22,"code":12}},{"el":35,"az":130,"sid":{"sat":24,"code":12}},{"el":14,"az":157,"sid":{"sat":25,"code":12}},{"el":21,"az":103,"sid":{"sat":26,"code":12}},{"el":0,"az":44,"sid":{"sat":29,"code":12}},{"el":17,"az":142,"sid":{"sat":34,"code":12}},{"el":45,"az":34,"sid":{"sat":35,"code":12}},{"el":50,"az":139,"sid":{"sat":11,"code":14}},{"el":60,"az":15,"sid":{"sat":12,"code":14}},{"el":54,"az":108,"sid":{"sat":24,"code":14}},{"el":41,"az":151,"sid":{"sat":25,"code":14}},{"el":17,"az":85,"sid":{"sat":31,"code":14}},{"el":15,"az":31,"sid":{"sat":33,"code":14}}]} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"Mggwvi4QAAAAAAE=","wn":2098,"tow":271498800,"crc":57648} +{"length":16,"flags":17,"ns":799999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"ETC+LhDkBwMZAxgo/gevLw==","day":25,"tow":271498800,"year":2020,"crc":4540,"minutes":24,"month":3,"seconds":40} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.24746388199696,"preamble":85,"sender":22963,"msg_type":522,"payload":"ML4uEDX6Null6kJAck0vIVaSXsA/HgDLWT8xwAECWwQPBg==","lat":37.831235076755924,"tow":271498800,"h_accuracy":513,"crc":18754,"lon":-122.28650693530452} +{"v_accuracy":713,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"ML4uEAYAAAD9////BQAAAPAAyQIPAg==","n":6,"d":5,"tow":271498800,"h_accuracy":240,"crc":4465,"e":-3} +{"length":15,"gdop":155,"flags":6,"tdop":77,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"ML4uEJsAhwBNAEgAcgAG","tow":271498800,"crc":8748,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"ML4uEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271498800,"h_accuracy":0,"crc":44299,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"ML4uEP//","tow":271498800,"crc":56169} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":237,"states":[{"cn0":214,"mesid":{"sat":5,"code":0}},{"cn0":180,"mesid":{"sat":21,"code":0}},{"cn0":192,"mesid":{"sat":2,"code":0}},{"cn0":167,"mesid":{"sat":31,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":219,"mesid":{"sat":25,"code":0}},{"cn0":208,"mesid":{"sat":12,"code":0}},{"cn0":214,"mesid":{"sat":29,"code":0}},{"cn0":208,"mesid":{"sat":18,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":206,"mesid":{"sat":131,"code":2}},{"cn0":204,"mesid":{"sat":25,"code":1}},{"cn0":187,"mesid":{"sat":12,"code":1}},{"cn0":150,"mesid":{"sat":31,"code":1}},{"cn0":193,"mesid":{"sat":18,"code":1}},{"cn0":194,"mesid":{"sat":29,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":193,"mesid":{"sat":5,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":212,"mesid":{"sat":11,"code":3}},{"cn0":174,"mesid":{"sat":9,"code":3}},{"cn0":172,"mesid":{"sat":20,"code":3}},{"cn0":207,"mesid":{"sat":5,"code":3}},{"cn0":205,"mesid":{"sat":10,"code":3}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":182,"mesid":{"sat":4,"code":3}},{"cn0":203,"mesid":{"sat":21,"code":3}},{"cn0":171,"mesid":{"sat":9,"code":4}},{"cn0":204,"mesid":{"sat":20,"code":4}},{"cn0":66,"mesid":{"sat":10,"code":4}},{"cn0":200,"mesid":{"sat":11,"code":4}},{"cn0":194,"mesid":{"sat":5,"code":4}},{"cn0":185,"mesid":{"sat":0,"code":4}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":176,"mesid":{"sat":4,"code":4}},{"cn0":198,"mesid":{"sat":35,"code":12}},{"cn0":168,"mesid":{"sat":26,"code":12}},{"cn0":160,"mesid":{"sat":34,"code":12}},{"cn0":188,"mesid":{"sat":24,"code":12}},{"cn0":155,"mesid":{"sat":25,"code":12}},{"cn0":184,"mesid":{"sat":12,"code":12}},{"cn0":184,"mesid":{"sat":19,"code":12}},{"cn0":190,"mesid":{"sat":22,"code":12}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":208,"mesid":{"sat":12,"code":13}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":195,"mesid":{"sat":12,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":192,"mesid":{"sat":25,"code":14}},{"cn0":188,"mesid":{"sat":11,"code":14}},{"cn0":204,"mesid":{"sat":24,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":160,"mesid":{"sat":31,"code":14}},{"cn0":154,"mesid":{"sat":33,"code":14}},{"cn0":200,"mesid":{"sat":25,"code":20}},{"cn0":215,"mesid":{"sat":24,"code":20}},{"cn0":193,"mesid":{"sat":11,"code":20}},{"cn0":172,"mesid":{"sat":31,"code":20}},{"cn0":206,"mesid":{"sat":12,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":170,"mesid":{"sat":33,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}}],"preamble":85,"sender":22963,"msg_type":97,"payload":"BQDWFQC0AgDAHwCnAAAAAAAAGQDbDADQHQDWEgDQAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwLOGQHMDAG7HwGWEgHBHQHCAAAABQHBAAAAAAAAAAAAAAAACwPUCQOuFAOsBQPPCgPNAAAABAO2FQPLCQSrFATMCgRCCwTIBQTCAAS5AAAABASwIwzGGgyoIgygGAy8GQybDAy4Ewy4Fgy+AAAADA3QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADA7DAAAAGQ7ACw68GA7MAAAAHw6gIQ6aGRTIGBTXCxTBHxSsDBTOAAAAIRSqAAAA","crc":31017} +{"length":44,"preamble":85,"sender":22963,"msg_type":167,"setting":"metrics_daemon\u0000metrics_update_interval\u00001\u0000\u0000","payload":"ZABtZXRyaWNzX2RhZW1vbgBtZXRyaWNzX3VwZGF0ZV9pbnRlcnZhbAAxAAA=","crc":42880,"index":100} +{"length":43,"preamble":85,"sender":22963,"msg_type":167,"setting":"imu\u0000imu_raw_output\u0000False\u0000enum:False,True\u0000","payload":"ZQBpbXUAaW11X3Jhd19vdXRwdXQARmFsc2UAZW51bTpGYWxzZSxUcnVlAA==","crc":28433,"index":101} +{"length":38,"preamble":85,"sender":22963,"msg_type":167,"setting":"imu\u0000imu_rate\u0000100\u0000enum:25,50,100,200\u0000","payload":"ZgBpbXUAaW11X3JhdGUAMTAwAGVudW06MjUsNTAsMTAwLDIwMAA=","crc":56634,"index":102} +{"length":37,"preamble":85,"sender":22963,"msg_type":167,"setting":"imu\u0000acc_range\u00008g\u0000enum:2g,4g,8g,16g\u0000","payload":"ZwBpbXUAYWNjX3JhbmdlADhnAGVudW06MmcsNGcsOGcsMTZnAA==","crc":58243,"index":103} +{"length":48,"preamble":85,"sender":22963,"msg_type":167,"setting":"imu\u0000gyro_range\u0000125\u0000enum:2000,1000,500,250,125\u0000","payload":"aABpbXUAZ3lyb19yYW5nZQAxMjUAZW51bToyMDAwLDEwMDAsNTAwLDI1MCwxMjUA","crc":18629,"index":104} +{"length":43,"preamble":85,"sender":22963,"msg_type":167,"setting":"imu\u0000mag_raw_output\u0000False\u0000enum:False,True\u0000","payload":"aQBpbXUAbWFnX3Jhd19vdXRwdXQARmFsc2UAZW51bTpGYWxzZSxUcnVlAA==","crc":29365,"index":105} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgiUvi4QAAAAAAE=","wn":2098,"tow":271498900,"crc":26001} +{"length":16,"flags":17,"ns":899999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EZS+LhDkBwMZAxgo/uikNQ==","day":25,"tow":271498900,"year":2020,"crc":41097,"minutes":24,"month":3,"seconds":40} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.251420082510975,"preamble":85,"sender":22963,"msg_type":522,"payload":"lL4uEFMY+Ohl6kJA5LRHIVaSXsA48QcRXUAxwAECWwQPBg==","lat":37.831235047474046,"tow":271498900,"h_accuracy":513,"crc":27332,"lon":-122.28650695803259} +{"v_accuracy":713,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"lL4uEAIAAAD+////EwAAAPAAyQIPAg==","n":2,"d":19,"tow":271498900,"h_accuracy":240,"crc":64549,"e":-2} +{"length":15,"gdop":155,"flags":6,"tdop":77,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"lL4uEJsAhwBNAEgAcgAG","tow":271498900,"crc":28824,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"lL4uEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271498900,"h_accuracy":0,"crc":55922,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"lL4uEP//","tow":271498900,"crc":15584} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":38,"preamble":85,"sender":22963,"msg_type":167,"setting":"imu\u0000mag_rate\u000012.5\u0000enum:6.25,12.5,25\u0000","payload":"agBpbXUAbWFnX3JhdGUAMTIuNQBlbnVtOjYuMjUsMTIuNSwyNQA=","crc":6972,"index":106} +{"length":26,"preamble":85,"sender":22963,"msg_type":167,"setting":"ndb\u0000valid_alm_acc\u00005000\u0000\u0000","payload":"awBuZGIAdmFsaWRfYWxtX2FjYwA1MDAwAAA=","crc":25153,"index":107} +{"length":25,"preamble":85,"sender":22963,"msg_type":167,"setting":"ndb\u0000valid_eph_acc\u0000100\u0000\u0000","payload":"bABuZGIAdmFsaWRfZXBoX2FjYwAxMDAAAA==","crc":27341,"index":108} +{"length":24,"preamble":85,"sender":22963,"msg_type":167,"setting":"ndb\u0000valid_alm_days\u00006\u0000\u0000","payload":"bQBuZGIAdmFsaWRfYWxtX2RheXMANgAA","crc":55991,"index":109} +{"length":42,"preamble":85,"sender":22963,"msg_type":167,"setting":"ndb\u0000erase_almanac\u0000False\u0000enum:False,True\u0000","payload":"bgBuZGIAZXJhc2VfYWxtYW5hYwBGYWxzZQBlbnVtOkZhbHNlLFRydWUA","crc":15035,"index":110} +{"length":45,"preamble":85,"sender":22963,"msg_type":167,"setting":"ndb\u0000erase_almanac_wn\u0000False\u0000enum:False,True\u0000","payload":"bwBuZGIAZXJhc2VfYWxtYW5hY193bgBGYWxzZQBlbnVtOkZhbHNlLFRydWUA","crc":51897,"index":111} +{"length":44,"preamble":85,"sender":22963,"msg_type":167,"setting":"ndb\u0000erase_gnss_capb\u0000False\u0000enum:False,True\u0000","payload":"cABuZGIAZXJhc2VfZ25zc19jYXBiAEZhbHNlAGVudW06RmFsc2UsVHJ1ZQA=","crc":63569,"index":112} +{"length":39,"preamble":85,"sender":22963,"msg_type":167,"setting":"ndb\u0000erase_iono\u0000False\u0000enum:False,True\u0000","payload":"cQBuZGIAZXJhc2VfaW9ubwBGYWxzZQBlbnVtOkZhbHNlLFRydWUA","crc":28384,"index":113} +{"length":25,"preamble":85,"sender":22963,"msg_type":167,"setting":"ndb\u0000lgf_update_s\u00001800\u0000\u0000","payload":"cgBuZGIAbGdmX3VwZGF0ZV9zADE4MDAAAA==","crc":58798,"index":114} +{"length":26,"preamble":85,"sender":22963,"msg_type":167,"setting":"ndb\u0000lgf_update_m\u000010000\u0000\u0000","payload":"cwBuZGIAbGdmX3VwZGF0ZV9tADEwMDAwAAA=","crc":30766,"index":115} +{"length":51,"text":"GLO L2OF ME 1 [+1356ms] low CN0 too long, dropping","preamble":85,"sender":22963,"msg_type":1025,"payload":"BkdMTyBMMk9GIE1FIDEgWysxMzU2bXNdIGxvdyBDTjAgdG9vIGxvbmcsIGRyb3BwaW5n","crc":49484,"level":6} +{"length":45,"preamble":85,"sender":22963,"msg_type":167,"setting":"ndb\u0000erase_utc_params\u0000False\u0000enum:False,True\u0000","payload":"dABuZGIAZXJhc2VfdXRjX3BhcmFtcwBGYWxzZQBlbnVtOkZhbHNlLFRydWUA","crc":60421,"index":116} +{"length":26,"preamble":85,"sender":22963,"msg_type":167,"setting":"track\u0000elevation_mask\u00009\u0000\u0000","payload":"dQB0cmFjawBlbGV2YXRpb25fbWFzawA5AAA=","crc":48133,"index":117} +{"length":26,"preamble":85,"sender":22963,"msg_type":167,"setting":"track\u0000iq_output_mask\u00000\u0000\u0000","payload":"dgB0cmFjawBpcV9vdXRwdXRfbWFzawAwAAA=","crc":48620,"index":118} +{"length":43,"preamble":85,"sender":22963,"msg_type":167,"setting":"track\u0000mode\u0000rover\u0000enum:rover,base station\u0000","payload":"dwB0cmFjawBtb2RlAHJvdmVyAGVudW06cm92ZXIsYmFzZSBzdGF0aW9uAA==","crc":26603,"index":119} +{"length":249,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":64,"i":110561387},"flags":15,"cn0":214,"P":1051956488,"D":{"f":27,"i":-172},"lock":15,"sid":{"sat":5,"code":0}},{"L":{"f":236,"i":121859564},"flags":15,"cn0":180,"P":1159455208,"D":{"f":95,"i":2177},"lock":15,"sid":{"sat":21,"code":0}},{"L":{"f":73,"i":123298677},"flags":15,"cn0":192,"P":1173147539,"D":{"f":107,"i":-2477},"lock":15,"sid":{"sat":2,"code":0}},{"L":{"f":201,"i":128732135},"flags":15,"cn0":166,"P":1224845537,"D":{"f":143,"i":-387},"lock":15,"sid":{"sat":31,"code":0}},{"L":{"f":37,"i":107805369},"flags":15,"cn0":219,"P":1025733915,"D":{"f":1,"i":-1117},"lock":15,"sid":{"sat":25,"code":0}},{"L":{"f":159,"i":114051335},"flags":15,"cn0":207,"P":1085162265,"D":{"f":51,"i":-2961},"lock":15,"sid":{"sat":12,"code":0}},{"L":{"f":89,"i":110784696},"flags":15,"cn0":213,"P":1054081247,"D":{"f":37,"i":1487},"lock":15,"sid":{"sat":29,"code":0}},{"L":{"f":62,"i":84004204},"flags":15,"cn0":204,"P":1025733953,"D":{"f":57,"i":-870},"lock":15,"sid":{"sat":25,"code":1}},{"L":{"f":67,"i":88871202},"flags":15,"cn0":187,"P":1085162191,"D":{"f":223,"i":-2309},"lock":15,"sid":{"sat":12,"code":1}},{"L":{"f":151,"i":100310757},"flags":15,"cn0":150,"P":1224845488,"D":{"f":50,"i":-301},"lock":15,"sid":{"sat":31,"code":1}},{"L":{"f":59,"i":86325739},"flags":15,"cn0":194,"P":1054081177,"D":{"f":0,"i":1160},"lock":15,"sid":{"sat":29,"code":1}},{"L":{"f":150,"i":86151759},"flags":15,"cn0":194,"P":1051956427,"D":{"f":249,"i":-135},"lock":15,"sid":{"sat":5,"code":1}},{"L":{"f":103,"i":112955223},"flags":15,"cn0":212,"P":1056901194,"D":{"f":85,"i":1180},"lock":15,"sid":{"sat":11,"code":3}},{"L":{"f":21,"i":123267024},"flags":15,"cn0":175,"P":1154197406,"D":{"f":69,"i":-4408},"lock":15,"sid":{"sat":9,"code":3}}],"payload":"+L4uEAAAAAAyCEAIlbM+awiXBkBU/xvWDw8FAOjhG0XsbUMH7IEIX7QPDxUAk8/sRXVjWQdJU/ZrwA8PAgDhqAFJ50usB8l9/o+mDw8fABt1Iz25+mwGJaP7AdsPDxkAGUOuQAdJzAafb/Qzzw8PDADfANQ+uHCaBlnPBSXVDw8dAEF1Iz1szQEFPpr8OcwPDxkBz0KuQCIRTAVD+/bfuw8PDAGwqAFJ5Z76BZfT/jKWDw8fAZkA1D7rOSUFO4gEAMIPDx0By5SzPk+SIgWWef/5wg8PBQFKCP8+V4+7BmecBFXUDw8LA56ny0TQ51gHFcjuRa8PDwkD","header":{"n_obs":64,"t":{"ns_residual":0,"wn":2098,"tow":271499000}},"crc":30823} +{"length":249,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":72,"i":109752197},"flags":15,"cn0":172,"P":1026210380,"D":{"f":0,"i":-1208},"lock":15,"sid":{"sat":20,"code":3}},{"L":{"f":66,"i":114893864},"flags":15,"cn0":208,"P":1074663371,"D":{"f":97,"i":2209},"lock":15,"sid":{"sat":5,"code":3}},{"L":{"f":242,"i":111557316},"flags":15,"cn0":205,"P":1046393064,"D":{"f":230,"i":-3035},"lock":15,"sid":{"sat":10,"code":3}},{"L":{"f":250,"i":120418606},"flags":15,"cn0":182,"P":1124366016,"D":{"f":159,"i":-1303},"lock":15,"sid":{"sat":4,"code":3}},{"L":{"f":186,"i":113444623},"flags":15,"cn0":203,"P":1059991555,"D":{"f":99,"i":1625},"lock":15,"sid":{"sat":21,"code":3}},{"L":{"f":186,"i":95874361},"flags":15,"cn0":171,"P":1154197492,"D":{"f":23,"i":-3427},"lock":15,"sid":{"sat":9,"code":4}},{"L":{"f":214,"i":85362855},"flags":15,"cn0":204,"P":1026210732,"D":{"f":131,"i":-940},"lock":15,"sid":{"sat":20,"code":4}},{"L":{"f":250,"i":87854072},"flags":15,"cn0":200,"P":1056901473,"D":{"f":217,"i":917},"lock":15,"sid":{"sat":11,"code":4}},{"L":{"f":54,"i":89361898},"flags":15,"cn0":194,"P":1074663549,"D":{"f":61,"i":1717},"lock":15,"sid":{"sat":5,"code":4}},{"L":{"f":195,"i":93658906},"flags":15,"cn0":176,"P":1124366166,"D":{"f":202,"i":-1016},"lock":15,"sid":{"sat":4,"code":4}},{"L":{"f":12,"i":121557083},"flags":15,"cn0":199,"P":1167187683,"D":{"f":5,"i":-1498},"lock":15,"sid":{"sat":35,"code":12}},{"L":{"f":62,"i":129166017},"flags":15,"cn0":168,"P":1240248812,"D":{"f":148,"i":-3008},"lock":15,"sid":{"sat":26,"code":12}},{"L":{"f":101,"i":132980346},"flags":15,"cn0":160,"P":1276873672,"D":{"f":108,"i":2248},"lock":15,"sid":{"sat":34,"code":12}},{"L":{"f":142,"i":125131510},"flags":15,"cn0":188,"P":1201509573,"D":{"f":111,"i":-1296},"lock":15,"sid":{"sat":24,"code":12}}],"payload":"+L4uEAAAAAAyCEFMuio9ha+KBkhI+wCsDw8UA8sPDkAoJNkGQqEIYdAPDwUD6LBePsQ6pgbyJfTmzQ8PCgPAdgRDLnEtB/rp+p+2Dw8EAwMwLj8PB8MGulkGY8sPDxUD9KfLRDnttgW6nfIXqw8PCQSsuyo9p4gWBdZU/IPMDw8UBGEJ/z74izwF+pUD2cgPDwsEfRAOQOqNUwU2tQY9wg8PBQRWdwRDGh+VBcMI/MqwDw8EBOPekUVb0D4HDCb6BccPDyMM7LHsScHqsgc+QPSUqA8PGgzIixtMeh7tB2XICGygDw8iDMWUnUf2WnUHjvD6b7wPDxgM","header":{"n_obs":65,"t":{"ns_residual":0,"wn":2098,"tow":271499000}},"crc":21159} +{"length":249,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":129,"i":134692460},"flags":15,"cn0":155,"P":1293313536,"D":{"f":225,"i":1332},"lock":15,"sid":{"sat":25,"code":12}},{"L":{"f":22,"i":121124582},"flags":15,"cn0":184,"P":1163035087,"D":{"f":206,"i":1611},"lock":15,"sid":{"sat":12,"code":12}},{"L":{"f":110,"i":124510617},"flags":15,"cn0":184,"P":1195547717,"D":{"f":242,"i":-283},"lock":15,"sid":{"sat":19,"code":12}},{"L":{"f":22,"i":124740883},"flags":15,"cn0":190,"P":1197758737,"D":{"f":235,"i":2391},"lock":15,"sid":{"sat":22,"code":12}},{"L":{"f":179,"i":93661218},"flags":15,"cn0":208,"P":1163035020,"D":{"f":232,"i":1247},"lock":15,"sid":{"sat":12,"code":13}},{"L":{"f":82,"i":116410513},"flags":15,"cn0":195,"P":1107609186,"D":{"f":36,"i":-1026},"lock":15,"sid":{"sat":12,"code":14}},{"L":{"f":45,"i":132491419},"flags":15,"cn0":192,"P":1260613864,"D":{"f":103,"i":1094},"lock":15,"sid":{"sat":25,"code":14}},{"L":{"f":130,"i":125438480},"flags":15,"cn0":188,"P":1193507386,"D":{"f":23,"i":1049},"lock":15,"sid":{"sat":11,"code":14}},{"L":{"f":107,"i":118387568},"flags":15,"cn0":204,"P":1126420146,"D":{"f":241,"i":-1740},"lock":15,"sid":{"sat":24,"code":14}},{"L":{"f":164,"i":143273419},"flags":15,"cn0":161,"P":1363201284,"D":{"f":74,"i":-3172},"lock":15,"sid":{"sat":31,"code":14}},{"L":{"f":236,"i":144491794},"flags":15,"cn0":154,"P":1374793743,"D":{"f":57,"i":-2141},"lock":15,"sid":{"sat":33,"code":14}},{"L":{"f":129,"i":101519397},"flags":15,"cn0":200,"P":1260613828,"D":{"f":102,"i":838},"lock":15,"sid":{"sat":25,"code":20}},{"L":{"f":252,"i":90712615},"flags":15,"cn0":215,"P":1126420675,"D":{"f":245,"i":-1334},"lock":15,"sid":{"sat":24,"code":20}},{"L":{"f":41,"i":96115177},"flags":15,"cn0":194,"P":1193507219,"D":{"f":188,"i":804},"lock":15,"sid":{"sat":11,"code":20}}],"payload":"+L4uEAAAAAAyCEIAZhZNbD4HCIE0BeGbDw8ZDM+BUkXmNjgHFksGzrgPDwwMRZxCR5nhawdu5f7yuA8PEwwRWWRHE2VvBxZXCeu+Dw8WDIyBUkUiKJUFs98E6NAPDwwNYsYEQpFI8AZS/vskww8PDA7ocCNLm6jlBy1GBGfADw8ZDjp6I0cQCnoHghkEF7wPDwsOss4jQ3BzDgdrNPnxzA8PGA4EzUBRyy2KCKSc80qhDw8fDg+w8VESxZwI7KP3OZoPDyEOxHAjSyUQDQaBRgNmyA8PGRTD0CNDJypoBfzK+vXXDw8YFJN5I0fpmboFKSQDvMIPDwsU","header":{"n_obs":66,"t":{"ns_residual":0,"wn":2098,"tow":271499000}},"crc":7285} +{"length":62,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":118,"i":109780973},"flags":15,"cn0":172,"P":1363201303,"D":{"f":169,"i":-2430},"lock":15,"sid":{"sat":31,"code":20}},{"L":{"f":167,"i":89197696},"flags":15,"cn0":206,"P":1107609027,"D":{"f":1,"i":-786},"lock":15,"sid":{"sat":12,"code":20}},{"L":{"f":181,"i":110714562},"flags":15,"cn0":170,"P":1374793677,"D":{"f":192,"i":-1643},"lock":15,"sid":{"sat":33,"code":20}}],"payload":"+L4uEAAAAAAyCEMXzUBR7R+LBnaC9qmsDw8fFMPFBEKADFEFp+78Ac4PDwwUza/xUcJemQa1lfnAqg8PIRQ=","header":{"n_obs":67,"t":{"ns_residual":0,"wn":2098,"tow":271499000}},"crc":52233} +{"length":9,"l2ca_bias":0,"preamble":85,"l2p_bias":0,"sender":22963,"msg_type":117,"payload":"/wAAAAAAAAAA","l1ca_bias":0,"mask":255,"crc":49809,"l1p_bias":0} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"Mgj4vi4QAAAAAAE=","wn":2098,"tow":271499000,"crc":10404} +{"length":16,"flags":17,"ns":999999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"Efi+LhDkBwMZAxgo/smaOw==","day":25,"tow":271499000,"year":2020,"crc":56769,"minutes":24,"month":3,"seconds":40} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.253070817630952,"preamble":85,"sender":22963,"msg_type":522,"payload":"+L4uEI3ot+hl6kJAnoptIVaSXsADTMU/yUAxwAECWwQPBg==","lat":37.831235017584824,"tow":271499000,"h_accuracy":513,"crc":45144,"lon":-122.28650699326906} +{"v_accuracy":713,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"+L4uEP////8AAAAA9f////AAyQIPAg==","n":-1,"d":-11,"tow":271499000,"h_accuracy":240,"crc":21183,"e":0} +{"length":15,"gdop":155,"flags":6,"tdop":77,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"+L4uEJsAhwBNAEgAcgAG","tow":271499000,"crc":31602,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"+L4uEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271499000,"h_accuracy":0,"crc":40039,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"+L4uEP//","tow":271499000,"crc":26651} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":4,"flags":2147616000,"preamble":85,"sender":22963,"msg_type":65535,"payload":"AAUCgA==","crc":40942} +{"length":24,"z":3890655.0240602265,"preamble":85,"sender":22963,"msg_type":72,"payload":"UO0a3iqORMHK1UJhIkRQwc9nFIPvrk1B","crc":2168,"x":-2694229.735196747,"y":-4264073.519704292} +{"length":30,"preamble":85,"sender":22963,"msg_type":167,"setting":"solution\u0000elevation_mask\u000010\u0000\u0000","payload":"eABzb2x1dGlvbgBlbGV2YXRpb25fbWFzawAxMAAA","crc":29294,"index":120} +{"length":47,"preamble":85,"sender":22963,"msg_type":167,"setting":"solution\u0000dgnss_filter\u0000Fixed\u0000enum:Float,Fixed\u0000","payload":"eQBzb2x1dGlvbgBkZ25zc19maWx0ZXIARml4ZWQAZW51bTpGbG9hdCxGaXhlZAA=","crc":53496,"index":121} +{"length":103,"preamble":85,"sender":22963,"msg_type":167,"setting":"solution\u0000dynamic_motion_model\u0000High Dynamics\u0000enum:High Dynamics,High Horizontal Dynamics,Low Dynamics\u0000","payload":"egBzb2x1dGlvbgBkeW5hbWljX21vdGlvbl9tb2RlbABIaWdoIER5bmFtaWNzAGVudW06SGlnaCBEeW5hbWljcyxIaWdoIEhvcml6b250YWwgRHluYW1pY3MsTG93IER5bmFtaWNzAA==","crc":44919,"index":122} +{"length":34,"preamble":85,"sender":22963,"msg_type":167,"setting":"solution\u0000correction_age_max\u000030\u0000\u0000","payload":"ewBzb2x1dGlvbgBjb3JyZWN0aW9uX2FnZV9tYXgAMzAAAA==","crc":59283,"index":123} +{"length":47,"preamble":85,"sender":22963,"msg_type":167,"setting":"solution\u0000enable_glonass\u0000True\u0000enum:False,True\u0000","payload":"fABzb2x1dGlvbgBlbmFibGVfZ2xvbmFzcwBUcnVlAGVudW06RmFsc2UsVHJ1ZQA=","crc":31326,"index":124} +{"length":47,"preamble":85,"sender":22963,"msg_type":167,"setting":"solution\u0000enable_galileo\u0000True\u0000enum:False,True\u0000","payload":"fQBzb2x1dGlvbgBlbmFibGVfZ2FsaWxlbwBUcnVlAGVudW06RmFsc2UsVHJ1ZQA=","crc":28585,"index":125} +{"length":46,"preamble":85,"sender":22963,"msg_type":167,"setting":"solution\u0000enable_beidou\u0000True\u0000enum:False,True\u0000","payload":"fgBzb2x1dGlvbgBlbmFibGVfYmVpZG91AFRydWUAZW51bTpGYWxzZSxUcnVlAA==","crc":17677,"index":126} +{"length":56,"preamble":85,"sender":22963,"msg_type":167,"setting":"solution\u0000glonass_measurement_std_downweight_factor\u00004\u0000\u0000","payload":"fwBzb2x1dGlvbgBnbG9uYXNzX21lYXN1cmVtZW50X3N0ZF9kb3dud2VpZ2h0X2ZhY3RvcgA0AAA=","crc":33653,"index":127} +{"length":82,"preamble":85,"sender":22963,"msg_type":167,"setting":"solution\u0000dgnss_solution_mode\u0000Low Latency\u0000enum:Low Latency,Time Matched,No DGNSS\u0000","payload":"gABzb2x1dGlvbgBkZ25zc19zb2x1dGlvbl9tb2RlAExvdyBMYXRlbmN5AGVudW06TG93IExhdGVuY3ksVGltZSBNYXRjaGVkLE5vIERHTlNTAA==","crc":11531,"index":128} +{"length":29,"preamble":85,"sender":22963,"msg_type":167,"setting":"solution\u0000heading_offset\u00000\u0000\u0000","payload":"gQBzb2x1dGlvbgBoZWFkaW5nX29mZnNldAAwAAA=","crc":32816,"index":129} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"Mghcvy4QAAAAAAE=","wn":2098,"tow":271499100,"crc":60374} +{"length":16,"flags":17,"ns":99999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EVy/LhDkBwMZAxgp/uD1BQ==","day":25,"tow":271499100,"year":2020,"crc":35483,"minutes":24,"month":3,"seconds":41} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.255288703823705,"preamble":85,"sender":22963,"msg_type":522,"payload":"XL8uEJU4Xuhl6kJAE7+KIVaSXsAH9rmZWkExwAECWwQPBg==","lat":37.831234975820884,"tow":271499100,"h_accuracy":513,"crc":5240,"lon":-122.28650702046825} +{"v_accuracy":713,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"XL8uEPr///8HAAAACgAAAPAAyQIPAg==","n":-6,"d":10,"tow":271499100,"h_accuracy":240,"crc":20647,"e":7} +{"length":15,"gdop":155,"flags":6,"tdop":77,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"XL8uEJsAhwBNAEgAcgAG","tow":271499100,"crc":21159,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"XL8uEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271499100,"h_accuracy":0,"crc":16104,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"XL8uEP//","tow":271499100,"crc":9667} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":46,"preamble":85,"sender":22963,"msg_type":167,"setting":"solution\u0000send_heading\u0000False\u0000enum:False,True\u0000","payload":"ggBzb2x1dGlvbgBzZW5kX2hlYWRpbmcARmFsc2UAZW51bTpGYWxzZSxUcnVlAA==","crc":10082,"index":130} +{"length":62,"preamble":85,"sender":22963,"msg_type":167,"setting":"ext_event_a\u0000edge_trigger\u0000None\u0000enum:None,Rising,Falling,Both\u0000","payload":"hgBleHRfZXZlbnRfYQBlZGdlX3RyaWdnZXIATm9uZQBlbnVtOk5vbmUsUmlzaW5nLEZhbGxpbmcsQm90aAA=","crc":42760,"index":134} +{"length":25,"preamble":85,"sender":22963,"msg_type":167,"setting":"solution\u0000soln_freq\u000010\u0000\u0000","payload":"hABzb2x1dGlvbgBzb2xuX2ZyZXEAMTAAAA==","crc":30733,"index":132} +{"length":34,"preamble":85,"sender":22963,"msg_type":167,"setting":"solution\u0000output_every_n_obs\u000010\u0000\u0000","payload":"hQBzb2x1dGlvbgBvdXRwdXRfZXZlcnlfbl9vYnMAMTAAAA==","crc":9085,"index":133} +{"length":46,"preamble":85,"sender":22963,"msg_type":167,"setting":"solution\u0000disable_raim\u0000False\u0000enum:False,True\u0000","payload":"gwBzb2x1dGlvbgBkaXNhYmxlX3JhaW0ARmFsc2UAZW51bTpGYWxzZSxUcnVlAA==","crc":64354,"index":131} +{"length":29,"preamble":85,"sender":22963,"msg_type":167,"setting":"ext_event_a\u0000sensitivity\u00000\u0000\u0000","payload":"hwBleHRfZXZlbnRfYQBzZW5zaXRpdml0eQAwAAA=","crc":16652,"index":135} +{"length":62,"preamble":85,"sender":22963,"msg_type":167,"setting":"ext_event_b\u0000edge_trigger\u0000None\u0000enum:None,Rising,Falling,Both\u0000","payload":"iABleHRfZXZlbnRfYgBlZGdlX3RyaWdnZXIATm9uZQBlbnVtOk5vbmUsUmlzaW5nLEZhbGxpbmcsQm90aAA=","crc":30712,"index":136} +{"length":29,"preamble":85,"sender":22963,"msg_type":167,"setting":"ext_event_b\u0000sensitivity\u00000\u0000\u0000","payload":"iQBleHRfZXZlbnRfYgBzZW5zaXRpdml0eQAwAAA=","crc":34283,"index":137} +{"length":62,"preamble":85,"sender":22963,"msg_type":167,"setting":"ext_event_c\u0000edge_trigger\u0000None\u0000enum:None,Rising,Falling,Both\u0000","payload":"igBleHRfZXZlbnRfYwBlZGdlX3RyaWdnZXIATm9uZQBlbnVtOk5vbmUsUmlzaW5nLEZhbGxpbmcsQm90aAA=","crc":37430,"index":138} +{"length":29,"preamble":85,"sender":22963,"msg_type":167,"setting":"ext_event_c\u0000sensitivity\u00000\u0000\u0000","payload":"iwBleHRfZXZlbnRfYwBzZW5zaXRpdml0eQAwAAA=","crc":25828,"index":139} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgjAvy4QAAAAAAE=","wn":2098,"tow":271499200,"crc":45706} +{"length":16,"flags":17,"ns":199999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EcC/LhDkBwMZAxgp/sHrCw==","day":25,"tow":271499200,"year":2020,"crc":23728,"minutes":24,"month":3,"seconds":41} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.259742330488546,"preamble":85,"sender":22963,"msg_type":522,"payload":"wL8uEJG9++dl6kJAzpCcIVaSXsDL1S55fkIxwAECWwQPBg==","lat":37.831234929962314,"tow":271499200,"h_accuracy":513,"crc":58296,"lon":-122.28650703706373} +{"v_accuracy":713,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"wL8uEPf///8DAAAAIQAAAPAAyQIPAg==","n":-9,"d":33,"tow":271499200,"h_accuracy":240,"crc":24643,"e":3} +{"length":15,"gdop":155,"flags":6,"tdop":77,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"wL8uEJsAhwBNAEgAcgAG","tow":271499200,"crc":62664,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"wL8uEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271499200,"h_accuracy":0,"crc":49369,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"wL8uEP//","tow":271499200,"crc":57476} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":53,"preamble":85,"sender":22963,"msg_type":167,"setting":"acquisition\u0000almanacs_enabled\u0000False\u0000enum:False,True\u0000","payload":"jABhY3F1aXNpdGlvbgBhbG1hbmFjc19lbmFibGVkAEZhbHNlAGVudW06RmFsc2UsVHJ1ZQA=","crc":58539,"index":140} +{"length":63,"preamble":85,"sender":22963,"msg_type":167,"setting":"acquisition\u0000glonass_acquisition_enabled\u0000True\u0000enum:False,True\u0000","payload":"jQBhY3F1aXNpdGlvbgBnbG9uYXNzX2FjcXVpc2l0aW9uX2VuYWJsZWQAVHJ1ZQBlbnVtOkZhbHNlLFRydWUA","crc":42631,"index":141} +{"length":60,"preamble":85,"sender":22963,"msg_type":167,"setting":"acquisition\u0000sbas_acquisition_enabled\u0000True\u0000enum:False,True\u0000","payload":"jgBhY3F1aXNpdGlvbgBzYmFzX2FjcXVpc2l0aW9uX2VuYWJsZWQAVHJ1ZQBlbnVtOkZhbHNlLFRydWUA","crc":52652,"index":142} +{"length":60,"preamble":85,"sender":22963,"msg_type":167,"setting":"acquisition\u0000bds2_acquisition_enabled\u0000True\u0000enum:False,True\u0000","payload":"jwBhY3F1aXNpdGlvbgBiZHMyX2FjcXVpc2l0aW9uX2VuYWJsZWQAVHJ1ZQBlbnVtOkZhbHNlLFRydWUA","crc":58021,"index":143} +{"length":61,"preamble":85,"sender":22963,"msg_type":167,"setting":"acquisition\u0000qzss_acquisition_enabled\u0000False\u0000enum:False,True\u0000","payload":"kABhY3F1aXNpdGlvbgBxenNzX2FjcXVpc2l0aW9uX2VuYWJsZWQARmFsc2UAZW51bTpGYWxzZSxUcnVlAA==","crc":42916,"index":144} +{"length":63,"preamble":85,"sender":22963,"msg_type":167,"setting":"acquisition\u0000galileo_acquisition_enabled\u0000True\u0000enum:False,True\u0000","payload":"kQBhY3F1aXNpdGlvbgBnYWxpbGVvX2FjcXVpc2l0aW9uX2VuYWJsZWQAVHJ1ZQBlbnVtOkZhbHNlLFRydWUA","crc":65111,"index":145} +{"length":53,"preamble":85,"sender":22963,"msg_type":167,"setting":"system_monitor\u0000heartbeat_period_milliseconds\u00001000\u0000\u0000","payload":"kgBzeXN0ZW1fbW9uaXRvcgBoZWFydGJlYXRfcGVyaW9kX21pbGxpc2Vjb25kcwAxMDAwAAA=","crc":46231,"index":146} +{"length":47,"preamble":85,"sender":22963,"msg_type":167,"setting":"system_monitor\u0000watchdog\u0000True\u0000enum:False,True\u0000","payload":"kwBzeXN0ZW1fbW9uaXRvcgB3YXRjaGRvZwBUcnVlAGVudW06RmFsc2UsVHJ1ZQA=","crc":53002,"index":147} +{"length":57,"preamble":85,"sender":22963,"msg_type":167,"setting":"system_monitor\u0000spectrum_analyzer\u0000False\u0000enum:False,True\u0000","payload":"lABzeXN0ZW1fbW9uaXRvcgBzcGVjdHJ1bV9hbmFseXplcgBGYWxzZQBlbnVtOkZhbHNlLFRydWUA","crc":18500,"index":148} +{"length":51,"preamble":85,"sender":22963,"msg_type":167,"setting":"surveyed_position\u0000broadcast\u0000True\u0000enum:False,True\u0000","payload":"lQBzdXJ2ZXllZF9wb3NpdGlvbgBicm9hZGNhc3QAVHJ1ZQBlbnVtOkZhbHNlLFRydWUA","crc":54284,"index":149} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MggkwC4QAAAAAAE=","wn":2098,"tow":271499300,"crc":60} +{"length":16,"flags":17,"ns":299999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"ESTALhDkBwMZAxgp/qLhEQ==","day":25,"tow":271499300,"year":2020,"crc":20844,"minutes":24,"month":3,"seconds":41} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.257297122529994,"preamble":85,"sender":22963,"msg_type":522,"payload":"JMAuEF6/uudl6kJApXG6IVaSXsAJn2Y53kExwAECWwQPBg==","lat":37.831234899697606,"tow":271499300,"h_accuracy":513,"crc":40450,"lon":-122.28650706489005} +{"v_accuracy":713,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"JMAuEAYAAAD4////6v////AAyQIPAg==","n":6,"d":-22,"tow":271499300,"h_accuracy":240,"crc":16931,"e":-8} +{"length":15,"gdop":155,"flags":6,"tdop":77,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"JMAuEJsAhwBNAEgAcgAG","tow":271499300,"crc":26527,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"JMAuEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271499300,"h_accuracy":0,"crc":15372,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"JMAuEP//","tow":271499300,"crc":5474} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":48,"preamble":85,"sender":22963,"msg_type":167,"setting":"surveyed_position\u0000surveyed_lat\u000037.8312315306\u0000\u0000","payload":"lgBzdXJ2ZXllZF9wb3NpdGlvbgBzdXJ2ZXllZF9sYXQAMzcuODMxMjMxNTMwNgAA","crc":20665,"index":150} +{"length":49,"preamble":85,"sender":22963,"msg_type":167,"setting":"surveyed_position\u0000surveyed_lon\u0000-122.286503511\u0000\u0000","payload":"lwBzdXJ2ZXllZF9wb3NpdGlvbgBzdXJ2ZXllZF9sb24ALTEyMi4yODY1MDM1MTEAAA==","crc":61819,"index":151} +{"length":237,"states":[{"cn0":214,"mesid":{"sat":5,"code":0}},{"cn0":180,"mesid":{"sat":21,"code":0}},{"cn0":191,"mesid":{"sat":2,"code":0}},{"cn0":166,"mesid":{"sat":31,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":219,"mesid":{"sat":25,"code":0}},{"cn0":207,"mesid":{"sat":12,"code":0}},{"cn0":213,"mesid":{"sat":29,"code":0}},{"cn0":208,"mesid":{"sat":18,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":206,"mesid":{"sat":131,"code":2}},{"cn0":204,"mesid":{"sat":25,"code":1}},{"cn0":187,"mesid":{"sat":12,"code":1}},{"cn0":149,"mesid":{"sat":31,"code":1}},{"cn0":194,"mesid":{"sat":18,"code":1}},{"cn0":194,"mesid":{"sat":29,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":193,"mesid":{"sat":5,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":213,"mesid":{"sat":100,"code":3}},{"cn0":174,"mesid":{"sat":98,"code":3}},{"cn0":173,"mesid":{"sat":102,"code":3}},{"cn0":208,"mesid":{"sat":101,"code":3}},{"cn0":206,"mesid":{"sat":93,"code":3}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":183,"mesid":{"sat":106,"code":3}},{"cn0":203,"mesid":{"sat":104,"code":3}},{"cn0":171,"mesid":{"sat":98,"code":4}},{"cn0":204,"mesid":{"sat":102,"code":4}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":200,"mesid":{"sat":100,"code":4}},{"cn0":194,"mesid":{"sat":101,"code":4}},{"cn0":186,"mesid":{"sat":104,"code":4}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":176,"mesid":{"sat":106,"code":4}},{"cn0":199,"mesid":{"sat":35,"code":12}},{"cn0":168,"mesid":{"sat":26,"code":12}},{"cn0":161,"mesid":{"sat":34,"code":12}},{"cn0":188,"mesid":{"sat":24,"code":12}},{"cn0":155,"mesid":{"sat":25,"code":12}},{"cn0":184,"mesid":{"sat":12,"code":12}},{"cn0":184,"mesid":{"sat":19,"code":12}},{"cn0":190,"mesid":{"sat":22,"code":12}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":208,"mesid":{"sat":12,"code":13}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":196,"mesid":{"sat":12,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":192,"mesid":{"sat":25,"code":14}},{"cn0":189,"mesid":{"sat":11,"code":14}},{"cn0":205,"mesid":{"sat":24,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":161,"mesid":{"sat":31,"code":14}},{"cn0":154,"mesid":{"sat":33,"code":14}},{"cn0":200,"mesid":{"sat":25,"code":20}},{"cn0":215,"mesid":{"sat":24,"code":20}},{"cn0":194,"mesid":{"sat":11,"code":20}},{"cn0":172,"mesid":{"sat":31,"code":20}},{"cn0":206,"mesid":{"sat":12,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":170,"mesid":{"sat":33,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}}],"preamble":85,"sender":22963,"msg_type":97,"payload":"BQDWFQC0AgC/HwCmAAAAAAAAGQDbDADPHQDVEgDQAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwLOGQHMDAG7HwGVEgHCHQHCAAAABQHBAAAAAAAAAAAAAAAAZAPVYgOuZgOtZQPQXQPOAAAAagO3aAPLYgSrZgTMAAAAZATIZQTCaAS6AAAAagSwIwzHGgyoIgyhGAy8GQybDAy4Ewy4Fgy+AAAADA3QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADA7EAAAAGQ7ACw69GA7NAAAAHw6hIQ6aGRTIGBTXCxTCHxSsDBTOAAAAIRSqAAAA","crc":28041} +{"length":42,"preamble":85,"sender":22963,"msg_type":167,"setting":"surveyed_position\u0000surveyed_alt\u0000-17.314\u0000\u0000","payload":"mABzdXJ2ZXllZF9wb3NpdGlvbgBzdXJ2ZXllZF9hbHQALTE3LjMxNAAA","crc":37488,"index":152} +{"length":28,"preamble":85,"sender":22963,"msg_type":167,"setting":"sbp\u0000obs_msg_max_size\u0000255\u0000\u0000","payload":"mQBzYnAAb2JzX21zZ19tYXhfc2l6ZQAyNTUAAA==","crc":39888,"index":153} +{"length":42,"preamble":85,"sender":22963,"msg_type":167,"setting":"simulator\u0000enabled\u0000False\u0000enum:False,True\u0000","payload":"mgBzaW11bGF0b3IAZW5hYmxlZABGYWxzZQBlbnVtOkZhbHNlLFRydWUA","crc":64630,"index":154} +{"length":38,"preamble":85,"sender":22963,"msg_type":167,"setting":"simulator\u0000base_ecef_x\u0000-2706098.845\u0000\u0000","payload":"mwBzaW11bGF0b3IAYmFzZV9lY2VmX3gALTI3MDYwOTguODQ1AAA=","crc":26800,"index":155} +{"length":38,"preamble":85,"sender":22963,"msg_type":167,"setting":"simulator\u0000base_ecef_y\u0000-4261216.475\u0000\u0000","payload":"nABzaW11bGF0b3IAYmFzZV9lY2VmX3kALTQyNjEyMTYuNDc1AAA=","crc":51473,"index":156} +{"length":37,"preamble":85,"sender":22963,"msg_type":167,"setting":"simulator\u0000base_ecef_z\u00003885597.912\u0000\u0000","payload":"nQBzaW11bGF0b3IAYmFzZV9lY2VmX3oAMzg4NTU5Ny45MTIAAA==","crc":7630,"index":157} +{"length":21,"preamble":85,"sender":22963,"msg_type":167,"setting":"simulator\u0000speed\u00004\u0000\u0000","payload":"ngBzaW11bGF0b3IAc3BlZWQANAAA","crc":38856,"index":158} +{"length":24,"preamble":85,"sender":22963,"msg_type":167,"setting":"simulator\u0000radius\u0000100\u0000\u0000","payload":"nwBzaW11bGF0b3IAcmFkaXVzADEwMAAA","crc":4094,"index":159} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgiIwC4QAAAAAAE=","wn":2098,"tow":271499400,"crc":44386} +{"length":16,"flags":17,"ns":399999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EYjALhDkBwMZAxgp/oPXFw==","day":25,"tow":271499400,"year":2020,"crc":23198,"minutes":24,"month":3,"seconds":41} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.258869400416703,"preamble":85,"sender":22963,"msg_type":522,"payload":"iMAuEDs6dOdl6kJAULvEIVaSXsCRudhDRUIxwAECWwQPBg==","lat":37.83123486685914,"tow":271499400,"h_accuracy":513,"crc":43261,"lon":-122.28650707447127} +{"v_accuracy":713,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"iMAuEAQAAAALAAAACAAAAPAAyQIPAg==","n":4,"d":8,"tow":271499400,"h_accuracy":240,"crc":27725,"e":11} +{"length":15,"gdop":155,"flags":6,"tdop":77,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"iMAuEJsAhwBNAEgAcgAG","tow":271499400,"crc":4718,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"iMAuEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271499400,"h_accuracy":0,"crc":5590,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"iMAuEP//","tow":271499400,"crc":65449} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":27,"preamble":85,"sender":22963,"msg_type":167,"setting":"simulator\u0000pos_sigma\u00001.5\u0000\u0000","payload":"oABzaW11bGF0b3IAcG9zX3NpZ21hADEuNQAA","crc":23391,"index":160} +{"length":39,"preamble":85,"sender":22963,"msg_type":167,"setting":"simulator\u0000speed_sigma\u00000.15000000596\u0000\u0000","payload":"oQBzaW11bGF0b3IAc3BlZWRfc2lnbWEAMC4xNTAwMDAwMDU5NgAA","crc":16492,"index":161} +{"length":38,"preamble":85,"sender":22963,"msg_type":167,"setting":"simulator\u0000cn0_sigma\u00000.300000011921\u0000\u0000","payload":"ogBzaW11bGF0b3IAY24wX3NpZ21hADAuMzAwMDAwMDExOTIxAAA=","crc":22476,"index":162} +{"length":33,"preamble":85,"sender":22963,"msg_type":167,"setting":"simulator\u0000pseudorange_sigma\u00004\u0000\u0000","payload":"owBzaW11bGF0b3IAcHNldWRvcmFuZ2Vfc2lnbWEANAAA","crc":37629,"index":163} +{"length":41,"preamble":85,"sender":22963,"msg_type":167,"setting":"simulator\u0000phase_sigma\u00000.0299999993294\u0000\u0000","payload":"pABzaW11bGF0b3IAcGhhc2Vfc2lnbWEAMC4wMjk5OTk5OTkzMjk0AAA=","crc":7807,"index":164} +{"length":24,"preamble":85,"sender":22963,"msg_type":167,"setting":"simulator\u0000num_sats\u00009\u0000\u0000","payload":"pQBzaW11bGF0b3IAbnVtX3NhdHMAOQAA","crc":54299,"index":165} +{"length":26,"preamble":85,"sender":22963,"msg_type":167,"setting":"simulator\u0000mode_mask\u000015\u0000\u0000","payload":"pgBzaW11bGF0b3IAbW9kZV9tYXNrADE1AAA=","crc":6546,"index":166} +{"length":69,"preamble":85,"sender":22963,"msg_type":167,"setting":"pps\u0000propagation_mode\u0000Time Limited\u0000enum:None,Time Limited,Unlimited\u0000","payload":"pwBwcHMAcHJvcGFnYXRpb25fbW9kZQBUaW1lIExpbWl0ZWQAZW51bTpOb25lLFRpbWUgTGltaXRlZCxVbmxpbWl0ZWQA","crc":41191,"index":167} +{"length":18,"preamble":85,"sender":22963,"msg_type":167,"setting":"pps\u0000width\u00002000\u0000\u0000","payload":"qABwcHMAd2lkdGgAMjAwMAAA","crc":54297,"index":168} +{"length":18,"preamble":85,"sender":22963,"msg_type":167,"setting":"pps\u0000polarity\u00001\u0000\u0000","payload":"qQBwcHMAcG9sYXJpdHkAMQAA","crc":49868,"index":169} +{"length":9,"l2ca_bias":0,"preamble":85,"l2p_bias":0,"sender":22963,"msg_type":117,"payload":"/wAAAAAAAAAA","l1ca_bias":0,"mask":255,"crc":49809,"l1p_bias":0} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgjswC4QAAAAAAE=","wn":2098,"tow":271499500,"crc":51624} +{"length":16,"flags":17,"ns":499999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EezALhDkBwMZAxgp/mTNHQ==","day":25,"tow":271499500,"year":2020,"crc":7778,"minutes":24,"month":3,"seconds":41} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.26222971261453,"preamble":85,"sender":22963,"msg_type":522,"payload":"7MAuEBIVMedl6kJAbfjhIVaSXsAJuId8IUMxwAECWwQPBg==","lat":37.83123483559224,"tow":271499500,"h_accuracy":513,"crc":9613,"lon":-122.28650710170196} +{"v_accuracy":713,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"7MAuEPr////9////9/////AAyQIPAg==","n":-6,"d":-9,"tow":271499500,"h_accuracy":240,"crc":50933,"e":-3} +{"length":15,"gdop":155,"flags":6,"tdop":77,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"7MAuEJsAhwBNAEgAcgAG","tow":271499500,"crc":16065,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"7MAuEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271499500,"h_accuracy":0,"crc":3424,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"7MAuEP//","tow":271499500,"crc":42512} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":16,"preamble":85,"sender":22963,"msg_type":167,"setting":"pps\u0000offset\u00000\u0000\u0000","payload":"qgBwcHMAb2Zmc2V0ADAAAA==","crc":47180,"index":170} +{"length":19,"preamble":85,"sender":22963,"msg_type":167,"setting":"pps\u0000frequency\u00001\u0000\u0000","payload":"qwBwcHMAZnJlcXVlbmN5ADEAAA==","crc":7400,"index":171} +{"length":29,"preamble":85,"sender":22963,"msg_type":167,"setting":"pps\u0000propagation_timeout\u00005\u0000\u0000","payload":"rABwcHMAcHJvcGFnYXRpb25fdGltZW91dAA1AAA=","crc":60848,"index":172} +{"length":63,"preamble":85,"sender":22963,"msg_type":167,"setting":"ins\u0000output_mode\u0000Disabled\u0000enum:Disabled,Loosely Coupled,Debug\u0000","payload":"rQBpbnMAb3V0cHV0X21vZGUARGlzYWJsZWQAZW51bTpEaXNhYmxlZCxMb29zZWx5IENvdXBsZWQsRGVidWcA","crc":60589,"index":173} +{"length":0,"preamble":85,"sender":22963,"msg_type":166,"payload":"","crc":62569} +{"length":0,"preamble":85,"sender":22963,"msg_type":166,"payload":"","crc":62569} +{"length":0,"preamble":85,"sender":22963,"msg_type":166,"payload":"","crc":62569} +{"length":0,"preamble":85,"sender":22963,"msg_type":166,"payload":"","crc":62569} +{"length":0,"preamble":85,"sender":22963,"msg_type":166,"payload":"","crc":62569} +{"length":0,"preamble":85,"sender":22963,"msg_type":166,"payload":"","crc":62569} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MghQwS4QAAAAAAE=","wn":2098,"tow":271499600,"crc":28891} +{"length":16,"flags":17,"ns":599999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EVDBLhDkBwMZAxgp/kXDIw==","day":25,"tow":271499600,"year":2020,"crc":6940,"minutes":24,"month":3,"seconds":41} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.266803312213042,"preamble":85,"sender":22963,"msg_type":522,"payload":"UMEuEBZz++Zl6kJAoYkOIlaSXsBka8w4TUQxwAECWwQPBg==","lat":37.831234810617545,"tow":271499600,"h_accuracy":513,"crc":3943,"lon":-122.2865071432084} +{"v_accuracy":713,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"UMEuEAIAAAD1////CAAAAPAAyQIPAg==","n":2,"d":8,"tow":271499600,"h_accuracy":240,"crc":25479,"e":-11} +{"length":15,"gdop":155,"flags":6,"tdop":77,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"UMEuEJsAhwBNAEgAcgAG","tow":271499600,"crc":32475,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"UMEuEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271499600,"h_accuracy":0,"crc":19466,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"UMEuEP//","tow":271499600,"crc":64526} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"message_type":25,"length":34,"data":[140,148,0,128,79,245,0,32,0,31,224,3,2,106,144,255,207,207,254,63,255,255,248,15,248,192,144],"preamble":85,"sender":22963,"msg_type":30583,"payload":"gwLRwC4QGYyUAIBP9QAgAB/gAwJqkP/Pz/4////4D/jAkA==","tow":271499473,"crc":35483,"sid":{"sat":131,"code":2}} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"Mgi0wS4QAAAAAAE=","wn":2098,"tow":271499700,"crc":43939} +{"length":16,"flags":17,"ns":699999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EbTBLhDkBwMZAxgp/ia5KQ==","day":25,"tow":271499700,"year":2020,"crc":59202,"minutes":24,"month":3,"seconds":41} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.272936929789065,"preamble":85,"sender":22963,"msg_type":522,"payload":"tMEuEBLlr+Zl6kJAfDMmIlaSXsCPUNMx30UxwAECWwQPBg==","lat":37.83123477543462,"tow":271499700,"h_accuracy":513,"crc":35354,"lon":-122.28650716524675} +{"v_accuracy":713,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"tMEuEP////8DAAAA//////AAyQIPAg==","n":-1,"d":-1,"tow":271499700,"h_accuracy":240,"crc":14739,"e":3} +{"length":15,"gdop":155,"flags":6,"tdop":77,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"tMEuEJsAhwBNAEgAcgAG","tow":271499700,"crc":1638,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"tMEuEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271499700,"h_accuracy":0,"crc":60969,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"tMEuEP//","tow":271499700,"crc":29079} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":136,"preamble":85,"sender":22963,"msg_type":151,"payload":"AgAaHgUALDUMAFEtFQB9GRkAbUYaAKEBHQChNx8AlQ4EAxYWBQMyIQYDTggJA18OCgNxKQsDmCUMA6oDEwMiBxQDCzEVA5UlDAyUKRMMIyAUDA8CFgxDIxgMgiMZDJ0OGgxnFR0MLAAiDI4RIwwiLQsOizIMDg88GA5sNhkOlykfDlURIQ4fDw==","crc":41336,"azel":[{"el":30,"az":26,"sid":{"sat":2,"code":0}},{"el":53,"az":44,"sid":{"sat":5,"code":0}},{"el":45,"az":81,"sid":{"sat":12,"code":0}},{"el":25,"az":125,"sid":{"sat":21,"code":0}},{"el":70,"az":109,"sid":{"sat":25,"code":0}},{"el":1,"az":161,"sid":{"sat":26,"code":0}},{"el":55,"az":161,"sid":{"sat":29,"code":0}},{"el":14,"az":149,"sid":{"sat":31,"code":0}},{"el":22,"az":22,"sid":{"sat":4,"code":3}},{"el":33,"az":50,"sid":{"sat":5,"code":3}},{"el":8,"az":78,"sid":{"sat":6,"code":3}},{"el":14,"az":95,"sid":{"sat":9,"code":3}},{"el":41,"az":113,"sid":{"sat":10,"code":3}},{"el":37,"az":152,"sid":{"sat":11,"code":3}},{"el":3,"az":170,"sid":{"sat":12,"code":3}},{"el":7,"az":34,"sid":{"sat":19,"code":3}},{"el":49,"az":11,"sid":{"sat":20,"code":3}},{"el":37,"az":149,"sid":{"sat":21,"code":3}},{"el":41,"az":148,"sid":{"sat":12,"code":12}},{"el":32,"az":35,"sid":{"sat":19,"code":12}},{"el":2,"az":15,"sid":{"sat":20,"code":12}},{"el":35,"az":67,"sid":{"sat":22,"code":12}},{"el":35,"az":130,"sid":{"sat":24,"code":12}},{"el":14,"az":157,"sid":{"sat":25,"code":12}},{"el":21,"az":103,"sid":{"sat":26,"code":12}},{"el":0,"az":44,"sid":{"sat":29,"code":12}},{"el":17,"az":142,"sid":{"sat":34,"code":12}},{"el":45,"az":34,"sid":{"sat":35,"code":12}},{"el":50,"az":139,"sid":{"sat":11,"code":14}},{"el":60,"az":15,"sid":{"sat":12,"code":14}},{"el":54,"az":108,"sid":{"sat":24,"code":14}},{"el":41,"az":151,"sid":{"sat":25,"code":14}},{"el":17,"az":85,"sid":{"sat":31,"code":14}},{"el":15,"az":31,"sid":{"sat":33,"code":14}}]} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MggYwi4QAAAAAAE=","wn":2098,"tow":271499800,"crc":52872} +{"length":16,"flags":17,"ns":799999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"ERjCLhDkBwMZAxgp/gevLw==","day":25,"tow":271499800,"year":2020,"crc":26613,"minutes":24,"month":3,"seconds":41} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.281675176224887,"preamble":85,"sender":22963,"msg_type":522,"payload":"GMIuENBLU+Zl6kJAfEdAIlaSXsAe+0XdG0gxwAECWwQPBg==","lat":37.83123473231501,"tow":271499800,"h_accuracy":513,"crc":58663,"lon":-122.28650718953389} +{"v_accuracy":713,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"GMIuEPX///8AAAAAFQAAAPAAyQIPAg==","n":-11,"d":21,"tow":271499800,"h_accuracy":240,"crc":29724,"e":0} +{"length":15,"gdop":155,"flags":6,"tdop":77,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"GMIuEJsAhwBNAEgAcgAG","tow":271499800,"crc":65076,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"GMIuEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271499800,"h_accuracy":0,"crc":43464,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"GMIuEP//","tow":271499800,"crc":30094} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":237,"states":[{"cn0":213,"mesid":{"sat":5,"code":0}},{"cn0":180,"mesid":{"sat":21,"code":0}},{"cn0":191,"mesid":{"sat":2,"code":0}},{"cn0":166,"mesid":{"sat":31,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":218,"mesid":{"sat":25,"code":0}},{"cn0":207,"mesid":{"sat":12,"code":0}},{"cn0":213,"mesid":{"sat":29,"code":0}},{"cn0":207,"mesid":{"sat":18,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":205,"mesid":{"sat":131,"code":2}},{"cn0":204,"mesid":{"sat":25,"code":1}},{"cn0":187,"mesid":{"sat":12,"code":1}},{"cn0":150,"mesid":{"sat":31,"code":1}},{"cn0":194,"mesid":{"sat":18,"code":1}},{"cn0":194,"mesid":{"sat":29,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":194,"mesid":{"sat":5,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":213,"mesid":{"sat":11,"code":3}},{"cn0":174,"mesid":{"sat":9,"code":3}},{"cn0":173,"mesid":{"sat":20,"code":3}},{"cn0":208,"mesid":{"sat":5,"code":3}},{"cn0":206,"mesid":{"sat":10,"code":3}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":183,"mesid":{"sat":4,"code":3}},{"cn0":204,"mesid":{"sat":21,"code":3}},{"cn0":171,"mesid":{"sat":9,"code":4}},{"cn0":204,"mesid":{"sat":20,"code":4}},{"cn0":76,"mesid":{"sat":10,"code":4}},{"cn0":200,"mesid":{"sat":11,"code":4}},{"cn0":193,"mesid":{"sat":5,"code":4}},{"cn0":185,"mesid":{"sat":0,"code":4}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":176,"mesid":{"sat":4,"code":4}},{"cn0":199,"mesid":{"sat":35,"code":12}},{"cn0":168,"mesid":{"sat":26,"code":12}},{"cn0":161,"mesid":{"sat":34,"code":12}},{"cn0":189,"mesid":{"sat":24,"code":12}},{"cn0":156,"mesid":{"sat":25,"code":12}},{"cn0":184,"mesid":{"sat":12,"code":12}},{"cn0":184,"mesid":{"sat":19,"code":12}},{"cn0":191,"mesid":{"sat":22,"code":12}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":208,"mesid":{"sat":12,"code":13}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":196,"mesid":{"sat":12,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":192,"mesid":{"sat":25,"code":14}},{"cn0":189,"mesid":{"sat":11,"code":14}},{"cn0":205,"mesid":{"sat":24,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":161,"mesid":{"sat":31,"code":14}},{"cn0":155,"mesid":{"sat":33,"code":14}},{"cn0":200,"mesid":{"sat":25,"code":20}},{"cn0":215,"mesid":{"sat":24,"code":20}},{"cn0":194,"mesid":{"sat":11,"code":20}},{"cn0":172,"mesid":{"sat":31,"code":20}},{"cn0":206,"mesid":{"sat":12,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":170,"mesid":{"sat":33,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}}],"preamble":85,"sender":22963,"msg_type":97,"payload":"BQDVFQC0AgC/HwCmAAAAAAAAGQDaDADPHQDVEgDPAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwLNGQHMDAG7HwGWEgHCHQHCAAAABQHCAAAAAAAAAAAAAAAACwPVCQOuFAOtBQPQCgPOAAAABAO3FQPMCQSrFATMCgRMCwTIBQTBAAS5AAAABASwIwzHGgyoIgyhGAy9GQycDAy4Ewy4Fgy/AAAADA3QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADA7EAAAAGQ7ACw69GA7NAAAAHw6hIQ6bGRTIGBTXCxTCHxSsDBTOAAAAIRSqAAAA","crc":56113} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"Mgh8wi4QAAAAAAE=","wn":2098,"tow":271499900,"crc":43586} +{"length":16,"flags":17,"ns":899999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EXzCLhDkBwMZAxgp/uikNQ==","day":25,"tow":271499900,"year":2020,"crc":43227,"minutes":24,"month":3,"seconds":41} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.286776050857288,"preamble":85,"sender":22963,"msg_type":522,"payload":"fMIuEJDRFuZl6kJAXBhIIlaSXsBFtb8nakkxwAECWwQPBg==","lat":37.83123470415296,"tow":271499900,"h_accuracy":513,"crc":55050,"lon":-122.28650719681303} +{"v_accuracy":713,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"fMIuEAcAAAAJAAAA9f////AAyQIPAg==","n":7,"d":-11,"tow":271499900,"h_accuracy":240,"crc":12504,"e":9} +{"length":15,"gdop":155,"flags":6,"tdop":77,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"fMIuEJsAhwBNAEgAcgAG","tow":271499900,"crc":53915,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"fMIuEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271499900,"h_accuracy":0,"crc":45438,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"fMIuEP//","tow":271499900,"crc":11319} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":249,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":230,"i":110561558},"flags":15,"cn0":213,"P":1051958124,"D":{"f":47,"i":-172},"lock":15,"sid":{"sat":5,"code":0}},{"L":{"f":157,"i":121857386},"flags":15,"cn0":180,"P":1159434488,"D":{"f":200,"i":2177},"lock":15,"sid":{"sat":21,"code":0}},{"L":{"f":105,"i":123301155},"flags":15,"cn0":191,"P":1173171120,"D":{"f":73,"i":-2479},"lock":15,"sid":{"sat":2,"code":0}},{"L":{"f":53,"i":128732522},"flags":15,"cn0":166,"P":1224849201,"D":{"f":27,"i":-386},"lock":15,"sid":{"sat":31,"code":0}},{"L":{"f":132,"i":107806485},"flags":15,"cn0":219,"P":1025744539,"D":{"f":123,"i":-1117},"lock":15,"sid":{"sat":25,"code":0}},{"L":{"f":15,"i":114054296},"flags":15,"cn0":206,"P":1085190431,"D":{"f":231,"i":-2962},"lock":15,"sid":{"sat":12,"code":0}},{"L":{"f":76,"i":110783208},"flags":15,"cn0":213,"P":1054067094,"D":{"f":13,"i":1487},"lock":15,"sid":{"sat":29,"code":0}},{"L":{"f":33,"i":84005074},"flags":15,"cn0":204,"P":1025744576,"D":{"f":248,"i":-871},"lock":15,"sid":{"sat":25,"code":1}},{"L":{"f":25,"i":88873509},"flags":15,"cn0":187,"P":1085190360,"D":{"f":167,"i":-2309},"lock":15,"sid":{"sat":12,"code":1}},{"L":{"f":173,"i":100311058},"flags":15,"cn0":149,"P":1224849150,"D":{"f":63,"i":-303},"lock":15,"sid":{"sat":31,"code":1}},{"L":{"f":180,"i":86324579},"flags":15,"cn0":194,"P":1054067020,"D":{"f":162,"i":1158},"lock":15,"sid":{"sat":29,"code":1}},{"L":{"f":85,"i":86151893},"flags":15,"cn0":194,"P":1051958067,"D":{"f":194,"i":-135},"lock":15,"sid":{"sat":5,"code":1}},{"L":{"f":17,"i":112954043},"flags":15,"cn0":213,"P":1056890160,"D":{"f":32,"i":1179},"lock":15,"sid":{"sat":11,"code":3}},{"L":{"f":41,"i":123271430},"flags":15,"cn0":174,"P":1154238651,"D":{"f":39,"i":-4406},"lock":15,"sid":{"sat":9,"code":3}}],"payload":"4MIuEAAAAAAyCEBsm7M+FgmXBuZU/y/VDw8FAPiQG0VqZUMHnYEIyLQPDxUAsCvtRSNtWQdpUfZJvw8PAgAxtwFJak2sBzV+/humDw8fAJueIz0V/2wGhKP7e9sPDxkAH7GuQJhUzAYPbvTnzg8PDACWydM+6GqaBkzPBQ3VDw8dAMCeIz3S0AEFIZn8+MwPDxkB2LCuQCUaTAUZ+/anuw8PDAH+tgFJEqD6Ba3R/j+VDw8fAUzJ0z5jNSUFtIYEosIPDx0BM5uzPtWSIgVVef/Cwg8PBQEw3f4+u4q7BhGbBCDVDw8LA7tIzEQG+VgHKcruJ64PDwkD","header":{"n_obs":64,"t":{"ns_residual":0,"wn":2098,"tow":271500000}},"crc":52229} +{"length":249,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":13,"i":109753404},"flags":15,"cn0":173,"P":1026221672,"D":{"f":159,"i":-1208},"lock":15,"sid":{"sat":20,"code":3}},{"L":{"f":168,"i":114891654},"flags":15,"cn0":208,"P":1074642710,"D":{"f":1,"i":2208},"lock":15,"sid":{"sat":5,"code":3}},{"L":{"f":243,"i":111560350},"flags":15,"cn0":206,"P":1046421534,"D":{"f":172,"i":-3035},"lock":15,"sid":{"sat":10,"code":3}},{"L":{"f":109,"i":120419909},"flags":15,"cn0":183,"P":1124378171,"D":{"f":225,"i":-1305},"lock":15,"sid":{"sat":4,"code":3}},{"L":{"f":95,"i":113442997},"flags":15,"cn0":204,"P":1059976377,"D":{"f":247,"i":1625},"lock":15,"sid":{"sat":21,"code":3}},{"L":{"f":171,"i":95877788},"flags":15,"cn0":171,"P":1154238780,"D":{"f":231,"i":-3427},"lock":15,"sid":{"sat":9,"code":4}},{"L":{"f":111,"i":85363794},"flags":15,"cn0":204,"P":1026222007,"D":{"f":41,"i":-938},"lock":15,"sid":{"sat":20,"code":4}},{"L":{"f":238,"i":87853154},"flags":15,"cn0":200,"P":1056890438,"D":{"f":230,"i":916},"lock":15,"sid":{"sat":11,"code":4}},{"L":{"f":161,"i":89360179},"flags":15,"cn0":194,"P":1074642878,"D":{"f":76,"i":1718},"lock":15,"sid":{"sat":5,"code":4}},{"L":{"f":197,"i":93659919},"flags":15,"cn0":176,"P":1124378345,"D":{"f":246,"i":-1013},"lock":15,"sid":{"sat":4,"code":4}},{"L":{"f":195,"i":121558579},"flags":15,"cn0":199,"P":1167202052,"D":{"f":24,"i":-1497},"lock":15,"sid":{"sat":35,"code":12}},{"L":{"f":166,"i":129169023},"flags":15,"cn0":168,"P":1240277686,"D":{"f":241,"i":-3008},"lock":15,"sid":{"sat":26,"code":12}},{"L":{"f":252,"i":132978096},"flags":15,"cn0":161,"P":1276852073,"D":{"f":83,"i":2249},"lock":15,"sid":{"sat":34,"code":12}},{"L":{"f":43,"i":125132805},"flags":15,"cn0":189,"P":1201521998,"D":{"f":182,"i":-1294},"lock":15,"sid":{"sat":24,"code":12}}],"payload":"4MIuEAAAAAAyCEFo5io9PLSKBg1I+5+tDw8UAxa/DUCGG9kGqKAIAdAPDwUDHiBfPp5GpgbzJfSszg8PCgM7pgRDRXYtB23n+uG3Dw8EA7n0LT+1AMMGX1kG98wPDxUDPEnMRJz6tgWrnfLnqw8PCQS35yo9UowWBW9W/CnMDw8UBEbe/j5iiDwF7pQD5sgPDwsEvr8NQDOHUwWhtgZMwg8PBQTppgRDDyOVBcUL/PawDw8EBAQXkkUz1j4Hwyf6GMcPDyMMtiLtSX/2sgemQPTxqA8PGgxpNxtMsBXtB/zJCFOhDw8iDE7FnUcFYHUHK/L6tr0PDxgM","header":{"n_obs":65,"t":{"ns_residual":0,"wn":2098,"tow":271500000}},"crc":44285} +{"length":249,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":129,"i":134691127},"flags":15,"cn0":156,"P":1293300755,"D":{"f":203,"i":1332},"lock":15,"sid":{"sat":25,"code":12}},{"L":{"f":79,"i":121122968},"flags":15,"cn0":184,"P":1163019596,"D":{"f":104,"i":1613},"lock":15,"sid":{"sat":12,"code":12}},{"L":{"f":178,"i":124510897},"flags":15,"cn0":184,"P":1195550408,"D":{"f":16,"i":-280},"lock":15,"sid":{"sat":19,"code":12}},{"L":{"f":248,"i":124738489},"flags":15,"cn0":191,"P":1197735762,"D":{"f":163,"i":2392},"lock":15,"sid":{"sat":22,"code":12}},{"L":{"f":210,"i":93659970},"flags":15,"cn0":208,"P":1163019523,"D":{"f":75,"i":1248},"lock":15,"sid":{"sat":12,"code":13}},{"L":{"f":10,"i":116411538},"flags":15,"cn0":196,"P":1107618944,"D":{"f":120,"i":-1027},"lock":15,"sid":{"sat":12,"code":14}},{"L":{"f":143,"i":132490323},"flags":15,"cn0":192,"P":1260603438,"D":{"f":112,"i":1095},"lock":15,"sid":{"sat":25,"code":14}},{"L":{"f":45,"i":125437430},"flags":15,"cn0":189,"P":1193497400,"D":{"f":165,"i":1050},"lock":15,"sid":{"sat":11,"code":14}},{"L":{"f":237,"i":118389305},"flags":15,"cn0":205,"P":1126436671,"D":{"f":99,"i":-1739},"lock":15,"sid":{"sat":24,"code":14}},{"L":{"f":226,"i":143276590},"flags":15,"cn0":161,"P":1363231446,"D":{"f":100,"i":-3172},"lock":15,"sid":{"sat":31,"code":14}},{"L":{"f":19,"i":144493936},"flags":15,"cn0":155,"P":1374814084,"D":{"f":165,"i":-2138},"lock":15,"sid":{"sat":33,"code":14}},{"L":{"f":4,"i":101518558},"flags":15,"cn0":200,"P":1260603405,"D":{"f":210,"i":839},"lock":15,"sid":{"sat":25,"code":20}},{"L":{"f":82,"i":90713947},"flags":15,"cn0":215,"P":1126437205,"D":{"f":184,"i":-1333},"lock":15,"sid":{"sat":24,"code":20}},{"L":{"f":94,"i":96114372},"flags":15,"cn0":194,"P":1193497226,"D":{"f":122,"i":805},"lock":15,"sid":{"sat":11,"code":20}}],"payload":"4MIuEAAAAAAyCEITNBZNNzkHCIE0BcucDw8ZDExFUkWYMDgHT00GaLgPDwwMyKZCR7Hiawey6P4QuA8PEwxS/2NHuVtvB/hYCaO/Dw8WDANFUkVCI5UF0uAES9APDwwNgOwEQpJM8AYK/ft4xA8PDA4uSCNLU6TlB49HBHDADw8ZDjhTI0f2BXoHLRoEpb0PDwsOPw8kQzl6DgftNfljzQ8PGA7WQkFRLjqKCOKc82ShDw8fDoT/8VFwzZwIE6b3pZsPDyEODUgjS94MDQYERwPSyA8PGRRVESRDWy9oBVLL+rjXDw8YFIpSI0fElroFXiUDesIPDwsU","header":{"n_obs":66,"t":{"ns_residual":0,"wn":2098,"tow":271500000}},"crc":45866} +{"length":62,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":88,"i":109783403},"flags":15,"cn0":172,"P":1363231479,"D":{"f":7,"i":-2431},"lock":15,"sid":{"sat":31,"code":20}},{"L":{"f":211,"i":89198481},"flags":15,"cn0":206,"P":1107618778,"D":{"f":237,"i":-787},"lock":15,"sid":{"sat":12,"code":20}},{"L":{"f":87,"i":110716203},"flags":15,"cn0":169,"P":1374814047,"D":{"f":8,"i":-1641},"lock":15,"sid":{"sat":33,"code":20}}],"payload":"4MIuEAAAAAAyCEP3QkFRaymLBliB9gesDw8fFNrrBEKRD1EF0+387c4PDwwUX//xUStlmQZXl/kIqQ8PIRQ=","header":{"n_obs":67,"t":{"ns_residual":0,"wn":2098,"tow":271500000}},"crc":47449} +{"length":9,"l2ca_bias":0,"preamble":85,"l2p_bias":0,"sender":22963,"msg_type":117,"payload":"/wAAAAAAAAAA","l1ca_bias":0,"mask":255,"crc":49809,"l1p_bias":0} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"Mgjgwi4QAAAAAAE=","wn":2098,"tow":271500000,"crc":62238} +{"length":16,"flags":17,"ns":999999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EeDCLhDkBwMZAxgp/smaOw==","day":25,"tow":271500000,"year":2020,"crc":30742,"minutes":24,"month":3,"seconds":41} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.29643931667525,"preamble":85,"sender":22963,"msg_type":522,"payload":"4MIuEJRx1+Vl6kJASh1lIlaSXsBpXnJy40sxwAECWwQPBg==","lat":37.831234674641706,"tow":271500000,"h_accuracy":513,"crc":54548,"lon":-122.28650722383932} +{"v_accuracy":713,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"4MIuEP3///8BAAAA+/////AAyQIPAg==","n":-3,"d":-5,"tow":271500000,"h_accuracy":240,"crc":13121,"e":1} +{"length":15,"gdop":155,"flags":6,"tdop":77,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"4MIuEJsAhwBNAEgAcgAG","tow":271500000,"crc":29940,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"4MIuEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271500000,"h_accuracy":0,"crc":20303,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"4MIuEP//","tow":271500000,"crc":59760} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":4,"flags":2147616000,"preamble":85,"sender":22963,"msg_type":65535,"payload":"AAUCgA==","crc":40942} +{"length":24,"z":3890655.0240602265,"preamble":85,"sender":22963,"msg_type":72,"payload":"UO0a3iqORMHK1UJhIkRQwc9nFIPvrk1B","crc":2168,"x":-2694229.735196747,"y":-4264073.519704292} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"bWFpbgAAAAAAAAAAAAAAAAAAAAAAAAx1AAA=","name":"main\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":47991,"stack_free":29964,"cpu":0} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"aWRsZQAAAAAAAAAAAAAAAAAAAABTAXwAAAA=","name":"idle\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":20597,"stack_free":124,"cpu":339} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"cnBtc2cAAAAAAAAAAAAAAAAAAAABAPQNAAA=","name":"rpmsg\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":20906,"stack_free":3572,"cpu":1} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"U0JQAAAAAAAAAAAAAAAAAAAAAAAAAPz/AAA=","name":"SBP\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":51784,"stack_free":65532,"cpu":0} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"TkFQAAAAAAAAAAAAAAAAAAAAAAAAAASAAAA=","name":"NAP\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":33651,"stack_free":32772,"cpu":0} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"bWFuYWdlIFBWAAAAAAAAAAAAAAAAACQEAAA=","name":"manage PV\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":29877,"stack_free":1060,"cpu":0} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"SU1VAAAAAAAAAAAAAAAAAAAAAAAAAPQHAAA=","name":"IMU\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":14252,"stack_free":2036,"cpu":0} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"SU1VIGF1eAAAAAAAAAAAAAAAAAAAAEwIAAA=","name":"IMU aux\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":18976,"stack_free":2124,"cpu":0} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"bmRiAAAAAAAAAAAAAAAAAAAAAAAAAFAMAAA=","name":"ndb\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":26120,"stack_free":3152,"cpu":0} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"TkFQIFRyYWNraW5nAAAAAAAAAAAtAdR3AAA=","name":"NAP Tracking\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":25923,"stack_free":30676,"cpu":301} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"ZGVjb2RlAAAAAAAAAAAAAAAAAAAHANQGAAA=","name":"decode\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":22929,"stack_free":1748,"cpu":7} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"bWFuYWdlIGFjcQAAAAAAAAAAAAC1AKR3AAA=","name":"manage acq\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":21459,"stack_free":30628,"cpu":181} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"c3lzdGVtIG1vbml0b3IAAAAAAAAAACwGAAA=","name":"system monitor\u0000\u0000\u0000\u0000\u0000\u0000","crc":58531,"stack_free":1580,"cpu":0} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"V2F0Y2hkb2cAAAAAAAAAAAAAAAAAAOQDAAA=","name":"Watchdog\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":44438,"stack_free":996,"cpu":0} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"c3RhcmxpbmcAAAAAAAAAAAAAAACcAPz/AAA=","name":"starling\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":30365,"stack_free":65532,"cpu":156} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"bWVfY2FsY19wdnQAAAAAAAAAAAAJAIwjAAA=","name":"me_calc_pvt\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":57561,"stack_free":9100,"cpu":9} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"UFBTAAAAAAAAAAAAAAAAAAAAAAAAAEgHAAA=","name":"PPS\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":38576,"stack_free":1864,"cpu":0} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"c3BlY3RydW0gYW5hbHl6ZXIAAAAAANQPAAA=","name":"spectrum analyzer\u0000\u0000\u0000","crc":50933,"stack_free":4052,"cpu":0} +{"cpu_vint":989,"length":10,"fe_temperature":5641,"preamble":85,"sender":22963,"cpu_vaux":1780,"msg_type":181,"payload":"4xbdA/QGXRUJFg==","dev_vin":5859,"crc":55979,"cpu_temperature":5469} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MghEwy4QAAAAAAE=","wn":2098,"tow":271500100,"crc":12396} +{"length":16,"flags":17,"ns":99999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EUTDLhDkBwMZAxgq/uD1BQ==","day":25,"tow":271500100,"year":2020,"crc":27599,"minutes":24,"month":3,"seconds":42} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.303330802555877,"preamble":85,"sender":22963,"msg_type":522,"payload":"RMMuEAHTmuVl6kJAsSSBIlaSXsDQ2GQWp00xwAECWwQPBg==","lat":37.831234646413584,"tow":271500100,"h_accuracy":513,"crc":31891,"lon":-122.28650724994328} +{"v_accuracy":713,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"RMMuEPv///8AAAAABgAAAPAAyQIPAg==","n":-5,"d":6,"tow":271500100,"h_accuracy":240,"crc":58566,"e":0} +{"length":15,"gdop":155,"flags":6,"tdop":77,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"RMMuEJsAhwBNAEgAcgAG","tow":271500100,"crc":23841,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"RMMuEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271500100,"h_accuracy":0,"crc":60864,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"RMMuEP//","tow":271500100,"crc":42152} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"Mgiowy4QAAAAAAE=","wn":2098,"tow":271500200,"crc":49899} +{"length":16,"flags":17,"ns":199999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EajDLhDkBwMZAxgq/sHrCw==","day":25,"tow":271500200,"year":2020,"crc":17523,"minutes":24,"month":3,"seconds":42} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.307614578419596,"preamble":85,"sender":22963,"msg_type":522,"payload":"qMMuEGxYbeVl6kJA4eqTIlaSXsDCFTrUv04xwAECWwQPBg==","lat":37.83123462523585,"tow":271500200,"h_accuracy":513,"crc":43214,"lon":-122.28650726742809} +{"v_accuracy":713,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"qMMuEAkAAAADAAAA+P////AAyQIPAg==","n":9,"d":-8,"tow":271500200,"h_accuracy":240,"crc":62719,"e":3} +{"length":15,"gdop":155,"flags":6,"tdop":77,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"qMMuEJsAhwBNAEgAcgAG","tow":271500200,"crc":729,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"qMMuEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271500200,"h_accuracy":0,"crc":4416,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"qMMuEP//","tow":271500200,"crc":9331} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MggMxC4QAAAAAAE=","wn":2098,"tow":271500300,"crc":33106} +{"length":16,"flags":17,"ns":299999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EQzELhDkBwMZAxgq/qLhEQ==","day":25,"tow":271500300,"year":2020,"crc":63562,"minutes":24,"month":3,"seconds":42} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.317478471167046,"preamble":85,"sender":22963,"msg_type":522,"payload":"DMQuEHjtLuVl6kJAzEWvIlaSXsC32OJERlExwAECWwQPBg==","lat":37.831234596170304,"tow":271500300,"h_accuracy":513,"crc":21170,"lon":-122.28650729290456} +{"v_accuracy":713,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"DMQuEP7///8AAAAAJAAAAPAAyQIPAg==","n":-2,"d":36,"tow":271500300,"h_accuracy":240,"crc":33198,"e":0} +{"length":15,"gdop":155,"flags":6,"tdop":77,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"DMQuEJsAhwBNAEgAcgAG","tow":271500300,"crc":8299,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"DMQuEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271500300,"h_accuracy":0,"crc":28601,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"DMQuEP//","tow":271500300,"crc":42030} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":51,"text":"GLO L2OF ME 1 [+1348ms] low CN0 too long, dropping","preamble":85,"sender":22963,"msg_type":1025,"payload":"BkdMTyBMMk9GIE1FIDEgWysxMzQ4bXNdIGxvdyBDTjAgdG9vIGxvbmcsIGRyb3BwaW5n","crc":48467,"level":6} +{"length":237,"states":[{"cn0":213,"mesid":{"sat":5,"code":0}},{"cn0":179,"mesid":{"sat":21,"code":0}},{"cn0":191,"mesid":{"sat":2,"code":0}},{"cn0":166,"mesid":{"sat":31,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":219,"mesid":{"sat":25,"code":0}},{"cn0":207,"mesid":{"sat":12,"code":0}},{"cn0":213,"mesid":{"sat":29,"code":0}},{"cn0":208,"mesid":{"sat":18,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":206,"mesid":{"sat":131,"code":2}},{"cn0":204,"mesid":{"sat":25,"code":1}},{"cn0":187,"mesid":{"sat":12,"code":1}},{"cn0":149,"mesid":{"sat":31,"code":1}},{"cn0":194,"mesid":{"sat":18,"code":1}},{"cn0":194,"mesid":{"sat":29,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":193,"mesid":{"sat":5,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":213,"mesid":{"sat":100,"code":3}},{"cn0":174,"mesid":{"sat":98,"code":3}},{"cn0":173,"mesid":{"sat":102,"code":3}},{"cn0":208,"mesid":{"sat":101,"code":3}},{"cn0":206,"mesid":{"sat":93,"code":3}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":183,"mesid":{"sat":106,"code":3}},{"cn0":204,"mesid":{"sat":104,"code":3}},{"cn0":172,"mesid":{"sat":98,"code":4}},{"cn0":204,"mesid":{"sat":102,"code":4}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":200,"mesid":{"sat":100,"code":4}},{"cn0":194,"mesid":{"sat":101,"code":4}},{"cn0":186,"mesid":{"sat":104,"code":4}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":176,"mesid":{"sat":106,"code":4}},{"cn0":199,"mesid":{"sat":35,"code":12}},{"cn0":168,"mesid":{"sat":26,"code":12}},{"cn0":161,"mesid":{"sat":34,"code":12}},{"cn0":189,"mesid":{"sat":24,"code":12}},{"cn0":156,"mesid":{"sat":25,"code":12}},{"cn0":185,"mesid":{"sat":12,"code":12}},{"cn0":184,"mesid":{"sat":19,"code":12}},{"cn0":191,"mesid":{"sat":22,"code":12}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":208,"mesid":{"sat":12,"code":13}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":195,"mesid":{"sat":12,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":192,"mesid":{"sat":25,"code":14}},{"cn0":188,"mesid":{"sat":11,"code":14}},{"cn0":204,"mesid":{"sat":24,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":160,"mesid":{"sat":31,"code":14}},{"cn0":155,"mesid":{"sat":33,"code":14}},{"cn0":200,"mesid":{"sat":25,"code":20}},{"cn0":215,"mesid":{"sat":24,"code":20}},{"cn0":194,"mesid":{"sat":11,"code":20}},{"cn0":172,"mesid":{"sat":31,"code":20}},{"cn0":206,"mesid":{"sat":12,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":170,"mesid":{"sat":33,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}}],"preamble":85,"sender":22963,"msg_type":97,"payload":"BQDVFQCzAgC/HwCmAAAAAAAAGQDbDADPHQDVEgDQAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwLOGQHMDAG7HwGVEgHCHQHCAAAABQHBAAAAAAAAAAAAAAAAZAPVYgOuZgOtZQPQXQPOAAAAagO3aAPMYgSsZgTMAAAAZATIZQTCaAS6AAAAagSwIwzHGgyoIgyhGAy9GQycDAy5Ewy4Fgy/AAAADA3QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADA7DAAAAGQ7ACw68GA7MAAAAHw6gIQ6bGRTIGBTXCxTCHxSsDBTOAAAAIRSqAAAA","crc":54924} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MghwxC4QAAAAAAE=","wn":2098,"tow":271500400,"crc":40857} +{"length":16,"flags":17,"ns":399999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EXDELhDkBwMZAxgq/oPXFw==","day":25,"tow":271500400,"year":2020,"crc":49961,"minutes":24,"month":3,"seconds":42} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.32564540466397,"preamble":85,"sender":22963,"msg_type":522,"payload":"cMQuEIFI5eRl6kJAnvnLIlaSXsDbH0t/XVMxwAECWwQPBg==","lat":37.83123456187696,"tow":271500400,"h_accuracy":513,"crc":26314,"lon":-122.28650731963577} +{"v_accuracy":713,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"cMQuEP7////3////CgAAAPAAyQIPAg==","n":-2,"d":10,"tow":271500400,"h_accuracy":240,"crc":48380,"e":-9} +{"length":15,"gdop":155,"flags":6,"tdop":77,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"cMQuEJsAhwBNAEgAcgAG","tow":271500400,"crc":25867,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"cMQuEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271500400,"h_accuracy":0,"crc":38122,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"cMQuEP//","tow":271500400,"crc":59985} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":9,"l2ca_bias":0,"preamble":85,"l2p_bias":0,"sender":22963,"msg_type":117,"payload":"/wAAAAAAAAAA","l1ca_bias":0,"mask":255,"crc":49809,"l1p_bias":0} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgjUxC4QAAAAAAE=","wn":2098,"tow":271500500,"crc":6968} +{"length":16,"flags":17,"ns":499999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EdTELhDkBwMZAxgq/mTNHQ==","day":25,"tow":271500500,"year":2020,"crc":63950,"minutes":24,"month":3,"seconds":42} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.33194968492098,"preamble":85,"sender":22963,"msg_type":522,"payload":"1MQuEJo5ouRl6kJASKX8IlaSXsAyp5Cn+lQxwAECWwQPBg==","lat":37.83123453065055,"tow":271500500,"h_accuracy":513,"crc":51811,"lon":-122.28650736496377} +{"v_accuracy":713,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"1MQuEPr////w/////P////AAyQIPAg==","n":-6,"d":-4,"tow":271500500,"h_accuracy":240,"crc":48685,"e":-16} +{"length":15,"gdop":155,"flags":6,"tdop":77,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"1MQuEJsAhwBNAEgAcgAG","tow":271500500,"crc":14271,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"1MQuEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271500500,"h_accuracy":0,"crc":58259,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"1MQuEP//","tow":271500500,"crc":3544} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"Mgg4xS4QAAAAAAE=","wn":2098,"tow":271500600,"crc":44652} +{"length":16,"flags":17,"ns":599999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"ETjFLhDkBwMZAxgq/kXDIw==","day":25,"tow":271500600,"year":2020,"crc":38963,"minutes":24,"month":3,"seconds":42} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.339282294821203,"preamble":85,"sender":22963,"msg_type":522,"payload":"OMUuEO7+aORl6kJAcGgHI1aSXsBwXlg021YxwAECWwQPBg==","lat":37.83123450400113,"tow":271500600,"h_accuracy":513,"crc":34670,"lon":-122.28650737498697} +{"v_accuracy":713,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"OMUuEAUAAAANAAAACQAAAPAAyQIPAg==","n":5,"d":9,"tow":271500600,"h_accuracy":240,"crc":10093,"e":13} +{"length":15,"gdop":155,"flags":6,"tdop":77,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"OMUuEJsAhwBNAEgAcgAG","tow":271500600,"crc":4902,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"OMUuEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271500600,"h_accuracy":0,"crc":51941,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"OMUuEP//","tow":271500600,"crc":10066} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgicxS4QAAAAAAE=","wn":2098,"tow":271500700,"crc":10957} +{"length":16,"flags":17,"ns":699999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EZzFLhDkBwMZAxgq/ia5KQ==","day":25,"tow":271500700,"year":2020,"crc":20068,"minutes":24,"month":3,"seconds":42} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.34504286944973,"preamble":85,"sender":22963,"msg_type":522,"payload":"nMUuEAybLeRl6kJA2r8jI1aSXsAtAcC6VFgxwAECWwQPBg==","lat":37.83123447634543,"tow":271500700,"h_accuracy":513,"crc":3093,"lon":-122.28650740138201} +{"v_accuracy":713,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"nMUuEP3///8JAAAA7/////AAyQIPAg==","n":-3,"d":-17,"tow":271500700,"h_accuracy":240,"crc":4954,"e":9} +{"length":15,"gdop":155,"flags":6,"tdop":77,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"nMUuEJsAhwBNAEgAcgAG","tow":271500700,"crc":16786,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"nMUuEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271500700,"h_accuracy":0,"crc":48540,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"nMUuEP//","tow":271500700,"crc":49371} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"message_type":25,"length":34,"data":[178,11,253,0,88,13,0,160,0,31,255,226,246,109,14,255,239,220,6,192,40,16,23,240,16,189,208],"preamble":85,"sender":22963,"msg_type":30583,"payload":"gwLTxC4QGbIL/QBYDQCgAB//4vZtDv/v3AbAKBAX8BC90A==","tow":271500499,"crc":35171,"sid":{"sat":131,"code":2}} +{"length":136,"preamble":85,"sender":22963,"msg_type":151,"payload":"AgAaHgUALDUMAFEtFQB9GRkAbUYaAKEBHQChNx8AlQ4EAxYWBQMyIQYDTggJA18OCgNxKQsDmCUMA6oDEwMiBxQDCzEVA5UlDAyUKRMMIyAUDA8CFgxDIxgMgiMZDJ0OGgxnFR0MLAAiDI4RIwwiLQsOizIMDg88GA5sNhkOlykfDlURIQ4fDw==","crc":41336,"azel":[{"el":30,"az":26,"sid":{"sat":2,"code":0}},{"el":53,"az":44,"sid":{"sat":5,"code":0}},{"el":45,"az":81,"sid":{"sat":12,"code":0}},{"el":25,"az":125,"sid":{"sat":21,"code":0}},{"el":70,"az":109,"sid":{"sat":25,"code":0}},{"el":1,"az":161,"sid":{"sat":26,"code":0}},{"el":55,"az":161,"sid":{"sat":29,"code":0}},{"el":14,"az":149,"sid":{"sat":31,"code":0}},{"el":22,"az":22,"sid":{"sat":4,"code":3}},{"el":33,"az":50,"sid":{"sat":5,"code":3}},{"el":8,"az":78,"sid":{"sat":6,"code":3}},{"el":14,"az":95,"sid":{"sat":9,"code":3}},{"el":41,"az":113,"sid":{"sat":10,"code":3}},{"el":37,"az":152,"sid":{"sat":11,"code":3}},{"el":3,"az":170,"sid":{"sat":12,"code":3}},{"el":7,"az":34,"sid":{"sat":19,"code":3}},{"el":49,"az":11,"sid":{"sat":20,"code":3}},{"el":37,"az":149,"sid":{"sat":21,"code":3}},{"el":41,"az":148,"sid":{"sat":12,"code":12}},{"el":32,"az":35,"sid":{"sat":19,"code":12}},{"el":2,"az":15,"sid":{"sat":20,"code":12}},{"el":35,"az":67,"sid":{"sat":22,"code":12}},{"el":35,"az":130,"sid":{"sat":24,"code":12}},{"el":14,"az":157,"sid":{"sat":25,"code":12}},{"el":21,"az":103,"sid":{"sat":26,"code":12}},{"el":0,"az":44,"sid":{"sat":29,"code":12}},{"el":17,"az":142,"sid":{"sat":34,"code":12}},{"el":45,"az":34,"sid":{"sat":35,"code":12}},{"el":50,"az":139,"sid":{"sat":11,"code":14}},{"el":60,"az":15,"sid":{"sat":12,"code":14}},{"el":54,"az":108,"sid":{"sat":24,"code":14}},{"el":41,"az":151,"sid":{"sat":25,"code":14}},{"el":17,"az":85,"sid":{"sat":31,"code":14}},{"el":15,"az":31,"sid":{"sat":33,"code":14}}]} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MggAxi4QAAAAAAE=","wn":2098,"tow":271500800,"crc":48100} +{"length":16,"flags":17,"ns":799999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EQDGLhDkBwMZAxgq/gevLw==","day":25,"tow":271500800,"year":2020,"crc":7501,"minutes":24,"month":3,"seconds":42} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.35820586607074,"preamble":85,"sender":22963,"msg_type":522,"payload":"AMYuEPDC1uNl6kJAzDRHI1aSXsBaAjBhs1sxwAECWwQPBg==","lat":37.83123443590546,"tow":271500800,"h_accuracy":513,"crc":20951,"lon":-122.28650743440375} +{"v_accuracy":713,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"AMYuEPf///8DAAAAEwAAAPAAyQIPAg==","n":-9,"d":19,"tow":271500800,"h_accuracy":240,"crc":65053,"e":3} +{"length":15,"gdop":155,"flags":6,"tdop":77,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"AMYuEJsAhwBNAEgAcgAG","tow":271500800,"crc":27230,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"AMYuEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271500800,"h_accuracy":0,"crc":11670,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"AMYuEP//","tow":271500800,"crc":60238} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":237,"states":[{"cn0":213,"mesid":{"sat":5,"code":0}},{"cn0":179,"mesid":{"sat":21,"code":0}},{"cn0":191,"mesid":{"sat":2,"code":0}},{"cn0":165,"mesid":{"sat":31,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":218,"mesid":{"sat":25,"code":0}},{"cn0":206,"mesid":{"sat":12,"code":0}},{"cn0":212,"mesid":{"sat":29,"code":0}},{"cn0":207,"mesid":{"sat":18,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":205,"mesid":{"sat":131,"code":2}},{"cn0":204,"mesid":{"sat":25,"code":1}},{"cn0":187,"mesid":{"sat":12,"code":1}},{"cn0":150,"mesid":{"sat":31,"code":1}},{"cn0":194,"mesid":{"sat":18,"code":1}},{"cn0":194,"mesid":{"sat":29,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":193,"mesid":{"sat":5,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":213,"mesid":{"sat":11,"code":3}},{"cn0":175,"mesid":{"sat":9,"code":3}},{"cn0":173,"mesid":{"sat":20,"code":3}},{"cn0":208,"mesid":{"sat":5,"code":3}},{"cn0":206,"mesid":{"sat":10,"code":3}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":183,"mesid":{"sat":4,"code":3}},{"cn0":204,"mesid":{"sat":21,"code":3}},{"cn0":172,"mesid":{"sat":9,"code":4}},{"cn0":205,"mesid":{"sat":20,"code":4}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":200,"mesid":{"sat":11,"code":4}},{"cn0":194,"mesid":{"sat":5,"code":4}},{"cn0":185,"mesid":{"sat":0,"code":4}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":176,"mesid":{"sat":4,"code":4}},{"cn0":199,"mesid":{"sat":35,"code":12}},{"cn0":169,"mesid":{"sat":26,"code":12}},{"cn0":160,"mesid":{"sat":34,"code":12}},{"cn0":189,"mesid":{"sat":24,"code":12}},{"cn0":157,"mesid":{"sat":25,"code":12}},{"cn0":185,"mesid":{"sat":12,"code":12}},{"cn0":185,"mesid":{"sat":19,"code":12}},{"cn0":191,"mesid":{"sat":22,"code":12}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":208,"mesid":{"sat":12,"code":13}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":195,"mesid":{"sat":12,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":192,"mesid":{"sat":25,"code":14}},{"cn0":189,"mesid":{"sat":11,"code":14}},{"cn0":205,"mesid":{"sat":24,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":160,"mesid":{"sat":31,"code":14}},{"cn0":155,"mesid":{"sat":33,"code":14}},{"cn0":200,"mesid":{"sat":25,"code":20}},{"cn0":215,"mesid":{"sat":24,"code":20}},{"cn0":194,"mesid":{"sat":11,"code":20}},{"cn0":173,"mesid":{"sat":31,"code":20}},{"cn0":207,"mesid":{"sat":12,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":170,"mesid":{"sat":33,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}}],"preamble":85,"sender":22963,"msg_type":97,"payload":"BQDVFQCzAgC/HwClAAAAAAAAGQDaDADOHQDUEgDPAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwLNGQHMDAG7HwGWEgHCHQHCAAAABQHBAAAAAAAAAAAAAAAACwPVCQOvFAOtBQPQCgPOAAAABAO3FQPMCQSsFATNAAAACwTIBQTCAAS5AAAABASwIwzHGgypIgygGAy9GQydDAy5Ewy5Fgy/AAAADA3QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADA7DAAAAGQ7ACw69GA7NAAAAHw6gIQ6bGRTIGBTXCxTCHxStDBTPAAAAIRSqAAAA","crc":20927} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"Mghkxi4QAAAAAAE=","wn":2098,"tow":271500900,"crc":57134} +{"length":16,"flags":17,"ns":899999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EWTGLhDkBwMZAxgq/uikNQ==","day":25,"tow":271500900,"year":2020,"crc":53859,"minutes":24,"month":3,"seconds":42} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.369410916983266,"preamble":85,"sender":22963,"msg_type":522,"payload":"ZMYuEFq6luNl6kJARWp3I1aSXsB/Or+2kV4xwAECWwQPBg==","lat":37.83123440608752,"tow":271500900,"h_accuracy":513,"crc":49407,"lon":-122.28650747930176} +{"v_accuracy":713,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"ZMYuEAIAAAD9////AwAAAPAAyQIPAg==","n":2,"d":3,"tow":271500900,"h_accuracy":240,"crc":2626,"e":-3} +{"length":15,"gdop":155,"flags":6,"tdop":77,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"ZMYuEJsAhwBNAEgAcgAG","tow":271500900,"crc":18161,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"ZMYuEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271500900,"h_accuracy":0,"crc":13600,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"ZMYuEP//","tow":271500900,"crc":45815} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":249,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":172,"i":110561730},"flags":15,"cn0":213,"P":1051959758,"D":{"f":128,"i":-174},"lock":15,"sid":{"sat":5,"code":0}},{"L":{"f":0,"i":121855208},"flags":15,"cn0":179,"P":1159413749,"D":{"f":41,"i":2176},"lock":15,"sid":{"sat":21,"code":0}},{"L":{"f":3,"i":123303633},"flags":15,"cn0":191,"P":1173194704,"D":{"f":226,"i":-2479},"lock":15,"sid":{"sat":2,"code":0}},{"L":{"f":150,"i":128732908},"flags":15,"cn0":165,"P":1224852880,"D":{"f":213,"i":-389},"lock":15,"sid":{"sat":31,"code":0}},{"L":{"f":241,"i":107807601},"flags":15,"cn0":218,"P":1025755165,"D":{"f":110,"i":-1118},"lock":15,"sid":{"sat":25,"code":0}},{"L":{"f":89,"i":114057256},"flags":15,"cn0":206,"P":1085218599,"D":{"f":14,"i":-2962},"lock":15,"sid":{"sat":12,"code":0}},{"L":{"f":225,"i":110781719},"flags":15,"cn0":212,"P":1054052934,"D":{"f":87,"i":1486},"lock":15,"sid":{"sat":29,"code":0}},{"L":{"f":22,"i":84005944},"flags":15,"cn0":204,"P":1025755204,"D":{"f":206,"i":-872},"lock":15,"sid":{"sat":25,"code":1}},{"L":{"f":206,"i":88875815},"flags":15,"cn0":187,"P":1085218527,"D":{"f":201,"i":-2310},"lock":15,"sid":{"sat":12,"code":1}},{"L":{"f":191,"i":100311359},"flags":15,"cn0":150,"P":1224852826,"D":{"f":9,"i":-304},"lock":15,"sid":{"sat":31,"code":1}},{"L":{"f":228,"i":86323419},"flags":15,"cn0":194,"P":1054052858,"D":{"f":30,"i":1159},"lock":15,"sid":{"sat":29,"code":1}},{"L":{"f":46,"i":86152027},"flags":15,"cn0":193,"P":1051959701,"D":{"f":85,"i":-135},"lock":15,"sid":{"sat":5,"code":1}},{"L":{"f":2,"i":112952863},"flags":15,"cn0":213,"P":1056879117,"D":{"f":73,"i":1178},"lock":15,"sid":{"sat":11,"code":3}},{"L":{"f":184,"i":123275835},"flags":15,"cn0":175,"P":1154279861,"D":{"f":154,"i":-4408},"lock":15,"sid":{"sat":9,"code":3}}],"payload":"yMYuEAAAAAAyCEDOobM+wgmXBqxS/4DVDw8FAPU/G0XoXEMHAIAIKbMPDxUA0IftRdF2WQcDUfbivw8PAgCQxQFJ7E6sB5Z7/tWlDw8fAB3IIz1xA20G8aL7btoPDxkAJx+vQChgzAZZbvQOzg8PDABGktM+F2WaBuHOBVfUDw8dAETIIz041AEFFpj8zswPDxkB3x6vQCcjTAXO+vbJuw8PDAFaxQFJP6H6Bb/Q/gmWDw8fAfqR0z7bMCUF5IcEHsIPDx0BlaGzPluTIgUuef9VwQ8PBQENsv4+H4a7BgKaBEnVDw8LA7XpzEQ7ClkHuMjumq8PDwkD","header":{"n_obs":64,"t":{"ns_residual":0,"wn":2098,"tow":271501000}},"crc":64239} +{"length":249,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":108,"i":109754610},"flags":15,"cn0":173,"P":1026232951,"D":{"f":64,"i":-1208},"lock":15,"sid":{"sat":20,"code":3}},{"L":{"f":41,"i":114889445},"flags":15,"cn0":207,"P":1074622026,"D":{"f":34,"i":2207},"lock":15,"sid":{"sat":5,"code":3}},{"L":{"f":251,"i":111563384},"flags":15,"cn0":206,"P":1046449979,"D":{"f":176,"i":-3037},"lock":15,"sid":{"sat":10,"code":3}},{"L":{"f":21,"i":120421212},"flags":15,"cn0":183,"P":1124390331,"D":{"f":139,"i":-1304},"lock":15,"sid":{"sat":4,"code":3}},{"L":{"f":161,"i":113441370},"flags":15,"cn0":204,"P":1059961187,"D":{"f":80,"i":1624},"lock":15,"sid":{"sat":21,"code":3}},{"L":{"f":52,"i":95881215},"flags":15,"cn0":172,"P":1154280035,"D":{"f":137,"i":-3427},"lock":15,"sid":{"sat":9,"code":4}},{"L":{"f":186,"i":85364732},"flags":15,"cn0":204,"P":1026233298,"D":{"f":11,"i":-940},"lock":15,"sid":{"sat":20,"code":4}},{"L":{"f":30,"i":87852237},"flags":15,"cn0":199,"P":1056879394,"D":{"f":132,"i":916},"lock":15,"sid":{"sat":11,"code":4}},{"L":{"f":33,"i":89358461},"flags":15,"cn0":194,"P":1074622222,"D":{"f":89,"i":1717},"lock":15,"sid":{"sat":5,"code":4}},{"L":{"f":245,"i":93660932},"flags":15,"cn0":176,"P":1124390490,"D":{"f":246,"i":-1017},"lock":15,"sid":{"sat":4,"code":4}},{"L":{"f":9,"i":121560076},"flags":15,"cn0":199,"P":1167216429,"D":{"f":64,"i":-1499},"lock":15,"sid":{"sat":35,"code":12}},{"L":{"f":144,"i":129172029},"flags":15,"cn0":169,"P":1240306552,"D":{"f":239,"i":-3009},"lock":15,"sid":{"sat":26,"code":12}},{"L":{"f":12,"i":132975847},"flags":15,"cn0":161,"P":1276830443,"D":{"f":219,"i":2247},"lock":15,"sid":{"sat":34,"code":12}},{"L":{"f":178,"i":125134099},"flags":15,"cn0":189,"P":1201534422,"D":{"f":91,"i":-1298},"lock":15,"sid":{"sat":24,"code":12}}],"payload":"yMYuEAAAAAAyCEF3Eis98riKBmxI+0CtDw8UA0puDUDlEtkGKZ8IIs8PDwUDO49fPnhSpgb7I/Swzg8PCgO71QRDXHstBxXo+ou3Dw8EA2O5LT9a+sIGoVgGUMwPDxUDY+rMRP8HtwU0nfKJrA8PCQTSEys9/I8WBbpU/AvMDw8UBCKz/j7NhDwFHpQDhMcPDwsEDm8NQH2AUwUhtQZZwg8PBQRa1gRDBCeVBfUH/PawDw8EBC1PkkUM3D4HCSX6QMcPDyMMeJPtST0CsweQP/TvqQ8PGgzr4hpM5wztBwzHCNuhDw8iDNb1nUcTZXUHsu76W70PDxgM","header":{"n_obs":65,"t":{"ns_residual":0,"wn":2098,"tow":271501000}},"crc":59582} +{"length":249,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":102,"i":134689794},"flags":15,"cn0":157,"P":1293287952,"D":{"f":191,"i":1330},"lock":15,"sid":{"sat":25,"code":12}},{"L":{"f":10,"i":121121354},"flags":15,"cn0":185,"P":1163004104,"D":{"f":235,"i":1612},"lock":15,"sid":{"sat":12,"code":12}},{"L":{"f":241,"i":124511177},"flags":15,"cn0":185,"P":1195553098,"D":{"f":140,"i":-283},"lock":15,"sid":{"sat":19,"code":12}},{"L":{"f":158,"i":124736096},"flags":15,"cn0":191,"P":1197712786,"D":{"f":157,"i":2391},"lock":15,"sid":{"sat":22,"code":12}},{"L":{"f":146,"i":93658722},"flags":15,"cn0":208,"P":1163004025,"D":{"f":54,"i":1247},"lock":15,"sid":{"sat":12,"code":13}},{"L":{"f":75,"i":116412562},"flags":15,"cn0":196,"P":1107628692,"D":{"f":191,"i":-1026},"lock":15,"sid":{"sat":12,"code":14}},{"L":{"f":210,"i":132489227},"flags":15,"cn0":193,"P":1260593009,"D":{"f":152,"i":1092},"lock":15,"sid":{"sat":25,"code":14}},{"L":{"f":106,"i":125436379},"flags":15,"cn0":189,"P":1193487404,"D":{"f":209,"i":1047},"lock":15,"sid":{"sat":11,"code":14}},{"L":{"f":66,"i":118391043},"flags":15,"cn0":205,"P":1126453205,"D":{"f":41,"i":-1740},"lock":15,"sid":{"sat":24,"code":14}},{"L":{"f":144,"i":143279761},"flags":15,"cn0":160,"P":1363261626,"D":{"f":73,"i":-3172},"lock":15,"sid":{"sat":31,"code":14}},{"L":{"f":161,"i":144496076},"flags":15,"cn0":155,"P":1374834470,"D":{"f":172,"i":-2142},"lock":15,"sid":{"sat":33,"code":14}},{"L":{"f":106,"i":101517718},"flags":15,"cn0":200,"P":1260592980,"D":{"f":154,"i":837},"lock":15,"sid":{"sat":25,"code":20}},{"L":{"f":134,"i":90715278},"flags":15,"cn0":215,"P":1126453735,"D":{"f":5,"i":-1333},"lock":15,"sid":{"sat":24,"code":20}},{"L":{"f":61,"i":96113567},"flags":15,"cn0":194,"P":1193487226,"D":{"f":119,"i":803},"lock":15,"sid":{"sat":11,"code":20}}],"payload":"yMYuEAAAAAAyCEIQAhZNAjQHCGYyBb+dDw8ZDMgIUkVKKjgHCkwG67kPDwwMSrFCR8njawfx5f6MuQ8PEwySpWNHYFJvB55XCZ2/Dw8WDHkIUkViHpUFkt8ENtAPDwwNlBIFQpJQ8AZL/vu/xA8PDA5xHyNLC6DlB9JEBJjBDw8ZDiwsI0fbAXoHahcE0b0PDwsO1U8kQwOBDgdCNPkpzQ8PGA66uEFRkUaKCJCc80mgDw8fDiZP8lHM1ZwIoaL3rJsPDyEOVB8jS5YJDQZqRQOayA8PGRTnUSRDjjRoBYbL+gXXDw8YFHorI0efk7oFPSMDd8IPDwsU","header":{"n_obs":66,"t":{"ns_residual":0,"wn":2098,"tow":271501000}},"crc":3129} +{"length":62,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":215,"i":109785832},"flags":15,"cn0":173,"P":1363261639,"D":{"f":137,"i":-2430},"lock":15,"sid":{"sat":31,"code":20}},{"L":{"f":165,"i":89199266},"flags":15,"cn0":207,"P":1107628522,"D":{"f":72,"i":-787},"lock":15,"sid":{"sat":12,"code":20}},{"L":{"f":127,"i":110717843},"flags":15,"cn0":170,"P":1374834414,"D":{"f":85,"i":-1641},"lock":15,"sid":{"sat":33,"code":20}}],"payload":"yMYuEAAAAAAyCEPHuEFR6DKLBteC9omtDw8fFOoRBUKiElEFpe38SM8PDwwU7k7yUZNrmQZ/l/lVqg8PIRQ=","header":{"n_obs":67,"t":{"ns_residual":0,"wn":2098,"tow":271501000}},"crc":42607} +{"length":9,"l2ca_bias":0,"preamble":85,"l2p_bias":0,"sender":22963,"msg_type":117,"payload":"/wAAAAAAAAAA","l1ca_bias":0,"mask":255,"crc":49809,"l1p_bias":0} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgjIxi4QAAAAAAE=","wn":2098,"tow":271501000,"crc":29296} +{"length":16,"flags":17,"ns":999999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EcjGLhDkBwMZAxgq/smaOw==","day":25,"tow":271501000,"year":2020,"crc":53552,"minutes":24,"month":3,"seconds":42} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.37650146007629,"preamble":85,"sender":22963,"msg_type":522,"payload":"yMYuEJMzdeNl6kJAujazI1aSXsCG7FFmYmAxwAECWwQPBg==","lat":37.83123439047554,"tow":271501000,"h_accuracy":513,"crc":43924,"lon":-122.2865075349936} +{"v_accuracy":713,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"yMYuEAwAAAD0////8/////AAyQIPAg==","n":12,"d":-13,"tow":271501000,"h_accuracy":240,"crc":50351,"e":-12} +{"length":15,"gdop":155,"flags":6,"tdop":77,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"yMYuEJsAhwBNAEgAcgAG","tow":271501000,"crc":13056,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"yMYuEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271501000,"h_accuracy":0,"crc":7418,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"yMYuEP//","tow":271501000,"crc":22588} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":4,"flags":2147616000,"preamble":85,"sender":22963,"msg_type":65535,"payload":"AAUCgA==","crc":40942} +{"length":24,"z":3890655.0240602265,"preamble":85,"sender":22963,"msg_type":72,"payload":"UO0a3iqORMHK1UJhIkRQwc9nFIPvrk1B","crc":2168,"x":-2694229.735196747,"y":-4264073.519704292} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"Mggsxy4QAAAAAAE=","wn":2098,"tow":271501100,"crc":61147} +{"length":16,"flags":17,"ns":99999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"ESzHLhDkBwMZAxgr/uD1BQ==","day":25,"tow":271501100,"year":2020,"crc":44131,"minutes":24,"month":3,"seconds":43} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.389207952487148,"preamble":85,"sender":22963,"msg_type":522,"payload":"LMcuECa9GuNl6kJAjAfXI1aSXsCCRuMho2MxwAECWwQPBg==","lat":37.831234348350606,"tow":271501100,"h_accuracy":513,"crc":19195,"lon":-122.28650756834958} +{"v_accuracy":713,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"LMcuEPP///8FAAAAEAAAAPAAyQIPAg==","n":-13,"d":16,"tow":271501100,"h_accuracy":240,"crc":62123,"e":5} +{"length":15,"gdop":155,"flags":6,"tdop":77,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"LMcuEJsAhwBNAEgAcgAG","tow":271501100,"crc":12508,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"LMcuEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271501100,"h_accuracy":0,"crc":27439,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"LMcuEP//","tow":271501100,"crc":32756} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgiQxy4QAAAAAAE=","wn":2098,"tow":271501200,"crc":4219} +{"length":16,"flags":17,"ns":199999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EZDHLhDkBwMZAxgr/sHrCw==","day":25,"tow":271501200,"year":2020,"crc":59228,"minutes":24,"month":3,"seconds":43} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.39797631384704,"preamble":85,"sender":22963,"msg_type":522,"payload":"kMcuEMfX0eJl6kJAj3T0I1aSXsBAjpTG4WUxwAECWwQPBg==","lat":37.83123431440577,"tow":271501200,"h_accuracy":513,"crc":21201,"lon":-122.28650759575451} +{"v_accuracy":713,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"kMcuEP////8EAAAAGwAAAPAAyQIPAg==","n":-1,"d":27,"tow":271501200,"h_accuracy":240,"crc":59162,"e":4} +{"length":15,"gdop":155,"flags":6,"tdop":77,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"kMcuEJsAhwBNAEgAcgAG","tow":271501200,"crc":2983,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"kMcuEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271501200,"h_accuracy":0,"crc":65459,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"kMcuEP//","tow":271501200,"crc":36795} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"Mgj0xy4QAAAAAAE=","wn":2098,"tow":271501300,"crc":29873} +{"length":16,"flags":17,"ns":299999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EfTHLhDkBwMZAxgr/qLhEQ==","day":25,"tow":271501300,"year":2020,"crc":21880,"minutes":24,"month":3,"seconds":43} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.40702277097078,"preamble":85,"sender":22963,"msg_type":522,"payload":"9McuEAJUfeJl6kJACXMFJFaSXsD7C/KkMmgxwAECWwQPBg==","lat":37.831234275050534,"tow":271501300,"h_accuracy":513,"crc":54186,"lon":-122.28650761158146} +{"v_accuracy":713,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"9McuEPf///8FAAAACQAAAPAAyQIPAg==","n":-9,"d":9,"tow":271501300,"h_accuracy":240,"crc":16318,"e":5} +{"length":15,"gdop":155,"flags":6,"tdop":77,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"9McuEJsAhwBNAEgAcgAG","tow":271501300,"crc":9992,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"9McuEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271501300,"h_accuracy":0,"crc":59141,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"9McuEP//","tow":271501300,"crc":54786} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":237,"states":[{"cn0":212,"mesid":{"sat":5,"code":0}},{"cn0":179,"mesid":{"sat":21,"code":0}},{"cn0":190,"mesid":{"sat":2,"code":0}},{"cn0":165,"mesid":{"sat":31,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":218,"mesid":{"sat":25,"code":0}},{"cn0":206,"mesid":{"sat":12,"code":0}},{"cn0":212,"mesid":{"sat":29,"code":0}},{"cn0":206,"mesid":{"sat":18,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":204,"mesid":{"sat":131,"code":2}},{"cn0":204,"mesid":{"sat":25,"code":1}},{"cn0":187,"mesid":{"sat":12,"code":1}},{"cn0":150,"mesid":{"sat":31,"code":1}},{"cn0":195,"mesid":{"sat":18,"code":1}},{"cn0":194,"mesid":{"sat":29,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":194,"mesid":{"sat":5,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":213,"mesid":{"sat":100,"code":3}},{"cn0":176,"mesid":{"sat":98,"code":3}},{"cn0":173,"mesid":{"sat":102,"code":3}},{"cn0":207,"mesid":{"sat":101,"code":3}},{"cn0":206,"mesid":{"sat":93,"code":3}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":183,"mesid":{"sat":106,"code":3}},{"cn0":204,"mesid":{"sat":104,"code":3}},{"cn0":172,"mesid":{"sat":98,"code":4}},{"cn0":204,"mesid":{"sat":102,"code":4}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":199,"mesid":{"sat":100,"code":4}},{"cn0":194,"mesid":{"sat":101,"code":4}},{"cn0":185,"mesid":{"sat":104,"code":4}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":176,"mesid":{"sat":106,"code":4}},{"cn0":199,"mesid":{"sat":35,"code":12}},{"cn0":169,"mesid":{"sat":26,"code":12}},{"cn0":160,"mesid":{"sat":34,"code":12}},{"cn0":189,"mesid":{"sat":24,"code":12}},{"cn0":157,"mesid":{"sat":25,"code":12}},{"cn0":185,"mesid":{"sat":12,"code":12}},{"cn0":185,"mesid":{"sat":19,"code":12}},{"cn0":191,"mesid":{"sat":22,"code":12}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":208,"mesid":{"sat":12,"code":13}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":196,"mesid":{"sat":12,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":193,"mesid":{"sat":25,"code":14}},{"cn0":189,"mesid":{"sat":11,"code":14}},{"cn0":205,"mesid":{"sat":24,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":160,"mesid":{"sat":31,"code":14}},{"cn0":155,"mesid":{"sat":33,"code":14}},{"cn0":200,"mesid":{"sat":25,"code":20}},{"cn0":215,"mesid":{"sat":24,"code":20}},{"cn0":194,"mesid":{"sat":11,"code":20}},{"cn0":172,"mesid":{"sat":31,"code":20}},{"cn0":207,"mesid":{"sat":12,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":170,"mesid":{"sat":33,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}}],"preamble":85,"sender":22963,"msg_type":97,"payload":"BQDUFQCzAgC+HwClAAAAAAAAGQDaDADOHQDUEgDOAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwLMGQHMDAG7HwGWEgHDHQHCAAAABQHCAAAAAAAAAAAAAAAAZAPVYgOwZgOtZQPPXQPOAAAAagO3aAPMYgSsZgTMAAAAZATHZQTCaAS5AAAAagSwIwzHGgypIgygGAy9GQydDAy5Ewy5Fgy/AAAADA3QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADA7EAAAAGQ7BCw69GA7NAAAAHw6gIQ6bGRTIGBTXCxTCHxSsDBTPAAAAIRSqAAAA","crc":42939} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MghYyC4QAAAAAAE=","wn":2098,"tow":271501400,"crc":45} +{"length":16,"flags":17,"ns":399999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EVjILhDkBwMZAxgr/oPXFw==","day":25,"tow":271501400,"year":2020,"crc":50663,"minutes":24,"month":3,"seconds":43} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.41047878049493,"preamble":85,"sender":22963,"msg_type":522,"payload":"WMguEDVuIOJl6kJAsxceJFaSXsB97SkjFWkxwAECWwQPBg==","lat":37.83123423179169,"tow":271501400,"h_accuracy":513,"crc":25656,"lon":-122.28650763453224} +{"v_accuracy":713,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"WMguEPj///8CAAAA5/////AAyQIPAg==","n":-8,"d":-25,"tow":271501400,"h_accuracy":240,"crc":35578,"e":2} +{"length":15,"gdop":155,"flags":6,"tdop":77,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"WMguEJsAhwBNAEgAcgAG","tow":271501400,"crc":51604,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"WMguEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271501400,"h_accuracy":0,"crc":2089,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"WMguEP//","tow":271501400,"crc":22832} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":9,"l2ca_bias":0,"preamble":85,"l2p_bias":0,"sender":22963,"msg_type":117,"payload":"/wAAAAAAAAAA","l1ca_bias":0,"mask":255,"crc":49809,"l1p_bias":0} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"Mgi8yC4QAAAAAAE=","wn":2098,"tow":271501500,"crc":56149} +{"length":16,"flags":17,"ns":499999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EbzILhDkBwMZAxgr/mTNHQ==","day":25,"tow":271501500,"year":2020,"crc":54537,"minutes":24,"month":3,"seconds":43} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.413949126638062,"preamble":85,"sender":22963,"msg_type":522,"payload":"vMguEKJR7OFl6kJAFHE7JFaSXsBFHumR+GkxwAECWwQPBg==","lat":37.83123420752533,"tow":271501500,"h_accuracy":513,"crc":18114,"lon":-122.28650766186576} +{"v_accuracy":713,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"vMguEAoAAAD7////CgAAAPAAyQIPAg==","n":10,"d":10,"tow":271501500,"h_accuracy":240,"crc":19054,"e":-5} +{"length":15,"gdop":155,"flags":6,"tdop":77,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"vMguEJsAhwBNAEgAcgAG","tow":271501500,"crc":45353,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"vMguEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271501500,"h_accuracy":0,"crc":43530,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"vMguEP//","tow":271501500,"crc":54441} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgggyS4QAAAAAAE=","wn":2098,"tow":271501600,"crc":50650} +{"length":16,"flags":17,"ns":599999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"ESDJLhDkBwMZAxgr/kXDIw==","day":25,"tow":271501600,"year":2020,"crc":19811,"minutes":24,"month":3,"seconds":43} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.419185197699207,"preamble":85,"sender":22963,"msg_type":522,"payload":"IMkuEIDVsOFl6kJA5sNkJFaSXsDcFZu4T2sxwAECWwQPBg==","lat":37.831234179825515,"tow":271501600,"h_accuracy":513,"crc":32002,"lon":-122.28650770035128} +{"v_accuracy":713,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"IMkuEP/////9////CwAAAPAAyQIPAg==","n":-1,"d":11,"tow":271501600,"h_accuracy":240,"crc":11014,"e":-3} +{"length":15,"gdop":155,"flags":6,"tdop":77,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"IMkuEJsAhwBNAEgAcgAG","tow":271501600,"crc":27687,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"IMkuEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271501600,"h_accuracy":0,"crc":33229,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"IMkuEP//","tow":271501600,"crc":48063} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgiEyS4QAAAAAAE=","wn":2098,"tow":271501700,"crc":16763} +{"length":16,"flags":17,"ns":699999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EYTJLhDkBwMZAxgr/ia5KQ==","day":25,"tow":271501700,"year":2020,"crc":39732,"minutes":24,"month":3,"seconds":43} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.42287449711002,"preamble":85,"sender":22963,"msg_type":522,"payload":"hMkuEFN7huFl6kJA526JJFaSXsBlZseAQWwxwAECWwQPBg==","lat":37.83123416010371,"tow":271501700,"h_accuracy":513,"crc":35769,"lon":-122.286507734501} +{"v_accuracy":713,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"hMkuEAQAAAD9////9P////AAyQIPAg==","n":4,"d":-12,"tow":271501700,"h_accuracy":240,"crc":21374,"e":-3} +{"length":15,"gdop":155,"flags":6,"tdop":77,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"hMkuEJsAhwBNAEgAcgAG","tow":271501700,"crc":16019,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"hMkuEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271501700,"h_accuracy":0,"crc":63156,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"hMkuEP//","tow":271501700,"crc":23606} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"message_type":28,"length":34,"data":[80,7,132,49,132,64,39,243,30,222,179,222,123,204,153,139,166,40,16,36,128,228,175,158,45,58,96],"preamble":85,"sender":22963,"msg_type":30583,"payload":"gwKfyC4QHFAHhDGEQCfzHt6z3nvMmYumKBAkgOSvni06YA==","tow":271501471,"crc":59324,"sid":{"sat":131,"code":2}} +{"length":136,"preamble":85,"sender":22963,"msg_type":151,"payload":"AgAaHgUALDUMAFEtFQB9GRkAbUYaAKEBHQChNx8AlQ4EAxYWBQMyIQYDTggJA18OCgNxKQsDmCUMA6oDEwMiBxQDCzEVA5UlDAyUKRMMIyAUDA8CFgxDIxgMgiMZDJ0OGgxnFR0MLAAiDI4RIwwiLQsOizIMDg88GA5sNhkOlykfDlURIQ4fDw==","crc":41336,"azel":[{"el":30,"az":26,"sid":{"sat":2,"code":0}},{"el":53,"az":44,"sid":{"sat":5,"code":0}},{"el":45,"az":81,"sid":{"sat":12,"code":0}},{"el":25,"az":125,"sid":{"sat":21,"code":0}},{"el":70,"az":109,"sid":{"sat":25,"code":0}},{"el":1,"az":161,"sid":{"sat":26,"code":0}},{"el":55,"az":161,"sid":{"sat":29,"code":0}},{"el":14,"az":149,"sid":{"sat":31,"code":0}},{"el":22,"az":22,"sid":{"sat":4,"code":3}},{"el":33,"az":50,"sid":{"sat":5,"code":3}},{"el":8,"az":78,"sid":{"sat":6,"code":3}},{"el":14,"az":95,"sid":{"sat":9,"code":3}},{"el":41,"az":113,"sid":{"sat":10,"code":3}},{"el":37,"az":152,"sid":{"sat":11,"code":3}},{"el":3,"az":170,"sid":{"sat":12,"code":3}},{"el":7,"az":34,"sid":{"sat":19,"code":3}},{"el":49,"az":11,"sid":{"sat":20,"code":3}},{"el":37,"az":149,"sid":{"sat":21,"code":3}},{"el":41,"az":148,"sid":{"sat":12,"code":12}},{"el":32,"az":35,"sid":{"sat":19,"code":12}},{"el":2,"az":15,"sid":{"sat":20,"code":12}},{"el":35,"az":67,"sid":{"sat":22,"code":12}},{"el":35,"az":130,"sid":{"sat":24,"code":12}},{"el":14,"az":157,"sid":{"sat":25,"code":12}},{"el":21,"az":103,"sid":{"sat":26,"code":12}},{"el":0,"az":44,"sid":{"sat":29,"code":12}},{"el":17,"az":142,"sid":{"sat":34,"code":12}},{"el":45,"az":34,"sid":{"sat":35,"code":12}},{"el":50,"az":139,"sid":{"sat":11,"code":14}},{"el":60,"az":15,"sid":{"sat":12,"code":14}},{"el":54,"az":108,"sid":{"sat":24,"code":14}},{"el":41,"az":151,"sid":{"sat":25,"code":14}},{"el":17,"az":85,"sid":{"sat":31,"code":14}},{"el":15,"az":31,"sid":{"sat":33,"code":14}}]} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgjoyS4QAAAAAAE=","wn":2098,"tow":271501800,"crc":3150} +{"length":16,"flags":17,"ns":799999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EejJLhDkBwMZAxgr/gevLw==","day":25,"tow":271501800,"year":2020,"crc":59451,"minutes":24,"month":3,"seconds":43} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.427177214075545,"preamble":85,"sender":22963,"msg_type":522,"payload":"6MkuEHHTM+Fl6kJAvrCdJFaSXsAFDWR8W20xwAECWwQPBg==","lat":37.83123412161411,"tow":271501800,"h_accuracy":513,"crc":63822,"lon":-122.28650775336698} +{"v_accuracy":713,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"6MkuEPf///8AAAAA/f////AAyQIPAg==","n":-9,"d":-3,"tow":271501800,"h_accuracy":240,"crc":50525,"e":0} +{"length":15,"gdop":155,"flags":6,"tdop":77,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"6MkuEJsAhwBNAEgAcgAG","tow":271501800,"crc":13689,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"6MkuEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271501800,"h_accuracy":0,"crc":45217,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"6MkuEP//","tow":271501800,"crc":2253} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":237,"states":[{"cn0":213,"mesid":{"sat":5,"code":0}},{"cn0":179,"mesid":{"sat":21,"code":0}},{"cn0":190,"mesid":{"sat":2,"code":0}},{"cn0":166,"mesid":{"sat":31,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":218,"mesid":{"sat":25,"code":0}},{"cn0":206,"mesid":{"sat":12,"code":0}},{"cn0":212,"mesid":{"sat":29,"code":0}},{"cn0":206,"mesid":{"sat":18,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":204,"mesid":{"sat":131,"code":2}},{"cn0":204,"mesid":{"sat":25,"code":1}},{"cn0":188,"mesid":{"sat":12,"code":1}},{"cn0":149,"mesid":{"sat":31,"code":1}},{"cn0":195,"mesid":{"sat":18,"code":1}},{"cn0":195,"mesid":{"sat":29,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":194,"mesid":{"sat":5,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":214,"mesid":{"sat":11,"code":3}},{"cn0":177,"mesid":{"sat":9,"code":3}},{"cn0":173,"mesid":{"sat":20,"code":3}},{"cn0":207,"mesid":{"sat":5,"code":3}},{"cn0":206,"mesid":{"sat":10,"code":3}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":183,"mesid":{"sat":4,"code":3}},{"cn0":204,"mesid":{"sat":21,"code":3}},{"cn0":172,"mesid":{"sat":9,"code":4}},{"cn0":204,"mesid":{"sat":20,"code":4}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":200,"mesid":{"sat":11,"code":4}},{"cn0":194,"mesid":{"sat":5,"code":4}},{"cn0":185,"mesid":{"sat":0,"code":4}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":176,"mesid":{"sat":4,"code":4}},{"cn0":200,"mesid":{"sat":35,"code":12}},{"cn0":169,"mesid":{"sat":26,"code":12}},{"cn0":161,"mesid":{"sat":34,"code":12}},{"cn0":189,"mesid":{"sat":24,"code":12}},{"cn0":156,"mesid":{"sat":25,"code":12}},{"cn0":185,"mesid":{"sat":12,"code":12}},{"cn0":185,"mesid":{"sat":19,"code":12}},{"cn0":191,"mesid":{"sat":22,"code":12}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":209,"mesid":{"sat":12,"code":13}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":196,"mesid":{"sat":12,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":193,"mesid":{"sat":25,"code":14}},{"cn0":189,"mesid":{"sat":11,"code":14}},{"cn0":205,"mesid":{"sat":24,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":160,"mesid":{"sat":31,"code":14}},{"cn0":154,"mesid":{"sat":33,"code":14}},{"cn0":200,"mesid":{"sat":25,"code":20}},{"cn0":215,"mesid":{"sat":24,"code":20}},{"cn0":194,"mesid":{"sat":11,"code":20}},{"cn0":172,"mesid":{"sat":31,"code":20}},{"cn0":207,"mesid":{"sat":12,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":170,"mesid":{"sat":33,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}}],"preamble":85,"sender":22963,"msg_type":97,"payload":"BQDVFQCzAgC+HwCmAAAAAAAAGQDaDADOHQDUEgDOAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwLMGQHMDAG8HwGVEgHDHQHDAAAABQHCAAAAAAAAAAAAAAAACwPWCQOxFAOtBQPPCgPOAAAABAO3FQPMCQSsFATMAAAACwTIBQTCAAS5AAAABASwIwzIGgypIgyhGAy9GQycDAy5Ewy5Fgy/AAAADA3RAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADA7EAAAAGQ7BCw69GA7NAAAAHw6gIQ6aGRTIGBTXCxTCHxSsDBTPAAAAIRSqAAAA","crc":39138} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MghMyi4QAAAAAAE=","wn":2098,"tow":271501900,"crc":16538} +{"length":16,"flags":17,"ns":899999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EUzKLhDkBwMZAxgr/uikNQ==","day":25,"tow":271501900,"year":2020,"crc":54445,"minutes":24,"month":3,"seconds":43} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.43765762543652,"preamble":85,"sender":22963,"msg_type":522,"payload":"TMouEPJB/+Bl6kJAq0GtJFaSXsBJGIRUCnAxwAECWwQPBg==","lat":37.83123409713507,"tow":271501900,"h_accuracy":513,"crc":21530,"lon":-122.28650776786405} +{"v_accuracy":713,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"TMouEAQAAAAFAAAAGgAAAPAAyQIPAg==","n":4,"d":26,"tow":271501900,"h_accuracy":240,"crc":31336,"e":5} +{"length":15,"gdop":155,"flags":6,"tdop":77,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"TMouEJsAhwBNAEgAcgAG","tow":271501900,"crc":60014,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"TMouEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271501900,"h_accuracy":0,"crc":43491,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"TMouEP//","tow":271501900,"crc":406} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":249,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":212,"i":110561903},"flags":15,"cn0":213,"P":1051961411,"D":{"f":157,"i":-172},"lock":15,"sid":{"sat":5,"code":0}},{"L":{"f":94,"i":121853030},"flags":15,"cn0":179,"P":1159393037,"D":{"f":111,"i":2180},"lock":15,"sid":{"sat":21,"code":0}},{"L":{"f":89,"i":123306111},"flags":15,"cn0":190,"P":1173218280,"D":{"f":91,"i":-2476},"lock":15,"sid":{"sat":2,"code":0}},{"L":{"f":63,"i":128733296},"flags":15,"cn0":166,"P":1224856569,"D":{"f":55,"i":-387},"lock":15,"sid":{"sat":31,"code":0}},{"L":{"f":181,"i":107808719},"flags":15,"cn0":218,"P":1025765806,"D":{"f":33,"i":-1117},"lock":15,"sid":{"sat":25,"code":0}},{"L":{"f":186,"i":114060217},"flags":15,"cn0":206,"P":1085246766,"D":{"f":71,"i":-2959},"lock":15,"sid":{"sat":12,"code":0}},{"L":{"f":97,"i":110780232},"flags":15,"cn0":212,"P":1054038784,"D":{"f":169,"i":1488},"lock":15,"sid":{"sat":29,"code":0}},{"L":{"f":17,"i":84006815},"flags":15,"cn0":204,"P":1025765831,"D":{"f":100,"i":-870},"lock":15,"sid":{"sat":25,"code":1}},{"L":{"f":97,"i":88878123},"flags":15,"cn0":187,"P":1085246712,"D":{"f":70,"i":-2305},"lock":15,"sid":{"sat":12,"code":1}},{"L":{"f":208,"i":100311661},"flags":15,"cn0":149,"P":1224856483,"D":{"f":205,"i":-301},"lock":15,"sid":{"sat":31,"code":1}},{"L":{"f":209,"i":86322260},"flags":15,"cn0":195,"P":1054038708,"D":{"f":43,"i":1160},"lock":15,"sid":{"sat":29,"code":1}},{"L":{"f":30,"i":86152162},"flags":15,"cn0":194,"P":1051961345,"D":{"f":195,"i":-134},"lock":15,"sid":{"sat":5,"code":1}},{"L":{"f":134,"i":112951684},"flags":15,"cn0":213,"P":1056868082,"D":{"f":197,"i":1179},"lock":15,"sid":{"sat":11,"code":3}},{"L":{"f":12,"i":123280242},"flags":15,"cn0":177,"P":1154321169,"D":{"f":140,"i":-4405},"lock":15,"sid":{"sat":9,"code":3}}],"payload":"sMouEAAAAAAyCEBDqLM+bwqXBtRU/53VDw8FAA3vGkVmVEMHXoQIb7MPDxUA6OPtRX+AWQdZVPZbvg8PAgD50wFJcFCsBz99/jemDw8fAK7xIz3PB20GtaP7IdoPDxkALo2vQLlrzAa6cfRHzg8PDAAAW9M+SF+aBmHQBanUDw8dAMfxIz2f1wEFEZr8ZMwPDxkB+IyvQCssTAVh//ZGuw8PDAGj0wFJbaL6BdDT/s2VDw8fAbRa0z5ULCUF0YgEK8MPDx0BAaizPuKTIgUeev/Dwg8PBQHyhv4+hIG7BoabBMXVDw8LAxGLzURyG1kHDMvujLEPDwkD","header":{"n_obs":64,"t":{"ns_residual":0,"wn":2098,"tow":271502000}},"crc":9387} +{"length":249,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":185,"i":109755817},"flags":15,"cn0":173,"P":1026244243,"D":{"f":126,"i":-1206},"lock":15,"sid":{"sat":20,"code":3}},{"L":{"f":23,"i":114887237},"flags":15,"cn0":207,"P":1074601352,"D":{"f":179,"i":2209},"lock":15,"sid":{"sat":5,"code":3}},{"L":{"f":79,"i":111566420},"flags":15,"cn0":206,"P":1046478454,"D":{"f":198,"i":-3035},"lock":15,"sid":{"sat":10,"code":3}},{"L":{"f":83,"i":120422516},"flags":15,"cn0":183,"P":1124402492,"D":{"f":131,"i":-1304},"lock":15,"sid":{"sat":4,"code":3}},{"L":{"f":210,"i":113439744},"flags":15,"cn0":204,"P":1059945987,"D":{"f":217,"i":1626},"lock":15,"sid":{"sat":21,"code":3}},{"L":{"f":87,"i":95884642},"flags":15,"cn0":172,"P":1154321319,"D":{"f":182,"i":-3428},"lock":15,"sid":{"sat":9,"code":4}},{"L":{"f":186,"i":85365671},"flags":15,"cn0":204,"P":1026244574,"D":{"f":176,"i":-939},"lock":15,"sid":{"sat":20,"code":4}},{"L":{"f":133,"i":87851320},"flags":15,"cn0":200,"P":1056868364,"D":{"f":60,"i":917},"lock":15,"sid":{"sat":11,"code":4}},{"L":{"f":191,"i":89356743},"flags":15,"cn0":194,"P":1074601593,"D":{"f":228,"i":1718},"lock":15,"sid":{"sat":5,"code":4}},{"L":{"f":91,"i":93661947},"flags":15,"cn0":176,"P":1124402693,"D":{"f":5,"i":-1014},"lock":15,"sid":{"sat":4,"code":4}},{"L":{"f":37,"i":121561573},"flags":15,"cn0":200,"P":1167230802,"D":{"f":162,"i":-1497},"lock":15,"sid":{"sat":35,"code":12}},{"L":{"f":62,"i":129175036},"flags":15,"cn0":169,"P":1240335409,"D":{"f":240,"i":-3005},"lock":15,"sid":{"sat":26,"code":12}},{"L":{"f":217,"i":132973597},"flags":15,"cn0":160,"P":1276808863,"D":{"f":129,"i":2251},"lock":15,"sid":{"sat":34,"code":12}},{"L":{"f":102,"i":125135395},"flags":15,"cn0":189,"P":1201546864,"D":{"f":239,"i":-1296},"lock":15,"sid":{"sat":24,"code":12}}],"payload":"sMouEAAAAAAyCEGTPis9qb2KBrlK+36tDw8UA4gdDUBFCtkGF6EIs88PDwUDdv5fPlRepgZPJfTGzg8PCgM8BQVDdIAtB1Po+oO3Dw8EAwN+LT8A9MIG0loG2cwPDxUDp4vNRGIVtwVXnPK2rA8PCQTePys9p5MWBbpV/LDMDw8UBAyI/j44gTwFhZUDPMgPDwsEeR4NQMd5UwW/tgbkwg8PBQQFBgVD+yqVBVsK/AWwDw8EBFKHkkXl4T4HJSf6osgPDyMMMQTuSfwNswc+Q/TwqQ8PGgyfjhpMHQTtB9nLCIGgDw8iDHAmnkcjanUHZvD6770PDxgM","header":{"n_obs":65,"t":{"ns_residual":0,"wn":2098,"tow":271502000}},"crc":18554} +{"length":249,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":125,"i":134688462},"flags":15,"cn0":156,"P":1293275161,"D":{"f":50,"i":1333},"lock":15,"sid":{"sat":25,"code":12}},{"L":{"f":151,"i":121119740},"flags":15,"cn0":185,"P":1162988621,"D":{"f":59,"i":1614},"lock":15,"sid":{"sat":12,"code":12}},{"L":{"f":115,"i":124511459},"flags":15,"cn0":185,"P":1195555797,"D":{"f":217,"i":-282},"lock":15,"sid":{"sat":19,"code":12}},{"L":{"f":76,"i":124733704},"flags":15,"cn0":191,"P":1197689826,"D":{"f":85,"i":2393},"lock":15,"sid":{"sat":22,"code":12}},{"L":{"f":241,"i":93657474},"flags":15,"cn0":209,"P":1162988531,"D":{"f":185,"i":1248},"lock":15,"sid":{"sat":12,"code":13}},{"L":{"f":96,"i":116413587},"flags":15,"cn0":196,"P":1107638427,"D":{"f":137,"i":-1024},"lock":15,"sid":{"sat":12,"code":14}},{"L":{"f":59,"i":132488133},"flags":15,"cn0":193,"P":1260582601,"D":{"f":148,"i":1095},"lock":15,"sid":{"sat":25,"code":14}},{"L":{"f":139,"i":125435329},"flags":15,"cn0":189,"P":1193477417,"D":{"f":90,"i":1052},"lock":15,"sid":{"sat":11,"code":14}},{"L":{"f":177,"i":118392781},"flags":15,"cn0":205,"P":1126469739,"D":{"f":113,"i":-1738},"lock":15,"sid":{"sat":24,"code":14}},{"L":{"f":1,"i":143282933},"flags":15,"cn0":161,"P":1363291797,"D":{"f":82,"i":-3169},"lock":15,"sid":{"sat":31,"code":14}},{"L":{"f":205,"i":144498217},"flags":15,"cn0":155,"P":1374854831,"D":{"f":153,"i":-2139},"lock":15,"sid":{"sat":33,"code":14}},{"L":{"f":183,"i":101516879},"flags":15,"cn0":200,"P":1260582564,"D":{"f":188,"i":840},"lock":15,"sid":{"sat":25,"code":20}},{"L":{"f":148,"i":90716610},"flags":15,"cn0":215,"P":1126470274,"D":{"f":24,"i":-1331},"lock":15,"sid":{"sat":24,"code":20}},{"L":{"f":207,"i":96112762},"flags":15,"cn0":194,"P":1193477233,"D":{"f":3,"i":806},"lock":15,"sid":{"sat":11,"code":20}}],"payload":"sMouEAAAAAAyCEIZ0BVNzi4HCH01BTKcDw8ZDE3MUUX8IzgHl04GO7kPDwwM1btCR+Pkawdz5v7ZuQ8PEwziS2NHCElvB0xZCVW/Dw8WDPPLUUWCGZUF8eAEudEPDwwNmzgFQpNU8AZgAPyJxA8PDA7J9iJLxZvlBztHBJTBDw8ZDikFI0fB/XkHixwEWr0PDwsOa5AkQ82HDgexNvlxzQ8PGA6VLkJR9VKKCAGf81KhDw8fDq+e8lEp3pwIzaX3mZsPDyEOpPYiS08GDQa3SAO8yA8PGRSCkiRDwjloBZTN+hjXDw8YFHEEI0d6kLoFzyYDA8IPDwsU","header":{"n_obs":66,"t":{"ns_residual":0,"wn":2098,"tow":271502000}},"crc":29286} +{"length":62,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":236,"i":109788262},"flags":15,"cn0":172,"P":1363291822,"D":{"f":65,"i":-2428},"lock":15,"sid":{"sat":31,"code":20}},{"L":{"f":25,"i":89200052},"flags":15,"cn0":207,"P":1107638275,"D":{"f":37,"i":-783},"lock":15,"sid":{"sat":12,"code":20}},{"L":{"f":42,"i":110719484},"flags":15,"cn0":170,"P":1374854791,"D":{"f":74,"i":-1639},"lock":15,"sid":{"sat":33,"code":20}}],"payload":"sMouEAAAAAAyCEOuLkJRZjyLBuyE9kGsDw8fFAM4BUK0FVEFGfH8Jc8PDwwUh57yUfxxmQYqmflKqg8PIRQ=","header":{"n_obs":67,"t":{"ns_residual":0,"wn":2098,"tow":271502000}},"crc":38695} +{"length":9,"l2ca_bias":0,"preamble":85,"l2p_bias":0,"sender":22963,"msg_type":117,"payload":"/wAAAAAAAAAA","l1ca_bias":0,"mask":255,"crc":49809,"l1p_bias":0} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"Mgiwyi4QAAAAAAE=","wn":2098,"tow":271502000,"crc":57827} +{"length":16,"flags":17,"ns":999999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EbDKLhDkBwMZAxgr/smaOw==","day":25,"tow":271502000,"year":2020,"crc":45949,"minutes":24,"month":3,"seconds":43} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.445178619649333,"preamble":85,"sender":22963,"msg_type":522,"payload":"sMouEDMQv+Bl6kJAtK7CJFaSXsC2Rdw593ExwAECWwQPBg==","lat":37.83123406724226,"tow":271502000,"h_accuracy":513,"crc":65292,"lon":-122.2865077878185} +{"v_accuracy":713,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"sMouEPH///8CAAAA+/////AAyQIPAg==","n":-15,"d":-5,"tow":271502000,"h_accuracy":240,"crc":6208,"e":2} +{"length":15,"gdop":155,"flags":6,"tdop":77,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"sMouEJsAhwBNAEgAcgAG","tow":271502000,"crc":64284,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"sMouEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271502000,"h_accuracy":0,"crc":59429,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"sMouEP//","tow":271502000,"crc":39881} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":4,"flags":2147616000,"preamble":85,"sender":22963,"msg_type":65535,"payload":"AAUCgA==","crc":40942} +{"length":24,"z":3890655.0240602265,"preamble":85,"sender":22963,"msg_type":72,"payload":"UO0a3iqORMHK1UJhIkRQwc9nFIPvrk1B","crc":2168,"x":-2694229.735196747,"y":-4264073.519704292} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"bWFpbgAAAAAAAAAAAAAAAAAAAAAAAAx1AAA=","name":"main\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":47991,"stack_free":29964,"cpu":0} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"aWRsZQAAAAAAAAAAAAAAAAAAAABjAXwAAAA=","name":"idle\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":32761,"stack_free":124,"cpu":355} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"cnBtc2cAAAAAAAAAAAAAAAAAAAABAOwNAAA=","name":"rpmsg\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":53198,"stack_free":3564,"cpu":1} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"U0JQAAAAAAAAAAAAAAAAAAAAAAAAAPz/AAA=","name":"SBP\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":51784,"stack_free":65532,"cpu":0} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"TkFQAAAAAAAAAAAAAAAAAAAAAAAAAASAAAA=","name":"NAP\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":33651,"stack_free":32772,"cpu":0} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"bWFuYWdlIFBWAAAAAAAAAAAAAAAAACQEAAA=","name":"manage PV\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":29877,"stack_free":1060,"cpu":0} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"SU1VAAAAAAAAAAAAAAAAAAAAAAAAAPQHAAA=","name":"IMU\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":14252,"stack_free":2036,"cpu":0} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"SU1VIGF1eAAAAAAAAAAAAAAAAAAAAEwIAAA=","name":"IMU aux\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":18976,"stack_free":2124,"cpu":0} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"bmRiAAAAAAAAAAAAAAAAAAAAAAAAAFAMAAA=","name":"ndb\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":26120,"stack_free":3152,"cpu":0} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"TkFQIFRyYWNraW5nAAAAAAAAAAAeAdR3AAA=","name":"NAP Tracking\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":33839,"stack_free":30676,"cpu":286} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"ZGVjb2RlAAAAAAAAAAAAAAAAAAAJANQGAAA=","name":"decode\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":55602,"stack_free":1748,"cpu":9} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"bWFuYWdlIGFjcQAAAAAAAAAAAAC7AKR3AAA=","name":"manage acq\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":54128,"stack_free":30628,"cpu":187} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"c3lzdGVtIG1vbml0b3IAAAAAAAAAACwGAAA=","name":"system monitor\u0000\u0000\u0000\u0000\u0000\u0000","crc":58531,"stack_free":1580,"cpu":0} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"V2F0Y2hkb2cAAAAAAAAAAAAAAAAAAOQDAAA=","name":"Watchdog\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":44438,"stack_free":996,"cpu":0} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"c3RhcmxpbmcAAAAAAAAAAAAAAACVAPz/AAA=","name":"starling\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":15999,"stack_free":65532,"cpu":149} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"bWVfY2FsY19wdnQAAAAAAAAAAAAJAIwjAAA=","name":"me_calc_pvt\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":57561,"stack_free":9100,"cpu":9} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"UFBTAAAAAAAAAAAAAAAAAAAAAAAAAEgHAAA=","name":"PPS\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":38576,"stack_free":1864,"cpu":0} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"c3BlY3RydW0gYW5hbHl6ZXIAAAAAANQPAAA=","name":"spectrum analyzer\u0000\u0000\u0000","crc":50933,"stack_free":4052,"cpu":0} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MggUyy4QAAAAAAE=","wn":2098,"tow":271502100,"crc":8849} +{"length":16,"flags":17,"ns":99999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"ERTLLhDkBwMZAxgs/uD1BQ==","day":25,"tow":271502100,"year":2020,"crc":10658,"minutes":24,"month":3,"seconds":44} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.45459124806901,"preamble":85,"sender":22963,"msg_type":522,"payload":"FMsuEOogtuBl6kJAkNrHJFaSXsAVgY8XYHQxwAECWwQPBg==","lat":37.83123406308171,"tow":271502100,"h_accuracy":513,"crc":14006,"lon":-122.28650779263467} +{"v_accuracy":713,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"FMsuEAcAAAANAAAAEwAAAPAAyQIPAg==","n":7,"d":19,"tow":271502100,"h_accuracy":240,"crc":22326,"e":13} +{"length":15,"gdop":155,"flags":6,"tdop":77,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"FMsuEJsAhwBNAEgAcgAG","tow":271502100,"crc":53961,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"FMsuEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271502100,"h_accuracy":0,"crc":19114,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"FMsuEP//","tow":271502100,"crc":54801} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"Mgh4yy4QAAAAAAE=","wn":2098,"tow":271502200,"crc":28580} +{"length":16,"flags":17,"ns":199999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EXjLLhDkBwMZAxgs/sHrCw==","day":25,"tow":271502200,"year":2020,"crc":21004,"minutes":24,"month":3,"seconds":44} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.460096277645867,"preamble":85,"sender":22963,"msg_type":522,"payload":"eMsuENt0i+Bl6kJA4hvoJFaSXsAWgKHeyHUxwAECWwQPBg==","lat":37.83123404321096,"tow":271502200,"h_accuracy":513,"crc":54217,"lon":-122.28650782267462} +{"v_accuracy":713,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"eMsuEPv////7////5P////AAyQIPAg==","n":-5,"d":-28,"tow":271502200,"h_accuracy":240,"crc":6437,"e":-5} +{"length":15,"gdop":155,"flags":6,"tdop":77,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"eMsuEJsAhwBNAEgAcgAG","tow":271502200,"crc":55587,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"eMsuEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271502200,"h_accuracy":0,"crc":3263,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"eMsuEP//","tow":271502200,"crc":33514} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"Mgjcyy4QAAAAAAE=","wn":2098,"tow":271502300,"crc":60165} +{"length":16,"flags":17,"ns":299999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EdzLLhDkBwMZAxgs/qLhEQ==","day":25,"tow":271502300,"year":2020,"crc":40499,"minutes":24,"month":3,"seconds":44} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.470754467056494,"preamble":85,"sender":22963,"msg_type":522,"payload":"3MsuENHvdOBl6kJAeAz6JFaSXsAcdGBdg3gxwAECWwQPBg==","lat":37.83123403272442,"tow":271502300,"h_accuracy":513,"crc":26149,"lon":-122.28650783938235} +{"v_accuracy":713,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"3MsuEAcAAAD6////CwAAAPAAyQIPAg==","n":7,"d":11,"tow":271502300,"h_accuracy":240,"crc":32383,"e":-6} +{"length":15,"gdop":155,"flags":6,"tdop":77,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"3MsuEJsAhwBNAEgAcgAG","tow":271502300,"crc":35735,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"3MsuEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271502300,"h_accuracy":0,"crc":31686,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"3MsuEP//","tow":271502300,"crc":25955} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":237,"states":[{"cn0":213,"mesid":{"sat":5,"code":0}},{"cn0":179,"mesid":{"sat":21,"code":0}},{"cn0":190,"mesid":{"sat":2,"code":0}},{"cn0":166,"mesid":{"sat":31,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":218,"mesid":{"sat":25,"code":0}},{"cn0":205,"mesid":{"sat":12,"code":0}},{"cn0":212,"mesid":{"sat":29,"code":0}},{"cn0":206,"mesid":{"sat":18,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":205,"mesid":{"sat":131,"code":2}},{"cn0":204,"mesid":{"sat":25,"code":1}},{"cn0":187,"mesid":{"sat":12,"code":1}},{"cn0":150,"mesid":{"sat":31,"code":1}},{"cn0":195,"mesid":{"sat":18,"code":1}},{"cn0":194,"mesid":{"sat":29,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":194,"mesid":{"sat":5,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":213,"mesid":{"sat":100,"code":3}},{"cn0":177,"mesid":{"sat":98,"code":3}},{"cn0":173,"mesid":{"sat":102,"code":3}},{"cn0":207,"mesid":{"sat":101,"code":3}},{"cn0":206,"mesid":{"sat":93,"code":3}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":183,"mesid":{"sat":106,"code":3}},{"cn0":204,"mesid":{"sat":104,"code":3}},{"cn0":172,"mesid":{"sat":98,"code":4}},{"cn0":205,"mesid":{"sat":102,"code":4}},{"cn0":77,"mesid":{"sat":93,"code":4}},{"cn0":199,"mesid":{"sat":100,"code":4}},{"cn0":194,"mesid":{"sat":101,"code":4}},{"cn0":185,"mesid":{"sat":104,"code":4}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":175,"mesid":{"sat":106,"code":4}},{"cn0":200,"mesid":{"sat":35,"code":12}},{"cn0":169,"mesid":{"sat":26,"code":12}},{"cn0":161,"mesid":{"sat":34,"code":12}},{"cn0":189,"mesid":{"sat":24,"code":12}},{"cn0":156,"mesid":{"sat":25,"code":12}},{"cn0":185,"mesid":{"sat":12,"code":12}},{"cn0":185,"mesid":{"sat":19,"code":12}},{"cn0":191,"mesid":{"sat":22,"code":12}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":209,"mesid":{"sat":12,"code":13}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":196,"mesid":{"sat":12,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":193,"mesid":{"sat":25,"code":14}},{"cn0":189,"mesid":{"sat":11,"code":14}},{"cn0":205,"mesid":{"sat":24,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":161,"mesid":{"sat":31,"code":14}},{"cn0":154,"mesid":{"sat":33,"code":14}},{"cn0":200,"mesid":{"sat":25,"code":20}},{"cn0":215,"mesid":{"sat":24,"code":20}},{"cn0":194,"mesid":{"sat":11,"code":20}},{"cn0":173,"mesid":{"sat":31,"code":20}},{"cn0":206,"mesid":{"sat":12,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":170,"mesid":{"sat":33,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}}],"preamble":85,"sender":22963,"msg_type":97,"payload":"BQDVFQCzAgC+HwCmAAAAAAAAGQDaDADNHQDUEgDOAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwLNGQHMDAG7HwGWEgHDHQHCAAAABQHCAAAAAAAAAAAAAAAAZAPVYgOxZgOtZQPPXQPOAAAAagO3aAPMYgSsZgTNXQRNZATHZQTCaAS5AAAAagSvIwzIGgypIgyhGAy9GQycDAy5Ewy5Fgy/AAAADA3RAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADA7EAAAAGQ7BCw69GA7NAAAAHw6hIQ6aGRTIGBTXCxTCHxStDBTOAAAAIRSqAAAA","crc":36413} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MghAzC4QAAAAAAE=","wn":2098,"tow":271502400,"crc":30017} +{"length":16,"flags":17,"ns":399999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EUDMLhDkBwMZAxgs/oPXFw==","day":25,"tow":271502400,"year":2020,"crc":13913,"minutes":24,"month":3,"seconds":44} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.4764528750067,"preamble":85,"sender":22963,"msg_type":522,"payload":"QMwuEM/0KuBl6kJAZboIJVaSXsAsPczQ+HkxwAECWwQPBg==","lat":37.83123399827456,"tow":271502400,"h_accuracy":513,"crc":21818,"lon":-122.2865078530536} +{"v_accuracy":713,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"QMwuEPj////8////DgAAAPAAyQIPAg==","n":-8,"d":14,"tow":271502400,"h_accuracy":240,"crc":28536,"e":-4} +{"length":15,"gdop":155,"flags":6,"tdop":77,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"QMwuEJsAhwBNAEgAcgAG","tow":271502400,"crc":24062,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"QMwuEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271502400,"h_accuracy":0,"crc":35959,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"QMwuEP//","tow":271502400,"crc":51184} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":9,"l2ca_bias":0,"preamble":85,"l2p_bias":0,"sender":22963,"msg_type":117,"payload":"/wAAAAAAAAAA","l1ca_bias":0,"mask":255,"crc":49809,"l1p_bias":0} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgikzC4QAAAAAAE=","wn":2098,"tow":271502500,"crc":44601} +{"length":16,"flags":17,"ns":499999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EaTMLhDkBwMZAxgs/mTNHQ==","day":25,"tow":271502500,"year":2020,"crc":9911,"minutes":24,"month":3,"seconds":44} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.485391888086976,"preamble":85,"sender":22963,"msg_type":522,"payload":"pMwuEMjb/d9l6kJArev9JFaSXsDHE42kQnwxwAECWwQPBg==","lat":37.83123397727428,"tow":271502500,"h_accuracy":513,"crc":22430,"lon":-122.28650784298834} +{"v_accuracy":713,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"pMwuEAAAAAAFAAAAAgAAAPAAyQIPAg==","n":0,"d":2,"tow":271502500,"h_accuracy":240,"crc":54181,"e":5} +{"length":15,"gdop":155,"flags":6,"tdop":77,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"pMwuEJsAhwBNAEgAcgAG","tow":271502500,"crc":9539,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"pMwuEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271502500,"h_accuracy":0,"crc":11860,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"pMwuEP//","tow":271502500,"crc":19049} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MggIzS4QAAAAAAE=","wn":2098,"tow":271502600,"crc":17588} +{"length":16,"flags":17,"ns":599999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EQjNLhDkBwMZAxgs/kXDIw==","day":25,"tow":271502600,"year":2020,"crc":27971,"minutes":24,"month":3,"seconds":44} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.490438457661238,"preamble":85,"sender":22963,"msg_type":522,"payload":"CM0uENta3N9l6kJAJkP8JFaSXsAPW/BfjX0xwAECWwQPBg==","lat":37.83123396167294,"tow":271502600,"h_accuracy":513,"crc":12765,"lon":-122.28650784144392} +{"v_accuracy":713,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"CM0uEAEAAAADAAAA8f////AAyQIPAg==","n":1,"d":-15,"tow":271502600,"h_accuracy":240,"crc":58278,"e":3} +{"length":15,"gdop":155,"flags":6,"tdop":77,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"CM0uEJsAhwBNAEgAcgAG","tow":271502600,"crc":11219,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"CM0uEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271502600,"h_accuracy":0,"crc":53880,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"CM0uEP//","tow":271502600,"crc":2803} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":147,"af0":-9.23714367672801e-4,"w":-5.725038031956664e-2,"dn":3.576934707973788e-9,"c_us":1.2642704e-5,"c_uc":1.5250407e-6,"ecc":7.52994092181325e-4,"sqrta":5282.620655059814,"preamble":85,"toc":{"wn":2098,"tow":270014},"sender":22963,"msg_type":137,"omegadot":-6.592417457791331e-9,"payload":"Iwy+HgQAMggAAABAMCoAAAEAwwCGscMAhrEAgPlBANjTQgCwzDUAHFQ3AABIsgAAOjMUuSw6w7kuPn/O4GKYQgBAAAAAgJKsSD8AAEDjnqK0QJ1VR5JSigbAf+7mjHBQPL5w7E/+60+tv7WNXBae1O4/TfYYl9sb7T0AAACArUROvwAGni0AAAAAvh4EADIIh4cA","inc":0.963454288172605,"inc_dot":2.1179453637827823e-10,"iode":135,"crc":30051,"tgd2":-3.9e-9,"common":{"health_bits":0,"fit_interval":10800,"valid":1,"sid":{"sat":35,"code":12},"toe":{"wn":2098,"tow":270014},"ura":2},"c_rs":31.1875,"m0":2.03251721619182,"af2":0,"c_rc":105.921875,"af1":1.7965185e-11,"c_is":4.33065e-8,"c_ic":-1.1641532e-8,"tgd1":-3.9e-9,"omega0":-2.817540304948763,"iodc":135} +{"length":147,"af0":6.189986597746611e-4,"w":0.32445982545408203,"dn":4.235176412097173e-9,"c_us":3.1171367e-6,"c_uc":3.4985133e-6,"ecc":6.687664426863194e-4,"sqrta":5282.61806678772,"preamble":85,"toc":{"wn":2098,"tow":270014},"sender":22963,"msg_type":137,"omegadot":-7.279231780650402e-9,"payload":"Ggy+HgQAMggAAABAMCoAAAEAjyjOsY8ozrEACItCAAKUQwDIajYAMFE2AACGMwAAADHP95QuoDAyPiLf2/NWewdAAAAAAAXqRT8AAKA5nqK0QPup189o9PU//N6OmJlDP77QO8wk88PUP5/Et3R4h+4/gsMdrMKq/D0AAACAiUhEPwAwdy0AAAAAvh4EADIIh4cA","inc":0.9540369300504102,"inc_dot":4.1716023354102695e-10,"iode":135,"crc":36026,"tgd2":-6.0e-9,"common":{"health_bits":0,"fit_interval":10800,"valid":1,"sid":{"sat":26,"code":12},"toe":{"wn":2098,"tow":270014},"ura":2},"c_rs":69.515625,"m0":2.935224442622613,"af2":0,"c_rc":296.01563,"af1":1.4050983e-11,"c_is":1.8626451e-9,"c_ic":6.239861e-8,"tgd1":-6.0e-9,"omega0":1.372170268902322,"iodc":135} +{"length":147,"af0":-8.866871939972043e-4,"w":0.5946314748905823,"dn":4.351609833445096e-9,"c_us":3.0193478e-6,"c_uc":3.3127144e-6,"ecc":5.869971355423331e-4,"sqrta":5282.613315582275,"preamble":85,"toc":{"wn":2098,"tow":270014},"sender":22963,"msg_type":137,"omegadot":-7.331733967577227e-9,"payload":"GAy+HgQAMggAAABAMCoAAAEA/+bbMf/m2zEA+IVCAKiTQwBQXjYAoEo2AABYMwAAjLIVM8pGpbAyPiifS3+Dnf4/AAAAwBY8Qz8AAEACnaK0QCg91PljXPY/lGvUpVN9P742eTqWOAfjP+Iz0JJ5fe4/ndgi/RFG+D0AAABAEg5NvwAkli0AAAAAvh4EADIIh4cA","inc":0.9528167598197081,"inc_dot":3.532289991199278e-10,"iode":135,"crc":37866,"tgd2":6.4e-9,"common":{"health_bits":0,"fit_interval":10800,"valid":1,"sid":{"sat":24,"code":12},"toe":{"wn":2098,"tow":270014},"ura":2},"c_rs":66.984375,"m0":1.9134554836727578,"af2":0,"c_rc":295.3125,"af1":1.7069013e-11,"c_is":-1.6298145e-8,"c_ic":5.029142e-8,"tgd1":6.4e-9,"omega0":1.397556281943091,"iodc":135} +{"length":147,"af0":3.375648520886898e-4,"w":-1.9081863131506556,"dn":3.0797711419728383e-9,"c_us":1.3451092e-5,"c_uc":1.7820857e-6,"ecc":1.1259819148108363e-3,"sqrta":5282.626808166504,"preamble":85,"toc":{"wn":2098,"tow":270014},"sender":22963,"msg_type":137,"omegadot":-6.337763993309523e-9,"payload":"DAy+HgQAMggAAABAMCoAAAEAzy4XMV9wCbAAABtCAMjSQgAw7zUArGE3AACoMgAAALJoI1sFfXQqPnhZ35WZjwVAAAAA4LVyUj8AAIB2oKK0QPC50DJHWwbA+Cbw+HE4O76Vghpf7of+v3czuyPlpO8/MRP6+nc/8D0AAAAAZh82PwCo3iwAAAAAvh4EADIIh4cA","inc":0.9888787935138755,"inc_dot":2.3643842003780805e-10,"iode":135,"crc":42543,"tgd2":-5.0e-10,"common":{"health_bits":0,"fit_interval":10800,"valid":1,"sid":{"sat":12,"code":12},"toe":{"wn":2098,"tow":270014},"ura":2},"c_rs":38.75,"m0":2.695117159727655,"af2":0,"c_rc":105.390625,"af1":6.3282712e-12,"c_is":-7.450581e-9,"c_ic":1.9557774e-8,"tgd1":2.2e-9,"omega0":-2.794569394106695,"iodc":135} +{"length":147,"af0":3.618638729676604e-4,"w":-1.2494646693101417,"dn":3.988380417767678e-9,"c_us":6.2091276e-6,"c_uc":-4.3381006e-6,"ecc":9.270192822441459e-4,"sqrta":5282.625810623169,"preamble":85,"toc":{"wn":2098,"tow":270014},"sender":22963,"msg_type":137,"omegadot":-7.019935265624045e-9,"payload":"Ewy+HgQAMggAAABAMCoAAAEAUbI+MlGyPjIAILLCAMhnQwCQkbYAWNA2AAB4sgAAhbO3JwNJRSExPsX1sYGVhf4/AAAAwGZgTj8AACA1oKK0QLpUxzpa1+a/nPmKHYAmPr66HEOqzv3zv9CGs83N0u4/GoYZD6w0Bb4AAACAEbc3PwD8SC0AAAAAvh4EADIIh4cA","inc":0.9632329003909152,"inc_dot":-6.171685646908344e-10,"iode":135,"crc":22496,"tgd2":1.11e-8,"common":{"health_bits":0,"fit_interval":10800,"valid":1,"sid":{"sat":19,"code":12},"toe":{"wn":2098,"tow":270014},"ura":2},"c_rs":-89.0625,"m0":1.9076132837502524,"af2":0,"c_rc":231.78125,"af1":1.1424639e-11,"c_is":-6.193295e-8,"c_ic":-1.44355e-8,"tgd1":1.11e-8,"omega0":-0.7137881420154806,"iodc":135} +{"length":147,"af0":-8.595683611929417e-4,"w":-0.4481241952228889,"dn":3.9401641236512066e-9,"c_us":6.60168e-6,"c_uc":-4.6142377e-6,"ecc":6.332750199362636e-4,"sqrta":5282.624731063843,"preamble":85,"toc":{"wn":2098,"tow":270014},"sender":22963,"msg_type":137,"omegadot":-6.962790028152671e-9,"payload":"Fgy+HgQAMggAAABAMCoAAAEA5fp/MuX6fzIAKLXCAChjQwDUmrYAhN02AADksgAAgDLoZ92aQewwPiTcBIFHTtQ/AAAAwEvARD8AAGDun6K0QNF2psYWw+a/K084KavnPb4H1cEaEa7cv5y4HRYKze4/0Nr8rnXhBb4AAAAAlSpMvwDsfy0AAAAAvh4EADIIh4cA","inc":0.962529223628525,"inc_dot":-6.36812240071619e-10,"iode":135,"crc":61525,"tgd2":1.49e-8,"common":{"health_bits":0,"fit_interval":10800,"valid":1,"sid":{"sat":22,"code":12},"toe":{"wn":2098,"tow":270014},"ura":2},"c_rs":-90.578125,"m0":0.31727779006490864,"af2":0,"c_rc":227.15625,"af1":1.4547474e-11,"c_is":1.4901161e-8,"c_ic":-2.6542693e-8,"tgd1":1.49e-8,"omega0":-0.711314571369906,"iodc":135} +{"length":147,"af0":-5.756265018135309e-4,"w":0.17131749839288932,"dn":3.5805062853157493e-9,"c_us":1.34021975e-5,"c_uc":1.5008263e-6,"ecc":5.672440165653825e-4,"sqrta":5282.627738952637,"preamble":85,"toc":{"wn":2098,"tow":270014},"sender":22963,"msg_type":137,"omegadot":-6.595989035133292e-9,"payload":"Igy+HgQAMggAAABAMCoAAAEAWdkAslnZALIAAPZBAAi9QgBwyTUA2mA3AABwMgAAKDJjDrfYncEuPsrGdL5ZIcw/AAAAQGOWQj8AAICzoKK0QIU/AkIEigbAJhks3F1UPL4vPWpWu+3FP6YFBUkK1O4/ejptkv007T0AAACAtNxCvwCgC64AAAAAvh4EADIIh4cA","inc":0.9633838106312183,"inc_dot":2.125088518466704e-10,"iode":135,"crc":62150,"tgd2":-7.5e-9,"common":{"health_bits":0,"fit_interval":10800,"valid":1,"sid":{"sat":34,"code":12},"toe":{"wn":2098,"tow":270014},"ura":2},"c_rs":30.75,"m0":0.21976777839295486,"af2":0,"c_rc":94.515625,"af1":-3.174705e-11,"c_is":9.778887e-9,"c_ic":1.3969839e-8,"tgd1":-7.5e-9,"omega0":-2.8173909336982796,"iodc":135} +{"length":147,"af0":-5.598061252385378e-4,"w":0.4555162837044739,"dn":4.254820087477957e-9,"c_us":3.4887344e-6,"c_uc":3.5273843e-6,"ecc":4.072687588632107e-4,"sqrta":5282.618574142456,"preamble":85,"toc":{"wn":2098,"tow":270014},"sender":22963,"msg_type":137,"omegadot":-7.227086751457774e-9,"payload":"GQy+HgQAMggAAABAMCoAAAEAP+2krz/tpK8AcI5CAByQQwC4bDYAIGo2AACUsgAAtLNlYpFiOUYyPjyioq2B4/M/AAAAANawOj8AAOBanqK0QNMn20Uo8vU/daM2E0QKP75XmFPFLSfdPykqFKcEh+4/DQoOoigw+j0AAACA/ldCvwCgZK0AAAAAvh4EADIIh4cA","inc":0.9539817107445902,"inc_dot":3.8108730238722235e-10,"iode":135,"crc":4271,"tgd2":-3.0e-10,"common":{"health_bits":0,"fit_interval":10800,"valid":1,"sid":{"sat":25,"code":12},"toe":{"wn":2098,"tow":270014},"ura":2},"c_rs":71.21875,"m0":1.2430435927036703,"af2":0,"c_rc":288.21875,"af1":-1.2995827e-11,"c_is":-8.381903e-8,"c_ic":-1.7229468e-8,"tgd1":-3.0e-10,"omega0":1.37162043845682,"iodc":135} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MghszS4QAAAAAAE=","wn":2098,"tow":271502700,"crc":8318} +{"length":16,"flags":17,"ns":699999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EWzNLhDkBwMZAxgs/ia5KQ==","day":25,"tow":271502700,"year":2020,"crc":50447,"minutes":24,"month":3,"seconds":44} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.495229808655402,"preamble":85,"sender":22963,"msg_type":522,"payload":"bM0uEBfhwd9l6kJAixnvJFaSXsDmLXhhx34xwAECWwQPBg==","lat":37.83123394934426,"tow":271502700,"h_accuracy":513,"crc":1734,"lon":-122.28650782918537} +{"v_accuracy":713,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"bM0uEAYAAAADAAAAFAAAAPAAyQIPAg==","n":6,"d":20,"tow":271502700,"h_accuracy":240,"crc":56213,"e":3} +{"length":15,"gdop":155,"flags":6,"tdop":77,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"bM0uEJsAhwBNAEgAcgAG","tow":271502700,"crc":1916,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"bM0uEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271502700,"h_accuracy":0,"crc":51918,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"bM0uEP//","tow":271502700,"crc":21322} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"message_type":3,"length":34,"data":[151,255,0,31,253,127,247,255,0,23,255,255,231,255,127,240,0,0,0,0,232,206,246,231,239,229,112],"preamble":85,"sender":22963,"msg_type":30583,"payload":"gwKNzC4QA5f/AB/9f/f/ABf//+f/f/AAAAAA6M725+/lcA==","tow":271502477,"crc":21291,"sid":{"sat":131,"code":2}} +{"length":136,"preamble":85,"sender":22963,"msg_type":151,"payload":"AgAaHgUALDUMAFEtFQB9GRkAbUYaAKEBHQChNx8AlQ4EAxYWBQMyIQYDTggJA18OCgNxKQsDmCUMA6oDEwMiBxQDCzEVA5UlDAyUKRMMIyAUDA8CFgxDIxgMgiMZDJ0OGgxnFR0MLAAiDI4RIwwiLQsOizIMDg88GA5sNhkOlykfDlURIQ4fDw==","crc":41336,"azel":[{"el":30,"az":26,"sid":{"sat":2,"code":0}},{"el":53,"az":44,"sid":{"sat":5,"code":0}},{"el":45,"az":81,"sid":{"sat":12,"code":0}},{"el":25,"az":125,"sid":{"sat":21,"code":0}},{"el":70,"az":109,"sid":{"sat":25,"code":0}},{"el":1,"az":161,"sid":{"sat":26,"code":0}},{"el":55,"az":161,"sid":{"sat":29,"code":0}},{"el":14,"az":149,"sid":{"sat":31,"code":0}},{"el":22,"az":22,"sid":{"sat":4,"code":3}},{"el":33,"az":50,"sid":{"sat":5,"code":3}},{"el":8,"az":78,"sid":{"sat":6,"code":3}},{"el":14,"az":95,"sid":{"sat":9,"code":3}},{"el":41,"az":113,"sid":{"sat":10,"code":3}},{"el":37,"az":152,"sid":{"sat":11,"code":3}},{"el":3,"az":170,"sid":{"sat":12,"code":3}},{"el":7,"az":34,"sid":{"sat":19,"code":3}},{"el":49,"az":11,"sid":{"sat":20,"code":3}},{"el":37,"az":149,"sid":{"sat":21,"code":3}},{"el":41,"az":148,"sid":{"sat":12,"code":12}},{"el":32,"az":35,"sid":{"sat":19,"code":12}},{"el":2,"az":15,"sid":{"sat":20,"code":12}},{"el":35,"az":67,"sid":{"sat":22,"code":12}},{"el":35,"az":130,"sid":{"sat":24,"code":12}},{"el":14,"az":157,"sid":{"sat":25,"code":12}},{"el":21,"az":103,"sid":{"sat":26,"code":12}},{"el":0,"az":44,"sid":{"sat":29,"code":12}},{"el":17,"az":142,"sid":{"sat":34,"code":12}},{"el":45,"az":34,"sid":{"sat":35,"code":12}},{"el":50,"az":139,"sid":{"sat":11,"code":14}},{"el":60,"az":15,"sid":{"sat":12,"code":14}},{"el":54,"az":108,"sid":{"sat":24,"code":14}},{"el":41,"az":151,"sid":{"sat":25,"code":14}},{"el":17,"az":85,"sid":{"sat":31,"code":14}},{"el":15,"az":31,"sid":{"sat":33,"code":14}}]} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgjQzS4QAAAAAAE=","wn":2098,"tow":271502800,"crc":57054} +{"length":16,"flags":17,"ns":799999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EdDNLhDkBwMZAxgs/gevLw==","day":25,"tow":271502800,"year":2020,"crc":34449,"minutes":24,"month":3,"seconds":44} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.498905876193543,"preamble":85,"sender":22963,"msg_type":522,"payload":"0M0uECOzfd9l6kJAE9fKJFaSXsCTCKZLuH8xwAECWwQPBg==","lat":37.8312339175957,"tow":271502800,"h_accuracy":513,"crc":51660,"lon":-122.28650779541594} +{"v_accuracy":713,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"0M0uEPn///8DAAAA7f////AAyQIPAg==","n":-7,"d":-19,"tow":271502800,"h_accuracy":240,"crc":49936,"e":3} +{"length":15,"gdop":155,"flags":6,"tdop":77,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"0M0uEJsAhwBNAEgAcgAG","tow":271502800,"crc":15367,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"0M0uEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271502800,"h_accuracy":0,"crc":24146,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"0M0uEP//","tow":271502800,"crc":41733} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":237,"states":[{"cn0":213,"mesid":{"sat":5,"code":0}},{"cn0":179,"mesid":{"sat":21,"code":0}},{"cn0":190,"mesid":{"sat":2,"code":0}},{"cn0":165,"mesid":{"sat":31,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":218,"mesid":{"sat":25,"code":0}},{"cn0":205,"mesid":{"sat":12,"code":0}},{"cn0":212,"mesid":{"sat":29,"code":0}},{"cn0":206,"mesid":{"sat":18,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":205,"mesid":{"sat":131,"code":2}},{"cn0":205,"mesid":{"sat":25,"code":1}},{"cn0":187,"mesid":{"sat":12,"code":1}},{"cn0":150,"mesid":{"sat":31,"code":1}},{"cn0":195,"mesid":{"sat":18,"code":1}},{"cn0":194,"mesid":{"sat":29,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":194,"mesid":{"sat":5,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":213,"mesid":{"sat":11,"code":3}},{"cn0":177,"mesid":{"sat":9,"code":3}},{"cn0":173,"mesid":{"sat":20,"code":3}},{"cn0":206,"mesid":{"sat":5,"code":3}},{"cn0":206,"mesid":{"sat":10,"code":3}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":183,"mesid":{"sat":4,"code":3}},{"cn0":204,"mesid":{"sat":21,"code":3}},{"cn0":172,"mesid":{"sat":9,"code":4}},{"cn0":204,"mesid":{"sat":20,"code":4}},{"cn0":70,"mesid":{"sat":10,"code":4}},{"cn0":199,"mesid":{"sat":11,"code":4}},{"cn0":194,"mesid":{"sat":5,"code":4}},{"cn0":185,"mesid":{"sat":0,"code":4}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":176,"mesid":{"sat":4,"code":4}},{"cn0":200,"mesid":{"sat":35,"code":12}},{"cn0":169,"mesid":{"sat":26,"code":12}},{"cn0":161,"mesid":{"sat":34,"code":12}},{"cn0":189,"mesid":{"sat":24,"code":12}},{"cn0":156,"mesid":{"sat":25,"code":12}},{"cn0":185,"mesid":{"sat":12,"code":12}},{"cn0":185,"mesid":{"sat":19,"code":12}},{"cn0":191,"mesid":{"sat":22,"code":12}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":209,"mesid":{"sat":12,"code":13}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":196,"mesid":{"sat":12,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":193,"mesid":{"sat":25,"code":14}},{"cn0":190,"mesid":{"sat":11,"code":14}},{"cn0":205,"mesid":{"sat":24,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":161,"mesid":{"sat":31,"code":14}},{"cn0":155,"mesid":{"sat":33,"code":14}},{"cn0":201,"mesid":{"sat":25,"code":20}},{"cn0":215,"mesid":{"sat":24,"code":20}},{"cn0":194,"mesid":{"sat":11,"code":20}},{"cn0":173,"mesid":{"sat":31,"code":20}},{"cn0":207,"mesid":{"sat":12,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":171,"mesid":{"sat":33,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}}],"preamble":85,"sender":22963,"msg_type":97,"payload":"BQDVFQCzAgC+HwClAAAAAAAAGQDaDADNHQDUEgDOAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwLNGQHNDAG7HwGWEgHDHQHCAAAABQHCAAAAAAAAAAAAAAAACwPVCQOxFAOtBQPOCgPOAAAABAO3FQPMCQSsFATMCgRGCwTHBQTCAAS5AAAABASwIwzIGgypIgyhGAy9GQycDAy5Ewy5Fgy/AAAADA3RAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADA7EAAAAGQ7BCw6+GA7NAAAAHw6hIQ6bGRTJGBTXCxTCHxStDBTPAAAAIRSrAAAA","crc":4273} +{"length":51,"text":"GLO L2OF ME 1 [+1326ms] low CN0 too long, dropping","preamble":85,"sender":22963,"msg_type":1025,"payload":"BkdMTyBMMk9GIE1FIDEgWysxMzI2bXNdIGxvdyBDTjAgdG9vIGxvbmcsIGRyb3BwaW5n","crc":24511,"level":6} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"Mgg0zi4QAAAAAAE=","wn":2098,"tow":271502900,"crc":52691} +{"length":16,"flags":17,"ns":899999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"ETTOLhDkBwMZAxgs/uikNQ==","day":25,"tow":271502900,"year":2020,"crc":36878,"minutes":24,"month":3,"seconds":44} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.509175684697105,"preamble":85,"sender":22963,"msg_type":522,"payload":"NM4uEFAsP99l6kJAGNOpJFaSXsBGsXFWWYIxwAECWwQPBg==","lat":37.83123388847946,"tow":271502900,"h_accuracy":513,"crc":61668,"lon":-122.28650776466782} +{"v_accuracy":713,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"NM4uEAAAAAAFAAAAKAAAAPAAyQIPAg==","n":0,"d":40,"tow":271502900,"h_accuracy":240,"crc":49783,"e":5} +{"length":15,"gdop":155,"flags":6,"tdop":77,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"NM4uEJsAhwBNAEgAcgAG","tow":271502900,"crc":51481,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"NM4uEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271502900,"h_accuracy":0,"crc":37450,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"NM4uEP//","tow":271502900,"crc":49230} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":249,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":120,"i":110562077},"flags":15,"cn0":213,"P":1051963062,"D":{"f":0,"i":-175},"lock":15,"sid":{"sat":5,"code":0}},{"L":{"f":202,"i":121850852},"flags":15,"cn0":179,"P":1159372321,"D":{"f":46,"i":2177},"lock":15,"sid":{"sat":21,"code":0}},{"L":{"f":129,"i":123308589},"flags":15,"cn0":190,"P":1173241866,"D":{"f":67,"i":-2481},"lock":15,"sid":{"sat":2,"code":0}},{"L":{"f":53,"i":128733684},"flags":15,"cn0":166,"P":1224860275,"D":{"f":34,"i":-389},"lock":15,"sid":{"sat":31,"code":0}},{"L":{"f":227,"i":107809837},"flags":15,"cn0":218,"P":1025776440,"D":{"f":0,"i":-1119},"lock":15,"sid":{"sat":25,"code":0}},{"L":{"f":79,"i":114063179},"flags":15,"cn0":206,"P":1085274943,"D":{"f":117,"i":-2963},"lock":15,"sid":{"sat":12,"code":0}},{"L":{"f":225,"i":110778744},"flags":15,"cn0":212,"P":1054024626,"D":{"f":239,"i":1486},"lock":15,"sid":{"sat":29,"code":0}},{"L":{"f":97,"i":84007686},"flags":15,"cn0":205,"P":1025776479,"D":{"f":156,"i":-873},"lock":15,"sid":{"sat":25,"code":1}},{"L":{"f":26,"i":88880431},"flags":15,"cn0":187,"P":1085274885,"D":{"f":206,"i":-2311},"lock":15,"sid":{"sat":12,"code":1}},{"L":{"f":34,"i":100311964},"flags":15,"cn0":150,"P":1224860186,"D":{"f":239,"i":-305},"lock":15,"sid":{"sat":31,"code":1}},{"L":{"f":185,"i":86321101},"flags":15,"cn0":195,"P":1054024552,"D":{"f":16,"i":1158},"lock":15,"sid":{"sat":29,"code":1}},{"L":{"f":108,"i":86152297},"flags":15,"cn0":194,"P":1051962988,"D":{"f":11,"i":-135},"lock":15,"sid":{"sat":5,"code":1}},{"L":{"f":175,"i":112950506},"flags":15,"cn0":213,"P":1056857064,"D":{"f":171,"i":1176},"lock":15,"sid":{"sat":11,"code":3}},{"L":{"f":62,"i":123284648},"flags":15,"cn0":177,"P":1154362412,"D":{"f":201,"i":-4408},"lock":15,"sid":{"sat":9,"code":3}}],"payload":"mM4uEAAAAAAyCEC2rrM+HQuXBnhR/wDVDw8FACGeGkXkS0MHyoEILrMPDxUACkDuRS2KWQeBT/ZDvg8PAgBz4gFJ9FGsBzV7/iKmDw8fADgbJD0tDG0G46H7ANoPDxkAP/uvQEt3zAZPbfR1zg8PDACyI9M+eFmaBuHOBe/UDw8dAF8bJD0G2wEFYZf8nM0PDxkBBfuvQC81TAUa+fbOuw8PDAEa4gFJnKP6BSLP/u+WDw8fAWgj0z7NJyUFuYYEEMMPDx0BbK6zPmmUIgVsef8Lwg8PBQHoW/4+6ny7Bq+YBKvVDw8LAywszkSoLFkHPsjuybEPDwkD","header":{"n_obs":64,"t":{"ns_residual":0,"wn":2098,"tow":271503000}},"crc":12198} +{"length":249,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":246,"i":109757024},"flags":15,"cn0":174,"P":1026255490,"D":{"f":186,"i":-1208},"lock":15,"sid":{"sat":20,"code":3}},{"L":{"f":132,"i":114885029},"flags":15,"cn0":206,"P":1074580688,"D":{"f":54,"i":2206},"lock":15,"sid":{"sat":5,"code":3}},{"L":{"f":6,"i":111569456},"flags":15,"cn0":206,"P":1046506917,"D":{"f":132,"i":-3037},"lock":15,"sid":{"sat":10,"code":3}},{"L":{"f":41,"i":120423821},"flags":15,"cn0":183,"P":1124414716,"D":{"f":154,"i":-1307},"lock":15,"sid":{"sat":4,"code":3}},{"L":{"f":252,"i":113438118},"flags":15,"cn0":204,"P":1059930783,"D":{"f":253,"i":1624},"lock":15,"sid":{"sat":21,"code":3}},{"L":{"f":96,"i":95888069},"flags":15,"cn0":172,"P":1154362579,"D":{"f":55,"i":-3427},"lock":15,"sid":{"sat":9,"code":4}},{"L":{"f":179,"i":85366610},"flags":15,"cn0":204,"P":1026255855,"D":{"f":247,"i":-940},"lock":15,"sid":{"sat":20,"code":4}},{"L":{"f":107,"i":87850404},"flags":15,"cn0":199,"P":1056857326,"D":{"f":132,"i":914},"lock":15,"sid":{"sat":11,"code":4}},{"L":{"f":190,"i":89355026},"flags":15,"cn0":194,"P":1074580934,"D":{"f":136,"i":1716},"lock":15,"sid":{"sat":5,"code":4}},{"L":{"f":61,"i":93662962},"flags":15,"cn0":176,"P":1124414825,"D":{"f":201,"i":-1018},"lock":15,"sid":{"sat":4,"code":4}},{"L":{"f":44,"i":121563070},"flags":15,"cn0":200,"P":1167245183,"D":{"f":66,"i":-1498},"lock":15,"sid":{"sat":35,"code":12}},{"L":{"f":200,"i":129178042},"flags":15,"cn0":169,"P":1240364288,"D":{"f":196,"i":-3008},"lock":15,"sid":{"sat":26,"code":12}},{"L":{"f":115,"i":132971348},"flags":15,"cn0":161,"P":1276787246,"D":{"f":217,"i":2248},"lock":15,"sid":{"sat":34,"code":12}},{"L":{"f":88,"i":125136691},"flags":15,"cn0":189,"P":1201559301,"D":{"f":201,"i":-1298},"lock":15,"sid":{"sat":24,"code":12}}],"payload":"mM4uEAAAAAAyCEGCais9YMKKBvZI+7quDw8UA9DMDEClAdkGhJ4INs4PDwUDpW1gPjBqpgYGI/SEzg8PCgP8NAVDjYUtBynl+pq3Dw8EA59CLT+m7cIG/FgG/cwPDxUD0yzORMUitwVgnfI3rA8PCQTvays9UpcWBbNU/PfMDw8UBO5c/j6kfTwFa5IDhMcPDwsExs0MQBJzUwW+tAaIwg8PBQRpNQVD8i6VBT0G/MmwDw8EBH+/kkW+5z4HLCb6QsgPDyMMAHXuSboZswfIQPTEqQ8PGgwuOhpMVPvsB3PICNmhDw8iDAVXnkczb3UHWO76yb0PDxgM","header":{"n_obs":65,"t":{"ns_residual":0,"wn":2098,"tow":271503000}},"crc":26425} +{"length":249,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":224,"i":134687130},"flags":15,"cn0":156,"P":1293262363,"D":{"f":28,"i":1331},"lock":15,"sid":{"sat":25,"code":12}},{"L":{"f":5,"i":121118127},"flags":15,"cn0":185,"P":1162973126,"D":{"f":153,"i":1611},"lock":15,"sid":{"sat":12,"code":12}},{"L":{"f":74,"i":124511741},"flags":15,"cn0":184,"P":1195558507,"D":{"f":155,"i":-283},"lock":15,"sid":{"sat":19,"code":12}},{"L":{"f":25,"i":124731312},"flags":15,"cn0":192,"P":1197666849,"D":{"f":241,"i":2390},"lock":15,"sid":{"sat":22,"code":12}},{"L":{"f":57,"i":93656227},"flags":15,"cn0":209,"P":1162973034,"D":{"f":152,"i":1246},"lock":15,"sid":{"sat":12,"code":13}},{"L":{"f":87,"i":116414612},"flags":15,"cn0":196,"P":1107648189,"D":{"f":84,"i":-1028},"lock":15,"sid":{"sat":12,"code":14}},{"L":{"f":223,"i":132487038},"flags":15,"cn0":193,"P":1260572199,"D":{"f":108,"i":1092},"lock":15,"sid":{"sat":25,"code":14}},{"L":{"f":159,"i":125434279},"flags":15,"cn0":190,"P":1193467432,"D":{"f":95,"i":1047},"lock":15,"sid":{"sat":11,"code":14}},{"L":{"f":82,"i":118394520},"flags":15,"cn0":205,"P":1126486286,"D":{"f":109,"i":-1740},"lock":15,"sid":{"sat":24,"code":14}},{"L":{"f":72,"i":143286104},"flags":15,"cn0":161,"P":1363321942,"D":{"f":221,"i":-3171},"lock":15,"sid":{"sat":31,"code":14}},{"L":{"f":204,"i":144500358},"flags":15,"cn0":155,"P":1374875205,"D":{"f":28,"i":-2142},"lock":15,"sid":{"sat":33,"code":14}},{"L":{"f":42,"i":101516041},"flags":15,"cn0":201,"P":1260572155,"D":{"f":170,"i":837},"lock":15,"sid":{"sat":25,"code":20}},{"L":{"f":195,"i":90717942},"flags":15,"cn0":215,"P":1126486819,"D":{"f":239,"i":-1335},"lock":15,"sid":{"sat":24,"code":20}},{"L":{"f":77,"i":96111958},"flags":15,"cn0":194,"P":1193467246,"D":{"f":122,"i":803},"lock":15,"sid":{"sat":11,"code":20}}],"payload":"mM4uEAAAAAAyCEIbnhVNmikHCOAzBRycDw8ZDMaPUUWvHTgHBUsGmbkPDwwMa8ZCR/3lawdK5f6buA8PEwwh8mJHsD9vBxlWCfHADw8WDGqPUUWjFJUFOd4EmNEPDwwNvV4FQpRY8AZX/PtUxA8PDA4nziJLfpflB99EBGzBDw8ZDijeIken+XkHnxcEX74PDwsODtEkQ5iODgdSNPltzQ8PGA5WpEJRWF+KCEid892hDw8fDkXu8lGG5pwIzKL3HJsPDyEO+80iSwkDDQYqRQOqyQ8PGRQj0yRD9j5oBcPJ+u/XDw8YFG7dIkdWjboFTSMDesIPDwsU","header":{"n_obs":66,"t":{"ns_residual":0,"wn":2098,"tow":271503000}},"crc":21882} +{"length":62,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":217,"i":109790692},"flags":15,"cn0":173,"P":1363321994,"D":{"f":187,"i":-2430},"lock":15,"sid":{"sat":31,"code":20}},{"L":{"f":114,"i":89200837},"flags":15,"cn0":207,"P":1107648028,"D":{"f":144,"i":-787},"lock":15,"sid":{"sat":12,"code":20}},{"L":{"f":160,"i":110721124},"flags":15,"cn0":170,"P":1374875167,"D":{"f":69,"i":-1643},"lock":15,"sid":{"sat":33,"code":20}}],"payload":"mM4uEAAAAAAyCEOKpEJR5EWLBtmC9rutDw8fFBxeBULFGFEFcu38kM8PDwwUH+7yUWR4mQaglflFqg8PIRQ=","header":{"n_obs":67,"t":{"ns_residual":0,"wn":2098,"tow":271503000}},"crc":50056} +{"length":9,"l2ca_bias":0,"preamble":85,"l2p_bias":0,"sender":22963,"msg_type":117,"payload":"/wAAAAAAAAAA","l1ca_bias":0,"mask":255,"crc":49809,"l1p_bias":0} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgiYzi4QAAAAAAE=","wn":2098,"tow":271503000,"crc":24717} +{"length":16,"flags":17,"ns":999999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EZjOLhDkBwMZAxgs/smaOw==","day":25,"tow":271503000,"year":2020,"crc":37725,"minutes":24,"month":3,"seconds":44} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.512517367642587,"preamble":85,"sender":22963,"msg_type":522,"payload":"mM4uEOxgC99l6kJAgUOgJFaSXsAsqJRWNIMxwAECWwQPBg==","lat":37.83123386436077,"tow":271503000,"h_accuracy":513,"crc":13898,"lon":-122.28650775576354} +{"v_accuracy":713,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"mM4uEPr////5////5/////AAyQIPAg==","n":-6,"d":-25,"tow":271503000,"h_accuracy":240,"crc":6454,"e":-7} +{"length":15,"gdop":155,"flags":6,"tdop":77,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"mM4uEJsAhwBNAEgAcgAG","tow":271503000,"crc":48360,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"mM4uEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271503000,"h_accuracy":0,"crc":48016,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"mM4uEP//","tow":271503000,"crc":10885} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":4,"flags":2147616000,"preamble":85,"sender":22963,"msg_type":65535,"payload":"AAUCgA==","crc":40942} +{"length":24,"z":3890655.0240602265,"preamble":85,"sender":22963,"msg_type":72,"payload":"UO0a3iqORMHK1UJhIkRQwc9nFIPvrk1B","crc":2168,"x":-2694229.735196747,"y":-4264073.519704292} +{"cpu_vint":989,"length":10,"fe_temperature":5641,"preamble":85,"sender":22963,"cpu_vaux":1780,"msg_type":181,"payload":"6xbdA/QGVBUJFg==","dev_vin":5867,"crc":25495,"cpu_temperature":5460} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"Mgj8zi4QAAAAAAE=","wn":2098,"tow":271503100,"crc":1095} +{"length":16,"flags":17,"ns":99999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EfzOLhDkBwMZAxgt/uD1BQ==","day":25,"tow":271503100,"year":2020,"crc":49533,"minutes":24,"month":3,"seconds":45} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.51979336898869,"preamble":85,"sender":22963,"msg_type":522,"payload":"/M4uEHtm7d5l6kJARpiLJFaSXsDte6AtEYUxwAECWwQPBg==","lat":37.83123385040104,"tow":271503100,"h_accuracy":513,"crc":49812,"lon":-122.28650773651415} +{"v_accuracy":713,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"/M4uEAIAAAADAAAAGgAAAPAAyQIPAg==","n":2,"d":26,"tow":271503100,"h_accuracy":240,"crc":31534,"e":3} +{"length":15,"gdop":155,"flags":6,"tdop":77,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"/M4uEJsAhwBNAEgAcgAG","tow":271503100,"crc":36935,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"/M4uEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271503100,"h_accuracy":0,"crc":41766,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"/M4uEP//","tow":271503100,"crc":29500} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"Mghgzy4QAAAAAAE=","wn":2098,"tow":271503200,"crc":6856} +{"length":16,"flags":17,"ns":199999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EWDPLhDkBwMZAxgt/sHrCw==","day":25,"tow":271503200,"year":2020,"crc":27703,"minutes":24,"month":3,"seconds":45} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.524361152140592,"preamble":85,"sender":22963,"msg_type":522,"payload":"YM8uECPRy95l6kJAeAZ9JFaSXsCavE+IPIYxwAECWwQPBg==","lat":37.831233834762564,"tow":271503200,"h_accuracy":513,"crc":8014,"lon":-122.2865077229452} +{"v_accuracy":713,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"YM8uEP/////5////+v////AAyQIPAg==","n":-1,"d":-6,"tow":271503200,"h_accuracy":240,"crc":13948,"e":-7} +{"length":15,"gdop":155,"flags":6,"tdop":77,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"YM8uEJsAhwBNAEgAcgAG","tow":271503200,"crc":19785,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"YM8uEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271503200,"h_accuracy":0,"crc":35041,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"YM8uEP//","tow":271503200,"crc":7210} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgjEzy4QAAAAAAE=","wn":2098,"tow":271503300,"crc":40553} +{"length":16,"flags":17,"ns":299999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EcTPLhDkBwMZAxgt/qLhEQ==","day":25,"tow":271503300,"year":2020,"crc":40968,"minutes":24,"month":3,"seconds":45} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.53280142938859,"preamble":85,"sender":22963,"msg_type":522,"payload":"xM8uEILLqt5l6kJA6adJJFaSXsBufKqsZYgxwAECWwQPBg==","lat":37.8312338193855,"tow":271503300,"h_accuracy":513,"crc":39585,"lon":-122.28650767510375} +{"v_accuracy":713,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"xM8uEAAAAAALAAAAEgAAAPAAyQIPAg==","n":0,"d":18,"tow":271503300,"h_accuracy":240,"crc":30451,"e":11} +{"length":15,"gdop":155,"flags":6,"tdop":77,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"xM8uEJsAhwBNAEgAcgAG","tow":271503300,"crc":8189,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"xM8uEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271503300,"h_accuracy":0,"crc":65432,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"xM8uEP//","tow":271503300,"crc":64419} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":237,"states":[{"cn0":213,"mesid":{"sat":5,"code":0}},{"cn0":180,"mesid":{"sat":21,"code":0}},{"cn0":190,"mesid":{"sat":2,"code":0}},{"cn0":166,"mesid":{"sat":31,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":219,"mesid":{"sat":25,"code":0}},{"cn0":206,"mesid":{"sat":12,"code":0}},{"cn0":213,"mesid":{"sat":29,"code":0}},{"cn0":207,"mesid":{"sat":18,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":205,"mesid":{"sat":131,"code":2}},{"cn0":205,"mesid":{"sat":25,"code":1}},{"cn0":187,"mesid":{"sat":12,"code":1}},{"cn0":148,"mesid":{"sat":31,"code":1}},{"cn0":195,"mesid":{"sat":18,"code":1}},{"cn0":195,"mesid":{"sat":29,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":194,"mesid":{"sat":5,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":213,"mesid":{"sat":100,"code":3}},{"cn0":177,"mesid":{"sat":98,"code":3}},{"cn0":173,"mesid":{"sat":102,"code":3}},{"cn0":206,"mesid":{"sat":101,"code":3}},{"cn0":206,"mesid":{"sat":93,"code":3}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":183,"mesid":{"sat":106,"code":3}},{"cn0":204,"mesid":{"sat":104,"code":3}},{"cn0":172,"mesid":{"sat":98,"code":4}},{"cn0":204,"mesid":{"sat":102,"code":4}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":199,"mesid":{"sat":100,"code":4}},{"cn0":194,"mesid":{"sat":101,"code":4}},{"cn0":185,"mesid":{"sat":104,"code":4}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":176,"mesid":{"sat":106,"code":4}},{"cn0":200,"mesid":{"sat":35,"code":12}},{"cn0":169,"mesid":{"sat":26,"code":12}},{"cn0":161,"mesid":{"sat":34,"code":12}},{"cn0":189,"mesid":{"sat":24,"code":12}},{"cn0":157,"mesid":{"sat":25,"code":12}},{"cn0":185,"mesid":{"sat":12,"code":12}},{"cn0":185,"mesid":{"sat":19,"code":12}},{"cn0":192,"mesid":{"sat":22,"code":12}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":208,"mesid":{"sat":12,"code":13}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":196,"mesid":{"sat":12,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":193,"mesid":{"sat":25,"code":14}},{"cn0":189,"mesid":{"sat":11,"code":14}},{"cn0":205,"mesid":{"sat":24,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":161,"mesid":{"sat":31,"code":14}},{"cn0":155,"mesid":{"sat":33,"code":14}},{"cn0":201,"mesid":{"sat":25,"code":20}},{"cn0":215,"mesid":{"sat":24,"code":20}},{"cn0":193,"mesid":{"sat":11,"code":20}},{"cn0":173,"mesid":{"sat":31,"code":20}},{"cn0":206,"mesid":{"sat":12,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":171,"mesid":{"sat":33,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}}],"preamble":85,"sender":22963,"msg_type":97,"payload":"BQDVFQC0AgC+HwCmAAAAAAAAGQDbDADOHQDVEgDPAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwLNGQHNDAG7HwGUEgHDHQHDAAAABQHCAAAAAAAAAAAAAAAAZAPVYgOxZgOtZQPOXQPOAAAAagO3aAPMYgSsZgTMAAAAZATHZQTCaAS5AAAAagSwIwzIGgypIgyhGAy9GQydDAy5Ewy5FgzAAAAADA3QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADA7EAAAAGQ7BCw69GA7NAAAAHw6hIQ6bGRTJGBTXCxTBHxStDBTOAAAAIRSrAAAA","crc":63950} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"Mggo0C4QAAAAAAE=","wn":2098,"tow":271503400,"crc":34968} +{"length":16,"flags":17,"ns":399999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"ESjQLhDkBwMZAxgt/oPXFw==","day":25,"tow":271503400,"year":2020,"crc":56425,"minutes":24,"month":3,"seconds":45} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.5371405866384,"preamble":85,"sender":22963,"msg_type":522,"payload":"KNAuEHZlnt5l6kJA4WklJFaSXsBY96QLgokxwAECWwQPBg==","lat":37.831233813611945,"tow":271503400,"h_accuracy":513,"crc":23239,"lon":-122.28650764135047} +{"v_accuracy":713,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"KNAuEAEAAAD8////+P////AAyQIPAg==","n":1,"d":-8,"tow":271503400,"h_accuracy":240,"crc":29280,"e":-4} +{"length":15,"gdop":155,"flags":6,"tdop":77,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"KNAuEJsAhwBNAEgAcgAG","tow":271503400,"crc":7583,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"KNAuEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271503400,"h_accuracy":0,"crc":19235,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"KNAuEP//","tow":271503400,"crc":6875} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":9,"l2ca_bias":0,"preamble":85,"l2p_bias":0,"sender":22963,"msg_type":117,"payload":"/wAAAAAAAAAA","l1ca_bias":0,"mask":255,"crc":49809,"l1p_bias":0} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgiM0C4QAAAAAAE=","wn":2098,"tow":271503500,"crc":3129} +{"length":16,"flags":17,"ns":499999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EYzQLhDkBwMZAxgt/mTNHQ==","day":25,"tow":271503500,"year":2020,"crc":59022,"minutes":24,"month":3,"seconds":45} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.543637478861665,"preamble":85,"sender":22963,"msg_type":522,"payload":"jNAuEFvslt5l6kJAccL3I1aSXsA7l2jTK4sxwAECWwQPBg==","lat":37.83123381013203,"tow":271503500,"h_accuracy":513,"crc":42755,"lon":-122.28650759883182} +{"v_accuracy":713,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"jNAuEP3///8OAAAADwAAAPAAyQIPAg==","n":-3,"d":15,"tow":271503500,"h_accuracy":240,"crc":61626,"e":14} +{"length":15,"gdop":155,"flags":6,"tdop":77,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"jNAuEJsAhwBNAEgAcgAG","tow":271503500,"crc":20267,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"jNAuEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271503500,"h_accuracy":0,"crc":15450,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"jNAuEP//","tow":271503500,"crc":64850} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"Mgjw0C4QAAAAAAE=","wn":2098,"tow":271503600,"crc":4850} +{"length":16,"flags":17,"ns":599999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EfDQLhDkBwMZAxgt/kXDIw==","day":25,"tow":271503600,"year":2020,"crc":59018,"minutes":24,"month":3,"seconds":45} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.54348041741564,"preamble":85,"sender":22963,"msg_type":522,"payload":"8NAuEFH5fd5l6kJAXSPqI1aSXsAN0VqIIYsxwAECWwQPBg==","lat":37.83123379851407,"tow":271503600,"h_accuracy":513,"crc":51630,"lon":-122.2865075861459} +{"v_accuracy":713,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"8NAuEPT////8////4/////AAyQIPAg==","n":-12,"d":-29,"tow":271503600,"h_accuracy":240,"crc":49109,"e":-4} +{"length":15,"gdop":155,"flags":6,"tdop":77,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"8NAuEJsAhwBNAEgAcgAG","tow":271503600,"crc":2635,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"8NAuEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271503600,"h_accuracy":0,"crc":50953,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"8NAuEP//","tow":271503600,"crc":45869} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"message_type":4,"length":34,"data":[151,255,127,255,253,127,240,1,127,255,254,255,239,251,127,247,255,127,247,255,238,94,110,170,175,255,240],"preamble":85,"sender":22963,"msg_type":30583,"payload":"gwJv0C4QBJf/f//9f/ABf//+/+/7f/f/f/f/7l5uqq//8A==","tow":271503471,"crc":25189,"sid":{"sat":131,"code":2}} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MghU0S4QAAAAAAE=","wn":2098,"tow":271503700,"crc":53632} +{"length":16,"flags":17,"ns":699999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EVTRLhDkBwMZAxgt/ia5KQ==","day":25,"tow":271503700,"year":2020,"crc":19388,"minutes":24,"month":3,"seconds":45} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.54843135838237,"preamble":85,"sender":22963,"msg_type":522,"payload":"VNEuEPj4pN5l6kJAX5biI1aSXsBnWlz/ZYwxwAECWwQPBg==","lat":37.83123381667423,"tow":271503700,"h_accuracy":513,"crc":48536,"lon":-122.28650757911372} +{"v_accuracy":713,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"VNEuEAgAAAD8////FQAAAPAAyQIPAg==","n":8,"d":21,"tow":271503700,"h_accuracy":240,"crc":51072,"e":-4} +{"length":15,"gdop":155,"flags":6,"tdop":77,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"VNEuEJsAhwBNAEgAcgAG","tow":271503700,"crc":9118,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"VNEuEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271503700,"h_accuracy":0,"crc":25990,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"VNEuEP//","tow":271503700,"crc":65269} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":136,"preamble":85,"sender":22963,"msg_type":151,"payload":"AgAaHgUALDUMAFEtFQB9GRkAbUYaAKEBHQChNx8AlQ4EAxYWBQMyIQYDTggJA18OCgNxKQsDmCUMA6oDEwMiBxQDCzEVA5UlDAyUKRMMIyAUDA8CFgxDIxgMgiMZDJ0OGgxnFR0MLAAiDI4RIwwiLQsOizIMDg88GA5sNhkOlykfDlURIQ4fDw==","crc":41336,"azel":[{"el":30,"az":26,"sid":{"sat":2,"code":0}},{"el":53,"az":44,"sid":{"sat":5,"code":0}},{"el":45,"az":81,"sid":{"sat":12,"code":0}},{"el":25,"az":125,"sid":{"sat":21,"code":0}},{"el":70,"az":109,"sid":{"sat":25,"code":0}},{"el":1,"az":161,"sid":{"sat":26,"code":0}},{"el":55,"az":161,"sid":{"sat":29,"code":0}},{"el":14,"az":149,"sid":{"sat":31,"code":0}},{"el":22,"az":22,"sid":{"sat":4,"code":3}},{"el":33,"az":50,"sid":{"sat":5,"code":3}},{"el":8,"az":78,"sid":{"sat":6,"code":3}},{"el":14,"az":95,"sid":{"sat":9,"code":3}},{"el":41,"az":113,"sid":{"sat":10,"code":3}},{"el":37,"az":152,"sid":{"sat":11,"code":3}},{"el":3,"az":170,"sid":{"sat":12,"code":3}},{"el":7,"az":34,"sid":{"sat":19,"code":3}},{"el":49,"az":11,"sid":{"sat":20,"code":3}},{"el":37,"az":149,"sid":{"sat":21,"code":3}},{"el":41,"az":148,"sid":{"sat":12,"code":12}},{"el":32,"az":35,"sid":{"sat":19,"code":12}},{"el":2,"az":15,"sid":{"sat":20,"code":12}},{"el":35,"az":67,"sid":{"sat":22,"code":12}},{"el":35,"az":130,"sid":{"sat":24,"code":12}},{"el":14,"az":157,"sid":{"sat":25,"code":12}},{"el":21,"az":103,"sid":{"sat":26,"code":12}},{"el":0,"az":44,"sid":{"sat":29,"code":12}},{"el":17,"az":142,"sid":{"sat":34,"code":12}},{"el":45,"az":34,"sid":{"sat":35,"code":12}},{"el":50,"az":139,"sid":{"sat":11,"code":14}},{"el":60,"az":15,"sid":{"sat":12,"code":14}},{"el":54,"az":108,"sid":{"sat":24,"code":14}},{"el":41,"az":151,"sid":{"sat":25,"code":14}},{"el":17,"az":85,"sid":{"sat":31,"code":14}},{"el":15,"az":31,"sid":{"sat":33,"code":14}}]} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"Mgi40S4QAAAAAAE=","wn":2098,"tow":271503800,"crc":8967} +{"length":16,"flags":17,"ns":799999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EbjRLhDkBwMZAxgt/gevLw==","day":25,"tow":271503800,"year":2020,"crc":27809,"minutes":24,"month":3,"seconds":45} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.554397581544016,"preamble":85,"sender":22963,"msg_type":522,"payload":"uNEuEPLE3d5l6kJArzbNI1aSXsCKtvn/7I0xwAECWwQPBg==","lat":37.83123384312229,"tow":271503800,"h_accuracy":513,"crc":40381,"lon":-122.28650755920783} +{"v_accuracy":713,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"uNEuEBEAAAABAAAABgAAAPAAyQIPAg==","n":17,"d":6,"tow":271503800,"h_accuracy":240,"crc":13993,"e":1} +{"length":15,"gdop":155,"flags":6,"tdop":77,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"uNEuEJsAhwBNAEgAcgAG","tow":271503800,"crc":31846,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"uNEuEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271503800,"h_accuracy":0,"crc":39174,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"uNEuEP//","tow":271503800,"crc":32302} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":237,"states":[{"cn0":214,"mesid":{"sat":5,"code":0}},{"cn0":181,"mesid":{"sat":21,"code":0}},{"cn0":191,"mesid":{"sat":2,"code":0}},{"cn0":167,"mesid":{"sat":31,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":219,"mesid":{"sat":25,"code":0}},{"cn0":207,"mesid":{"sat":12,"code":0}},{"cn0":213,"mesid":{"sat":29,"code":0}},{"cn0":207,"mesid":{"sat":18,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":206,"mesid":{"sat":131,"code":2}},{"cn0":205,"mesid":{"sat":25,"code":1}},{"cn0":187,"mesid":{"sat":12,"code":1}},{"cn0":150,"mesid":{"sat":31,"code":1}},{"cn0":196,"mesid":{"sat":18,"code":1}},{"cn0":195,"mesid":{"sat":29,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":195,"mesid":{"sat":5,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":213,"mesid":{"sat":11,"code":3}},{"cn0":177,"mesid":{"sat":9,"code":3}},{"cn0":174,"mesid":{"sat":20,"code":3}},{"cn0":206,"mesid":{"sat":5,"code":3}},{"cn0":206,"mesid":{"sat":10,"code":3}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":184,"mesid":{"sat":4,"code":3}},{"cn0":204,"mesid":{"sat":21,"code":3}},{"cn0":171,"mesid":{"sat":9,"code":4}},{"cn0":204,"mesid":{"sat":20,"code":4}},{"cn0":65,"mesid":{"sat":10,"code":4}},{"cn0":199,"mesid":{"sat":11,"code":4}},{"cn0":194,"mesid":{"sat":5,"code":4}},{"cn0":186,"mesid":{"sat":0,"code":4}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":176,"mesid":{"sat":4,"code":4}},{"cn0":200,"mesid":{"sat":35,"code":12}},{"cn0":169,"mesid":{"sat":26,"code":12}},{"cn0":161,"mesid":{"sat":34,"code":12}},{"cn0":189,"mesid":{"sat":24,"code":12}},{"cn0":157,"mesid":{"sat":25,"code":12}},{"cn0":185,"mesid":{"sat":12,"code":12}},{"cn0":184,"mesid":{"sat":19,"code":12}},{"cn0":192,"mesid":{"sat":22,"code":12}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":208,"mesid":{"sat":12,"code":13}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":195,"mesid":{"sat":12,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":193,"mesid":{"sat":25,"code":14}},{"cn0":189,"mesid":{"sat":11,"code":14}},{"cn0":204,"mesid":{"sat":24,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":160,"mesid":{"sat":31,"code":14}},{"cn0":154,"mesid":{"sat":33,"code":14}},{"cn0":201,"mesid":{"sat":25,"code":20}},{"cn0":215,"mesid":{"sat":24,"code":20}},{"cn0":193,"mesid":{"sat":11,"code":20}},{"cn0":172,"mesid":{"sat":31,"code":20}},{"cn0":206,"mesid":{"sat":12,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":170,"mesid":{"sat":33,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}}],"preamble":85,"sender":22963,"msg_type":97,"payload":"BQDWFQC1AgC/HwCnAAAAAAAAGQDbDADPHQDVEgDPAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwLOGQHNDAG7HwGWEgHEHQHDAAAABQHDAAAAAAAAAAAAAAAACwPVCQOxFAOuBQPOCgPOAAAABAO4FQPMCQSrFATMCgRBCwTHBQTCAAS6AAAABASwIwzIGgypIgyhGAy9GQydDAy5Ewy4FgzAAAAADA3QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADA7DAAAAGQ7BCw69GA7MAAAAHw6gIQ6aGRTJGBTXCxTBHxSsDBTOAAAAIRSqAAAA","crc":60393} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"Mggc0i4QAAAAAAE=","wn":2098,"tow":271503900,"crc":28627} +{"length":16,"flags":17,"ns":899999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"ERzSLhDkBwMZAxgt/uikNQ==","day":25,"tow":271503900,"year":2020,"crc":20535,"minutes":24,"month":3,"seconds":45} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.562479248979372,"preamble":85,"sender":22963,"msg_type":522,"payload":"HNIuECbN6N5l6kJAEEe0I1aSXsCIC9uj/o8xwAECWwQPBg==","lat":37.83123384825949,"tow":271503900,"h_accuracy":513,"crc":37637,"lon":-122.28650753598436} +{"v_accuracy":713,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"HNIuEPb///8BAAAAGQAAAPAAyQIPAg==","n":-10,"d":25,"tow":271503900,"h_accuracy":240,"crc":49661,"e":1} +{"length":15,"gdop":155,"flags":6,"tdop":77,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"HNIuEJsAhwBNAEgAcgAG","tow":271503900,"crc":41841,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"HNIuEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271503900,"h_accuracy":0,"crc":32836,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"HNIuEP//","tow":271503900,"crc":30581} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":249,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":214,"i":110562251},"flags":15,"cn0":213,"P":1051964723,"D":{"f":50,"i":-174},"lock":15,"sid":{"sat":5,"code":0}},{"L":{"f":130,"i":121848675},"flags":15,"cn0":180,"P":1159351599,"D":{"f":209,"i":2176},"lock":15,"sid":{"sat":21,"code":0}},{"L":{"f":185,"i":123311067},"flags":15,"cn0":190,"P":1173265439,"D":{"f":235,"i":-2479},"lock":15,"sid":{"sat":2,"code":0}},{"L":{"f":194,"i":128734072},"flags":15,"cn0":166,"P":1224863971,"D":{"f":206,"i":-390},"lock":15,"sid":{"sat":31,"code":0}},{"L":{"f":184,"i":107810956},"flags":15,"cn0":219,"P":1025787090,"D":{"f":19,"i":-1118},"lock":15,"sid":{"sat":25,"code":0}},{"L":{"f":81,"i":114066141},"flags":15,"cn0":206,"P":1085303130,"D":{"f":13,"i":-2963},"lock":15,"sid":{"sat":12,"code":0}},{"L":{"f":158,"i":110777257},"flags":15,"cn0":213,"P":1054010477,"D":{"f":140,"i":1487},"lock":15,"sid":{"sat":29,"code":0}},{"L":{"f":50,"i":84008558},"flags":15,"cn0":205,"P":1025787121,"D":{"f":59,"i":-871},"lock":15,"sid":{"sat":25,"code":1}},{"L":{"f":41,"i":88882739},"flags":15,"cn0":188,"P":1085303061,"D":{"f":194,"i":-2309},"lock":15,"sid":{"sat":12,"code":1}},{"L":{"f":231,"i":100312266},"flags":15,"cn0":150,"P":1224863893,"D":{"f":79,"i":-306},"lock":15,"sid":{"sat":31,"code":1}},{"L":{"f":212,"i":86319942},"flags":15,"cn0":195,"P":1054010395,"D":{"f":205,"i":1158},"lock":15,"sid":{"sat":29,"code":1}},{"L":{"f":75,"i":86152433},"flags":15,"cn0":194,"P":1051964643,"D":{"f":121,"i":-137},"lock":15,"sid":{"sat":5,"code":1}},{"L":{"f":195,"i":112949329},"flags":15,"cn0":213,"P":1056846050,"D":{"f":192,"i":1177},"lock":15,"sid":{"sat":11,"code":3}},{"L":{"f":133,"i":123289054},"flags":15,"cn0":177,"P":1154403653,"D":{"f":103,"i":-4406},"lock":15,"sid":{"sat":9,"code":3}}],"payload":"gNIuEAAAAAAyCEAztbM+ywuXBtZS/zLVDw8FAC9NGkVjQ0MHgoAI0bQPDxUAH5zuRduTWQe5Ufbrvg8PAgDj8AFJeFOsB8J6/s6mDw8fANJEJD2MEG0GuKL7E9sPDxkAWmmwQN2CzAZRbfQNzg8PDABt7NI+qVOaBp7PBYzVDw8dAPFEJD1u3gEFMpn8O80PDxkBFWmwQDM+TAUp+/bCvA8PDAGV8AFJyqT6BefO/k+WDw8fARvs0j5GIyUF1IYEzcMPDx0B47SzPvGUIgVLd/95wg8PBQHiMP4+UXi7BsOZBMDVDw8LA0XNzkTePVkHhcruZ7EPDwkD","header":{"n_obs":64,"t":{"ns_residual":0,"wn":2098,"tow":271504000}},"crc":12493} +{"length":249,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":105,"i":109758232},"flags":15,"cn0":174,"P":1026266770,"D":{"f":16,"i":-1208},"lock":15,"sid":{"sat":20,"code":3}},{"L":{"f":168,"i":114882822},"flags":15,"cn0":206,"P":1074560023,"D":{"f":116,"i":2206},"lock":15,"sid":{"sat":5,"code":3}},{"L":{"f":90,"i":111572492},"flags":15,"cn0":206,"P":1046535402,"D":{"f":10,"i":-3036},"lock":15,"sid":{"sat":10,"code":3}},{"L":{"f":215,"i":120425126},"flags":15,"cn0":184,"P":1124426905,"D":{"f":238,"i":-1307},"lock":15,"sid":{"sat":4,"code":3}},{"L":{"f":91,"i":113436493},"flags":15,"cn0":204,"P":1059915605,"D":{"f":176,"i":1625},"lock":15,"sid":{"sat":21,"code":3}},{"L":{"f":123,"i":95891496},"flags":15,"cn0":172,"P":1154403834,"D":{"f":237,"i":-3428},"lock":15,"sid":{"sat":9,"code":4}},{"L":{"f":210,"i":85367549},"flags":15,"cn0":204,"P":1026267156,"D":{"f":42,"i":-940},"lock":15,"sid":{"sat":20,"code":4}},{"L":{"f":10,"i":87849489},"flags":15,"cn0":199,"P":1056846326,"D":{"f":115,"i":915},"lock":15,"sid":{"sat":11,"code":4}},{"L":{"f":79,"i":89353310},"flags":15,"cn0":194,"P":1074560317,"D":{"f":56,"i":1717},"lock":15,"sid":{"sat":5,"code":4}},{"L":{"f":198,"i":93663977},"flags":15,"cn0":176,"P":1124427045,"D":{"f":144,"i":-1016},"lock":15,"sid":{"sat":4,"code":4}},{"L":{"f":91,"i":121564567},"flags":15,"cn0":200,"P":1167259556,"D":{"f":245,"i":-1498},"lock":15,"sid":{"sat":35,"code":12}},{"L":{"f":104,"i":129181049},"flags":15,"cn0":169,"P":1240393159,"D":{"f":94,"i":-3008},"lock":15,"sid":{"sat":26,"code":12}},{"L":{"f":32,"i":132969099},"flags":15,"cn0":161,"P":1276765648,"D":{"f":47,"i":2249},"lock":15,"sid":{"sat":34,"code":12}},{"L":{"f":199,"i":125137987},"flags":15,"cn0":189,"P":1201571756,"D":{"f":69,"i":-1297},"lock":15,"sid":{"sat":24,"code":12}}],"payload":"gNIuEAAAAAAyCEGSlis9GMeKBmlI+xCuDw8UAxd8DEAG+dgGqJ4IdM4PDwUD6txgPgx2pgZaJPQKzg8PCgOZZAVDpootB9fl+u64Dw8EA1UHLT9N58IGW1kGsMwPDxUD+s3ORCgwtwV7nPLtrA8PCQQUmCs9/ZoWBdJU/CrMDw8UBPYx/j4RejwFCpMDc8cPDwsEPX0MQF5sUwVPtQY4wg8PBQQlZQVD6TKVBcYI/JCwDw8EBKT3kkWX7T4HWyb69cgPDyMMx+XuSXklswdoQPReqQ8PGgzQ5RlMi/LsByDJCC+hDw8iDKyHnkdDdHUHx+/6Rb0PDxgM","header":{"n_obs":65,"t":{"ns_residual":0,"wn":2098,"tow":271504000}},"crc":44911} +{"length":249,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":185,"i":134685799},"flags":15,"cn0":157,"P":1293249574,"D":{"f":62,"i":1331},"lock":15,"sid":{"sat":25,"code":12}},{"L":{"f":147,"i":121116513},"flags":15,"cn0":185,"P":1162957636,"D":{"f":235,"i":1614},"lock":15,"sid":{"sat":12,"code":12}},{"L":{"f":182,"i":124512023},"flags":15,"cn0":184,"P":1195561214,"D":{"f":142,"i":-283},"lock":15,"sid":{"sat":19,"code":12}},{"L":{"f":63,"i":124728920},"flags":15,"cn0":192,"P":1197643885,"D":{"f":182,"i":2391},"lock":15,"sid":{"sat":22,"code":12}},{"L":{"f":154,"i":93654979},"flags":15,"cn0":208,"P":1162957547,"D":{"f":203,"i":1247},"lock":15,"sid":{"sat":12,"code":13}},{"L":{"f":112,"i":116415637},"flags":15,"cn0":195,"P":1107657941,"D":{"f":109,"i":-1026},"lock":15,"sid":{"sat":12,"code":14}},{"L":{"f":248,"i":132485944},"flags":15,"cn0":193,"P":1260561781,"D":{"f":69,"i":1095},"lock":15,"sid":{"sat":25,"code":14}},{"L":{"f":219,"i":125433229},"flags":15,"cn0":189,"P":1193457451,"D":{"f":24,"i":1051},"lock":15,"sid":{"sat":11,"code":14}},{"L":{"f":98,"i":118396259},"flags":15,"cn0":205,"P":1126502832,"D":{"f":131,"i":-1740},"lock":15,"sid":{"sat":24,"code":14}},{"L":{"f":171,"i":143289275},"flags":15,"cn0":161,"P":1363352138,"D":{"f":230,"i":-3171},"lock":15,"sid":{"sat":31,"code":14}},{"L":{"f":180,"i":144502499},"flags":15,"cn0":154,"P":1374895565,"D":{"f":245,"i":-2145},"lock":15,"sid":{"sat":33,"code":14}},{"L":{"f":255,"i":101515202},"flags":15,"cn0":201,"P":1260561748,"D":{"f":160,"i":838},"lock":15,"sid":{"sat":25,"code":20}},{"L":{"f":75,"i":90719275},"flags":15,"cn0":215,"P":1126503366,"D":{"f":220,"i":-1334},"lock":15,"sid":{"sat":24,"code":20}},{"L":{"f":246,"i":96111153},"flags":15,"cn0":194,"P":1193457257,"D":{"f":4,"i":804},"lock":15,"sid":{"sat":11,"code":20}}],"payload":"gNIuEAAAAAAyCEImbBVNZyQHCLkzBT6dDw8ZDERTUUVhFzgHk04G67kPDwwM/tBCRxfnawe25f6OuA8PEwxtmGJHWDZvBz9XCbbADw8WDOtSUUXDD5UFmt8Ey9APDwwN1YQFQpVc8AZw/vttww8PDA51pSJLOJPlB/hHBEXBDw8ZDiu3IkeN9XkH2xsEGL0PDwsOsBElQ2OVDgdiNPmDzQ8PGA5KGkNRu2uKCKud8+ahDw8fDs0981Hj7pwItJ/39ZoPDyEOVKUiS8L/DAb/RgOgyQ8PGRTGEyVDK0RoBUvK+tzXDw8YFGm2IkcxiroF9iQDBMIPDwsU","header":{"n_obs":66,"t":{"ns_residual":0,"wn":2098,"tow":271504000}},"crc":63141} +{"length":62,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":222,"i":109793122},"flags":15,"cn0":173,"P":1363352170,"D":{"f":226,"i":-2430},"lock":15,"sid":{"sat":31,"code":20}},{"L":{"f":238,"i":89201622},"flags":15,"cn0":206,"P":1107657783,"D":{"f":236,"i":-786},"lock":15,"sid":{"sat":12,"code":20}},{"L":{"f":25,"i":110722765},"flags":15,"cn0":170,"P":1374895533,"D":{"f":88,"i":-1640},"lock":15,"sid":{"sat":33,"code":20}}],"payload":"gNIuEAAAAAAyCENqGkNRYk+LBt6C9uKtDw8fFDeEBULWG1EF7u787M4PDwwUrT3zUc1+mQYZmPlYqg8PIRQ=","header":{"n_obs":67,"t":{"ns_residual":0,"wn":2098,"tow":271504000}},"crc":265} +{"length":9,"l2ca_bias":0,"preamble":85,"l2p_bias":0,"sender":22963,"msg_type":117,"payload":"/wAAAAAAAAAA","l1ca_bias":0,"mask":255,"crc":49809,"l1p_bias":0} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgiA0i4QAAAAAAE=","wn":2098,"tow":271504000,"crc":13967} +{"length":16,"flags":17,"ns":999999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EYDSLhDkBwMZAxgt/smaOw==","day":25,"tow":271504000,"year":2020,"crc":33018,"minutes":24,"month":3,"seconds":45} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.56295355014469,"preamble":85,"sender":22963,"msg_type":522,"payload":"gNIuEHWrBN9l6kJA3PywI1aSXsDeCU+5HZAxwAECWwQPBg==","lat":37.83123386123672,"tow":271504000,"h_accuracy":513,"crc":50172,"lon":-122.28650753292044} +{"v_accuracy":713,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"gNIuEP//////////2/////AAyQIPAg==","n":-1,"d":-37,"tow":271504000,"h_accuracy":240,"crc":40391,"e":-1} +{"length":15,"gdop":155,"flags":6,"tdop":77,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"gNIuEJsAhwBNAEgAcgAG","tow":271504000,"crc":1310,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"gNIuEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271504000,"h_accuracy":0,"crc":32373,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"gNIuEP//","tow":271504000,"crc":45618} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":4,"flags":2147616000,"preamble":85,"sender":22963,"msg_type":65535,"payload":"AAUCgA==","crc":40942} +{"length":24,"z":3890655.0240602265,"preamble":85,"sender":22963,"msg_type":72,"payload":"UO0a3iqORMHK1UJhIkRQwc9nFIPvrk1B","crc":2168,"x":-2694229.735196747,"y":-4264073.519704292} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"bWFpbgAAAAAAAAAAAAAAAAAAAAAAAAx1AAA=","name":"main\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":47991,"stack_free":29964,"cpu":0} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"aWRsZQAAAAAAAAAAAAAAAAAAAABbAXwAAAA=","name":"idle\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":23863,"stack_free":124,"cpu":347} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"cnBtc2cAAAAAAAAAAAAAAAAAAAABANwNAAA=","name":"rpmsg\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":58151,"stack_free":3548,"cpu":1} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"U0JQAAAAAAAAAAAAAAAAAAAAAAAAAPz/AAA=","name":"SBP\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":51784,"stack_free":65532,"cpu":0} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"TkFQAAAAAAAAAAAAAAAAAAAAAAAAAASAAAA=","name":"NAP\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":33651,"stack_free":32772,"cpu":0} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"bWFuYWdlIFBWAAAAAAAAAAAAAAAAACQEAAA=","name":"manage PV\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":29877,"stack_free":1060,"cpu":0} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"SU1VAAAAAAAAAAAAAAAAAAAAAAAAAPQHAAA=","name":"IMU\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":14252,"stack_free":2036,"cpu":0} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"SU1VIGF1eAAAAAAAAAAAAAAAAAAAAEwIAAA=","name":"IMU aux\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":18976,"stack_free":2124,"cpu":0} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"bmRiAAAAAAAAAAAAAAAAAAAAAAAAAFAMAAA=","name":"ndb\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":26120,"stack_free":3152,"cpu":0} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"TkFQIFRyYWNraW5nAAAAAAAAAAAjAdR3AAA=","name":"NAP Tracking\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":58848,"stack_free":30676,"cpu":291} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"ZGVjb2RlAAAAAAAAAAAAAAAAAAAIANQGAAA=","name":"decode\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":40082,"stack_free":1748,"cpu":8} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"bWFuYWdlIGFjcQAAAAAAAAAAAAC7AKR3AAA=","name":"manage acq\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":54128,"stack_free":30628,"cpu":187} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"c3lzdGVtIG1vbml0b3IAAAAAAAAAACwGAAA=","name":"system monitor\u0000\u0000\u0000\u0000\u0000\u0000","crc":58531,"stack_free":1580,"cpu":0} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"V2F0Y2hkb2cAAAAAAAAAAAAAAAAAAOQDAAA=","name":"Watchdog\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":44438,"stack_free":996,"cpu":0} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"c3RhcmxpbmcAAAAAAAAAAAAAAACYAPz/AAA=","name":"starling\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":28732,"stack_free":65532,"cpu":152} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"bWVfY2FsY19wdnQAAAAAAAAAAAAJAIwjAAA=","name":"me_calc_pvt\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":57561,"stack_free":9100,"cpu":9} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"UFBTAAAAAAAAAAAAAAAAAAAAAAAAAEgHAAA=","name":"PPS\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":38576,"stack_free":1864,"cpu":0} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"c3BlY3RydW0gYW5hbHl6ZXIAAAAAANQPAAA=","name":"spectrum analyzer\u0000\u0000\u0000","crc":50933,"stack_free":4052,"cpu":0} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"Mgjk0i4QAAAAAAE=","wn":2098,"tow":271504100,"crc":21061} +{"length":16,"flags":17,"ns":99999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EeTSLhDkBwMZAxgu/uD1BQ==","day":25,"tow":271504100,"year":2020,"crc":38489,"minutes":24,"month":3,"seconds":46} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.57094821989053,"preamble":85,"sender":22963,"msg_type":522,"payload":"5NIuEB7PBt9l6kJAj1OeI1aSXsClI5ypKZIxwAECWwQPBg==","lat":37.83123386223291,"tow":271504100,"h_accuracy":513,"crc":27957,"lon":-122.28650751554072} +{"v_accuracy":713,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"5NIuEP7///8KAAAADwAAAPAAyQIPAg==","n":-2,"d":15,"tow":271504100,"h_accuracy":240,"crc":22516,"e":10} +{"length":15,"gdop":155,"flags":6,"tdop":77,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"5NIuEJsAhwBNAEgAcgAG","tow":271504100,"crc":10673,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"5NIuEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271504100,"h_accuracy":0,"crc":26307,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"5NIuEP//","tow":271504100,"crc":60299} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":51,"text":"GLO L2OF ME 1 [+1204ms] low CN0 too long, dropping","preamble":85,"sender":22963,"msg_type":1025,"payload":"BkdMTyBMMk9GIE1FIDEgWysxMjA0bXNdIGxvdyBDTjAgdG9vIGxvbmcsIGRyb3BwaW5n","crc":27804,"level":6} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MghI0y4QAAAAAAE=","wn":2098,"tow":271504200,"crc":47304} +{"length":16,"flags":17,"ns":199999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EUjTLhDkBwMZAxgu/sHrCw==","day":25,"tow":271504200,"year":2020,"crc":59533,"minutes":24,"month":3,"seconds":46} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.580039015422997,"preamble":85,"sender":22963,"msg_type":522,"payload":"SNMuEEfmHt9l6kJAvrSaI1aSXsBUpdlvfZQxwAECWwQPBg==","lat":37.831233873450905,"tow":271504200,"h_accuracy":513,"crc":54181,"lon":-122.28650751216898} +{"v_accuracy":713,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"SNMuEAwAAAACAAAAHgAAAPAAyQIPAg==","n":12,"d":30,"tow":271504200,"h_accuracy":240,"crc":25912,"e":2} +{"length":15,"gdop":155,"flags":6,"tdop":77,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"SNMuEJsAhwBNAEgAcgAG","tow":271504200,"crc":10017,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"SNMuEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271504200,"h_accuracy":0,"crc":39663,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"SNMuEP//","tow":271504200,"crc":43793} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"Mgis0y4QAAAAAAE=","wn":2098,"tow":271504300,"crc":25520} +{"length":16,"flags":17,"ns":299999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EazTLhDkBwMZAxgu/qLhEQ==","day":25,"tow":271504300,"year":2020,"crc":3771,"minutes":24,"month":3,"seconds":46} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.585568107752252,"preamble":85,"sender":22963,"msg_type":522,"payload":"rNMuEMGoFd9l6kJAC/igI1aSXsBkYKDK55UxwAECWwQPBg==","lat":37.83123386914804,"tow":271504300,"h_accuracy":513,"crc":59944,"lon":-122.28650751800176} +{"v_accuracy":713,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"rNMuEPX////7////9v////AAyQIPAg==","n":-11,"d":-10,"tow":271504300,"h_accuracy":240,"crc":38593,"e":-5} +{"length":15,"gdop":155,"flags":6,"tdop":77,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"rNMuEJsAhwBNAEgAcgAG","tow":271504300,"crc":24476,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"rNMuEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271504300,"h_accuracy":0,"crc":14540,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"rNMuEP//","tow":271504300,"crc":9864} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":237,"states":[{"cn0":213,"mesid":{"sat":5,"code":0}},{"cn0":180,"mesid":{"sat":21,"code":0}},{"cn0":190,"mesid":{"sat":2,"code":0}},{"cn0":166,"mesid":{"sat":31,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":218,"mesid":{"sat":25,"code":0}},{"cn0":206,"mesid":{"sat":12,"code":0}},{"cn0":212,"mesid":{"sat":29,"code":0}},{"cn0":206,"mesid":{"sat":18,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":205,"mesid":{"sat":131,"code":2}},{"cn0":205,"mesid":{"sat":25,"code":1}},{"cn0":187,"mesid":{"sat":12,"code":1}},{"cn0":151,"mesid":{"sat":31,"code":1}},{"cn0":195,"mesid":{"sat":18,"code":1}},{"cn0":195,"mesid":{"sat":29,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":194,"mesid":{"sat":5,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":213,"mesid":{"sat":100,"code":3}},{"cn0":177,"mesid":{"sat":98,"code":3}},{"cn0":173,"mesid":{"sat":102,"code":3}},{"cn0":206,"mesid":{"sat":101,"code":3}},{"cn0":206,"mesid":{"sat":93,"code":3}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":184,"mesid":{"sat":106,"code":3}},{"cn0":204,"mesid":{"sat":104,"code":3}},{"cn0":171,"mesid":{"sat":98,"code":4}},{"cn0":204,"mesid":{"sat":102,"code":4}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":199,"mesid":{"sat":100,"code":4}},{"cn0":195,"mesid":{"sat":101,"code":4}},{"cn0":186,"mesid":{"sat":104,"code":4}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":176,"mesid":{"sat":106,"code":4}},{"cn0":200,"mesid":{"sat":35,"code":12}},{"cn0":168,"mesid":{"sat":26,"code":12}},{"cn0":160,"mesid":{"sat":34,"code":12}},{"cn0":189,"mesid":{"sat":24,"code":12}},{"cn0":156,"mesid":{"sat":25,"code":12}},{"cn0":185,"mesid":{"sat":12,"code":12}},{"cn0":184,"mesid":{"sat":19,"code":12}},{"cn0":192,"mesid":{"sat":22,"code":12}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":208,"mesid":{"sat":12,"code":13}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":195,"mesid":{"sat":12,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":193,"mesid":{"sat":25,"code":14}},{"cn0":189,"mesid":{"sat":11,"code":14}},{"cn0":204,"mesid":{"sat":24,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":161,"mesid":{"sat":31,"code":14}},{"cn0":154,"mesid":{"sat":33,"code":14}},{"cn0":201,"mesid":{"sat":25,"code":20}},{"cn0":215,"mesid":{"sat":24,"code":20}},{"cn0":193,"mesid":{"sat":11,"code":20}},{"cn0":173,"mesid":{"sat":31,"code":20}},{"cn0":207,"mesid":{"sat":12,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":170,"mesid":{"sat":33,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}}],"preamble":85,"sender":22963,"msg_type":97,"payload":"BQDVFQC0AgC+HwCmAAAAAAAAGQDaDADOHQDUEgDOAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwLNGQHNDAG7HwGXEgHDHQHDAAAABQHCAAAAAAAAAAAAAAAAZAPVYgOxZgOtZQPOXQPOAAAAagO4aAPMYgSrZgTMAAAAZATHZQTDaAS6AAAAagSwIwzIGgyoIgygGAy9GQycDAy5Ewy4FgzAAAAADA3QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADA7DAAAAGQ7BCw69GA7MAAAAHw6hIQ6aGRTJGBTXCxTBHxStDBTPAAAAIRSqAAAA","crc":54568} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MggQ1C4QAAAAAAE=","wn":2098,"tow":271504400,"crc":23048} +{"length":16,"flags":17,"ns":399999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"ERDULhDkBwMZAxgu/oPXFw==","day":25,"tow":271504400,"year":2020,"crc":15301,"minutes":24,"month":3,"seconds":46} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.593053732215726,"preamble":85,"sender":22963,"msg_type":522,"payload":"ENQuEB0sLd9l6kJABTmYI1aSXsAlo5Be0pcxwAECWwQPBg==","lat":37.831233880097194,"tow":271504400,"h_accuracy":513,"crc":46816,"lon":-122.28650750985624} +{"v_accuracy":713,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"ENQuEAMAAAAFAAAAEgAAAPAAyQIPAg==","n":3,"d":18,"tow":271504400,"h_accuracy":240,"crc":52421,"e":5} +{"length":15,"gdop":155,"flags":6,"tdop":77,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"ENQuEJsAhwBNAEgAcgAG","tow":271504400,"crc":5345,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"ENQuEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271504400,"h_accuracy":0,"crc":42448,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"ENQuEP//","tow":271504400,"crc":45331} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":9,"l2ca_bias":0,"preamble":85,"l2p_bias":0,"sender":22963,"msg_type":117,"payload":"/wAAAAAAAAAA","l1ca_bias":0,"mask":255,"crc":49809,"l1p_bias":0} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"Mgh01C4QAAAAAAE=","wn":2098,"tow":271504500,"crc":16066} +{"length":16,"flags":17,"ns":499999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EXTULhDkBwMZAxgu/mTNHQ==","day":25,"tow":271504500,"year":2020,"crc":32569,"minutes":24,"month":3,"seconds":46} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.59815145578314,"preamble":85,"sender":22963,"msg_type":522,"payload":"dNQuEEqeN99l6kJAxSGPI1aSXsC0pCx0IJkxwAECWwQPBg==","lat":37.83123388496149,"tow":271504500,"h_accuracy":513,"crc":39867,"lon":-122.28650750138975} +{"v_accuracy":713,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"dNQuEP////8DAAAA/P////AAyQIPAg==","n":-1,"d":-4,"tow":271504500,"h_accuracy":240,"crc":56083,"e":3} +{"length":15,"gdop":155,"flags":6,"tdop":77,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"dNQuEJsAhwBNAEgAcgAG","tow":271504500,"crc":14414,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"dNQuEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271504500,"h_accuracy":0,"crc":48486,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"dNQuEP//","tow":271504500,"crc":59562} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgjY1C4QAAAAAAE=","wn":2098,"tow":271504600,"crc":37788} +{"length":16,"flags":17,"ns":599999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EdjULhDkBwMZAxgu/kXDIw==","day":25,"tow":271504600,"year":2020,"crc":20396,"minutes":24,"month":3,"seconds":46} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.605567012562894,"preamble":85,"sender":22963,"msg_type":522,"payload":"2NQuEMunJt9l6kJAkZCII1aSXsB6fpJwBpsxwAECWwQPBg==","lat":37.83123387706254,"tow":271504600,"h_accuracy":513,"crc":5725,"lon":-122.28650749527357} +{"v_accuracy":713,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"2NQuEPn///8AAAAAFwAAAPAAyQIPAg==","n":-7,"d":23,"tow":271504600,"h_accuracy":240,"crc":38442,"e":0} +{"length":15,"gdop":155,"flags":6,"tdop":77,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"2NQuEJsAhwBNAEgAcgAG","tow":271504600,"crc":19903,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"2NQuEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271504600,"h_accuracy":0,"crc":38076,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"2NQuEP//","tow":271504600,"crc":609} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"message_type":2,"length":34,"data":[23,255,0,7,255,0,47,254,0,7,255,127,255,255,127,247,255,255,240,2,229,231,85,238,110,229,112],"preamble":85,"sender":22963,"msg_type":30583,"payload":"gwJd1C4QAhf/AAf/AC/+AAf/f///f/f///AC5edV7m7lcA==","tow":271504477,"crc":55465,"sid":{"sat":131,"code":2}} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"Mgg81S4QAAAAAAE=","wn":2098,"tow":271504700,"crc":3895} +{"length":16,"flags":17,"ns":699999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"ETzVLhDkBwMZAxgu/ia5KQ==","day":25,"tow":271504700,"year":2020,"crc":51347,"minutes":24,"month":3,"seconds":46} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.60941779587296,"preamble":85,"sender":22963,"msg_type":522,"payload":"PNUuEGucf99l6kJAHxl0I1aSXsDx3/7NApwxwAECWwQPBg==","lat":37.8312339184857,"tow":271504700,"h_accuracy":513,"crc":57778,"lon":-122.28650747621258} +{"v_accuracy":713,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"PNUuEAwAAAD9////5f////AAyQIPAg==","n":12,"d":-27,"tow":271504700,"h_accuracy":240,"crc":19487,"e":-3} +{"length":15,"gdop":155,"flags":6,"tdop":77,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"PNUuEJsAhwBNAEgAcgAG","tow":271504700,"crc":20067,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"PNUuEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271504700,"h_accuracy":0,"crc":58217,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"PNUuEP//","tow":271504700,"crc":9641} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":136,"preamble":85,"sender":22963,"msg_type":151,"payload":"AgAaHgUALDUMAFEtFQB9GRkAbUYaAKEBHQChNx8AlQ4EAxYWBQMyIQYDTggJA18OCgNxKQsDmCUMA6oDEwMiBxQDCzEVA5UlDAyUKRMMIyAUDA8CFgxDIxgMgiMZDJ0OGgxnFR0MLAAiDI4RIwwiLQsOizIMDg88GA5sNhkOlykfDlURIQ4fDw==","crc":41336,"azel":[{"el":30,"az":26,"sid":{"sat":2,"code":0}},{"el":53,"az":44,"sid":{"sat":5,"code":0}},{"el":45,"az":81,"sid":{"sat":12,"code":0}},{"el":25,"az":125,"sid":{"sat":21,"code":0}},{"el":70,"az":109,"sid":{"sat":25,"code":0}},{"el":1,"az":161,"sid":{"sat":26,"code":0}},{"el":55,"az":161,"sid":{"sat":29,"code":0}},{"el":14,"az":149,"sid":{"sat":31,"code":0}},{"el":22,"az":22,"sid":{"sat":4,"code":3}},{"el":33,"az":50,"sid":{"sat":5,"code":3}},{"el":8,"az":78,"sid":{"sat":6,"code":3}},{"el":14,"az":95,"sid":{"sat":9,"code":3}},{"el":41,"az":113,"sid":{"sat":10,"code":3}},{"el":37,"az":152,"sid":{"sat":11,"code":3}},{"el":3,"az":170,"sid":{"sat":12,"code":3}},{"el":7,"az":34,"sid":{"sat":19,"code":3}},{"el":49,"az":11,"sid":{"sat":20,"code":3}},{"el":37,"az":149,"sid":{"sat":21,"code":3}},{"el":41,"az":148,"sid":{"sat":12,"code":12}},{"el":32,"az":35,"sid":{"sat":19,"code":12}},{"el":2,"az":15,"sid":{"sat":20,"code":12}},{"el":35,"az":67,"sid":{"sat":22,"code":12}},{"el":35,"az":130,"sid":{"sat":24,"code":12}},{"el":14,"az":157,"sid":{"sat":25,"code":12}},{"el":21,"az":103,"sid":{"sat":26,"code":12}},{"el":0,"az":44,"sid":{"sat":29,"code":12}},{"el":17,"az":142,"sid":{"sat":34,"code":12}},{"el":45,"az":34,"sid":{"sat":35,"code":12}},{"el":50,"az":139,"sid":{"sat":11,"code":14}},{"el":60,"az":15,"sid":{"sat":12,"code":14}},{"el":54,"az":108,"sid":{"sat":24,"code":14}},{"el":41,"az":151,"sid":{"sat":25,"code":14}},{"el":17,"az":85,"sid":{"sat":31,"code":14}},{"el":15,"az":31,"sid":{"sat":33,"code":14}}]} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"Mgig1S4QAAAAAAE=","wn":2098,"tow":271504800,"crc":22123} +{"length":16,"flags":17,"ns":799999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EaDVLhDkBwMZAxgu/gevLw==","day":25,"tow":271504800,"year":2020,"crc":5657,"minutes":24,"month":3,"seconds":46} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.618508959319357,"preamble":85,"sender":22963,"msg_type":522,"payload":"oNUuEDcN0N9l6kJAoE9KI1aSXsBEj2iaVp4xwAECWwQPBg==","lat":37.83123395594378,"tow":271504800,"h_accuracy":513,"crc":45916,"lon":-122.28650743729531} +{"v_accuracy":713,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"oNUuEAUAAAABAAAAHQAAAPAAyQIPAg==","n":5,"d":29,"tow":271504800,"h_accuracy":240,"crc":57277,"e":1} +{"length":15,"gdop":155,"flags":6,"tdop":77,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"oNUuEJsAhwBNAEgAcgAG","tow":271504800,"crc":59404,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"oNUuEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271504800,"h_accuracy":0,"crc":7512,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"oNUuEP//","tow":271504800,"crc":57582} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":237,"states":[{"cn0":213,"mesid":{"sat":5,"code":0}},{"cn0":180,"mesid":{"sat":21,"code":0}},{"cn0":189,"mesid":{"sat":2,"code":0}},{"cn0":166,"mesid":{"sat":31,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":218,"mesid":{"sat":25,"code":0}},{"cn0":206,"mesid":{"sat":12,"code":0}},{"cn0":212,"mesid":{"sat":29,"code":0}},{"cn0":206,"mesid":{"sat":18,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":205,"mesid":{"sat":131,"code":2}},{"cn0":205,"mesid":{"sat":25,"code":1}},{"cn0":188,"mesid":{"sat":12,"code":1}},{"cn0":151,"mesid":{"sat":31,"code":1}},{"cn0":195,"mesid":{"sat":18,"code":1}},{"cn0":195,"mesid":{"sat":29,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":194,"mesid":{"sat":5,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":213,"mesid":{"sat":11,"code":3}},{"cn0":176,"mesid":{"sat":9,"code":3}},{"cn0":172,"mesid":{"sat":20,"code":3}},{"cn0":206,"mesid":{"sat":5,"code":3}},{"cn0":206,"mesid":{"sat":10,"code":3}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":183,"mesid":{"sat":4,"code":3}},{"cn0":203,"mesid":{"sat":21,"code":3}},{"cn0":171,"mesid":{"sat":9,"code":4}},{"cn0":204,"mesid":{"sat":20,"code":4}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":199,"mesid":{"sat":11,"code":4}},{"cn0":194,"mesid":{"sat":5,"code":4}},{"cn0":186,"mesid":{"sat":0,"code":4}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":176,"mesid":{"sat":4,"code":4}},{"cn0":200,"mesid":{"sat":35,"code":12}},{"cn0":168,"mesid":{"sat":26,"code":12}},{"cn0":161,"mesid":{"sat":34,"code":12}},{"cn0":189,"mesid":{"sat":24,"code":12}},{"cn0":156,"mesid":{"sat":25,"code":12}},{"cn0":185,"mesid":{"sat":12,"code":12}},{"cn0":184,"mesid":{"sat":19,"code":12}},{"cn0":191,"mesid":{"sat":22,"code":12}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":207,"mesid":{"sat":12,"code":13}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":195,"mesid":{"sat":12,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":192,"mesid":{"sat":25,"code":14}},{"cn0":189,"mesid":{"sat":11,"code":14}},{"cn0":204,"mesid":{"sat":24,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":160,"mesid":{"sat":31,"code":14}},{"cn0":154,"mesid":{"sat":33,"code":14}},{"cn0":200,"mesid":{"sat":25,"code":20}},{"cn0":215,"mesid":{"sat":24,"code":20}},{"cn0":193,"mesid":{"sat":11,"code":20}},{"cn0":173,"mesid":{"sat":31,"code":20}},{"cn0":207,"mesid":{"sat":12,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":170,"mesid":{"sat":33,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}}],"preamble":85,"sender":22963,"msg_type":97,"payload":"BQDVFQC0AgC9HwCmAAAAAAAAGQDaDADOHQDUEgDOAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwLNGQHNDAG8HwGXEgHDHQHDAAAABQHCAAAAAAAAAAAAAAAACwPVCQOwFAOsBQPOCgPOAAAABAO3FQPLCQSrFATMAAAACwTHBQTCAAS6AAAABASwIwzIGgyoIgyhGAy9GQycDAy5Ewy4Fgy/AAAADA3PAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADA7DAAAAGQ7ACw69GA7MAAAAHw6gIQ6aGRTIGBTXCxTBHxStDBTPAAAAIRSqAAAA","crc":44572} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MggE1i4QAAAAAAE=","wn":2098,"tow":271504900,"crc":6847} +{"length":16,"flags":17,"ns":899999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EQTWLhDkBwMZAxgu/uikNQ==","day":25,"tow":271504900,"year":2020,"crc":10895,"minutes":24,"month":3,"seconds":46} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.622473991012193,"preamble":85,"sender":22963,"msg_type":522,"payload":"BNYuEDBrAOBl6kJAXWcTI1aSXsAKApp0Wp8xwAECWwQPBg==","lat":37.83123397846646,"tow":271504900,"h_accuracy":513,"crc":24508,"lon":-122.28650738615893} +{"v_accuracy":713,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"BNYuEPf///8OAAAAAgAAAPAAyQIPAg==","n":-9,"d":2,"tow":271504900,"h_accuracy":240,"crc":16877,"e":14} +{"length":15,"gdop":155,"flags":6,"tdop":77,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"BNYuEJsAhwBNAEgAcgAG","tow":271504900,"crc":14107,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"BNYuEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271504900,"h_accuracy":0,"crc":1050,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"BNYuEP//","tow":271504900,"crc":59829} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":249,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":122,"i":110562426},"flags":15,"cn0":213,"P":1051966383,"D":{"f":31,"i":-177},"lock":15,"sid":{"sat":5,"code":0}},{"L":{"f":20,"i":121846498},"flags":15,"cn0":180,"P":1159330901,"D":{"f":233,"i":2175},"lock":15,"sid":{"sat":21,"code":0}},{"L":{"f":140,"i":123313545},"flags":15,"cn0":189,"P":1173289006,"D":{"f":162,"i":-2480},"lock":15,"sid":{"sat":2,"code":0}},{"L":{"f":102,"i":128734461},"flags":15,"cn0":166,"P":1224867663,"D":{"f":72,"i":-392},"lock":15,"sid":{"sat":31,"code":0}},{"L":{"f":197,"i":107812075},"flags":15,"cn0":218,"P":1025797736,"D":{"f":119,"i":-1120},"lock":15,"sid":{"sat":25,"code":0}},{"L":{"f":80,"i":114069103},"flags":15,"cn0":205,"P":1085331307,"D":{"f":14,"i":-2963},"lock":15,"sid":{"sat":12,"code":0}},{"L":{"f":37,"i":110775770},"flags":15,"cn0":212,"P":1053996328,"D":{"f":252,"i":1486},"lock":15,"sid":{"sat":29,"code":0}},{"L":{"f":47,"i":84009430},"flags":15,"cn0":205,"P":1025797774,"D":{"f":100,"i":-874},"lock":15,"sid":{"sat":25,"code":1}},{"L":{"f":51,"i":88885047},"flags":15,"cn0":187,"P":1085331244,"D":{"f":255,"i":-2311},"lock":15,"sid":{"sat":12,"code":1}},{"L":{"f":191,"i":100312569},"flags":15,"cn0":150,"P":1224867580,"D":{"f":95,"i":-305},"lock":15,"sid":{"sat":31,"code":1}},{"L":{"f":193,"i":86318783},"flags":15,"cn0":194,"P":1053996242,"D":{"f":244,"i":1156},"lock":15,"sid":{"sat":29,"code":1}},{"L":{"f":97,"i":86152569},"flags":15,"cn0":194,"P":1051966313,"D":{"f":140,"i":-138},"lock":15,"sid":{"sat":5,"code":1}},{"L":{"f":74,"i":112948153},"flags":15,"cn0":213,"P":1056835047,"D":{"f":36,"i":1174},"lock":15,"sid":{"sat":11,"code":3}},{"L":{"f":105,"i":123293460},"flags":15,"cn0":176,"P":1154444940,"D":{"f":10,"i":-4407},"lock":15,"sid":{"sat":9,"code":3}}],"payload":"aNYuEAAAAAAyCECvu7M+egyXBnpP/x/VDw8FAFX8GUXiOkMHFH8I6bQPDxUALvjuRYmdWQeMUPaivQ8PAgBP/wFJ/VSsB2Z4/kimDw8fAGhuJD3rFG0GxaD7d9oPDxkAa9ewQG+OzAZQbfQOzQ8PDAAotdI+2k2aBiXOBfzUDw8dAI5uJD3W4QEFL5b8ZM0PDxkBLNewQDdHTAUz+fb/uw8PDAH8/gFJ+aX6Bb/P/l+WDw8fAdK00j6/HiUFwYQE9MIPDx0BabuzPnmVIgVhdv+Mwg8PBQHnBf4+uXO7BkqWBCTVDw8LA4xuz0QUT1kHacnuCrAPDwkD","header":{"n_obs":64,"t":{"ns_residual":0,"wn":2098,"tow":271505000}},"crc":36578} +{"length":249,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":153,"i":109759439},"flags":15,"cn0":173,"P":1026278081,"D":{"f":41,"i":-1208},"lock":15,"sid":{"sat":20,"code":3}},{"L":{"f":13,"i":114880616},"flags":15,"cn0":206,"P":1074539375,"D":{"f":111,"i":2204},"lock":15,"sid":{"sat":5,"code":3}},{"L":{"f":217,"i":111575528},"flags":15,"cn0":206,"P":1046563901,"D":{"f":59,"i":-3038},"lock":15,"sid":{"sat":10,"code":3}},{"L":{"f":225,"i":120426432},"flags":15,"cn0":183,"P":1124439115,"D":{"f":35,"i":-1308},"lock":15,"sid":{"sat":4,"code":3}},{"L":{"f":134,"i":113434867},"flags":15,"cn0":203,"P":1059900402,"D":{"f":11,"i":1624},"lock":15,"sid":{"sat":21,"code":3}},{"L":{"f":75,"i":95894923},"flags":15,"cn0":171,"P":1154445053,"D":{"f":16,"i":-3425},"lock":15,"sid":{"sat":9,"code":4}},{"L":{"f":192,"i":85368488},"flags":15,"cn0":204,"P":1026278436,"D":{"f":175,"i":-941},"lock":15,"sid":{"sat":20,"code":4}},{"L":{"f":1,"i":87848574},"flags":15,"cn0":199,"P":1056835294,"D":{"f":253,"i":914},"lock":15,"sid":{"sat":11,"code":4}},{"L":{"f":12,"i":89351594},"flags":15,"cn0":194,"P":1074539673,"D":{"f":7,"i":1715},"lock":15,"sid":{"sat":5,"code":4}},{"L":{"f":148,"i":93664993},"flags":15,"cn0":176,"P":1124439222,"D":{"f":143,"i":-1018},"lock":15,"sid":{"sat":4,"code":4}},{"L":{"f":68,"i":121566064},"flags":15,"cn0":200,"P":1167273942,"D":{"f":71,"i":-1498},"lock":15,"sid":{"sat":35,"code":12}},{"L":{"f":186,"i":129184055},"flags":15,"cn0":168,"P":1240422003,"D":{"f":191,"i":-3009},"lock":15,"sid":{"sat":26,"code":12}},{"L":{"f":101,"i":132966849},"flags":15,"cn0":160,"P":1276744041,"D":{"f":66,"i":2248},"lock":15,"sid":{"sat":34,"code":12}},{"L":{"f":72,"i":125139284},"flags":15,"cn0":188,"P":1201584199,"D":{"f":16,"i":-1298},"lock":15,"sid":{"sat":24,"code":12}}],"payload":"aNYuEAAAAAAyCEHBwis9z8uKBplI+ymtDw8UA28rDEBo8NgGDZwIb84PDwUDPUxhPuiBpgbZIvQ7zg8PCgNLlAVDwI8tB+Hk+iO3Dw8EA/LLLD/z4MIGhlgGC8sPDxUD/W7PRIs9twVLn/IQqw8PCQQkxCs9qJ4WBcBT/K/MDw8UBN4G/j5+djwFAZID/ccPDwsEmSwMQKplUwUMswYHwg8PBQS2lAVD4TaVBZQG/I+wDw8EBNYvk0Vw8z4HRCb6R8gPDyMMc1bvSTcxswe6P/S/qA8PGgxpkRlMwensB2XICEKgDw8iDEe4nkdUeXUHSO76ELwPDxgM","header":{"n_obs":65,"t":{"ns_residual":0,"wn":2098,"tow":271505000}},"crc":6752} +{"length":249,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":174,"i":134684468},"flags":15,"cn0":155,"P":1293236794,"D":{"f":146,"i":1329},"lock":15,"sid":{"sat":25,"code":12}},{"L":{"f":207,"i":121114899},"flags":15,"cn0":185,"P":1162942148,"D":{"f":50,"i":1614},"lock":15,"sid":{"sat":12,"code":12}},{"L":{"f":68,"i":124512306},"flags":15,"cn0":184,"P":1195563926,"D":{"f":44,"i":-285},"lock":15,"sid":{"sat":19,"code":12}},{"L":{"f":76,"i":124726528},"flags":15,"cn0":191,"P":1197620914,"D":{"f":250,"i":2390},"lock":15,"sid":{"sat":22,"code":12}},{"L":{"f":189,"i":93653731},"flags":15,"cn0":207,"P":1162942054,"D":{"f":151,"i":1247},"lock":15,"sid":{"sat":12,"code":13}},{"L":{"f":62,"i":116416662},"flags":15,"cn0":195,"P":1107667689,"D":{"f":114,"i":-1027},"lock":15,"sid":{"sat":12,"code":14}},{"L":{"f":26,"i":132484851},"flags":15,"cn0":192,"P":1260551380,"D":{"f":234,"i":1090},"lock":15,"sid":{"sat":25,"code":14}},{"L":{"f":227,"i":125432179},"flags":15,"cn0":189,"P":1193447458,"D":{"f":14,"i":1050},"lock":15,"sid":{"sat":11,"code":14}},{"L":{"f":107,"i":118397998},"flags":15,"cn0":204,"P":1126519375,"D":{"f":43,"i":-1741},"lock":15,"sid":{"sat":24,"code":14}},{"L":{"f":167,"i":143292446},"flags":15,"cn0":160,"P":1363382311,"D":{"f":74,"i":-3172},"lock":15,"sid":{"sat":31,"code":14}},{"L":{"f":55,"i":144504640},"flags":15,"cn0":153,"P":1374915939,"D":{"f":139,"i":-2140},"lock":15,"sid":{"sat":33,"code":14}},{"L":{"f":215,"i":101514364},"flags":15,"cn0":200,"P":1260551338,"D":{"f":252,"i":837},"lock":15,"sid":{"sat":25,"code":20}},{"L":{"f":206,"i":90720607},"flags":15,"cn0":215,"P":1126519912,"D":{"f":158,"i":-1334},"lock":15,"sid":{"sat":24,"code":20}},{"L":{"f":109,"i":96110349},"flags":15,"cn0":194,"P":1193447267,"D":{"f":210,"i":801},"lock":15,"sid":{"sat":11,"code":20}}],"payload":"aNYuEAAAAAAyCEI6OhVNNB8HCK4xBZKbDw8ZDMQWUUUTETgHz04GMrkPDwwMlttCRzLoawdE4/4suA8PEwyyPmJHAC1vB0xWCfq/Dw8WDGYWUUXjCpUFvd8El88PDwwN6aoFQpZg8AY+/ftyww8PDA7UfCJL847lBxpCBOrADw8ZDiKQIkdz8XkH4xoEDr0PDwsOT1IlQy6cDgdrM/krzA8PGA4nkENRHniKCKec80qgDw8fDmON81FA95wIN6T3i5kPDyEOqnwiS3z8DAbXRQP8yA8PGRRoVCVDX0loBc7K+p7XDw8YFGOPIkcNh7oFbSED0sIPDwsU","header":{"n_obs":66,"t":{"ns_residual":0,"wn":2098,"tow":271505000}},"crc":26445} +{"length":62,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":147,"i":109795552},"flags":15,"cn0":173,"P":1363382345,"D":{"f":251,"i":-2433},"lock":15,"sid":{"sat":31,"code":20}},{"L":{"f":42,"i":89202408},"flags":15,"cn0":207,"P":1107667531,"D":{"f":1,"i":-786},"lock":15,"sid":{"sat":12,"code":20}},{"L":{"f":51,"i":110724405},"flags":15,"cn0":170,"P":1374915894,"D":{"f":117,"i":-1640},"lock":15,"sid":{"sat":33,"code":20}}],"payload":"aNYuEAAAAAAyCENJkENR4FiLBpN/9vutDw8fFEuqBULoHlEFKu78Ac8PDwwUNo3zUTWFmQYzmPl1qg8PIRQ=","header":{"n_obs":67,"t":{"ns_residual":0,"wn":2098,"tow":271505000}},"crc":6758} +{"length":9,"l2ca_bias":0,"preamble":85,"l2p_bias":0,"sender":22963,"msg_type":117,"payload":"/wAAAAAAAAAA","l1ca_bias":0,"mask":255,"crc":49809,"l1p_bias":0} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"Mgho1i4QAAAAAAE=","wn":2098,"tow":271505000,"crc":22410} +{"length":16,"flags":17,"ns":999999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EWjWLhDkBwMZAxgu/smaOw==","day":25,"tow":271505000,"year":2020,"crc":22471,"minutes":24,"month":3,"seconds":46} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.622954413295457,"preamble":85,"sender":22963,"msg_type":522,"payload":"aNYuEEg8TeBl6kJAdNPwIlaSXsC7AMDweZ8xwAECWwQPBg==","lat":37.831234014237054,"tow":271505000,"h_accuracy":513,"crc":32103,"lon":-122.28650735395587} +{"v_accuracy":713,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"aNYuEAMAAAD4/////P////EAyQIPAg==","n":3,"d":-4,"tow":271505000,"h_accuracy":241,"crc":40511,"e":-8} +{"length":15,"gdop":155,"flags":6,"tdop":77,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"aNYuEJsAhwBNAEgAcgAG","tow":271505000,"crc":15601,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"aNYuEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271505000,"h_accuracy":0,"crc":16911,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"aNYuEP//","tow":271505000,"crc":48462} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":4,"flags":2147616000,"preamble":85,"sender":22963,"msg_type":65535,"payload":"AAUCgA==","crc":40942} +{"length":24,"z":3890655.0240602265,"preamble":85,"sender":22963,"msg_type":72,"payload":"UO0a3iqORMHK1UJhIkRQwc9nFIPvrk1B","crc":2168,"x":-2694229.735196747,"y":-4264073.519704292} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgjM1i4QAAAAAAE=","wn":2098,"tow":271505100,"crc":54059} +{"length":16,"flags":17,"ns":99999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EczWLhDkBwMZAxgv/uD1BQ==","day":25,"tow":271505100,"year":2020,"crc":31740,"minutes":24,"month":3,"seconds":47} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.62163807472333,"preamble":85,"sender":22963,"msg_type":522,"payload":"zNYuEONvr+Bl6kJAgSHNIlaSXsCW4kCsI58xwAECWwQPBg==","lat":37.83123405996573,"tow":271505100,"h_accuracy":513,"crc":65188,"lon":-122.2865073207122} +{"v_accuracy":713,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"zNYuEAEAAAACAAAA9f////EAyQIPAg==","n":1,"d":-11,"tow":271505100,"h_accuracy":241,"crc":38748,"e":2} +{"length":15,"gdop":155,"flags":6,"tdop":77,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"zNYuEJsAhwBNAEgAcgAG","tow":271505100,"crc":28229,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"zNYuEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271505100,"h_accuracy":0,"crc":13686,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"zNYuEP//","tow":271505100,"crc":23239} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"Mggw1y4QAAAAAAE=","wn":2098,"tow":271505200,"crc":13697} +{"length":16,"flags":17,"ns":199999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"ETDXLhDkBwMZAxgv/sHrCw==","day":25,"tow":271505200,"year":2020,"crc":25003,"minutes":24,"month":3,"seconds":47} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.61756060344455,"preamble":85,"sender":22963,"msg_type":522,"payload":"MNcuEPM/J+Fl6kJAavG5IlaSXsClF6NzGJ4xwAECWwQPBg==","lat":37.83123411575789,"tow":271505200,"h_accuracy":513,"crc":178,"lon":-122.28650730284213} +{"v_accuracy":713,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"MNcuEA4AAAD2////AgAAAPEAyQIPAg==","n":14,"d":2,"tow":271505200,"h_accuracy":241,"crc":54209,"e":-10} +{"length":15,"gdop":155,"flags":6,"tdop":77,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"MNcuEJsAhwBNAEgAcgAG","tow":271505200,"crc":1110,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"MNcuEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271505200,"h_accuracy":0,"crc":41286,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"MNcuEP//","tow":271505200,"crc":27337} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgiU1y4QAAAAAAE=","wn":2098,"tow":271505300,"crc":45344} +{"length":16,"flags":17,"ns":299999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EZTXLhDkBwMZAxgv/qLhEQ==","day":25,"tow":271505300,"year":2020,"crc":44436,"minutes":24,"month":3,"seconds":47} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.61514839011931,"preamble":85,"sender":22963,"msg_type":522,"payload":"lNcuEAUhbOFl6kJAzNmKIlaSXsDev2ldep0xwAECWwQPBg==","lat":37.831234147832255,"tow":271505300,"h_accuracy":513,"crc":46384,"lon":-122.28650725898405} +{"v_accuracy":713,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"lNcuEPz///8KAAAABgAAAPEAyQIPAg==","n":-4,"d":6,"tow":271505300,"h_accuracy":241,"crc":30693,"e":10} +{"length":15,"gdop":155,"flags":6,"tdop":77,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"lNcuEJsAhwBNAEgAcgAG","tow":271505300,"crc":22242,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"lNcuEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271505300,"h_accuracy":0,"crc":54847,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"lNcuEP//","tow":271505300,"crc":36160} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":237,"states":[{"cn0":213,"mesid":{"sat":5,"code":0}},{"cn0":181,"mesid":{"sat":21,"code":0}},{"cn0":189,"mesid":{"sat":2,"code":0}},{"cn0":166,"mesid":{"sat":31,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":218,"mesid":{"sat":25,"code":0}},{"cn0":205,"mesid":{"sat":12,"code":0}},{"cn0":212,"mesid":{"sat":29,"code":0}},{"cn0":206,"mesid":{"sat":18,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":205,"mesid":{"sat":131,"code":2}},{"cn0":204,"mesid":{"sat":25,"code":1}},{"cn0":187,"mesid":{"sat":12,"code":1}},{"cn0":150,"mesid":{"sat":31,"code":1}},{"cn0":195,"mesid":{"sat":18,"code":1}},{"cn0":194,"mesid":{"sat":29,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":194,"mesid":{"sat":5,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":213,"mesid":{"sat":100,"code":3}},{"cn0":176,"mesid":{"sat":98,"code":3}},{"cn0":173,"mesid":{"sat":102,"code":3}},{"cn0":206,"mesid":{"sat":101,"code":3}},{"cn0":206,"mesid":{"sat":93,"code":3}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":183,"mesid":{"sat":106,"code":3}},{"cn0":204,"mesid":{"sat":104,"code":3}},{"cn0":171,"mesid":{"sat":98,"code":4}},{"cn0":204,"mesid":{"sat":102,"code":4}},{"cn0":86,"mesid":{"sat":93,"code":4}},{"cn0":199,"mesid":{"sat":100,"code":4}},{"cn0":194,"mesid":{"sat":101,"code":4}},{"cn0":186,"mesid":{"sat":104,"code":4}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":176,"mesid":{"sat":106,"code":4}},{"cn0":200,"mesid":{"sat":35,"code":12}},{"cn0":168,"mesid":{"sat":26,"code":12}},{"cn0":160,"mesid":{"sat":34,"code":12}},{"cn0":189,"mesid":{"sat":24,"code":12}},{"cn0":157,"mesid":{"sat":25,"code":12}},{"cn0":185,"mesid":{"sat":12,"code":12}},{"cn0":184,"mesid":{"sat":19,"code":12}},{"cn0":191,"mesid":{"sat":22,"code":12}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":208,"mesid":{"sat":12,"code":13}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":195,"mesid":{"sat":12,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":192,"mesid":{"sat":25,"code":14}},{"cn0":188,"mesid":{"sat":11,"code":14}},{"cn0":204,"mesid":{"sat":24,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":160,"mesid":{"sat":31,"code":14}},{"cn0":154,"mesid":{"sat":33,"code":14}},{"cn0":200,"mesid":{"sat":25,"code":20}},{"cn0":215,"mesid":{"sat":24,"code":20}},{"cn0":194,"mesid":{"sat":11,"code":20}},{"cn0":173,"mesid":{"sat":31,"code":20}},{"cn0":207,"mesid":{"sat":12,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":170,"mesid":{"sat":33,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}}],"preamble":85,"sender":22963,"msg_type":97,"payload":"BQDVFQC1AgC9HwCmAAAAAAAAGQDaDADNHQDUEgDOAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwLNGQHMDAG7HwGWEgHDHQHCAAAABQHCAAAAAAAAAAAAAAAAZAPVYgOwZgOtZQPOXQPOAAAAagO3aAPMYgSrZgTMXQRWZATHZQTCaAS6AAAAagSwIwzIGgyoIgygGAy9GQydDAy5Ewy4Fgy/AAAADA3QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADA7DAAAAGQ7ACw68GA7MAAAAHw6gIQ6aGRTIGBTXCxTCHxStDBTPAAAAIRSqAAAA","crc":58103} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"Mgj41y4QAAAAAAE=","wn":2098,"tow":271505400,"crc":64533} +{"length":16,"flags":17,"ns":399999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EfjXLhDkBwMZAxgv/oPXFw==","day":25,"tow":271505400,"year":2020,"crc":55421,"minutes":24,"month":3,"seconds":47} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.61320385660289,"preamble":85,"sender":22963,"msg_type":522,"payload":"+NcuEGIbwuFl6kJA8ChyIlaSXsD3443t+pwxwAECWwQPBg==","lat":37.83123418786887,"tow":271505400,"h_accuracy":513,"crc":10135,"lon":-122.28650723598889} +{"v_accuracy":713,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"+NcuEAYAAAAFAAAACAAAAPEAyQIPAg==","n":6,"d":8,"tow":271505400,"h_accuracy":241,"crc":48222,"e":5} +{"length":15,"gdop":155,"flags":6,"tdop":77,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"+NcuEJsAhwBNAEgAcgAG","tow":271505400,"crc":23816,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"+NcuEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271505400,"h_accuracy":0,"crc":36906,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"+NcuEP//","tow":271505400,"crc":55739} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":9,"l2ca_bias":0,"preamble":85,"l2p_bias":0,"sender":22963,"msg_type":117,"payload":"/wAAAAAAAAAA","l1ca_bias":0,"mask":255,"crc":49809,"l1p_bias":0} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"Mghc2C4QAAAAAAE=","wn":2098,"tow":271505500,"crc":41334} +{"length":16,"flags":17,"ns":499999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EVzYLhDkBwMZAxgv/mTNHQ==","day":25,"tow":271505500,"year":2020,"crc":31223,"minutes":24,"month":3,"seconds":47} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.614633507552636,"preamble":85,"sender":22963,"msg_type":522,"payload":"XNguEJPj/+Fl6kJAA21aIlaSXsDf9h2fWJ0xwAECWwQPBg==","lat":37.83123421663836,"tow":271505500,"h_accuracy":513,"crc":51344,"lon":-122.2865072138848} +{"v_accuracy":713,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"XNguEPb///8LAAAAGAAAAPEAyQIPAg==","n":-10,"d":24,"tow":271505500,"h_accuracy":241,"crc":22352,"e":11} +{"length":15,"gdop":155,"flags":6,"tdop":77,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"XNguEJsAhwBNAEgAcgAG","tow":271505500,"crc":38097,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"XNguEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271505500,"h_accuracy":0,"crc":8613,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"XNguEP//","tow":271505500,"crc":23499} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgjA2C4QAAAAAAE=","wn":2098,"tow":271505600,"crc":63530} +{"length":16,"flags":17,"ns":599999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EcDYLhDkBwMZAxgv/kXDIw==","day":25,"tow":271505600,"year":2020,"crc":39676,"minutes":24,"month":3,"seconds":47} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.614403724149312,"preamble":85,"sender":22963,"msg_type":522,"payload":"wNguEO0sTOJl6kJA7+9VIlaSXsAMw/2PSZ0xwAECWwQPBg==","lat":37.83123425216204,"tow":271505600,"h_accuracy":513,"crc":957,"lon":-122.28650720970448} +{"v_accuracy":713,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"wNguEAEAAAD8////+v////EAyQIPAg==","n":1,"d":-6,"tow":271505600,"h_accuracy":241,"crc":32253,"e":-4} +{"length":15,"gdop":155,"flags":6,"tdop":77,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"wNguEJsAhwBNAEgAcgAG","tow":271505600,"crc":12990,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"wNguEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271505600,"h_accuracy":0,"crc":57236,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"wNguEP//","tow":271505600,"crc":40588} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"message_type":63,"length":34,"data":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"preamble":85,"sender":22963,"msg_type":30583,"payload":"gwJB2C4QPwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA==","tow":271505473,"crc":22801,"sid":{"sat":131,"code":2}} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"Mggk2S4QAAAAAAE=","wn":2098,"tow":271505700,"crc":25729} +{"length":16,"flags":17,"ns":699999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"ESTZLhDkBwMZAxgv/ia5KQ==","day":25,"tow":271505700,"year":2020,"crc":7619,"minutes":24,"month":3,"seconds":47} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.615957283368953,"preamble":85,"sender":22963,"msg_type":522,"payload":"JNkuEDtYyeJl6kJAk/o7IlaSXsB7zWNgr50xwAECWwQPBg==","lat":37.83123431044847,"tow":271505700,"h_accuracy":513,"crc":59371,"lon":-122.2865071855288} +{"v_accuracy":713,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"JNkuEA8AAAAHAAAA/f////EAyQIPAg==","n":15,"d":-3,"tow":271505700,"h_accuracy":241,"crc":14191,"e":7} +{"length":15,"gdop":155,"flags":6,"tdop":77,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"JNkuEJsAhwBNAEgAcgAG","tow":271505700,"crc":12642,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"JNkuEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271505700,"h_accuracy":0,"crc":43073,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"JNkuEP//","tow":271505700,"crc":47428} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgiI2S4QAAAAAAE=","wn":2098,"tow":271505800,"crc":51679} +{"length":16,"flags":17,"ns":799999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EYjZLhDkBwMZAxgv/gevLw==","day":25,"tow":271505800,"year":2020,"crc":4311,"minutes":24,"month":3,"seconds":47} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.620582365350664,"preamble":85,"sender":22963,"msg_type":522,"payload":"iNkuEI5IK+Nl6kJAzUIwIlaSXsDKp2N83p4xwAECWwQPBg==","lat":37.831234356054765,"tow":271505800,"h_accuracy":513,"crc":40857,"lon":-122.28650717461569} +{"v_accuracy":713,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"iNkuEAAAAAD7////EQAAAPEAyQIPAg==","n":0,"d":17,"tow":271505800,"h_accuracy":241,"crc":19041,"e":-5} +{"length":15,"gdop":155,"flags":6,"tdop":77,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"iNkuEJsAhwBNAEgAcgAG","tow":271505800,"crc":17555,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"iNkuEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271505800,"h_accuracy":0,"crc":33179,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"iNkuEP//","tow":271505800,"crc":21391} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":237,"states":[{"cn0":213,"mesid":{"sat":5,"code":0}},{"cn0":180,"mesid":{"sat":21,"code":0}},{"cn0":189,"mesid":{"sat":2,"code":0}},{"cn0":166,"mesid":{"sat":31,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":218,"mesid":{"sat":25,"code":0}},{"cn0":206,"mesid":{"sat":12,"code":0}},{"cn0":212,"mesid":{"sat":29,"code":0}},{"cn0":206,"mesid":{"sat":18,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":205,"mesid":{"sat":131,"code":2}},{"cn0":204,"mesid":{"sat":25,"code":1}},{"cn0":187,"mesid":{"sat":12,"code":1}},{"cn0":150,"mesid":{"sat":31,"code":1}},{"cn0":195,"mesid":{"sat":18,"code":1}},{"cn0":194,"mesid":{"sat":29,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":194,"mesid":{"sat":5,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":214,"mesid":{"sat":11,"code":3}},{"cn0":176,"mesid":{"sat":9,"code":3}},{"cn0":173,"mesid":{"sat":20,"code":3}},{"cn0":207,"mesid":{"sat":5,"code":3}},{"cn0":207,"mesid":{"sat":10,"code":3}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":184,"mesid":{"sat":4,"code":3}},{"cn0":203,"mesid":{"sat":21,"code":3}},{"cn0":171,"mesid":{"sat":9,"code":4}},{"cn0":205,"mesid":{"sat":20,"code":4}},{"cn0":64,"mesid":{"sat":10,"code":4}},{"cn0":199,"mesid":{"sat":11,"code":4}},{"cn0":194,"mesid":{"sat":5,"code":4}},{"cn0":187,"mesid":{"sat":0,"code":4}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":176,"mesid":{"sat":4,"code":4}},{"cn0":200,"mesid":{"sat":35,"code":12}},{"cn0":169,"mesid":{"sat":26,"code":12}},{"cn0":160,"mesid":{"sat":34,"code":12}},{"cn0":189,"mesid":{"sat":24,"code":12}},{"cn0":156,"mesid":{"sat":25,"code":12}},{"cn0":185,"mesid":{"sat":12,"code":12}},{"cn0":184,"mesid":{"sat":19,"code":12}},{"cn0":191,"mesid":{"sat":22,"code":12}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":208,"mesid":{"sat":12,"code":13}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":195,"mesid":{"sat":12,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":192,"mesid":{"sat":25,"code":14}},{"cn0":188,"mesid":{"sat":11,"code":14}},{"cn0":204,"mesid":{"sat":24,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":160,"mesid":{"sat":31,"code":14}},{"cn0":153,"mesid":{"sat":33,"code":14}},{"cn0":200,"mesid":{"sat":25,"code":20}},{"cn0":215,"mesid":{"sat":24,"code":20}},{"cn0":194,"mesid":{"sat":11,"code":20}},{"cn0":173,"mesid":{"sat":31,"code":20}},{"cn0":207,"mesid":{"sat":12,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":169,"mesid":{"sat":33,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}}],"preamble":85,"sender":22963,"msg_type":97,"payload":"BQDVFQC0AgC9HwCmAAAAAAAAGQDaDADOHQDUEgDOAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwLNGQHMDAG7HwGWEgHDHQHCAAAABQHCAAAAAAAAAAAAAAAACwPWCQOwFAOtBQPPCgPPAAAABAO4FQPLCQSrFATNCgRACwTHBQTCAAS7AAAABASwIwzIGgypIgygGAy9GQycDAy5Ewy4Fgy/AAAADA3QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADA7DAAAAGQ7ACw68GA7MAAAAHw6gIQ6ZGRTIGBTXCxTCHxStDBTPAAAAIRSpAAAA","crc":32118} +{"length":136,"preamble":85,"sender":22963,"msg_type":151,"payload":"AgAaHgUALDUMAFEtFQB9GRkAbUYaAKEBHQChNx8AlQ4EAxYWBQMyIQYDTggJA18OCgNxKQsDmCUMA6oDEwMiBxQDCzEVA5UlDAyUKRMMIyAUDA8CFgxDIxgMgiMZDJ0OGgxnFR0MLAAiDI4RIwwiLQsOizIMDg88GA5sNhkOlykfDlURIQ4fDw==","crc":41336,"azel":[{"el":30,"az":26,"sid":{"sat":2,"code":0}},{"el":53,"az":44,"sid":{"sat":5,"code":0}},{"el":45,"az":81,"sid":{"sat":12,"code":0}},{"el":25,"az":125,"sid":{"sat":21,"code":0}},{"el":70,"az":109,"sid":{"sat":25,"code":0}},{"el":1,"az":161,"sid":{"sat":26,"code":0}},{"el":55,"az":161,"sid":{"sat":29,"code":0}},{"el":14,"az":149,"sid":{"sat":31,"code":0}},{"el":22,"az":22,"sid":{"sat":4,"code":3}},{"el":33,"az":50,"sid":{"sat":5,"code":3}},{"el":8,"az":78,"sid":{"sat":6,"code":3}},{"el":14,"az":95,"sid":{"sat":9,"code":3}},{"el":41,"az":113,"sid":{"sat":10,"code":3}},{"el":37,"az":152,"sid":{"sat":11,"code":3}},{"el":3,"az":170,"sid":{"sat":12,"code":3}},{"el":7,"az":34,"sid":{"sat":19,"code":3}},{"el":49,"az":11,"sid":{"sat":20,"code":3}},{"el":37,"az":149,"sid":{"sat":21,"code":3}},{"el":41,"az":148,"sid":{"sat":12,"code":12}},{"el":32,"az":35,"sid":{"sat":19,"code":12}},{"el":2,"az":15,"sid":{"sat":20,"code":12}},{"el":35,"az":67,"sid":{"sat":22,"code":12}},{"el":35,"az":130,"sid":{"sat":24,"code":12}},{"el":14,"az":157,"sid":{"sat":25,"code":12}},{"el":21,"az":103,"sid":{"sat":26,"code":12}},{"el":0,"az":44,"sid":{"sat":29,"code":12}},{"el":17,"az":142,"sid":{"sat":34,"code":12}},{"el":45,"az":34,"sid":{"sat":35,"code":12}},{"el":50,"az":139,"sid":{"sat":11,"code":14}},{"el":60,"az":15,"sid":{"sat":12,"code":14}},{"el":54,"az":108,"sid":{"sat":24,"code":14}},{"el":41,"az":151,"sid":{"sat":25,"code":14}},{"el":17,"az":85,"sid":{"sat":31,"code":14}},{"el":15,"az":31,"sid":{"sat":33,"code":14}}]} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"Mgjs2S4QAAAAAAE=","wn":2098,"tow":271505900,"crc":44309} +{"length":16,"flags":17,"ns":899999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EezZLhDkBwMZAxgv/uikNQ==","day":25,"tow":271505900,"year":2020,"crc":57337,"minutes":24,"month":3,"seconds":47} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.61656044524893,"preamble":85,"sender":22963,"msg_type":522,"payload":"7NkuEBtWlONl6kJAvSAdIlaSXsDyWcTn1p0xwAECWwQPBg==","lat":37.83123440497385,"tow":271505900,"h_accuracy":513,"crc":12032,"lon":-122.28650715679665} +{"v_accuracy":713,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"7NkuEAEAAAD8////9/////EAyQIPAg==","n":1,"d":-9,"tow":271505900,"h_accuracy":241,"crc":45951,"e":-4} +{"length":15,"gdop":155,"flags":6,"tdop":77,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"7NkuEJsAhwBNAEgAcgAG","tow":271505900,"crc":26684,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"7NkuEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271505900,"h_accuracy":0,"crc":39213,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"7NkuEP//","tow":271505900,"crc":2614} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":249,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":203,"i":110562602},"flags":15,"cn0":213,"P":1051968059,"D":{"f":255,"i":-177},"lock":15,"sid":{"sat":5,"code":0}},{"L":{"f":229,"i":121844321},"flags":15,"cn0":181,"P":1159310196,"D":{"f":40,"i":2176},"lock":15,"sid":{"sat":21,"code":0}},{"L":{"f":102,"i":123316024},"flags":15,"cn0":189,"P":1173312590,"D":{"f":56,"i":-2477},"lock":15,"sid":{"sat":2,"code":0}},{"L":{"f":145,"i":128734851},"flags":15,"cn0":166,"P":1224871375,"D":{"f":245,"i":-391},"lock":15,"sid":{"sat":31,"code":0}},{"L":{"f":109,"i":107813196},"flags":15,"cn0":218,"P":1025808396,"D":{"f":67,"i":-1121},"lock":15,"sid":{"sat":25,"code":0}},{"L":{"f":176,"i":114072066},"flags":15,"cn0":206,"P":1085359512,"D":{"f":1,"i":-2964},"lock":15,"sid":{"sat":12,"code":0}},{"L":{"f":223,"i":110774283},"flags":15,"cn0":212,"P":1053982186,"D":{"f":203,"i":1486},"lock":15,"sid":{"sat":29,"code":0}},{"L":{"f":108,"i":84010303},"flags":15,"cn0":204,"P":1025808442,"D":{"f":91,"i":-874},"lock":15,"sid":{"sat":25,"code":1}},{"L":{"f":83,"i":88887356},"flags":15,"cn0":187,"P":1085359443,"D":{"f":55,"i":-2310},"lock":15,"sid":{"sat":12,"code":1}},{"L":{"f":193,"i":100312873},"flags":15,"cn0":150,"P":1224871291,"D":{"f":149,"i":-304},"lock":15,"sid":{"sat":31,"code":1}},{"L":{"f":158,"i":86317625},"flags":15,"cn0":194,"P":1053982093,"D":{"f":166,"i":1157},"lock":15,"sid":{"sat":29,"code":1}},{"L":{"f":195,"i":86152706},"flags":15,"cn0":194,"P":1051967991,"D":{"f":132,"i":-137},"lock":15,"sid":{"sat":5,"code":1}},{"L":{"f":167,"i":112946978},"flags":15,"cn0":214,"P":1056824063,"D":{"f":252,"i":1174},"lock":15,"sid":{"sat":11,"code":3}},{"L":{"f":91,"i":123297867},"flags":15,"cn0":176,"P":1154486181,"D":{"f":222,"i":-4407},"lock":15,"sid":{"sat":9,"code":3}}],"payload":"UNouEAAAAAAyCEA7wrM+Kg2XBstP///VDw8FAHSrGUVhMkMH5YAIKLUPDxUATlTvRTinWQdmU/Y4vQ8PAgDPDQJJg1asB5F5/vWmDw8fAAyYJD1MGW0GbZ/7Q9oPDxkAmEWxQAKazAawbPQBzg8PDADqfdI+C0iaBt/OBcvUDw8dADqYJD0/5QEFbJb8W8wPDxkBU0WxQDxQTAVT+vY3uw8PDAF7DQJJKaf6BcHQ/pWWDw8fAY190j45GiUFnoUEpsIPDx0B98GzPgKWIgXDd/+Ewg8PBQH/2v0+Im+7BqeWBPzWDw8LA6UP0ERLYFkHW8nu3rAPDwkD","header":{"n_obs":64,"t":{"ns_residual":0,"wn":2098,"tow":271506000}},"crc":26851} +{"length":249,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":243,"i":109760647},"flags":15,"cn0":173,"P":1026289343,"D":{"f":144,"i":-1209},"lock":15,"sid":{"sat":20,"code":3}},{"L":{"f":29,"i":114878411},"flags":15,"cn0":206,"P":1074518763,"D":{"f":98,"i":2205},"lock":15,"sid":{"sat":5,"code":3}},{"L":{"f":240,"i":111578566},"flags":15,"cn0":207,"P":1046592401,"D":{"f":235,"i":-3038},"lock":15,"sid":{"sat":10,"code":3}},{"L":{"f":185,"i":120427740},"flags":15,"cn0":183,"P":1124451311,"D":{"f":122,"i":-1309},"lock":15,"sid":{"sat":4,"code":3}},{"L":{"f":232,"i":113433242},"flags":15,"cn0":204,"P":1059885217,"D":{"f":3,"i":1624},"lock":15,"sid":{"sat":21,"code":3}},{"L":{"f":234,"i":95898350},"flags":15,"cn0":170,"P":1154486332,"D":{"f":156,"i":-3429},"lock":15,"sid":{"sat":9,"code":4}},{"L":{"f":148,"i":85369428},"flags":15,"cn0":205,"P":1026289757,"D":{"f":209,"i":-940},"lock":15,"sid":{"sat":20,"code":4}},{"L":{"f":100,"i":87847660},"flags":15,"cn0":199,"P":1056824293,"D":{"f":29,"i":913},"lock":15,"sid":{"sat":11,"code":4}},{"L":{"f":26,"i":89349879},"flags":15,"cn0":194,"P":1074519058,"D":{"f":40,"i":1715},"lock":15,"sid":{"sat":5,"code":4}},{"L":{"f":204,"i":93666010},"flags":15,"cn0":176,"P":1124451472,"D":{"f":47,"i":-1019},"lock":15,"sid":{"sat":4,"code":4}},{"L":{"f":69,"i":121567562},"flags":15,"cn0":200,"P":1167288325,"D":{"f":206,"i":-1498},"lock":15,"sid":{"sat":35,"code":12}},{"L":{"f":16,"i":129187063},"flags":15,"cn0":168,"P":1240450885,"D":{"f":6,"i":-3009},"lock":15,"sid":{"sat":26,"code":12}},{"L":{"f":175,"i":132964600},"flags":15,"cn0":160,"P":1276722457,"D":{"f":228,"i":2247},"lock":15,"sid":{"sat":34,"code":12}},{"L":{"f":53,"i":125140582},"flags":15,"cn0":189,"P":1201596669,"D":{"f":82,"i":-1299},"lock":15,"sid":{"sat":24,"code":12}}],"payload":"UNouEAAAAAAyCEG/7is9h9CKBvNH+5CtDw8UA+vaC0DL59gGHZ0IYs4PDwUDkbthPsaNpgbwIvTrzw8PCgPvwwVD3JQtB7nj+nq3Dw8EA6GQLD+a2sIG6FgGA8wPDxUDPBDQRO5KtwXqm/Kcqg8PCQRd8Cs9VKIWBZRU/NHNDw8UBOXb/T7scjwFZJEDHccPDwsEEtwLQPdeUwUaswYowg8PBQSQxAVD2jqVBcwF/C+wDw8EBAVok0VK+T4HRSb6zsgPDyMMRcfvSfc8swcQP/QGqA8PGgwZPRlM+ODsB6/HCOSgDw8iDP3onkdmfnUHNe36Ur0PDxgM","header":{"n_obs":65,"t":{"ns_residual":0,"wn":2098,"tow":271506000}},"crc":12702} +{"length":249,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":19,"i":134683139},"flags":15,"cn0":157,"P":1293224042,"D":{"f":59,"i":1330},"lock":15,"sid":{"sat":25,"code":12}},{"L":{"f":27,"i":121113287},"flags":15,"cn0":185,"P":1162926665,"D":{"f":205,"i":1612},"lock":15,"sid":{"sat":12,"code":12}},{"L":{"f":82,"i":124512590},"flags":15,"cn0":184,"P":1195566657,"D":{"f":247,"i":-286},"lock":15,"sid":{"sat":19,"code":12}},{"L":{"f":166,"i":124724137},"flags":15,"cn0":191,"P":1197597963,"D":{"f":61,"i":2391},"lock":15,"sid":{"sat":22,"code":12}},{"L":{"f":180,"i":93652484},"flags":15,"cn0":208,"P":1162926569,"D":{"f":24,"i":1248},"lock":15,"sid":{"sat":12,"code":13}},{"L":{"f":34,"i":116417688},"flags":15,"cn0":195,"P":1107677454,"D":{"f":162,"i":-1026},"lock":15,"sid":{"sat":12,"code":14}},{"L":{"f":169,"i":132483758},"flags":15,"cn0":192,"P":1260540990,"D":{"f":169,"i":1092},"lock":15,"sid":{"sat":25,"code":14}},{"L":{"f":7,"i":125431131},"flags":15,"cn0":188,"P":1193437481,"D":{"f":173,"i":1050},"lock":15,"sid":{"sat":11,"code":14}},{"L":{"f":216,"i":118399738},"flags":15,"cn0":204,"P":1126535932,"D":{"f":35,"i":-1741},"lock":15,"sid":{"sat":24,"code":14}},{"L":{"f":173,"i":143295618},"flags":15,"cn0":160,"P":1363412495,"D":{"f":252,"i":-3175},"lock":15,"sid":{"sat":31,"code":14}},{"L":{"f":162,"i":144506781},"flags":15,"cn0":152,"P":1374936326,"D":{"f":112,"i":-2141},"lock":15,"sid":{"sat":33,"code":14}},{"L":{"f":197,"i":101513527},"flags":15,"cn0":200,"P":1260540943,"D":{"f":208,"i":837},"lock":15,"sid":{"sat":25,"code":20}},{"L":{"f":96,"i":90721941},"flags":15,"cn0":215,"P":1126536472,"D":{"f":83,"i":-1334},"lock":15,"sid":{"sat":24,"code":20}},{"L":{"f":196,"i":96109545},"flags":15,"cn0":194,"P":1193437289,"D":{"f":130,"i":804},"lock":15,"sid":{"sat":11,"code":20}}],"payload":"UNouEAAAAAAyCEJqCBVNAxoHCBMyBTudDw8ZDEnaUEXHCjgHG0wGzbkPDwwMQeZCR07pawdS4v73uA8PEwwL5WFHqSNvB6ZXCT2/Dw8WDOnZUEUEBpUFtOAEGNAPDwwNDtEFQphk8AYi/vuiww8PDA4+VCJLrorlB6lEBKnADw8ZDilpIkdb7XkHBxoErbwPDwsO/JIlQ/qiDgfYM/kjzA8PGA4PBkRRgoSKCK2Z8/ygDw8fDgbd81Gd/5wIoqP3cJgPDyEOD1QiSzf5DAbFRQPQyA8PGRQYlSVDlU5oBWDK+lPXDw8YFGloIkfpg7oFxCQDgsIPDwsU","header":{"n_obs":66,"t":{"ns_residual":0,"wn":2098,"tow":271506000}},"crc":35120} +{"length":62,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":25,"i":109797983},"flags":15,"cn0":172,"P":1363412530,"D":{"f":149,"i":-2429},"lock":15,"sid":{"sat":31,"code":20}},{"L":{"f":60,"i":89203194},"flags":15,"cn0":206,"P":1107677291,"D":{"f":123,"i":-785},"lock":15,"sid":{"sat":12,"code":20}},{"L":{"f":12,"i":110726046},"flags":15,"cn0":169,"P":1374936267,"D":{"f":88,"i":-1639},"lock":15,"sid":{"sat":33,"code":20}}],"payload":"UNouEAAAAAAyCEMyBkRRX2KLBhmD9pWsDw8fFGvQBUL6IVEFPO/8e84PDwwUy9zzUZ6LmQYMmflYqQ8PIRQ=","header":{"n_obs":67,"t":{"ns_residual":0,"wn":2098,"tow":271506000}},"crc":34924} +{"length":9,"l2ca_bias":0,"preamble":85,"l2p_bias":0,"sender":22963,"msg_type":117,"payload":"/wAAAAAAAAAA","l1ca_bias":0,"mask":255,"crc":49809,"l1p_bias":0} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MghQ2i4QAAAAAAE=","wn":2098,"tow":271506000,"crc":39872} +{"length":16,"flags":17,"ns":999999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EVDaLhDkBwMZAxgv/smaOw==","day":25,"tow":271506000,"year":2020,"crc":8067,"minutes":24,"month":3,"seconds":47} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.615573696813748,"preamble":85,"sender":22963,"msg_type":522,"payload":"UNouEE3WDuRl6kJAECv6IVaSXsDGF+A8lp0xwAECWwQPBg==","lat":37.83123446201771,"tow":271506000,"h_accuracy":513,"crc":26937,"lon":-122.28650712423791} +{"v_accuracy":713,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"UNouEAQAAAAFAAAAAQAAAPEAyQIPAg==","n":4,"d":1,"tow":271506000,"h_accuracy":241,"crc":39603,"e":5} +{"length":15,"gdop":155,"flags":6,"tdop":77,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"UNouEJsAhwBNAEgAcgAG","tow":271506000,"crc":57060,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"UNouEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271506000,"h_accuracy":0,"crc":25482,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"UNouEP//","tow":271506000,"crc":5291} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":4,"flags":2147616000,"preamble":85,"sender":22963,"msg_type":65535,"payload":"AAUCgA==","crc":40942} +{"length":24,"z":3890655.0240602265,"preamble":85,"sender":22963,"msg_type":72,"payload":"UO0a3iqORMHK1UJhIkRQwc9nFIPvrk1B","crc":2168,"x":-2694229.735196747,"y":-4264073.519704292} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"bWFpbgAAAAAAAAAAAAAAAAAAAAAAAAx1AAA=","name":"main\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":47991,"stack_free":29964,"cpu":0} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"aWRsZQAAAAAAAAAAAAAAAAAAAAAaAHwAAAA=","name":"idle\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":55510,"stack_free":124,"cpu":26} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"cnBtc2cAAAAAAAAAAAAAAAAAAAABAOQNAAA=","name":"rpmsg\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":18957,"stack_free":3556,"cpu":1} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"U0JQAAAAAAAAAAAAAAAAAAAAAAAAAPz/AAA=","name":"SBP\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":51784,"stack_free":65532,"cpu":0} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"TkFQAAAAAAAAAAAAAAAAAAAAAAAAAASAAAA=","name":"NAP\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":33651,"stack_free":32772,"cpu":0} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"bWFuYWdlIFBWAAAAAAAAAAAAAAAAACQEAAA=","name":"manage PV\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":29877,"stack_free":1060,"cpu":0} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"SU1VAAAAAAAAAAAAAAAAAAAAAAAAAPQHAAA=","name":"IMU\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":14252,"stack_free":2036,"cpu":0} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"SU1VIGF1eAAAAAAAAAAAAAAAAAAAAEwIAAA=","name":"IMU aux\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":18976,"stack_free":2124,"cpu":0} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"bmRiAAAAAAAAAAAAAAAAAAAAAAAAAFAMAAA=","name":"ndb\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":26120,"stack_free":3152,"cpu":0} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"TkFQIFRyYWNraW5nAAAAAAAAAAAoAdR3AAA=","name":"NAP Tracking\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":9794,"stack_free":30676,"cpu":296} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"ZGVjb2RlAAAAAAAAAAAAAAAAAAAIANQGAAA=","name":"decode\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":40082,"stack_free":1748,"cpu":8} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"bWFuYWdlIGFjcQAAAAAAAAAAAAD7AaR3AAA=","name":"manage acq\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":4913,"stack_free":30628,"cpu":507} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"c3lzdGVtIG1vbml0b3IAAAAAAAAAACwGAAA=","name":"system monitor\u0000\u0000\u0000\u0000\u0000\u0000","crc":58531,"stack_free":1580,"cpu":0} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"V2F0Y2hkb2cAAAAAAAAAAAAAAAAAAOQDAAA=","name":"Watchdog\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":44438,"stack_free":996,"cpu":0} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"c3RhcmxpbmcAAAAAAAAAAAAAAACWAPz/AAA=","name":"starling\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":61599,"stack_free":65532,"cpu":150} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"bWVfY2FsY19wdnQAAAAAAAAAAAAIAIwjAAA=","name":"me_calc_pvt\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":42361,"stack_free":9100,"cpu":8} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"UFBTAAAAAAAAAAAAAAAAAAAAAAAAAEgHAAA=","name":"PPS\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":38576,"stack_free":1864,"cpu":0} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"c3BlY3RydW0gYW5hbHl6ZXIAAAAAANQPAAA=","name":"spectrum analyzer\u0000\u0000\u0000","crc":50933,"stack_free":4052,"cpu":0} +{"length":152,"af0":5.887670442461967e-3,"w":-0.44091143270237854,"dn":2.7565433925253817e-9,"c_us":1.0313466e-5,"c_uc":4.9471855e-6,"ecc":5.041392287239432e-4,"sqrta":5440.606742858887,"preamble":85,"toc":{"wn":2098,"tow":270600},"sender":22963,"bgd_e1e5a":-1.2805685e-8,"msg_type":149,"omegadot":-5.397724836905428e-9,"payload":"DA4IIQQAMggUrkdAQDgAAAEAAABcsgAAXLIAENRCALgCQwAApjYACC03AABAsgAAgDNL+3P5s60nPnUMqQwPaP4/AAAAwAaFQD8AAIBTm0C1QIrkGgU4CAPAN7MGedwuN77+6PiV5Dfcv4P9KHoHme8/6TII/sTfAj7///9/qx14P///////m7S9AAAAAAghBAAyCEMAQwA=","inc":0.9874303232135592,"inc_dot":5.493085951935782e-10,"iode":67,"crc":22055,"common":{"health_bits":0,"fit_interval":14400,"valid":1,"sid":{"sat":12,"code":14},"toe":{"wn":2098,"tow":270600},"ura":3.12},"c_rs":106.03125,"m0":1.9004049772782114,"af2":0,"c_rc":130.71875,"bgd_e1e5b":-1.2805685e-8,"af1":-1.874411736935144e-11,"c_is":5.9604645e-8,"c_ic":-1.1175871e-8,"omega0":-2.379013099559022,"iodc":67} +{"cpu_vint":988,"length":10,"fe_temperature":5641,"preamble":85,"sender":22963,"cpu_vaux":1780,"msg_type":181,"payload":"5RbcA/QGVxUJFg==","dev_vin":5861,"crc":34412,"cpu_temperature":5463} +{"length":152,"af0":5.542786035221069e-3,"w":0.8010578836647987,"dn":3.2565642203999004e-9,"c_us":1.2051314e-6,"c_uc":-9.313226e-7,"ecc":6.41814898699522e-4,"sqrta":5440.5982837677,"preamble":85,"toc":{"wn":2098,"tow":270600},"sender":22963,"bgd_e1e5a":4.5401976e-8,"msg_type":149,"omegadot":-5.952033640377751e-9,"payload":"GA4IIQQAMggUrkdAQDgAAAEAAABDMwAAWjMAwLDBACiiQwAAerUAwKE1AADAMgAAkLIDohqtQvkrPghvDWj2Cv8/AAAAAO8HRT8AACApmUC1QAE7BZsOMv0/fijCh1SQOb6TYpEkRKLpP79dPRTHYe8/dQCRpGwQsr3///9LCLR2P///////07W9AAAAAAghBAAyCEMAQwA=","inc":0.9806857486063832,"inc_dot":-1.6429255773019897e-11,"iode":67,"crc":17160,"common":{"health_bits":0,"fit_interval":14400,"valid":1,"sid":{"sat":24,"code":14},"toe":{"wn":2098,"tow":270600},"ura":3.12},"c_rs":-22.09375,"m0":1.9401763977575133,"af2":0,"c_rc":324.3125,"bgd_e1e5b":5.075708e-8,"af1":-1.9852564037137196e-11,"c_is":-1.6763806e-8,"c_ic":2.2351742e-8,"omega0":1.8247209601865395,"iodc":67} +{"length":152,"af0":1.907260389998555e-3,"w":-1.5654652719122086e-2,"dn":2.7722583328300094e-9,"c_us":1.0371208e-5,"c_uc":4.9714e-6,"ecc":4.320717416703701e-4,"sqrta":5440.606544494629,"preamble":85,"toc":{"wn":2098,"tow":270600},"sender":22963,"bgd_e1e5a":-1.5366822e-8,"msg_type":149,"omegadot":-5.393081786360879e-9,"payload":"Cw4IIQQAMggUrkdAQDgAAAEAAACEsgAAkLIAgNtCAHAEQwDQpjYAAC43AADAMQAA8DIJ2QezQtAnPuz3xuNXe+U/AAAAAPZQPD8AAIBGm0C1QK3tOpsxCAPAXpX5kcEpN74w4dX1xQeQv9UhC83qmO8/RLuw9AgSAz7///8/oT9fP/7/////ces9AAAAIgghBAAyCEMAQwA=","inc":0.9874166493182722,"inc_dot":5.550231189407157e-10,"iode":67,"crc":2583,"common":{"health_bits":0,"fit_interval":14400,"valid":1,"sid":{"sat":11,"code":14},"toe":{"wn":2098,"tow":270600},"ura":3.12},"c_rs":109.75,"m0":0.6713065575383985,"af2":1.7347235e-18,"c_rc":132.4375,"bgd_e1e5b":-1.6763806e-8,"af1":1.996909304580185e-10,"c_is":2.7939677e-8,"c_ic":5.5879354e-9,"omega0":-2.379000866638043,"iodc":67} +{"length":152,"af0":-4.7208549221977586e-4,"w":-0.5807865279072539,"dn":3.1744179415348008e-9,"c_us":1.1641532e-6,"c_uc":-6.724149e-7,"ecc":6.590713746845722e-5,"sqrta":5440.611110687256,"preamble":85,"toc":{"wn":2098,"tow":270600},"sender":22963,"bgd_e1e5a":2.3283064e-9,"msg_type":149,"omegadot":-5.8966741915773585e-9,"payload":"Hw4IIQQAMggUrkdAQDgAAAEAAAAgMQAAMDEAAHbBAHijQwCANLUAQJw1AAAAsQAA8DL+96xunkQrPkZyn/wvcwHAAAAAAPRGET8AAMBxnEC1QJaRgpusG/0/YRMSO3ZTOb6iNeqgzZXiv43JI3Ekcu8/wO8/t+Srsb3///+/R/A+v/7//////y+9AAAAAAghBAAyCEMAQwA=","inc":0.9826833925019841,"inc_dot":-1.607209803882381e-11,"iode":67,"crc":3,"common":{"health_bits":0,"fit_interval":14400,"valid":1,"sid":{"sat":31,"code":14},"toe":{"wn":2098,"tow":270600},"ura":3.12},"c_rs":-15.375,"m0":-2.181243871322553,"af2":0,"c_rc":326.9375,"bgd_e1e5b":2.561137e-9,"af1":-5.6843418860808e-14,"c_is":2.7939677e-8,"c_ic":-1.8626451e-9,"omega0":1.8192564081774427,"iodc":67} +{"length":51,"text":"GLO L2OF ME 1 [+1360ms] low CN0 too long, dropping","preamble":85,"sender":22963,"msg_type":1025,"payload":"BkdMTyBMMk9GIE1FIDEgWysxMzYwbXNdIGxvdyBDTjAgdG9vIGxvbmcsIGRyb3BwaW5n","crc":15891,"level":6} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"Mgi02i4QAAAAAAE=","wn":2098,"tow":271506100,"crc":16568} +{"length":16,"flags":17,"ns":99999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EbTaLhDkBwMZAxgw/uD1BQ==","day":25,"tow":271506100,"year":2020,"crc":53827,"minutes":24,"month":3,"seconds":48} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.616115094373786,"preamble":85,"sender":22963,"msg_type":522,"payload":"tNouEH56gORl6kJA8q7PIVaSXsBJ6AS4uZ0xwAECWwQPBg==","lat":37.8312345149361,"tow":271506100,"h_accuracy":513,"crc":20116,"lon":-122.28650708467083} +{"v_accuracy":713,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"tNouEAAAAAAJAAAACgAAAPEAyQIPAg==","n":0,"d":10,"tow":271506100,"h_accuracy":241,"crc":9597,"e":9} +{"length":15,"gdop":155,"flags":6,"tdop":77,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"tNouEJsAhwBNAEgAcgAG","tow":271506100,"crc":42585,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"tNouEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271506100,"h_accuracy":0,"crc":49577,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"tNouEP//","tow":271506100,"crc":39218} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":152,"af0":-4.6914938138797874e-4,"w":-0.8905894853810961,"dn":2.6633252239002037e-9,"c_us":1.0326505e-5,"c_uc":4.2803586e-6,"ecc":3.9580545853823423e-4,"sqrta":5440.610097885132,"preamble":85,"toc":{"wn":2098,"tow":270000},"sender":22963,"bgd_e1e5a":-5.122274e-9,"msg_type":149,"omegadot":-5.325221816863623e-9,"payload":"IQ6wHgQAMggUrkdAQDgAAAEAAACwsQAA0LEAMLNCALgFQwCgjzYAQC03AACIswAAwLE7r4zPtuAmPkwWPLbJbwhAAAAAgIPwOT8AAGAvnEC1QDTgM7QeEQPA+GrXryTfNr7k8TuFtX/sv6HbAEo2s+8/tGUD6d1QAz7///8/Bb8+v/7//////109AAAAALAeBAAyCEIAQgA=","inc":0.9906264729860262,"inc_dot":5.621662736246373e-10,"iode":66,"crc":18815,"common":{"health_bits":0,"fit_interval":14400,"valid":1,"sid":{"sat":33,"code":14},"toe":{"wn":2098,"tow":270000},"ura":3.12},"c_rs":89.59375,"m0":3.0545839535796286,"af2":0,"c_rc":133.71875,"bgd_e1e5b":-6.0535967e-9,"af1":4.2632564145606e-13,"c_is":-5.5879354e-9,"c_ic":-6.3329935e-8,"omega0":-2.383359344323276,"iodc":66} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MggY2y4QAAAAAAE=","wn":2098,"tow":271506200,"crc":43573} +{"length":16,"flags":17,"ns":199999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"ERjbLhDkBwMZAxgw/sHrCw==","day":25,"tow":271506200,"year":2020,"crc":44183,"minutes":24,"month":3,"seconds":48} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.613832226953363,"preamble":85,"sender":22963,"msg_type":522,"payload":"GNsuEFREAeVl6kJAvfOpIVaSXsDc/tsbJJ0xwAECWwQPBg==","lat":37.83123457490788,"tow":271506200,"h_accuracy":513,"crc":12543,"lon":-122.28650704953084} +{"v_accuracy":713,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"GNsuEAYAAAAEAAAA8f////EAyQIPAg==","n":6,"d":-15,"tow":271506200,"h_accuracy":241,"crc":51496,"e":4} +{"length":15,"gdop":155,"flags":6,"tdop":77,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"GNsuEJsAhwBNAEgAcgAG","tow":271506200,"crc":43209,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"GNsuEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271506200,"h_accuracy":0,"crc":15749,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"GNsuEP//","tow":271506200,"crc":55720} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"Mgh82y4QAAAAAAE=","wn":2098,"tow":271506300,"crc":52991} +{"length":16,"flags":17,"ns":299999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EXzbLhDkBwMZAxgw/qLhEQ==","day":25,"tow":271506300,"year":2020,"crc":7859,"minutes":24,"month":3,"seconds":48} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.611402613832425,"preamble":85,"sender":22963,"msg_type":522,"payload":"fNsuEDq8YuVl6kJArKV/IVaSXsBkGbfhhJwxwAECWwQPBg==","lat":37.83123462029512,"tow":271506300,"h_accuracy":513,"crc":52051,"lon":-122.28650701013129} +{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"fNsuEPr///8BAAAACwAAAPEAygIPAg==","n":-6,"d":11,"tow":271506300,"h_accuracy":241,"crc":61730,"e":1} +{"length":15,"gdop":155,"flags":6,"tdop":77,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"fNsuEJsAhwBNAEgAcgAG","tow":271506300,"crc":33894,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"fNsuEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271506300,"h_accuracy":0,"crc":9523,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"fNsuEP//","tow":271506300,"crc":32785} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":237,"states":[{"cn0":213,"mesid":{"sat":5,"code":0}},{"cn0":180,"mesid":{"sat":21,"code":0}},{"cn0":189,"mesid":{"sat":2,"code":0}},{"cn0":167,"mesid":{"sat":31,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":218,"mesid":{"sat":25,"code":0}},{"cn0":206,"mesid":{"sat":12,"code":0}},{"cn0":213,"mesid":{"sat":29,"code":0}},{"cn0":206,"mesid":{"sat":18,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":205,"mesid":{"sat":131,"code":2}},{"cn0":204,"mesid":{"sat":25,"code":1}},{"cn0":187,"mesid":{"sat":12,"code":1}},{"cn0":150,"mesid":{"sat":31,"code":1}},{"cn0":195,"mesid":{"sat":18,"code":1}},{"cn0":194,"mesid":{"sat":29,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":193,"mesid":{"sat":5,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":214,"mesid":{"sat":100,"code":3}},{"cn0":176,"mesid":{"sat":98,"code":3}},{"cn0":173,"mesid":{"sat":102,"code":3}},{"cn0":206,"mesid":{"sat":101,"code":3}},{"cn0":207,"mesid":{"sat":93,"code":3}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":183,"mesid":{"sat":106,"code":3}},{"cn0":204,"mesid":{"sat":104,"code":3}},{"cn0":170,"mesid":{"sat":98,"code":4}},{"cn0":205,"mesid":{"sat":102,"code":4}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":199,"mesid":{"sat":100,"code":4}},{"cn0":194,"mesid":{"sat":101,"code":4}},{"cn0":187,"mesid":{"sat":104,"code":4}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":176,"mesid":{"sat":106,"code":4}},{"cn0":200,"mesid":{"sat":35,"code":12}},{"cn0":168,"mesid":{"sat":26,"code":12}},{"cn0":160,"mesid":{"sat":34,"code":12}},{"cn0":189,"mesid":{"sat":24,"code":12}},{"cn0":157,"mesid":{"sat":25,"code":12}},{"cn0":185,"mesid":{"sat":12,"code":12}},{"cn0":184,"mesid":{"sat":19,"code":12}},{"cn0":191,"mesid":{"sat":22,"code":12}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":208,"mesid":{"sat":12,"code":13}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":195,"mesid":{"sat":12,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":192,"mesid":{"sat":25,"code":14}},{"cn0":188,"mesid":{"sat":11,"code":14}},{"cn0":204,"mesid":{"sat":24,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":158,"mesid":{"sat":31,"code":14}},{"cn0":153,"mesid":{"sat":33,"code":14}},{"cn0":201,"mesid":{"sat":25,"code":20}},{"cn0":215,"mesid":{"sat":24,"code":20}},{"cn0":194,"mesid":{"sat":11,"code":20}},{"cn0":173,"mesid":{"sat":31,"code":20}},{"cn0":207,"mesid":{"sat":12,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":169,"mesid":{"sat":33,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}}],"preamble":85,"sender":22963,"msg_type":97,"payload":"BQDVFQC0AgC9HwCnAAAAAAAAGQDaDADOHQDVEgDOAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwLNGQHMDAG7HwGWEgHDHQHCAAAABQHBAAAAAAAAAAAAAAAAZAPWYgOwZgOtZQPOXQPPAAAAagO3aAPMYgSqZgTNAAAAZATHZQTCaAS7AAAAagSwIwzIGgyoIgygGAy9GQydDAy5Ewy4Fgy/AAAADA3QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADA7DAAAAGQ7ACw68GA7MAAAAHw6eIQ6ZGRTJGBTXCxTCHxStDBTPAAAAIRSpAAAA","crc":31743} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"Mgjg2y4QAAAAAAE=","wn":2098,"tow":271506400,"crc":38819} +{"length":16,"flags":17,"ns":399999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EeDbLhDkBwMZAxgw/oPXFw==","day":25,"tow":271506400,"year":2020,"crc":50911,"minutes":24,"month":3,"seconds":48} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.609590309347126,"preamble":85,"sender":22963,"msg_type":522,"payload":"4NsuEKkA8uVl6kJAPVJoIVaSXsC8mkocDpwxwAECWwQPBg==","lat":37.831234687009164,"tow":271506400,"h_accuracy":513,"crc":18781,"lon":-122.28650698840734} +{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"4NsuEA8AAAD9////AAAAAPEAygIPAg==","n":15,"d":0,"tow":271506400,"h_accuracy":241,"crc":31274,"e":-3} +{"length":15,"gdop":155,"flags":6,"tdop":77,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"4NsuEJsAhwBNAEgAcgAG","tow":271506400,"crc":8713,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"4NsuEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271506400,"h_accuracy":0,"crc":56066,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"4NsuEP//","tow":271506400,"crc":17750} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":9,"l2ca_bias":0,"preamble":85,"l2p_bias":0,"sender":22963,"msg_type":117,"payload":"/wAAAAAAAAAA","l1ca_bias":0,"mask":255,"crc":49809,"l1p_bias":0} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MghE3C4QAAAAAAE=","wn":2098,"tow":271506500,"crc":54298} +{"length":16,"flags":17,"ns":499999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EUTcLhDkBwMZAxgw/mTNHQ==","day":25,"tow":271506500,"year":2020,"crc":35902,"minutes":24,"month":3,"seconds":48} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.610994953274844,"preamble":85,"sender":22963,"msg_type":522,"payload":"RNwuENWBWuZl6kJAmDpFIVaSXsAlVk4qapwxwAECWwQPBg==","lat":37.8312347356729,"tow":271506500,"h_accuracy":513,"crc":44973,"lon":-122.28650695572503} +{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"RNwuEP////8EAAAADQAAAPEAygIPAg==","n":-1,"d":13,"tow":271506500,"h_accuracy":241,"crc":33799,"e":4} +{"length":15,"gdop":155,"flags":6,"tdop":77,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"RNwuEJsAhwBNAEgAcgAG","tow":271506500,"crc":187,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"RNwuEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271506500,"h_accuracy":0,"crc":42491,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"RNwuEP//","tow":271506500,"crc":50443} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"Mgio3C4QAAAAAAE=","wn":2098,"tow":271506600,"crc":9885} +{"length":16,"flags":17,"ns":599999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EajcLhDkBwMZAxgw/kXDIw==","day":25,"tow":271506600,"year":2020,"crc":38562,"minutes":24,"month":3,"seconds":48} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.61016409591592,"preamble":85,"sender":22963,"msg_type":522,"payload":"qNwuEE660eZl6kJAfq8fIVaSXsD8JtW2M5wxwAECWwQPBg==","lat":37.83123479118932,"tow":271506600,"h_accuracy":513,"crc":33617,"lon":-122.28650692076005} +{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"qNwuEAwAAAD9////9/////EAygIPAg==","n":12,"d":-9,"tow":271506600,"h_accuracy":241,"crc":25197,"e":-3} +{"length":15,"gdop":155,"flags":6,"tdop":77,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"qNwuEJsAhwBNAEgAcgAG","tow":271506600,"crc":24387,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"qNwuEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271506600,"h_accuracy":0,"crc":22907,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"qNwuEP//","tow":271506600,"crc":17872} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MggM3S4QAAAAAAE=","wn":2098,"tow":271506700,"crc":58863} +{"length":16,"flags":17,"ns":699999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EQzdLhDkBwMZAxgw/ia5KQ==","day":25,"tow":271506700,"year":2020,"crc":15252,"minutes":24,"month":3,"seconds":48} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.611184904265475,"preamble":85,"sender":22963,"msg_type":522,"payload":"DN0uECt+Nudl6kJAFD0FIVaSXsANoSeddpwxwAECWwQPBg==","lat":37.83123483811172,"tow":271506700,"h_accuracy":513,"crc":12487,"lon":-122.28650689612942} +{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"DN0uEAMAAAD7//////////EAygIPAg==","n":3,"d":-1,"tow":271506700,"h_accuracy":241,"crc":32884,"e":-5} +{"length":15,"gdop":155,"flags":6,"tdop":77,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"DN0uEJsAhwBNAEgAcgAG","tow":271506700,"crc":30358,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"DN0uEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271506700,"h_accuracy":0,"crc":64500,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"DN0uEP//","tow":271506700,"crc":2056} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"message_type":63,"length":34,"data":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"preamble":85,"sender":22963,"msg_type":30583,"payload":"gwIv3C4QPwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA==","tow":271506479,"crc":55020,"sid":{"sat":131,"code":2}} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"Mghw3S4QAAAAAAE=","wn":2098,"tow":271506800,"crc":64292} +{"length":16,"flags":17,"ns":799999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EXDdLhDkBwMZAxgw/gevLw==","day":25,"tow":271506800,"year":2020,"crc":1553,"minutes":24,"month":3,"seconds":48} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.61470518315392,"preamble":85,"sender":22963,"msg_type":522,"payload":"cN0uEKqEludl6kJAADDfIFaSXsDpU6JRXZ0xwAECWwQPBg==","lat":37.83123488282702,"tow":271506800,"h_accuracy":513,"crc":29489,"lon":-122.28650686069159} +{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"cN0uEP3///8JAAAA//////EAygIPAg==","n":-3,"d":-1,"tow":271506800,"h_accuracy":241,"crc":58507,"e":9} +{"length":15,"gdop":155,"flags":6,"tdop":77,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"cN0uEJsAhwBNAEgAcgAG","tow":271506800,"crc":13302,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"cN0uEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271506800,"h_accuracy":0,"crc":167,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"cN0uEP//","tow":271506800,"crc":18039} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":237,"states":[{"cn0":213,"mesid":{"sat":5,"code":0}},{"cn0":181,"mesid":{"sat":21,"code":0}},{"cn0":189,"mesid":{"sat":2,"code":0}},{"cn0":167,"mesid":{"sat":31,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":218,"mesid":{"sat":25,"code":0}},{"cn0":206,"mesid":{"sat":12,"code":0}},{"cn0":213,"mesid":{"sat":29,"code":0}},{"cn0":206,"mesid":{"sat":18,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":205,"mesid":{"sat":131,"code":2}},{"cn0":205,"mesid":{"sat":25,"code":1}},{"cn0":187,"mesid":{"sat":12,"code":1}},{"cn0":150,"mesid":{"sat":31,"code":1}},{"cn0":195,"mesid":{"sat":18,"code":1}},{"cn0":194,"mesid":{"sat":29,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":194,"mesid":{"sat":5,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":214,"mesid":{"sat":11,"code":3}},{"cn0":176,"mesid":{"sat":9,"code":3}},{"cn0":173,"mesid":{"sat":20,"code":3}},{"cn0":206,"mesid":{"sat":5,"code":3}},{"cn0":207,"mesid":{"sat":10,"code":3}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":183,"mesid":{"sat":4,"code":3}},{"cn0":203,"mesid":{"sat":21,"code":3}},{"cn0":170,"mesid":{"sat":9,"code":4}},{"cn0":205,"mesid":{"sat":20,"code":4}},{"cn0":83,"mesid":{"sat":10,"code":4}},{"cn0":199,"mesid":{"sat":11,"code":4}},{"cn0":194,"mesid":{"sat":5,"code":4}},{"cn0":187,"mesid":{"sat":0,"code":4}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":177,"mesid":{"sat":4,"code":4}},{"cn0":200,"mesid":{"sat":35,"code":12}},{"cn0":169,"mesid":{"sat":26,"code":12}},{"cn0":160,"mesid":{"sat":34,"code":12}},{"cn0":189,"mesid":{"sat":24,"code":12}},{"cn0":157,"mesid":{"sat":25,"code":12}},{"cn0":185,"mesid":{"sat":12,"code":12}},{"cn0":184,"mesid":{"sat":19,"code":12}},{"cn0":191,"mesid":{"sat":22,"code":12}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":208,"mesid":{"sat":12,"code":13}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":194,"mesid":{"sat":12,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":191,"mesid":{"sat":25,"code":14}},{"cn0":188,"mesid":{"sat":11,"code":14}},{"cn0":204,"mesid":{"sat":24,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":159,"mesid":{"sat":31,"code":14}},{"cn0":153,"mesid":{"sat":33,"code":14}},{"cn0":201,"mesid":{"sat":25,"code":20}},{"cn0":215,"mesid":{"sat":24,"code":20}},{"cn0":194,"mesid":{"sat":11,"code":20}},{"cn0":173,"mesid":{"sat":31,"code":20}},{"cn0":207,"mesid":{"sat":12,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":169,"mesid":{"sat":33,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}}],"preamble":85,"sender":22963,"msg_type":97,"payload":"BQDVFQC1AgC9HwCnAAAAAAAAGQDaDADOHQDVEgDOAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwLNGQHNDAG7HwGWEgHDHQHCAAAABQHCAAAAAAAAAAAAAAAACwPWCQOwFAOtBQPOCgPPAAAABAO3FQPLCQSqFATNCgRTCwTHBQTCAAS7AAAABASxIwzIGgypIgygGAy9GQydDAy5Ewy4Fgy/AAAADA3QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADA7CAAAAGQ6/Cw68GA7MAAAAHw6fIQ6ZGRTJGBTXCxTCHxStDBTPAAAAIRSpAAAA","crc":14970} +{"length":136,"preamble":85,"sender":22963,"msg_type":151,"payload":"AgAaHgUALDUMAFEtFQB9GRkAbUYaAKEBHQChNx8AlQ4EAxYWBQMyIQYDTggJA18OCgNxKQsDmCUMA6oDEwMiBxQDCzEVA5UlDAyUKRMMIyAUDA8CFgxDIxgMgiMZDJ0OGgxnFR0MLAAiDI4RIwwiLQsOizIMDg88GA5sNhkOlykfDlURIQ4fDw==","crc":41336,"azel":[{"el":30,"az":26,"sid":{"sat":2,"code":0}},{"el":53,"az":44,"sid":{"sat":5,"code":0}},{"el":45,"az":81,"sid":{"sat":12,"code":0}},{"el":25,"az":125,"sid":{"sat":21,"code":0}},{"el":70,"az":109,"sid":{"sat":25,"code":0}},{"el":1,"az":161,"sid":{"sat":26,"code":0}},{"el":55,"az":161,"sid":{"sat":29,"code":0}},{"el":14,"az":149,"sid":{"sat":31,"code":0}},{"el":22,"az":22,"sid":{"sat":4,"code":3}},{"el":33,"az":50,"sid":{"sat":5,"code":3}},{"el":8,"az":78,"sid":{"sat":6,"code":3}},{"el":14,"az":95,"sid":{"sat":9,"code":3}},{"el":41,"az":113,"sid":{"sat":10,"code":3}},{"el":37,"az":152,"sid":{"sat":11,"code":3}},{"el":3,"az":170,"sid":{"sat":12,"code":3}},{"el":7,"az":34,"sid":{"sat":19,"code":3}},{"el":49,"az":11,"sid":{"sat":20,"code":3}},{"el":37,"az":149,"sid":{"sat":21,"code":3}},{"el":41,"az":148,"sid":{"sat":12,"code":12}},{"el":32,"az":35,"sid":{"sat":19,"code":12}},{"el":2,"az":15,"sid":{"sat":20,"code":12}},{"el":35,"az":67,"sid":{"sat":22,"code":12}},{"el":35,"az":130,"sid":{"sat":24,"code":12}},{"el":14,"az":157,"sid":{"sat":25,"code":12}},{"el":21,"az":103,"sid":{"sat":26,"code":12}},{"el":0,"az":44,"sid":{"sat":29,"code":12}},{"el":17,"az":142,"sid":{"sat":34,"code":12}},{"el":45,"az":34,"sid":{"sat":35,"code":12}},{"el":50,"az":139,"sid":{"sat":11,"code":14}},{"el":60,"az":15,"sid":{"sat":12,"code":14}},{"el":54,"az":108,"sid":{"sat":24,"code":14}},{"el":41,"az":151,"sid":{"sat":25,"code":14}},{"el":17,"az":85,"sid":{"sat":31,"code":14}},{"el":15,"az":31,"sid":{"sat":33,"code":14}}]} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgjU3S4QAAAAAAE=","wn":2098,"tow":271506900,"crc":32645} +{"length":16,"flags":17,"ns":899999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EdTdLhDkBwMZAxgw/uikNQ==","day":25,"tow":271506900,"year":2020,"crc":46884,"minutes":24,"month":3,"seconds":48} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.619562651292295,"preamble":85,"sender":22963,"msg_type":522,"payload":"1N0uEKtx8edl6kJAngOiIFaSXsCbH22om54xwAECWwQPBg==","lat":37.83123492516764,"tow":271506900,"h_accuracy":513,"crc":24564,"lon":-122.28650680371945} +{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"1N0uEP3///8QAAAAKQAAAPEAygIPAg==","n":-3,"d":41,"tow":271506900,"h_accuracy":241,"crc":2315,"e":16} +{"length":15,"gdop":155,"flags":6,"tdop":77,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"1N0uEJsAhwBNAEgAcgAG","tow":271506900,"crc":24898,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"1N0uEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271506900,"h_accuracy":0,"crc":30686,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"1N0uEP//","tow":271506900,"crc":41470} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":249,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":61,"i":110562778},"flags":15,"cn0":213,"P":1051969726,"D":{"f":145,"i":-178},"lock":15,"sid":{"sat":5,"code":0}},{"L":{"f":98,"i":121842144},"flags":15,"cn0":180,"P":1159289475,"D":{"f":128,"i":2175},"lock":15,"sid":{"sat":21,"code":0}},{"L":{"f":182,"i":123318501},"flags":15,"cn0":189,"P":1173336152,"D":{"f":215,"i":-2479},"lock":15,"sid":{"sat":2,"code":0}},{"L":{"f":181,"i":128735240},"flags":15,"cn0":167,"P":1224875078,"D":{"f":229,"i":-392},"lock":15,"sid":{"sat":31,"code":0}},{"L":{"f":37,"i":107814316},"flags":15,"cn0":218,"P":1025819043,"D":{"f":184,"i":-1122},"lock":15,"sid":{"sat":25,"code":0}},{"L":{"f":230,"i":114075028},"flags":15,"cn0":206,"P":1085387700,"D":{"f":226,"i":-2964},"lock":15,"sid":{"sat":12,"code":0}},{"L":{"f":62,"i":110772796},"flags":15,"cn0":213,"P":1053968032,"D":{"f":52,"i":1486},"lock":15,"sid":{"sat":29,"code":0}},{"L":{"f":237,"i":84011175},"flags":15,"cn0":204,"P":1025819091,"D":{"f":249,"i":-874},"lock":15,"sid":{"sat":25,"code":1}},{"L":{"f":138,"i":88889664},"flags":15,"cn0":187,"P":1085387620,"D":{"f":42,"i":-2311},"lock":15,"sid":{"sat":12,"code":1}},{"L":{"f":253,"i":100313176},"flags":15,"cn0":151,"P":1224875011,"D":{"f":225,"i":-306},"lock":15,"sid":{"sat":31,"code":1}},{"L":{"f":107,"i":86316466},"flags":15,"cn0":194,"P":1053967932,"D":{"f":142,"i":1158},"lock":15,"sid":{"sat":29,"code":1}},{"L":{"f":120,"i":86152843},"flags":15,"cn0":194,"P":1051969654,"D":{"f":199,"i":-139},"lock":15,"sid":{"sat":5,"code":1}},{"L":{"f":61,"i":112945803},"flags":15,"cn0":214,"P":1056813072,"D":{"f":154,"i":1173},"lock":15,"sid":{"sat":11,"code":3}},{"L":{"f":208,"i":123302272},"flags":15,"cn0":177,"P":1154527455,"D":{"f":223,"i":-4406},"lock":15,"sid":{"sat":9,"code":3}}],"payload":"ON4uEAAAAAAyCEC+yLM+2g2XBj1O/5HVDw8FAINaGUXgKUMHYn8IgLQPDxUAWLDvReWwWQe2UfbXvQ8PAgBGHAJJCFisB7V4/uWnDw8fAKPBJD2sHW0GJZ77uNoPDxkAtLOxQJSlzAbmbPTizg8PDACgRtI+PEKaBj7OBTTVDw8dANPBJD2n6AEF7Zb8+cwPDxkBZLOxQEBZTAWK+fYquw8PDAEDHAJJWKj6Bf3O/uGXDw8fATxG0j6yFSUFa4YEjsIPDx0BdsizPouWIgV4df/Hwg8PBQEQsP0+i2q7Bj2VBJrWDw8LA9+w0ESAcVkH0Mru37EPDwkD","header":{"n_obs":64,"t":{"ns_residual":0,"wn":2098,"tow":271507000}},"crc":23747} +{"length":249,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":223,"i":109761854},"flags":15,"cn0":173,"P":1026300671,"D":{"f":209,"i":-1209},"lock":15,"sid":{"sat":20,"code":3}},{"L":{"f":65,"i":114876205},"flags":15,"cn0":206,"P":1074498131,"D":{"f":219,"i":2203},"lock":15,"sid":{"sat":5,"code":3}},{"L":{"f":9,"i":111581604},"flags":15,"cn0":207,"P":1046620893,"D":{"f":70,"i":-3039},"lock":15,"sid":{"sat":10,"code":3}},{"L":{"f":209,"i":120429047},"flags":15,"cn0":183,"P":1124463509,"D":{"f":10,"i":-1309},"lock":15,"sid":{"sat":4,"code":3}},{"L":{"f":226,"i":113431616},"flags":15,"cn0":203,"P":1059870020,"D":{"f":134,"i":1624},"lock":15,"sid":{"sat":21,"code":3}},{"L":{"f":103,"i":95901777},"flags":15,"cn0":170,"P":1154527592,"D":{"f":129,"i":-3430},"lock":15,"sid":{"sat":9,"code":4}},{"L":{"f":78,"i":85370367},"flags":15,"cn0":205,"P":1026301047,"D":{"f":31,"i":-940},"lock":15,"sid":{"sat":20,"code":4}},{"L":{"f":46,"i":87846746},"flags":15,"cn0":199,"P":1056813300,"D":{"f":32,"i":912},"lock":15,"sid":{"sat":11,"code":4}},{"L":{"f":110,"i":89348163},"flags":15,"cn0":195,"P":1074498442,"D":{"f":156,"i":1714},"lock":15,"sid":{"sat":5,"code":4}},{"L":{"f":107,"i":93667027},"flags":15,"cn0":177,"P":1124463700,"D":{"f":16,"i":-1018},"lock":15,"sid":{"sat":4,"code":4}},{"L":{"f":220,"i":121569058},"flags":15,"cn0":200,"P":1167302690,"D":{"f":31,"i":-1498},"lock":15,"sid":{"sat":35,"code":12}},{"L":{"f":236,"i":129190068},"flags":15,"cn0":169,"P":1240479745,"D":{"f":128,"i":-3009},"lock":15,"sid":{"sat":26,"code":12}},{"L":{"f":120,"i":132962350},"flags":15,"cn0":160,"P":1276700847,"D":{"f":201,"i":2249},"lock":15,"sid":{"sat":34,"code":12}},{"L":{"f":8,"i":125141879},"flags":15,"cn0":189,"P":1201609135,"D":{"f":54,"i":-1299},"lock":15,"sid":{"sat":24,"code":12}}],"payload":"ON4uEAAAAAAyCEH/Giw9PtWKBt9H+9GtDw8UA1OKC0At39gGQZsI284PDwUD3SpiPqSZpgYJIfRGzw8PCgOV8wVD95ktB9Hj+gq3Dw8EA0RVLD9A1MIG4lgGhssPDxUDaLHQRFFYtwVnmvKBqg8PCQR3HCw9/6UWBU5U/B/NDw8UBPSw/T5abzwFLpADIMcPDwsEiosLQENYUwVusgacww8PBQRU9AVD0z6VBWsG/BCxDw8EBCKgk0Ui/z4H3Cb6H8gPDyMMATjwSbRIswfsP/SAqQ8PGgyv6BhMLtjsB3jJCMmgDw8iDK8Zn0d3g3UHCO36Nr0PDxgM","header":{"n_obs":65,"t":{"ns_residual":0,"wn":2098,"tow":271507000}},"crc":33589} +{"length":249,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":99,"i":134681808},"flags":15,"cn0":156,"P":1293211258,"D":{"f":99,"i":1329},"lock":15,"sid":{"sat":25,"code":12}},{"L":{"f":244,"i":121111672},"flags":15,"cn0":185,"P":1162911163,"D":{"f":2,"i":1612},"lock":15,"sid":{"sat":12,"code":12}},{"L":{"f":103,"i":124512873},"flags":15,"cn0":184,"P":1195569375,"D":{"f":89,"i":-285},"lock":15,"sid":{"sat":19,"code":12}},{"L":{"f":198,"i":124721745},"flags":15,"cn0":191,"P":1197574987,"D":{"f":156,"i":2389},"lock":15,"sid":{"sat":22,"code":12}},{"L":{"f":138,"i":93651236},"flags":15,"cn0":208,"P":1162911074,"D":{"f":254,"i":1246},"lock":15,"sid":{"sat":12,"code":13}},{"L":{"f":144,"i":116418712},"flags":15,"cn0":194,"P":1107687200,"D":{"f":133,"i":-1027},"lock":15,"sid":{"sat":12,"code":14}},{"L":{"f":23,"i":132482665},"flags":15,"cn0":192,"P":1260530575,"D":{"f":170,"i":1091},"lock":15,"sid":{"sat":25,"code":14}},{"L":{"f":206,"i":125430080},"flags":15,"cn0":188,"P":1193427504,"D":{"f":169,"i":1047},"lock":15,"sid":{"sat":11,"code":14}},{"L":{"f":24,"i":118401478},"flags":15,"cn0":204,"P":1126552484,"D":{"f":144,"i":-1741},"lock":15,"sid":{"sat":24,"code":14}},{"L":{"f":44,"i":143298789},"flags":15,"cn0":159,"P":1363442651,"D":{"f":235,"i":-3172},"lock":15,"sid":{"sat":31,"code":14}},{"L":{"f":122,"i":144508921},"flags":15,"cn0":153,"P":1374956668,"D":{"f":226,"i":-2141},"lock":15,"sid":{"sat":33,"code":14}},{"L":{"f":215,"i":101512689},"flags":15,"cn0":201,"P":1260530541,"D":{"f":252,"i":836},"lock":15,"sid":{"sat":25,"code":20}},{"L":{"f":12,"i":90723274},"flags":15,"cn0":215,"P":1126553020,"D":{"f":113,"i":-1335},"lock":15,"sid":{"sat":24,"code":20}},{"L":{"f":8,"i":96108741},"flags":15,"cn0":194,"P":1193427295,"D":{"f":160,"i":802},"lock":15,"sid":{"sat":11,"code":20}}],"payload":"ON4uEAAAAAAyCEJ61hRN0BQHCGMxBWOcDw8ZDLudUEV4BDgH9EwGArkPDwwM3/BCR2nqawdn4/5ZuA8PEwxLi2FHURpvB8ZVCZy/Dw8WDGKdUEUkAZUFit4E/tAPDwwNIPcFQpho8AaQ/fuFwg8PDA6PKyJLaYblBxdDBKrADw8ZDjBCIkdA6XkHzhcEqbwPDwsOpNMlQ8apDgcYM/mQzA8PGA7be0RR5ZCKCCyc8+ufDw8fDnws9FH5B50IeqP34pkPDyEObSsiS/H1DAbXRAP8yQ8PGRS81SVDylNoBQzJ+nHXDw8YFF9BIkfFgLoFCCIDoMIPDwsU","header":{"n_obs":66,"t":{"ns_residual":0,"wn":2098,"tow":271507000}},"crc":15726} +{"length":62,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":112,"i":109800412},"flags":15,"cn0":173,"P":1363442688,"D":{"f":181,"i":-2430},"lock":15,"sid":{"sat":31,"code":20}},{"L":{"f":48,"i":89203979},"flags":15,"cn0":207,"P":1107687037,"D":{"f":171,"i":-788},"lock":15,"sid":{"sat":12,"code":20}},{"L":{"f":171,"i":110727685},"flags":15,"cn0":170,"P":1374956626,"D":{"f":136,"i":-1640},"lock":15,"sid":{"sat":33,"code":20}}],"payload":"ON4uEAAAAAAyCEMAfERR3GuLBnCC9rWtDw8fFH32BUILJVEFMOz8q88PDwwUUiz0UQWSmQarmPmIqg8PIRQ=","header":{"n_obs":67,"t":{"ns_residual":0,"wn":2098,"tow":271507000}},"crc":20711} +{"length":9,"l2ca_bias":0,"preamble":85,"l2p_bias":0,"sender":22963,"msg_type":117,"payload":"/wAAAAAAAAAA","l1ca_bias":0,"mask":255,"crc":49809,"l1p_bias":0} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"Mgg43i4QAAAAAAE=","wn":2098,"tow":271507000,"crc":17783} +{"length":16,"flags":17,"ns":999999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"ETjeLhDkBwMZAxgw/smaOw==","day":25,"tow":271507000,"year":2020,"crc":5085,"minutes":24,"month":3,"seconds":48} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.61990320585585,"preamble":85,"sender":22963,"msg_type":522,"payload":"ON4uEPoTRuhl6kJAfjOAIFaSXsAg1vv5sZ4xwAECWwQPBg==","lat":37.83123496457843,"tow":271507000,"h_accuracy":513,"crc":47292,"lon":-122.28650677222865} +{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"ON4uEAUAAAD6/////v////EAygIPAg==","n":5,"d":-2,"tow":271507000,"h_accuracy":241,"crc":35365,"e":-6} +{"length":15,"gdop":155,"flags":6,"tdop":77,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"ON4uEJsAhwBNAEgAcgAG","tow":271507000,"crc":45849,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"ON4uEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271507000,"h_accuracy":0,"crc":58725,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"ON4uEP//","tow":271507000,"crc":53239} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":4,"flags":2147616000,"preamble":85,"sender":22963,"msg_type":65535,"payload":"AAUCgA==","crc":40942} +{"length":24,"z":3890655.0240602265,"preamble":85,"sender":22963,"msg_type":72,"payload":"UO0a3iqORMHK1UJhIkRQwc9nFIPvrk1B","crc":2168,"x":-2694229.735196747,"y":-4264073.519704292} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"Mgic3i4QAAAAAAE=","wn":2098,"tow":271507100,"crc":49622} +{"length":16,"flags":17,"ns":99999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EZzeLhDkBwMZAxgx/uD1BQ==","day":25,"tow":271507100,"year":2020,"crc":16358,"minutes":24,"month":3,"seconds":49} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.617370818876648,"preamble":85,"sender":22963,"msg_type":522,"payload":"nN4uEO3qhuhl6kJA14hMIFaSXsB3lJQDDJ4xwAECWwQPBg==","lat":37.83123499477174,"tow":271507100,"h_accuracy":513,"crc":38169,"lon":-122.28650672411037} +{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"nN4uEP3///8AAAAAAQAAAPEAygIPAg==","n":-3,"d":1,"tow":271507100,"h_accuracy":241,"crc":22904,"e":0} +{"length":15,"gdop":155,"flags":6,"tdop":77,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"nN4uEJsAhwBNAEgAcgAG","tow":271507100,"crc":57773,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"nN4uEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271507100,"h_accuracy":0,"crc":37404,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"nN4uEP//","tow":271507100,"crc":10366} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MggA3y4QAAAAAAE=","wn":2098,"tow":271507200,"crc":57177} +{"length":16,"flags":17,"ns":199999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EQDfLhDkBwMZAxgx/sHrCw==","day":25,"tow":271507200,"year":2020,"crc":37548,"minutes":24,"month":3,"seconds":49} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.61359973984988,"preamble":85,"sender":22963,"msg_type":522,"payload":"AN8uEHP98Ohl6kJAT1URIFaSXsBGfV/fFJ0xwAECWwQPBg==","lat":37.83123504416553,"tow":271507200,"h_accuracy":513,"crc":43634,"lon":-122.28650666897487} +{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"AN8uEA4AAAAEAAAAAQAAAPEAygIPAg==","n":14,"d":1,"tow":271507200,"h_accuracy":241,"crc":41331,"e":4} +{"length":15,"gdop":155,"flags":6,"tdop":77,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"AN8uEJsAhwBNAEgAcgAG","tow":271507200,"crc":15523,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"AN8uEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271507200,"h_accuracy":0,"crc":47579,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"AN8uEP//","tow":271507200,"crc":18280} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":139,"af0":-9.685755e-6,"w":0.7879862351781709,"dn":5.216288707933817e-9,"c_us":3.6917627e-6,"c_uc":-2.0805746e-6,"ecc":5.77498646453023e-3,"sqrta":5153.621828079224,"preamble":85,"toc":{"wn":2098,"tow":273600},"sender":22963,"msg_type":138,"omegadot":-8.661789369723447e-9,"payload":"BQDALAQAMggAAABAQDgAAAEAAABAsgBALsIAFJZDAKALtgDAdzYAAACxAACAMRHWGb5eZzY+T/dUY52P0T8AAAAgg6d3PwAAIDCfIbRARtfJCOom8b9M1QV73plCvqU6ueguN+k/EhTM+Tx17j/o1QJxDTj7vQCAIrcAAECrAAAAAMAsBAAyCBsbAA==","inc":0.9518113020755001,"inc_dot":-3.9608792722345795e-10,"tgd":-1.1175871e-8,"iode":27,"crc":17495,"common":{"health_bits":0,"fit_interval":14400,"valid":1,"sid":{"sat":5,"code":0},"toe":{"wn":2098,"tow":273600},"ura":2},"c_rs":-43.5625,"m0":0.2743905515707085,"af2":0,"c_rc":300.15625,"af1":-6.82121e-13,"c_is":3.7252903e-9,"c_ic":-1.8626451e-9,"omega0":-1.0720005362795333,"iodc":27} +{"length":139,"af0":-7.2387047e-6,"w":0.913959268152067,"dn":4.643050544549101e-9,"c_us":4.1704625e-6,"c_uc":-2.9560179e-6,"ecc":9.245076566003263e-3,"sqrta":5153.570272445679,"preamble":85,"toc":{"wn":2098,"tow":273600},"sender":22963,"msg_type":138,"omegadot":-8.311417632477088e-9,"payload":"GQDALAQAMggAAABAQDgAAAEAAADAMQAgX8IA/JZDAGBGtgDwizYAADa0AAAotFSYPIsW8TM+5hz4wc+O/z8AAAAsFe+CPwAAYP2RIbRAFhvTsJnQAEDKAtIKQNlBvuja0oEnP+0/Qj1ZqGzq7j/cS8aiBt3svQDk8rYAABgsAAAAAMAsBAAyCAUFAA==","inc":0.9661162651117723,"inc_dot":-2.100087477072978e-10,"tgd":5.5879354e-9,"iode":5,"crc":19841,"common":{"health_bits":0,"fit_interval":14400,"valid":1,"sid":{"sat":25,"code":0},"toe":{"wn":2098,"tow":273600},"ura":2},"c_rs":-55.78125,"m0":1.9723661019250414,"af2":0,"c_rc":301.96875,"af1":2.16005e-12,"c_is":-1.5646219e-7,"c_ic":-1.6950071e-7,"omega0":2.101855641786993,"iodc":5} +{"length":139,"af0":1.3691094e-4,"w":1.124390026032068,"dn":4.266606292706428e-9,"c_us":4.5280904e-6,"c_uc":-3.33786e-6,"ecc":8.09362216386944e-3,"sqrta":5153.721719741821,"preamble":85,"toc":{"wn":2098,"tow":273600},"sender":22963,"msg_type":138,"omegadot":-8.031048811133161e-9,"payload":"DADALAQAMggAAABAQDgAAAEAAABYsgCge8IApJZDAABgtgDwlzYAAKAyAAAgtI3VKOguUzI+msQrVfHbAUAAAACUY5OAPwAAoMK4IbRAOKAgCzJcAUCtOHejHT9BvuQZXGWA/fE/c6ROYnhS7z8M3+7JXEfxvcCPDzkAAJisAAAAAMAsBAAyCBcXAA==","inc":0.9788171691954076,"inc_dot":-2.5143904487404365e-10,"tgd":-1.2572855e-8,"iode":23,"crc":50178,"common":{"health_bits":0,"fit_interval":14400,"valid":1,"sid":{"sat":12,"code":0},"toe":{"wn":2098,"tow":273600},"ura":2},"c_rs":-62.90625,"m0":2.2323938993436743,"af2":0,"c_rc":301.28125,"af1":-4.3201e-12,"c_is":-1.4901161e-7,"c_ic":1.8626451e-8,"omega0":2.1700173253375645,"iodc":23} +{"length":139,"af0":-6.4762775e-5,"w":1.8704240804535182,"dn":3.736227057425242e-9,"c_us":1.2401491e-5,"c_uc":-9.741634e-7,"ecc":1.2328720185905695e-3,"sqrta":5153.613843917847,"preamble":85,"toc":{"wn":2098,"tow":273600},"sender":22963,"msg_type":138,"omegadot":-7.594244902211349e-9,"payload":"HQDALAQAMggAAABAQDgAAAEAAAAwsgCAYsEAABlDAMCCtQAQUDcAAOAyAACQMqWXiWwGDDA+XB/TSA2OvL8AAABACjNUPwAA4CSdIbRAtqOeydGKCMBFFRj0+k5AvgMu88xB7f0/FO/KteyN7z8ahhkPrDSlvUDRh7gAACKtAAAAAMAsBAAyCEREAA==","inc":0.9860747862471464,"inc_dot":-9.643258823294287e-12,"tgd":-1.0244548e-8,"iode":68,"crc":20617,"common":{"health_bits":0,"fit_interval":14400,"valid":1,"sid":{"sat":29,"code":0},"toe":{"wn":2098,"tow":273600},"ura":2},"c_rs":-14.15625,"m0":-0.11154253986307822,"af2":0,"c_rc":153,"af1":-9.208634e-12,"c_is":1.6763806e-8,"c_ic":2.6077032e-8,"omega0":-3.067782950547975,"iodc":68} +{"length":139,"af0":-4.2781373e-4,"w":-1.6429787675404337,"dn":4.696267046944317e-9,"c_us":7.232651e-6,"c_uc":4.408881e-6,"ecc":1.97759565198794e-2,"sqrta":5153.662273406982,"preamble":85,"toc":{"wn":2098,"tow":273600},"sender":22963,"msg_type":138,"omegadot":-7.878185300897237e-9,"payload":"AgDALAQAMggAAABAQDgAAAEAAACYsgCwpkIAuGpDAPCTNgCw8jYAAGg0AAAsNA3HXKiZKzQ+FOBzlwsNA8AAAAD6JUCUPwAAwIqpIbRAOU/fvEhCAcC2dBUDFOtAvp68qRqkSfq/uJiunyKq7j/puaCuBosEPjBM4LkAAOisAAAAAMAsBAAyCDQ0AA==","inc":0.9582684630193148,"inc_dot":5.978820470442458e-10,"tgd":-1.7695129e-8,"iode":52,"crc":18755,"common":{"health_bits":0,"fit_interval":14400,"valid":1,"sid":{"sat":2,"code":0},"toe":{"wn":2098,"tow":273600},"ura":2},"c_rs":83.34375,"m0":-2.3813697654950463,"af2":0,"c_rc":234.71875,"af1":-6.5938366e-12,"c_is":1.6018748e-7,"c_ic":2.1606684e-7,"omega0":-2.1573652988098755,"iodc":52} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"Mghk3y4QAAAAAAE=","wn":2098,"tow":271507300,"crc":48019} +{"length":16,"flags":17,"ns":299999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EWTfLhDkBwMZAxgx/qLhEQ==","day":25,"tow":271507300,"year":2020,"crc":8328,"minutes":24,"month":3,"seconds":49} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.61172309197437,"preamble":85,"sender":22963,"msg_type":522,"payload":"ZN8uEPhxMOll6kJAFWvvH1aSXsDoPHLimZwxwAECWwQPBg==","lat":37.83123507371414,"tow":271507300,"h_accuracy":513,"crc":15426,"lon":-122.28650663738911} +{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"ZN8uEPj////6////+/////EAygIPAg==","n":-8,"d":-5,"tow":271507300,"h_accuracy":241,"crc":54207,"e":-6} +{"length":15,"gdop":155,"flags":6,"tdop":77,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"ZN8uEJsAhwBNAEgAcgAG","tow":271507300,"crc":4108,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"ZN8uEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271507300,"h_accuracy":0,"crc":41325,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"ZN8uEP//","tow":271507300,"crc":7889} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":237,"states":[{"cn0":214,"mesid":{"sat":5,"code":0}},{"cn0":181,"mesid":{"sat":21,"code":0}},{"cn0":189,"mesid":{"sat":2,"code":0}},{"cn0":167,"mesid":{"sat":31,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":218,"mesid":{"sat":25,"code":0}},{"cn0":207,"mesid":{"sat":12,"code":0}},{"cn0":213,"mesid":{"sat":29,"code":0}},{"cn0":207,"mesid":{"sat":18,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":205,"mesid":{"sat":131,"code":2}},{"cn0":204,"mesid":{"sat":25,"code":1}},{"cn0":187,"mesid":{"sat":12,"code":1}},{"cn0":150,"mesid":{"sat":31,"code":1}},{"cn0":195,"mesid":{"sat":18,"code":1}},{"cn0":194,"mesid":{"sat":29,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":194,"mesid":{"sat":5,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":214,"mesid":{"sat":100,"code":3}},{"cn0":176,"mesid":{"sat":98,"code":3}},{"cn0":173,"mesid":{"sat":102,"code":3}},{"cn0":206,"mesid":{"sat":101,"code":3}},{"cn0":207,"mesid":{"sat":93,"code":3}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":183,"mesid":{"sat":106,"code":3}},{"cn0":203,"mesid":{"sat":104,"code":3}},{"cn0":170,"mesid":{"sat":98,"code":4}},{"cn0":205,"mesid":{"sat":102,"code":4}},{"cn0":69,"mesid":{"sat":93,"code":4}},{"cn0":199,"mesid":{"sat":100,"code":4}},{"cn0":195,"mesid":{"sat":101,"code":4}},{"cn0":187,"mesid":{"sat":104,"code":4}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":177,"mesid":{"sat":106,"code":4}},{"cn0":200,"mesid":{"sat":35,"code":12}},{"cn0":169,"mesid":{"sat":26,"code":12}},{"cn0":160,"mesid":{"sat":34,"code":12}},{"cn0":189,"mesid":{"sat":24,"code":12}},{"cn0":157,"mesid":{"sat":25,"code":12}},{"cn0":185,"mesid":{"sat":12,"code":12}},{"cn0":184,"mesid":{"sat":19,"code":12}},{"cn0":191,"mesid":{"sat":22,"code":12}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":209,"mesid":{"sat":12,"code":13}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":194,"mesid":{"sat":12,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":191,"mesid":{"sat":25,"code":14}},{"cn0":188,"mesid":{"sat":11,"code":14}},{"cn0":204,"mesid":{"sat":24,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":158,"mesid":{"sat":31,"code":14}},{"cn0":153,"mesid":{"sat":33,"code":14}},{"cn0":200,"mesid":{"sat":25,"code":20}},{"cn0":215,"mesid":{"sat":24,"code":20}},{"cn0":194,"mesid":{"sat":11,"code":20}},{"cn0":173,"mesid":{"sat":31,"code":20}},{"cn0":207,"mesid":{"sat":12,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":170,"mesid":{"sat":33,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}}],"preamble":85,"sender":22963,"msg_type":97,"payload":"BQDWFQC1AgC9HwCnAAAAAAAAGQDaDADPHQDVEgDPAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwLNGQHMDAG7HwGWEgHDHQHCAAAABQHCAAAAAAAAAAAAAAAAZAPWYgOwZgOtZQPOXQPPAAAAagO3aAPLYgSqZgTNXQRFZATHZQTDaAS7AAAAagSxIwzIGgypIgygGAy9GQydDAy5Ewy4Fgy/AAAADA3RAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADA7CAAAAGQ6/Cw68GA7MAAAAHw6eIQ6ZGRTIGBTXCxTCHxStDBTPAAAAIRSqAAAA","crc":24695} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgjI3y4QAAAAAAE=","wn":2098,"tow":271507400,"crc":5837} +{"length":16,"flags":17,"ns":399999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EcjfLhDkBwMZAxgx/oPXFw==","day":25,"tow":271507400,"year":2020,"crc":11130,"minutes":24,"month":3,"seconds":49} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.611254959095493,"preamble":85,"sender":22963,"msg_type":522,"payload":"yN8uEIuHe+ll6kJAs/XEH1aSXsA91Xo0e5wxwAECWwQPBg==","lat":37.83123510867798,"tow":271507400,"h_accuracy":513,"crc":13030,"lon":-122.28650659784653} +{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"yN8uEAkAAAAJAAAACQAAAPEAygIPAg==","n":9,"d":9,"tow":271507400,"h_accuracy":241,"crc":18222,"e":9} +{"length":15,"gdop":155,"flags":6,"tdop":77,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"yN8uEJsAhwBNAEgAcgAG","tow":271507400,"crc":26109,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"yN8uEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271507400,"h_accuracy":0,"crc":34999,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"yN8uEP//","tow":271507400,"crc":62490} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":9,"l2ca_bias":0,"preamble":85,"l2p_bias":0,"sender":22963,"msg_type":117,"payload":"/wAAAAAAAAAA","l1ca_bias":0,"mask":255,"crc":49809,"l1p_bias":0} +{"length":51,"text":"GLO L2OF ME 1 [+1348ms] low CN0 too long, dropping","preamble":85,"sender":22963,"msg_type":1025,"payload":"BkdMTyBMMk9GIE1FIDEgWysxMzQ4bXNdIGxvdyBDTjAgdG9vIGxvbmcsIGRyb3BwaW5n","crc":48467,"level":6} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"Mggs4C4QAAAAAAE=","wn":2098,"tow":271507500,"crc":21163} +{"length":16,"flags":17,"ns":499999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"ESzgLhDkBwMZAxgx/mTNHQ==","day":25,"tow":271507500,"year":2020,"crc":64449,"minutes":24,"month":3,"seconds":49} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.60464544873377,"preamble":85,"sender":22963,"msg_type":522,"payload":"LOAuEM2jmell6kJArsmnH1aSXsCe/EsLypoxwAECWwQPBg==","lat":37.83123512269922,"tow":271507500,"h_accuracy":513,"crc":9149,"lon":-122.28650657067803} +{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"LOAuEP7////+////2/////EAygIPAg==","n":-2,"d":-37,"tow":271507500,"h_accuracy":241,"crc":55690,"e":-2} +{"length":15,"gdop":155,"flags":6,"tdop":77,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"LOAuEJsAhwBNAEgAcgAG","tow":271507500,"crc":56597,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"LOAuEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271507500,"h_accuracy":0,"crc":28436,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"LOAuEP//","tow":271507500,"crc":4244} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgiQ4C4QAAAAAAE=","wn":2098,"tow":271507600,"crc":44043} +{"length":16,"flags":17,"ns":599999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EZDgLhDkBwMZAxgx/kXDIw==","day":25,"tow":271507600,"year":2020,"crc":34270,"minutes":24,"month":3,"seconds":49} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.60559532678202,"preamble":85,"sender":22963,"msg_type":522,"payload":"kOAuEEr5pell6kJAZtdzH1aSXsCjI5tLCJsxwAECWwQPBg==","lat":37.83123512844266,"tow":271507600,"h_accuracy":513,"crc":10728,"lon":-122.28650652229916} +{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"kOAuEAAAAAARAAAAGwAAAPEAygIPAg==","n":0,"d":27,"tow":271507600,"h_accuracy":241,"crc":21199,"e":17} +{"length":15,"gdop":155,"flags":6,"tdop":77,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"kOAuEJsAhwBNAEgAcgAG","tow":271507600,"crc":58990,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"kOAuEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271507600,"h_accuracy":0,"crc":64392,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"kOAuEP//","tow":271507600,"crc":57563} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"Mgj04C4QAAAAAAE=","wn":2098,"tow":271507700,"crc":51393} +{"length":16,"flags":17,"ns":699999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EfTgLhDkBwMZAxgx/ia5KQ==","day":25,"tow":271507700,"year":2020,"crc":11666,"minutes":24,"month":3,"seconds":49} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.603921233537086,"preamble":85,"sender":22963,"msg_type":522,"payload":"9OAuEFuQuOll6kJAj+JLH1aSXsDaZvuUmpoxwAECWwQPBg==","lat":37.83123513709935,"tow":271507700,"h_accuracy":513,"crc":53143,"lon":-122.28650648508686} +{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"9OAuEAIAAAAAAAAAFQAAAPEAygIPAg==","n":2,"d":21,"tow":271507700,"h_accuracy":241,"crc":15960,"e":0} +{"length":15,"gdop":155,"flags":6,"tdop":77,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"9OAuEJsAhwBNAEgAcgAG","tow":271507700,"crc":51905,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"9OAuEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271507700,"h_accuracy":0,"crc":58174,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"9OAuEP//","tow":271507700,"crc":47458} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"message_type":26,"length":34,"data":[33,1,200,6,128,54,7,176,68,129,228,15,32,105,2,200,14,64,84,1,160,53,129,232,15,48,0],"preamble":85,"sender":22963,"msg_type":30583,"payload":"gwIT4C4QGiEByAaANgewRIHkDyBpAsgOQFQBoDWB6A8wAA==","tow":271507475,"crc":37406,"sid":{"sat":131,"code":2}} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MghY4S4QAAAAAAE=","wn":2098,"tow":271507800,"crc":8780} +{"length":16,"flags":17,"ns":799999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EVjhLhDkBwMZAxgx/gevLw==","day":25,"tow":271507800,"year":2020,"crc":23527,"minutes":24,"month":3,"seconds":49} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.596527999495738,"preamble":85,"sender":22963,"msg_type":522,"payload":"WOEuEP3xwOll6kJAIUwjH1aSXsCF+xgPtpgxwAECWwQPBg==","lat":37.83123514100223,"tow":271507800,"h_accuracy":513,"crc":7717,"lon":-122.2865064472867} +{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"WOEuEPv////9////9P////EAygIPAg==","n":-5,"d":-12,"tow":271507800,"h_accuracy":241,"crc":19205,"e":-3} +{"length":15,"gdop":155,"flags":6,"tdop":77,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"WOEuEJsAhwBNAEgAcgAG","tow":271507800,"crc":50257,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"WOEuEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271507800,"h_accuracy":0,"crc":7954,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"WOEuEP//","tow":271507800,"crc":63992} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":237,"states":[{"cn0":214,"mesid":{"sat":5,"code":0}},{"cn0":181,"mesid":{"sat":21,"code":0}},{"cn0":190,"mesid":{"sat":2,"code":0}},{"cn0":167,"mesid":{"sat":31,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":219,"mesid":{"sat":25,"code":0}},{"cn0":207,"mesid":{"sat":12,"code":0}},{"cn0":214,"mesid":{"sat":29,"code":0}},{"cn0":207,"mesid":{"sat":18,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":206,"mesid":{"sat":131,"code":2}},{"cn0":204,"mesid":{"sat":25,"code":1}},{"cn0":186,"mesid":{"sat":12,"code":1}},{"cn0":151,"mesid":{"sat":31,"code":1}},{"cn0":195,"mesid":{"sat":18,"code":1}},{"cn0":194,"mesid":{"sat":29,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":194,"mesid":{"sat":5,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":214,"mesid":{"sat":11,"code":3}},{"cn0":176,"mesid":{"sat":9,"code":3}},{"cn0":173,"mesid":{"sat":20,"code":3}},{"cn0":206,"mesid":{"sat":5,"code":3}},{"cn0":207,"mesid":{"sat":10,"code":3}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":183,"mesid":{"sat":4,"code":3}},{"cn0":203,"mesid":{"sat":21,"code":3}},{"cn0":170,"mesid":{"sat":9,"code":4}},{"cn0":205,"mesid":{"sat":20,"code":4}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":199,"mesid":{"sat":11,"code":4}},{"cn0":195,"mesid":{"sat":5,"code":4}},{"cn0":188,"mesid":{"sat":0,"code":4}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":177,"mesid":{"sat":4,"code":4}},{"cn0":200,"mesid":{"sat":35,"code":12}},{"cn0":168,"mesid":{"sat":26,"code":12}},{"cn0":159,"mesid":{"sat":34,"code":12}},{"cn0":189,"mesid":{"sat":24,"code":12}},{"cn0":157,"mesid":{"sat":25,"code":12}},{"cn0":185,"mesid":{"sat":12,"code":12}},{"cn0":184,"mesid":{"sat":19,"code":12}},{"cn0":191,"mesid":{"sat":22,"code":12}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":209,"mesid":{"sat":12,"code":13}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":194,"mesid":{"sat":12,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":191,"mesid":{"sat":25,"code":14}},{"cn0":188,"mesid":{"sat":11,"code":14}},{"cn0":204,"mesid":{"sat":24,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":158,"mesid":{"sat":31,"code":14}},{"cn0":154,"mesid":{"sat":33,"code":14}},{"cn0":201,"mesid":{"sat":25,"code":20}},{"cn0":215,"mesid":{"sat":24,"code":20}},{"cn0":194,"mesid":{"sat":11,"code":20}},{"cn0":173,"mesid":{"sat":31,"code":20}},{"cn0":207,"mesid":{"sat":12,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":169,"mesid":{"sat":33,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}}],"preamble":85,"sender":22963,"msg_type":97,"payload":"BQDWFQC1AgC+HwCnAAAAAAAAGQDbDADPHQDWEgDPAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwLOGQHMDAG6HwGXEgHDHQHCAAAABQHCAAAAAAAAAAAAAAAACwPWCQOwFAOtBQPOCgPPAAAABAO3FQPLCQSqFATNAAAACwTHBQTDAAS8AAAABASxIwzIGgyoIgyfGAy9GQydDAy5Ewy4Fgy/AAAADA3RAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADA7CAAAAGQ6/Cw68GA7MAAAAHw6eIQ6aGRTJGBTXCxTCHxStDBTPAAAAIRSpAAAA","crc":36631} +{"length":136,"preamble":85,"sender":22963,"msg_type":151,"payload":"AgAaHgUALDUMAFEtFQB9GRkAbUYaAKEBHQChNx8AlQ4EAxYWBQMyIQYDTggJA18OCgNxKQsDmCUMA6oDEwMiBxQDCzEVA5UlDAyUKRMMIyAUDA8CFgxDIxgMgiMZDJ0OGgxnFR0MLAAiDI4RIwwiLQsOizIMDg88GA5sNhkOlykfDlURIQ4fDw==","crc":41336,"azel":[{"el":30,"az":26,"sid":{"sat":2,"code":0}},{"el":53,"az":44,"sid":{"sat":5,"code":0}},{"el":45,"az":81,"sid":{"sat":12,"code":0}},{"el":25,"az":125,"sid":{"sat":21,"code":0}},{"el":70,"az":109,"sid":{"sat":25,"code":0}},{"el":1,"az":161,"sid":{"sat":26,"code":0}},{"el":55,"az":161,"sid":{"sat":29,"code":0}},{"el":14,"az":149,"sid":{"sat":31,"code":0}},{"el":22,"az":22,"sid":{"sat":4,"code":3}},{"el":33,"az":50,"sid":{"sat":5,"code":3}},{"el":8,"az":78,"sid":{"sat":6,"code":3}},{"el":14,"az":95,"sid":{"sat":9,"code":3}},{"el":41,"az":113,"sid":{"sat":10,"code":3}},{"el":37,"az":152,"sid":{"sat":11,"code":3}},{"el":3,"az":170,"sid":{"sat":12,"code":3}},{"el":7,"az":34,"sid":{"sat":19,"code":3}},{"el":49,"az":11,"sid":{"sat":20,"code":3}},{"el":37,"az":149,"sid":{"sat":21,"code":3}},{"el":41,"az":148,"sid":{"sat":12,"code":12}},{"el":32,"az":35,"sid":{"sat":19,"code":12}},{"el":2,"az":15,"sid":{"sat":20,"code":12}},{"el":35,"az":67,"sid":{"sat":22,"code":12}},{"el":35,"az":130,"sid":{"sat":24,"code":12}},{"el":14,"az":157,"sid":{"sat":25,"code":12}},{"el":21,"az":103,"sid":{"sat":26,"code":12}},{"el":0,"az":44,"sid":{"sat":29,"code":12}},{"el":17,"az":142,"sid":{"sat":34,"code":12}},{"el":45,"az":34,"sid":{"sat":35,"code":12}},{"el":50,"az":139,"sid":{"sat":11,"code":14}},{"el":60,"az":15,"sid":{"sat":12,"code":14}},{"el":54,"az":108,"sid":{"sat":24,"code":14}},{"el":41,"az":151,"sid":{"sat":25,"code":14}},{"el":17,"az":85,"sid":{"sat":31,"code":14}},{"el":15,"az":31,"sid":{"sat":33,"code":14}}]} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"Mgi84S4QAAAAAAE=","wn":2098,"tow":271507900,"crc":63796} +{"length":16,"flags":17,"ns":899999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EbzhLhDkBwMZAxgx/uikNQ==","day":25,"tow":271507900,"year":2020,"crc":49371,"minutes":24,"month":3,"seconds":49} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.590565844936364,"preamble":85,"sender":22963,"msg_type":522,"payload":"vOEuENN67+ll6kJAVi/3HlaSXsDkIr5SL5cxwAECWwQPBg==","lat":37.831235162671554,"tow":271507900,"h_accuracy":513,"crc":48420,"lon":-122.28650640620376} +{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"vOEuEBYAAAAAAAAADQAAAPEAygIPAg==","n":22,"d":13,"tow":271507900,"h_accuracy":241,"crc":48338,"e":0} +{"length":15,"gdop":155,"flags":6,"tdop":77,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"vOEuEJsAhwBNAEgAcgAG","tow":271507900,"crc":48364,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"vOEuEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271507900,"h_accuracy":0,"crc":48433,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"vOEuEP//","tow":271507900,"crc":29793} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":249,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":85,"i":110562955},"flags":15,"cn0":214,"P":1051971406,"D":{"f":189,"i":-180},"lock":15,"sid":{"sat":5,"code":0}},{"L":{"f":34,"i":121839968},"flags":15,"cn0":181,"P":1159268762,"D":{"f":133,"i":2173},"lock":15,"sid":{"sat":21,"code":0}},{"L":{"f":6,"i":123320980},"flags":15,"cn0":190,"P":1173359743,"D":{"f":99,"i":-2479},"lock":15,"sid":{"sat":2,"code":0}},{"L":{"f":90,"i":128735631},"flags":15,"cn0":168,"P":1224878831,"D":{"f":151,"i":-395},"lock":15,"sid":{"sat":31,"code":0}},{"L":{"f":115,"i":107815437},"flags":15,"cn0":219,"P":1025829709,"D":{"f":246,"i":-1124},"lock":15,"sid":{"sat":25,"code":0}},{"L":{"f":117,"i":114077992},"flags":15,"cn0":207,"P":1085415888,"D":{"f":226,"i":-2966},"lock":15,"sid":{"sat":12,"code":0}},{"L":{"f":196,"i":110771309},"flags":15,"cn0":214,"P":1053953895,"D":{"f":76,"i":1485},"lock":15,"sid":{"sat":29,"code":0}},{"L":{"f":173,"i":84012049},"flags":15,"cn0":204,"P":1025829766,"D":{"f":211,"i":-876},"lock":15,"sid":{"sat":25,"code":1}},{"L":{"f":207,"i":88891973},"flags":15,"cn0":186,"P":1085415818,"D":{"f":49,"i":-2310},"lock":15,"sid":{"sat":12,"code":1}},{"L":{"f":93,"i":100313481},"flags":15,"cn0":150,"P":1224878743,"D":{"f":238,"i":-305},"lock":15,"sid":{"sat":31,"code":1}},{"L":{"f":33,"i":86315308},"flags":15,"cn0":194,"P":1053953785,"D":{"f":248,"i":1157},"lock":15,"sid":{"sat":29,"code":1}},{"L":{"f":118,"i":86152981},"flags":15,"cn0":194,"P":1051971338,"D":{"f":128,"i":-141},"lock":15,"sid":{"sat":5,"code":1}},{"L":{"f":169,"i":112944629},"flags":15,"cn0":214,"P":1056802087,"D":{"f":78,"i":1171},"lock":15,"sid":{"sat":11,"code":3}},{"L":{"f":72,"i":123306679},"flags":15,"cn0":176,"P":1154568678,"D":{"f":47,"i":-4406},"lock":15,"sid":{"sat":9,"code":3}}],"payload":"IOIuEAAAAAAyCEBOz7M+iw6XBlVM/73WDw8FAJoJGUVgIUMHIn0IhbUPDxUAfwzwRZS6WQcGUfZjvg8PAgDvKgJJj1msB1p1/peoDw8fAE3rJD0NIm0Gc5z79tsPDxkA0CGyQCixzAZ1avTizw8PDABnD9I+bTyaBsTNBUzWDw8dAIbrJD0R7AEFrZT808wPDxkBiiGyQEViTAXP+vYxug8PDAGXKgJJian6BV3P/u6WDw8fAfkO0j4sESUFIYUE+MIPDx0BCs+zPhWXIgV2c/+Awg8PBQEnhf0+9WW7BqmTBE7WDw8LA+ZR0US3glkHSMruL7APDwkD","header":{"n_obs":64,"t":{"ns_residual":0,"wn":2098,"tow":271508000}},"crc":44064} +{"length":249,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":245,"i":109763062},"flags":15,"cn0":173,"P":1026311976,"D":{"f":31,"i":-1209},"lock":15,"sid":{"sat":20,"code":3}},{"L":{"f":13,"i":114874001},"flags":15,"cn0":206,"P":1074477501,"D":{"f":91,"i":2203},"lock":15,"sid":{"sat":5,"code":3}},{"L":{"f":176,"i":111584642},"flags":15,"cn0":207,"P":1046649400,"D":{"f":156,"i":-3041},"lock":15,"sid":{"sat":10,"code":3}},{"L":{"f":184,"i":120430356},"flags":15,"cn0":183,"P":1124475730,"D":{"f":21,"i":-1311},"lock":15,"sid":{"sat":4,"code":3}},{"L":{"f":255,"i":113429991},"flags":15,"cn0":203,"P":1059854825,"D":{"f":67,"i":1623},"lock":15,"sid":{"sat":21,"code":3}},{"L":{"f":163,"i":95905204},"flags":15,"cn0":170,"P":1154568822,"D":{"f":251,"i":-3429},"lock":15,"sid":{"sat":9,"code":4}},{"L":{"f":235,"i":85371306},"flags":15,"cn0":205,"P":1026312336,"D":{"f":46,"i":-941},"lock":15,"sid":{"sat":20,"code":4}},{"L":{"f":103,"i":87845833},"flags":15,"cn0":199,"P":1056802332,"D":{"f":122,"i":912},"lock":15,"sid":{"sat":11,"code":4}},{"L":{"f":14,"i":89346449},"flags":15,"cn0":195,"P":1074477831,"D":{"f":109,"i":1713},"lock":15,"sid":{"sat":5,"code":4}},{"L":{"f":113,"i":93668045},"flags":15,"cn0":177,"P":1124475910,"D":{"f":72,"i":-1019},"lock":15,"sid":{"sat":4,"code":4}},{"L":{"f":134,"i":121570556},"flags":15,"cn0":200,"P":1167317078,"D":{"f":89,"i":-1500},"lock":15,"sid":{"sat":35,"code":12}},{"L":{"f":215,"i":129193075},"flags":15,"cn0":168,"P":1240508618,"D":{"f":222,"i":-3010},"lock":15,"sid":{"sat":26,"code":12}},{"L":{"f":53,"i":132960101},"flags":15,"cn0":159,"P":1276679248,"D":{"f":71,"i":2249},"lock":15,"sid":{"sat":34,"code":12}},{"L":{"f":70,"i":125143177},"flags":15,"cn0":189,"P":1201621598,"D":{"f":190,"i":-1301},"lock":15,"sid":{"sat":24,"code":12}}],"payload":"IOIuEAAAAAAyCEEoRyw99tmKBvVH+x+tDw8UA705C0CR1tgGDZsIW84PDwUDOJpiPoKlpgawH/Sczw8PCgNSIwZDFJ8tB7jh+hW3Dw8EA+kZLD/nzcIG/1cGQ8sPDxUDdlLRRLRltwWjm/L7qg8PCQSQSCw9qqkWBetT/C7NDw8UBByG/T7JazwFZ5ADescPDwsEBzsLQJFRUwUOsQZtww8PBQQGJAZDzUKVBXEF/EixDw8EBFbYk0X8BD8HhiT6WcgPDyMMyqjwSXNUswfXPvTeqA8PGgxQlBhMZc/sBzXJCEefDw8iDF5Kn0eJiHUHRuv6vr0PDxgM","header":{"n_obs":65,"t":{"ns_residual":0,"wn":2098,"tow":271508000}},"crc":11311} +{"length":249,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":33,"i":134680479},"flags":15,"cn0":157,"P":1293198502,"D":{"f":129,"i":1327},"lock":15,"sid":{"sat":25,"code":12}},{"L":{"f":218,"i":121110059},"flags":15,"cn0":185,"P":1162895666,"D":{"f":10,"i":1611},"lock":15,"sid":{"sat":12,"code":12}},{"L":{"f":245,"i":124513157},"flags":15,"cn0":184,"P":1195572099,"D":{"f":15,"i":-285},"lock":15,"sid":{"sat":19,"code":12}},{"L":{"f":41,"i":124719355},"flags":15,"cn0":191,"P":1197552022,"D":{"f":33,"i":2389},"lock":15,"sid":{"sat":22,"code":12}},{"L":{"f":50,"i":93649989},"flags":15,"cn0":209,"P":1162895589,"D":{"f":90,"i":1246},"lock":15,"sid":{"sat":12,"code":13}},{"L":{"f":14,"i":116419738},"flags":15,"cn0":194,"P":1107696952,"D":{"f":61,"i":-1028},"lock":15,"sid":{"sat":12,"code":14}},{"L":{"f":236,"i":132481572},"flags":15,"cn0":191,"P":1260520188,"D":{"f":114,"i":1089},"lock":15,"sid":{"sat":25,"code":14}},{"L":{"f":167,"i":125429031},"flags":15,"cn0":188,"P":1193417508,"D":{"f":216,"i":1047},"lock":15,"sid":{"sat":11,"code":14}},{"L":{"f":178,"i":118403218},"flags":15,"cn0":204,"P":1126569045,"D":{"f":25,"i":-1743},"lock":15,"sid":{"sat":24,"code":14}},{"L":{"f":183,"i":143301960},"flags":15,"cn0":158,"P":1363472828,"D":{"f":161,"i":-3173},"lock":15,"sid":{"sat":31,"code":14}},{"L":{"f":52,"i":144511062},"flags":15,"cn0":153,"P":1374977034,"D":{"f":248,"i":-2141},"lock":15,"sid":{"sat":33,"code":14}},{"L":{"f":251,"i":101511852},"flags":15,"cn0":201,"P":1260520148,"D":{"f":207,"i":835},"lock":15,"sid":{"sat":25,"code":20}},{"L":{"f":196,"i":90724607},"flags":15,"cn0":215,"P":1126569580,"D":{"f":49,"i":-1335},"lock":15,"sid":{"sat":24,"code":20}},{"L":{"f":37,"i":96107937},"flags":15,"cn0":194,"P":1193417313,"D":{"f":184,"i":802},"lock":15,"sid":{"sat":11,"code":20}}],"payload":"IOIuEAAAAAAyCEKmpBRNnw8HCCEvBYGdDw8ZDDJhUEUr/jcH2ksGCrkPDwwMg/tCR4Xrawf14/4PuA8PEwyWMWFH+xBvBylVCSG/Dw8WDOVgUEVF/JQFMt4EWtEPDwwNOB0GQpps8AYO/Ps9wg8PDA78AiJLJILlB+xBBHK/Dw8ZDiQbIkcn5XkHpxcE2LwPDwsOVRQmQ5KwDgeyMfkZzA8PGA688URRSJ2KCLeb86GeDw8fDgp89FFWEJ0INKP3+JkPDyEO1AIiS6zyDAb7QwPPyQ8PGRRsFiZD/1hoBcTJ+jHXDw8YFGEaIkehfboFJSIDuMIPDwsU","header":{"n_obs":66,"t":{"ns_residual":0,"wn":2098,"tow":271508000}},"crc":11695} +{"length":62,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":150,"i":109802842},"flags":15,"cn0":173,"P":1363472864,"D":{"f":67,"i":-2431},"lock":15,"sid":{"sat":31,"code":20}},{"L":{"f":246,"i":89204764},"flags":15,"cn0":207,"P":1107696792,"D":{"f":59,"i":-787},"lock":15,"sid":{"sat":12,"code":20}},{"L":{"f":245,"i":110729325},"flags":15,"cn0":170,"P":1374976992,"D":{"f":219,"i":-1643},"lock":15,"sid":{"sat":33,"code":20}}],"payload":"IOIuEAAAAAAyCEPg8URRWnWLBpaB9kOtDw8fFJgcBkIcKFEF9u38O88PDwwU4Hv0UW2YmQb1lfnbqg8PIRQ=","header":{"n_obs":67,"t":{"ns_residual":0,"wn":2098,"tow":271508000}},"crc":45399} +{"length":9,"l2ca_bias":0,"preamble":85,"l2p_bias":0,"sender":22963,"msg_type":117,"payload":"/wAAAAAAAAAA","l1ca_bias":0,"mask":255,"crc":49809,"l1p_bias":0} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"Mggg4i4QAAAAAAE=","wn":2098,"tow":271508000,"crc":26653} +{"length":16,"flags":17,"ns":999999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"ESDiLhDkBwMZAxgx/smaOw==","day":25,"tow":271508000,"year":2020,"crc":40373,"minutes":24,"month":3,"seconds":49} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.582901876886808,"preamble":85,"sender":22963,"msg_type":522,"payload":"IOIuEDfB6+ll6kJAWnPMHlaSXsCAAbIOOZUxwAECWwQPBg==","lat":37.83123516093695,"tow":271508000,"h_accuracy":513,"crc":33654,"lon":-122.28650636640432} +{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"IOIuEPz////8////+v////EAygIPAg==","n":-4,"d":-6,"tow":271508000,"h_accuracy":241,"crc":52076,"e":-4} +{"length":15,"gdop":155,"flags":6,"tdop":77,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"IOIuEJsAhwBNAEgAcgAG","tow":271508000,"crc":38688,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"IOIuEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271508000,"h_accuracy":0,"crc":11579,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"IOIuEP//","tow":271508000,"crc":24564} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":4,"flags":2147616000,"preamble":85,"sender":22963,"msg_type":65535,"payload":"AAUCgA==","crc":40942} +{"length":24,"z":3890655.0240602265,"preamble":85,"sender":22963,"msg_type":72,"payload":"UO0a3iqORMHK1UJhIkRQwc9nFIPvrk1B","crc":2168,"x":-2694229.735196747,"y":-4264073.519704292} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"bWFpbgAAAAAAAAAAAAAAAAAAAAAAAAx1AAA=","name":"main\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":47991,"stack_free":29964,"cpu":0} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"aWRsZQAAAAAAAAAAAAAAAAAAAAA8AHwAAAA=","name":"idle\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":24639,"stack_free":124,"cpu":60} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"cnBtc2cAAAAAAAAAAAAAAAAAAAABANQNAAA=","name":"rpmsg\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":26340,"stack_free":3540,"cpu":1} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"U0JQAAAAAAAAAAAAAAAAAAAAAAAAAPz/AAA=","name":"SBP\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":51784,"stack_free":65532,"cpu":0} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"TkFQAAAAAAAAAAAAAAAAAAAAAAAAAASAAAA=","name":"NAP\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":33651,"stack_free":32772,"cpu":0} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"bWFuYWdlIFBWAAAAAAAAAAAAAAAAACQEAAA=","name":"manage PV\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":29877,"stack_free":1060,"cpu":0} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"SU1VAAAAAAAAAAAAAAAAAAAAAAAAAPQHAAA=","name":"IMU\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":14252,"stack_free":2036,"cpu":0} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"SU1VIGF1eAAAAAAAAAAAAAAAAAAAAEwIAAA=","name":"IMU aux\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":18976,"stack_free":2124,"cpu":0} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"bmRiAAAAAAAAAAAAAAAAAAAAAAAAAFAMAAA=","name":"ndb\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":26120,"stack_free":3152,"cpu":0} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"TkFQIFRyYWNraW5nAAAAAAAAAAAqAdR3AAA=","name":"NAP Tracking\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":44290,"stack_free":30676,"cpu":298} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"ZGVjb2RlAAAAAAAAAAAAAAAAAAAKANQGAAA=","name":"decode\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":6098,"stack_free":1748,"cpu":10} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"bWFuYWdlIGFjcQAAAAAAAAAAAADTAaR3AAA=","name":"manage acq\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":11131,"stack_free":30628,"cpu":467} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"c3lzdGVtIG1vbml0b3IAAAAAAAAAACwGAAA=","name":"system monitor\u0000\u0000\u0000\u0000\u0000\u0000","crc":58531,"stack_free":1580,"cpu":0} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"V2F0Y2hkb2cAAAAAAAAAAAAAAAAAAOQDAAA=","name":"Watchdog\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":44438,"stack_free":996,"cpu":0} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"c3RhcmxpbmcAAAAAAAAAAAAAAACWAPz/AAA=","name":"starling\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":61599,"stack_free":65532,"cpu":150} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"bWVfY2FsY19wdnQAAAAAAAAAAAAJAIwjAAA=","name":"me_calc_pvt\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":57561,"stack_free":9100,"cpu":9} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"UFBTAAAAAAAAAAAAAAAAAAAAAAAAAEgHAAA=","name":"PPS\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":38576,"stack_free":1864,"cpu":0} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"c3BlY3RydW0gYW5hbHl6ZXIAAAAAANQPAAA=","name":"spectrum analyzer\u0000\u0000\u0000","crc":50933,"stack_free":4052,"cpu":0} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgiE4i4QAAAAAAE=","wn":2098,"tow":271508100,"crc":60604} +{"length":16,"flags":17,"ns":99999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EYTiLhDkBwMZAxgy/uD1BQ==","day":25,"tow":271508100,"year":2020,"crc":62733,"minutes":24,"month":3,"seconds":50} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.57576080885312,"preamble":85,"sender":22963,"msg_type":522,"payload":"hOIuEB13vull6kJAcJGGHlaSXsC4V3QPZZMxwAECWwQPBg==","lat":37.8312351398474,"tow":271508100,"h_accuracy":513,"crc":49497,"lon":-122.2865063013212} +{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"hOIuEO3///8TAAAACwAAAPEAygIPAg==","n":-19,"d":11,"tow":271508100,"h_accuracy":241,"crc":48204,"e":19} +{"length":15,"gdop":155,"flags":6,"tdop":77,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"hOIuEJsAhwBNAEgAcgAG","tow":271508100,"crc":50580,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"hOIuEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271508100,"h_accuracy":0,"crc":23106,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"hOIuEP//","tow":271508100,"crc":47229} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"Mgjo4i4QAAAAAAE=","wn":2098,"tow":271508200,"crc":41353} +{"length":16,"flags":17,"ns":199999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EejiLhDkBwMZAxgy/sHrCw==","day":25,"tow":271508200,"year":2020,"crc":36515,"minutes":24,"month":3,"seconds":50} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.567721936336202,"preamble":85,"sender":22963,"msg_type":522,"payload":"6OIuEOvfxOll6kJALrBPHlaSXsApyY05VpExwAECWwQPBg==","lat":37.83123514283201,"tow":271508200,"h_accuracy":513,"crc":62222,"lon":-122.2865062502103} +{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"6OIuEA0AAAD9////7/////EAygIPAg==","n":13,"d":-17,"tow":271508200,"h_accuracy":241,"crc":2477,"e":-3} +{"length":15,"gdop":155,"flags":6,"tdop":77,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"6OIuEJsAhwBNAEgAcgAG","tow":271508200,"crc":52862,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"6OIuEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271508200,"h_accuracy":0,"crc":7255,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"6OIuEP//","tow":271508200,"crc":60550} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MghM4y4QAAAAAAE=","wn":2098,"tow":271508300,"crc":25339} +{"length":16,"flags":17,"ns":299999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EUzjLhDkBwMZAxgy/qLhEQ==","day":25,"tow":271508300,"year":2020,"crc":14845,"minutes":24,"month":3,"seconds":50} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.56216150819347,"preamble":85,"sender":22963,"msg_type":522,"payload":"TOMuEJaI2Oll6kJAO9ESHlaSXsDQwgzR6Y8xwAECWwQPBg==","lat":37.83123515198638,"tow":271508300,"h_accuracy":513,"crc":33663,"lon":-122.28650619351986} +{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"TOMuEAoAAAADAAAAFAAAAPEAygIPAg==","n":10,"d":20,"tow":271508300,"h_accuracy":241,"crc":28727,"e":3} +{"length":15,"gdop":155,"flags":6,"tdop":77,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"TOMuEJsAhwBNAEgAcgAG","tow":271508300,"crc":59307,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"TOMuEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271508300,"h_accuracy":0,"crc":48856,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"TOMuEP//","tow":271508300,"crc":41310} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":237,"states":[{"cn0":214,"mesid":{"sat":5,"code":0}},{"cn0":181,"mesid":{"sat":21,"code":0}},{"cn0":190,"mesid":{"sat":2,"code":0}},{"cn0":168,"mesid":{"sat":31,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":218,"mesid":{"sat":25,"code":0}},{"cn0":206,"mesid":{"sat":12,"code":0}},{"cn0":214,"mesid":{"sat":29,"code":0}},{"cn0":207,"mesid":{"sat":18,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":206,"mesid":{"sat":131,"code":2}},{"cn0":204,"mesid":{"sat":25,"code":1}},{"cn0":186,"mesid":{"sat":12,"code":1}},{"cn0":150,"mesid":{"sat":31,"code":1}},{"cn0":195,"mesid":{"sat":18,"code":1}},{"cn0":194,"mesid":{"sat":29,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":193,"mesid":{"sat":5,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":214,"mesid":{"sat":100,"code":3}},{"cn0":176,"mesid":{"sat":98,"code":3}},{"cn0":173,"mesid":{"sat":102,"code":3}},{"cn0":206,"mesid":{"sat":101,"code":3}},{"cn0":207,"mesid":{"sat":93,"code":3}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":183,"mesid":{"sat":106,"code":3}},{"cn0":202,"mesid":{"sat":104,"code":3}},{"cn0":170,"mesid":{"sat":98,"code":4}},{"cn0":205,"mesid":{"sat":102,"code":4}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":199,"mesid":{"sat":100,"code":4}},{"cn0":195,"mesid":{"sat":101,"code":4}},{"cn0":187,"mesid":{"sat":104,"code":4}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":176,"mesid":{"sat":106,"code":4}},{"cn0":200,"mesid":{"sat":35,"code":12}},{"cn0":169,"mesid":{"sat":26,"code":12}},{"cn0":160,"mesid":{"sat":34,"code":12}},{"cn0":189,"mesid":{"sat":24,"code":12}},{"cn0":157,"mesid":{"sat":25,"code":12}},{"cn0":185,"mesid":{"sat":12,"code":12}},{"cn0":184,"mesid":{"sat":19,"code":12}},{"cn0":191,"mesid":{"sat":22,"code":12}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":209,"mesid":{"sat":12,"code":13}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":195,"mesid":{"sat":12,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":192,"mesid":{"sat":25,"code":14}},{"cn0":188,"mesid":{"sat":11,"code":14}},{"cn0":204,"mesid":{"sat":24,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":159,"mesid":{"sat":31,"code":14}},{"cn0":154,"mesid":{"sat":33,"code":14}},{"cn0":201,"mesid":{"sat":25,"code":20}},{"cn0":215,"mesid":{"sat":24,"code":20}},{"cn0":194,"mesid":{"sat":11,"code":20}},{"cn0":173,"mesid":{"sat":31,"code":20}},{"cn0":207,"mesid":{"sat":12,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":169,"mesid":{"sat":33,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}}],"preamble":85,"sender":22963,"msg_type":97,"payload":"BQDWFQC1AgC+HwCoAAAAAAAAGQDaDADOHQDWEgDPAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwLOGQHMDAG6HwGWEgHDHQHCAAAABQHBAAAAAAAAAAAAAAAAZAPWYgOwZgOtZQPOXQPPAAAAagO3aAPKYgSqZgTNAAAAZATHZQTDaAS7AAAAagSwIwzIGgypIgygGAy9GQydDAy5Ewy4Fgy/AAAADA3RAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADA7DAAAAGQ7ACw68GA7MAAAAHw6fIQ6aGRTJGBTXCxTCHxStDBTPAAAAIRSpAAAA","crc":46534} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"Mgiw4y4QAAAAAAE=","wn":2098,"tow":271508400,"crc":50050} +{"length":16,"flags":17,"ns":399999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EbDjLhDkBwMZAxgy/oPXFw==","day":25,"tow":271508400,"year":2020,"crc":22156,"minutes":24,"month":3,"seconds":50} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.554971704011077,"preamble":85,"sender":22963,"msg_type":522,"payload":"sOMuEOEi1ull6kJAesPbHVaSXsDX7iagEo4xwAECWwQPBg==","lat":37.83123515087005,"tow":271508400,"h_accuracy":513,"crc":55776,"lon":-122.28650614224708} +{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"sOMuEAIAAAAFAAAA9v////EAygIPAg==","n":2,"d":-10,"tow":271508400,"h_accuracy":241,"crc":1875,"e":5} +{"length":15,"gdop":155,"flags":6,"tdop":77,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"sOMuEJsAhwBNAEgAcgAG","tow":271508400,"crc":63193,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"sOMuEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271508400,"h_accuracy":0,"crc":65310,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"sOMuEP//","tow":271508400,"crc":15105} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":9,"l2ca_bias":0,"preamble":85,"l2p_bias":0,"sender":22963,"msg_type":117,"payload":"/wAAAAAAAAAA","l1ca_bias":0,"mask":255,"crc":49809,"l1p_bias":0} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MggU5C4QAAAAAAE=","wn":2098,"tow":271508500,"crc":32827} +{"length":16,"flags":17,"ns":499999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"ERTkLhDkBwMZAxgy/mTNHQ==","day":25,"tow":271508500,"year":2020,"crc":7277,"minutes":24,"month":3,"seconds":50} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.553830878594173,"preamble":85,"sender":22963,"msg_type":522,"payload":"FOQuEASh4+ll6kJA8dG5HVaSXsCxE0fcx40xwAECWwQPBg==","lat":37.83123515715309,"tow":271508500,"h_accuracy":513,"crc":25557,"lon":-122.28650611063473} +{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"FOQuEAIAAAD+////HQAAAPEAygIPAg==","n":2,"d":29,"tow":271508500,"h_accuracy":241,"crc":16440,"e":-2} +{"length":15,"gdop":155,"flags":6,"tdop":77,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"FOQuEJsAhwBNAEgAcgAG","tow":271508500,"crc":54379,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"FOQuEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271508500,"h_accuracy":0,"crc":33255,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"FOQuEP//","tow":271508500,"crc":47964} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"Mgh45C4QAAAAAAE=","wn":2098,"tow":271508600,"crc":52494} +{"length":16,"flags":17,"ns":599999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EXjkLhDkBwMZAxgy/kXDIw==","day":25,"tow":271508600,"year":2020,"crc":21219,"minutes":24,"month":3,"seconds":50} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.54568420707544,"preamble":85,"sender":22963,"msg_type":522,"payload":"eOQuEKTpxull6kJAZ52MHVaSXsAsVc/1sYsxwAECWwQPBg==","lat":37.831235143781015,"tow":271508600,"h_accuracy":513,"crc":57497,"lon":-122.28650606853408} +{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"eOQuEPX///8FAAAA2P////EAygIPAg==","n":-11,"d":-40,"tow":271508600,"h_accuracy":241,"crc":57736,"e":5} +{"length":15,"gdop":155,"flags":6,"tdop":77,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"eOQuEJsAhwBNAEgAcgAG","tow":271508600,"crc":57217,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"eOQuEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271508600,"h_accuracy":0,"crc":51186,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"eOQuEP//","tow":271508600,"crc":61351} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"message_type":3,"length":34,"data":[23,255,0,31,254,127,247,255,0,7,255,255,215,255,127,240,0,255,255,255,232,206,246,231,239,229,112],"preamble":85,"sender":22963,"msg_type":30583,"payload":"gwL14y4QAxf/AB/+f/f/AAf//9f/f/AA////6M725+/lcA==","tow":271508469,"crc":16960,"sid":{"sat":131,"code":2}} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"Mgjc5C4QAAAAAAE=","wn":2098,"tow":271508700,"crc":18863} +{"length":16,"flags":17,"ns":699999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EdzkLhDkBwMZAxgy/ia5KQ==","day":25,"tow":271508700,"year":2020,"crc":33972,"minutes":24,"month":3,"seconds":50} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.541121527093107,"preamble":85,"sender":22963,"msg_type":522,"payload":"3OQuEOxexell6kJAYih+HVaSXsDHBr7whooxwAECWwQPBg==","lat":37.831235143063026,"tow":271508700,"h_accuracy":513,"crc":7659,"lon":-122.28650605506985} +{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"3OQuEAkAAAD5////CgAAAPEAygIPAg==","n":9,"d":10,"tow":271508700,"h_accuracy":241,"crc":30755,"e":-7} +{"length":15,"gdop":155,"flags":6,"tdop":77,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"3OQuEJsAhwBNAEgAcgAG","tow":271508700,"crc":36149,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"3OQuEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271508700,"h_accuracy":0,"crc":45195,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"3OQuEP//","tow":271508700,"crc":2094} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MghA5S4QAAAAAAE=","wn":2098,"tow":271508800,"crc":22304} +{"length":16,"flags":17,"ns":799999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EUDlLhDkBwMZAxgy/gevLw==","day":25,"tow":271508800,"year":2020,"crc":8543,"minutes":24,"month":3,"seconds":50} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.539237037012033,"preamble":85,"sender":22963,"msg_type":522,"payload":"QOUuEGWypOll6kJAgW9oHVaSXsA1wj5wC4oxwAECWwQPBg==","lat":37.83123512784804,"tow":271508800,"h_accuracy":513,"crc":61392,"lon":-122.28650603483949} +{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"QOUuEP3///8EAAAAAwAAAPEAygIPAg==","n":-3,"d":3,"tow":271508800,"h_accuracy":241,"crc":29447,"e":4} +{"length":15,"gdop":155,"flags":6,"tdop":77,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"QOUuEJsAhwBNAEgAcgAG","tow":271508800,"crc":20539,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"QOUuEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271508800,"h_accuracy":0,"crc":39756,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"QOUuEP//","tow":271508800,"crc":26424} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":237,"states":[{"cn0":213,"mesid":{"sat":5,"code":0}},{"cn0":181,"mesid":{"sat":21,"code":0}},{"cn0":189,"mesid":{"sat":2,"code":0}},{"cn0":167,"mesid":{"sat":31,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":218,"mesid":{"sat":25,"code":0}},{"cn0":206,"mesid":{"sat":12,"code":0}},{"cn0":213,"mesid":{"sat":29,"code":0}},{"cn0":207,"mesid":{"sat":18,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":206,"mesid":{"sat":131,"code":2}},{"cn0":204,"mesid":{"sat":25,"code":1}},{"cn0":186,"mesid":{"sat":12,"code":1}},{"cn0":152,"mesid":{"sat":31,"code":1}},{"cn0":195,"mesid":{"sat":18,"code":1}},{"cn0":194,"mesid":{"sat":29,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":193,"mesid":{"sat":5,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":214,"mesid":{"sat":11,"code":3}},{"cn0":176,"mesid":{"sat":9,"code":3}},{"cn0":173,"mesid":{"sat":20,"code":3}},{"cn0":207,"mesid":{"sat":5,"code":3}},{"cn0":207,"mesid":{"sat":10,"code":3}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":182,"mesid":{"sat":4,"code":3}},{"cn0":202,"mesid":{"sat":21,"code":3}},{"cn0":170,"mesid":{"sat":9,"code":4}},{"cn0":206,"mesid":{"sat":20,"code":4}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":199,"mesid":{"sat":11,"code":4}},{"cn0":195,"mesid":{"sat":5,"code":4}},{"cn0":188,"mesid":{"sat":0,"code":4}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":177,"mesid":{"sat":4,"code":4}},{"cn0":200,"mesid":{"sat":35,"code":12}},{"cn0":168,"mesid":{"sat":26,"code":12}},{"cn0":159,"mesid":{"sat":34,"code":12}},{"cn0":189,"mesid":{"sat":24,"code":12}},{"cn0":156,"mesid":{"sat":25,"code":12}},{"cn0":186,"mesid":{"sat":12,"code":12}},{"cn0":184,"mesid":{"sat":19,"code":12}},{"cn0":191,"mesid":{"sat":22,"code":12}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":209,"mesid":{"sat":12,"code":13}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":194,"mesid":{"sat":12,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":191,"mesid":{"sat":25,"code":14}},{"cn0":188,"mesid":{"sat":11,"code":14}},{"cn0":204,"mesid":{"sat":24,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":159,"mesid":{"sat":31,"code":14}},{"cn0":153,"mesid":{"sat":33,"code":14}},{"cn0":201,"mesid":{"sat":25,"code":20}},{"cn0":215,"mesid":{"sat":24,"code":20}},{"cn0":194,"mesid":{"sat":11,"code":20}},{"cn0":173,"mesid":{"sat":31,"code":20}},{"cn0":207,"mesid":{"sat":12,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":170,"mesid":{"sat":33,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}}],"preamble":85,"sender":22963,"msg_type":97,"payload":"BQDVFQC1AgC9HwCnAAAAAAAAGQDaDADOHQDVEgDPAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwLOGQHMDAG6HwGYEgHDHQHCAAAABQHBAAAAAAAAAAAAAAAACwPWCQOwFAOtBQPPCgPPAAAABAO2FQPKCQSqFATOAAAACwTHBQTDAAS8AAAABASxIwzIGgyoIgyfGAy9GQycDAy6Ewy4Fgy/AAAADA3RAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADA7CAAAAGQ6/Cw68GA7MAAAAHw6fIQ6ZGRTJGBTXCxTCHxStDBTPAAAAIRSqAAAA","crc":9989} +{"length":136,"preamble":85,"sender":22963,"msg_type":151,"payload":"AgAaHgUALDUMAFEtFQB9GRkAbUYaAKEBHQChNx8AlQ4EAxYWBQMyIQYDTggJA18OCgNxKQsDmCUMA6oDEwMiBxQDCzEVA5UlDAyUKRMMIyAUDA8CFgxDIxgMgiMZDJ0OGgxnFR0MLAAiDI4RIwwiLQsOizIMDg88GA5sNhkOlykfDlURIQ4fDw==","crc":41336,"azel":[{"el":30,"az":26,"sid":{"sat":2,"code":0}},{"el":53,"az":44,"sid":{"sat":5,"code":0}},{"el":45,"az":81,"sid":{"sat":12,"code":0}},{"el":25,"az":125,"sid":{"sat":21,"code":0}},{"el":70,"az":109,"sid":{"sat":25,"code":0}},{"el":1,"az":161,"sid":{"sat":26,"code":0}},{"el":55,"az":161,"sid":{"sat":29,"code":0}},{"el":14,"az":149,"sid":{"sat":31,"code":0}},{"el":22,"az":22,"sid":{"sat":4,"code":3}},{"el":33,"az":50,"sid":{"sat":5,"code":3}},{"el":8,"az":78,"sid":{"sat":6,"code":3}},{"el":14,"az":95,"sid":{"sat":9,"code":3}},{"el":41,"az":113,"sid":{"sat":10,"code":3}},{"el":37,"az":152,"sid":{"sat":11,"code":3}},{"el":3,"az":170,"sid":{"sat":12,"code":3}},{"el":7,"az":34,"sid":{"sat":19,"code":3}},{"el":49,"az":11,"sid":{"sat":20,"code":3}},{"el":37,"az":149,"sid":{"sat":21,"code":3}},{"el":41,"az":148,"sid":{"sat":12,"code":12}},{"el":32,"az":35,"sid":{"sat":19,"code":12}},{"el":2,"az":15,"sid":{"sat":20,"code":12}},{"el":35,"az":67,"sid":{"sat":22,"code":12}},{"el":35,"az":130,"sid":{"sat":24,"code":12}},{"el":14,"az":157,"sid":{"sat":25,"code":12}},{"el":21,"az":103,"sid":{"sat":26,"code":12}},{"el":0,"az":44,"sid":{"sat":29,"code":12}},{"el":17,"az":142,"sid":{"sat":34,"code":12}},{"el":45,"az":34,"sid":{"sat":35,"code":12}},{"el":50,"az":139,"sid":{"sat":11,"code":14}},{"el":60,"az":15,"sid":{"sat":12,"code":14}},{"el":54,"az":108,"sid":{"sat":24,"code":14}},{"el":41,"az":151,"sid":{"sat":25,"code":14}},{"el":17,"az":85,"sid":{"sat":31,"code":14}},{"el":15,"az":31,"sid":{"sat":33,"code":14}}]} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"Mgik5S4QAAAAAAE=","wn":2098,"tow":271508900,"crc":35928} +{"length":16,"flags":17,"ns":899999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EaTlLhDkBwMZAxgy/uikNQ==","day":25,"tow":271508900,"year":2020,"crc":47715,"minutes":24,"month":3,"seconds":50} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.537121943396876,"preamble":85,"sender":22963,"msg_type":522,"payload":"pOUuEI5gj+ll6kJArxVWHVaSXsCC2tzSgIkxwAECWwQPBg==","lat":37.831235117920286,"tow":271508900,"h_accuracy":513,"crc":9870,"lon":-122.28650601774892} +{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"pOUuEAsAAAABAAAACgAAAPEAygIPAg==","n":11,"d":10,"tow":271508900,"h_accuracy":241,"crc":23569,"e":1} +{"length":15,"gdop":155,"flags":6,"tdop":77,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"pOUuEJsAhwBNAEgAcgAG","tow":271508900,"crc":10374,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"pOUuEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271508900,"h_accuracy":0,"crc":14703,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"pOUuEP//","tow":271508900,"crc":60065} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":249,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":164,"i":110563132},"flags":15,"cn0":213,"P":1051973095,"D":{"f":148,"i":-181},"lock":15,"sid":{"sat":5,"code":0}},{"L":{"f":169,"i":121837791},"flags":15,"cn0":180,"P":1159248042,"D":{"f":126,"i":2173},"lock":15,"sid":{"sat":21,"code":0}},{"L":{"f":226,"i":123323457},"flags":15,"cn0":189,"P":1173383311,"D":{"f":100,"i":-2481},"lock":15,"sid":{"sat":2,"code":0}},{"L":{"f":11,"i":128736022},"flags":15,"cn0":166,"P":1224882548,"D":{"f":184,"i":-394},"lock":15,"sid":{"sat":31,"code":0}},{"L":{"f":233,"i":107816558},"flags":15,"cn0":218,"P":1025840377,"D":{"f":163,"i":-1125},"lock":15,"sid":{"sat":25,"code":0}},{"L":{"f":244,"i":114080955},"flags":15,"cn0":206,"P":1085444091,"D":{"f":36,"i":-2966},"lock":15,"sid":{"sat":12,"code":0}},{"L":{"f":8,"i":110769823},"flags":15,"cn0":213,"P":1053939750,"D":{"f":211,"i":1484},"lock":15,"sid":{"sat":29,"code":0}},{"L":{"f":136,"i":84012923},"flags":15,"cn0":204,"P":1025840435,"D":{"f":128,"i":-877},"lock":15,"sid":{"sat":25,"code":1}},{"L":{"f":6,"i":88894283},"flags":15,"cn0":187,"P":1085444016,"D":{"f":35,"i":-2311},"lock":15,"sid":{"sat":12,"code":1}},{"L":{"f":206,"i":100313785},"flags":15,"cn0":153,"P":1224882467,"D":{"f":154,"i":-308},"lock":15,"sid":{"sat":31,"code":1}},{"L":{"f":160,"i":86314149},"flags":15,"cn0":194,"P":1053939648,"D":{"f":124,"i":1158},"lock":15,"sid":{"sat":29,"code":1}},{"L":{"f":160,"i":86153119},"flags":15,"cn0":194,"P":1051973028,"D":{"f":28,"i":-141},"lock":15,"sid":{"sat":5,"code":1}},{"L":{"f":131,"i":112943456},"flags":15,"cn0":214,"P":1056791109,"D":{"f":39,"i":1170},"lock":15,"sid":{"sat":11,"code":3}},{"L":{"f":88,"i":123311085},"flags":15,"cn0":176,"P":1154609929,"D":{"f":255,"i":-4407},"lock":15,"sid":{"sat":9,"code":3}}],"payload":"COYuEAAAAAAyCEDn1bM+PA+XBqRL/5TVDw8FAKq4GEXfGEMHqX0IfrQPDxUAj2jwRUHEWQfiT/ZkvQ8PAgB0OQJJFlusBwt2/rimDw8fAPkUJT1uJm0G6Zv7o9oPDxkA+4+yQLu8zAb0avQkzg8PDAAm2NE+nzaaBgjMBdPVDw8dADMVJT177wEFiJP8gMwPDxkBsI+yQEtrTAUG+fYjuw8PDAEjOQJJuar6Bc7M/pqZDw8fAcDX0T6lDCUFoIYEfMIPDx0BpNWzPp+XIgWgc/8cwg8PBQFFWv0+YGG7BoOSBCfWDw8LAwnz0UTtk1kHWMnu/7APDwkD","header":{"n_obs":64,"t":{"ns_residual":0,"wn":2098,"tow":271509000}},"crc":11696} +{"length":249,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":189,"i":109764270},"flags":15,"cn0":173,"P":1026323275,"D":{"f":67,"i":-1210},"lock":15,"sid":{"sat":20,"code":3}},{"L":{"f":16,"i":114871797},"flags":15,"cn0":207,"P":1074456904,"D":{"f":3,"i":2201},"lock":15,"sid":{"sat":5,"code":3}},{"L":{"f":120,"i":111587681},"flags":15,"cn0":207,"P":1046677883,"D":{"f":105,"i":-3042},"lock":15,"sid":{"sat":10,"code":3}},{"L":{"f":243,"i":120431665},"flags":15,"cn0":182,"P":1124487965,"D":{"f":154,"i":-1312},"lock":15,"sid":{"sat":4,"code":3}},{"L":{"f":210,"i":113428366},"flags":15,"cn0":202,"P":1059839628,"D":{"f":70,"i":1623},"lock":15,"sid":{"sat":21,"code":3}},{"L":{"f":146,"i":95908631},"flags":15,"cn0":170,"P":1154610058,"D":{"f":33,"i":-3427},"lock":15,"sid":{"sat":9,"code":4}},{"L":{"f":79,"i":85372246},"flags":15,"cn0":205,"P":1026323628,"D":{"f":108,"i":-941},"lock":15,"sid":{"sat":20,"code":4}},{"L":{"f":243,"i":87844920},"flags":15,"cn0":199,"P":1056791359,"D":{"f":24,"i":910},"lock":15,"sid":{"sat":11,"code":4}},{"L":{"f":214,"i":89344734},"flags":15,"cn0":195,"P":1074457205,"D":{"f":212,"i":1711},"lock":15,"sid":{"sat":5,"code":4}},{"L":{"f":191,"i":93669063},"flags":15,"cn0":177,"P":1124488163,"D":{"f":207,"i":-1022},"lock":15,"sid":{"sat":4,"code":4}},{"L":{"f":217,"i":121572053},"flags":15,"cn0":200,"P":1167331453,"D":{"f":211,"i":-1501},"lock":15,"sid":{"sat":35,"code":12}},{"L":{"f":82,"i":129196082},"flags":15,"cn0":168,"P":1240537492,"D":{"f":28,"i":-3008},"lock":15,"sid":{"sat":26,"code":12}},{"L":{"f":127,"i":132957851},"flags":15,"cn0":159,"P":1276657651,"D":{"f":126,"i":2248},"lock":15,"sid":{"sat":34,"code":12}},{"L":{"f":132,"i":125144475},"flags":15,"cn0":189,"P":1201634057,"D":{"f":1,"i":-1300},"lock":15,"sid":{"sat":24,"code":12}}],"payload":"COYuEAAAAAAyCEFLcyw9rt6KBr1G+0OtDw8UA0jpCkD1zdgGEJkIA88PDwUDewljPmGxpgZ4HvRpzw8PCgMdUwZDMaQtB/Pg+pq2Dw8EA4zeKz+Ox8IG0lcGRsoPDxUDivPRRBdztwWSnfIhqg8PCQSsdCw9Vq0WBU9T/GzNDw8UBD9b/T44aDwF844DGMcPDwsEdeoKQN5KUwXWrwbUww8PBQTjUwZDx0aVBb8C/M+xDw8EBH0QlEXVCj8H2SP608gPDyMMlBnxSTJgswdSQPQcqA8PGgzzPxhMm8bsB3/ICH6fDw8iDAl7n0ebjXUHhOz6Ab0PDxgM","header":{"n_obs":65,"t":{"ns_residual":0,"wn":2098,"tow":271509000}},"crc":41134} +{"length":249,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":227,"i":134679149},"flags":15,"cn0":156,"P":1293185752,"D":{"f":148,"i":1325},"lock":15,"sid":{"sat":25,"code":12}},{"L":{"f":96,"i":121108446},"flags":15,"cn0":185,"P":1162880177,"D":{"f":52,"i":1612},"lock":15,"sid":{"sat":12,"code":12}},{"L":{"f":154,"i":124513442},"flags":15,"cn0":184,"P":1195574833,"D":{"f":55,"i":-287},"lock":15,"sid":{"sat":19,"code":12}},{"L":{"f":105,"i":124716964},"flags":15,"cn0":191,"P":1197529069,"D":{"f":70,"i":2388},"lock":15,"sid":{"sat":22,"code":12}},{"L":{"f":138,"i":93648741},"flags":15,"cn0":209,"P":1162880102,"D":{"f":160,"i":1245},"lock":15,"sid":{"sat":12,"code":13}},{"L":{"f":48,"i":116420763},"flags":15,"cn0":194,"P":1107706704,"D":{"f":154,"i":-1028},"lock":15,"sid":{"sat":12,"code":14}},{"L":{"f":184,"i":132480480},"flags":15,"cn0":191,"P":1260509790,"D":{"f":82,"i":1091},"lock":15,"sid":{"sat":25,"code":14}},{"L":{"f":65,"i":125427982},"flags":15,"cn0":188,"P":1193407529,"D":{"f":191,"i":1047},"lock":15,"sid":{"sat":11,"code":14}},{"L":{"f":58,"i":118404959},"flags":15,"cn0":204,"P":1126585603,"D":{"f":247,"i":-1744},"lock":15,"sid":{"sat":24,"code":14}},{"L":{"f":201,"i":143305131},"flags":15,"cn0":159,"P":1363502988,"D":{"f":2,"i":-3173},"lock":15,"sid":{"sat":31,"code":14}},{"L":{"f":106,"i":144513202},"flags":15,"cn0":153,"P":1374997382,"D":{"f":76,"i":-2144},"lock":15,"sid":{"sat":33,"code":14}},{"L":{"f":22,"i":101511016},"flags":15,"cn0":201,"P":1260509755,"D":{"f":120,"i":834},"lock":15,"sid":{"sat":25,"code":20}},{"L":{"f":104,"i":90725941},"flags":15,"cn0":215,"P":1126586140,"D":{"f":222,"i":-1337},"lock":15,"sid":{"sat":24,"code":20}},{"L":{"f":10,"i":96107133},"flags":15,"cn0":194,"P":1193407326,"D":{"f":113,"i":801},"lock":15,"sid":{"sat":11,"code":20}}],"payload":"COYuEAAAAAAyCELYchRNbQoHCOMtBZScDw8ZDLEkUEXe9zcHYEwGNLkPDwwMMQZDR6Lsawea4f43uA8PEwzt12BHpAdvB2lUCUa/Dw8WDGYkUEVl95QFit0EoNEPDwwNUEMGQptw8AYw/Puawg8PDA5e2iFL4H3lB7hDBFK/Dw8ZDin0IUcO4XkHQRcEv7wPDwsOA1UmQ1+3Dgc6MPn3zA8PGA6MZ0VRq6mKCMmb8wKfDw8fDobL9FGyGJ0IaqD3TJkPDyEOO9ohS2jvDAYWQgN4yQ8PGRQcVyZDNV5oBWjH+t7XDw8YFF7zIUd9eroFCiEDccIPDwsU","header":{"n_obs":66,"t":{"ns_residual":0,"wn":2098,"tow":271509000}},"crc":8177} +{"length":62,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":91,"i":109805272},"flags":15,"cn0":173,"P":1363503039,"D":{"f":121,"i":-2431},"lock":15,"sid":{"sat":31,"code":20}},{"L":{"f":114,"i":89205550},"flags":15,"cn0":207,"P":1107706548,"D":{"f":22,"i":-788},"lock":15,"sid":{"sat":12,"code":20}},{"L":{"f":223,"i":110730965},"flags":15,"cn0":169,"P":1374997353,"D":{"f":127,"i":-1640},"lock":15,"sid":{"sat":33,"code":20}}],"payload":"COYuEAAAAAAyCEO/Z0VR2H6LBluB9nmtDw8fFLRCBkIuK1EFcuz8Fs8PDwwUacv0UdWemQbfmPl/qQ8PIRQ=","header":{"n_obs":67,"t":{"ns_residual":0,"wn":2098,"tow":271509000}},"crc":56491} +{"length":9,"l2ca_bias":0,"preamble":85,"l2p_bias":0,"sender":22963,"msg_type":117,"payload":"/wAAAAAAAAAA","l1ca_bias":0,"mask":255,"crc":49809,"l1p_bias":0} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MggI5i4QAAAAAAE=","wn":2098,"tow":271509000,"crc":59763} +{"length":16,"flags":17,"ns":999999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EQjmLhDkBwMZAxgy/smaOw==","day":25,"tow":271509000,"year":2020,"crc":13459,"minutes":24,"month":3,"seconds":50} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.537276390457404,"preamble":85,"sender":22963,"msg_type":522,"payload":"COYuEC15e+ll6kJA50U4HVaSXsBv7Q3yiokxwAECWwQPBg==","lat":37.831235108651846,"tow":271509000,"h_accuracy":513,"crc":49935,"lon":-122.28650598998466} +{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"COYuEP7///8JAAAAFgAAAPEAygIPAg==","n":-2,"d":22,"tow":271509000,"h_accuracy":241,"crc":44542,"e":9} +{"length":15,"gdop":155,"flags":6,"tdop":77,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"COYuEJsAhwBNAEgAcgAG","tow":271509000,"crc":53460,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"COYuEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271509000,"h_accuracy":0,"crc":32398,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"COYuEP//","tow":271509000,"crc":61112} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":4,"flags":2147616000,"preamble":85,"sender":22963,"msg_type":65535,"payload":"AAUCgA==","crc":40942} +{"length":24,"z":3890655.0240602265,"preamble":85,"sender":22963,"msg_type":72,"payload":"UO0a3iqORMHK1UJhIkRQwc9nFIPvrk1B","crc":2168,"x":-2694229.735196747,"y":-4264073.519704292} +{"cpu_vint":988,"length":10,"fe_temperature":5641,"preamble":85,"sender":22963,"cpu_vaux":1780,"msg_type":181,"payload":"6BbcA/QGYRUJFg==","dev_vin":5864,"crc":1319,"cpu_temperature":5473} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"Mghs5i4QAAAAAAE=","wn":2098,"tow":271509100,"crc":36281} +{"length":16,"flags":17,"ns":99999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EWzmLhDkBwMZAxgz/uD1BQ==","day":25,"tow":271509100,"year":2020,"crc":26291,"minutes":24,"month":3,"seconds":51} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.53568972218729,"preamble":85,"sender":22963,"msg_type":522,"payload":"bOYuEBsTTull6kJAhyMVHVaSXsAFmS32IokxwAECWwQPBg==","lat":37.83123508751142,"tow":271509100,"h_accuracy":513,"crc":19652,"lon":-122.28650595726332} +{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"bOYuEPL///8HAAAA+v////EAygIPAg==","n":-14,"d":-6,"tow":271509100,"h_accuracy":241,"crc":41426,"e":7} +{"length":15,"gdop":155,"flags":6,"tdop":77,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"bOYuEJsAhwBNAEgAcgAG","tow":271509100,"crc":64635,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"bOYuEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271509100,"h_accuracy":0,"crc":26168,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"bOYuEP//","tow":271509100,"crc":46849} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgjQ5i4QAAAAAAE=","wn":2098,"tow":271509200,"crc":29465} +{"length":16,"flags":17,"ns":199999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EdDmLhDkBwMZAxgz/sHrCw==","day":25,"tow":271509200,"year":2020,"crc":11660,"minutes":24,"month":3,"seconds":51} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.53142161036575,"preamble":85,"sender":22963,"msg_type":522,"payload":"0OYuEFmiQull6kJAUt0CHVaSXsCX6CQ/C4gxwAECWwQPBg==","lat":37.831235082184044,"tow":271509200,"h_accuracy":513,"crc":4556,"lon":-122.2865059402441} +{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"0OYuEAEAAAD2////4/////EAygIPAg==","n":1,"d":-29,"tow":271509200,"h_accuracy":241,"crc":26400,"e":-10} +{"length":15,"gdop":155,"flags":6,"tdop":77,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"0OYuEJsAhwBNAEgAcgAG","tow":271509200,"crc":50944,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"0OYuEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271509200,"h_accuracy":0,"crc":62116,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"0OYuEP//","tow":271509200,"crc":18254} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"Mgg05y4QAAAAAAE=","wn":2098,"tow":271509300,"crc":61362} +{"length":16,"flags":17,"ns":299999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"ETTnLhDkBwMZAxgz/qLhEQ==","day":25,"tow":271509300,"year":2020,"crc":45275,"minutes":24,"month":3,"seconds":51} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.532975014391134,"preamble":85,"sender":22963,"msg_type":522,"payload":"NOcuECZZQ+ll6kJA3d/dHFaSXsAiZfAMcYgxwAECWwQPBg==","lat":37.83123508251656,"tow":271509300,"h_accuracy":513,"crc":21203,"lon":-122.28650590579441} +{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"NOcuEA8AAAD9////GQAAAPEAygIPAg==","n":15,"d":25,"tow":271509300,"h_accuracy":241,"crc":38337,"e":-3} +{"length":15,"gdop":155,"flags":6,"tdop":77,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"NOcuEJsAhwBNAEgAcgAG","tow":271509300,"crc":50396,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"NOcuEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271509300,"h_accuracy":0,"crc":34161,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"NOcuEP//","tow":271509300,"crc":24710} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":237,"states":[{"cn0":213,"mesid":{"sat":5,"code":0}},{"cn0":180,"mesid":{"sat":21,"code":0}},{"cn0":188,"mesid":{"sat":2,"code":0}},{"cn0":166,"mesid":{"sat":31,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":217,"mesid":{"sat":25,"code":0}},{"cn0":206,"mesid":{"sat":12,"code":0}},{"cn0":213,"mesid":{"sat":29,"code":0}},{"cn0":206,"mesid":{"sat":18,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":205,"mesid":{"sat":131,"code":2}},{"cn0":204,"mesid":{"sat":25,"code":1}},{"cn0":186,"mesid":{"sat":12,"code":1}},{"cn0":152,"mesid":{"sat":31,"code":1}},{"cn0":195,"mesid":{"sat":18,"code":1}},{"cn0":194,"mesid":{"sat":29,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":194,"mesid":{"sat":5,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":214,"mesid":{"sat":100,"code":3}},{"cn0":176,"mesid":{"sat":98,"code":3}},{"cn0":173,"mesid":{"sat":102,"code":3}},{"cn0":207,"mesid":{"sat":101,"code":3}},{"cn0":207,"mesid":{"sat":93,"code":3}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":182,"mesid":{"sat":106,"code":3}},{"cn0":202,"mesid":{"sat":104,"code":3}},{"cn0":170,"mesid":{"sat":98,"code":4}},{"cn0":205,"mesid":{"sat":102,"code":4}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":199,"mesid":{"sat":100,"code":4}},{"cn0":195,"mesid":{"sat":101,"code":4}},{"cn0":188,"mesid":{"sat":104,"code":4}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":177,"mesid":{"sat":106,"code":4}},{"cn0":199,"mesid":{"sat":35,"code":12}},{"cn0":169,"mesid":{"sat":26,"code":12}},{"cn0":159,"mesid":{"sat":34,"code":12}},{"cn0":189,"mesid":{"sat":24,"code":12}},{"cn0":156,"mesid":{"sat":25,"code":12}},{"cn0":185,"mesid":{"sat":12,"code":12}},{"cn0":184,"mesid":{"sat":19,"code":12}},{"cn0":191,"mesid":{"sat":22,"code":12}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":208,"mesid":{"sat":12,"code":13}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":194,"mesid":{"sat":12,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":191,"mesid":{"sat":25,"code":14}},{"cn0":188,"mesid":{"sat":11,"code":14}},{"cn0":203,"mesid":{"sat":24,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":159,"mesid":{"sat":31,"code":14}},{"cn0":153,"mesid":{"sat":33,"code":14}},{"cn0":201,"mesid":{"sat":25,"code":20}},{"cn0":215,"mesid":{"sat":24,"code":20}},{"cn0":194,"mesid":{"sat":11,"code":20}},{"cn0":173,"mesid":{"sat":31,"code":20}},{"cn0":206,"mesid":{"sat":12,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":169,"mesid":{"sat":33,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}}],"preamble":85,"sender":22963,"msg_type":97,"payload":"BQDVFQC0AgC8HwCmAAAAAAAAGQDZDADOHQDVEgDOAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwLNGQHMDAG6HwGYEgHDHQHCAAAABQHCAAAAAAAAAAAAAAAAZAPWYgOwZgOtZQPPXQPPAAAAagO2aAPKYgSqZgTNAAAAZATHZQTDaAS8AAAAagSxIwzHGgypIgyfGAy9GQycDAy5Ewy4Fgy/AAAADA3QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADA7CAAAAGQ6/Cw68GA7LAAAAHw6fIQ6ZGRTJGBTXCxTCHxStDBTOAAAAIRSpAAAA","crc":1145} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgiY5y4QAAAAAAE=","wn":2098,"tow":271509400,"crc":17132} +{"length":16,"flags":17,"ns":399999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EZjnLhDkBwMZAxgz/oPXFw==","day":25,"tow":271509400,"year":2020,"crc":47913,"minutes":24,"month":3,"seconds":51} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.526091374987356,"preamble":85,"sender":22963,"msg_type":522,"payload":"mOcuEJDyH+ll6kJAgxnDHFaSXsBDR6LsrYYxwAECWwQPBg==","lat":37.83123506603181,"tow":271509400,"h_accuracy":513,"crc":44083,"lon":-122.28650588085843} +{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"mOcuEP////8FAAAA/f////EAygIPAg==","n":-1,"d":-3,"tow":271509400,"h_accuracy":241,"crc":28800,"e":5} +{"length":15,"gdop":155,"flags":6,"tdop":77,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"mOcuEJsAhwBNAEgAcgAG","tow":271509400,"crc":45357,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"mOcuEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271509400,"h_accuracy":0,"crc":44203,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"mOcuEP//","tow":271509400,"crc":35405} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":9,"l2ca_bias":0,"preamble":85,"l2p_bias":0,"sender":22963,"msg_type":117,"payload":"/wAAAAAAAAAA","l1ca_bias":0,"mask":255,"crc":49809,"l1p_bias":0} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"Mgj85y4QAAAAAAE=","wn":2098,"tow":271509500,"crc":9766} +{"length":16,"flags":17,"ns":499999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EfznLhDkBwMZAxgz/mTNHQ==","day":25,"tow":271509500,"year":2020,"crc":65493,"minutes":24,"month":3,"seconds":51} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.52095516508698,"preamble":85,"sender":22963,"msg_type":522,"payload":"/OcuEH928+hl6kJA/6O2HFaSXsAau1RRXYUxwAECWwQPBg==","lat":37.83123504531704,"tow":271509500,"h_accuracy":513,"crc":10626,"lon":-122.28650586925504} +{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"/OcuEPv///8AAAAABgAAAPEAygIPAg==","n":-5,"d":6,"tow":271509500,"h_accuracy":241,"crc":25447,"e":0} +{"length":15,"gdop":155,"flags":6,"tdop":77,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"/OcuEJsAhwBNAEgAcgAG","tow":271509500,"crc":40322,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"/OcuEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271509500,"h_accuracy":0,"crc":46109,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"/OcuEP//","tow":271509500,"crc":54260} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"Mghg6C4QAAAAAAE=","wn":2098,"tow":271509600,"crc":42680} +{"length":16,"flags":17,"ns":599999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EWDoLhDkBwMZAxgz/kXDIw==","day":25,"tow":271509600,"year":2020,"crc":34739,"minutes":24,"month":3,"seconds":51} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.51651706135248,"preamble":85,"sender":22963,"msg_type":522,"payload":"YOguEH5uxuhl6kJAwF6hHFaSXsC+VU52OoQxwAECWwQPBg==","lat":37.83123502434772,"tow":271509600,"h_accuracy":513,"crc":20295,"lon":-122.28650584944535} +{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"YOguEP////8GAAAAAQAAAPEAygIPAg==","n":-1,"d":1,"tow":271509600,"h_accuracy":241,"crc":48282,"e":6} +{"length":15,"gdop":155,"flags":6,"tdop":77,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"YOguEJsAhwBNAEgAcgAG","tow":271509600,"crc":41088,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"YOguEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271509600,"h_accuracy":0,"crc":36058,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"YOguEP//","tow":271509600,"crc":29514} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"message_type":4,"length":34,"data":[23,255,127,255,254,127,240,0,127,255,253,255,255,252,127,247,255,127,247,255,238,94,110,170,175,255,240],"preamble":85,"sender":22963,"msg_type":30583,"payload":"gwLj5y4QBBf/f//+f/AAf//9///8f/f/f/f/7l5uqq//8A==","tow":271509475,"crc":666,"sid":{"sat":131,"code":2}} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgjE6C4QAAAAAAE=","wn":2098,"tow":271509700,"crc":8729} +{"length":16,"flags":17,"ns":699999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EcToLhDkBwMZAxgz/ia5KQ==","day":25,"tow":271509700,"year":2020,"crc":20964,"minutes":24,"month":3,"seconds":51} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.512157243072107,"preamble":85,"sender":22963,"msg_type":522,"payload":"xOguEBPpdehl6kJACw2UHFaSXsB7Z7G8HIMxwAECWwQPBg==","lat":37.83123498685213,"tow":271509700,"h_accuracy":513,"crc":33583,"lon":-122.2865058370409} +{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"xOguEPj////+////8f////EAygIPAg==","n":-8,"d":-15,"tow":271509700,"h_accuracy":241,"crc":57365,"e":-2} +{"length":15,"gdop":155,"flags":6,"tdop":77,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"xOguEJsAhwBNAEgAcgAG","tow":271509700,"crc":62004,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"xOguEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271509700,"h_accuracy":0,"crc":64419,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"xOguEP//","tow":271509700,"crc":38083} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"Mggo6S4QAAAAAAE=","wn":2098,"tow":271509800,"crc":38733} +{"length":16,"flags":17,"ns":799999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"ESjpLhDkBwMZAxgz/gevLw==","day":25,"tow":271509800,"year":2020,"crc":3480,"minutes":24,"month":3,"seconds":51} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.50819365589743,"preamble":85,"sender":22963,"msg_type":522,"payload":"KOkuEKJWMOhl6kJAT+mEHFaSXsA4Hbz6GIIxwAECWwQPBg==","lat":37.83123495445513,"tow":271509800,"h_accuracy":513,"crc":48795,"lon":-122.28650582294107} +{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"KOkuEAEAAAD7////3/////EAygIPAg==","n":1,"d":-33,"tow":271509800,"h_accuracy":241,"crc":24603,"e":-5} +{"length":15,"gdop":155,"flags":6,"tdop":77,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"KOkuEJsAhwBNAEgAcgAG","tow":271509800,"crc":54957,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"KOkuEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271509800,"h_accuracy":0,"crc":53973,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"KOkuEP//","tow":271509800,"crc":48713} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":237,"states":[{"cn0":213,"mesid":{"sat":5,"code":0}},{"cn0":180,"mesid":{"sat":21,"code":0}},{"cn0":188,"mesid":{"sat":2,"code":0}},{"cn0":166,"mesid":{"sat":31,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":217,"mesid":{"sat":25,"code":0}},{"cn0":206,"mesid":{"sat":12,"code":0}},{"cn0":213,"mesid":{"sat":29,"code":0}},{"cn0":206,"mesid":{"sat":18,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":205,"mesid":{"sat":131,"code":2}},{"cn0":204,"mesid":{"sat":25,"code":1}},{"cn0":187,"mesid":{"sat":12,"code":1}},{"cn0":151,"mesid":{"sat":31,"code":1}},{"cn0":195,"mesid":{"sat":18,"code":1}},{"cn0":194,"mesid":{"sat":29,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":194,"mesid":{"sat":5,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":213,"mesid":{"sat":11,"code":3}},{"cn0":177,"mesid":{"sat":9,"code":3}},{"cn0":173,"mesid":{"sat":20,"code":3}},{"cn0":207,"mesid":{"sat":5,"code":3}},{"cn0":207,"mesid":{"sat":10,"code":3}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":182,"mesid":{"sat":4,"code":3}},{"cn0":202,"mesid":{"sat":21,"code":3}},{"cn0":170,"mesid":{"sat":9,"code":4}},{"cn0":205,"mesid":{"sat":20,"code":4}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":199,"mesid":{"sat":11,"code":4}},{"cn0":195,"mesid":{"sat":5,"code":4}},{"cn0":188,"mesid":{"sat":0,"code":4}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":177,"mesid":{"sat":4,"code":4}},{"cn0":200,"mesid":{"sat":35,"code":12}},{"cn0":169,"mesid":{"sat":26,"code":12}},{"cn0":159,"mesid":{"sat":34,"code":12}},{"cn0":189,"mesid":{"sat":24,"code":12}},{"cn0":156,"mesid":{"sat":25,"code":12}},{"cn0":185,"mesid":{"sat":12,"code":12}},{"cn0":183,"mesid":{"sat":19,"code":12}},{"cn0":191,"mesid":{"sat":22,"code":12}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":208,"mesid":{"sat":12,"code":13}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":195,"mesid":{"sat":12,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":191,"mesid":{"sat":25,"code":14}},{"cn0":188,"mesid":{"sat":11,"code":14}},{"cn0":204,"mesid":{"sat":24,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":159,"mesid":{"sat":31,"code":14}},{"cn0":151,"mesid":{"sat":33,"code":14}},{"cn0":201,"mesid":{"sat":25,"code":20}},{"cn0":215,"mesid":{"sat":24,"code":20}},{"cn0":194,"mesid":{"sat":11,"code":20}},{"cn0":174,"mesid":{"sat":31,"code":20}},{"cn0":207,"mesid":{"sat":12,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":168,"mesid":{"sat":33,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}}],"preamble":85,"sender":22963,"msg_type":97,"payload":"BQDVFQC0AgC8HwCmAAAAAAAAGQDZDADOHQDVEgDOAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwLNGQHMDAG7HwGXEgHDHQHCAAAABQHCAAAAAAAAAAAAAAAACwPVCQOxFAOtBQPPCgPPAAAABAO2FQPKCQSqFATNAAAACwTHBQTDAAS8AAAABASxIwzIGgypIgyfGAy9GQycDAy5Ewy3Fgy/AAAADA3QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADA7DAAAAGQ6/Cw68GA7MAAAAHw6fIQ6XGRTJGBTXCxTCHxSuDBTPAAAAIRSoAAAA","crc":32353} +{"length":136,"preamble":85,"sender":22963,"msg_type":151,"payload":"AgAaHgUALDUMAFEtFQB9GRkAbUYaAKEBHQChNx8AlQ4EAxYWBQMyIQYDTggJA18OCgNxKQsDmCUMA6oDEwMiBxQDCzEVA5UlDAyUKRMMIyAUDA8CFgxDIxgMgiMZDJ0OGgxnFR0MLAAiDI4RIwwiLQsOizIMDg88GA5sNhkOlykfDlURIQ4fDw==","crc":41336,"azel":[{"el":30,"az":26,"sid":{"sat":2,"code":0}},{"el":53,"az":44,"sid":{"sat":5,"code":0}},{"el":45,"az":81,"sid":{"sat":12,"code":0}},{"el":25,"az":125,"sid":{"sat":21,"code":0}},{"el":70,"az":109,"sid":{"sat":25,"code":0}},{"el":1,"az":161,"sid":{"sat":26,"code":0}},{"el":55,"az":161,"sid":{"sat":29,"code":0}},{"el":14,"az":149,"sid":{"sat":31,"code":0}},{"el":22,"az":22,"sid":{"sat":4,"code":3}},{"el":33,"az":50,"sid":{"sat":5,"code":3}},{"el":8,"az":78,"sid":{"sat":6,"code":3}},{"el":14,"az":95,"sid":{"sat":9,"code":3}},{"el":41,"az":113,"sid":{"sat":10,"code":3}},{"el":37,"az":152,"sid":{"sat":11,"code":3}},{"el":3,"az":170,"sid":{"sat":12,"code":3}},{"el":7,"az":34,"sid":{"sat":19,"code":3}},{"el":49,"az":11,"sid":{"sat":20,"code":3}},{"el":37,"az":149,"sid":{"sat":21,"code":3}},{"el":41,"az":148,"sid":{"sat":12,"code":12}},{"el":32,"az":35,"sid":{"sat":19,"code":12}},{"el":2,"az":15,"sid":{"sat":20,"code":12}},{"el":35,"az":67,"sid":{"sat":22,"code":12}},{"el":35,"az":130,"sid":{"sat":24,"code":12}},{"el":14,"az":157,"sid":{"sat":25,"code":12}},{"el":21,"az":103,"sid":{"sat":26,"code":12}},{"el":0,"az":44,"sid":{"sat":29,"code":12}},{"el":17,"az":142,"sid":{"sat":34,"code":12}},{"el":45,"az":34,"sid":{"sat":35,"code":12}},{"el":50,"az":139,"sid":{"sat":11,"code":14}},{"el":60,"az":15,"sid":{"sat":12,"code":14}},{"el":54,"az":108,"sid":{"sat":24,"code":14}},{"el":41,"az":151,"sid":{"sat":25,"code":14}},{"el":17,"az":85,"sid":{"sat":31,"code":14}},{"el":15,"az":31,"sid":{"sat":33,"code":14}}]} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgiM6S4QAAAAAAE=","wn":2098,"tow":271509900,"crc":5100} +{"length":16,"flags":17,"ns":899999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EYzpLhDkBwMZAxgz/uikNQ==","day":25,"tow":271509900,"year":2020,"crc":48301,"minutes":24,"month":3,"seconds":51} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.514291617092855,"preamble":85,"sender":22963,"msg_type":522,"payload":"jOkuEDwC4udl6kJATPZZHFaSXsBRBYydqIMxwAECWwQPBg==","lat":37.83123491798003,"tow":271509900,"h_accuracy":513,"crc":10120,"lon":-122.28650578294145} +{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"jOkuEP7///8NAAAAMQAAAPEAygIPAg==","n":-2,"d":49,"tow":271509900,"h_accuracy":241,"crc":44686,"e":13} +{"length":15,"gdop":155,"flags":6,"tdop":77,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"jOkuEJsAhwBNAEgAcgAG","tow":271509900,"crc":33817,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"jOkuEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271509900,"h_accuracy":0,"crc":42412,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"jOkuEP//","tow":271509900,"crc":22976} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":249,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":224,"i":110563310},"flags":15,"cn0":213,"P":1051974795,"D":{"f":14,"i":-180},"lock":15,"sid":{"sat":5,"code":0}},{"L":{"f":175,"i":121835615},"flags":15,"cn0":180,"P":1159227349,"D":{"f":104,"i":2175},"lock":15,"sid":{"sat":21,"code":0}},{"L":{"f":4,"i":123325936},"flags":15,"cn0":188,"P":1173406880,"D":{"f":85,"i":-2478},"lock":15,"sid":{"sat":2,"code":0}},{"L":{"f":136,"i":128736413},"flags":15,"cn0":166,"P":1224886261,"D":{"f":28,"i":-393},"lock":15,"sid":{"sat":31,"code":0}},{"L":{"f":54,"i":107817681},"flags":15,"cn0":217,"P":1025851053,"D":{"f":74,"i":-1124},"lock":15,"sid":{"sat":25,"code":0}},{"L":{"f":18,"i":114083920},"flags":15,"cn0":206,"P":1085472286,"D":{"f":194,"i":-2966},"lock":15,"sid":{"sat":12,"code":0}},{"L":{"f":187,"i":110768336},"flags":15,"cn0":213,"P":1053925607,"D":{"f":47,"i":1485},"lock":15,"sid":{"sat":29,"code":0}},{"L":{"f":14,"i":84013798},"flags":15,"cn0":204,"P":1025851118,"D":{"f":126,"i":-876},"lock":15,"sid":{"sat":25,"code":1}},{"L":{"f":186,"i":88896592},"flags":15,"cn0":187,"P":1085472211,"D":{"f":156,"i":-2312},"lock":15,"sid":{"sat":12,"code":1}},{"L":{"f":222,"i":100314090},"flags":15,"cn0":151,"P":1224886190,"D":{"f":212,"i":-307},"lock":15,"sid":{"sat":31,"code":1}},{"L":{"f":121,"i":86312991},"flags":15,"cn0":194,"P":1053925505,"D":{"f":177,"i":1156},"lock":15,"sid":{"sat":29,"code":1}},{"L":{"f":131,"i":86153258},"flags":15,"cn0":194,"P":1051974730,"D":{"f":27,"i":-141},"lock":15,"sid":{"sat":5,"code":1}},{"L":{"f":123,"i":112942284},"flags":15,"cn0":213,"P":1056780131,"D":{"f":121,"i":1170},"lock":15,"sid":{"sat":11,"code":3}},{"L":{"f":178,"i":123315491},"flags":15,"cn0":177,"P":1154651170,"D":{"f":87,"i":-4407},"lock":15,"sid":{"sat":9,"code":3}}],"payload":"8OkuEAAAAAAyCECL3LM+7g+XBuBM/w7VDw8FANVnGEVfEEMHr38IaLQPDxUAoMTwRfDNWQcEUvZVvA8PAgD1RwJJnVysB4h3/hymDw8fAK0+JT3RKm0GNpz7StkPDxkAHv6yQFDIzAYSavTCzg8PDADnoNE+0DCaBrvNBS/VDw8dAO4+JT3m8gEFDpT8fswPDxkB0/2yQFB0TAW6+Pacuw8PDAGuRwJJ6qv6Bd7N/tSXDw8fAYGg0T4fCCUFeYQEscIPDx0BStyzPiqYIgWDc/8bwg8PBQFjL/0+zFy7BnuSBHnVDw8LAyKU0kQjpVkHssnuV7EPDwkD","header":{"n_obs":64,"t":{"ns_residual":0,"wn":2098,"tow":271510000}},"crc":43069} +{"length":249,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":248,"i":109765478},"flags":15,"cn0":173,"P":1026334589,"D":{"f":217,"i":-1209},"lock":15,"sid":{"sat":20,"code":3}},{"L":{"f":250,"i":114869593},"flags":15,"cn0":207,"P":1074436303,"D":{"f":20,"i":2202},"lock":15,"sid":{"sat":5,"code":3}},{"L":{"f":17,"i":111590721},"flags":15,"cn0":207,"P":1046706402,"D":{"f":142,"i":-3042},"lock":15,"sid":{"sat":10,"code":3}},{"L":{"f":54,"i":120432976},"flags":15,"cn0":182,"P":1124500196,"D":{"f":61,"i":-1312},"lock":15,"sid":{"sat":4,"code":3}},{"L":{"f":18,"i":113426742},"flags":15,"cn0":202,"P":1059824438,"D":{"f":209,"i":1623},"lock":15,"sid":{"sat":21,"code":3}},{"L":{"f":187,"i":95912058},"flags":15,"cn0":170,"P":1154651318,"D":{"f":87,"i":-3429},"lock":15,"sid":{"sat":9,"code":4}},{"L":{"f":8,"i":85373186},"flags":15,"cn0":205,"P":1026334933,"D":{"f":52,"i":-942},"lock":15,"sid":{"sat":20,"code":4}},{"L":{"f":94,"i":87844009},"flags":15,"cn0":199,"P":1056780380,"D":{"f":214,"i":910},"lock":15,"sid":{"sat":11,"code":4}},{"L":{"f":84,"i":89343021},"flags":15,"cn0":195,"P":1074436613,"D":{"f":21,"i":1712},"lock":15,"sid":{"sat":5,"code":4}},{"L":{"f":216,"i":93670082},"flags":15,"cn0":176,"P":1124500393,"D":{"f":248,"i":-1022},"lock":15,"sid":{"sat":4,"code":4}},{"L":{"f":136,"i":121573551},"flags":15,"cn0":200,"P":1167345832,"D":{"f":156,"i":-1499},"lock":15,"sid":{"sat":35,"code":12}},{"L":{"f":31,"i":129199089},"flags":15,"cn0":169,"P":1240566380,"D":{"f":213,"i":-3007},"lock":15,"sid":{"sat":26,"code":12}},{"L":{"f":12,"i":132955602},"flags":15,"cn0":159,"P":1276636053,"D":{"f":242,"i":2248},"lock":15,"sid":{"sat":34,"code":12}},{"L":{"f":112,"i":125145774},"flags":15,"cn0":189,"P":1201646536,"D":{"f":189,"i":-1301},"lock":15,"sid":{"sat":24,"code":12}}],"payload":"8OkuEAAAAAAyCEF9nyw9ZuOKBvhH+9mtDw8UA8+YCkBZxdgG+poIFM8PDwUD4nhjPkG9pgYRHvSOzw8PCgPkggZDUKktBzbg+j22Dw8EAzajKz82wcIGElcG0coPDxUDtpTSRHqAtwW7m/JXqg8PCQTVoCw9ArEWBQhS/DTNDw8UBFww/T6pZDwFXo4D1scPDwsEBZoKQC1EUwVUsAYVww8PBQSpgwZDwkqVBdgC/PiwDw8EBKhIlEWvED8HiCX6nMgPDyMMbIrxSfFrswcfQfTVqQ8PGgyV6xdM0r3sBwzICPKfDw8iDMirn0euknUHcOv6vb0PDxgM","header":{"n_obs":65,"t":{"ns_residual":0,"wn":2098,"tow":271510000}},"crc":1753} +{"length":249,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":92,"i":134677821},"flags":15,"cn0":156,"P":1293172964,"D":{"f":63,"i":1329},"lock":15,"sid":{"sat":25,"code":12}},{"L":{"f":56,"i":121106833},"flags":15,"cn0":185,"P":1162864683,"D":{"f":196,"i":1611},"lock":15,"sid":{"sat":12,"code":12}},{"L":{"f":5,"i":124513728},"flags":15,"cn0":183,"P":1195577569,"D":{"f":54,"i":-286},"lock":15,"sid":{"sat":19,"code":12}},{"L":{"f":54,"i":124714574},"flags":15,"cn0":191,"P":1197506111,"D":{"f":209,"i":2388},"lock":15,"sid":{"sat":22,"code":12}},{"L":{"f":37,"i":93647494},"flags":15,"cn0":208,"P":1162864615,"D":{"f":86,"i":1246},"lock":15,"sid":{"sat":12,"code":13}},{"L":{"f":167,"i":116421788},"flags":15,"cn0":194,"P":1107716461,"D":{"f":253,"i":-1028},"lock":15,"sid":{"sat":12,"code":14}},{"L":{"f":48,"i":132479389},"flags":15,"cn0":191,"P":1260499413,"D":{"f":71,"i":1090},"lock":15,"sid":{"sat":25,"code":14}},{"L":{"f":44,"i":125426933},"flags":15,"cn0":188,"P":1193397544,"D":{"f":182,"i":1047},"lock":15,"sid":{"sat":11,"code":14}},{"L":{"f":97,"i":118406700},"flags":15,"cn0":204,"P":1126602167,"D":{"f":192,"i":-1744},"lock":15,"sid":{"sat":24,"code":14}},{"L":{"f":35,"i":143308303},"flags":15,"cn0":159,"P":1363533162,"D":{"f":222,"i":-3174},"lock":15,"sid":{"sat":31,"code":14}},{"L":{"f":213,"i":144515342},"flags":15,"cn0":151,"P":1375017757,"D":{"f":162,"i":-2143},"lock":15,"sid":{"sat":33,"code":14}},{"L":{"f":187,"i":101510179},"flags":15,"cn0":200,"P":1260499372,"D":{"f":247,"i":835},"lock":15,"sid":{"sat":25,"code":20}},{"L":{"f":138,"i":90727275},"flags":15,"cn0":215,"P":1126602705,"D":{"f":49,"i":-1335},"lock":15,"sid":{"sat":24,"code":20}},{"L":{"f":53,"i":96106329},"flags":15,"cn0":194,"P":1193397345,"D":{"f":137,"i":803},"lock":15,"sid":{"sat":11,"code":20}}],"payload":"8OkuEAAAAAAyCELkQBRNPQUHCFwxBT+cDw8ZDCvoT0WR8TcHOEsGxLkPDwwM4RBDR8DtawcF4v42tw8PEww/fmBHTv5uBzZUCdG/Dw8WDOfnT0WG8pQFJd4EVtAPDwwNbWkGQpx08Aan/Pv9wg8PDA7VsSFLnXnlBzBCBEe/Dw8ZDijNIUf13HkHLBcEtrwPDwsOt5UmQyy+DgdhMPnAzA8PGA5q3UVRD7aKCCOa896fDw8fDh0b9VEOIZ0I1aH3opcPDyEOrLEhSyPsDAa7QwP3yA8PGRTRlyZDa2NoBYrJ+jHXDw8YFGHMIUdZd7oFNSMDicIPDwsU","header":{"n_obs":66,"t":{"ns_residual":0,"wn":2098,"tow":271510000}},"crc":19312} +{"length":62,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":96,"i":109807702},"flags":15,"cn0":173,"P":1363533221,"D":{"f":124,"i":-2429},"lock":15,"sid":{"sat":31,"code":20}},{"L":{"f":48,"i":89206336},"flags":15,"cn0":207,"P":1107716305,"D":{"f":203,"i":-788},"lock":15,"sid":{"sat":12,"code":20}},{"L":{"f":235,"i":110732605},"flags":15,"cn0":169,"P":1375017719,"D":{"f":66,"i":-1639},"lock":15,"sid":{"sat":33,"code":20}}],"payload":"8OkuEAAAAAAyCEOl3UVRVoiLBmCD9nytDw8fFNFoBkJALlEFMOz8y88PDwwU9xr1UT2lmQbrmflCqQ8PIRQ=","header":{"n_obs":67,"t":{"ns_residual":0,"wn":2098,"tow":271510000}},"crc":3887} +{"length":9,"l2ca_bias":0,"preamble":85,"l2p_bias":0,"sender":22963,"msg_type":117,"payload":"/wAAAAAAAAAA","l1ca_bias":0,"mask":255,"crc":49809,"l1p_bias":0} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"Mgjw6S4QAAAAAAE=","wn":2098,"tow":271510000,"crc":3367} +{"length":16,"flags":17,"ns":999999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EfDpLhDkBwMZAxgz/smaOw==","day":25,"tow":271510000,"year":2020,"crc":36719,"minutes":24,"month":3,"seconds":51} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.515884053147378,"preamble":85,"sender":22963,"msg_type":522,"payload":"8OkuEF/ksudl6kJA/2lNHFaSXsDByzD6EIQxwAECWwQPBg==","lat":37.831234896039625,"tow":271510000,"h_accuracy":513,"crc":12794,"lon":-122.28650577125516} +{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"8OkuEAMAAAD0////8f////EAygIPAg==","n":3,"d":-15,"tow":271510000,"h_accuracy":241,"crc":34790,"e":-12} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"8OkuEJsAhwBMAEgAcgAG","tow":271510000,"crc":31000,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"8OkuEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271510000,"h_accuracy":0,"crc":24319,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"8OkuEP//","tow":271510000,"crc":6079} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":4,"flags":2147616000,"preamble":85,"sender":22963,"msg_type":65535,"payload":"AAUCgA==","crc":40942} +{"length":24,"z":3890655.0240602265,"preamble":85,"sender":22963,"msg_type":72,"payload":"UO0a3iqORMHK1UJhIkRQwc9nFIPvrk1B","crc":2168,"x":-2694229.735196747,"y":-4264073.519704292} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"bWFpbgAAAAAAAAAAAAAAAAAAAAAAAAx1AAA=","name":"main\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":47991,"stack_free":29964,"cpu":0} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"aWRsZQAAAAAAAAAAAAAAAAAAAABPAXwAAAA=","name":"idle\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":16658,"stack_free":124,"cpu":335} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"cnBtc2cAAAAAAAAAAAAAAAAAAAABAOwNAAA=","name":"rpmsg\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":53198,"stack_free":3564,"cpu":1} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"U0JQAAAAAAAAAAAAAAAAAAAAAAAAAPz/AAA=","name":"SBP\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":51784,"stack_free":65532,"cpu":0} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"TkFQAAAAAAAAAAAAAAAAAAAAAAAAAASAAAA=","name":"NAP\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":33651,"stack_free":32772,"cpu":0} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"bWFuYWdlIFBWAAAAAAAAAAAAAAAAACQEAAA=","name":"manage PV\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":29877,"stack_free":1060,"cpu":0} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"SU1VAAAAAAAAAAAAAAAAAAAAAAAAAPQHAAA=","name":"IMU\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":14252,"stack_free":2036,"cpu":0} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"SU1VIGF1eAAAAAAAAAAAAAAAAAAAAEwIAAA=","name":"IMU aux\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":18976,"stack_free":2124,"cpu":0} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"bmRiAAAAAAAAAAAAAAAAAAAAAAAAAFAMAAA=","name":"ndb\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":26120,"stack_free":3152,"cpu":0} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"TkFQIFRyYWNraW5nAAAAAAAAAAAhAdR3AAA=","name":"NAP Tracking\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":28320,"stack_free":30676,"cpu":289} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"ZGVjb2RlAAAAAAAAAAAAAAAAAAAIANQGAAA=","name":"decode\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":40082,"stack_free":1748,"cpu":8} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"bWFuYWdlIGFjcQAAAAAAAAAAAADOAKR3AAA=","name":"manage acq\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":54765,"stack_free":30628,"cpu":206} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"c3lzdGVtIG1vbml0b3IAAAAAAAAAACwGAAA=","name":"system monitor\u0000\u0000\u0000\u0000\u0000\u0000","crc":58531,"stack_free":1580,"cpu":0} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"V2F0Y2hkb2cAAAAAAAAAAAAAAAAAAOQDAAA=","name":"Watchdog\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":44438,"stack_free":996,"cpu":0} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"c3RhcmxpbmcAAAAAAAAAAAAAAACVAPz/AAA=","name":"starling\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":15999,"stack_free":65532,"cpu":149} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"bWVfY2FsY19wdnQAAAAAAAAAAAAJAIwjAAA=","name":"me_calc_pvt\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":57561,"stack_free":9100,"cpu":9} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"UFBTAAAAAAAAAAAAAAAAAAAAAAAAAEgHAAA=","name":"PPS\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":38576,"stack_free":1864,"cpu":0} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"c3BlY3RydW0gYW5hbHl6ZXIAAAAAANQPAAA=","name":"spectrum analyzer\u0000\u0000\u0000","crc":50933,"stack_free":4052,"cpu":0} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MghU6i4QAAAAAAE=","wn":2098,"tow":271510100,"crc":16883} +{"length":16,"flags":17,"ns":99999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EVTqLhDkBwMZAxg0/uD1BQ==","day":25,"tow":271510100,"year":2020,"crc":58226,"minutes":24,"month":3,"seconds":52} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.52332338068115,"preamble":85,"sender":22963,"msg_type":522,"payload":"VOouEBMxdudl6kJAeAEtHFaSXsD4QWWF+IUxwAECWwQPBg==","lat":37.83123486777381,"tow":271510100,"h_accuracy":513,"crc":11734,"lon":-122.28650574107257} +{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"VOouEP3////+////DAAAAPEAygIPAg==","n":-3,"d":12,"tow":271510100,"h_accuracy":241,"crc":21008,"e":-2} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"VOouEJsAhwBMAEgAcgAG","tow":271510100,"crc":42511,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"VOouEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271510100,"h_accuracy":0,"crc":18365,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"VOouEP//","tow":271510100,"crc":7908} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"Mgi46i4QAAAAAAE=","wn":2098,"tow":271510200,"crc":45940} +{"length":16,"flags":17,"ns":199999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EbjqLhDkBwMZAxg0/sHrCw==","day":25,"tow":271510200,"year":2020,"crc":52430,"minutes":24,"month":3,"seconds":52} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.532507876160253,"preamble":85,"sender":22963,"msg_type":522,"payload":"uOouEKsKRudl6kJAb0oEHFaSXsCA+KhvUogxwAECWwQPBg==","lat":37.831234845352206,"tow":271510200,"h_accuracy":513,"crc":59388,"lon":-122.2865057031538} +{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"uOouEAIAAAAJAAAAEgAAAPEAygIPAg==","n":2,"d":18,"tow":271510200,"h_accuracy":241,"crc":60075,"e":9} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"uOouEJsAhwBMAEgAcgAG","tow":271510200,"crc":63991,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"uOouEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271510200,"h_accuracy":0,"crc":47933,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"uOouEP//","tow":271510200,"crc":40511} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"Mggc6y4QAAAAAAE=","wn":2098,"tow":271510300,"crc":28678} +{"length":16,"flags":17,"ns":299999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"ERzrLhDkBwMZAxg0/qLhEQ==","day":25,"tow":271510300,"year":2020,"crc":31632,"minutes":24,"month":3,"seconds":52} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.538608768535088,"preamble":85,"sender":22963,"msg_type":522,"payload":"HOsuENaICOdl6kJApybaG1aSXsBxMqZD4okxwAECWwQPBg==","lat":37.831234816710705,"tow":271510300,"h_accuracy":513,"crc":29052,"lon":-122.28650566390807} +{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"HOsuEAAAAAAEAAAA7/////EAygIPAg==","n":0,"d":-17,"tow":271510300,"h_accuracy":241,"crc":56133,"e":4} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"HOsuEJsAhwBMAEgAcgAG","tow":271510300,"crc":53282,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"HOsuEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271510300,"h_accuracy":0,"crc":6578,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"HOsuEP//","tow":271510300,"crc":54247} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":237,"states":[{"cn0":212,"mesid":{"sat":5,"code":0}},{"cn0":180,"mesid":{"sat":21,"code":0}},{"cn0":188,"mesid":{"sat":2,"code":0}},{"cn0":166,"mesid":{"sat":31,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":217,"mesid":{"sat":25,"code":0}},{"cn0":206,"mesid":{"sat":12,"code":0}},{"cn0":213,"mesid":{"sat":29,"code":0}},{"cn0":205,"mesid":{"sat":18,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":205,"mesid":{"sat":131,"code":2}},{"cn0":204,"mesid":{"sat":25,"code":1}},{"cn0":187,"mesid":{"sat":12,"code":1}},{"cn0":152,"mesid":{"sat":31,"code":1}},{"cn0":195,"mesid":{"sat":18,"code":1}},{"cn0":194,"mesid":{"sat":29,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":194,"mesid":{"sat":5,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":213,"mesid":{"sat":100,"code":3}},{"cn0":177,"mesid":{"sat":98,"code":3}},{"cn0":173,"mesid":{"sat":102,"code":3}},{"cn0":207,"mesid":{"sat":101,"code":3}},{"cn0":206,"mesid":{"sat":93,"code":3}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":182,"mesid":{"sat":106,"code":3}},{"cn0":202,"mesid":{"sat":104,"code":3}},{"cn0":170,"mesid":{"sat":98,"code":4}},{"cn0":205,"mesid":{"sat":102,"code":4}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":199,"mesid":{"sat":100,"code":4}},{"cn0":195,"mesid":{"sat":101,"code":4}},{"cn0":188,"mesid":{"sat":104,"code":4}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":176,"mesid":{"sat":106,"code":4}},{"cn0":199,"mesid":{"sat":35,"code":12}},{"cn0":168,"mesid":{"sat":26,"code":12}},{"cn0":158,"mesid":{"sat":34,"code":12}},{"cn0":188,"mesid":{"sat":24,"code":12}},{"cn0":156,"mesid":{"sat":25,"code":12}},{"cn0":184,"mesid":{"sat":12,"code":12}},{"cn0":183,"mesid":{"sat":19,"code":12}},{"cn0":190,"mesid":{"sat":22,"code":12}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":208,"mesid":{"sat":12,"code":13}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":194,"mesid":{"sat":12,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":191,"mesid":{"sat":25,"code":14}},{"cn0":188,"mesid":{"sat":11,"code":14}},{"cn0":204,"mesid":{"sat":24,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":159,"mesid":{"sat":31,"code":14}},{"cn0":152,"mesid":{"sat":33,"code":14}},{"cn0":200,"mesid":{"sat":25,"code":20}},{"cn0":215,"mesid":{"sat":24,"code":20}},{"cn0":194,"mesid":{"sat":11,"code":20}},{"cn0":173,"mesid":{"sat":31,"code":20}},{"cn0":206,"mesid":{"sat":12,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":169,"mesid":{"sat":33,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}}],"preamble":85,"sender":22963,"msg_type":97,"payload":"BQDUFQC0AgC8HwCmAAAAAAAAGQDZDADOHQDVEgDNAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwLNGQHMDAG7HwGYEgHDHQHCAAAABQHCAAAAAAAAAAAAAAAAZAPVYgOxZgOtZQPPXQPOAAAAagO2aAPKYgSqZgTNAAAAZATHZQTDaAS8AAAAagSwIwzHGgyoIgyeGAy8GQycDAy4Ewy3Fgy+AAAADA3QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADA7CAAAAGQ6/Cw68GA7MAAAAHw6fIQ6YGRTIGBTXCxTCHxStDBTOAAAAIRSpAAAA","crc":63247} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgiA6y4QAAAAAAE=","wn":2098,"tow":271510400,"crc":10586} +{"length":16,"flags":17,"ns":399999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EYDrLhDkBwMZAxg0/oPXFw==","day":25,"tow":271510400,"year":2020,"crc":41980,"minutes":24,"month":3,"seconds":52} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.543902857475118,"preamble":85,"sender":22963,"msg_type":522,"payload":"gOsuEByXw+Zl6kJAhyauG1aSXsB8Drk3PYsxwAECWwQPBg==","lat":37.83123478460604,"tow":271510400,"h_accuracy":513,"crc":22633,"lon":-122.28650562292943} +{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"gOsuEPr///8QAAAAHAAAAPEAygIPAg==","n":-6,"d":28,"tow":271510400,"h_accuracy":241,"crc":1640,"e":16} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"gOsuEJsAhwBMAEgAcgAG","tow":271510400,"crc":30285,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"gOsuEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271510400,"h_accuracy":0,"crc":59267,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"gOsuEP//","tow":271510400,"crc":5792} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":9,"l2ca_bias":0,"preamble":85,"l2p_bias":0,"sender":22963,"msg_type":117,"payload":"/wAAAAAAAAAA","l1ca_bias":0,"mask":255,"crc":49809,"l1p_bias":0} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"Mgjk6y4QAAAAAAE=","wn":2098,"tow":271510500,"crc":19856} +{"length":16,"flags":17,"ns":499999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EeTrLhDkBwMZAxg0/mTNHQ==","day":25,"tow":271510500,"year":2020,"crc":59136,"minutes":24,"month":3,"seconds":52} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.545946554528193,"preamble":85,"sender":22963,"msg_type":522,"payload":"5OsuECzki+Zl6kJAKlCxG1aSXsD+D0Unw4sxwAECWwQPBg==","lat":37.83123475866918,"tow":271510500,"h_accuracy":513,"crc":56252,"lon":-122.28650562587487} +{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"5OsuEAgAAADv////DAAAAPEAygIPAg==","n":8,"d":12,"tow":271510500,"h_accuracy":241,"crc":31107,"e":-17} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"5OsuEJsAhwBMAEgAcgAG","tow":271510500,"crc":23266,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"5OsuEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271510500,"h_accuracy":0,"crc":65333,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"5OsuEP//","tow":271510500,"crc":20249} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MghI7C4QAAAAAAE=","wn":2098,"tow":271510600,"crc":10198} +{"length":16,"flags":17,"ns":599999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EUjsLhDkBwMZAxg0/kXDIw==","day":25,"tow":271510600,"year":2020,"crc":42899,"minutes":24,"month":3,"seconds":52} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.538514121768642,"preamble":85,"sender":22963,"msg_type":522,"payload":"SOwuEFkRMOZl6kJAGoGiG1aSXsA0br0P3IkxwAECWwQPBg==","lat":37.83123471591052,"tow":271510600,"h_accuracy":513,"crc":31566,"lon":-122.28650561208306} +{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"SOwuEPj///8CAAAAzv////EAygIPAg==","n":-8,"d":-50,"tow":271510600,"h_accuracy":241,"crc":40899,"e":2} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"SOwuEJsAhwBMAEgAcgAG","tow":271510600,"crc":24341,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"SOwuEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271510600,"h_accuracy":0,"crc":57199,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"SOwuEP//","tow":271510600,"crc":49670} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"message_type":2,"length":34,"data":[87,255,0,23,255,0,31,255,255,247,255,127,255,255,127,247,255,255,224,1,229,231,85,238,110,229,112],"preamble":85,"sender":22963,"msg_type":30583,"payload":"gwLL6y4QAlf/ABf/AB////f/f///f/f//+AB5edV7m7lcA==","tow":271510475,"crc":17420,"sid":{"sat":131,"code":2}} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"Mgis7C4QAAAAAAE=","wn":2098,"tow":271510700,"crc":64686} +{"length":16,"flags":17,"ns":699999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EazsLhDkBwMZAxg0/ia5KQ==","day":25,"tow":271510700,"year":2020,"crc":23501,"minutes":24,"month":3,"seconds":52} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.53856788571422,"preamble":85,"sender":22963,"msg_type":522,"payload":"rOwuEPe9wOVl6kJARBWjG1aSXsCF0b+V34kxwAECWwQPBg==","lat":37.83123466407044,"tow":271510700,"h_accuracy":513,"crc":14273,"lon":-122.28650561262208} +{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"rOwuEAIAAAD7////JgAAAPEAygIPAg==","n":2,"d":38,"tow":271510700,"h_accuracy":241,"crc":27720,"e":-5} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"rOwuEJsAhwBMAEgAcgAG","tow":271510700,"crc":10152,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"rOwuEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271510700,"h_accuracy":0,"crc":32076,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"rOwuEP//","tow":271510700,"crc":20383} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MggQ7S4QAAAAAAE=","wn":2098,"tow":271510800,"crc":17885} +{"length":16,"flags":17,"ns":799999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"ERDtLhDkBwMZAxg0/gevLw==","day":25,"tow":271510800,"year":2020,"crc":25394,"minutes":24,"month":3,"seconds":52} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.534817718886117,"preamble":85,"sender":22963,"msg_type":522,"payload":"EO0uEF4TYeVl6kJA6TGiG1aSXsDs72PQ6YgxwAECWwQPBg==","lat":37.831234619522306,"tow":271510800,"h_accuracy":513,"crc":36081,"lon":-122.28650561179496} +{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"EO0uEAIAAAD+////+f////EAygIPAg==","n":2,"d":-7,"tow":271510800,"h_accuracy":241,"crc":17132,"e":-2} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"EO0uEJsAhwBMAEgAcgAG","tow":271510800,"crc":26546,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"EO0uEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271510800,"h_accuracy":0,"crc":15398,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"EO0uEP//","tow":271510800,"crc":5505} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":237,"states":[{"cn0":212,"mesid":{"sat":5,"code":0}},{"cn0":179,"mesid":{"sat":21,"code":0}},{"cn0":188,"mesid":{"sat":2,"code":0}},{"cn0":165,"mesid":{"sat":31,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":216,"mesid":{"sat":25,"code":0}},{"cn0":205,"mesid":{"sat":12,"code":0}},{"cn0":212,"mesid":{"sat":29,"code":0}},{"cn0":205,"mesid":{"sat":18,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":204,"mesid":{"sat":131,"code":2}},{"cn0":204,"mesid":{"sat":25,"code":1}},{"cn0":187,"mesid":{"sat":12,"code":1}},{"cn0":152,"mesid":{"sat":31,"code":1}},{"cn0":195,"mesid":{"sat":18,"code":1}},{"cn0":194,"mesid":{"sat":29,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":194,"mesid":{"sat":5,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":212,"mesid":{"sat":11,"code":3}},{"cn0":177,"mesid":{"sat":9,"code":3}},{"cn0":173,"mesid":{"sat":20,"code":3}},{"cn0":206,"mesid":{"sat":5,"code":3}},{"cn0":206,"mesid":{"sat":10,"code":3}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":181,"mesid":{"sat":4,"code":3}},{"cn0":201,"mesid":{"sat":21,"code":3}},{"cn0":170,"mesid":{"sat":9,"code":4}},{"cn0":205,"mesid":{"sat":20,"code":4}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":199,"mesid":{"sat":11,"code":4}},{"cn0":195,"mesid":{"sat":5,"code":4}},{"cn0":188,"mesid":{"sat":0,"code":4}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":176,"mesid":{"sat":4,"code":4}},{"cn0":199,"mesid":{"sat":35,"code":12}},{"cn0":168,"mesid":{"sat":26,"code":12}},{"cn0":157,"mesid":{"sat":34,"code":12}},{"cn0":188,"mesid":{"sat":24,"code":12}},{"cn0":156,"mesid":{"sat":25,"code":12}},{"cn0":184,"mesid":{"sat":12,"code":12}},{"cn0":183,"mesid":{"sat":19,"code":12}},{"cn0":190,"mesid":{"sat":22,"code":12}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":208,"mesid":{"sat":12,"code":13}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":194,"mesid":{"sat":12,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":190,"mesid":{"sat":25,"code":14}},{"cn0":188,"mesid":{"sat":11,"code":14}},{"cn0":203,"mesid":{"sat":24,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":159,"mesid":{"sat":31,"code":14}},{"cn0":152,"mesid":{"sat":33,"code":14}},{"cn0":200,"mesid":{"sat":25,"code":20}},{"cn0":215,"mesid":{"sat":24,"code":20}},{"cn0":193,"mesid":{"sat":11,"code":20}},{"cn0":173,"mesid":{"sat":31,"code":20}},{"cn0":206,"mesid":{"sat":12,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":168,"mesid":{"sat":33,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}}],"preamble":85,"sender":22963,"msg_type":97,"payload":"BQDUFQCzAgC8HwClAAAAAAAAGQDYDADNHQDUEgDNAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwLMGQHMDAG7HwGYEgHDHQHCAAAABQHCAAAAAAAAAAAAAAAACwPUCQOxFAOtBQPOCgPOAAAABAO1FQPJCQSqFATNAAAACwTHBQTDAAS8AAAABASwIwzHGgyoIgydGAy8GQycDAy4Ewy3Fgy+AAAADA3QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADA7CAAAAGQ6+Cw68GA7LAAAAHw6fIQ6YGRTIGBTXCxTBHxStDBTOAAAAIRSoAAAA","crc":34743} +{"length":136,"preamble":85,"sender":22963,"msg_type":151,"payload":"AgAaHgUALDUMAFEtFQB9GRkAbUYaAKEBHQChNx8AlQ4EAxYWBQMyIQYDTggJA18OCgNxKQsDmCUMA6oDEwMiBxQDCzEVA5UlDAyUKRMMIyAUDA8CFgxDIxgMgiMZDJ0OGgxnFR0MLAAiDI4RIwwiLQsOizIMDg88GA5sNhkOlykfDlURIQ4fDw==","crc":41336,"azel":[{"el":30,"az":26,"sid":{"sat":2,"code":0}},{"el":53,"az":44,"sid":{"sat":5,"code":0}},{"el":45,"az":81,"sid":{"sat":12,"code":0}},{"el":25,"az":125,"sid":{"sat":21,"code":0}},{"el":70,"az":109,"sid":{"sat":25,"code":0}},{"el":1,"az":161,"sid":{"sat":26,"code":0}},{"el":55,"az":161,"sid":{"sat":29,"code":0}},{"el":14,"az":149,"sid":{"sat":31,"code":0}},{"el":22,"az":22,"sid":{"sat":4,"code":3}},{"el":33,"az":50,"sid":{"sat":5,"code":3}},{"el":8,"az":78,"sid":{"sat":6,"code":3}},{"el":14,"az":95,"sid":{"sat":9,"code":3}},{"el":41,"az":113,"sid":{"sat":10,"code":3}},{"el":37,"az":152,"sid":{"sat":11,"code":3}},{"el":3,"az":170,"sid":{"sat":12,"code":3}},{"el":7,"az":34,"sid":{"sat":19,"code":3}},{"el":49,"az":11,"sid":{"sat":20,"code":3}},{"el":37,"az":149,"sid":{"sat":21,"code":3}},{"el":41,"az":148,"sid":{"sat":12,"code":12}},{"el":32,"az":35,"sid":{"sat":19,"code":12}},{"el":2,"az":15,"sid":{"sat":20,"code":12}},{"el":35,"az":67,"sid":{"sat":22,"code":12}},{"el":35,"az":130,"sid":{"sat":24,"code":12}},{"el":14,"az":157,"sid":{"sat":25,"code":12}},{"el":21,"az":103,"sid":{"sat":26,"code":12}},{"el":0,"az":44,"sid":{"sat":29,"code":12}},{"el":17,"az":142,"sid":{"sat":34,"code":12}},{"el":45,"az":34,"sid":{"sat":35,"code":12}},{"el":50,"az":139,"sid":{"sat":11,"code":14}},{"el":60,"az":15,"sid":{"sat":12,"code":14}},{"el":54,"az":108,"sid":{"sat":24,"code":14}},{"el":41,"az":151,"sid":{"sat":25,"code":14}},{"el":17,"az":85,"sid":{"sat":31,"code":14}},{"el":15,"az":31,"sid":{"sat":33,"code":14}}]} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"Mgh07S4QAAAAAAE=","wn":2098,"tow":271510900,"crc":8471} +{"length":16,"flags":17,"ns":899999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EXTtLhDkBwMZAxg0/uikNQ==","day":25,"tow":271510900,"year":2020,"crc":44060,"minutes":24,"month":3,"seconds":52} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.531019929067703,"preamble":85,"sender":22963,"msg_type":522,"payload":"dO0uEBvC7uRl6kJAZo+QG1aSXsC63gzs8IcxwAECWwQPBg==","lat":37.831234566289105,"tow":271510900,"h_accuracy":513,"crc":7911,"lon":-122.28650559537127} +{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"dO0uEPX///8IAAAACgAAAPEAygIPAg==","n":-11,"d":10,"tow":271510900,"h_accuracy":241,"crc":3700,"e":8} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"dO0uEJsAhwBMAEgAcgAG","tow":271510900,"crc":19229,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"dO0uEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271510900,"h_accuracy":0,"crc":9360,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"dO0uEP//","tow":271510900,"crc":19512} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":249,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":59,"i":110563490},"flags":15,"cn0":212,"P":1051976501,"D":{"f":5,"i":-180},"lock":15,"sid":{"sat":5,"code":0}},{"L":{"f":100,"i":121833440},"flags":15,"cn0":180,"P":1159206653,"D":{"f":218,"i":2174},"lock":15,"sid":{"sat":21,"code":0}},{"L":{"f":155,"i":123328414},"flags":15,"cn0":188,"P":1173430470,"D":{"f":125,"i":-2481},"lock":15,"sid":{"sat":2,"code":0}},{"L":{"f":245,"i":128736805},"flags":15,"cn0":165,"P":1224889993,"D":{"f":10,"i":-395},"lock":15,"sid":{"sat":31,"code":0}},{"L":{"f":146,"i":107818804},"flags":15,"cn0":217,"P":1025861738,"D":{"f":65,"i":-1124},"lock":15,"sid":{"sat":25,"code":0}},{"L":{"f":6,"i":114086885},"flags":15,"cn0":205,"P":1085500497,"D":{"f":174,"i":-2965},"lock":15,"sid":{"sat":12,"code":0}},{"L":{"f":18,"i":110766851},"flags":15,"cn0":213,"P":1053911476,"D":{"f":169,"i":1485},"lock":15,"sid":{"sat":29,"code":0}},{"L":{"f":104,"i":84014673},"flags":15,"cn0":204,"P":1025861804,"D":{"f":223,"i":-878},"lock":15,"sid":{"sat":25,"code":1}},{"L":{"f":18,"i":88898903},"flags":15,"cn0":187,"P":1085500425,"D":{"f":45,"i":-2311},"lock":15,"sid":{"sat":12,"code":1}},{"L":{"f":163,"i":100314396},"flags":15,"cn0":152,"P":1224889922,"D":{"f":166,"i":-307},"lock":15,"sid":{"sat":31,"code":1}},{"L":{"f":210,"i":86311833},"flags":15,"cn0":195,"P":1053911380,"D":{"f":154,"i":1157},"lock":15,"sid":{"sat":29,"code":1}},{"L":{"f":69,"i":86153398},"flags":15,"cn0":194,"P":1051976436,"D":{"f":252,"i":-142},"lock":15,"sid":{"sat":5,"code":1}},{"L":{"f":183,"i":112941113},"flags":15,"cn0":213,"P":1056769162,"D":{"f":133,"i":1170},"lock":15,"sid":{"sat":11,"code":3}},{"L":{"f":143,"i":123319898},"flags":15,"cn0":177,"P":1154692491,"D":{"f":17,"i":-4408},"lock":15,"sid":{"sat":9,"code":3}}],"payload":"2O0uEAAAAAAyCEA147M+ohCXBjtM/wXUDw8FAP0WGEXgB0MHZH4I2rQPDxUAxiDxRZ7XWQebT/Z9vA8PAgCJVgJJJV6sB/V1/gqlDw8fAGpoJT00L20Gkpz7QdkPDxkAUWyzQOXTzAYGa/SuzQ8PDAC0adE+AyuaBhLNBanVDw8dAKxoJT1R9gEFaJL838wPDxkBCWyzQFd9TAUS+fYtuw8PDAFCVgJJHK36BaPN/qaYDw8fAVRp0T6ZAyUF0oUEmsMPDx0B9OKzPraYIgVFcv/8wg8PBQGKBP0+OVi7BreSBIXVDw8LA4s100RatlkHj8juEbEPDwkD","header":{"n_obs":64,"t":{"ns_residual":0,"wn":2098,"tow":271511000}},"crc":3838} +{"length":249,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":205,"i":109766687},"flags":15,"cn0":173,"P":1026345861,"D":{"f":104,"i":-1210},"lock":15,"sid":{"sat":20,"code":3}},{"L":{"f":4,"i":114867392},"flags":15,"cn0":207,"P":1074415712,"D":{"f":250,"i":2200},"lock":15,"sid":{"sat":5,"code":3}},{"L":{"f":177,"i":111593761},"flags":15,"cn0":206,"P":1046734924,"D":{"f":219,"i":-3042},"lock":15,"sid":{"sat":10,"code":3}},{"L":{"f":185,"i":120434287},"flags":15,"cn0":181,"P":1124512432,"D":{"f":71,"i":-1313},"lock":15,"sid":{"sat":4,"code":3}},{"L":{"f":247,"i":113425117},"flags":15,"cn0":201,"P":1059809265,"D":{"f":154,"i":1623},"lock":15,"sid":{"sat":21,"code":3}},{"L":{"f":75,"i":95915486},"flags":15,"cn0":170,"P":1154692617,"D":{"f":33,"i":-3427},"lock":15,"sid":{"sat":9,"code":4}},{"L":{"f":61,"i":85374126},"flags":15,"cn0":205,"P":1026346228,"D":{"f":4,"i":-940},"lock":15,"sid":{"sat":20,"code":4}},{"L":{"f":197,"i":87843098},"flags":15,"cn0":199,"P":1056769431,"D":{"f":159,"i":908},"lock":15,"sid":{"sat":11,"code":4}},{"L":{"f":176,"i":89341308},"flags":15,"cn0":194,"P":1074416009,"D":{"f":189,"i":1711},"lock":15,"sid":{"sat":5,"code":4}},{"L":{"f":229,"i":93671102},"flags":15,"cn0":176,"P":1124512591,"D":{"f":139,"i":-1022},"lock":15,"sid":{"sat":4,"code":4}},{"L":{"f":197,"i":121575049},"flags":15,"cn0":199,"P":1167360217,"D":{"f":86,"i":-1499},"lock":15,"sid":{"sat":35,"code":12}},{"L":{"f":106,"i":129202096},"flags":15,"cn0":168,"P":1240595250,"D":{"f":12,"i":-3008},"lock":15,"sid":{"sat":26,"code":12}},{"L":{"f":19,"i":132953353},"flags":15,"cn0":157,"P":1276614445,"D":{"f":97,"i":2249},"lock":15,"sid":{"sat":34,"code":12}},{"L":{"f":64,"i":125147074},"flags":15,"cn0":188,"P":1201659015,"D":{"f":154,"i":-1301},"lock":15,"sid":{"sat":24,"code":12}}],"payload":"2O0uEAAAAAAyCEGFyyw9H+iKBs1G+2itDw8UA2BICkDAvNgGBJgI+s8PDwUDTOhjPiHJpgaxHvTbzg8PCgOwsgZDb64tB7nf+ke1Dw8EA/FnKz/dusIG91cGmskPDxUDCTbTRN6NtwVLnfIhqg8PCQT0zCw9rrQWBT1U/ATNDw8UBJcF/T4aYTwFxYwDn8cPDwsEiUkKQHw9UwWwrwa9wg8PBQRPswZDvk6VBeUC/IuwDw8EBNmAlEWJFj8HxSX6VscPDyMMMvvxSbB3swdqQPQMqA8PGgwtlxdMCbXsBxPJCGGdDw8iDIfcn0fCl3UHQOv6mrwPDxgM","header":{"n_obs":65,"t":{"ns_residual":0,"wn":2098,"tow":271511000}},"crc":33326} +{"length":249,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":181,"i":134676493},"flags":15,"cn0":156,"P":1293160217,"D":{"f":202,"i":1325},"lock":15,"sid":{"sat":25,"code":12}},{"L":{"f":149,"i":121105220},"flags":15,"cn0":184,"P":1162849201,"D":{"f":139,"i":1610},"lock":15,"sid":{"sat":12,"code":12}},{"L":{"f":104,"i":124514014},"flags":15,"cn0":183,"P":1195580321,"D":{"f":169,"i":-289},"lock":15,"sid":{"sat":19,"code":12}},{"L":{"f":195,"i":124712184},"flags":15,"cn0":190,"P":1197483154,"D":{"f":216,"i":2387},"lock":15,"sid":{"sat":22,"code":12}},{"L":{"f":39,"i":93646247},"flags":15,"cn0":208,"P":1162849130,"D":{"f":137,"i":1245},"lock":15,"sid":{"sat":12,"code":13}},{"L":{"f":167,"i":116422814},"flags":15,"cn0":194,"P":1107726219,"D":{"f":23,"i":-1027},"lock":15,"sid":{"sat":12,"code":14}},{"L":{"f":133,"i":132478298},"flags":15,"cn0":191,"P":1260489027,"D":{"f":68,"i":1090},"lock":15,"sid":{"sat":25,"code":14}},{"L":{"f":187,"i":125425884},"flags":15,"cn0":188,"P":1193387565,"D":{"f":25,"i":1047},"lock":15,"sid":{"sat":11,"code":14}},{"L":{"f":93,"i":118408442},"flags":15,"cn0":204,"P":1126618741,"D":{"f":65,"i":-1743},"lock":15,"sid":{"sat":24,"code":14}},{"L":{"f":250,"i":143311474},"flags":15,"cn0":159,"P":1363563346,"D":{"f":37,"i":-3174},"lock":15,"sid":{"sat":31,"code":14}},{"L":{"f":168,"i":144517483},"flags":15,"cn0":152,"P":1375038127,"D":{"f":123,"i":-2141},"lock":15,"sid":{"sat":33,"code":14}},{"L":{"f":4,"i":101509344},"flags":15,"cn0":200,"P":1260488996,"D":{"f":30,"i":835},"lock":15,"sid":{"sat":25,"code":20}},{"L":{"f":77,"i":90728610},"flags":15,"cn0":215,"P":1126619283,"D":{"f":63,"i":-1336},"lock":15,"sid":{"sat":24,"code":20}},{"L":{"f":221,"i":96105525},"flags":15,"cn0":193,"P":1193387368,"D":{"f":254,"i":803},"lock":15,"sid":{"sat":11,"code":20}}],"payload":"2O0uEAAAAAAyCEIZDxRNDQAHCLUtBcqcDw8ZDLGrT0VE6zcHlUoGi7gPDwwMoRtDR97uawdo3/6ptw8PEwySJGBH+PRuB8NTCdi+Dw8WDGqrT0Wn7ZQFJ90EidAPDwwNi48GQp548Aan/fsXwg8PDA5DiSFLWnXlB4VCBES/Dw8ZDi2mIUfc2HkHuxcEGbwPDwsOddYmQ/rEDgddMflBzA8PGA5SU0ZRcsKKCPqa8yWfDw8fDq9q9VFrKZ0IqKP3e5gPDyEOJIkhS+DoDAYEQwMeyA8PGRST2CZDomhoBU3I+j/XDw8YFGilIUc1dLoF3SMD/sEPDwsU","header":{"n_obs":66,"t":{"ns_residual":0,"wn":2098,"tow":271511000}},"crc":21082} +{"length":62,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":190,"i":109810132},"flags":15,"cn0":173,"P":1363563399,"D":{"f":36,"i":-2432},"lock":15,"sid":{"sat":31,"code":20}},{"L":{"f":89,"i":89207122},"flags":15,"cn0":206,"P":1107726068,"D":{"f":202,"i":-787},"lock":15,"sid":{"sat":12,"code":20}},{"L":{"f":67,"i":110734246},"flags":15,"cn0":169,"P":1375038085,"D":{"f":73,"i":-1642},"lock":15,"sid":{"sat":33,"code":20}}],"payload":"2O0uEAAAAAAyCEOHU0ZR1JGLBr6A9iStDw8fFPSOBkJSMVEFWe38ys4PDwwUhWr1UaarmQZDlvlJqQ8PIRQ=","header":{"n_obs":67,"t":{"ns_residual":0,"wn":2098,"tow":271511000}},"crc":14455} +{"length":9,"l2ca_bias":0,"preamble":85,"l2p_bias":0,"sender":22963,"msg_type":117,"payload":"/wAAAAAAAAAA","l1ca_bias":0,"mask":255,"crc":49809,"l1p_bias":0} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgjY7S4QAAAAAAE=","wn":2098,"tow":271511000,"crc":35913} +{"length":16,"flags":17,"ns":999999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EdjtLhDkBwMZAxg0/smaOw==","day":25,"tow":271511000,"year":2020,"crc":44879,"minutes":24,"month":3,"seconds":52} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.53023923294896,"preamble":85,"sender":22963,"msg_type":522,"payload":"2O0uEOgsiORl6kJAT2aPG1aSXsBpkiTCvYcxwAECWwQPBg==","lat":37.83123451852026,"tow":271511000,"h_accuracy":513,"crc":11783,"lon":-122.28650559429046} +{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"2O0uEAAAAAD8////AgAAAPEAygIPAg==","n":0,"d":2,"tow":271511000,"h_accuracy":241,"crc":2099,"e":-4} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"2O0uEJsAhwBMAEgAcgAG","tow":271511000,"crc":16108,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"2O0uEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271511000,"h_accuracy":0,"crc":3402,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"2O0uEP//","tow":271511000,"crc":42739} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":4,"flags":2147616000,"preamble":85,"sender":22963,"msg_type":65535,"payload":"AAUCgA==","crc":40942} +{"length":24,"z":3890655.0240602265,"preamble":85,"sender":22963,"msg_type":72,"payload":"UO0a3iqORMHK1UJhIkRQwc9nFIPvrk1B","crc":2168,"x":-2694229.735196747,"y":-4264073.519704292} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"Mgg87i4QAAAAAAE=","wn":2098,"tow":271511100,"crc":40772} +{"length":16,"flags":17,"ns":99999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"ETzuLhDkBwMZAxg1/uD1BQ==","day":25,"tow":271511100,"year":2020,"crc":9438,"minutes":24,"month":3,"seconds":53} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.52643771504168,"preamble":85,"sender":22963,"msg_type":522,"payload":"PO4uEFLOJORl6kJA1dyAG1aSXsAofEGfxIYxwAECWwQPBg==","lat":37.83123447224774,"tow":271511100,"h_accuracy":513,"crc":10589,"lon":-122.28650558075181} +{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"PO4uEAAAAAALAAAAAgAAAPEAygIPAg==","n":0,"d":2,"tow":271511100,"h_accuracy":241,"crc":723,"e":11} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"PO4uEJsAhwBMAEgAcgAG","tow":271511100,"crc":52210,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"PO4uEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271511100,"h_accuracy":0,"crc":49490,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"PO4uEP//","tow":271511100,"crc":50616} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"Mgig7i4QAAAAAAE=","wn":2098,"tow":271511200,"crc":50712} +{"length":16,"flags":17,"ns":199999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EaDuLhDkBwMZAxg1/sHrCw==","day":25,"tow":271511200,"year":2020,"crc":62197,"minutes":24,"month":3,"seconds":53} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.525190920417522,"preamble":85,"sender":22963,"msg_type":522,"payload":"oO4uEDeA0eNl6kJA42mCG1aSXsByWYPpcoYxwAECWwQPBg==","lat":37.83123443345578,"tow":271511200,"h_accuracy":513,"crc":33361,"lon":-122.28650558219628} +{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"oO4uEAAAAAD5//////////EAygIPAg==","n":0,"d":-1,"tow":271511200,"h_accuracy":241,"crc":45651,"e":-7} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"oO4uEJsAhwBMAEgAcgAG","tow":271511200,"crc":28061,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"oO4uEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271511200,"h_accuracy":0,"crc":16227,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"oO4uEP//","tow":271511200,"crc":255} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MggE7y4QAAAAAAE=","wn":2098,"tow":271511300,"crc":1386} +{"length":16,"flags":17,"ns":299999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EQTvLhDkBwMZAxg1/qLhEQ==","day":25,"tow":271511300,"year":2020,"crc":17835,"minutes":24,"month":3,"seconds":53} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.527216157224487,"preamble":85,"sender":22963,"msg_type":522,"payload":"BO8uEJmEhuNl6kJAOMWJG1aSXsC0M1mj94YxwAECWwQPBg==","lat":37.83123439853916,"tow":271511300,"h_accuracy":513,"crc":59145,"lon":-122.2865055890478} +{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"BO8uEPj////x////9v////EAygIPAg==","n":-8,"d":-10,"tow":271511300,"h_accuracy":241,"crc":461,"e":-15} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"BO8uEJsAhwBMAEgAcgAG","tow":271511300,"crc":17480,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"BO8uEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271511300,"h_accuracy":0,"crc":40428,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"BO8uEP//","tow":271511300,"crc":19751} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":237,"states":[{"cn0":213,"mesid":{"sat":5,"code":0}},{"cn0":180,"mesid":{"sat":21,"code":0}},{"cn0":188,"mesid":{"sat":2,"code":0}},{"cn0":166,"mesid":{"sat":31,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":217,"mesid":{"sat":25,"code":0}},{"cn0":206,"mesid":{"sat":12,"code":0}},{"cn0":213,"mesid":{"sat":29,"code":0}},{"cn0":205,"mesid":{"sat":18,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":204,"mesid":{"sat":131,"code":2}},{"cn0":205,"mesid":{"sat":25,"code":1}},{"cn0":187,"mesid":{"sat":12,"code":1}},{"cn0":152,"mesid":{"sat":31,"code":1}},{"cn0":196,"mesid":{"sat":18,"code":1}},{"cn0":195,"mesid":{"sat":29,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":194,"mesid":{"sat":5,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":213,"mesid":{"sat":100,"code":3}},{"cn0":177,"mesid":{"sat":98,"code":3}},{"cn0":173,"mesid":{"sat":102,"code":3}},{"cn0":207,"mesid":{"sat":101,"code":3}},{"cn0":206,"mesid":{"sat":93,"code":3}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":181,"mesid":{"sat":106,"code":3}},{"cn0":201,"mesid":{"sat":104,"code":3}},{"cn0":171,"mesid":{"sat":98,"code":4}},{"cn0":205,"mesid":{"sat":102,"code":4}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":199,"mesid":{"sat":100,"code":4}},{"cn0":195,"mesid":{"sat":101,"code":4}},{"cn0":188,"mesid":{"sat":104,"code":4}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":175,"mesid":{"sat":106,"code":4}},{"cn0":199,"mesid":{"sat":35,"code":12}},{"cn0":168,"mesid":{"sat":26,"code":12}},{"cn0":158,"mesid":{"sat":34,"code":12}},{"cn0":188,"mesid":{"sat":24,"code":12}},{"cn0":156,"mesid":{"sat":25,"code":12}},{"cn0":184,"mesid":{"sat":12,"code":12}},{"cn0":183,"mesid":{"sat":19,"code":12}},{"cn0":190,"mesid":{"sat":22,"code":12}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":207,"mesid":{"sat":12,"code":13}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":195,"mesid":{"sat":12,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":191,"mesid":{"sat":25,"code":14}},{"cn0":188,"mesid":{"sat":11,"code":14}},{"cn0":204,"mesid":{"sat":24,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":159,"mesid":{"sat":31,"code":14}},{"cn0":153,"mesid":{"sat":33,"code":14}},{"cn0":200,"mesid":{"sat":25,"code":20}},{"cn0":215,"mesid":{"sat":24,"code":20}},{"cn0":193,"mesid":{"sat":11,"code":20}},{"cn0":173,"mesid":{"sat":31,"code":20}},{"cn0":207,"mesid":{"sat":12,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":169,"mesid":{"sat":33,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}}],"preamble":85,"sender":22963,"msg_type":97,"payload":"BQDVFQC0AgC8HwCmAAAAAAAAGQDZDADOHQDVEgDNAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwLMGQHNDAG7HwGYEgHEHQHDAAAABQHCAAAAAAAAAAAAAAAAZAPVYgOxZgOtZQPPXQPOAAAAagO1aAPJYgSrZgTNAAAAZATHZQTDaAS8AAAAagSvIwzHGgyoIgyeGAy8GQycDAy4Ewy3Fgy+AAAADA3PAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADA7DAAAAGQ6/Cw68GA7MAAAAHw6fIQ6ZGRTIGBTXCxTBHxStDBTPAAAAIRSpAAAA","crc":56052} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"Mgho7y4QAAAAAAE=","wn":2098,"tow":271511400,"crc":18527} +{"length":16,"flags":17,"ns":399999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EWjvLhDkBwMZAxg1/oPXFw==","day":25,"tow":271511400,"year":2020,"crc":12354,"minutes":24,"month":3,"seconds":53} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.528444599602352,"preamble":85,"sender":22963,"msg_type":522,"payload":"aO8uEPqGMeNl6kJApqVsG1aSXsA4CjElSIcxwAECWwQPBg==","lat":37.83123435896228,"tow":271511400,"h_accuracy":513,"crc":44591,"lon":-122.2865055619246} +{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"aO8uEPP///8HAAAAFQAAAPEAygIPAg==","n":-13,"d":21,"tow":271511400,"h_accuracy":241,"crc":43187,"e":7} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"aO8uEJsAhwBMAEgAcgAG","tow":271511400,"crc":20386,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"aO8uEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271511400,"h_accuracy":0,"crc":56313,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"aO8uEP//","tow":271511400,"crc":6620} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":9,"l2ca_bias":0,"preamble":85,"l2p_bias":0,"sender":22963,"msg_type":117,"payload":"/wAAAAAAAAAA","l1ca_bias":0,"mask":255,"crc":49809,"l1p_bias":0} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgjM7y4QAAAAAAE=","wn":2098,"tow":271511500,"crc":52478} +{"length":16,"flags":17,"ns":499999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EczvLhDkBwMZAxg1/mTNHQ==","day":25,"tow":271511500,"year":2020,"crc":2725,"minutes":24,"month":3,"seconds":53} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.527831057915524,"preamble":85,"sender":22963,"msg_type":522,"payload":"zO8uEOWAEeNl6kJAkY9oG1aSXsBtj6vvH4cxwAECWwQPBg==","lat":37.83123434405005,"tow":271511500,"h_accuracy":513,"crc":38829,"lon":-122.28650555811898} +{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"zO8uEAcAAAABAAAA/f////EAygIPAg==","n":7,"d":-3,"tow":271511500,"h_accuracy":241,"crc":21114,"e":1} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"zO8uEJsAhwBMAEgAcgAG","tow":271511500,"crc":7446,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"zO8uEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271511500,"h_accuracy":0,"crc":44160,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"zO8uEP//","tow":271511500,"crc":65109} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"Mggw8C4QAAAAAAE=","wn":2098,"tow":271511600,"crc":35313} +{"length":16,"flags":17,"ns":599999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"ETDwLhDkBwMZAxg1/kXDIw==","day":25,"tow":271511600,"year":2020,"crc":809,"minutes":24,"month":3,"seconds":53} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.523532228366516,"preamble":85,"sender":22963,"msg_type":522,"payload":"MPAuELQi0OJl6kJAzSpqG1aSXsB3PEc1BoYxwAECWwQPBg==","lat":37.831234313610736,"tow":271511600,"h_accuracy":513,"crc":8380,"lon":-122.28650555961504} +{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"MPAuEAAAAAADAAAABQAAAPEAygIPAg==","n":0,"d":5,"tow":271511600,"h_accuracy":241,"crc":37229,"e":3} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"MPAuEJsAhwBMAEgAcgAG","tow":271511600,"crc":20990,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"MPAuEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271511600,"h_accuracy":0,"crc":42365,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"MPAuEP//","tow":271511600,"crc":1449} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgiU8C4QAAAAAAE=","wn":2098,"tow":271511700,"crc":3408} +{"length":16,"flags":17,"ns":699999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EZTwLhDkBwMZAxg1/ia5KQ==","day":25,"tow":271511700,"year":2020,"crc":54654,"minutes":24,"month":3,"seconds":53} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.517011238403345,"preamble":85,"sender":22963,"msg_type":522,"payload":"lPAuEFmRpeJl6kJABWVpG1aSXsBZmzjZWoQxwAECWwQPBg==","lat":37.83123429378856,"tow":271511700,"h_accuracy":513,"crc":60977,"lon":-122.28650555889551} +{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"lPAuEAEAAAAFAAAABAAAAPEAygIPAg==","n":1,"d":4,"tow":271511700,"h_accuracy":241,"crc":29191,"e":5} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"lPAuEJsAhwBMAEgAcgAG","tow":271511700,"crc":842,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"lPAuEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271511700,"h_accuracy":0,"crc":53764,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"lPAuEP//","tow":271511700,"crc":57888} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"message_type":28,"length":34,"data":[76,47,106,45,172,32,69,139,103,111,218,145,4,70,150,107,74,24,16,8,4,143,122,227,253,137,48],"preamble":85,"sender":22963,"msg_type":30583,"payload":"gwLD7y4QHEwvai2sIEWLZ2/akQRGlmtKGBAIBI964/2JMA==","tow":271511491,"crc":274,"sid":{"sat":131,"code":2}} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"Mgj48C4QAAAAAAE=","wn":2098,"tow":271511800,"crc":16485} +{"length":16,"flags":17,"ns":799999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EfjwLhDkBwMZAxg1/gevLw==","day":25,"tow":271511800,"year":2020,"crc":42609,"minutes":24,"month":3,"seconds":53} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.513193863228352,"preamble":85,"sender":22963,"msg_type":522,"payload":"+PAuEIv8a+Jl6kJA7cZ1G1aSXsDcEkusYIMxwAECWwQPBg==","lat":37.831234266975194,"tow":271511800,"h_accuracy":513,"crc":9943,"lon":-122.28650557042756} +{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"+PAuEPf///8AAAAAAAAAAPEAygIPAg==","n":-9,"d":0,"tow":271511800,"h_accuracy":241,"crc":12572,"e":0} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"+PAuEJsAhwBMAEgAcgAG","tow":271511800,"crc":2208,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"+PAuEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271511800,"h_accuracy":0,"crc":37905,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"+PAuEP//","tow":271511800,"crc":46811} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":237,"states":[{"cn0":214,"mesid":{"sat":5,"code":0}},{"cn0":181,"mesid":{"sat":21,"code":0}},{"cn0":189,"mesid":{"sat":2,"code":0}},{"cn0":167,"mesid":{"sat":31,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":218,"mesid":{"sat":25,"code":0}},{"cn0":207,"mesid":{"sat":12,"code":0}},{"cn0":214,"mesid":{"sat":29,"code":0}},{"cn0":206,"mesid":{"sat":18,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":205,"mesid":{"sat":131,"code":2}},{"cn0":205,"mesid":{"sat":25,"code":1}},{"cn0":188,"mesid":{"sat":12,"code":1}},{"cn0":153,"mesid":{"sat":31,"code":1}},{"cn0":196,"mesid":{"sat":18,"code":1}},{"cn0":196,"mesid":{"sat":29,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":195,"mesid":{"sat":5,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":213,"mesid":{"sat":11,"code":3}},{"cn0":178,"mesid":{"sat":9,"code":3}},{"cn0":173,"mesid":{"sat":20,"code":3}},{"cn0":207,"mesid":{"sat":5,"code":3}},{"cn0":207,"mesid":{"sat":10,"code":3}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":182,"mesid":{"sat":4,"code":3}},{"cn0":202,"mesid":{"sat":21,"code":3}},{"cn0":171,"mesid":{"sat":9,"code":4}},{"cn0":205,"mesid":{"sat":20,"code":4}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":199,"mesid":{"sat":11,"code":4}},{"cn0":195,"mesid":{"sat":5,"code":4}},{"cn0":188,"mesid":{"sat":0,"code":4}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":176,"mesid":{"sat":4,"code":4}},{"cn0":199,"mesid":{"sat":35,"code":12}},{"cn0":169,"mesid":{"sat":26,"code":12}},{"cn0":158,"mesid":{"sat":34,"code":12}},{"cn0":188,"mesid":{"sat":24,"code":12}},{"cn0":156,"mesid":{"sat":25,"code":12}},{"cn0":185,"mesid":{"sat":12,"code":12}},{"cn0":183,"mesid":{"sat":19,"code":12}},{"cn0":190,"mesid":{"sat":22,"code":12}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":207,"mesid":{"sat":12,"code":13}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":195,"mesid":{"sat":12,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":192,"mesid":{"sat":25,"code":14}},{"cn0":189,"mesid":{"sat":11,"code":14}},{"cn0":205,"mesid":{"sat":24,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":160,"mesid":{"sat":31,"code":14}},{"cn0":153,"mesid":{"sat":33,"code":14}},{"cn0":200,"mesid":{"sat":25,"code":20}},{"cn0":215,"mesid":{"sat":24,"code":20}},{"cn0":194,"mesid":{"sat":11,"code":20}},{"cn0":173,"mesid":{"sat":31,"code":20}},{"cn0":206,"mesid":{"sat":12,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":169,"mesid":{"sat":33,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}}],"preamble":85,"sender":22963,"msg_type":97,"payload":"BQDWFQC1AgC9HwCnAAAAAAAAGQDaDADPHQDWEgDOAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwLNGQHNDAG8HwGZEgHEHQHEAAAABQHDAAAAAAAAAAAAAAAACwPVCQOyFAOtBQPPCgPPAAAABAO2FQPKCQSrFATNAAAACwTHBQTDAAS8AAAABASwIwzHGgypIgyeGAy8GQycDAy5Ewy3Fgy+AAAADA3PAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADA7DAAAAGQ7ACw69GA7NAAAAHw6gIQ6ZGRTIGBTXCxTCHxStDBTOAAAAIRSpAAAA","crc":31893} +{"length":136,"preamble":85,"sender":22963,"msg_type":151,"payload":"AgAaHgUALDUMAFEtFQB9GRkAbUYaAKEBHQChNx8AlQ4EAxYWBQMyIQYDTggJA18OCgNxKQsDmCUMA6oDEwMiBxQDCzEVA5UlDAyUKRMMIyAUDA8CFgxDIxgMgiMZDJ0OGgxnFR0MLAAiDI4RIwwiLQsOizIMDg88GA5sNhkOlykfDlURIQ4fDw==","crc":41336,"azel":[{"el":30,"az":26,"sid":{"sat":2,"code":0}},{"el":53,"az":44,"sid":{"sat":5,"code":0}},{"el":45,"az":81,"sid":{"sat":12,"code":0}},{"el":25,"az":125,"sid":{"sat":21,"code":0}},{"el":70,"az":109,"sid":{"sat":25,"code":0}},{"el":1,"az":161,"sid":{"sat":26,"code":0}},{"el":55,"az":161,"sid":{"sat":29,"code":0}},{"el":14,"az":149,"sid":{"sat":31,"code":0}},{"el":22,"az":22,"sid":{"sat":4,"code":3}},{"el":33,"az":50,"sid":{"sat":5,"code":3}},{"el":8,"az":78,"sid":{"sat":6,"code":3}},{"el":14,"az":95,"sid":{"sat":9,"code":3}},{"el":41,"az":113,"sid":{"sat":10,"code":3}},{"el":37,"az":152,"sid":{"sat":11,"code":3}},{"el":3,"az":170,"sid":{"sat":12,"code":3}},{"el":7,"az":34,"sid":{"sat":19,"code":3}},{"el":49,"az":11,"sid":{"sat":20,"code":3}},{"el":37,"az":149,"sid":{"sat":21,"code":3}},{"el":41,"az":148,"sid":{"sat":12,"code":12}},{"el":32,"az":35,"sid":{"sat":19,"code":12}},{"el":2,"az":15,"sid":{"sat":20,"code":12}},{"el":35,"az":67,"sid":{"sat":22,"code":12}},{"el":35,"az":130,"sid":{"sat":24,"code":12}},{"el":14,"az":157,"sid":{"sat":25,"code":12}},{"el":21,"az":103,"sid":{"sat":26,"code":12}},{"el":0,"az":44,"sid":{"sat":29,"code":12}},{"el":17,"az":142,"sid":{"sat":34,"code":12}},{"el":45,"az":34,"sid":{"sat":35,"code":12}},{"el":50,"az":139,"sid":{"sat":11,"code":14}},{"el":60,"az":15,"sid":{"sat":12,"code":14}},{"el":54,"az":108,"sid":{"sat":24,"code":14}},{"el":41,"az":151,"sid":{"sat":25,"code":14}},{"el":17,"az":85,"sid":{"sat":31,"code":14}},{"el":15,"az":31,"sid":{"sat":33,"code":14}}]} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"Mghc8S4QAAAAAAE=","wn":2098,"tow":271511900,"crc":33559} +{"length":16,"flags":17,"ns":899999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EVzxLhDkBwMZAxg1/uikNQ==","day":25,"tow":271511900,"year":2020,"crc":27685,"minutes":24,"month":3,"seconds":53} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.509124888950268,"preamble":85,"sender":22963,"msg_type":522,"payload":"XPEuEGZ1P+Jl6kJAS1+OG1aSXsD8njsCVoIxwAECWwQPBg==","lat":37.83123424624027,"tow":271511900,"h_accuracy":513,"crc":48206,"lon":-122.28650559333362} +{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"XPEuEPj////9////9/////EAygIPAg==","n":-8,"d":-9,"tow":271511900,"h_accuracy":241,"crc":54068,"e":-3} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"XPEuEJsAhwBMAEgAcgAG","tow":271511900,"crc":8565,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"XPEuEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271511900,"h_accuracy":0,"crc":13982,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"XPEuEP//","tow":271511900,"crc":64259} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":249,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":241,"i":110563669},"flags":15,"cn0":214,"P":1051978216,"D":{"f":190,"i":-180},"lock":15,"sid":{"sat":5,"code":0}},{"L":{"f":10,"i":121831265},"flags":15,"cn0":181,"P":1159185965,"D":{"f":183,"i":2176},"lock":15,"sid":{"sat":21,"code":0}},{"L":{"f":223,"i":123330892},"flags":15,"cn0":189,"P":1173454052,"D":{"f":68,"i":-2479},"lock":15,"sid":{"sat":2,"code":0}},{"L":{"f":146,"i":128737198},"flags":15,"cn0":167,"P":1224893721,"D":{"f":12,"i":-393},"lock":15,"sid":{"sat":31,"code":0}},{"L":{"f":55,"i":107819928},"flags":15,"cn0":218,"P":1025872426,"D":{"f":245,"i":-1124},"lock":15,"sid":{"sat":25,"code":0}},{"L":{"f":7,"i":114089850},"flags":15,"cn0":207,"P":1085528720,"D":{"f":180,"i":-2966},"lock":15,"sid":{"sat":12,"code":0}},{"L":{"f":73,"i":110765365},"flags":15,"cn0":214,"P":1053897340,"D":{"f":223,"i":1485},"lock":15,"sid":{"sat":29,"code":0}},{"L":{"f":249,"i":84015548},"flags":15,"cn0":205,"P":1025872499,"D":{"f":207,"i":-877},"lock":15,"sid":{"sat":25,"code":1}},{"L":{"f":120,"i":88901213},"flags":15,"cn0":188,"P":1085528655,"D":{"f":238,"i":-2311},"lock":15,"sid":{"sat":12,"code":1}},{"L":{"f":159,"i":100314702},"flags":15,"cn0":153,"P":1224893644,"D":{"f":181,"i":-307},"lock":15,"sid":{"sat":31,"code":1}},{"L":{"f":15,"i":86310676},"flags":15,"cn0":196,"P":1053897240,"D":{"f":27,"i":1159},"lock":15,"sid":{"sat":29,"code":1}},{"L":{"f":78,"i":86153538},"flags":15,"cn0":195,"P":1051978145,"D":{"f":187,"i":-142},"lock":15,"sid":{"sat":5,"code":1}},{"L":{"f":111,"i":112939943},"flags":15,"cn0":213,"P":1056758205,"D":{"f":20,"i":1170},"lock":15,"sid":{"sat":11,"code":3}},{"L":{"f":29,"i":123324305},"flags":15,"cn0":178,"P":1154733782,"D":{"f":244,"i":-4407},"lock":15,"sid":{"sat":9,"code":3}}],"payload":"wPEuEAAAAAAyCEDo6bM+VRGXBvFM/77WDw8FAC3GF0Vh/0IHCoAIt7UPDxUA5HzxRUzhWQffUfZEvQ8PAgAZZQJJrl+sB5J3/gynDw8fACqSJT2YM20GN5z79doPDxkAkNqzQHrfzAYHavS0zw8PDAB8MtE+NSWaBknNBd/WDw8dAHOSJT28+QEF+ZP8z80PDxkBT9qzQF2GTAV4+fbuvA8PDAHMZAJJTq76BZ/N/rWZDw8fARgy0T4U/yQFD4cEG8QPDx0BoemzPkKZIgVOcv+7ww8PBQG92fw+p1O7Bm+SBBTVDw8LA9bW00SRx1kHHcnu9LIPDwkD","header":{"n_obs":64,"t":{"ns_residual":0,"wn":2098,"tow":271512000}},"crc":18810} +{"length":249,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":127,"i":109767896},"flags":15,"cn0":173,"P":1026357193,"D":{"f":170,"i":-1209},"lock":15,"sid":{"sat":20,"code":3}},{"L":{"f":103,"i":114865190},"flags":15,"cn0":207,"P":1074395130,"D":{"f":139,"i":2201},"lock":15,"sid":{"sat":5,"code":3}},{"L":{"f":142,"i":111596802},"flags":15,"cn0":207,"P":1046763463,"D":{"f":196,"i":-3043},"lock":15,"sid":{"sat":10,"code":3}},{"L":{"f":181,"i":120435599},"flags":15,"cn0":182,"P":1124524654,"D":{"f":56,"i":-1312},"lock":15,"sid":{"sat":4,"code":3}},{"L":{"f":186,"i":113423493},"flags":15,"cn0":202,"P":1059794098,"D":{"f":161,"i":1624},"lock":15,"sid":{"sat":21,"code":3}},{"L":{"f":160,"i":95918913},"flags":15,"cn0":170,"P":1154733894,"D":{"f":226,"i":-3428},"lock":15,"sid":{"sat":9,"code":4}},{"L":{"f":85,"i":85375066},"flags":15,"cn0":205,"P":1026357552,"D":{"f":131,"i":-941},"lock":15,"sid":{"sat":20,"code":4}},{"L":{"f":144,"i":87842188},"flags":15,"cn0":199,"P":1056758480,"D":{"f":30,"i":910},"lock":15,"sid":{"sat":11,"code":4}},{"L":{"f":82,"i":89339596},"flags":15,"cn0":195,"P":1074395436,"D":{"f":121,"i":1711},"lock":15,"sid":{"sat":5,"code":4}},{"L":{"f":84,"i":93672123},"flags":15,"cn0":176,"P":1124524887,"D":{"f":93,"i":-1019},"lock":15,"sid":{"sat":4,"code":4}},{"L":{"f":203,"i":121576547},"flags":15,"cn0":199,"P":1167374601,"D":{"f":26,"i":-1498},"lock":15,"sid":{"sat":35,"code":12}},{"L":{"f":110,"i":129205103},"flags":15,"cn0":169,"P":1240624133,"D":{"f":93,"i":-3007},"lock":15,"sid":{"sat":26,"code":12}},{"L":{"f":193,"i":132951103},"flags":15,"cn0":158,"P":1276592834,"D":{"f":97,"i":2250},"lock":15,"sid":{"sat":34,"code":12}},{"L":{"f":50,"i":125148374},"flags":15,"cn0":188,"P":1201671490,"D":{"f":71,"i":-1301},"lock":15,"sid":{"sat":24,"code":12}}],"payload":"wPEuEAAAAAAyCEHJ9yw92OyKBn9H+6qtDw8UA/r3CUAmtNgGZ5kIi88PDwUDx1dkPgLVpgaOHfTEzw8PCgNu4gZDj7MtB7Xg+ji2Dw8EA7IsKz+FtMIGulgGocoPDxUDRtfTREGbtwWgnPLiqg8PCQQw+Sw9WrgWBVVT/IPNDw8UBNDa/D6MXTwFkI4DHscPDwsELPkJQMw2UwVSrwZ5ww8PBQRX4wZDu1KVBVQF/F2wDw8EBAm5lEVjHD8Hyyb6GscPDyMMBWzySW+DswduQfRdqQ8PGgzCQhdMP6zsB8HKCGGeDw8iDEINoEfWnHUHMuv6R7wPDxgM","header":{"n_obs":65,"t":{"ns_residual":0,"wn":2098,"tow":271512000}},"crc":55295} +{"length":249,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":64,"i":134675166},"flags":15,"cn0":156,"P":1293147459,"D":{"f":244,"i":1326},"lock":15,"sid":{"sat":25,"code":12}},{"L":{"f":180,"i":121103607},"flags":15,"cn0":184,"P":1162833717,"D":{"f":86,"i":1613},"lock":15,"sid":{"sat":12,"code":12}},{"L":{"f":1,"i":124514301},"flags":15,"cn0":183,"P":1195583070,"D":{"f":102,"i":-287},"lock":15,"sid":{"sat":19,"code":12}},{"L":{"f":77,"i":124709795},"flags":15,"cn0":190,"P":1197460207,"D":{"f":60,"i":2390},"lock":15,"sid":{"sat":22,"code":12}},{"L":{"f":249,"i":93644999},"flags":15,"cn0":207,"P":1162833642,"D":{"f":160,"i":1247},"lock":15,"sid":{"sat":12,"code":13}},{"L":{"f":107,"i":116423840},"flags":15,"cn0":195,"P":1107735988,"D":{"f":250,"i":-1027},"lock":15,"sid":{"sat":12,"code":14}},{"L":{"f":242,"i":132477207},"flags":15,"cn0":192,"P":1260478650,"D":{"f":215,"i":1089},"lock":15,"sid":{"sat":25,"code":14}},{"L":{"f":22,"i":125424836},"flags":15,"cn0":189,"P":1193377588,"D":{"f":153,"i":1049},"lock":15,"sid":{"sat":11,"code":14}},{"L":{"f":101,"i":118410184},"flags":15,"cn0":205,"P":1126635315,"D":{"f":193,"i":-1743},"lock":15,"sid":{"sat":24,"code":14}},{"L":{"f":128,"i":143314646},"flags":15,"cn0":160,"P":1363593505,"D":{"f":210,"i":-3175},"lock":15,"sid":{"sat":31,"code":14}},{"L":{"f":13,"i":144519624},"flags":15,"cn0":153,"P":1375058500,"D":{"f":109,"i":-2139},"lock":15,"sid":{"sat":33,"code":14}},{"L":{"f":100,"i":101508508},"flags":15,"cn0":200,"P":1260478619,"D":{"f":167,"i":835},"lock":15,"sid":{"sat":25,"code":20}},{"L":{"f":28,"i":90729945},"flags":15,"cn0":215,"P":1126635857,"D":{"f":198,"i":-1336},"lock":15,"sid":{"sat":24,"code":20}},{"L":{"f":91,"i":96104722},"flags":15,"cn0":193,"P":1193377389,"D":{"f":76,"i":802},"lock":15,"sid":{"sat":11,"code":20}}],"payload":"wPEuEAAAAAAyCEJD3RNN3voGCEAuBfScDw8ZDDVvT0X35DcHtE0GVrgPDwwMXiZDR/3vawcB4f5mtw8PEwzvyl9Ho+tuB01WCTy+Dw8WDOpuT0XH6JQF+d8EoM8PDwwNtLUGQqB88AZr/fv6ww8PDA66YCFLF3HlB/JBBNfADw8ZDjR/IUfE1HkHFhkEmb0PDwsOMxcnQ8jLDgdlMfnBzQ8PGA4hyUZR1s6KCICZ89KgDw8fDkS69VHIMZ0IDaX3bZkPDyEOm2AhS5zlDAZkQwOnyA8PGRRRGSdD2W1oBRzI+sbXDw8YFG1+IUcScboFWyIDTMEPDwsU","header":{"n_obs":66,"t":{"ns_residual":0,"wn":2098,"tow":271512000}},"crc":41497} +{"length":62,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":222,"i":109812562},"flags":15,"cn0":172,"P":1363593579,"D":{"f":178,"i":-2429},"lock":15,"sid":{"sat":31,"code":20}},{"L":{"f":83,"i":89207908},"flags":15,"cn0":206,"P":1107735826,"D":{"f":142,"i":-786},"lock":15,"sid":{"sat":12,"code":20}},{"L":{"f":84,"i":110735886},"flags":15,"cn0":169,"P":1375058449,"D":{"f":200,"i":-1640},"lock":15,"sid":{"sat":33,"code":20}}],"payload":"wPEuEAAAAAAyCENryUZRUpuLBt6D9rKsDw8fFBK1BkJkNFEFU+78js4PDwwUEbr1UQ6ymQZUmPnIqQ8PIRQ=","header":{"n_obs":67,"t":{"ns_residual":0,"wn":2098,"tow":271512000}},"crc":56651} +{"length":9,"l2ca_bias":0,"preamble":85,"l2p_bias":0,"sender":22963,"msg_type":117,"payload":"/wAAAAAAAAAA","l1ca_bias":0,"mask":255,"crc":49809,"l1p_bias":0} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgjA8S4QAAAAAAE=","wn":2098,"tow":271512000,"crc":55883} +{"length":16,"flags":17,"ns":999999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EcDxLhDkBwMZAxg1/smaOw==","day":25,"tow":271512000,"year":2020,"crc":48360,"minutes":24,"month":3,"seconds":53} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.508655917081146,"preamble":85,"sender":22963,"msg_type":522,"payload":"wPEuEKiORuJl6kJAF4O0G1aSXsDJxzBGN4IxwAECWwQPBg==","lat":37.831234249545844,"tow":271512000,"h_accuracy":513,"crc":51573,"lon":-122.2865056288541} +{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"wPEuEAUAAAD1////DgAAAPEAygIPAg==","n":5,"d":14,"tow":271512000,"h_accuracy":241,"crc":47668,"e":-11} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"wPEuEJsAhwBMAEgAcgAG","tow":271512000,"crc":34586,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"wPEuEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271512000,"h_accuracy":0,"crc":51375,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"wPEuEP//","tow":271512000,"crc":15940} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":4,"flags":2147616000,"preamble":85,"sender":22963,"msg_type":65535,"payload":"AAUCgA==","crc":40942} +{"length":24,"z":3890655.0240602265,"preamble":85,"sender":22963,"msg_type":72,"payload":"UO0a3iqORMHK1UJhIkRQwc9nFIPvrk1B","crc":2168,"x":-2694229.735196747,"y":-4264073.519704292} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"bWFpbgAAAAAAAAAAAAAAAAAAAAAAAAx1AAA=","name":"main\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":47991,"stack_free":29964,"cpu":0} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"aWRsZQAAAAAAAAAAAAAAAAAAAABjAXwAAAA=","name":"idle\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":32761,"stack_free":124,"cpu":355} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"cnBtc2cAAAAAAAAAAAAAAAAAAAABAOwNAAA=","name":"rpmsg\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":53198,"stack_free":3564,"cpu":1} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"U0JQAAAAAAAAAAAAAAAAAAAAAAAAAPz/AAA=","name":"SBP\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":51784,"stack_free":65532,"cpu":0} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"TkFQAAAAAAAAAAAAAAAAAAAAAAAAAASAAAA=","name":"NAP\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":33651,"stack_free":32772,"cpu":0} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"bWFuYWdlIFBWAAAAAAAAAAAAAAAAACwEAAA=","name":"manage PV\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":61814,"stack_free":1068,"cpu":0} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"SU1VAAAAAAAAAAAAAAAAAAAAAAAAAPQHAAA=","name":"IMU\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":14252,"stack_free":2036,"cpu":0} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"SU1VIGF1eAAAAAAAAAAAAAAAAAAAAEwIAAA=","name":"IMU aux\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":18976,"stack_free":2124,"cpu":0} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"bmRiAAAAAAAAAAAAAAAAAAAAAAAAAFAMAAA=","name":"ndb\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":26120,"stack_free":3152,"cpu":0} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"TkFQIFRyYWNraW5nAAAAAAAAAAAeAdR3AAA=","name":"NAP Tracking\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":33839,"stack_free":30676,"cpu":286} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"ZGVjb2RlAAAAAAAAAAAAAAAAAAAHANQGAAA=","name":"decode\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":22929,"stack_free":1748,"cpu":7} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"bWFuYWdlIGFjcQAAAAAAAAAAAAC9AKR3AAA=","name":"manage acq\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":24209,"stack_free":30628,"cpu":189} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"c3lzdGVtIG1vbml0b3IAAAAAAAAAACwGAAA=","name":"system monitor\u0000\u0000\u0000\u0000\u0000\u0000","crc":58531,"stack_free":1580,"cpu":0} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"V2F0Y2hkb2cAAAAAAAAAAAAAAAAAAOQDAAA=","name":"Watchdog\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":44438,"stack_free":996,"cpu":0} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"c3RhcmxpbmcAAAAAAAAAAAAAAACVAPz/AAA=","name":"starling\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":15999,"stack_free":65532,"cpu":149} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"bWVfY2FsY19wdnQAAAAAAAAAAAAJAIwjAAA=","name":"me_calc_pvt\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":57561,"stack_free":9100,"cpu":9} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"UFBTAAAAAAAAAAAAAAAAAAAAAAAAAEgHAAA=","name":"PPS\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":38576,"stack_free":1864,"cpu":0} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"c3BlY3RydW0gYW5hbHl6ZXIAAAAAANQPAAA=","name":"spectrum analyzer\u0000\u0000\u0000","crc":50933,"stack_free":4052,"cpu":0} +{"cpu_vint":989,"length":10,"fe_temperature":5641,"preamble":85,"sender":22963,"cpu_vaux":1780,"msg_type":181,"payload":"7xbdA/QGTBUJFg==","dev_vin":5871,"crc":20678,"cpu_temperature":5452} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"Mggk8i4QAAAAAAE=","wn":2098,"tow":271512100,"crc":51526} +{"length":16,"flags":17,"ns":99999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"ESTyLhDkBwMZAxg2/uD1BQ==","day":25,"tow":271512100,"year":2020,"crc":29690,"minutes":24,"month":3,"seconds":54} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.501021724472572,"preamble":85,"sender":22963,"msg_type":522,"payload":"JPIuEE7qRuJl6kJAJUvVG1aSXsD6MbH1QoAxwAECWwQPBg==","lat":37.83123424971255,"tow":271512100,"h_accuracy":513,"crc":24835,"lon":-122.28650565938422} +{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"JPIuEA0AAAD5////+v////EAygIPAg==","n":13,"d":-6,"tow":271512100,"h_accuracy":241,"crc":47630,"e":-7} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"JPIuEJsAhwBMAEgAcgAG","tow":271512100,"crc":29188,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"JPIuEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271512100,"h_accuracy":0,"crc":1207,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"JPIuEP//","tow":271512100,"crc":23823} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgiI8i4QAAAAAAE=","wn":2098,"tow":271512200,"crc":25624} +{"length":16,"flags":17,"ns":199999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EYjyLhDkBwMZAxg2/sHrCw==","day":25,"tow":271512200,"year":2020,"crc":30287,"minutes":24,"month":3,"seconds":54} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.49366034937492,"preamble":85,"sender":22963,"msg_type":522,"payload":"iPIuEBQlCuJl6kJAOGHWG1aSXsCw5U+GYH4xwAECWwQPBg==","lat":37.83123422141412,"tow":271512200,"h_accuracy":513,"crc":52490,"lon":-122.28650566039585} +{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"iPIuEPH///8IAAAA+P////EAygIPAg==","n":-15,"d":-8,"tow":271512200,"h_accuracy":241,"crc":44818,"e":8} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"iPIuEJsAhwBMAEgAcgAG","tow":271512200,"crc":2037,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"iPIuEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271512200,"h_accuracy":0,"crc":11629,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"iPIuEP//","tow":271512200,"crc":47044} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"Mgjs8i4QAAAAAAE=","wn":2098,"tow":271512300,"crc":210} +{"length":16,"flags":17,"ns":299999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EezyLhDkBwMZAxg2/qLhEQ==","day":25,"tow":271512300,"year":2020,"crc":50283,"minutes":24,"month":3,"seconds":54} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.4876069396076,"preamble":85,"sender":22963,"msg_type":522,"payload":"7PIuEGxKyOFl6kJATdLVG1aSXsDT6vLO03wxwAECWwQPBg==","lat":37.831234190748404,"tow":271512300,"h_accuracy":513,"crc":64742,"lon":-122.28650565987591} +{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"7PIuEPX///8EAAAA+f////EAygIPAg==","n":-11,"d":-7,"tow":271512300,"h_accuracy":241,"crc":16008,"e":4} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"7PIuEJsAhwBMAEgAcgAG","tow":271512300,"crc":11098,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"7PIuEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271512300,"h_accuracy":0,"crc":13787,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"7PIuEP//","tow":271512300,"crc":61053} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":237,"states":[{"cn0":214,"mesid":{"sat":5,"code":0}},{"cn0":181,"mesid":{"sat":21,"code":0}},{"cn0":189,"mesid":{"sat":2,"code":0}},{"cn0":167,"mesid":{"sat":31,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":218,"mesid":{"sat":25,"code":0}},{"cn0":207,"mesid":{"sat":12,"code":0}},{"cn0":214,"mesid":{"sat":29,"code":0}},{"cn0":206,"mesid":{"sat":18,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":205,"mesid":{"sat":131,"code":2}},{"cn0":205,"mesid":{"sat":25,"code":1}},{"cn0":188,"mesid":{"sat":12,"code":1}},{"cn0":153,"mesid":{"sat":31,"code":1}},{"cn0":196,"mesid":{"sat":18,"code":1}},{"cn0":196,"mesid":{"sat":29,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":195,"mesid":{"sat":5,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":213,"mesid":{"sat":100,"code":3}},{"cn0":179,"mesid":{"sat":98,"code":3}},{"cn0":174,"mesid":{"sat":102,"code":3}},{"cn0":207,"mesid":{"sat":101,"code":3}},{"cn0":207,"mesid":{"sat":93,"code":3}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":181,"mesid":{"sat":106,"code":3}},{"cn0":202,"mesid":{"sat":104,"code":3}},{"cn0":170,"mesid":{"sat":98,"code":4}},{"cn0":205,"mesid":{"sat":102,"code":4}},{"cn0":92,"mesid":{"sat":93,"code":4}},{"cn0":199,"mesid":{"sat":100,"code":4}},{"cn0":195,"mesid":{"sat":101,"code":4}},{"cn0":188,"mesid":{"sat":104,"code":4}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":176,"mesid":{"sat":106,"code":4}},{"cn0":200,"mesid":{"sat":35,"code":12}},{"cn0":169,"mesid":{"sat":26,"code":12}},{"cn0":158,"mesid":{"sat":34,"code":12}},{"cn0":188,"mesid":{"sat":24,"code":12}},{"cn0":157,"mesid":{"sat":25,"code":12}},{"cn0":184,"mesid":{"sat":12,"code":12}},{"cn0":183,"mesid":{"sat":19,"code":12}},{"cn0":190,"mesid":{"sat":22,"code":12}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":208,"mesid":{"sat":12,"code":13}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":195,"mesid":{"sat":12,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":192,"mesid":{"sat":25,"code":14}},{"cn0":189,"mesid":{"sat":11,"code":14}},{"cn0":205,"mesid":{"sat":24,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":160,"mesid":{"sat":31,"code":14}},{"cn0":155,"mesid":{"sat":33,"code":14}},{"cn0":200,"mesid":{"sat":25,"code":20}},{"cn0":215,"mesid":{"sat":24,"code":20}},{"cn0":194,"mesid":{"sat":11,"code":20}},{"cn0":173,"mesid":{"sat":31,"code":20}},{"cn0":206,"mesid":{"sat":12,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":169,"mesid":{"sat":33,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}}],"preamble":85,"sender":22963,"msg_type":97,"payload":"BQDWFQC1AgC9HwCnAAAAAAAAGQDaDADPHQDWEgDOAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwLNGQHNDAG8HwGZEgHEHQHEAAAABQHDAAAAAAAAAAAAAAAAZAPVYgOzZgOuZQPPXQPPAAAAagO1aAPKYgSqZgTNXQRcZATHZQTDaAS8AAAAagSwIwzIGgypIgyeGAy8GQydDAy4Ewy3Fgy+AAAADA3QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADA7DAAAAGQ7ACw69GA7NAAAAHw6gIQ6bGRTIGBTXCxTCHxStDBTOAAAAIRSpAAAA","crc":43056} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MghQ8y4QAAAAAAE=","wn":2098,"tow":271512400,"crc":47521} +{"length":16,"flags":17,"ns":399999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EVDzLhDkBwMZAxg2/oPXFw==","day":25,"tow":271512400,"year":2020,"crc":64114,"minutes":24,"month":3,"seconds":54} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.483580739133487,"preamble":85,"sender":22963,"msg_type":522,"payload":"UPMuEDuotuFl6kJA/83dG1aSXsDIjYPyy3sxwAECWwQPBg==","lat":37.83123418253714,"tow":271512400,"h_accuracy":513,"crc":340,"lon":-122.28650566731083} +{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"UPMuEAEAAAABAAAAFwAAAPEAygIPAg==","n":1,"d":23,"tow":271512400,"h_accuracy":241,"crc":3150,"e":1} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"UPMuEJsAhwBMAEgAcgAG","tow":271512400,"crc":27456,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"UPMuEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271512400,"h_accuracy":0,"crc":29873,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"UPMuEP//","tow":271512400,"crc":46179} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":9,"l2ca_bias":0,"preamble":85,"l2p_bias":0,"sender":22963,"msg_type":117,"payload":"/wAAAAAAAAAA","l1ca_bias":0,"mask":255,"crc":49809,"l1p_bias":0} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"Mgi08y4QAAAAAAE=","wn":2098,"tow":271512500,"crc":25305} +{"length":16,"flags":17,"ns":499999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EbTzLhDkBwMZAxg2/mTNHQ==","day":25,"tow":271512500,"year":2020,"crc":60060,"minutes":24,"month":3,"seconds":54} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.47255376650362,"preamble":85,"sender":22963,"msg_type":522,"payload":"tPMuEDpto+Fl6kJAYbfjG1aSXsATvJxI+XgxwAECWwQPBg==","lat":37.831234173582246,"tow":271512500,"h_accuracy":513,"crc":24208,"lon":-122.28650567281649} +{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"tPMuEAAAAAADAAAA4f////EAygIPAg==","n":0,"d":-31,"tow":271512500,"h_accuracy":241,"crc":23959,"e":3} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"tPMuEJsAhwBMAEgAcgAG","tow":271512500,"crc":5117,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"tPMuEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271512500,"h_accuracy":0,"crc":54930,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"tPMuEP//","tow":271512500,"crc":14842} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MggY9C4QAAAAAAE=","wn":2098,"tow":271512600,"crc":2207} +{"length":16,"flags":17,"ns":599999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"ERj0LhDkBwMZAxg2/kXDIw==","day":25,"tow":271512600,"year":2020,"crc":43535,"minutes":24,"month":3,"seconds":54} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.4682354421654,"preamble":85,"sender":22963,"msg_type":522,"payload":"GPQuEPvCiOFl6kJAY6/oG1aSXsCy7SZH3ncxwAECWwQPBg==","lat":37.831234161165376,"tow":271512600,"h_accuracy":513,"crc":30449,"lon":-122.28650567744403} +{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"GPQuEP/////2////BwAAAPEAygIPAg==","n":-1,"d":7,"tow":271512600,"h_accuracy":241,"crc":969,"e":-10} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"GPQuEJsAhwBMAEgAcgAG","tow":271512600,"crc":5642,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"GPQuEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271512600,"h_accuracy":0,"crc":63176,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"GPQuEP//","tow":271512600,"crc":46309} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"Mgh89C4QAAAAAAE=","wn":2098,"tow":271512700,"crc":27733} +{"length":16,"flags":17,"ns":699999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EXz0LhDkBwMZAxg2/ia5KQ==","day":25,"tow":271512700,"year":2020,"crc":579,"minutes":24,"month":3,"seconds":54} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.46401403462343,"preamble":85,"sender":22963,"msg_type":522,"payload":"fPQuEHcyc+Fl6kJAXX3gG1aSXsC3l6+fyXYxwAECWwQPBg==","lat":37.83123415112362,"tow":271512700,"h_accuracy":513,"crc":57264,"lon":-122.28650566981146} +{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"fPQuEAkAAAD8////BAAAAPEAygIPAg==","n":9,"d":4,"tow":271512700,"h_accuracy":241,"crc":39398,"e":-4} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"fPQuEJsAhwBMAEgAcgAG","tow":271512700,"crc":15013,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"fPQuEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271512700,"h_accuracy":0,"crc":61054,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"fPQuEP//","tow":271512700,"crc":60764} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"message_type":25,"length":34,"data":[132,105,253,192,23,253,254,159,224,0,0,2,254,104,176,127,176,43,254,191,176,0,8,8,0,191,144],"preamble":85,"sender":22963,"msg_type":30583,"payload":"gwKZ8y4QGYRp/cAX/f6f4AAAAv5osH+wK/6/sAAICAC/kA==","tow":271512473,"crc":35058,"sid":{"sat":131,"code":2}} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"Mgjg9C4QAAAAAAE=","wn":2098,"tow":271512800,"crc":13577} +{"length":16,"flags":17,"ns":799999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EeD0LhDkBwMZAxg2/gevLw==","day":25,"tow":271512800,"year":2020,"crc":56521,"minutes":24,"month":3,"seconds":54} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.459738119858915,"preamble":85,"sender":22963,"msg_type":522,"payload":"4PQuEChSQeFl6kJANnXTG1aSXsDBhL1lsXUxwAECWwQPBg==","lat":37.8312341278982,"tow":271512800,"h_accuracy":513,"crc":62474,"lon":-122.28650565767461} +{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"4PQuEPj////6////EgAAAPEAygIPAg==","n":-8,"d":18,"tow":271512800,"h_accuracy":241,"crc":21939,"e":-6} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"4PQuEJsAhwBMAEgAcgAG","tow":271512800,"crc":40138,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"4PQuEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271512800,"h_accuracy":0,"crc":4175,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"4PQuEP//","tow":271512800,"crc":10267} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":237,"states":[{"cn0":214,"mesid":{"sat":5,"code":0}},{"cn0":181,"mesid":{"sat":21,"code":0}},{"cn0":190,"mesid":{"sat":2,"code":0}},{"cn0":167,"mesid":{"sat":31,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":218,"mesid":{"sat":25,"code":0}},{"cn0":207,"mesid":{"sat":12,"code":0}},{"cn0":214,"mesid":{"sat":29,"code":0}},{"cn0":206,"mesid":{"sat":18,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":206,"mesid":{"sat":131,"code":2}},{"cn0":205,"mesid":{"sat":25,"code":1}},{"cn0":188,"mesid":{"sat":12,"code":1}},{"cn0":153,"mesid":{"sat":31,"code":1}},{"cn0":196,"mesid":{"sat":18,"code":1}},{"cn0":196,"mesid":{"sat":29,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":195,"mesid":{"sat":5,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":213,"mesid":{"sat":11,"code":3}},{"cn0":179,"mesid":{"sat":9,"code":3}},{"cn0":174,"mesid":{"sat":20,"code":3}},{"cn0":208,"mesid":{"sat":5,"code":3}},{"cn0":207,"mesid":{"sat":10,"code":3}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":182,"mesid":{"sat":4,"code":3}},{"cn0":202,"mesid":{"sat":21,"code":3}},{"cn0":171,"mesid":{"sat":9,"code":4}},{"cn0":205,"mesid":{"sat":20,"code":4}},{"cn0":61,"mesid":{"sat":10,"code":4}},{"cn0":199,"mesid":{"sat":11,"code":4}},{"cn0":195,"mesid":{"sat":5,"code":4}},{"cn0":188,"mesid":{"sat":0,"code":4}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":176,"mesid":{"sat":4,"code":4}},{"cn0":200,"mesid":{"sat":35,"code":12}},{"cn0":169,"mesid":{"sat":26,"code":12}},{"cn0":158,"mesid":{"sat":34,"code":12}},{"cn0":189,"mesid":{"sat":24,"code":12}},{"cn0":157,"mesid":{"sat":25,"code":12}},{"cn0":185,"mesid":{"sat":12,"code":12}},{"cn0":184,"mesid":{"sat":19,"code":12}},{"cn0":190,"mesid":{"sat":22,"code":12}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":207,"mesid":{"sat":12,"code":13}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":196,"mesid":{"sat":12,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":193,"mesid":{"sat":25,"code":14}},{"cn0":190,"mesid":{"sat":11,"code":14}},{"cn0":205,"mesid":{"sat":24,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":160,"mesid":{"sat":31,"code":14}},{"cn0":154,"mesid":{"sat":33,"code":14}},{"cn0":200,"mesid":{"sat":25,"code":20}},{"cn0":215,"mesid":{"sat":24,"code":20}},{"cn0":193,"mesid":{"sat":11,"code":20}},{"cn0":173,"mesid":{"sat":31,"code":20}},{"cn0":206,"mesid":{"sat":12,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":169,"mesid":{"sat":33,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}}],"preamble":85,"sender":22963,"msg_type":97,"payload":"BQDWFQC1AgC+HwCnAAAAAAAAGQDaDADPHQDWEgDOAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwLOGQHNDAG8HwGZEgHEHQHEAAAABQHDAAAAAAAAAAAAAAAACwPVCQOzFAOuBQPQCgPPAAAABAO2FQPKCQSrFATNCgQ9CwTHBQTDAAS8AAAABASwIwzIGgypIgyeGAy9GQydDAy5Ewy4Fgy+AAAADA3PAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADA7EAAAAGQ7BCw6+GA7NAAAAHw6gIQ6aGRTIGBTXCxTBHxStDBTOAAAAIRSpAAAA","crc":45023} +{"length":136,"preamble":85,"sender":22963,"msg_type":151,"payload":"AgAaHgUALDUMAFEtFQB9GRkAbUYaAKEBHQChNx8AlQ4EAxYWBQMyIQYDTggJA18OCgNxKQsDmCUMA6oDEwMiBxQDCzEVA5UlDAyUKRMMIyAUDA8CFgxDIxgMgiMZDJ0OGgxnFR0MLAAiDI4RIwwiLQsOizIMDg88GA5sNhkOlykfDlURIQ4fDw==","crc":41336,"azel":[{"el":30,"az":26,"sid":{"sat":2,"code":0}},{"el":53,"az":44,"sid":{"sat":5,"code":0}},{"el":45,"az":81,"sid":{"sat":12,"code":0}},{"el":25,"az":125,"sid":{"sat":21,"code":0}},{"el":70,"az":109,"sid":{"sat":25,"code":0}},{"el":1,"az":161,"sid":{"sat":26,"code":0}},{"el":55,"az":161,"sid":{"sat":29,"code":0}},{"el":14,"az":149,"sid":{"sat":31,"code":0}},{"el":22,"az":22,"sid":{"sat":4,"code":3}},{"el":33,"az":50,"sid":{"sat":5,"code":3}},{"el":8,"az":78,"sid":{"sat":6,"code":3}},{"el":14,"az":95,"sid":{"sat":9,"code":3}},{"el":41,"az":113,"sid":{"sat":10,"code":3}},{"el":37,"az":152,"sid":{"sat":11,"code":3}},{"el":3,"az":170,"sid":{"sat":12,"code":3}},{"el":7,"az":34,"sid":{"sat":19,"code":3}},{"el":49,"az":11,"sid":{"sat":20,"code":3}},{"el":37,"az":149,"sid":{"sat":21,"code":3}},{"el":41,"az":148,"sid":{"sat":12,"code":12}},{"el":32,"az":35,"sid":{"sat":19,"code":12}},{"el":2,"az":15,"sid":{"sat":20,"code":12}},{"el":35,"az":67,"sid":{"sat":22,"code":12}},{"el":35,"az":130,"sid":{"sat":24,"code":12}},{"el":14,"az":157,"sid":{"sat":25,"code":12}},{"el":21,"az":103,"sid":{"sat":26,"code":12}},{"el":0,"az":44,"sid":{"sat":29,"code":12}},{"el":17,"az":142,"sid":{"sat":34,"code":12}},{"el":45,"az":34,"sid":{"sat":35,"code":12}},{"el":50,"az":139,"sid":{"sat":11,"code":14}},{"el":60,"az":15,"sid":{"sat":12,"code":14}},{"el":54,"az":108,"sid":{"sat":24,"code":14}},{"el":41,"az":151,"sid":{"sat":25,"code":14}},{"el":17,"az":85,"sid":{"sat":31,"code":14}},{"el":15,"az":31,"sid":{"sat":33,"code":14}}]} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MghE9S4QAAAAAAE=","wn":2098,"tow":271512900,"crc":63099} +{"length":16,"flags":17,"ns":899999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EUT1LhDkBwMZAxg2/uikNQ==","day":25,"tow":271512900,"year":2020,"crc":5789,"minutes":24,"month":3,"seconds":54} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.448876195284655,"preamble":85,"sender":22963,"msg_type":522,"payload":"RPUuEA2NHeFl6kJA+cqkG1aSXsBUs+KM6XIxwAECWwQPBg==","lat":37.83123411124152,"tow":271512900,"h_accuracy":513,"crc":11556,"lon":-122.28650561421445} +{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"RPUuEPv///8QAAAA2/////EAygIPAg==","n":-5,"d":-37,"tow":271512900,"h_accuracy":241,"crc":38093,"e":16} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"RPUuEJsAhwBMAEgAcgAG","tow":271512900,"crc":46367,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"RPUuEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271512900,"h_accuracy":0,"crc":45760,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"RPUuEP//","tow":271512900,"crc":26051} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":249,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":179,"i":110563849},"flags":15,"cn0":214,"P":1051979922,"D":{"f":224,"i":-180},"lock":15,"sid":{"sat":5,"code":0}},{"L":{"f":77,"i":121829089},"flags":15,"cn0":181,"P":1159165271,"D":{"f":149,"i":2174},"lock":15,"sid":{"sat":21,"code":0}},{"L":{"f":136,"i":123333370},"flags":15,"cn0":190,"P":1173477624,"D":{"f":30,"i":-2476},"lock":15,"sid":{"sat":2,"code":0}},{"L":{"f":31,"i":128737591},"flags":15,"cn0":167,"P":1224897457,"D":{"f":71,"i":-394},"lock":15,"sid":{"sat":31,"code":0}},{"L":{"f":216,"i":107821051},"flags":15,"cn0":218,"P":1025883117,"D":{"f":51,"i":-1124},"lock":15,"sid":{"sat":25,"code":0}},{"L":{"f":203,"i":114092814},"flags":15,"cn0":207,"P":1085556930,"D":{"f":158,"i":-2965},"lock":15,"sid":{"sat":12,"code":0}},{"L":{"f":15,"i":110763879},"flags":15,"cn0":214,"P":1053883197,"D":{"f":234,"i":1485},"lock":15,"sid":{"sat":29,"code":0}},{"L":{"f":133,"i":84016424},"flags":15,"cn0":205,"P":1025883189,"D":{"f":0,"i":-876},"lock":15,"sid":{"sat":25,"code":1}},{"L":{"f":173,"i":88903523},"flags":15,"cn0":188,"P":1085556864,"D":{"f":191,"i":-2310},"lock":15,"sid":{"sat":12,"code":1}},{"L":{"f":124,"i":100315008},"flags":15,"cn0":154,"P":1224897403,"D":{"f":64,"i":-305},"lock":15,"sid":{"sat":31,"code":1}},{"L":{"f":249,"i":86309517},"flags":15,"cn0":196,"P":1053883115,"D":{"f":246,"i":1158},"lock":15,"sid":{"sat":29,"code":1}},{"L":{"f":97,"i":86153678},"flags":15,"cn0":195,"P":1051979855,"D":{"f":253,"i":-141},"lock":15,"sid":{"sat":5,"code":1}},{"L":{"f":102,"i":112938773},"flags":15,"cn0":213,"P":1056747254,"D":{"f":151,"i":1169},"lock":15,"sid":{"sat":11,"code":3}},{"L":{"f":14,"i":123328711},"flags":15,"cn0":179,"P":1154775019,"D":{"f":228,"i":-4407},"lock":15,"sid":{"sat":9,"code":3}}],"payload":"qPUuEAAAAAAyCECS8LM+CRKXBrNM/+DWDw8FAFd1F0Xh9kIHTX4IlbUPDxUA+NjxRfrqWQeIVPYevg8PAgCxcwJJN2GsBx92/kenDw8fAO27JT37N20G2Jz7M9oPDxkAwki0QA7rzAbLa/Sezw8PDAA9+9A+Zx+aBg/NBerWDw8dADW8JT0o/QEFhZT8AM0PDxkBgEi0QGOPTAWt+va/vA8PDAF7cwJJgK/6BXzP/kCaDw8fAev60D6N+iQF+YYE9sQPDx0BT/CzPs6ZIgVhc//9ww8PBQH2rvw+FU+7BmaRBJfVDw8LA+t31ETH2FkHDsnu5LMPDwkD","header":{"n_obs":64,"t":{"ns_residual":0,"wn":2098,"tow":271513000}},"crc":42801} +{"length":249,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":183,"i":109769104},"flags":15,"cn0":174,"P":1026368504,"D":{"f":186,"i":-1208},"lock":15,"sid":{"sat":20,"code":3}},{"L":{"f":212,"i":114862988},"flags":15,"cn0":208,"P":1074374526,"D":{"f":96,"i":2201},"lock":15,"sid":{"sat":5,"code":3}},{"L":{"f":95,"i":111599843},"flags":15,"cn0":207,"P":1046791979,"D":{"f":48,"i":-3041},"lock":15,"sid":{"sat":10,"code":3}},{"L":{"f":224,"i":120436911},"flags":15,"cn0":181,"P":1124536890,"D":{"f":138,"i":-1314},"lock":15,"sid":{"sat":4,"code":3}},{"L":{"f":9,"i":113421869},"flags":15,"cn0":202,"P":1059778922,"D":{"f":15,"i":1625},"lock":15,"sid":{"sat":21,"code":3}},{"L":{"f":120,"i":95922340},"flags":15,"cn0":171,"P":1154775128,"D":{"f":38,"i":-3427},"lock":15,"sid":{"sat":9,"code":4}},{"L":{"f":15,"i":85376006},"flags":15,"cn0":205,"P":1026368847,"D":{"f":14,"i":-939},"lock":15,"sid":{"sat":20,"code":4}},{"L":{"f":137,"i":87841278},"flags":15,"cn0":199,"P":1056747546,"D":{"f":255,"i":910},"lock":15,"sid":{"sat":11,"code":4}},{"L":{"f":252,"i":89337883},"flags":15,"cn0":196,"P":1074374844,"D":{"f":20,"i":1712},"lock":15,"sid":{"sat":5,"code":4}},{"L":{"f":231,"i":93673143},"flags":15,"cn0":176,"P":1124537137,"D":{"f":140,"i":-1021},"lock":15,"sid":{"sat":4,"code":4}},{"L":{"f":82,"i":121578045},"flags":15,"cn0":200,"P":1167388983,"D":{"f":242,"i":-1499},"lock":15,"sid":{"sat":35,"code":12}},{"L":{"f":229,"i":129208109},"flags":15,"cn0":169,"P":1240652993,"D":{"f":134,"i":-3006},"lock":15,"sid":{"sat":26,"code":12}},{"L":{"f":222,"i":132948853},"flags":15,"cn0":158,"P":1276571229,"D":{"f":70,"i":2249},"lock":15,"sid":{"sat":34,"code":12}},{"L":{"f":248,"i":125149673},"flags":15,"cn0":189,"P":1201683962,"D":{"f":10,"i":-1301},"lock":15,"sid":{"sat":24,"code":12}}],"payload":"qPUuEAAAAAAyCEH4Iy09kPGKBrdI+7quDw8UA36nCUCMq9gG1JkIYNAPDwUDK8dkPuPgpgZfH/Qwzw8PCgM6EgdDr7gtB+De+oq1Dw8EA2rxKj8trsIGCVkGD8oPDxUDWHjURKSotwV4nfImqw8PCQRPJS09BrwWBQ9V/A7NDw8UBBqw/D7+WTwFiY4D/8cPDwsEvKgJQBswUwX8sAYUxA8PBQQxEwdDt1aVBecD/IywDw8EBDfxlEU9Ij8HUiX68sgPDyMMwdzySS2PswflQvSGqQ8PGgxd7hZMdaPsB97JCEaeDw8iDPo9oEfpoXUH+Ov6Cr0PDxgM","header":{"n_obs":65,"t":{"ns_residual":0,"wn":2098,"tow":271513000}},"crc":14559} +{"length":249,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":150,"i":134673838},"flags":15,"cn0":157,"P":1293134702,"D":{"f":190,"i":1328},"lock":15,"sid":{"sat":25,"code":12}},{"L":{"f":74,"i":121101994},"flags":15,"cn0":185,"P":1162818220,"D":{"f":208,"i":1614},"lock":15,"sid":{"sat":12,"code":12}},{"L":{"f":135,"i":124514587},"flags":15,"cn0":184,"P":1195585828,"D":{"f":17,"i":-286},"lock":15,"sid":{"sat":19,"code":12}},{"L":{"f":138,"i":124707405},"flags":15,"cn0":190,"P":1197437261,"D":{"f":137,"i":2390},"lock":15,"sid":{"sat":22,"code":12}},{"L":{"f":97,"i":93643752},"flags":15,"cn0":208,"P":1162818149,"D":{"f":121,"i":1248},"lock":15,"sid":{"sat":12,"code":13}},{"L":{"f":170,"i":116424865},"flags":15,"cn0":196,"P":1107745736,"D":{"f":241,"i":-1026},"lock":15,"sid":{"sat":12,"code":14}},{"L":{"f":48,"i":132476117},"flags":15,"cn0":193,"P":1260468271,"D":{"f":81,"i":1091},"lock":15,"sid":{"sat":25,"code":14}},{"L":{"f":255,"i":125423786},"flags":15,"cn0":190,"P":1193367604,"D":{"f":230,"i":1049},"lock":15,"sid":{"sat":11,"code":14}},{"L":{"f":49,"i":118411926},"flags":15,"cn0":205,"P":1126651892,"D":{"f":219,"i":-1743},"lock":15,"sid":{"sat":24,"code":14}},{"L":{"f":118,"i":143317817},"flags":15,"cn0":161,"P":1363623683,"D":{"f":1,"i":-3174},"lock":15,"sid":{"sat":31,"code":14}},{"L":{"f":199,"i":144521763},"flags":15,"cn0":155,"P":1375078861,"D":{"f":150,"i":-2139},"lock":15,"sid":{"sat":33,"code":14}},{"L":{"f":157,"i":101507672},"flags":15,"cn0":200,"P":1260468240,"D":{"f":167,"i":835},"lock":15,"sid":{"sat":25,"code":20}},{"L":{"f":186,"i":90731279},"flags":15,"cn0":215,"P":1126652429,"D":{"f":193,"i":-1335},"lock":15,"sid":{"sat":24,"code":20}},{"L":{"f":130,"i":96103918},"flags":15,"cn0":194,"P":1193367407,"D":{"f":21,"i":804},"lock":15,"sid":{"sat":11,"code":20}}],"payload":"qPUuEAAAAAAyCEJuqxNNrvUGCJYwBb6dDw8ZDKwyT0Wq3jcHSk4G0LkPDwwMJDFDRxvxaweH4v4RuA8PEwxNcV9HTeJuB4pWCYm+Dw8WDGUyT0Xo45QFYeAEedAPDwwNyNsGQqGA8Aaq/vvxxA8PDA4vOCFL1WzlBzBDBFHBDw8ZDjRYIUeq0HkH/xkE5r4PDwsO9FcnQ5bSDgcxMfnbzQ8PGA4DP0dROduKCHaa8wGhDw8fDs0J9lEjOp0Ix6X3lpsPDyEOEDghS1jiDAadQwOnyA8PGRQNWidDD3NoBbrJ+sHXDw8YFG9XIUfubboFgiQDFcIPDwsU","header":{"n_obs":66,"t":{"ns_residual":0,"wn":2098,"tow":271513000}},"crc":16407} +{"length":62,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":146,"i":109814992},"flags":15,"cn0":173,"P":1363623748,"D":{"f":180,"i":-2431},"lock":15,"sid":{"sat":31,"code":20}},{"L":{"f":230,"i":89208693},"flags":15,"cn0":206,"P":1107745581,"D":{"f":145,"i":-786},"lock":15,"sid":{"sat":12,"code":20}},{"L":{"f":220,"i":110737525},"flags":15,"cn0":169,"P":1375078805,"D":{"f":48,"i":-1640},"lock":15,"sid":{"sat":33,"code":20}}],"payload":"qPUuEAAAAAAyCENEP0dR0KSLBpKB9rStDw8fFC3bBkJ1N1EF5u78kc4PDwwUlQn2UXW4mQbcmPkwqQ8PIRQ=","header":{"n_obs":67,"t":{"ns_residual":0,"wn":2098,"tow":271513000}},"crc":33942} +{"length":9,"l2ca_bias":0,"preamble":85,"l2p_bias":0,"sender":22963,"msg_type":117,"payload":"/wAAAAAAAAAA","l1ca_bias":0,"mask":255,"crc":49809,"l1p_bias":0} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"Mgio9S4QAAAAAAE=","wn":2098,"tow":271513000,"crc":1276} +{"length":16,"flags":17,"ns":999999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"Eaj1LhDkBwMZAxg2/smaOw==","day":25,"tow":271513000,"year":2020,"crc":16327,"minutes":24,"month":3,"seconds":54} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.445109226376772,"preamble":85,"sender":22963,"msg_type":522,"payload":"qPUuEN/s7uBl6kJAYQWRG1aSXsCkb6Kt8nExwAECWwQPBg==","lat":37.83123408952974,"tow":271513000,"h_accuracy":513,"crc":47314,"lon":-122.28650559580048} +{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"qPUuEPP///8FAAAAHQAAAPEAygIPAg==","n":-13,"d":29,"tow":271513000,"h_accuracy":241,"crc":33155,"e":5} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"qPUuEJsAhwBMAEgAcgAG","tow":271513000,"crc":60135,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"qPUuEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271513000,"h_accuracy":0,"crc":20032,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"qPUuEP//","tow":271513000,"crc":58648} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":4,"flags":2147616000,"preamble":85,"sender":22963,"msg_type":65535,"payload":"AAUCgA==","crc":40942} +{"length":24,"z":3890655.0240602265,"preamble":85,"sender":22963,"msg_type":72,"payload":"UO0a3iqORMHK1UJhIkRQwc9nFIPvrk1B","crc":2168,"x":-2694229.735196747,"y":-4264073.519704292} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MggM9i4QAAAAAAE=","wn":2098,"tow":271513100,"crc":18472} +{"length":16,"flags":17,"ns":99999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EQz2LhDkBwMZAxg3/uD1BQ==","day":25,"tow":271513100,"year":2020,"crc":40543,"minutes":24,"month":3,"seconds":55} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.438071923019688,"preamble":85,"sender":22963,"msg_type":522,"payload":"DPYuEOKb6+Bl6kJA1rGPG1aSXsBXqkZ7JXAxwAECWwQPBg==","lat":37.831234087985436,"tow":271513100,"h_accuracy":513,"crc":26328,"lon":-122.28650559456523} +{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"DPYuEAYAAAD8/////f////EAygIPAg==","n":6,"d":-3,"tow":271513100,"h_accuracy":241,"crc":33432,"e":-4} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"DPYuEJsAhwBMAEgAcgAG","tow":271513100,"crc":13808,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"DPYuEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271513100,"h_accuracy":0,"crc":22274,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"DPYuEP//","tow":271513100,"crc":60483} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":51,"text":"GLO L2OF ME 1 [+1346ms] low CN0 too long, dropping","preamble":85,"sender":22963,"msg_type":1025,"payload":"BkdMTyBMMk9GIE1FIDEgWysxMzQ2bXNdIGxvdyBDTjAgdG9vIGxvbmcsIGRyb3BwaW5n","crc":38922,"level":6} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"Mghw9i4QAAAAAAE=","wn":2098,"tow":271513200,"crc":22243} +{"length":16,"flags":17,"ns":199999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EXD2LhDkBwMZAxg3/sHrCw==","day":25,"tow":271513200,"year":2020,"crc":43899,"minutes":24,"month":3,"seconds":55} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.42857871769312,"preamble":85,"sender":22963,"msg_type":522,"payload":"cPYuEHgA2uBl6kJA3GOVG1aSXsDqQLhVt20xwAECWwQPBg==","lat":37.8312340797865,"tow":271513200,"h_accuracy":513,"crc":18314,"lon":-122.28650559986949} +{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"cPYuEAEAAAD3////9v////EAygIPAg==","n":1,"d":-10,"tow":271513200,"h_accuracy":241,"crc":5202,"e":-9} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"cPYuEJsAhwBMAEgAcgAG","tow":271513200,"crc":28816,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"cPYuEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271513200,"h_accuracy":0,"crc":44113,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"cPYuEP//","tow":271513200,"crc":41532} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":139,"af0":-2.3224857e-5,"w":-1.3463657413316004,"dn":4.863774024282281e-9,"c_us":7.007271e-6,"c_uc":3.5446137e-6,"ecc":2.4803906213492155e-2,"sqrta":5153.536083221436,"preamble":85,"toc":{"wn":2098,"tow":273600},"sender":22963,"msg_type":138,"omegadot":-7.992475775839984e-9,"payload":"FQDALAQAMggAAABAQDgAAAEAAAAwsgCwk0IAcGpDAOBtNgAg6zYAgAQ1AABmtKhKIq7G4zQ+zoPVH/LR/D8AAAD4MWaZPwAAwDyJIbRATXV4Dg49AcAnH2j36ClBvpWVt822ivW/nz9Vvld47j/jWw9tDf79PQDTwrcAALQsAAAAAMAsBAAyCCEhAA==","inc":0.9521902768556066,"inc_dot":4.364467511876155e-10,"tgd":-1.0244548e-8,"iode":33,"crc":59056,"common":{"health_bits":0,"fit_interval":14400,"valid":1,"sid":{"sat":21,"code":0},"toe":{"wn":2098,"tow":273600},"ura":2},"c_rs":73.84375,"m0":1.8012562984006197,"af2":0,"c_rc":234.4375,"af1":5.1159077e-12,"c_is":-2.1420419e-7,"c_ic":4.9360096e-7,"omega0":-2.154811966944783,"iodc":33} +{"length":139,"af0":-3.162166e-5,"w":0.12302202292105374,"dn":4.687338103589416e-9,"c_us":6.943941e-6,"c_uc":4.4591725e-6,"ecc":9.5325744478032e-3,"sqrta":5153.545351028442,"preamble":85,"toc":{"wn":2098,"tow":273584},"sender":22963,"msg_type":138,"omegadot":-8.187483898711045e-9,"payload":"HwCwLAQAMggAAABAQDgAAAEAAABosgBwr0IAuHZDAKCVNgAA6TYAALyzAADwMmzcL2LIITQ+jRvCTcbTA0AAAAB80IWDPwAAIJyLIbRAgzPjXdBF8T/3kXvrHZVBvmQ5Ig1ffr8/craUyTun7j8RGcu37Wv8PYChBLgAADCsAAAAALAsBAAyCCgoAA==","inc":0.9579142510535361,"inc_dot":4.135886561990661e-10,"tgd":-1.3504177e-8,"iode":40,"crc":15733,"common":{"health_bits":0,"fit_interval":14400,"valid":1,"sid":{"sat":31,"code":0},"toe":{"wn":2098,"tow":273584},"ura":2},"c_rs":87.71875,"m0":2.478405578123278,"af2":0,"c_rc":246.71875,"af1":-2.5011104e-12,"c_is":2.7939677e-8,"c_ic":-8.754432e-8,"omega0":1.0795444171410231,"iodc":40} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgjU9i4QAAAAAAE=","wn":2098,"tow":271513300,"crc":53826} +{"length":16,"flags":17,"ns":299999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EdT2LhDkBwMZAxg3/qLhEQ==","day":25,"tow":271513300,"year":2020,"crc":26436,"minutes":24,"month":3,"seconds":55} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.417209951139657,"preamble":85,"sender":22963,"msg_type":522,"payload":"1PYuEMJ10OBl6kJAONGQG1aSXsDptXdFzmoxwAECWwQPBg==","lat":37.83123407534323,"tow":271513300,"h_accuracy":513,"crc":45405,"lon":-122.28650559561072} +{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"1PYuEAUAAAAAAAAA9v////EAygIPAg==","n":5,"d":-10,"tow":271513300,"h_accuracy":241,"crc":21876,"e":0} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"1PYuEJsAhwBMAEgAcgAG","tow":271513300,"crc":8740,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"1PYuEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271513300,"h_accuracy":0,"crc":56104,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"1PYuEP//","tow":271513300,"crc":17845} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":237,"states":[{"cn0":214,"mesid":{"sat":5,"code":0}},{"cn0":180,"mesid":{"sat":21,"code":0}},{"cn0":190,"mesid":{"sat":2,"code":0}},{"cn0":166,"mesid":{"sat":31,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":218,"mesid":{"sat":25,"code":0}},{"cn0":207,"mesid":{"sat":12,"code":0}},{"cn0":213,"mesid":{"sat":29,"code":0}},{"cn0":206,"mesid":{"sat":18,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":205,"mesid":{"sat":131,"code":2}},{"cn0":205,"mesid":{"sat":25,"code":1}},{"cn0":188,"mesid":{"sat":12,"code":1}},{"cn0":153,"mesid":{"sat":31,"code":1}},{"cn0":196,"mesid":{"sat":18,"code":1}},{"cn0":196,"mesid":{"sat":29,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":195,"mesid":{"sat":5,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":213,"mesid":{"sat":100,"code":3}},{"cn0":179,"mesid":{"sat":98,"code":3}},{"cn0":173,"mesid":{"sat":102,"code":3}},{"cn0":208,"mesid":{"sat":101,"code":3}},{"cn0":208,"mesid":{"sat":93,"code":3}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":181,"mesid":{"sat":106,"code":3}},{"cn0":202,"mesid":{"sat":104,"code":3}},{"cn0":170,"mesid":{"sat":98,"code":4}},{"cn0":205,"mesid":{"sat":102,"code":4}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":199,"mesid":{"sat":100,"code":4}},{"cn0":195,"mesid":{"sat":101,"code":4}},{"cn0":188,"mesid":{"sat":104,"code":4}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":176,"mesid":{"sat":106,"code":4}},{"cn0":200,"mesid":{"sat":35,"code":12}},{"cn0":169,"mesid":{"sat":26,"code":12}},{"cn0":157,"mesid":{"sat":34,"code":12}},{"cn0":189,"mesid":{"sat":24,"code":12}},{"cn0":157,"mesid":{"sat":25,"code":12}},{"cn0":185,"mesid":{"sat":12,"code":12}},{"cn0":184,"mesid":{"sat":19,"code":12}},{"cn0":190,"mesid":{"sat":22,"code":12}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":209,"mesid":{"sat":12,"code":13}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":196,"mesid":{"sat":12,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":193,"mesid":{"sat":25,"code":14}},{"cn0":190,"mesid":{"sat":11,"code":14}},{"cn0":206,"mesid":{"sat":24,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":160,"mesid":{"sat":31,"code":14}},{"cn0":154,"mesid":{"sat":33,"code":14}},{"cn0":200,"mesid":{"sat":25,"code":20}},{"cn0":215,"mesid":{"sat":24,"code":20}},{"cn0":193,"mesid":{"sat":11,"code":20}},{"cn0":173,"mesid":{"sat":31,"code":20}},{"cn0":206,"mesid":{"sat":12,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":169,"mesid":{"sat":33,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}}],"preamble":85,"sender":22963,"msg_type":97,"payload":"BQDWFQC0AgC+HwCmAAAAAAAAGQDaDADPHQDVEgDOAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwLNGQHNDAG8HwGZEgHEHQHEAAAABQHDAAAAAAAAAAAAAAAAZAPVYgOzZgOtZQPQXQPQAAAAagO1aAPKYgSqZgTNAAAAZATHZQTDaAS8AAAAagSwIwzIGgypIgydGAy9GQydDAy5Ewy4Fgy+AAAADA3RAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADA7EAAAAGQ7BCw6+GA7OAAAAHw6gIQ6aGRTIGBTXCxTBHxStDBTOAAAAIRSpAAAA","crc":36709} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"Mgg49y4QAAAAAAE=","wn":2098,"tow":271513400,"crc":26390} +{"length":16,"flags":17,"ns":399999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"ETj3LhDkBwMZAxg3/oPXFw==","day":25,"tow":271513400,"year":2020,"crc":15838,"minutes":24,"month":3,"seconds":55} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.41370379738511,"preamble":85,"sender":22963,"msg_type":522,"payload":"OPcuECGwlOBl6kJAfUR5G1aSXsAEAPh96GkxwAECWwQPBg==","lat":37.83123404750973,"tow":271513400,"h_accuracy":513,"crc":14207,"lon":-122.28650557367833} +{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"OPcuEPH///8HAAAANgAAAPEAygIPAg==","n":-15,"d":54,"tow":271513400,"h_accuracy":241,"crc":63893,"e":7} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"OPcuEJsAhwBMAEgAcgAG","tow":271513400,"crc":1725,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"OPcuEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271513400,"h_accuracy":0,"crc":62046,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"OPcuEP//","tow":271513400,"crc":28479} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":9,"l2ca_bias":0,"preamble":85,"l2p_bias":0,"sender":22963,"msg_type":117,"payload":"/wAAAAAAAAAA","l1ca_bias":0,"mask":255,"crc":49809,"l1p_bias":0} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"Mgic9y4QAAAAAAE=","wn":2098,"tow":271513500,"crc":58295} +{"length":16,"flags":17,"ns":499999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EZz3LhDkBwMZAxg3/mTNHQ==","day":25,"tow":271513500,"year":2020,"crc":1849,"minutes":24,"month":3,"seconds":55} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.400200993148857,"preamble":85,"sender":22963,"msg_type":522,"payload":"nPcuEIaHlOBl6kJAo0F7G1aSXsCsZoGSc2YxwAECWwQPBg==","lat":37.83123404743587,"tow":271513500,"h_accuracy":513,"crc":51417,"lon":-122.2865055755306} +{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"nPcuEAcAAADz////xf////EAygIPAg==","n":7,"d":-59,"tow":271513500,"h_accuracy":241,"crc":56369,"e":-13} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"nPcuEJsAhwBMAEgAcgAG","tow":271513500,"crc":21513,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"nPcuEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271513500,"h_accuracy":0,"crc":34087,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"nPcuEP//","tow":271513500,"crc":34998} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MggA+C4QAAAAAAE=","wn":2098,"tow":271513600,"crc":25385} +{"length":16,"flags":17,"ns":599999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EQD4LhDkBwMZAxg3/kXDIw==","day":25,"tow":271513600,"year":2020,"crc":32607,"minutes":24,"month":3,"seconds":55} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.391772387916696,"preamble":85,"sender":22963,"msg_type":522,"payload":"APguEGK7neBl6kJAqNNjG1aSXsD6k/kxS2QxwAECWwQPBg==","lat":37.831234051721154,"tow":271513600,"h_accuracy":513,"crc":32756,"lon":-122.28650555371007} +{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"APguEAoAAAACAAAAAwAAAPEAygIPAg==","n":10,"d":3,"tow":271513600,"h_accuracy":241,"crc":32770,"e":2} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"APguEJsAhwBMAEgAcgAG","tow":271513600,"crc":26891,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"APguEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271513600,"h_accuracy":0,"crc":48608,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"APguEP//","tow":271513600,"crc":10248} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"message_type":63,"length":34,"data":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"preamble":85,"sender":22963,"msg_type":30583,"payload":"gwKF9y4QPwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA==","tow":271513477,"crc":9713,"sid":{"sat":131,"code":2}} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"Mghk+C4QAAAAAAE=","wn":2098,"tow":271513700,"crc":2019} +{"length":16,"flags":17,"ns":699999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EWT4LhDkBwMZAxg3/ia5KQ==","day":25,"tow":271513700,"year":2020,"crc":55059,"minutes":24,"month":3,"seconds":55} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.385166366408715,"preamble":85,"sender":22963,"msg_type":522,"payload":"ZPguEDTqaeBl6kJAxV5CG1aSXsCdPlNDmmIxwAECWwQPBg==","lat":37.83123402759193,"tow":271513700,"h_accuracy":513,"crc":21293,"lon":-122.2865055225512} +{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"ZPguEO////8HAAAAAAAAAPEAygIPAg==","n":-17,"d":0,"tow":271513700,"h_accuracy":241,"crc":29645,"e":7} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"ZPguEJsAhwBMAEgAcgAG","tow":271513700,"crc":17828,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"ZPguEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271513700,"h_accuracy":0,"crc":42326,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"ZPguEP//","tow":271513700,"crc":29105} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgjI+C4QAAAAAAE=","wn":2098,"tow":271513800,"crc":43709} +{"length":16,"flags":17,"ns":799999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"Ecj4LhDkBwMZAxg3/gevLw==","day":25,"tow":271513800,"year":2020,"crc":55815,"minutes":24,"month":3,"seconds":55} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.38358143427939,"preamble":85,"sender":22963,"msg_type":522,"payload":"yPguEPnLaOBl6kJA+hAjG1aSXsAvlZNkMmIxwAECWwQPBg==","lat":37.83123402707128,"tow":271513800,"h_accuracy":513,"crc":17143,"lon":-122.28650549339719} +{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"yPguEAAAAAAGAAAAHAAAAPEAygIPAg==","n":0,"d":28,"tow":271513800,"h_accuracy":241,"crc":36800,"e":6} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"yPguEJsAhwBMAEgAcgAG","tow":271513800,"crc":12373,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"yPguEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271513800,"h_accuracy":0,"crc":35980,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"yPguEP//","tow":271513800,"crc":39802} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":237,"states":[{"cn0":214,"mesid":{"sat":5,"code":0}},{"cn0":181,"mesid":{"sat":21,"code":0}},{"cn0":189,"mesid":{"sat":2,"code":0}},{"cn0":167,"mesid":{"sat":31,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":218,"mesid":{"sat":25,"code":0}},{"cn0":207,"mesid":{"sat":12,"code":0}},{"cn0":213,"mesid":{"sat":29,"code":0}},{"cn0":206,"mesid":{"sat":18,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":206,"mesid":{"sat":131,"code":2}},{"cn0":205,"mesid":{"sat":25,"code":1}},{"cn0":188,"mesid":{"sat":12,"code":1}},{"cn0":153,"mesid":{"sat":31,"code":1}},{"cn0":197,"mesid":{"sat":18,"code":1}},{"cn0":196,"mesid":{"sat":29,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":195,"mesid":{"sat":5,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":213,"mesid":{"sat":11,"code":3}},{"cn0":179,"mesid":{"sat":9,"code":3}},{"cn0":173,"mesid":{"sat":20,"code":3}},{"cn0":208,"mesid":{"sat":5,"code":3}},{"cn0":208,"mesid":{"sat":10,"code":3}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":181,"mesid":{"sat":4,"code":3}},{"cn0":202,"mesid":{"sat":21,"code":3}},{"cn0":171,"mesid":{"sat":9,"code":4}},{"cn0":205,"mesid":{"sat":20,"code":4}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":199,"mesid":{"sat":11,"code":4}},{"cn0":195,"mesid":{"sat":5,"code":4}},{"cn0":188,"mesid":{"sat":0,"code":4}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":176,"mesid":{"sat":4,"code":4}},{"cn0":200,"mesid":{"sat":35,"code":12}},{"cn0":169,"mesid":{"sat":26,"code":12}},{"cn0":157,"mesid":{"sat":34,"code":12}},{"cn0":189,"mesid":{"sat":24,"code":12}},{"cn0":157,"mesid":{"sat":25,"code":12}},{"cn0":184,"mesid":{"sat":12,"code":12}},{"cn0":184,"mesid":{"sat":19,"code":12}},{"cn0":191,"mesid":{"sat":22,"code":12}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":210,"mesid":{"sat":12,"code":13}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":196,"mesid":{"sat":12,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":193,"mesid":{"sat":25,"code":14}},{"cn0":191,"mesid":{"sat":11,"code":14}},{"cn0":206,"mesid":{"sat":24,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":161,"mesid":{"sat":31,"code":14}},{"cn0":154,"mesid":{"sat":33,"code":14}},{"cn0":201,"mesid":{"sat":25,"code":20}},{"cn0":215,"mesid":{"sat":24,"code":20}},{"cn0":194,"mesid":{"sat":11,"code":20}},{"cn0":173,"mesid":{"sat":31,"code":20}},{"cn0":206,"mesid":{"sat":12,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":169,"mesid":{"sat":33,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}}],"preamble":85,"sender":22963,"msg_type":97,"payload":"BQDWFQC1AgC9HwCnAAAAAAAAGQDaDADPHQDVEgDOAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwLOGQHNDAG8HwGZEgHFHQHEAAAABQHDAAAAAAAAAAAAAAAACwPVCQOzFAOtBQPQCgPQAAAABAO1FQPKCQSrFATNAAAACwTHBQTDAAS8AAAABASwIwzIGgypIgydGAy9GQydDAy4Ewy4Fgy/AAAADA3SAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADA7EAAAAGQ7BCw6/GA7OAAAAHw6hIQ6aGRTJGBTXCxTCHxStDBTOAAAAIRSpAAAA","crc":59629} +{"length":136,"preamble":85,"sender":22963,"msg_type":151,"payload":"AgAaHgUALDUMAFEtFQB9GRkAbUYaAKEBHQChNx8AlQ4EAxYWBQMyIQYDTggJA18OCgNxKQsDmCUMA6oDEwMiBxQDCzEVA5UlDAyUKRMMIyAUDA8CFgxDIxgMgiMZDJ0OGgxnFR0MLAAiDI4RIwwiLQsOizIMDg88GA5sNhkOlykfDlURIQ4fDw==","crc":41336,"azel":[{"el":30,"az":26,"sid":{"sat":2,"code":0}},{"el":53,"az":44,"sid":{"sat":5,"code":0}},{"el":45,"az":81,"sid":{"sat":12,"code":0}},{"el":25,"az":125,"sid":{"sat":21,"code":0}},{"el":70,"az":109,"sid":{"sat":25,"code":0}},{"el":1,"az":161,"sid":{"sat":26,"code":0}},{"el":55,"az":161,"sid":{"sat":29,"code":0}},{"el":14,"az":149,"sid":{"sat":31,"code":0}},{"el":22,"az":22,"sid":{"sat":4,"code":3}},{"el":33,"az":50,"sid":{"sat":5,"code":3}},{"el":8,"az":78,"sid":{"sat":6,"code":3}},{"el":14,"az":95,"sid":{"sat":9,"code":3}},{"el":41,"az":113,"sid":{"sat":10,"code":3}},{"el":37,"az":152,"sid":{"sat":11,"code":3}},{"el":3,"az":170,"sid":{"sat":12,"code":3}},{"el":7,"az":34,"sid":{"sat":19,"code":3}},{"el":49,"az":11,"sid":{"sat":20,"code":3}},{"el":37,"az":149,"sid":{"sat":21,"code":3}},{"el":41,"az":148,"sid":{"sat":12,"code":12}},{"el":32,"az":35,"sid":{"sat":19,"code":12}},{"el":2,"az":15,"sid":{"sat":20,"code":12}},{"el":35,"az":67,"sid":{"sat":22,"code":12}},{"el":35,"az":130,"sid":{"sat":24,"code":12}},{"el":14,"az":157,"sid":{"sat":25,"code":12}},{"el":21,"az":103,"sid":{"sat":26,"code":12}},{"el":0,"az":44,"sid":{"sat":29,"code":12}},{"el":17,"az":142,"sid":{"sat":34,"code":12}},{"el":45,"az":34,"sid":{"sat":35,"code":12}},{"el":50,"az":139,"sid":{"sat":11,"code":14}},{"el":60,"az":15,"sid":{"sat":12,"code":14}},{"el":54,"az":108,"sid":{"sat":24,"code":14}},{"el":41,"az":151,"sid":{"sat":25,"code":14}},{"el":17,"az":85,"sid":{"sat":31,"code":14}},{"el":15,"az":31,"sid":{"sat":33,"code":14}}]} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"Mggs+S4QAAAAAAE=","wn":2098,"tow":271513900,"crc":13846} +{"length":16,"flags":17,"ns":899999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"ESz5LhDkBwMZAxg3/uikNQ==","day":25,"tow":271513900,"year":2020,"crc":14938,"minutes":24,"month":3,"seconds":55} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.37803749253321,"preamble":85,"sender":22963,"msg_type":522,"payload":"LPkuEKtwcOBl6kJANIsLG1aSXsCMF6sQx2AxwAECWwQPBg==","lat":37.83123403063049,"tow":271513900,"h_accuracy":513,"crc":56521,"lon":-122.2865054714901} +{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"LPkuEAgAAAAAAAAA7P////EAygIPAg==","n":8,"d":-20,"tow":271513900,"h_accuracy":241,"crc":33963,"e":0} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"LPkuEJsAhwBMAEgAcgAG","tow":271513900,"crc":13193,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"LPkuEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271513900,"h_accuracy":0,"crc":64345,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"LPkuEP//","tow":271513900,"crc":48306} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":249,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":40,"i":110564030},"flags":15,"cn0":213,"P":1051981639,"D":{"f":106,"i":-183},"lock":15,"sid":{"sat":5,"code":0}},{"L":{"f":208,"i":121826913},"flags":15,"cn0":181,"P":1159144569,"D":{"f":240,"i":2173},"lock":15,"sid":{"sat":21,"code":0}},{"L":{"f":59,"i":123335848},"flags":15,"cn0":189,"P":1173501199,"D":{"f":164,"i":-2481},"lock":15,"sid":{"sat":2,"code":0}},{"L":{"f":41,"i":128737984},"flags":15,"cn0":167,"P":1224901214,"D":{"f":168,"i":-395},"lock":15,"sid":{"sat":31,"code":0}},{"L":{"f":21,"i":107822176},"flags":15,"cn0":218,"P":1025893814,"D":{"f":112,"i":-1126},"lock":15,"sid":{"sat":25,"code":0}},{"L":{"f":245,"i":114095779},"flags":15,"cn0":207,"P":1085585144,"D":{"f":41,"i":-2968},"lock":15,"sid":{"sat":12,"code":0}},{"L":{"f":11,"i":110762393},"flags":15,"cn0":213,"P":1053869056,"D":{"f":206,"i":1483},"lock":15,"sid":{"sat":29,"code":0}},{"L":{"f":142,"i":84017300},"flags":15,"cn0":205,"P":1025893878,"D":{"f":153,"i":-878},"lock":15,"sid":{"sat":25,"code":1}},{"L":{"f":47,"i":88905834},"flags":15,"cn0":188,"P":1085585071,"D":{"f":179,"i":-2314},"lock":15,"sid":{"sat":12,"code":1}},{"L":{"f":193,"i":100315314},"flags":15,"cn0":154,"P":1224901127,"D":{"f":253,"i":-309},"lock":15,"sid":{"sat":31,"code":1}},{"L":{"f":10,"i":86308360},"flags":15,"cn0":195,"P":1053868974,"D":{"f":90,"i":1156},"lock":15,"sid":{"sat":29,"code":1}},{"L":{"f":253,"i":86153818},"flags":15,"cn0":195,"P":1051981570,"D":{"f":245,"i":-143},"lock":15,"sid":{"sat":5,"code":1}},{"L":{"f":50,"i":112937604},"flags":15,"cn0":213,"P":1056736315,"D":{"f":213,"i":1166},"lock":15,"sid":{"sat":11,"code":3}},{"L":{"f":22,"i":123333117},"flags":15,"cn0":179,"P":1154816289,"D":{"f":231,"i":-4409},"lock":15,"sid":{"sat":9,"code":3}}],"payload":"kPkuEAAAAAAyCEBH97M+vhKXBihJ/2rVDw8FAHkkF0Vh7kIH0H0I8LUPDxUADzXyRaj0WQc7T/akvQ8PAgBeggJJwGKsByl1/qinDw8fALblJT1gPG0GFZr7cNoPDxkA+La0QKP2zAb1aPQpzw8PDAAAxNA+mRmaBgvLBc7VDw8dAPblJT2UAAIFjpL8mc0PDxkBr7a0QGqYTAUv9vazvA8PDAEHggJJsrD6BcHL/v2aDw8fAa7D0D4I9iQFCoQEWsMPDx0BAvezPlqaIgX9cf/1ww8PBQE7hPw+hEq7BjKOBNXVDw8LAyEZ1UT96VkHFsfu57MPDwkD","header":{"n_obs":64,"t":{"ns_residual":0,"wn":2098,"tow":271514000}},"crc":8480} +{"length":249,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":20,"i":109770313},"flags":15,"cn0":173,"P":1026379757,"D":{"f":14,"i":-1210},"lock":15,"sid":{"sat":20,"code":3}},{"L":{"f":234,"i":114860787},"flags":15,"cn0":208,"P":1074353946,"D":{"f":86,"i":2199},"lock":15,"sid":{"sat":5,"code":3}},{"L":{"f":203,"i":111602884},"flags":15,"cn0":208,"P":1046820510,"D":{"f":171,"i":-3044},"lock":15,"sid":{"sat":10,"code":3}},{"L":{"f":209,"i":120438224},"flags":15,"cn0":181,"P":1124549120,"D":{"f":209,"i":-1316},"lock":15,"sid":{"sat":4,"code":3}},{"L":{"f":133,"i":113420244},"flags":15,"cn0":202,"P":1059763753,"D":{"f":159,"i":1622},"lock":15,"sid":{"sat":21,"code":3}},{"L":{"f":100,"i":95925767},"flags":15,"cn0":171,"P":1154816374,"D":{"f":126,"i":-3428},"lock":15,"sid":{"sat":9,"code":4}},{"L":{"f":230,"i":85376945},"flags":15,"cn0":205,"P":1026380122,"D":{"f":73,"i":-941},"lock":15,"sid":{"sat":20,"code":4}},{"L":{"f":40,"i":87840369},"flags":15,"cn0":199,"P":1056736599,"D":{"f":109,"i":908},"lock":15,"sid":{"sat":11,"code":4}},{"L":{"f":42,"i":89336172},"flags":15,"cn0":195,"P":1074354258,"D":{"f":183,"i":1709},"lock":15,"sid":{"sat":5,"code":4}},{"L":{"f":18,"i":93674165},"flags":15,"cn0":176,"P":1124549375,"D":{"f":86,"i":-1023},"lock":15,"sid":{"sat":4,"code":4}},{"L":{"f":248,"i":121579542},"flags":15,"cn0":200,"P":1167403371,"D":{"f":105,"i":-1500},"lock":15,"sid":{"sat":35,"code":12}},{"L":{"f":106,"i":129211116},"flags":15,"cn0":170,"P":1240681861,"D":{"f":3,"i":-3008},"lock":15,"sid":{"sat":26,"code":12}},{"L":{"f":246,"i":132946603},"flags":15,"cn0":158,"P":1276549633,"D":{"f":210,"i":2247},"lock":15,"sid":{"sat":34,"code":12}},{"L":{"f":46,"i":125150974},"flags":15,"cn0":189,"P":1201696452,"D":{"f":121,"i":-1303},"lock":15,"sid":{"sat":24,"code":12}}],"payload":"kPkuEAAAAAAyCEHtTy09SfaKBhRG+w6tDw8UAxpXCUDzotgG6pcIVtAPDwUDnjZlPsTspgbLHPSr0A8PCgMAQgdD0L0tB9Hc+tG1Dw8EAym2Kj/Up8IGhVYGn8oPDxUDdhnVRAe2twVknPJ+qw8PCQRaUS09sb8WBeZT/EnNDw8UBFeF/D5xVjwFKIwDbccPDwsEUlgJQGwpUwUqrQa3ww8PBQT/QgdDtVqVBRIB/FawDw8EBGsplUUWKD8H+CT6acgPDyMMhU3zSeyaswdqQPQDqg8PGgwBmhZMq5rsB/bHCNKeDw8iDMRuoEf+pnUHLun6eb0PDxgM","header":{"n_obs":65,"t":{"ns_residual":0,"wn":2098,"tow":271514000}},"crc":49216} +{"length":249,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":106,"i":134672511},"flags":15,"cn0":157,"P":1293121963,"D":{"f":30,"i":1326},"lock":15,"sid":{"sat":25,"code":12}},{"L":{"f":247,"i":121100380},"flags":15,"cn0":184,"P":1162802719,"D":{"f":41,"i":1612},"lock":15,"sid":{"sat":12,"code":12}},{"L":{"f":145,"i":124514874},"flags":15,"cn0":184,"P":1195588588,"D":{"f":38,"i":-289},"lock":15,"sid":{"sat":19,"code":12}},{"L":{"f":14,"i":124705016},"flags":15,"cn0":191,"P":1197414317,"D":{"f":29,"i":2387},"lock":15,"sid":{"sat":22,"code":12}},{"L":{"f":220,"i":93642504},"flags":15,"cn0":210,"P":1162802656,"D":{"f":8,"i":1246},"lock":15,"sid":{"sat":12,"code":13}},{"L":{"f":253,"i":116425890},"flags":15,"cn0":196,"P":1107755483,"D":{"f":158,"i":-1028},"lock":15,"sid":{"sat":12,"code":14}},{"L":{"f":219,"i":132475026},"flags":15,"cn0":193,"P":1260457896,"D":{"f":185,"i":1089},"lock":15,"sid":{"sat":25,"code":14}},{"L":{"f":7,"i":125422738},"flags":15,"cn0":190,"P":1193357622,"D":{"f":243,"i":1047},"lock":15,"sid":{"sat":11,"code":14}},{"L":{"f":96,"i":118413668},"flags":15,"cn0":206,"P":1126668469,"D":{"f":207,"i":-1745},"lock":15,"sid":{"sat":24,"code":14}},{"L":{"f":123,"i":143320988},"flags":15,"cn0":161,"P":1363653860,"D":{"f":139,"i":-3175},"lock":15,"sid":{"sat":31,"code":14}},{"L":{"f":119,"i":144523903},"flags":15,"cn0":153,"P":1375099205,"D":{"f":176,"i":-2145},"lock":15,"sid":{"sat":33,"code":14}},{"L":{"f":42,"i":101506837},"flags":15,"cn0":200,"P":1260457865,"D":{"f":174,"i":833},"lock":15,"sid":{"sat":25,"code":20}},{"L":{"f":167,"i":90732614},"flags":15,"cn0":215,"P":1126669005,"D":{"f":133,"i":-1337},"lock":15,"sid":{"sat":24,"code":20}},{"L":{"f":194,"i":96103114},"flags":15,"cn0":194,"P":1193357425,"D":{"f":42,"i":801},"lock":15,"sid":{"sat":11,"code":20}}],"payload":"kPkuEAAAAAAyCEKreRNNf/AGCGouBR6dDw8ZDB/2TkVc2DcH90wGKbgPDwwM7DtDRzryaweR3/4muA8PEwytF19H+NhuBw5TCR2/Dw8WDOD1TkUI35QF3N4ECNIPDwwN2wEHQqKE8Ab9/PuexA8PDA6oDyFLkmjlB9tBBLnBDw8ZDjYxIUeSzHkHBxcE874PDwsOtZgnQ2TZDgdgL/nPzg8PGA7ktEdRnOeKCHuZ84uhDw8fDkVZ9lF/Qp0Id5/3sJkPDyEOiQ8hSxXfDAYqQQOuyA8PGRTNmidDRnhoBafH+oXXDw8YFHEwIUfKaroFwiEDKsIPDwsU","header":{"n_obs":66,"t":{"ns_residual":0,"wn":2098,"tow":271514000}},"crc":36103} +{"length":62,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":72,"i":109817422},"flags":15,"cn0":173,"P":1363653916,"D":{"f":26,"i":-2432},"lock":15,"sid":{"sat":31,"code":20}},{"L":{"f":141,"i":89209479},"flags":15,"cn0":206,"P":1107755338,"D":{"f":102,"i":-788},"lock":15,"sid":{"sat":12,"code":20}},{"L":{"f":94,"i":110739165},"flags":15,"cn0":169,"P":1375099165,"D":{"f":77,"i":-1641},"lock":15,"sid":{"sat":33,"code":20}}],"payload":"kPkuEAAAAAAyCEMctUdRTq6LBkiA9hqtDw8fFEoBB0KHOlEFjez8Zs4PDwwUHVn2Ud2+mQZel/lNqQ8PIRQ=","header":{"n_obs":67,"t":{"ns_residual":0,"wn":2098,"tow":271514000}},"crc":43274} +{"length":9,"l2ca_bias":0,"preamble":85,"l2p_bias":0,"sender":22963,"msg_type":117,"payload":"/wAAAAAAAAAA","l1ca_bias":0,"mask":255,"crc":49809,"l1p_bias":0} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgiQ+S4QAAAAAAE=","wn":2098,"tow":271514000,"crc":51382} +{"length":16,"flags":17,"ns":999999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EZD5LhDkBwMZAxg3/smaOw==","day":25,"tow":271514000,"year":2020,"crc":30595,"minutes":24,"month":3,"seconds":55} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.371896662934383,"preamble":85,"sender":22963,"msg_type":522,"payload":"kPkuEPYhaOBl6kJAug8JG1aSXsByy6SeNF8xwAECWwQPBg==","lat":37.83123402676203,"tow":271514000,"h_accuracy":513,"crc":53697,"lon":-122.28650546917825} +{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"kPkuEP/////5////+f////EAygIPAg==","n":-1,"d":-7,"tow":271514000,"h_accuracy":241,"crc":48875,"e":-7} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"kPkuEJsAhwBMAEgAcgAG","tow":271514000,"crc":2290,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"kPkuEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271514000,"h_accuracy":0,"crc":28613,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"kPkuEP//","tow":271514000,"crc":19709} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":4,"flags":2147616000,"preamble":85,"sender":22963,"msg_type":65535,"payload":"AAUCgA==","crc":40942} +{"length":24,"z":3890655.0240602265,"preamble":85,"sender":22963,"msg_type":72,"payload":"UO0a3iqORMHK1UJhIkRQwc9nFIPvrk1B","crc":2168,"x":-2694229.735196747,"y":-4264073.519704292} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"bWFpbgAAAAAAAAAAAAAAAAAAAAAAAAx1AAA=","name":"main\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":47991,"stack_free":29964,"cpu":0} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"aWRsZQAAAAAAAAAAAAAAAAAAAABIAXwAAAA=","name":"idle\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":35155,"stack_free":124,"cpu":328} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"cnBtc2cAAAAAAAAAAAAAAAAAAAABAAQOAAA=","name":"rpmsg\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":38839,"stack_free":3588,"cpu":1} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"U0JQAAAAAAAAAAAAAAAAAAAAAAAAAPz/AAA=","name":"SBP\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":51784,"stack_free":65532,"cpu":0} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"TkFQAAAAAAAAAAAAAAAAAAAAAAAAAASAAAA=","name":"NAP\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":33651,"stack_free":32772,"cpu":0} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"bWFuYWdlIFBWAAAAAAAAAAAAAAAAACwEAAA=","name":"manage PV\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":61814,"stack_free":1068,"cpu":0} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"SU1VAAAAAAAAAAAAAAAAAAAAAAAAAPQHAAA=","name":"IMU\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":14252,"stack_free":2036,"cpu":0} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"SU1VIGF1eAAAAAAAAAAAAAAAAAAAAEwIAAA=","name":"IMU aux\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":18976,"stack_free":2124,"cpu":0} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"bmRiAAAAAAAAAAAAAAAAAAAAAAAAAFAMAAA=","name":"ndb\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":26120,"stack_free":3152,"cpu":0} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"TkFQIFRyYWNraW5nAAAAAAAAAAAlAdR3AAA=","name":"NAP Tracking\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":26625,"stack_free":30676,"cpu":293} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"ZGVjb2RlAAAAAAAAAAAAAAAAAAAJANQGAAA=","name":"decode\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":55602,"stack_free":1748,"cpu":9} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"bWFuYWdlIGFjcQAAAAAAAAAAAADLAKR3AAA=","name":"manage acq\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":38636,"stack_free":30628,"cpu":203} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"c3lzdGVtIG1vbml0b3IAAAAAAAAAACwGAAA=","name":"system monitor\u0000\u0000\u0000\u0000\u0000\u0000","crc":58531,"stack_free":1580,"cpu":0} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"V2F0Y2hkb2cAAAAAAAAAAAAAAAAAAOQDAAA=","name":"Watchdog\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":44438,"stack_free":996,"cpu":0} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"c3RhcmxpbmcAAAAAAAAAAAAAAACYAPz/AAA=","name":"starling\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":28732,"stack_free":65532,"cpu":152} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"bWVfY2FsY19wdnQAAAAAAAAAAAAJAIwjAAA=","name":"me_calc_pvt\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":57561,"stack_free":9100,"cpu":9} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"UFBTAAAAAAAAAAAAAAAAAAAAAAAAAEgHAAA=","name":"PPS\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":38576,"stack_free":1864,"cpu":0} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"c3BlY3RydW0gYW5hbHl6ZXIAAAAAANQPAAA=","name":"spectrum analyzer\u0000\u0000\u0000","crc":50933,"stack_free":4052,"cpu":0} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"Mgj0+S4QAAAAAAE=","wn":2098,"tow":271514100,"crc":44156} +{"length":16,"flags":17,"ns":99999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EfT5LhDkBwMZAxg4/uD1BQ==","day":25,"tow":271514100,"year":2020,"crc":59915,"minutes":24,"month":3,"seconds":56} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.37164272117505,"preamble":85,"sender":22963,"msg_type":522,"payload":"9PkuEPcWW+Bl6kJA1DMBG1aSXsBIPjX6I18xwAECWwQPBg==","lat":37.831234020688434,"tow":271514100,"h_accuracy":513,"crc":14225,"lon":-122.28650546185901} +{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"9PkuEAIAAAD8////EwAAAPEAygIPAg==","n":2,"d":19,"tow":271514100,"h_accuracy":241,"crc":31130,"e":-4} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"9PkuEJsAhwBMAEgAcgAG","tow":271514100,"crc":9309,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"9PkuEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271514100,"h_accuracy":0,"crc":30579,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"9PkuEP//","tow":271514100,"crc":5444} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MghY+i4QAAAAAAE=","wn":2098,"tow":271514200,"crc":51543} +{"length":16,"flags":17,"ns":199999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EVj6LhDkBwMZAxg4/sHrCw==","day":25,"tow":271514200,"year":2020,"crc":25117,"minutes":24,"month":3,"seconds":56} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.37034784410003,"preamble":85,"sender":22963,"msg_type":522,"payload":"WPouEHSMSOBl6kJA4x7kGlaSXsDCjcYdz14xwAECWwQPBg==","lat":37.83123401205458,"tow":271514200,"h_accuracy":513,"crc":48947,"lon":-122.28650543477447} +{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"WPouEAAAAAAKAAAAAQAAAPEAygIPAg==","n":0,"d":1,"tow":271514200,"h_accuracy":241,"crc":14781,"e":10} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"WPouEJsAhwBMAEgAcgAG","tow":271514200,"crc":56335,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"WPouEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271514200,"h_accuracy":0,"crc":12434,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"WPouEP//","tow":271514200,"crc":4445} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"Mgi8+i4QAAAAAAE=","wn":2098,"tow":271514300,"crc":4655} +{"length":16,"flags":17,"ns":299999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"Ebz6LhDkBwMZAxg4/qLhEQ==","day":25,"tow":271514300,"year":2020,"crc":33835,"minutes":24,"month":3,"seconds":56} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.368136465362124,"preamble":85,"sender":22963,"msg_type":522,"payload":"vPouEEKxQuBl6kJAkBrmGlaSXsADMv8wPl4xwAECWwQPBg==","lat":37.83123400932756,"tow":271514300,"h_accuracy":513,"crc":50773,"lon":-122.28650543662138} +{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"vPouEAMAAAD5/////v////EAygIPAg==","n":3,"d":-2,"tow":271514300,"h_accuracy":241,"crc":28854,"e":-7} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"vPouEJsAhwBMAEgAcgAG","tow":271514300,"crc":42162,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"vPouEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271514300,"h_accuracy":0,"crc":37553,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"vPouEP//","tow":271514300,"crc":40132} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":237,"states":[{"cn0":214,"mesid":{"sat":5,"code":0}},{"cn0":181,"mesid":{"sat":21,"code":0}},{"cn0":189,"mesid":{"sat":2,"code":0}},{"cn0":167,"mesid":{"sat":31,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":218,"mesid":{"sat":25,"code":0}},{"cn0":207,"mesid":{"sat":12,"code":0}},{"cn0":213,"mesid":{"sat":29,"code":0}},{"cn0":206,"mesid":{"sat":18,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":206,"mesid":{"sat":131,"code":2}},{"cn0":205,"mesid":{"sat":25,"code":1}},{"cn0":188,"mesid":{"sat":12,"code":1}},{"cn0":154,"mesid":{"sat":31,"code":1}},{"cn0":197,"mesid":{"sat":18,"code":1}},{"cn0":196,"mesid":{"sat":29,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":195,"mesid":{"sat":5,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":213,"mesid":{"sat":100,"code":3}},{"cn0":179,"mesid":{"sat":98,"code":3}},{"cn0":173,"mesid":{"sat":102,"code":3}},{"cn0":208,"mesid":{"sat":101,"code":3}},{"cn0":208,"mesid":{"sat":93,"code":3}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":181,"mesid":{"sat":106,"code":3}},{"cn0":202,"mesid":{"sat":104,"code":3}},{"cn0":171,"mesid":{"sat":98,"code":4}},{"cn0":205,"mesid":{"sat":102,"code":4}},{"cn0":67,"mesid":{"sat":93,"code":4}},{"cn0":199,"mesid":{"sat":100,"code":4}},{"cn0":196,"mesid":{"sat":101,"code":4}},{"cn0":188,"mesid":{"sat":104,"code":4}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":175,"mesid":{"sat":106,"code":4}},{"cn0":200,"mesid":{"sat":35,"code":12}},{"cn0":170,"mesid":{"sat":26,"code":12}},{"cn0":157,"mesid":{"sat":34,"code":12}},{"cn0":189,"mesid":{"sat":24,"code":12}},{"cn0":158,"mesid":{"sat":25,"code":12}},{"cn0":185,"mesid":{"sat":12,"code":12}},{"cn0":184,"mesid":{"sat":19,"code":12}},{"cn0":191,"mesid":{"sat":22,"code":12}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":210,"mesid":{"sat":12,"code":13}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":196,"mesid":{"sat":12,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":193,"mesid":{"sat":25,"code":14}},{"cn0":190,"mesid":{"sat":11,"code":14}},{"cn0":206,"mesid":{"sat":24,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":160,"mesid":{"sat":31,"code":14}},{"cn0":154,"mesid":{"sat":33,"code":14}},{"cn0":201,"mesid":{"sat":25,"code":20}},{"cn0":215,"mesid":{"sat":24,"code":20}},{"cn0":194,"mesid":{"sat":11,"code":20}},{"cn0":173,"mesid":{"sat":31,"code":20}},{"cn0":206,"mesid":{"sat":12,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":169,"mesid":{"sat":33,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}}],"preamble":85,"sender":22963,"msg_type":97,"payload":"BQDWFQC1AgC9HwCnAAAAAAAAGQDaDADPHQDVEgDOAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwLOGQHNDAG8HwGaEgHFHQHEAAAABQHDAAAAAAAAAAAAAAAAZAPVYgOzZgOtZQPQXQPQAAAAagO1aAPKYgSrZgTNXQRDZATHZQTEaAS8AAAAagSvIwzIGgyqIgydGAy9GQyeDAy5Ewy4Fgy/AAAADA3SAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADA7EAAAAGQ7BCw6+GA7OAAAAHw6gIQ6aGRTJGBTXCxTCHxStDBTOAAAAIRSpAAAA","crc":51226} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"Mggg+y4QAAAAAAE=","wn":2098,"tow":271514400,"crc":3232} +{"length":16,"flags":17,"ns":399999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"ESD7LhDkBwMZAxg4/oPXFw==","day":25,"tow":271514400,"year":2020,"crc":10022,"minutes":24,"month":3,"seconds":56} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.36538563346552,"preamble":85,"sender":22963,"msg_type":522,"payload":"IPsuEABqJOBl6kJARVjhGlaSXsCkKbLpiV0xwAECWwQPBg==","lat":37.831233995228104,"tow":271514400,"h_accuracy":513,"crc":56297,"lon":-122.28650543218926} +{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"IPsuEPv///8FAAAA7P////EAygIPAg==","n":-5,"d":-20,"tow":271514400,"h_accuracy":241,"crc":28201,"e":5} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"IPsuEJsAhwBMAEgAcgAG","tow":271514400,"crc":31164,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"IPsuEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271514400,"h_accuracy":0,"crc":47478,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"IPsuEP//","tow":271514400,"crc":62418} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":51,"text":"GLO L2OF ME 1 [+1311ms] low CN0 too long, dropping","preamble":85,"sender":22963,"msg_type":1025,"payload":"BkdMTyBMMk9GIE1FIDEgWysxMzExbXNdIGxvdyBDTjAgdG9vIGxvbmcsIGRyb3BwaW5n","crc":11977,"level":6} +{"length":9,"l2ca_bias":0,"preamble":85,"l2p_bias":0,"sender":22963,"msg_type":117,"payload":"/wAAAAAAAAAA","l1ca_bias":0,"mask":255,"crc":49809,"l1p_bias":0} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgiE+y4QAAAAAAE=","wn":2098,"tow":271514500,"crc":34817} +{"length":16,"flags":17,"ns":499999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EYT7LhDkBwMZAxg4/mTNHQ==","day":25,"tow":271514500,"year":2020,"crc":7617,"minutes":24,"month":3,"seconds":56} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.366364351884705,"preamble":85,"sender":22963,"msg_type":522,"payload":"hPsuEJPtLuBl6kJAYi/qGlaSXsDaw90Nyl0xwAECWwQPBg==","lat":37.83123400012405,"tow":271514500,"h_accuracy":513,"crc":24487,"lon":-122.28650544042242} +{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"hPsuEAQAAAAGAAAAFgAAAPEAygIPAg==","n":4,"d":22,"tow":271514500,"h_accuracy":241,"crc":43301,"e":6} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"hPsuEJsAhwBMAEgAcgAG","tow":271514500,"crc":11016,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"hPsuEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271514500,"h_accuracy":0,"crc":52751,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"hPsuEP//","tow":271514500,"crc":5211} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"Mgjo+y4QAAAAAAE=","wn":2098,"tow":271514600,"crc":50484} +{"length":16,"flags":17,"ns":599999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"Eej7LhDkBwMZAxg4/kXDIw==","day":25,"tow":271514600,"year":2020,"crc":21327,"minutes":24,"month":3,"seconds":56} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.366709609626707,"preamble":85,"sender":22963,"msg_type":522,"payload":"6PsuEJYVAuBl6kJAzPvoGlaSXsDDeVSu4F0xwAECWwQPBg==","lat":37.83123397924207,"tow":271514600,"h_accuracy":513,"crc":59804,"lon":-122.28650543930343} +{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"6PsuEPT///8GAAAACgAAAPEAygIPAg==","n":-12,"d":10,"tow":271514600,"h_accuracy":241,"crc":45763,"e":6} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"6PsuEJsAhwBMAEgAcgAG","tow":271514600,"crc":8418,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"6PsuEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271514600,"h_accuracy":0,"crc":34842,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"6PsuEP//","tow":271514600,"crc":16544} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"message_type":3,"length":34,"data":[87,255,0,31,253,127,247,255,0,23,255,255,231,255,127,240,0,255,240,0,232,206,246,231,239,229,112],"preamble":85,"sender":22963,"msg_type":30583,"payload":"gwJp+y4QA1f/AB/9f/f/ABf//+f/f/AA//AA6M725+/lcA==","tow":271514473,"crc":34358,"sid":{"sat":131,"code":2}} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MghM/C4QAAAAAAE=","wn":2098,"tow":271514700,"crc":34445} +{"length":16,"flags":17,"ns":699999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EUz8LhDkBwMZAxg4/ia5KQ==","day":25,"tow":271514700,"year":2020,"crc":62750,"minutes":24,"month":3,"seconds":56} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.356952298039918,"preamble":85,"sender":22963,"msg_type":522,"payload":"TPwuECwIDOBl6kJAmPoEG1aSXsBBUM45YVsxwAECWwQPBg==","lat":37.831233983874284,"tow":271514700,"h_accuracy":513,"crc":11894,"lon":-122.28650546537608} +{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"TPwuEAoAAADv////8v////EAygIPAg==","n":10,"d":-14,"tow":271514700,"h_accuracy":241,"crc":16212,"e":-17} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"TPwuEJsAhwBMAEgAcgAG","tow":271514700,"crc":592,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"TPwuEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271514700,"h_accuracy":0,"crc":63203,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"TPwuEP//","tow":271514700,"crc":49405} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"Mgiw/C4QAAAAAAE=","wn":2098,"tow":271514800,"crc":10228} +{"length":16,"flags":17,"ns":799999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EbD8LhDkBwMZAxg4/gevLw==","day":25,"tow":271514800,"year":2020,"crc":40073,"minutes":24,"month":3,"seconds":56} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.343105016888877,"preamble":85,"sender":22963,"msg_type":522,"payload":"sPwuEAXECeBl6kJAnJYJG1aSXsCaofq61VcxwAECWwQPBg==","lat":37.83123398281899,"tow":271514800,"h_accuracy":513,"crc":45198,"lon":-122.28650546966895} +{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"sPwuEAsAAAD+////4/////EAygIPAg==","n":11,"d":-29,"tow":271514800,"h_accuracy":241,"crc":51430,"e":-2} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"sPwuEJsAhwBMAEgAcgAG","tow":271514800,"crc":4898,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"sPwuEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271514800,"h_accuracy":0,"crc":46885,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"sPwuEP//","tow":271514800,"crc":23202} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":237,"states":[{"cn0":213,"mesid":{"sat":5,"code":0}},{"cn0":180,"mesid":{"sat":21,"code":0}},{"cn0":189,"mesid":{"sat":2,"code":0}},{"cn0":167,"mesid":{"sat":31,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":218,"mesid":{"sat":25,"code":0}},{"cn0":207,"mesid":{"sat":12,"code":0}},{"cn0":213,"mesid":{"sat":29,"code":0}},{"cn0":206,"mesid":{"sat":18,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":205,"mesid":{"sat":131,"code":2}},{"cn0":205,"mesid":{"sat":25,"code":1}},{"cn0":188,"mesid":{"sat":12,"code":1}},{"cn0":154,"mesid":{"sat":31,"code":1}},{"cn0":197,"mesid":{"sat":18,"code":1}},{"cn0":196,"mesid":{"sat":29,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":195,"mesid":{"sat":5,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":213,"mesid":{"sat":11,"code":3}},{"cn0":179,"mesid":{"sat":9,"code":3}},{"cn0":174,"mesid":{"sat":20,"code":3}},{"cn0":208,"mesid":{"sat":5,"code":3}},{"cn0":207,"mesid":{"sat":10,"code":3}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":181,"mesid":{"sat":4,"code":3}},{"cn0":203,"mesid":{"sat":21,"code":3}},{"cn0":171,"mesid":{"sat":9,"code":4}},{"cn0":205,"mesid":{"sat":20,"code":4}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":199,"mesid":{"sat":11,"code":4}},{"cn0":195,"mesid":{"sat":5,"code":4}},{"cn0":188,"mesid":{"sat":0,"code":4}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":175,"mesid":{"sat":4,"code":4}},{"cn0":200,"mesid":{"sat":35,"code":12}},{"cn0":170,"mesid":{"sat":26,"code":12}},{"cn0":156,"mesid":{"sat":34,"code":12}},{"cn0":189,"mesid":{"sat":24,"code":12}},{"cn0":157,"mesid":{"sat":25,"code":12}},{"cn0":184,"mesid":{"sat":12,"code":12}},{"cn0":184,"mesid":{"sat":19,"code":12}},{"cn0":191,"mesid":{"sat":22,"code":12}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":210,"mesid":{"sat":12,"code":13}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":196,"mesid":{"sat":12,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":193,"mesid":{"sat":25,"code":14}},{"cn0":190,"mesid":{"sat":11,"code":14}},{"cn0":205,"mesid":{"sat":24,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":159,"mesid":{"sat":31,"code":14}},{"cn0":153,"mesid":{"sat":33,"code":14}},{"cn0":201,"mesid":{"sat":25,"code":20}},{"cn0":215,"mesid":{"sat":24,"code":20}},{"cn0":194,"mesid":{"sat":11,"code":20}},{"cn0":173,"mesid":{"sat":31,"code":20}},{"cn0":206,"mesid":{"sat":12,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":169,"mesid":{"sat":33,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}}],"preamble":85,"sender":22963,"msg_type":97,"payload":"BQDVFQC0AgC9HwCnAAAAAAAAGQDaDADPHQDVEgDOAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwLNGQHNDAG8HwGaEgHFHQHEAAAABQHDAAAAAAAAAAAAAAAACwPVCQOzFAOuBQPQCgPPAAAABAO1FQPLCQSrFATNAAAACwTHBQTDAAS8AAAABASvIwzIGgyqIgycGAy9GQydDAy4Ewy4Fgy/AAAADA3SAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADA7EAAAAGQ7BCw6+GA7NAAAAHw6fIQ6ZGRTJGBTXCxTCHxStDBTOAAAAIRSpAAAA","crc":17210} +{"length":136,"preamble":85,"sender":22963,"msg_type":151,"payload":"AgAaHgUALDUMAFEtFQB9GRkAbUYaAKEBHQChNx8AlQ4EAxYWBQMyIQYDTggJA18OCgNxKQsDmCUMA6oDEwMiBxQDCzEVA5UlDAyUKRMMIyAUDA8CFgxDIxgMgiMZDJ0OGgxnFR0MLAAiDI4RIwwiLQsOizIMDg88GA5sNhkOlykfDlURIQ4fDw==","crc":41336,"azel":[{"el":30,"az":26,"sid":{"sat":2,"code":0}},{"el":53,"az":44,"sid":{"sat":5,"code":0}},{"el":45,"az":81,"sid":{"sat":12,"code":0}},{"el":25,"az":125,"sid":{"sat":21,"code":0}},{"el":70,"az":109,"sid":{"sat":25,"code":0}},{"el":1,"az":161,"sid":{"sat":26,"code":0}},{"el":55,"az":161,"sid":{"sat":29,"code":0}},{"el":14,"az":149,"sid":{"sat":31,"code":0}},{"el":22,"az":22,"sid":{"sat":4,"code":3}},{"el":33,"az":50,"sid":{"sat":5,"code":3}},{"el":8,"az":78,"sid":{"sat":6,"code":3}},{"el":14,"az":95,"sid":{"sat":9,"code":3}},{"el":41,"az":113,"sid":{"sat":10,"code":3}},{"el":37,"az":152,"sid":{"sat":11,"code":3}},{"el":3,"az":170,"sid":{"sat":12,"code":3}},{"el":7,"az":34,"sid":{"sat":19,"code":3}},{"el":49,"az":11,"sid":{"sat":20,"code":3}},{"el":37,"az":149,"sid":{"sat":21,"code":3}},{"el":41,"az":148,"sid":{"sat":12,"code":12}},{"el":32,"az":35,"sid":{"sat":19,"code":12}},{"el":2,"az":15,"sid":{"sat":20,"code":12}},{"el":35,"az":67,"sid":{"sat":22,"code":12}},{"el":35,"az":130,"sid":{"sat":24,"code":12}},{"el":14,"az":157,"sid":{"sat":25,"code":12}},{"el":21,"az":103,"sid":{"sat":26,"code":12}},{"el":0,"az":44,"sid":{"sat":29,"code":12}},{"el":17,"az":142,"sid":{"sat":34,"code":12}},{"el":45,"az":34,"sid":{"sat":35,"code":12}},{"el":50,"az":139,"sid":{"sat":11,"code":14}},{"el":60,"az":15,"sid":{"sat":12,"code":14}},{"el":54,"az":108,"sid":{"sat":24,"code":14}},{"el":41,"az":151,"sid":{"sat":25,"code":14}},{"el":17,"az":85,"sid":{"sat":31,"code":14}},{"el":15,"az":31,"sid":{"sat":33,"code":14}}]} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MggU/S4QAAAAAAE=","wn":2098,"tow":271514900,"crc":58502} +{"length":16,"flags":17,"ns":899999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"ERT9LhDkBwMZAxg4/uikNQ==","day":25,"tow":271514900,"year":2020,"crc":22237,"minutes":24,"month":3,"seconds":56} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.332956034087463,"preamble":85,"sender":22963,"msg_type":522,"payload":"FP0uENy9699l6kJAsMwXG1aSXsBZaU2bPFUxwAECWwQPBg==","lat":37.83123396883795,"tow":271514900,"h_accuracy":513,"crc":17440,"lon":-122.2865054829042} +{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"FP0uEPv////+////EgAAAPEAygIPAg==","n":-5,"d":18,"tow":271514900,"h_accuracy":241,"crc":44417,"e":-2} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"FP0uEJsAhwBMAEgAcgAG","tow":271514900,"crc":15095,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"FP0uEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271514900,"h_accuracy":0,"crc":5546,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"FP0uEP//","tow":271514900,"crc":6010} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":249,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":127,"i":110564212},"flags":15,"cn0":214,"P":1051983376,"D":{"f":56,"i":-183},"lock":15,"sid":{"sat":5,"code":0}},{"L":{"f":210,"i":121824739},"flags":15,"cn0":180,"P":1159123874,"D":{"f":37,"i":2173},"lock":15,"sid":{"sat":21,"code":0}},{"L":{"f":35,"i":123338327},"flags":15,"cn0":189,"P":1173524783,"D":{"f":195,"i":-2480},"lock":15,"sid":{"sat":2,"code":0}},{"L":{"f":245,"i":128738378},"flags":15,"cn0":168,"P":1224904974,"D":{"f":10,"i":-397},"lock":15,"sid":{"sat":31,"code":0}},{"L":{"f":42,"i":107823302},"flags":15,"cn0":218,"P":1025904526,"D":{"f":204,"i":-1127},"lock":15,"sid":{"sat":25,"code":0}},{"L":{"f":186,"i":114098746},"flags":15,"cn0":207,"P":1085613370,"D":{"f":24,"i":-2967},"lock":15,"sid":{"sat":12,"code":0}},{"L":{"f":113,"i":110760908},"flags":15,"cn0":213,"P":1053854932,"D":{"f":24,"i":1485},"lock":15,"sid":{"sat":29,"code":0}},{"L":{"f":6,"i":84018178},"flags":15,"cn0":205,"P":1025904589,"D":{"f":111,"i":-878},"lock":15,"sid":{"sat":25,"code":1}},{"L":{"f":247,"i":88908145},"flags":15,"cn0":188,"P":1085613304,"D":{"f":39,"i":-2313},"lock":15,"sid":{"sat":12,"code":1}},{"L":{"f":102,"i":100315622},"flags":15,"cn0":154,"P":1224904892,"D":{"f":20,"i":-309},"lock":15,"sid":{"sat":31,"code":1}},{"L":{"f":52,"i":86307203},"flags":15,"cn0":196,"P":1053854845,"D":{"f":29,"i":1156},"lock":15,"sid":{"sat":29,"code":1}},{"L":{"f":19,"i":86153961},"flags":15,"cn0":195,"P":1051983315,"D":{"f":160,"i":-143},"lock":15,"sid":{"sat":5,"code":1}},{"L":{"f":16,"i":112936437},"flags":15,"cn0":213,"P":1056725401,"D":{"f":158,"i":1166},"lock":15,"sid":{"sat":11,"code":3}},{"L":{"f":92,"i":123337524},"flags":15,"cn0":180,"P":1154857613,"D":{"f":111,"i":-4409},"lock":15,"sid":{"sat":9,"code":3}}],"payload":"eP0uEAAAAAAyCEAQ/rM+dBOXBn9J/zjWDw8FAKLTFkXj5UIH0n0IJbQPDxUAL5HyRVf+WQcjUPbDvQ8PAgAOkQJJSmSsB/Vz/gqoDw8fAI4PJj3GQG0GKpn7zNoPDxkAOiW1QDoCzQa6afQYzw8PDADUjNA+zBOaBnHNBRjVDw8dAM0PJj0CBAIFBpL8b80PDxkB+CS1QHGhTAX39/YnvA8PDAG8kAJJ5rH6BWbL/hSaDw8fAX2M0D6D8SQFNIQEHcQPDx0B0/2zPumaIgUTcf+gww8PBQGZWfw+9UW7BhCOBJ7VDw8LA4261UQ0+1kHXMfub7QPDwkD","header":{"n_obs":64,"t":{"ns_residual":0,"wn":2098,"tow":271515000}},"crc":53832} +{"length":249,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":216,"i":109771522},"flags":15,"cn0":174,"P":1026391069,"D":{"f":238,"i":-1211},"lock":15,"sid":{"sat":20,"code":3}},{"L":{"f":233,"i":114858588},"flags":15,"cn0":208,"P":1074333383,"D":{"f":74,"i":2198},"lock":15,"sid":{"sat":5,"code":3}},{"L":{"f":7,"i":111605928},"flags":15,"cn0":207,"P":1046849035,"D":{"f":235,"i":-3044},"lock":15,"sid":{"sat":10,"code":3}},{"L":{"f":201,"i":120439539},"flags":15,"cn0":181,"P":1124561414,"D":{"f":33,"i":-1316},"lock":15,"sid":{"sat":4,"code":3}},{"L":{"f":99,"i":113418621},"flags":15,"cn0":203,"P":1059748581,"D":{"f":224,"i":1622},"lock":15,"sid":{"sat":21,"code":3}},{"L":{"f":71,"i":95929195},"flags":15,"cn0":171,"P":1154857639,"D":{"f":191,"i":-3430},"lock":15,"sid":{"sat":9,"code":4}},{"L":{"f":214,"i":85377886},"flags":15,"cn0":205,"P":1026391441,"D":{"f":52,"i":-940},"lock":15,"sid":{"sat":20,"code":4}},{"L":{"f":99,"i":87839461},"flags":15,"cn0":199,"P":1056725677,"D":{"f":83,"i":907},"lock":15,"sid":{"sat":11,"code":4}},{"L":{"f":214,"i":89334461},"flags":15,"cn0":195,"P":1074333680,"D":{"f":127,"i":1710},"lock":15,"sid":{"sat":5,"code":4}},{"L":{"f":213,"i":93675187},"flags":15,"cn0":175,"P":1124561647,"D":{"f":140,"i":-1024},"lock":15,"sid":{"sat":4,"code":4}},{"L":{"f":241,"i":121581041},"flags":15,"cn0":200,"P":1167417764,"D":{"f":152,"i":-1499},"lock":15,"sid":{"sat":35,"code":12}},{"L":{"f":48,"i":129214124},"flags":15,"cn0":170,"P":1240710737,"D":{"f":16,"i":-3006},"lock":15,"sid":{"sat":26,"code":12}},{"L":{"f":81,"i":132944355},"flags":15,"cn0":157,"P":1276528024,"D":{"f":239,"i":2247},"lock":15,"sid":{"sat":34,"code":12}},{"L":{"f":12,"i":125152276},"flags":15,"cn0":188,"P":1201708953,"D":{"f":195,"i":-1303},"lock":15,"sid":{"sat":24,"code":12}}],"payload":"eP0uEAAAAAAyCEEdfC09AvuKBthF++6uDw8UA8cGCUBcmtgG6ZYIStAPDwUDC6ZlPqj4pgYHHPTrzw8PCgMGcgdD88ItB8nc+iG1Dw8EA+V6Kj99ocIGY1YG4MsPDxUDp7rVRGvDtwVHmvK/qw8PCQSRfS09XsMWBdZU/DTNDw8UBK1a/D7lUjwFY4sDU8cPDwsE8AcJQL0iUwXWrgZ/ww8PBQTvcgdDs16VBdUA/IyvDw8EBKRhlUXxLT8H8SX6mMgPDyMMUb7zSaymswcwQvQQqg8PGgyYRRZM45HsB1HHCO+dDw8iDJmfoEcUrHUHDOn6w7wPDxgM","header":{"n_obs":65,"t":{"ns_residual":0,"wn":2098,"tow":271515000}},"crc":61055} +{"length":249,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":234,"i":134671185},"flags":15,"cn0":157,"P":1293109258,"D":{"f":227,"i":1325},"lock":15,"sid":{"sat":25,"code":12}},{"L":{"f":237,"i":121098768},"flags":15,"cn0":184,"P":1162787240,"D":{"f":59,"i":1611},"lock":15,"sid":{"sat":12,"code":12}},{"L":{"f":95,"i":124515163},"flags":15,"cn0":184,"P":1195591362,"D":{"f":82,"i":-288},"lock":15,"sid":{"sat":19,"code":12}},{"L":{"f":31,"i":124702628},"flags":15,"cn0":191,"P":1197391394,"D":{"f":164,"i":2387},"lock":15,"sid":{"sat":22,"code":12}},{"L":{"f":83,"i":93641258},"flags":15,"cn0":210,"P":1162787176,"D":{"f":108,"i":1246},"lock":15,"sid":{"sat":12,"code":13}},{"L":{"f":164,"i":116426917},"flags":15,"cn0":196,"P":1107765254,"D":{"f":190,"i":-1027},"lock":15,"sid":{"sat":12,"code":14}},{"L":{"f":45,"i":132473938},"flags":15,"cn0":193,"P":1260447540,"D":{"f":69,"i":1088},"lock":15,"sid":{"sat":25,"code":14}},{"L":{"f":114,"i":125421690},"flags":15,"cn0":190,"P":1193347650,"D":{"f":32,"i":1049},"lock":15,"sid":{"sat":11,"code":14}},{"L":{"f":41,"i":118415412},"flags":15,"cn0":205,"P":1126685057,"D":{"f":240,"i":-1746},"lock":15,"sid":{"sat":24,"code":14}},{"L":{"f":173,"i":143324160},"flags":15,"cn0":159,"P":1363684052,"D":{"f":171,"i":-3173},"lock":15,"sid":{"sat":31,"code":14}},{"L":{"f":74,"i":144526044},"flags":15,"cn0":154,"P":1375119592,"D":{"f":29,"i":-2139},"lock":15,"sid":{"sat":33,"code":14}},{"L":{"f":250,"i":101506002},"flags":15,"cn0":201,"P":1260447508,"D":{"f":92,"i":834},"lock":15,"sid":{"sat":25,"code":20}},{"L":{"f":202,"i":90733950},"flags":15,"cn0":215,"P":1126685598,"D":{"f":105,"i":-1338},"lock":15,"sid":{"sat":24,"code":20}},{"L":{"f":14,"i":96102312},"flags":15,"cn0":194,"P":1193347457,"D":{"f":127,"i":803},"lock":15,"sid":{"sat":11,"code":20}}],"payload":"eP0uEAAAAAAyCEIKSBNNUesGCOotBeOdDw8ZDKi5TkUQ0jcH7UsGO7gPDwwMwkZDR1vzawdf4P5SuA8PEwwivl5HpM9uBx9TCaS/Dw8WDGi5TkUq2pQFU94EbNIPDwwNBigHQqWI8Aak/fu+xA8PDA405yBLUmTlBy1ABEXBDw8ZDkIKIUd6yHkHchkEIL4PDwsOgdknQzTgDgcpLvnwzQ8PGA7UKkhRAPSKCK2b86ufDw8fDuio9lHcSp0ISqX3HZoPDyEOFOcgS9LbDAb6QgNcyQ8PGRSe2ydDfn1oBcrG+mnXDw8YFIEJIUeoZ7oFDiMDf8IPDwsU","header":{"n_obs":66,"t":{"ns_residual":0,"wn":2098,"tow":271515000}},"crc":10633} +{"length":62,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":247,"i":109819852},"flags":15,"cn0":173,"P":1363684097,"D":{"f":212,"i":-2431},"lock":15,"sid":{"sat":31,"code":20}},{"L":{"f":48,"i":89210266},"flags":15,"cn0":206,"P":1107765105,"D":{"f":12,"i":-788},"lock":15,"sid":{"sat":12,"code":20}},{"L":{"f":192,"i":110740805},"flags":15,"cn0":169,"P":1375119531,"D":{"f":127,"i":-1641},"lock":15,"sid":{"sat":33,"code":20}}],"payload":"eP0uEAAAAAAyCEMBK0hRzLeLBveB9tStDw8fFHEnB0KaPVEFMOz8DM4PDwwUq6j2UUXFmQbAl/l/qQ8PIRQ=","header":{"n_obs":67,"t":{"ns_residual":0,"wn":2098,"tow":271515000}},"crc":23433} +{"length":9,"l2ca_bias":0,"preamble":85,"l2p_bias":0,"sender":22963,"msg_type":117,"payload":"/wAAAAAAAAAA","l1ca_bias":0,"mask":255,"crc":49809,"l1p_bias":0} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"Mgh4/S4QAAAAAAE=","wn":2098,"tow":271515000,"crc":43443} +{"length":16,"flags":17,"ns":999999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EXj9LhDkBwMZAxg4/smaOw==","day":25,"tow":271515000,"year":2020,"crc":11157,"minutes":24,"month":3,"seconds":56} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.326489681489786,"preamble":85,"sender":22963,"msg_type":522,"payload":"eP0uEEOz2t9l6kJA9f4ZG1aSXsDneujTlFMxwAECWwQPBg==","lat":37.83123396090243,"tow":271515000,"h_accuracy":513,"crc":65118,"lon":-122.28650548494973} +{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"eP0uEPz///8QAAAAEwAAAPEAygIPAg==","n":-4,"d":19,"tow":271515000,"h_accuracy":241,"crc":58369,"e":16} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"eP0uEJsAhwBMAEgAcgAG","tow":271515000,"crc":12573,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"eP0uEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271515000,"h_accuracy":0,"crc":21439,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"eP0uEP//","tow":271515000,"crc":17281} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":4,"flags":2147616000,"preamble":85,"sender":22963,"msg_type":65535,"payload":"AAUCgA==","crc":40942} +{"length":24,"z":3890655.0240602265,"preamble":85,"sender":22963,"msg_type":72,"payload":"UO0a3iqORMHK1UJhIkRQwc9nFIPvrk1B","crc":2168,"x":-2694229.735196747,"y":-4264073.519704292} +{"cpu_vint":988,"length":10,"fe_temperature":5641,"preamble":85,"sender":22963,"cpu_vaux":1779,"msg_type":181,"payload":"7BbcA/MGXxUJFg==","dev_vin":5868,"crc":61152,"cpu_temperature":5471} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"Mgjc/S4QAAAAAAE=","wn":2098,"tow":271515100,"crc":11538} +{"length":16,"flags":17,"ns":99999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"Edz9LhDkBwMZAxg5/uD1BQ==","day":25,"tow":271515100,"year":2020,"crc":1966,"minutes":24,"month":3,"seconds":57} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.32148709908438,"preamble":85,"sender":22963,"msg_type":522,"payload":"3P0uEPPxv99l6kJAPZshG1aSXsBAp4D6TFIxwAECWwQPBg==","lat":37.831233948443604,"tow":271515100,"h_accuracy":513,"crc":30716,"lon":-122.28650549203753} +{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"3P0uEPr///8DAAAA/P////EAygIPAg==","n":-6,"d":-4,"tow":271515100,"h_accuracy":241,"crc":40025,"e":3} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"3P0uEJsAhwBMAEgAcgAG","tow":271515100,"crc":25513,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"3P0uEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271515100,"h_accuracy":0,"crc":9414,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"3P0uEP//","tow":271515100,"crc":41992} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MghA/i4QAAAAAAE=","wn":2098,"tow":271515200,"crc":48187} +{"length":16,"flags":17,"ns":199999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EUD+LhDkBwMZAxg5/sHrCw==","day":25,"tow":271515200,"year":2020,"crc":23590,"minutes":24,"month":3,"seconds":57} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.31556131170125,"preamble":85,"sender":22963,"msg_type":522,"payload":"QP4uEH+Yu99l6kJArEA4G1aSXsDFo0mgyFAxwAECWwQPBg==","lat":37.831233946418244,"tow":271515200,"h_accuracy":513,"crc":21345,"lon":-122.28650551312847} +{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"QP4uEAQAAADz////3P////EAygIPAg==","n":4,"d":-36,"tow":271515200,"h_accuracy":241,"crc":23600,"e":-13} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"QP4uEJsAhwBMAEgAcgAG","tow":271515200,"crc":18533,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"QP4uEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271515200,"h_accuracy":0,"crc":46284,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"QP4uEP//","tow":271515200,"crc":36765} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"Mgik/i4QAAAAAAE=","wn":2098,"tow":271515300,"crc":26435} +{"length":16,"flags":17,"ns":299999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EaT+LhDkBwMZAxg5/qLhEQ==","day":25,"tow":271515300,"year":2020,"crc":47632,"minutes":24,"month":3,"seconds":57} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.316956976073552,"preamble":85,"sender":22963,"msg_type":522,"payload":"pP4uEM+yvd9l6kJAqRwzG1aSXsCXeaYXJFExwAECWwQPBg==","lat":37.83123394739743,"tow":271515300,"h_accuracy":513,"crc":40351,"lon":-122.28650550834085} +{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"pP4uEAYAAAALAAAALAAAAPEAygIPAg==","n":6,"d":44,"tow":271515300,"h_accuracy":241,"crc":54643,"e":11} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"pP4uEJsAhwBMAEgAcgAG","tow":271515300,"crc":12504,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"pP4uEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271515300,"h_accuracy":0,"crc":5871,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"pP4uEP//","tow":271515300,"crc":516} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":237,"states":[{"cn0":213,"mesid":{"sat":5,"code":0}},{"cn0":180,"mesid":{"sat":21,"code":0}},{"cn0":189,"mesid":{"sat":2,"code":0}},{"cn0":167,"mesid":{"sat":31,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":217,"mesid":{"sat":25,"code":0}},{"cn0":206,"mesid":{"sat":12,"code":0}},{"cn0":213,"mesid":{"sat":29,"code":0}},{"cn0":206,"mesid":{"sat":18,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":205,"mesid":{"sat":131,"code":2}},{"cn0":205,"mesid":{"sat":25,"code":1}},{"cn0":188,"mesid":{"sat":12,"code":1}},{"cn0":152,"mesid":{"sat":31,"code":1}},{"cn0":196,"mesid":{"sat":18,"code":1}},{"cn0":195,"mesid":{"sat":29,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":194,"mesid":{"sat":5,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":213,"mesid":{"sat":100,"code":3}},{"cn0":180,"mesid":{"sat":98,"code":3}},{"cn0":173,"mesid":{"sat":102,"code":3}},{"cn0":208,"mesid":{"sat":101,"code":3}},{"cn0":207,"mesid":{"sat":93,"code":3}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":181,"mesid":{"sat":106,"code":3}},{"cn0":203,"mesid":{"sat":104,"code":3}},{"cn0":171,"mesid":{"sat":98,"code":4}},{"cn0":205,"mesid":{"sat":102,"code":4}},{"cn0":68,"mesid":{"sat":93,"code":4}},{"cn0":199,"mesid":{"sat":100,"code":4}},{"cn0":196,"mesid":{"sat":101,"code":4}},{"cn0":188,"mesid":{"sat":104,"code":4}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":175,"mesid":{"sat":106,"code":4}},{"cn0":200,"mesid":{"sat":35,"code":12}},{"cn0":170,"mesid":{"sat":26,"code":12}},{"cn0":156,"mesid":{"sat":34,"code":12}},{"cn0":189,"mesid":{"sat":24,"code":12}},{"cn0":158,"mesid":{"sat":25,"code":12}},{"cn0":185,"mesid":{"sat":12,"code":12}},{"cn0":184,"mesid":{"sat":19,"code":12}},{"cn0":191,"mesid":{"sat":22,"code":12}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":209,"mesid":{"sat":12,"code":13}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":195,"mesid":{"sat":12,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":192,"mesid":{"sat":25,"code":14}},{"cn0":189,"mesid":{"sat":11,"code":14}},{"cn0":205,"mesid":{"sat":24,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":159,"mesid":{"sat":31,"code":14}},{"cn0":153,"mesid":{"sat":33,"code":14}},{"cn0":201,"mesid":{"sat":25,"code":20}},{"cn0":215,"mesid":{"sat":24,"code":20}},{"cn0":194,"mesid":{"sat":11,"code":20}},{"cn0":174,"mesid":{"sat":31,"code":20}},{"cn0":207,"mesid":{"sat":12,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":169,"mesid":{"sat":33,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}}],"preamble":85,"sender":22963,"msg_type":97,"payload":"BQDVFQC0AgC9HwCnAAAAAAAAGQDZDADOHQDVEgDOAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwLNGQHNDAG8HwGYEgHEHQHDAAAABQHCAAAAAAAAAAAAAAAAZAPVYgO0ZgOtZQPQXQPPAAAAagO1aAPLYgSrZgTNXQREZATHZQTEaAS8AAAAagSvIwzIGgyqIgycGAy9GQyeDAy5Ewy4Fgy/AAAADA3RAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADA7DAAAAGQ7ACw69GA7NAAAAHw6fIQ6ZGRTJGBTXCxTCHxSuDBTPAAAAIRSpAAAA","crc":48972} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MggI/y4QAAAAAAE=","wn":2098,"tow":271515400,"crc":36302} +{"length":16,"flags":17,"ns":399999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EQj/LhDkBwMZAxg5/oPXFw==","day":25,"tow":271515400,"year":2020,"crc":51843,"minutes":24,"month":3,"seconds":57} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.31406256808885,"preamble":85,"sender":22963,"msg_type":522,"payload":"CP8uEJqjsd9l6kJAWONTG1aSXsDi1opnZlAxwAECWwQPBg==","lat":37.83123394178183,"tow":271515400,"h_accuracy":513,"crc":29665,"lon":-122.28650553886598} +{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"CP8uEP3////2////4f////EAygIPAg==","n":-3,"d":-31,"tow":271515400,"h_accuracy":241,"crc":36382,"e":-10} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"CP8uEJsAhwBMAEgAcgAG","tow":271515400,"crc":15944,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"CP8uEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271515400,"h_accuracy":0,"crc":60099,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"CP8uEP//","tow":271515400,"crc":17054} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":9,"l2ca_bias":0,"preamble":85,"l2p_bias":0,"sender":22963,"msg_type":117,"payload":"/wAAAAAAAAAA","l1ca_bias":0,"mask":255,"crc":49809,"l1p_bias":0} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"Mghs/y4QAAAAAAE=","wn":2098,"tow":271515500,"crc":59652} +{"length":16,"flags":17,"ns":499999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EWz/LhDkBwMZAxg5/mTNHQ==","day":25,"tow":271515500,"year":2020,"crc":36479,"minutes":24,"month":3,"seconds":57} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.31059541947166,"preamble":85,"sender":22963,"msg_type":522,"payload":"bP8uEPKMpt9l6kJAWlNmG1aSXsAO63Aug08xwAECWwQPBg==","lat":37.83123393661835,"tow":271515500,"h_accuracy":513,"crc":42205,"lon":-122.28650555603727} +{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"bP8uEP7////5////AQAAAPEAygIPAg==","n":-2,"d":1,"tow":271515500,"h_accuracy":241,"crc":8087,"e":-7} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"bP8uEJsAhwBMAEgAcgAG","tow":271515500,"crc":4839,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"bP8uEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271515500,"h_accuracy":0,"crc":62069,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"bP8uEP//","tow":271515500,"crc":6951} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgjQ/y4QAAAAAAE=","wn":2098,"tow":271515600,"crc":6052} +{"length":16,"flags":17,"ns":599999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EdD/LhDkBwMZAxg5/kXDIw==","day":25,"tow":271515600,"year":2020,"crc":61536,"minutes":24,"month":3,"seconds":57} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.305874425494007,"preamble":85,"sender":22963,"msg_type":522,"payload":"0P8uEJY1md9l6kJAzm9lG1aSXsD3LU7JTU4xwAECWwQPBg==","lat":37.831233930405844,"tow":271515600,"h_accuracy":513,"crc":49631,"lon":-122.28650555520946} +{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"0P8uEAAAAAAIAAAADAAAAPEAygIPAg==","n":0,"d":12,"tow":271515600,"h_accuracy":241,"crc":4415,"e":8} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"0P8uEJsAhwBMAEgAcgAG","tow":271515600,"crc":10652,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"0P8uEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271515600,"h_accuracy":0,"crc":26345,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"0P8uEP//","tow":271515600,"crc":60264} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":51,"text":"GLO L2OF ME 1 [+1202ms] low CN0 too long, dropping","preamble":85,"sender":22963,"msg_type":1025,"payload":"BkdMTyBMMk9GIE1FIDEgWysxMjAybXNdIGxvdyBDTjAgdG9vIGxvbmcsIGRyb3BwaW5n","crc":30729,"level":6} +{"message_type":4,"length":34,"data":[87,255,127,255,253,127,240,1,127,255,251,255,239,253,127,247,255,127,247,255,238,94,110,170,175,255,240],"preamble":85,"sender":22963,"msg_type":30583,"payload":"gwJN/y4QBFf/f//9f/ABf//7/+/9f/f/f/f/7l5uqq//8A==","tow":271515469,"crc":26208,"sid":{"sat":131,"code":2}} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"Mgg0AC8QAAAAAAE=","wn":2098,"tow":271515700,"crc":57586} +{"length":16,"flags":17,"ns":699999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"ETQALxDkBwMZAxg5/ia5KQ==","day":25,"tow":271515700,"year":2020,"crc":62921,"minutes":24,"month":3,"seconds":57} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.297006077723438,"preamble":85,"sender":22963,"msg_type":522,"payload":"NAAvEFSl1t9l6kJApq1/G1aSXsAQiR6XCEwxwAECWwQPBg==","lat":37.83123395901444,"tow":271515700,"h_accuracy":513,"crc":55611,"lon":-122.28650557964883} +{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"NAAvEAYAAAABAAAA+v////EAygIPAg==","n":6,"d":-6,"tow":271515700,"h_accuracy":241,"crc":35666,"e":1} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"NAAvEJsAhwBMAEgAcgAG","tow":271515700,"crc":43222,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"NAAvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271515700,"h_accuracy":0,"crc":39267,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"NAAvEP//","tow":271515700,"crc":19178} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgiYAC8QAAAAAAE=","wn":2098,"tow":271515800,"crc":19884} +{"length":16,"flags":17,"ns":799999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EZgALxDkBwMZAxg5/gevLw==","day":25,"tow":271515800,"year":2020,"crc":63709,"minutes":24,"month":3,"seconds":57} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.289040533489274,"preamble":85,"sender":22963,"msg_type":522,"payload":"mAAvEG94/99l6kJAWtaBG1aSXsAJjnaP/kkxwAECWwQPBg==","lat":37.83123397802489,"tow":271515800,"h_accuracy":513,"crc":41334,"lon":-122.28650558165955} +{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"mAAvEAoAAAAFAAAA+v////EAygIPAg==","n":10,"d":-6,"tow":271515800,"h_accuracy":241,"crc":24293,"e":5} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"mAAvEJsAhwBMAEgAcgAG","tow":271515800,"crc":56615,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"mAAvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271515800,"h_accuracy":0,"crc":45241,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"mAAvEP//","tow":271515800,"crc":40993} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":237,"states":[{"cn0":213,"mesid":{"sat":5,"code":0}},{"cn0":180,"mesid":{"sat":21,"code":0}},{"cn0":189,"mesid":{"sat":2,"code":0}},{"cn0":167,"mesid":{"sat":31,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":218,"mesid":{"sat":25,"code":0}},{"cn0":207,"mesid":{"sat":12,"code":0}},{"cn0":213,"mesid":{"sat":29,"code":0}},{"cn0":206,"mesid":{"sat":18,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":205,"mesid":{"sat":131,"code":2}},{"cn0":204,"mesid":{"sat":25,"code":1}},{"cn0":187,"mesid":{"sat":12,"code":1}},{"cn0":152,"mesid":{"sat":31,"code":1}},{"cn0":196,"mesid":{"sat":18,"code":1}},{"cn0":195,"mesid":{"sat":29,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":194,"mesid":{"sat":5,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":213,"mesid":{"sat":11,"code":3}},{"cn0":180,"mesid":{"sat":9,"code":3}},{"cn0":174,"mesid":{"sat":20,"code":3}},{"cn0":208,"mesid":{"sat":5,"code":3}},{"cn0":208,"mesid":{"sat":10,"code":3}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":181,"mesid":{"sat":4,"code":3}},{"cn0":203,"mesid":{"sat":21,"code":3}},{"cn0":171,"mesid":{"sat":9,"code":4}},{"cn0":205,"mesid":{"sat":20,"code":4}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":199,"mesid":{"sat":11,"code":4}},{"cn0":196,"mesid":{"sat":5,"code":4}},{"cn0":188,"mesid":{"sat":0,"code":4}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":176,"mesid":{"sat":4,"code":4}},{"cn0":200,"mesid":{"sat":35,"code":12}},{"cn0":170,"mesid":{"sat":26,"code":12}},{"cn0":156,"mesid":{"sat":34,"code":12}},{"cn0":189,"mesid":{"sat":24,"code":12}},{"cn0":158,"mesid":{"sat":25,"code":12}},{"cn0":185,"mesid":{"sat":12,"code":12}},{"cn0":184,"mesid":{"sat":19,"code":12}},{"cn0":191,"mesid":{"sat":22,"code":12}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":210,"mesid":{"sat":12,"code":13}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":195,"mesid":{"sat":12,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":192,"mesid":{"sat":25,"code":14}},{"cn0":190,"mesid":{"sat":11,"code":14}},{"cn0":205,"mesid":{"sat":24,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":159,"mesid":{"sat":31,"code":14}},{"cn0":154,"mesid":{"sat":33,"code":14}},{"cn0":200,"mesid":{"sat":25,"code":20}},{"cn0":215,"mesid":{"sat":24,"code":20}},{"cn0":194,"mesid":{"sat":11,"code":20}},{"cn0":174,"mesid":{"sat":31,"code":20}},{"cn0":207,"mesid":{"sat":12,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":169,"mesid":{"sat":33,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}}],"preamble":85,"sender":22963,"msg_type":97,"payload":"BQDVFQC0AgC9HwCnAAAAAAAAGQDaDADPHQDVEgDOAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwLNGQHMDAG7HwGYEgHEHQHDAAAABQHCAAAAAAAAAAAAAAAACwPVCQO0FAOuBQPQCgPQAAAABAO1FQPLCQSrFATNAAAACwTHBQTEAAS8AAAABASwIwzIGgyqIgycGAy9GQyeDAy5Ewy4Fgy/AAAADA3SAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADA7DAAAAGQ7ACw6+GA7NAAAAHw6fIQ6aGRTIGBTXCxTCHxSuDBTPAAAAIRSpAAAA","crc":7621} +{"length":136,"preamble":85,"sender":22963,"msg_type":151,"payload":"AgAaHgUALDUMAFEtFQB9GRkAbUYaAKEBHQChNx8AlQ4EAxYWBQMyIQYDTggJA18OCgNxKQsDmCUMA6oDEwMiBxQDCzEVA5UlDAyUKRMMIyAUDA8CFgxDIxgMgiMZDJ0OGgxnFR0MLAAiDI4RIwwiLQsOizIMDg88GA5sNhkOlykfDlURIQ4fDw==","crc":41336,"azel":[{"el":30,"az":26,"sid":{"sat":2,"code":0}},{"el":53,"az":44,"sid":{"sat":5,"code":0}},{"el":45,"az":81,"sid":{"sat":12,"code":0}},{"el":25,"az":125,"sid":{"sat":21,"code":0}},{"el":70,"az":109,"sid":{"sat":25,"code":0}},{"el":1,"az":161,"sid":{"sat":26,"code":0}},{"el":55,"az":161,"sid":{"sat":29,"code":0}},{"el":14,"az":149,"sid":{"sat":31,"code":0}},{"el":22,"az":22,"sid":{"sat":4,"code":3}},{"el":33,"az":50,"sid":{"sat":5,"code":3}},{"el":8,"az":78,"sid":{"sat":6,"code":3}},{"el":14,"az":95,"sid":{"sat":9,"code":3}},{"el":41,"az":113,"sid":{"sat":10,"code":3}},{"el":37,"az":152,"sid":{"sat":11,"code":3}},{"el":3,"az":170,"sid":{"sat":12,"code":3}},{"el":7,"az":34,"sid":{"sat":19,"code":3}},{"el":49,"az":11,"sid":{"sat":20,"code":3}},{"el":37,"az":149,"sid":{"sat":21,"code":3}},{"el":41,"az":148,"sid":{"sat":12,"code":12}},{"el":32,"az":35,"sid":{"sat":19,"code":12}},{"el":2,"az":15,"sid":{"sat":20,"code":12}},{"el":35,"az":67,"sid":{"sat":22,"code":12}},{"el":35,"az":130,"sid":{"sat":24,"code":12}},{"el":14,"az":157,"sid":{"sat":25,"code":12}},{"el":21,"az":103,"sid":{"sat":26,"code":12}},{"el":0,"az":44,"sid":{"sat":29,"code":12}},{"el":17,"az":142,"sid":{"sat":34,"code":12}},{"el":45,"az":34,"sid":{"sat":35,"code":12}},{"el":50,"az":139,"sid":{"sat":11,"code":14}},{"el":60,"az":15,"sid":{"sat":12,"code":14}},{"el":54,"az":108,"sid":{"sat":24,"code":14}},{"el":41,"az":151,"sid":{"sat":25,"code":14}},{"el":17,"az":85,"sid":{"sat":31,"code":14}},{"el":15,"az":31,"sid":{"sat":33,"code":14}}]} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"Mgj8AC8QAAAAAAE=","wn":2098,"tow":271515900,"crc":10598} +{"length":16,"flags":17,"ns":899999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EfwALxDkBwMZAxg5/uikNQ==","day":25,"tow":271515900,"year":2020,"crc":14323,"minutes":24,"month":3,"seconds":57} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.282143558045767,"preamble":85,"sender":22963,"msg_type":522,"payload":"/AAvEEA/999l6kJAvemgG1aSXsBqlWqPOkgxwAECWwQPBg==","lat":37.831233974195584,"tow":271515900,"h_accuracy":513,"crc":60559,"lon":-122.28650561060108} +{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"/AAvEO/////+////CQAAAPEAygIPAg==","n":-17,"d":9,"tow":271515900,"h_accuracy":241,"crc":32110,"e":-2} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"/AAvEJsAhwBMAEgAcgAG","tow":271515900,"crc":61832,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"/AAvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271515900,"h_accuracy":0,"crc":43023,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"/AAvEP//","tow":271515900,"crc":63896} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":249,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":234,"i":110564394},"flags":15,"cn0":213,"P":1051985109,"D":{"f":80,"i":-185},"lock":15,"sid":{"sat":5,"code":0}},{"L":{"f":119,"i":121822565},"flags":15,"cn0":180,"P":1159103173,"D":{"f":215,"i":2172},"lock":15,"sid":{"sat":21,"code":0}},{"L":{"f":123,"i":123340805},"flags":15,"cn0":189,"P":1173548370,"D":{"f":248,"i":-2479},"lock":15,"sid":{"sat":2,"code":0}},{"L":{"f":174,"i":128738773},"flags":15,"cn0":167,"P":1224908749,"D":{"f":115,"i":-398},"lock":15,"sid":{"sat":31,"code":0}},{"L":{"f":65,"i":107824428},"flags":15,"cn0":218,"P":1025915241,"D":{"f":52,"i":-1128},"lock":15,"sid":{"sat":25,"code":0}},{"L":{"f":69,"i":114101713},"flags":15,"cn0":207,"P":1085641597,"D":{"f":158,"i":-2968},"lock":15,"sid":{"sat":12,"code":0}},{"L":{"f":110,"i":110759423},"flags":15,"cn0":213,"P":1053840798,"D":{"f":165,"i":1482},"lock":15,"sid":{"sat":29,"code":0}},{"L":{"f":126,"i":84019055},"flags":15,"cn0":204,"P":1025915298,"D":{"f":231,"i":-880},"lock":15,"sid":{"sat":25,"code":1}},{"L":{"f":143,"i":88910457},"flags":15,"cn0":187,"P":1085641533,"D":{"f":58,"i":-2313},"lock":15,"sid":{"sat":12,"code":1}},{"L":{"f":251,"i":100315929},"flags":15,"cn0":152,"P":1224908628,"D":{"f":208,"i":-311},"lock":15,"sid":{"sat":31,"code":1}},{"L":{"f":16,"i":86306046},"flags":15,"cn0":195,"P":1053840720,"D":{"f":122,"i":1155},"lock":15,"sid":{"sat":29,"code":1}},{"L":{"f":56,"i":86154103},"flags":15,"cn0":194,"P":1051985046,"D":{"f":115,"i":-143},"lock":15,"sid":{"sat":5,"code":1}},{"L":{"f":44,"i":112935270},"flags":15,"cn0":213,"P":1056714481,"D":{"f":110,"i":1164},"lock":15,"sid":{"sat":11,"code":3}},{"L":{"f":27,"i":123341931},"flags":15,"cn0":180,"P":1154898833,"D":{"f":217,"i":-4409},"lock":15,"sid":{"sat":9,"code":3}}],"payload":"YAEvEAAAAAAyCEDVBLQ+KhSXBupH/1DVDw8FAMWCFkVl3UIHd3wI17QPDxUAUu3yRQUIWgd7Ufb4vQ8PAgDNnwJJ1WWsB65y/nOnDw8fAGk5Jj0sRW0GQZj7NNoPDxkAfZO1QNENzQZFaPSezw8PDACeVdA+/w2aBm7KBaXVDw8dAKI5Jj1vBwIFfpD858wPDxkBPZO1QHmqTAWP9/Y6uw8PDAFUnwJJGbP6BfvJ/tCYDw8fAVBV0D7+7CQFEIMEesMPDx0BlgS0PnebIgU4cf9zwg8PBQHxLvw+ZkG7BiyMBG7VDw8LA5Fb1kRrDFoHG8fu2bQPDwkD","header":{"n_obs":64,"t":{"ns_residual":0,"wn":2098,"tow":271516000}},"crc":56804} +{"length":249,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":41,"i":109772732},"flags":15,"cn0":174,"P":1026402372,"D":{"f":72,"i":-1212},"lock":15,"sid":{"sat":20,"code":3}},{"L":{"f":244,"i":114856389},"flags":15,"cn0":208,"P":1074312827,"D":{"f":62,"i":2196},"lock":15,"sid":{"sat":5,"code":3}},{"L":{"f":62,"i":111608971},"flags":15,"cn0":208,"P":1046877594,"D":{"f":39,"i":-3045},"lock":15,"sid":{"sat":10,"code":3}},{"L":{"f":247,"i":120440854},"flags":15,"cn0":181,"P":1124573679,"D":{"f":17,"i":-1318},"lock":15,"sid":{"sat":4,"code":3}},{"L":{"f":212,"i":113416997},"flags":15,"cn0":203,"P":1059733412,"D":{"f":158,"i":1620},"lock":15,"sid":{"sat":21,"code":3}},{"L":{"f":189,"i":95932622},"flags":15,"cn0":171,"P":1154898903,"D":{"f":100,"i":-3430},"lock":15,"sid":{"sat":9,"code":4}},{"L":{"f":105,"i":85378827},"flags":15,"cn0":205,"P":1026402756,"D":{"f":54,"i":-942},"lock":15,"sid":{"sat":20,"code":4}},{"L":{"f":205,"i":87838553},"flags":15,"cn0":199,"P":1056714740,"D":{"f":222,"i":905},"lock":15,"sid":{"sat":11,"code":4}},{"L":{"f":138,"i":89332751},"flags":15,"cn0":195,"P":1074313119,"D":{"f":208,"i":1708},"lock":15,"sid":{"sat":5,"code":4}},{"L":{"f":191,"i":93676210},"flags":15,"cn0":175,"P":1124573925,"D":{"f":56,"i":-1026},"lock":15,"sid":{"sat":4,"code":4}},{"L":{"f":110,"i":121582540},"flags":15,"cn0":200,"P":1167432150,"D":{"f":174,"i":-1501},"lock":15,"sid":{"sat":35,"code":12}},{"L":{"f":111,"i":129217131},"flags":15,"cn0":170,"P":1240739612,"D":{"f":47,"i":-3009},"lock":15,"sid":{"sat":26,"code":12}},{"L":{"f":17,"i":132942106},"flags":15,"cn0":157,"P":1276506432,"D":{"f":145,"i":2246},"lock":15,"sid":{"sat":34,"code":12}},{"L":{"f":200,"i":125153577},"flags":15,"cn0":188,"P":1201721447,"D":{"f":173,"i":-1305},"lock":15,"sid":{"sat":24,"code":12}}],"payload":"YAEvEAAAAAAyCEFEqC09vP+KBilE+0iuDw8UA3u2CEDFkdgG9JQIPtAPDwUDmhVmPosEpwY+G/Qn0A8PCgPvoQdDFsgtB/fa+hG1Dw8EA6Q/Kj8lm8IG1FQGnssPDxUD11vWRM7QtwW9mvJkqw8PCQTEqS09C8cWBWlS/DbNDw8UBPQv/D5ZTzwFzYkD3scPDwsEn7cIQA8cUwWKrAbQww8PBQTlogdDsmKVBb/++zivDw8EBNaZlUXMMz8HbiP6rsgPDyMMHC/0SWuyswdvP/Qvqg8PGgxA8RVMGonsBxHGCJGdDw8iDGfQoEcpsXUHyOf6rbwPDxgM","header":{"n_obs":65,"t":{"ns_residual":0,"wn":2098,"tow":271516000}},"crc":45110} +{"length":249,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":74,"i":134669860},"flags":15,"cn0":158,"P":1293096543,"D":{"f":49,"i":1323},"lock":15,"sid":{"sat":25,"code":12}},{"L":{"f":99,"i":121097156},"flags":15,"cn0":185,"P":1162771758,"D":{"f":201,"i":1610},"lock":15,"sid":{"sat":12,"code":12}},{"L":{"f":27,"i":124515452},"flags":15,"cn0":184,"P":1195594125,"D":{"f":174,"i":-292},"lock":15,"sid":{"sat":19,"code":12}},{"L":{"f":228,"i":124700239},"flags":15,"cn0":191,"P":1197368472,"D":{"f":214,"i":2386},"lock":15,"sid":{"sat":22,"code":12}},{"L":{"f":105,"i":93640011},"flags":15,"cn0":210,"P":1162771693,"D":{"f":182,"i":1245},"lock":15,"sid":{"sat":12,"code":13}},{"L":{"f":199,"i":116427943},"flags":15,"cn0":195,"P":1107775023,"D":{"f":130,"i":-1028},"lock":15,"sid":{"sat":12,"code":14}},{"L":{"f":80,"i":132472849},"flags":15,"cn0":192,"P":1260437170,"D":{"f":160,"i":1087},"lock":15,"sid":{"sat":25,"code":14}},{"L":{"f":101,"i":125420642},"flags":15,"cn0":190,"P":1193337672,"D":{"f":122,"i":1045},"lock":15,"sid":{"sat":11,"code":14}},{"L":{"f":186,"i":118417155},"flags":15,"cn0":205,"P":1126701644,"D":{"f":95,"i":-1746},"lock":15,"sid":{"sat":24,"code":14}},{"L":{"f":107,"i":143327332},"flags":15,"cn0":160,"P":1363714219,"D":{"f":218,"i":-3176},"lock":15,"sid":{"sat":31,"code":14}},{"L":{"f":121,"i":144528184},"flags":15,"cn0":154,"P":1375139947,"D":{"f":208,"i":-2147},"lock":15,"sid":{"sat":33,"code":14}},{"L":{"f":169,"i":101505168},"flags":15,"cn0":200,"P":1260437151,"D":{"f":237,"i":832},"lock":15,"sid":{"sat":25,"code":20}},{"L":{"f":200,"i":90735286},"flags":15,"cn0":215,"P":1126702187,"D":{"f":156,"i":-1338},"lock":15,"sid":{"sat":24,"code":20}},{"L":{"f":4,"i":96101509},"flags":15,"cn0":194,"P":1193337486,"D":{"f":111,"i":800},"lock":15,"sid":{"sat":11,"code":20}}],"payload":"YAEvEAAAAAAyCEJfFhNNJOYGCEorBTGeDw8ZDC59TkXEyzcHY0oGybkPDwwMjVFDR3z0awcb3P6uuA8PEwyYZF5HT8ZuB+RSCda/Dw8WDO18TkVL1ZQFad0EttIPDwwNL04HQqeM8AbH/PuCww8PDA6yviBLEWDlB1A/BKDADw8ZDkjjIEdixHkHZRUEer4PDwsOTBooQwPnDge6LvlfzQ8PGA6roEhRZACLCGuY89qgDw8fDmv49lE4U50IeZ330JoPDyEOn74gS5DYDAapQAPtyA8PGRRrHChDtoJoBcjG+pzXDw8YFI7iIEeFZLoFBCADb8IPDwsU","header":{"n_obs":66,"t":{"ns_residual":0,"wn":2098,"tow":271516000}},"crc":57059} +{"length":62,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":54,"i":109822283},"flags":15,"cn0":174,"P":1363714277,"D":{"f":207,"i":-2432},"lock":15,"sid":{"sat":31,"code":20}},{"L":{"f":119,"i":89211052},"flags":15,"cn0":207,"P":1107774869,"D":{"f":113,"i":-788},"lock":15,"sid":{"sat":12,"code":20}},{"L":{"f":161,"i":110742445},"flags":15,"cn0":169,"P":1375139892,"D":{"f":160,"i":-1642},"lock":15,"sid":{"sat":33,"code":20}}],"payload":"YAEvEAAAAAAyCEPloEhRS8GLBjaA9s+uDw8fFJVNB0KsQFEFd+z8cc8PDwwUNPj2Ua3LmQahlvmgqQ8PIRQ=","header":{"n_obs":67,"t":{"ns_residual":0,"wn":2098,"tow":271516000}},"crc":36713} +{"length":9,"l2ca_bias":0,"preamble":85,"l2p_bias":0,"sender":22963,"msg_type":117,"payload":"/wAAAAAAAAAA","l1ca_bias":0,"mask":255,"crc":49809,"l1p_bias":0} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MghgAS8QAAAAAAE=","wn":2098,"tow":271516000,"crc":14313} +{"length":16,"flags":17,"ns":999999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EWABLxDkBwMZAxg5/smaOw==","day":25,"tow":271516000,"year":2020,"crc":40031,"minutes":24,"month":3,"seconds":57} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.273646320046524,"preamble":85,"sender":22963,"msg_type":522,"payload":"YAEvEAybGeBl6kJAmiDCG1aSXsBERWuvDUYxwAECWwQPBg==","lat":37.831233990195045,"tow":271516000,"h_accuracy":513,"crc":47820,"lon":-122.28650564153432} +{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"YAEvEAwAAAAGAAAA/P////EAygIPAg==","n":12,"d":-4,"tow":271516000,"h_accuracy":241,"crc":37740,"e":6} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"YAEvEJsAhwBMAEgAcgAG","tow":271516000,"crc":11398,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"YAEvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271516000,"h_accuracy":0,"crc":33736,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"YAEvEP//","tow":271516000,"crc":38542} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":4,"flags":2147616000,"preamble":85,"sender":22963,"msg_type":65535,"payload":"AAUCgA==","crc":40942} +{"length":24,"z":3890655.0240602265,"preamble":85,"sender":22963,"msg_type":72,"payload":"UO0a3iqORMHK1UJhIkRQwc9nFIPvrk1B","crc":2168,"x":-2694229.735196747,"y":-4264073.519704292} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"bWFpbgAAAAAAAAAAAAAAAAAAAAAAAAx1AAA=","name":"main\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":47991,"stack_free":29964,"cpu":0} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"aWRsZQAAAAAAAAAAAAAAAAAAAACIAHwAAAA=","name":"idle\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":40242,"stack_free":124,"cpu":136} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"cnBtc2cAAAAAAAAAAAAAAAAAAAABAOwNAAA=","name":"rpmsg\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":53198,"stack_free":3564,"cpu":1} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"U0JQAAAAAAAAAAAAAAAAAAAAAAAAAPz/AAA=","name":"SBP\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":51784,"stack_free":65532,"cpu":0} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"TkFQAAAAAAAAAAAAAAAAAAAAAAAAAASAAAA=","name":"NAP\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":33651,"stack_free":32772,"cpu":0} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"bWFuYWdlIFBWAAAAAAAAAAAAAAAAACwEAAA=","name":"manage PV\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":61814,"stack_free":1068,"cpu":0} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"SU1VAAAAAAAAAAAAAAAAAAAAAAAAAPQHAAA=","name":"IMU\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":14252,"stack_free":2036,"cpu":0} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"SU1VIGF1eAAAAAAAAAAAAAAAAAAAAEwIAAA=","name":"IMU aux\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":18976,"stack_free":2124,"cpu":0} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"bmRiAAAAAAAAAAAAAAAAAAAAAAAAAFAMAAA=","name":"ndb\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":26120,"stack_free":3152,"cpu":0} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"TkFQIFRyYWNraW5nAAAAAAAAAAApAdR3AAA=","name":"NAP Tracking\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":25570,"stack_free":30676,"cpu":297} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"ZGVjb2RlAAAAAAAAAAAAAAAAAAAIANQGAAA=","name":"decode\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":40082,"stack_free":1748,"cpu":8} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"bWFuYWdlIGFjcQAAAAAAAAAAAACNAaR3AAA=","name":"manage acq\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":56140,"stack_free":30628,"cpu":397} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"c3lzdGVtIG1vbml0b3IAAAAAAAAAACwGAAA=","name":"system monitor\u0000\u0000\u0000\u0000\u0000\u0000","crc":58531,"stack_free":1580,"cpu":0} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"V2F0Y2hkb2cAAAAAAAAAAAAAAAAAAOQDAAA=","name":"Watchdog\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":44438,"stack_free":996,"cpu":0} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"c3RhcmxpbmcAAAAAAAAAAAAAAACWAPz/AAA=","name":"starling\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":61599,"stack_free":65532,"cpu":150} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"bWVfY2FsY19wdnQAAAAAAAAAAAAHAIwjAAA=","name":"me_calc_pvt\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":24698,"stack_free":9100,"cpu":7} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"UFBTAAAAAAAAAAAAAAAAAAAAAAAAAEgHAAA=","name":"PPS\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":38576,"stack_free":1864,"cpu":0} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"c3BlY3RydW0gYW5hbHl6ZXIAAAAAANQPAAA=","name":"spectrum analyzer\u0000\u0000\u0000","crc":50933,"stack_free":4052,"cpu":0} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgjEAS8QAAAAAAE=","wn":2098,"tow":271516100,"crc":45896} +{"length":16,"flags":17,"ns":99999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EcQBLxDkBwMZAxg6/uD1BQ==","day":25,"tow":271516100,"year":2020,"crc":62695,"minutes":24,"month":3,"seconds":58} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.26430002669535,"preamble":85,"sender":22963,"msg_type":522,"payload":"xAEvEIxNM+Bl6kJA9lXwG1aSXsAL/aIqqUMxwAECWwQPBg==","lat":37.83123400216127,"tow":271516100,"h_accuracy":513,"crc":53237,"lon":-122.28650568456928} +{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"xAEvEAcAAAD2////7v////EAygIPAg==","n":7,"d":-18,"tow":271516100,"h_accuracy":241,"crc":59882,"e":-10} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"xAEvEJsAhwBMAEgAcgAG","tow":271516100,"crc":32306,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"xAEvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271516100,"h_accuracy":0,"crc":62641,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"xAEvEP//","tow":271516100,"crc":28935} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MggoAi8QAAAAAAE=","wn":2098,"tow":271516200,"crc":35258} +{"length":16,"flags":17,"ns":199999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"ESgCLxDkBwMZAxg6/sHrCw==","day":25,"tow":271516200,"year":2020,"crc":22264,"minutes":24,"month":3,"seconds":58} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.258221800594605,"preamble":85,"sender":22963,"msg_type":522,"payload":"KAIvEMA+QuBl6kJAfoUgHFaSXsAGq+zSGkIxwAECWwQPBg==","lat":37.83123400911927,"tow":271516200,"h_accuracy":513,"crc":9750,"lon":-122.28650572944568} +{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"KAIvEAAAAAD4////AAAAAPEAygIPAg==","n":0,"d":0,"tow":271516200,"h_accuracy":241,"crc":16476,"e":-8} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"KAIvEJsAhwBMAEgAcgAG","tow":271516200,"crc":44137,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"KAIvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271516200,"h_accuracy":0,"crc":26122,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"KAIvEP//","tow":271516200,"crc":7950} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgiMAi8QAAAAAAE=","wn":2098,"tow":271516300,"crc":3355} +{"length":16,"flags":17,"ns":299999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EYwCLxDkBwMZAxg6/qLhEQ==","day":25,"tow":271516300,"year":2020,"crc":39623,"minutes":24,"month":3,"seconds":58} +{"length":200,"preamble":85,"sender":22963,"msg_type":189,"interfaces":[{"total_bytes":0,"interface_name":"can0\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","rx_bytes":0,"tx_bytes":0,"duration":983320850},{"total_bytes":0,"interface_name":"can1\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","rx_bytes":0,"tx_bytes":0,"duration":983320850},{"total_bytes":1273452680,"interface_name":"eth0\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","rx_bytes":539457013,"tx_bytes":733995667,"duration":983320850},{"total_bytes":0,"interface_name":"lo\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","rx_bytes":0,"tx_bytes":0,"duration":983320850},{"total_bytes":0,"interface_name":"sit0\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","rx_bytes":0,"tx_bytes":0,"duration":983320850}],"payload":"EkmcOgAAAAAAAAAAAAAAAAAAAAAAAAAAY2FuMAAAAAAAAAAAAAAAABJJnDoAAAAAAAAAAAAAAAAAAAAAAAAAAGNhbjEAAAAAAAAAAAAAAAASSZw6AAAAAIhY50sAAAAA9XUnIJPivytldGgwAAAAAAAAAAAAAAAAEkmcOgAAAAAAAAAAAAAAAAAAAAAAAAAAbG8AAAAAAAAAAAAAAAAAABJJnDoAAAAAAAAAAAAAAAAAAAAAAAAAAHNpdDAAAAAAAAAAAAAAAAA=","crc":45441} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.252497774741606,"preamble":85,"sender":22963,"msg_type":522,"payload":"jAIvEA8ZUeBl6kJAG11AHFaSXsD207Sxo0AxwAECWwQPBg==","lat":37.83123401603563,"tow":271516300,"h_accuracy":513,"crc":24554,"lon":-122.28650575910108} +{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"jAIvEAQAAAAFAAAACgAAAPEAygIPAg==","n":4,"d":10,"tow":271516300,"h_accuracy":241,"crc":34834,"e":5} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"jAIvEJsAhwBMAEgAcgAG","tow":271516300,"crc":65245,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"jAIvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271516300,"h_accuracy":0,"crc":4467,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"jAIvEP//","tow":271516300,"crc":63623} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":237,"states":[{"cn0":213,"mesid":{"sat":5,"code":0}},{"cn0":180,"mesid":{"sat":21,"code":0}},{"cn0":189,"mesid":{"sat":2,"code":0}},{"cn0":167,"mesid":{"sat":31,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":218,"mesid":{"sat":25,"code":0}},{"cn0":207,"mesid":{"sat":12,"code":0}},{"cn0":213,"mesid":{"sat":29,"code":0}},{"cn0":206,"mesid":{"sat":18,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":205,"mesid":{"sat":131,"code":2}},{"cn0":204,"mesid":{"sat":25,"code":1}},{"cn0":187,"mesid":{"sat":12,"code":1}},{"cn0":153,"mesid":{"sat":31,"code":1}},{"cn0":196,"mesid":{"sat":18,"code":1}},{"cn0":195,"mesid":{"sat":29,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":193,"mesid":{"sat":5,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":213,"mesid":{"sat":100,"code":3}},{"cn0":179,"mesid":{"sat":98,"code":3}},{"cn0":173,"mesid":{"sat":102,"code":3}},{"cn0":208,"mesid":{"sat":101,"code":3}},{"cn0":208,"mesid":{"sat":93,"code":3}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":181,"mesid":{"sat":106,"code":3}},{"cn0":203,"mesid":{"sat":104,"code":3}},{"cn0":171,"mesid":{"sat":98,"code":4}},{"cn0":205,"mesid":{"sat":102,"code":4}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":199,"mesid":{"sat":100,"code":4}},{"cn0":195,"mesid":{"sat":101,"code":4}},{"cn0":188,"mesid":{"sat":104,"code":4}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":175,"mesid":{"sat":106,"code":4}},{"cn0":200,"mesid":{"sat":35,"code":12}},{"cn0":170,"mesid":{"sat":26,"code":12}},{"cn0":156,"mesid":{"sat":34,"code":12}},{"cn0":188,"mesid":{"sat":24,"code":12}},{"cn0":158,"mesid":{"sat":25,"code":12}},{"cn0":185,"mesid":{"sat":12,"code":12}},{"cn0":184,"mesid":{"sat":19,"code":12}},{"cn0":191,"mesid":{"sat":22,"code":12}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":210,"mesid":{"sat":12,"code":13}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":195,"mesid":{"sat":12,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":192,"mesid":{"sat":25,"code":14}},{"cn0":190,"mesid":{"sat":11,"code":14}},{"cn0":205,"mesid":{"sat":24,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":160,"mesid":{"sat":31,"code":14}},{"cn0":153,"mesid":{"sat":33,"code":14}},{"cn0":201,"mesid":{"sat":25,"code":20}},{"cn0":215,"mesid":{"sat":24,"code":20}},{"cn0":194,"mesid":{"sat":11,"code":20}},{"cn0":174,"mesid":{"sat":31,"code":20}},{"cn0":206,"mesid":{"sat":12,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":169,"mesid":{"sat":33,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}}],"preamble":85,"sender":22963,"msg_type":97,"payload":"BQDVFQC0AgC9HwCnAAAAAAAAGQDaDADPHQDVEgDOAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwLNGQHMDAG7HwGZEgHEHQHDAAAABQHBAAAAAAAAAAAAAAAAZAPVYgOzZgOtZQPQXQPQAAAAagO1aAPLYgSrZgTNAAAAZATHZQTDaAS8AAAAagSvIwzIGgyqIgycGAy8GQyeDAy5Ewy4Fgy/AAAADA3SAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADA7DAAAAGQ7ACw6+GA7NAAAAHw6gIQ6ZGRTJGBTXCxTCHxSuDBTOAAAAIRSpAAAA","crc":38851} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgjwAi8QAAAAAAE=","wn":2098,"tow":271516400,"crc":5072} +{"length":16,"flags":17,"ns":399999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EfACLxDkBwMZAxg6/oPXFw==","day":25,"tow":271516400,"year":2020,"crc":41380,"minutes":24,"month":3,"seconds":58} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.248136187517797,"preamble":85,"sender":22963,"msg_type":522,"payload":"8AIvEHTUR+Bl6kJABJtUHFaSXsDTV2rahT8xwAECWwQPBg==","lat":37.831234011719886,"tow":271516400,"h_accuracy":513,"crc":40124,"lon":-122.28650577795275} +{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"8AIvEPv///8MAAAAEwAAAPEAygIPAg==","n":-5,"d":19,"tow":271516400,"h_accuracy":241,"crc":32114,"e":12} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"8AIvEJsAhwBMAEgAcgAG","tow":271516400,"crc":48061,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"8AIvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271516400,"h_accuracy":0,"crc":59936,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"8AIvEP//","tow":271516400,"crc":46840} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":9,"l2ca_bias":0,"preamble":85,"l2p_bias":0,"sender":22963,"msg_type":117,"payload":"/wAAAAAAAAAA","l1ca_bias":0,"mask":255,"crc":49809,"l1p_bias":0} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MghUAy8QAAAAAAE=","wn":2098,"tow":271516500,"crc":53410} +{"length":16,"flags":17,"ns":499999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EVQDLxDkBwMZAxg6/mTNHQ==","day":25,"tow":271516500,"year":2020,"crc":57378,"minutes":24,"month":3,"seconds":58} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.240841967587134,"preamble":85,"sender":22963,"msg_type":522,"payload":"VAMvEN/HceBl6kJAj92DHFaSXsCBSrbRpz0xwAECWwQPBg==","lat":37.83123403125477,"tow":271516500,"h_accuracy":513,"crc":10073,"lon":-122.286505821967} +{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"VAMvEAcAAAD5////+v////EAygIPAg==","n":7,"d":-6,"tow":271516500,"h_accuracy":241,"crc":63290,"e":-7} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"VAMvEJsAhwBMAEgAcgAG","tow":271516500,"crc":37480,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"VAMvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271516500,"h_accuracy":0,"crc":18607,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"VAMvEP//","tow":271516500,"crc":64288} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"Mgi4Ay8QAAAAAAE=","wn":2098,"tow":271516600,"crc":8741} +{"length":16,"flags":17,"ns":599999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EbgDLxDkBwMZAxg6/kXDIw==","day":25,"tow":271516600,"year":2020,"crc":64190,"minutes":24,"month":3,"seconds":58} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.23149303397283,"preamble":85,"sender":22963,"msg_type":522,"payload":"uAMvEEyCeeBl6kJAN5CpHFaSXsBFKqIgQzsxwAECWwQPBg==","lat":37.83123403485351,"tow":271516600,"h_accuracy":513,"crc":470,"lon":-122.28650585707588} +{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"uAMvEPz///8BAAAA8P////EAygIPAg==","n":-4,"d":-16,"tow":271516600,"h_accuracy":241,"crc":7656,"e":1} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"uAMvEJsAhwBMAEgAcgAG","tow":271516600,"crc":52624,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"uAMvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271516600,"h_accuracy":0,"crc":46127,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"uAMvEP//","tow":271516600,"crc":31739} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MggcBC8QAAAAAAE=","wn":2098,"tow":271516700,"crc":24988} +{"length":16,"flags":17,"ns":699999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"ERwELxDkBwMZAxg6/ia5KQ==","day":25,"tow":271516700,"year":2020,"crc":23791,"minutes":24,"month":3,"seconds":58} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.224312416022084,"preamble":85,"sender":22963,"msg_type":522,"payload":"HAQvEM3WmuBl6kJAuVfJHFaSXsDP5tqJbDkxwAECWwQPBg==","lat":37.83123405037404,"tow":271516700,"h_accuracy":513,"crc":47439,"lon":-122.28650588667269} +{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"HAQvEAsAAAD+////BwAAAPEAygIPAg==","n":11,"d":7,"tow":271516700,"h_accuracy":241,"crc":2560,"e":-2} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"HAQvEJsAhwBMAEgAcgAG","tow":271516700,"crc":61218,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"HAQvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271516700,"h_accuracy":0,"crc":51926,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"HAQvEP//","tow":271516700,"crc":64422} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"message_type":2,"length":34,"data":[151,255,0,7,255,0,47,254,0,7,255,127,255,254,127,247,255,255,224,2,229,231,85,238,110,229,112],"preamble":85,"sender":22963,"msg_type":30583,"payload":"gwJPAy8QApf/AAf/AC/+AAf/f//+f/f//+AC5edV7m7lcA==","tow":271516495,"crc":55020,"sid":{"sat":131,"code":2}} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgiABC8QAAAAAAE=","wn":2098,"tow":271516800,"crc":14528} +{"length":16,"flags":17,"ns":799999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EYAELxDkBwMZAxg6/gevLw==","day":25,"tow":271516800,"year":2020,"crc":33381,"minutes":24,"month":3,"seconds":58} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.21506424305122,"preamble":85,"sender":22963,"msg_type":522,"payload":"gAQvEGjvreBl6kJAV/HHHFaSXsCpcUJzDjcxwAECWwQPBg==","lat":37.831234059266365,"tow":271516800,"h_accuracy":513,"crc":26292,"lon":-122.2865058853689} +{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"gAQvEAEAAAD7////8v////EAygIPAg==","n":1,"d":-14,"tow":271516800,"h_accuracy":241,"crc":14111,"e":-5} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"gAQvEJsAhwBMAEgAcgAG","tow":271516800,"crc":18765,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"gAQvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271516800,"h_accuracy":0,"crc":13543,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"gAQvEP//","tow":271516800,"crc":16097} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":237,"states":[{"cn0":214,"mesid":{"sat":5,"code":0}},{"cn0":180,"mesid":{"sat":21,"code":0}},{"cn0":189,"mesid":{"sat":2,"code":0}},{"cn0":167,"mesid":{"sat":31,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":218,"mesid":{"sat":25,"code":0}},{"cn0":207,"mesid":{"sat":12,"code":0}},{"cn0":213,"mesid":{"sat":29,"code":0}},{"cn0":206,"mesid":{"sat":18,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":206,"mesid":{"sat":131,"code":2}},{"cn0":204,"mesid":{"sat":25,"code":1}},{"cn0":187,"mesid":{"sat":12,"code":1}},{"cn0":152,"mesid":{"sat":31,"code":1}},{"cn0":196,"mesid":{"sat":18,"code":1}},{"cn0":195,"mesid":{"sat":29,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":193,"mesid":{"sat":5,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":213,"mesid":{"sat":11,"code":3}},{"cn0":179,"mesid":{"sat":9,"code":3}},{"cn0":174,"mesid":{"sat":20,"code":3}},{"cn0":208,"mesid":{"sat":5,"code":3}},{"cn0":208,"mesid":{"sat":10,"code":3}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":181,"mesid":{"sat":4,"code":3}},{"cn0":203,"mesid":{"sat":21,"code":3}},{"cn0":171,"mesid":{"sat":9,"code":4}},{"cn0":205,"mesid":{"sat":20,"code":4}},{"cn0":73,"mesid":{"sat":10,"code":4}},{"cn0":199,"mesid":{"sat":11,"code":4}},{"cn0":195,"mesid":{"sat":5,"code":4}},{"cn0":188,"mesid":{"sat":0,"code":4}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":175,"mesid":{"sat":4,"code":4}},{"cn0":200,"mesid":{"sat":35,"code":12}},{"cn0":170,"mesid":{"sat":26,"code":12}},{"cn0":156,"mesid":{"sat":34,"code":12}},{"cn0":188,"mesid":{"sat":24,"code":12}},{"cn0":157,"mesid":{"sat":25,"code":12}},{"cn0":185,"mesid":{"sat":12,"code":12}},{"cn0":184,"mesid":{"sat":19,"code":12}},{"cn0":191,"mesid":{"sat":22,"code":12}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":210,"mesid":{"sat":12,"code":13}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":195,"mesid":{"sat":12,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":192,"mesid":{"sat":25,"code":14}},{"cn0":189,"mesid":{"sat":11,"code":14}},{"cn0":205,"mesid":{"sat":24,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":159,"mesid":{"sat":31,"code":14}},{"cn0":153,"mesid":{"sat":33,"code":14}},{"cn0":201,"mesid":{"sat":25,"code":20}},{"cn0":215,"mesid":{"sat":24,"code":20}},{"cn0":194,"mesid":{"sat":11,"code":20}},{"cn0":174,"mesid":{"sat":31,"code":20}},{"cn0":206,"mesid":{"sat":12,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":168,"mesid":{"sat":33,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}}],"preamble":85,"sender":22963,"msg_type":97,"payload":"BQDWFQC0AgC9HwCnAAAAAAAAGQDaDADPHQDVEgDOAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwLOGQHMDAG7HwGYEgHEHQHDAAAABQHBAAAAAAAAAAAAAAAACwPVCQOzFAOuBQPQCgPQAAAABAO1FQPLCQSrFATNCgRJCwTHBQTDAAS8AAAABASvIwzIGgyqIgycGAy8GQydDAy5Ewy4Fgy/AAAADA3SAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADA7DAAAAGQ7ACw69GA7NAAAAHw6fIQ6ZGRTJGBTXCxTCHxSuDBTOAAAAIRSoAAAA","crc":30994} +{"length":132,"preamble":85,"sender":22963,"msg_type":151,"payload":"AgAaHQUAKzUMAFEtFQB9GRkAbUYaAKEBHQChNx8AlQ4EAxUWBQMyIQYDTggJA18OCgNxKQsDmCUMA6oDEwMiBxQDDDEVA5UlDAyUKRMMIyAUDA8CFgxDJBgMgiMZDJ0OGgxnFSIMjhEjDCItCw6LMgwODzwYDmw2GQ6XKR8OVREhDiAP","crc":53239,"azel":[{"el":29,"az":26,"sid":{"sat":2,"code":0}},{"el":53,"az":43,"sid":{"sat":5,"code":0}},{"el":45,"az":81,"sid":{"sat":12,"code":0}},{"el":25,"az":125,"sid":{"sat":21,"code":0}},{"el":70,"az":109,"sid":{"sat":25,"code":0}},{"el":1,"az":161,"sid":{"sat":26,"code":0}},{"el":55,"az":161,"sid":{"sat":29,"code":0}},{"el":14,"az":149,"sid":{"sat":31,"code":0}},{"el":22,"az":21,"sid":{"sat":4,"code":3}},{"el":33,"az":50,"sid":{"sat":5,"code":3}},{"el":8,"az":78,"sid":{"sat":6,"code":3}},{"el":14,"az":95,"sid":{"sat":9,"code":3}},{"el":41,"az":113,"sid":{"sat":10,"code":3}},{"el":37,"az":152,"sid":{"sat":11,"code":3}},{"el":3,"az":170,"sid":{"sat":12,"code":3}},{"el":7,"az":34,"sid":{"sat":19,"code":3}},{"el":49,"az":12,"sid":{"sat":20,"code":3}},{"el":37,"az":149,"sid":{"sat":21,"code":3}},{"el":41,"az":148,"sid":{"sat":12,"code":12}},{"el":32,"az":35,"sid":{"sat":19,"code":12}},{"el":2,"az":15,"sid":{"sat":20,"code":12}},{"el":36,"az":67,"sid":{"sat":22,"code":12}},{"el":35,"az":130,"sid":{"sat":24,"code":12}},{"el":14,"az":157,"sid":{"sat":25,"code":12}},{"el":21,"az":103,"sid":{"sat":26,"code":12}},{"el":17,"az":142,"sid":{"sat":34,"code":12}},{"el":45,"az":34,"sid":{"sat":35,"code":12}},{"el":50,"az":139,"sid":{"sat":11,"code":14}},{"el":60,"az":15,"sid":{"sat":12,"code":14}},{"el":54,"az":108,"sid":{"sat":24,"code":14}},{"el":41,"az":151,"sid":{"sat":25,"code":14}},{"el":17,"az":85,"sid":{"sat":31,"code":14}},{"el":15,"az":32,"sid":{"sat":33,"code":14}}]} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgjkBC8QAAAAAAE=","wn":2098,"tow":271516900,"crc":23562} +{"length":16,"flags":17,"ns":899999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EeQELxDkBwMZAxg6/uikNQ==","day":25,"tow":271516900,"year":2020,"crc":19787,"minutes":24,"month":3,"seconds":58} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.20839451157116,"preamble":85,"sender":22963,"msg_type":522,"payload":"5AQvEKSQwuBl6kJAPIe3HFaSXsAx3btXWTUxwAECWwQPBg==","lat":37.831234068872874,"tow":271516900,"h_accuracy":513,"crc":28976,"lon":-122.28650587008173} +{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"5AQvEAEAAAAEAAAAAQAAAPEAygIPAg==","n":1,"d":1,"tow":271516900,"h_accuracy":241,"crc":13635,"e":4} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"5AQvEJsAhwBMAEgAcgAG","tow":271516900,"crc":26082,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"5AQvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271516900,"h_accuracy":0,"crc":11345,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"5AQvEP//","tow":271516900,"crc":26456} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":249,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":44,"i":110564579},"flags":15,"cn0":214,"P":1051986861,"D":{"f":151,"i":-185},"lock":15,"sid":{"sat":5,"code":0}},{"L":{"f":137,"i":121820392},"flags":15,"cn0":180,"P":1159082512,"D":{"f":0,"i":2172},"lock":15,"sid":{"sat":21,"code":0}},{"L":{"f":5,"i":123343285},"flags":15,"cn0":189,"P":1173571955,"D":{"f":102,"i":-2481},"lock":15,"sid":{"sat":2,"code":0}},{"L":{"f":25,"i":128739170},"flags":15,"cn0":167,"P":1224912551,"D":{"f":97,"i":-395},"lock":15,"sid":{"sat":31,"code":0}},{"L":{"f":33,"i":107825556},"flags":15,"cn0":218,"P":1025925979,"D":{"f":54,"i":-1128},"lock":15,"sid":{"sat":25,"code":0}},{"L":{"f":95,"i":114104681},"flags":15,"cn0":207,"P":1085669841,"D":{"f":55,"i":-2968},"lock":15,"sid":{"sat":12,"code":0}},{"L":{"f":200,"i":110757939},"flags":15,"cn0":213,"P":1053826681,"D":{"f":94,"i":1483},"lock":15,"sid":{"sat":29,"code":0}},{"L":{"f":90,"i":84019934},"flags":15,"cn0":204,"P":1025926025,"D":{"f":244,"i":-880},"lock":15,"sid":{"sat":25,"code":1}},{"L":{"f":93,"i":88912770},"flags":15,"cn0":187,"P":1085669765,"D":{"f":47,"i":-2312},"lock":15,"sid":{"sat":12,"code":1}},{"L":{"f":218,"i":100316238},"flags":15,"cn0":152,"P":1224912407,"D":{"f":219,"i":-309},"lock":15,"sid":{"sat":31,"code":1}},{"L":{"f":247,"i":86304889},"flags":15,"cn0":195,"P":1053826590,"D":{"f":219,"i":1156},"lock":15,"sid":{"sat":29,"code":1}},{"L":{"f":205,"i":86154246},"flags":15,"cn0":194,"P":1051986796,"D":{"f":158,"i":-145},"lock":15,"sid":{"sat":5,"code":1}},{"L":{"f":83,"i":112934105},"flags":15,"cn0":213,"P":1056703589,"D":{"f":41,"i":1165},"lock":15,"sid":{"sat":11,"code":3}},{"L":{"f":18,"i":123346339},"flags":15,"cn0":179,"P":1154940103,"D":{"f":137,"i":-4408},"lock":15,"sid":{"sat":9,"code":3}}],"payload":"SAUvEAAAAAAyCECtC7Q+4xSXBixH/5fWDw8FABAyFkXo1EIHiXwIALQPDxUAc0nzRbURWgcFT/ZmvQ8PAgCnrgJJYmesBxl1/mGnDw8fAFtjJj2USW0GIZj7NtoPDxkA0QG2QGkZzQZfaPQ3zw8PDAB5HtA+MwiaBsjLBV7VDw8dAIljJj3eCgIFWpD89MwPDxkBhQG2QIKzTAVd+PYvuw8PDAEXrgJJTrT6BdrL/tuYDw8fAR4e0D556CQF94QE28MPDx0BbAu0PgacIgXNb/+ewg8PBQFlBPw+2Ty7BlONBCnVDw8LA8f81kSjHVoHEsjuibMPDwkD","header":{"n_obs":64,"t":{"ns_residual":0,"wn":2098,"tow":271517000}},"crc":22822} +{"length":249,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":213,"i":109773942},"flags":15,"cn0":173,"P":1026413699,"D":{"f":219,"i":-1210},"lock":15,"sid":{"sat":20,"code":3}},{"L":{"f":219,"i":114854192},"flags":15,"cn0":208,"P":1074292259,"D":{"f":22,"i":2196},"lock":15,"sid":{"sat":5,"code":3}},{"L":{"f":58,"i":111612016},"flags":15,"cn0":207,"P":1046906165,"D":{"f":162,"i":-3045},"lock":15,"sid":{"sat":10,"code":3}},{"L":{"f":42,"i":120442172},"flags":15,"cn0":180,"P":1124586000,"D":{"f":5,"i":-1317},"lock":15,"sid":{"sat":4,"code":3}},{"L":{"f":171,"i":113415375},"flags":15,"cn0":203,"P":1059718260,"D":{"f":19,"i":1623},"lock":15,"sid":{"sat":21,"code":3}},{"L":{"f":41,"i":95936051},"flags":15,"cn0":171,"P":1154940191,"D":{"f":54,"i":-3429},"lock":15,"sid":{"sat":9,"code":4}},{"L":{"f":9,"i":85379769},"flags":15,"cn0":205,"P":1026414063,"D":{"f":74,"i":-942},"lock":15,"sid":{"sat":20,"code":4}},{"L":{"f":207,"i":87837647},"flags":15,"cn0":199,"P":1056703830,"D":{"f":5,"i":907},"lock":15,"sid":{"sat":11,"code":4}},{"L":{"f":175,"i":89331042},"flags":15,"cn0":195,"P":1074292561,"D":{"f":52,"i":1709},"lock":15,"sid":{"sat":5,"code":4}},{"L":{"f":62,"i":93677235},"flags":15,"cn0":175,"P":1124586241,"D":{"f":7,"i":-1025},"lock":15,"sid":{"sat":4,"code":4}},{"L":{"f":51,"i":121584040},"flags":15,"cn0":200,"P":1167446554,"D":{"f":158,"i":-1500},"lock":15,"sid":{"sat":35,"code":12}},{"L":{"f":227,"i":129220139},"flags":15,"cn0":170,"P":1240768504,"D":{"f":62,"i":-3008},"lock":15,"sid":{"sat":26,"code":12}},{"L":{"f":3,"i":132939858},"flags":15,"cn0":156,"P":1276484851,"D":{"f":209,"i":2248},"lock":15,"sid":{"sat":34,"code":12}},{"L":{"f":27,"i":125154881},"flags":15,"cn0":188,"P":1201733957,"D":{"f":71,"i":-1302},"lock":15,"sid":{"sat":24,"code":12}}],"payload":"SAUvEAAAAAAyCEGD1C09dgSLBtVG+9utDw8UAyNmCEAwidgG25QIFtAPDwUDNYVmPnAQpwY6G/Sizw8PCgMQ0gdDPM0tByrb+gW0Dw8EA3QEKj/PlMIGq1cGE8sPDxUDH/3WRDPetwUpm/I2qw8PCQTv1S09ucoWBQlS/ErNDw8UBFYF/D7PSzwFz4sDBccPDwsEUWcIQGIVUwWvrQY0ww8PBQQB0wdDs2aVBT7/+wevDw8EBBrSlUWoOT8HMyT6nsgPDyMM+J/0SSu+swfjQPQ+qg8PGgzznBVMUoDsBwPICNGcDw8iDEUBoUdBtnUHG+r6R7wPDxgM","header":{"n_obs":65,"t":{"ns_residual":0,"wn":2098,"tow":271517000}},"crc":39593} +{"length":249,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":76,"i":134668536},"flags":15,"cn0":157,"P":1293083793,"D":{"f":109,"i":1323},"lock":15,"sid":{"sat":25,"code":12}},{"L":{"f":19,"i":121095545},"flags":15,"cn0":185,"P":1162756286,"D":{"f":34,"i":1613},"lock":15,"sid":{"sat":12,"code":12}},{"L":{"f":137,"i":124515742},"flags":15,"cn0":184,"P":1195596914,"D":{"f":207,"i":-291},"lock":15,"sid":{"sat":19,"code":12}},{"L":{"f":35,"i":124697853},"flags":15,"cn0":191,"P":1197345564,"D":{"f":19,"i":2387},"lock":15,"sid":{"sat":22,"code":12}},{"L":{"f":114,"i":93638765},"flags":15,"cn0":210,"P":1162756223,"D":{"f":185,"i":1246},"lock":15,"sid":{"sat":12,"code":13}},{"L":{"f":47,"i":116428971},"flags":15,"cn0":195,"P":1107784796,"D":{"f":110,"i":-1028},"lock":15,"sid":{"sat":12,"code":14}},{"L":{"f":10,"i":132471762},"flags":15,"cn0":192,"P":1260426824,"D":{"f":45,"i":1087},"lock":15,"sid":{"sat":25,"code":14}},{"L":{"f":170,"i":125419595},"flags":15,"cn0":189,"P":1193327714,"D":{"f":57,"i":1048},"lock":15,"sid":{"sat":11,"code":14}},{"L":{"f":216,"i":118418900},"flags":15,"cn0":204,"P":1126718248,"D":{"f":57,"i":-1745},"lock":15,"sid":{"sat":24,"code":14}},{"L":{"f":69,"i":143330505},"flags":15,"cn0":159,"P":1363744397,"D":{"f":129,"i":-3173},"lock":15,"sid":{"sat":31,"code":14}},{"L":{"f":207,"i":144530325},"flags":15,"cn0":154,"P":1375160329,"D":{"f":250,"i":-2140},"lock":15,"sid":{"sat":33,"code":14}},{"L":{"f":142,"i":101504335},"flags":15,"cn0":200,"P":1260426805,"D":{"f":224,"i":832},"lock":15,"sid":{"sat":25,"code":20}},{"L":{"f":241,"i":90736623},"flags":15,"cn0":215,"P":1126718792,"D":{"f":77,"i":-1337},"lock":15,"sid":{"sat":24,"code":20}},{"L":{"f":249,"i":96100706},"flags":15,"cn0":193,"P":1193327525,"D":{"f":33,"i":803},"lock":15,"sid":{"sat":11,"code":20}}],"payload":"SAUvEAAAAAAyCEKR5BJN+OAGCEwrBW2dDw8ZDL5ATkV5xTcHE00GIrkPDwwMclxDR571aweJ3f7PuA8PEwwcC15H/bxuByNTCRO/Dw8WDH9ATkVt0JQFct4EudIPDwwNXHQHQquQ8AYv/Ptuww8PDA5IliBL0lvlBwo/BC3ADw8ZDmK8IEdLwHkHqhgEOb0PDwsOKFsoQ9TtDgfYL/k5zA8PGA6NFklRyQyLCEWb84GfDw8fDglI91GVW50Iz6T3+poPDyEONZYgS0/VDAaOQAPgyA8PGRRIXShD74doBfHH+k3XDw8YFKW7IEdiYboF+SMDIcEPDwsU","header":{"n_obs":66,"t":{"ns_residual":0,"wn":2098,"tow":271517000}},"crc":25537} +{"length":62,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":99,"i":109824714},"flags":15,"cn0":174,"P":1363744465,"D":{"f":83,"i":-2430},"lock":15,"sid":{"sat":31,"code":20}},{"L":{"f":176,"i":89211839},"flags":15,"cn0":206,"P":1107784643,"D":{"f":210,"i":-787},"lock":15,"sid":{"sat":12,"code":20}},{"L":{"f":101,"i":110744086},"flags":15,"cn0":169,"P":1375160272,"D":{"f":39,"i":-1639},"lock":15,"sid":{"sat":33,"code":20}}],"payload":"SAUvEAAAAAAyCEPRFklRysqLBmOC9lOuDw8fFMNzB0K/Q1EFsO380s4PDwwU0Ef3URbSmQZlmfknqQ8PIRQ=","header":{"n_obs":67,"t":{"ns_residual":0,"wn":2098,"tow":271517000}},"crc":2209} +{"length":9,"l2ca_bias":0,"preamble":85,"l2p_bias":0,"sender":22963,"msg_type":117,"payload":"/wAAAAAAAAAA","l1ca_bias":0,"mask":255,"crc":49809,"l1p_bias":0} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MghIBS8QAAAAAAE=","wn":2098,"tow":271517000,"crc":46727} +{"length":16,"flags":17,"ns":999999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EUgFLxDkBwMZAxg6/smaOw==","day":25,"tow":271517000,"year":2020,"crc":13689,"minutes":24,"month":3,"seconds":58} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.196869277824238,"preamble":85,"sender":22963,"msg_type":522,"payload":"SAUvEMxU4uBl6kJA+RujHFaSXsCd12UGZjIxwAECWwQPBg==","lat":37.83123408366518,"tow":271517000,"h_accuracy":513,"crc":59819,"lon":-122.28650585106506} +{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"SAUvEPr/////////8f////EAygIPAg==","n":-6,"d":-15,"tow":271517000,"h_accuracy":241,"crc":16617,"e":-1} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"SAUvEJsAhwBMAEgAcgAG","tow":271517000,"crc":27506,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"SAUvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271517000,"h_accuracy":0,"crc":53373,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"SAUvEP//","tow":271517000,"crc":10178} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":51,"text":"GLO L2OF ME 1 [+1341ms] low CN0 too long, dropping","preamble":85,"sender":22963,"msg_type":1025,"payload":"BkdMTyBMMk9GIE1FIDEgWysxMzQxbXNdIGxvdyBDTjAgdG9vIGxvbmcsIGRyb3BwaW5n","crc":694,"level":6} +{"length":4,"flags":2147616000,"preamble":85,"sender":22963,"msg_type":65535,"payload":"AAUCgA==","crc":40942} +{"length":24,"z":3890655.0240602265,"preamble":85,"sender":22963,"msg_type":72,"payload":"UO0a3iqORMHK1UJhIkRQwc9nFIPvrk1B","crc":2168,"x":-2694229.735196747,"y":-4264073.519704292} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgisBS8QAAAAAAE=","wn":2098,"tow":271517100,"crc":28159} +{"length":16,"flags":17,"ns":99999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EawFLxDkBwMZAxg7/uD1BQ==","day":25,"tow":271517100,"year":2020,"crc":13131,"minutes":24,"month":3,"seconds":59} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.18717393164276,"preamble":85,"sender":22963,"msg_type":522,"payload":"rAUvEMPzAOFl6kJAkAl9HFaSXsDEEXuh6i8xwAECWwQPBg==","lat":37.831234097924174,"tow":271517100,"h_accuracy":513,"crc":26122,"lon":-122.28650581560782} +{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"rAUvEAEAAAAJAAAACgAAAPEAygIPAg==","n":1,"d":10,"tow":271517100,"h_accuracy":241,"crc":64871,"e":9} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"rAUvEJsAhwBMAEgAcgAG","tow":271517100,"crc":5071,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"rAUvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271517100,"h_accuracy":0,"crc":29278,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"rAUvEP//","tow":271517100,"crc":43611} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MggQBi8QAAAAAAE=","wn":2098,"tow":271517200,"crc":23338} +{"length":16,"flags":17,"ns":199999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"ERAGLxDkBwMZAxg7/sHrCw==","day":25,"tow":271517200,"year":2020,"crc":62935,"minutes":24,"month":3,"seconds":59} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.173092531103435,"preamble":85,"sender":22963,"msg_type":522,"payload":"EAYvECTPPuFl6kJAWTRlHFaSXsBoRcjKTywxwAECWwQPBg==","lat":37.83123412672856,"tow":271517200,"h_accuracy":513,"crc":43760,"lon":-122.28650579341173} +{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"EAYvEA0AAAACAAAA5f////EAygIPAg==","n":13,"d":-27,"tow":271517200,"h_accuracy":241,"crc":9297,"e":2} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"EAYvEJsAhwBMAEgAcgAG","tow":271517200,"crc":42263,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"EAYvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271517200,"h_accuracy":0,"crc":35065,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"EAYvEP//","tow":271517200,"crc":46278} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"Mgh0Bi8QAAAAAAE=","wn":2098,"tow":271517300,"crc":16352} +{"length":16,"flags":17,"ns":299999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EXQGLxDkBwMZAxg7/qLhEQ==","day":25,"tow":271517300,"year":2020,"crc":18419,"minutes":24,"month":3,"seconds":59} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.16298699658093,"preamble":85,"sender":22963,"msg_type":522,"payload":"dAYvELP0Q+Fl6kJAeilAHFaSXsAF/QuEuSkxwAECWwQPBg==","lat":37.831234129125185,"tow":271517300,"h_accuracy":513,"crc":5562,"lon":-122.28650575891325} +{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"dAYvEPj///8FAAAAFwAAAPEAygIPAg==","n":-8,"d":23,"tow":271517300,"h_accuracy":241,"crc":14928,"e":5} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"dAYvEJsAhwBMAEgAcgAG","tow":271517300,"crc":35256,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"dAYvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271517300,"h_accuracy":0,"crc":36943,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"dAYvEP//","tow":271517300,"crc":60799} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":237,"states":[{"cn0":213,"mesid":{"sat":5,"code":0}},{"cn0":180,"mesid":{"sat":21,"code":0}},{"cn0":189,"mesid":{"sat":2,"code":0}},{"cn0":168,"mesid":{"sat":31,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":218,"mesid":{"sat":25,"code":0}},{"cn0":207,"mesid":{"sat":12,"code":0}},{"cn0":213,"mesid":{"sat":29,"code":0}},{"cn0":206,"mesid":{"sat":18,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":205,"mesid":{"sat":131,"code":2}},{"cn0":204,"mesid":{"sat":25,"code":1}},{"cn0":187,"mesid":{"sat":12,"code":1}},{"cn0":153,"mesid":{"sat":31,"code":1}},{"cn0":197,"mesid":{"sat":18,"code":1}},{"cn0":195,"mesid":{"sat":29,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":194,"mesid":{"sat":5,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":213,"mesid":{"sat":100,"code":3}},{"cn0":179,"mesid":{"sat":98,"code":3}},{"cn0":173,"mesid":{"sat":102,"code":3}},{"cn0":207,"mesid":{"sat":101,"code":3}},{"cn0":207,"mesid":{"sat":93,"code":3}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":180,"mesid":{"sat":106,"code":3}},{"cn0":203,"mesid":{"sat":104,"code":3}},{"cn0":171,"mesid":{"sat":98,"code":4}},{"cn0":205,"mesid":{"sat":102,"code":4}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":199,"mesid":{"sat":100,"code":4}},{"cn0":196,"mesid":{"sat":101,"code":4}},{"cn0":188,"mesid":{"sat":104,"code":4}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":175,"mesid":{"sat":106,"code":4}},{"cn0":199,"mesid":{"sat":35,"code":12}},{"cn0":170,"mesid":{"sat":26,"code":12}},{"cn0":155,"mesid":{"sat":34,"code":12}},{"cn0":188,"mesid":{"sat":24,"code":12}},{"cn0":157,"mesid":{"sat":25,"code":12}},{"cn0":185,"mesid":{"sat":12,"code":12}},{"cn0":184,"mesid":{"sat":19,"code":12}},{"cn0":191,"mesid":{"sat":22,"code":12}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":209,"mesid":{"sat":12,"code":13}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":195,"mesid":{"sat":12,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":192,"mesid":{"sat":25,"code":14}},{"cn0":189,"mesid":{"sat":11,"code":14}},{"cn0":204,"mesid":{"sat":24,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":159,"mesid":{"sat":31,"code":14}},{"cn0":154,"mesid":{"sat":33,"code":14}},{"cn0":200,"mesid":{"sat":25,"code":20}},{"cn0":215,"mesid":{"sat":24,"code":20}},{"cn0":193,"mesid":{"sat":11,"code":20}},{"cn0":174,"mesid":{"sat":31,"code":20}},{"cn0":206,"mesid":{"sat":12,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":169,"mesid":{"sat":33,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}}],"preamble":85,"sender":22963,"msg_type":97,"payload":"BQDVFQC0AgC9HwCoAAAAAAAAGQDaDADPHQDVEgDOAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwLNGQHMDAG7HwGZEgHFHQHDAAAABQHCAAAAAAAAAAAAAAAAZAPVYgOzZgOtZQPPXQPPAAAAagO0aAPLYgSrZgTNAAAAZATHZQTEaAS8AAAAagSvIwzHGgyqIgybGAy8GQydDAy5Ewy4Fgy/AAAADA3RAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADA7DAAAAGQ7ACw69GA7MAAAAHw6fIQ6aGRTIGBTXCxTBHxSuDBTOAAAAIRSpAAAA","crc":847} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgjYBi8QAAAAAAE=","wn":2098,"tow":271517400,"crc":37566} +{"length":16,"flags":17,"ns":399999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EdgGLxDkBwMZAxg7/oPXFw==","day":25,"tow":271517400,"year":2020,"crc":19457,"minutes":24,"month":3,"seconds":59} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.15550189117272,"preamble":85,"sender":22963,"msg_type":522,"payload":"2AYvEFldbuFl6kJAQ5sfHFaSXsCQDdH4zicxwAECWwQPBg==","lat":37.831234148873314,"tow":271517400,"h_accuracy":513,"crc":25589,"lon":-122.28650572859355} +{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"2AYvEAcAAAD/////FQAAAPEAygIPAg==","n":7,"d":21,"tow":271517400,"h_accuracy":241,"crc":18934,"e":-1} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"2AYvEJsAhwBMAEgAcgAG","tow":271517400,"crc":64585,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"2AYvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271517400,"h_accuracy":0,"crc":47509,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"2AYvEP//","tow":271517400,"crc":1972} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":9,"l2ca_bias":0,"preamble":85,"l2p_bias":0,"sender":22963,"msg_type":117,"payload":"/wAAAAAAAAAA","l1ca_bias":0,"mask":255,"crc":49809,"l1p_bias":0} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"Mgg8By8QAAAAAAE=","wn":2098,"tow":271517500,"crc":3605} +{"length":16,"flags":17,"ns":499999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"ETwHLxDkBwMZAxg7/mTNHQ==","day":25,"tow":271517500,"year":2020,"crc":10126,"minutes":24,"month":3,"seconds":59} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.143758765913297,"preamble":85,"sender":22963,"msg_type":522,"payload":"PAcvEDcXjuFl6kJAZC8SHFaSXsBmHN5fzSQxwAECWwQPBg==","lat":37.831234163646904,"tow":271517500,"h_accuracy":513,"crc":4015,"lon":-122.28650571609393} +{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"PAcvEAEAAAD1////5f////EAygIPAg==","n":1,"d":-27,"tow":271517500,"h_accuracy":241,"crc":42456,"e":-11} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"PAcvEJsAhwBMAEgAcgAG","tow":271517500,"crc":65429,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"PAcvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271517500,"h_accuracy":0,"crc":52800,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"PAcvEP//","tow":271517500,"crc":8316} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgigBy8QAAAAAAE=","wn":2098,"tow":271517600,"crc":22345} +{"length":16,"flags":17,"ns":599999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EaAHLxDkBwMZAxg7/kXDIw==","day":25,"tow":271517600,"year":2020,"crc":50309,"minutes":24,"month":3,"seconds":59} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.13693878404386,"preamble":85,"sender":22963,"msg_type":522,"payload":"oAcvEGhGtuFl6kJAwAcAHFaSXsC7BY9rDiMxwAECWwQPBg==","lat":37.831234182359196,"tow":271517600,"h_accuracy":513,"crc":13050,"lon":-122.28650569918591} +{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"oAcvEAMAAAD9////AgAAAPEAygIPAg==","n":3,"d":2,"tow":271517600,"h_accuracy":241,"crc":19995,"e":-3} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"oAcvEJsAhwBMAEgAcgAG","tow":271517600,"crc":23034,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"oAcvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271517600,"h_accuracy":0,"crc":12401,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"oAcvEP//","tow":271517600,"crc":58683} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MggECC8QAAAAAAE=","wn":2098,"tow":271517700,"crc":2602} +{"length":16,"flags":17,"ns":699999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EQQILxDkBwMZAxg7/ia5KQ==","day":25,"tow":271517700,"year":2020,"crc":35263,"minutes":24,"month":3,"seconds":59} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.127575054042886,"preamble":85,"sender":22963,"msg_type":522,"payload":"BAgvEDle5uFl6kJAz1ncG1aSXsBO5jzCqCAxwAECWwQPBg==","lat":37.83123420475426,"tow":271517700,"h_accuracy":513,"crc":20060,"lon":-122.28650566595682} +{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"BAgvEAAAAAAGAAAA6v////EAygIPAg==","n":0,"d":-22,"tow":271517700,"h_accuracy":241,"crc":30651,"e":6} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"BAgvEJsAhwBMAEgAcgAG","tow":271517700,"crc":36899,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"BAgvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271517700,"h_accuracy":0,"crc":33278,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"BAgvEP//","tow":271517700,"crc":26443} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"message_type":28,"length":34,"data":[83,49,75,190,0,32,74,228,24,189,98,25,146,80,214,168,204,60,1,100,66,87,31,228,10,128,48],"preamble":85,"sender":22963,"msg_type":30583,"payload":"gwIfBy8QHFMxS74AIErkGL1iGZJQ1qjMPAFkQlcf5AqAMA==","tow":271517471,"crc":11304,"sid":{"sat":131,"code":2}} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MghoCC8QAAAAAAE=","wn":2098,"tow":271517800,"crc":18207} +{"length":16,"flags":17,"ns":799999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EWgILxDkBwMZAxg7/gevLw==","day":25,"tow":271517800,"year":2020,"crc":64176,"minutes":24,"month":3,"seconds":59} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.117424736018553,"preamble":85,"sender":22963,"msg_type":522,"payload":"aAgvEN3d+OFl6kJAixa8G1aSXsDt8CiMDx4xwAECWwQPBg==","lat":37.83123421336834,"tow":271517800,"h_accuracy":513,"crc":33093,"lon":-122.28650563590979} +{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"aAgvEPz///8JAAAA/P////EAygIPAg==","n":-4,"d":-4,"tow":271517800,"h_accuracy":241,"crc":25145,"e":9} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"aAgvEJsAhwBMAEgAcgAG","tow":271517800,"crc":39881,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"aAgvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271517800,"h_accuracy":0,"crc":51179,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"aAgvEP//","tow":271517800,"crc":13232} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":237,"states":[{"cn0":213,"mesid":{"sat":5,"code":0}},{"cn0":181,"mesid":{"sat":21,"code":0}},{"cn0":189,"mesid":{"sat":2,"code":0}},{"cn0":168,"mesid":{"sat":31,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":218,"mesid":{"sat":25,"code":0}},{"cn0":207,"mesid":{"sat":12,"code":0}},{"cn0":213,"mesid":{"sat":29,"code":0}},{"cn0":206,"mesid":{"sat":18,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":205,"mesid":{"sat":131,"code":2}},{"cn0":203,"mesid":{"sat":25,"code":1}},{"cn0":187,"mesid":{"sat":12,"code":1}},{"cn0":152,"mesid":{"sat":31,"code":1}},{"cn0":196,"mesid":{"sat":18,"code":1}},{"cn0":194,"mesid":{"sat":29,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":193,"mesid":{"sat":5,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":213,"mesid":{"sat":11,"code":3}},{"cn0":179,"mesid":{"sat":9,"code":3}},{"cn0":173,"mesid":{"sat":20,"code":3}},{"cn0":208,"mesid":{"sat":5,"code":3}},{"cn0":208,"mesid":{"sat":10,"code":3}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":180,"mesid":{"sat":4,"code":3}},{"cn0":203,"mesid":{"sat":21,"code":3}},{"cn0":171,"mesid":{"sat":9,"code":4}},{"cn0":205,"mesid":{"sat":20,"code":4}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":199,"mesid":{"sat":11,"code":4}},{"cn0":196,"mesid":{"sat":5,"code":4}},{"cn0":188,"mesid":{"sat":0,"code":4}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":175,"mesid":{"sat":4,"code":4}},{"cn0":200,"mesid":{"sat":35,"code":12}},{"cn0":170,"mesid":{"sat":26,"code":12}},{"cn0":156,"mesid":{"sat":34,"code":12}},{"cn0":188,"mesid":{"sat":24,"code":12}},{"cn0":158,"mesid":{"sat":25,"code":12}},{"cn0":185,"mesid":{"sat":12,"code":12}},{"cn0":184,"mesid":{"sat":19,"code":12}},{"cn0":191,"mesid":{"sat":22,"code":12}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":209,"mesid":{"sat":12,"code":13}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":195,"mesid":{"sat":12,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":191,"mesid":{"sat":25,"code":14}},{"cn0":189,"mesid":{"sat":11,"code":14}},{"cn0":204,"mesid":{"sat":24,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":159,"mesid":{"sat":31,"code":14}},{"cn0":153,"mesid":{"sat":33,"code":14}},{"cn0":200,"mesid":{"sat":25,"code":20}},{"cn0":215,"mesid":{"sat":24,"code":20}},{"cn0":194,"mesid":{"sat":11,"code":20}},{"cn0":174,"mesid":{"sat":31,"code":20}},{"cn0":206,"mesid":{"sat":12,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":170,"mesid":{"sat":33,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}}],"preamble":85,"sender":22963,"msg_type":97,"payload":"BQDVFQC1AgC9HwCoAAAAAAAAGQDaDADPHQDVEgDOAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwLNGQHLDAG7HwGYEgHEHQHCAAAABQHBAAAAAAAAAAAAAAAACwPVCQOzFAOtBQPQCgPQAAAABAO0FQPLCQSrFATNAAAACwTHBQTEAAS8AAAABASvIwzIGgyqIgycGAy8GQyeDAy5Ewy4Fgy/AAAADA3RAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADA7DAAAAGQ6/Cw69GA7MAAAAHw6fIQ6ZGRTIGBTXCxTCHxSuDBTOAAAAIRSqAAAA","crc":13563} +{"length":132,"preamble":85,"sender":22963,"msg_type":151,"payload":"AgAaHQUAKzUMAFEtFQB9GRkAbUYaAKEBHQChNx8AlQ4EAxUWBQMyIQYDTggJA18OCgNxKQsDmCUMA6oDEwMiBxQDDDEVA5UlDAyUKRMMIyAUDA8CFgxDJBgMgiMZDJ0OGgxnFSIMjhEjDCItCw6LMgwODzwYDmw2GQ6XKR8OVREhDiAP","crc":53239,"azel":[{"el":29,"az":26,"sid":{"sat":2,"code":0}},{"el":53,"az":43,"sid":{"sat":5,"code":0}},{"el":45,"az":81,"sid":{"sat":12,"code":0}},{"el":25,"az":125,"sid":{"sat":21,"code":0}},{"el":70,"az":109,"sid":{"sat":25,"code":0}},{"el":1,"az":161,"sid":{"sat":26,"code":0}},{"el":55,"az":161,"sid":{"sat":29,"code":0}},{"el":14,"az":149,"sid":{"sat":31,"code":0}},{"el":22,"az":21,"sid":{"sat":4,"code":3}},{"el":33,"az":50,"sid":{"sat":5,"code":3}},{"el":8,"az":78,"sid":{"sat":6,"code":3}},{"el":14,"az":95,"sid":{"sat":9,"code":3}},{"el":41,"az":113,"sid":{"sat":10,"code":3}},{"el":37,"az":152,"sid":{"sat":11,"code":3}},{"el":3,"az":170,"sid":{"sat":12,"code":3}},{"el":7,"az":34,"sid":{"sat":19,"code":3}},{"el":49,"az":12,"sid":{"sat":20,"code":3}},{"el":37,"az":149,"sid":{"sat":21,"code":3}},{"el":41,"az":148,"sid":{"sat":12,"code":12}},{"el":32,"az":35,"sid":{"sat":19,"code":12}},{"el":2,"az":15,"sid":{"sat":20,"code":12}},{"el":36,"az":67,"sid":{"sat":22,"code":12}},{"el":35,"az":130,"sid":{"sat":24,"code":12}},{"el":14,"az":157,"sid":{"sat":25,"code":12}},{"el":21,"az":103,"sid":{"sat":26,"code":12}},{"el":17,"az":142,"sid":{"sat":34,"code":12}},{"el":45,"az":34,"sid":{"sat":35,"code":12}},{"el":50,"az":139,"sid":{"sat":11,"code":14}},{"el":60,"az":15,"sid":{"sat":12,"code":14}},{"el":54,"az":108,"sid":{"sat":24,"code":14}},{"el":41,"az":151,"sid":{"sat":25,"code":14}},{"el":17,"az":85,"sid":{"sat":31,"code":14}},{"el":15,"az":32,"sid":{"sat":33,"code":14}}]} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgjMCC8QAAAAAAE=","wn":2098,"tow":271517900,"crc":50110} +{"length":16,"flags":17,"ns":899999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EcwILxDkBwMZAxg7/uikNQ==","day":25,"tow":271517900,"year":2020,"crc":19333,"minutes":24,"month":3,"seconds":59} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.10475916134165,"preamble":85,"sender":22963,"msg_type":522,"payload":"zAgvED+4I+Jl6kJAuoSiG1aSXsA16xN/0RoxwAECWwQPBg==","lat":37.83123423332335,"tow":271517900,"h_accuracy":513,"crc":24335,"lon":-122.28650561209625} +{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"zAgvEAcAAAAEAAAACAAAAPEAygIPAg==","n":7,"d":8,"tow":271517900,"h_accuracy":241,"crc":35946,"e":4} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"zAgvEJsAhwBMAEgAcgAG","tow":271517900,"crc":51581,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"zAgvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271517900,"h_accuracy":0,"crc":45202,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"zAgvEP//","tow":271517900,"crc":54329} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":249,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":253,"i":110564762},"flags":15,"cn0":213,"P":1051988607,"D":{"f":60,"i":-186},"lock":15,"sid":{"sat":5,"code":0}},{"L":{"f":187,"i":121818218},"flags":15,"cn0":181,"P":1159061826,"D":{"f":32,"i":2172},"lock":15,"sid":{"sat":21,"code":0}},{"L":{"f":110,"i":123345763},"flags":15,"cn0":189,"P":1173595539,"D":{"f":110,"i":-2481},"lock":15,"sid":{"sat":2,"code":0}},{"L":{"f":230,"i":128739565},"flags":15,"cn0":168,"P":1224916309,"D":{"f":221,"i":-398},"lock":15,"sid":{"sat":31,"code":0}},{"L":{"f":124,"i":107826683},"flags":15,"cn0":218,"P":1025936705,"D":{"f":224,"i":-1130},"lock":15,"sid":{"sat":25,"code":0}},{"L":{"f":191,"i":114107648},"flags":15,"cn0":207,"P":1085698073,"D":{"f":198,"i":-2971},"lock":15,"sid":{"sat":12,"code":0}},{"L":{"f":52,"i":110756455},"flags":15,"cn0":213,"P":1053812550,"D":{"f":72,"i":1483},"lock":15,"sid":{"sat":29,"code":0}},{"L":{"f":209,"i":84020812},"flags":15,"cn0":204,"P":1025936749,"D":{"f":140,"i":-881},"lock":15,"sid":{"sat":25,"code":1}},{"L":{"f":155,"i":88915082},"flags":15,"cn0":187,"P":1085698001,"D":{"f":187,"i":-2314},"lock":15,"sid":{"sat":12,"code":1}},{"L":{"f":71,"i":100316547},"flags":15,"cn0":151,"P":1224916183,"D":{"f":76,"i":-310},"lock":15,"sid":{"sat":31,"code":1}},{"L":{"f":39,"i":86303733},"flags":15,"cn0":194,"P":1053812468,"D":{"f":20,"i":1156},"lock":15,"sid":{"sat":29,"code":1}},{"L":{"f":11,"i":86154390},"flags":15,"cn0":193,"P":1051988537,"D":{"f":169,"i":-146},"lock":15,"sid":{"sat":5,"code":1}},{"L":{"f":46,"i":112932940},"flags":15,"cn0":213,"P":1056692690,"D":{"f":83,"i":1163},"lock":15,"sid":{"sat":11,"code":3}},{"L":{"f":237,"i":123350745},"flags":15,"cn0":179,"P":1154981348,"D":{"f":133,"i":-4410},"lock":15,"sid":{"sat":9,"code":3}}],"payload":"MAkvEAAAAAAyCEB/ErQ+mhWXBv1G/zzVDw8FAELhFUVqzEIHu3wIILUPDxUAk6XzRWMbWgduT/ZuvQ8PAgBVvQJJ7WisB+Zy/t2oDw8fAEGNJj37TW0GfJb74NoPDxkAGXC2QAAlzQa/ZfTGzw8PDABG588+ZwKaBjTLBUjVDw8dAG2NJj1MDgIF0Y/8jMwPDxkB0W+2QIq8TAWb9va7uw8PDAHXvAJJg7X6BUfK/kyXDw8fAfTmzz714yQFJ4QEFMIPDx0BORK0PpacIgULbv+pwQ8PBQHS2fs+TDi7Bi6LBFPVDw8LA+Sd10TZLloH7cbuhbMPDwkD","header":{"n_obs":64,"t":{"ns_residual":0,"wn":2098,"tow":271518000}},"crc":54063} +{"length":249,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":130,"i":109775152},"flags":15,"cn0":174,"P":1026425017,"D":{"f":118,"i":-1211},"lock":15,"sid":{"sat":20,"code":3}},{"L":{"f":71,"i":114851995},"flags":15,"cn0":208,"P":1074271718,"D":{"f":45,"i":2195},"lock":15,"sid":{"sat":5,"code":3}},{"L":{"f":165,"i":111615060},"flags":15,"cn0":208,"P":1046934737,"D":{"f":43,"i":-3047},"lock":15,"sid":{"sat":10,"code":3}},{"L":{"f":7,"i":120443489},"flags":15,"cn0":180,"P":1124598266,"D":{"f":191,"i":-1320},"lock":15,"sid":{"sat":4,"code":3}},{"L":{"f":130,"i":113413752},"flags":15,"cn0":203,"P":1059703104,"D":{"f":100,"i":1621},"lock":15,"sid":{"sat":21,"code":3}},{"L":{"f":181,"i":95939478},"flags":15,"cn0":171,"P":1154981471,"D":{"f":106,"i":-3429},"lock":15,"sid":{"sat":9,"code":4}},{"L":{"f":229,"i":85380709},"flags":15,"cn0":205,"P":1026425379,"D":{"f":66,"i":-942},"lock":15,"sid":{"sat":20,"code":4}},{"L":{"f":149,"i":87836741},"flags":15,"cn0":199,"P":1056692948,"D":{"f":65,"i":905},"lock":15,"sid":{"sat":11,"code":4}},{"L":{"f":117,"i":89329333},"flags":15,"cn0":195,"P":1074271999,"D":{"f":230,"i":1706},"lock":15,"sid":{"sat":5,"code":4}},{"L":{"f":118,"i":93678259},"flags":15,"cn0":175,"P":1124598557,"D":{"f":172,"i":-1026},"lock":15,"sid":{"sat":4,"code":4}},{"L":{"f":247,"i":121585538},"flags":15,"cn0":200,"P":1167460944,"D":{"f":172,"i":-1501},"lock":15,"sid":{"sat":35,"code":12}},{"L":{"f":78,"i":129223147},"flags":15,"cn0":170,"P":1240797383,"D":{"f":111,"i":-3009},"lock":15,"sid":{"sat":26,"code":12}},{"L":{"f":208,"i":132937608},"flags":15,"cn0":156,"P":1276463243,"D":{"f":177,"i":2246},"lock":15,"sid":{"sat":34,"code":12}},{"L":{"f":195,"i":125156183},"flags":15,"cn0":188,"P":1201746472,"D":{"f":152,"i":-1305},"lock":15,"sid":{"sat":24,"code":12}}],"payload":"MAkvEAAAAAAyCEG5AC49MAmLBoJF+3auDw8UA+YVCECbgNgGR5MILdAPDwUD0fRmPlQcpwalGfQr0A8PCgP6AQhDYdItBwfY+r+0Dw8EA0DJKT94jsIGglUGZMsPDxUDX57XRJbrtwW1m/Jqqw8PCQQjAi49Zc4WBeVS/ELNDw8UBNTa+z5FSDwFlYkDQccPDwsE/xYIQLUOUwV1qgbmww8PBQQdAwhDs2qVBXb++6yvDw8EBFAKlkWCPz8H9yP6rMgPDyMMxxD1SevJswdOP/Rvqg8PGgyLSBVMiHfsB9DGCLGcDw8iDCgyoUdXu3UHw+f6mLwPDxgM","header":{"n_obs":65,"t":{"ns_residual":0,"wn":2098,"tow":271518000}},"crc":24468} +{"length":249,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":162,"i":134667211},"flags":15,"cn0":158,"P":1293071091,"D":{"f":84,"i":1324},"lock":15,"sid":{"sat":25,"code":12}},{"L":{"f":185,"i":121093932},"flags":15,"cn0":185,"P":1162740804,"D":{"f":77,"i":1610},"lock":15,"sid":{"sat":12,"code":12}},{"L":{"f":94,"i":124516032},"flags":15,"cn0":184,"P":1195599701,"D":{"f":190,"i":-292},"lock":15,"sid":{"sat":19,"code":12}},{"L":{"f":148,"i":124695465},"flags":15,"cn0":191,"P":1197322634,"D":{"f":47,"i":2386},"lock":15,"sid":{"sat":22,"code":12}},{"L":{"f":175,"i":93637518},"flags":15,"cn0":209,"P":1162740742,"D":{"f":122,"i":1244},"lock":15,"sid":{"sat":12,"code":13}},{"L":{"f":143,"i":116429997},"flags":15,"cn0":194,"P":1107794557,"D":{"f":160,"i":-1030},"lock":15,"sid":{"sat":12,"code":14}},{"L":{"f":18,"i":132470674},"flags":15,"cn0":191,"P":1260416468,"D":{"f":244,"i":1084},"lock":15,"sid":{"sat":25,"code":14}},{"L":{"f":244,"i":125418547},"flags":15,"cn0":189,"P":1193317740,"D":{"f":200,"i":1045},"lock":15,"sid":{"sat":11,"code":14}},{"L":{"f":55,"i":118420645},"flags":15,"cn0":204,"P":1126734848,"D":{"f":169,"i":-1747},"lock":15,"sid":{"sat":24,"code":14}},{"L":{"f":10,"i":143333677},"flags":15,"cn0":159,"P":1363774569,"D":{"f":157,"i":-3175},"lock":15,"sid":{"sat":31,"code":14}},{"L":{"f":241,"i":144532465},"flags":15,"cn0":153,"P":1375180737,"D":{"f":112,"i":-2140},"lock":15,"sid":{"sat":33,"code":14}},{"L":{"f":237,"i":101503501},"flags":15,"cn0":200,"P":1260416454,"D":{"f":167,"i":831},"lock":15,"sid":{"sat":25,"code":20}},{"L":{"f":139,"i":90737960},"flags":15,"cn0":215,"P":1126735388,"D":{"f":149,"i":-1339},"lock":15,"sid":{"sat":24,"code":20}},{"L":{"f":51,"i":96099904},"flags":15,"cn0":194,"P":1193317557,"D":{"f":148,"i":801},"lock":15,"sid":{"sat":11,"code":20}}],"payload":"MAkvEAAAAAAyCELzshJNy9sGCKIsBVSeDw8ZDEQETkUsvzcHuUoGTbkPDwwMVWdDR8D2awde3P6+uA8PEwyKsV1HqbNuB5RSCS+/Dw8WDAYETkWOy5QFr9wEetEPDwwNfZoHQq2U8AaP+vugwg8PDA7UbSBLklflBxI8BPS/Dw8ZDmyVIEczvHkH9BUEyL0PDwsOAJwoQ6X0Dgc3LfmpzA8PGA5pjElRLRmLCAqZ852fDw8fDsGX91HxY50I8aT3cJkPDyEOxm0gSw3SDAbtPwOnyA8PGRQcnihDKI1oBYvF+pXXDw8YFLWUIEdAXroFMyEDlMIPDwsU","header":{"n_obs":66,"t":{"ns_residual":0,"wn":2098,"tow":271518000}},"crc":16304} +{"length":62,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":184,"i":109827144},"flags":15,"cn0":174,"P":1363774649,"D":{"f":205,"i":-2433},"lock":15,"sid":{"sat":31,"code":20}},{"L":{"f":34,"i":89212626},"flags":15,"cn0":206,"P":1107794408,"D":{"f":133,"i":-789},"lock":15,"sid":{"sat":12,"code":20}},{"L":{"f":56,"i":110745726},"flags":15,"cn0":169,"P":1375180631,"D":{"f":42,"i":-1640},"lock":15,"sid":{"sat":33,"code":20}}],"payload":"MAkvEAAAAAAyCEO5jElRSNSLBrh/9s2uDw8fFOiZB0LSRlEFIuv8hc4PDwwUV5f3UX7YmQY4mPkqqQ8PIRQ=","header":{"n_obs":67,"t":{"ns_residual":0,"wn":2098,"tow":271518000}},"crc":37685} +{"length":9,"l2ca_bias":0,"preamble":85,"l2p_bias":0,"sender":22963,"msg_type":117,"payload":"/wAAAAAAAAAA","l1ca_bias":0,"mask":255,"crc":49809,"l1p_bias":0} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MggwCS8QAAAAAAE=","wn":2098,"tow":271518000,"crc":9492} +{"length":16,"flags":17,"ns":999999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"ETAJLxDkBwMZAxg7/smaOw==","day":25,"tow":271518000,"year":2020,"crc":22324,"minutes":24,"month":3,"seconds":59} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.09136842793551,"preamble":85,"sender":22963,"msg_type":522,"payload":"MAkvEJwmSOJl6kJAw7GlG1aSXsC13tnrYxcxwAECWwQPBg==","lat":37.831234250287906,"tow":271518000,"h_accuracy":513,"crc":58537,"lon":-122.28650561505405} +{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"MAkvEAEAAAD3////AwAAAPEAygIPAg==","n":1,"d":3,"tow":271518000,"h_accuracy":241,"crc":55399,"e":-9} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"MAkvEJsAhwBMAEgAcgAG","tow":271518000,"crc":41838,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"MAkvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271518000,"h_accuracy":0,"crc":9378,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"MAkvEP//","tow":271518000,"crc":58423} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":4,"flags":2147616000,"preamble":85,"sender":22963,"msg_type":65535,"payload":"AAUCgA==","crc":40942} +{"length":24,"z":3890655.0240602265,"preamble":85,"sender":22963,"msg_type":72,"payload":"UO0a3iqORMHK1UJhIkRQwc9nFIPvrk1B","crc":2168,"x":-2694229.735196747,"y":-4264073.519704292} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"bWFpbgAAAAAAAAAAAAAAAAAAAAAAAAx1AAA=","name":"main\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":47991,"stack_free":29964,"cpu":0} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"aWRsZQAAAAAAAAAAAAAAAAAAAAAZAHwAAAA=","name":"idle\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":5686,"stack_free":124,"cpu":25} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"cnBtc2cAAAAAAAAAAAAAAAAAAAABACwOAAA=","name":"rpmsg\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":9530,"stack_free":3628,"cpu":1} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"U0JQAAAAAAAAAAAAAAAAAAAAAAAAAPz/AAA=","name":"SBP\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":51784,"stack_free":65532,"cpu":0} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"TkFQAAAAAAAAAAAAAAAAAAAAAAAAAASAAAA=","name":"NAP\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":33651,"stack_free":32772,"cpu":0} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"bWFuYWdlIFBWAAAAAAAAAAAAAAAAACQEAAA=","name":"manage PV\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":29877,"stack_free":1060,"cpu":0} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"SU1VAAAAAAAAAAAAAAAAAAAAAAAAAPQHAAA=","name":"IMU\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":14252,"stack_free":2036,"cpu":0} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"SU1VIGF1eAAAAAAAAAAAAAAAAAAAAEwIAAA=","name":"IMU aux\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":18976,"stack_free":2124,"cpu":0} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"bmRiAAAAAAAAAAAAAAAAAAAAAAAAAFAMAAA=","name":"ndb\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":26120,"stack_free":3152,"cpu":0} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"TkFQIFRyYWNraW5nAAAAAAAAAAAvAdR3AAA=","name":"NAP Tracking\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":60931,"stack_free":30676,"cpu":303} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"ZGVjb2RlAAAAAAAAAAAAAAAAAAAIANQGAAA=","name":"decode\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":40082,"stack_free":1748,"cpu":8} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"bWFuYWdlIGFjcQAAAAAAAAAAAADyAaR3AAA=","name":"manage acq\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":23507,"stack_free":30628,"cpu":498} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"c3lzdGVtIG1vbml0b3IAAAAAAAAAACwGAAA=","name":"system monitor\u0000\u0000\u0000\u0000\u0000\u0000","crc":58531,"stack_free":1580,"cpu":0} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"V2F0Y2hkb2cAAAAAAAAAAAAAAAAAAOQDAAA=","name":"Watchdog\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":44438,"stack_free":996,"cpu":0} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"c3RhcmxpbmcAAAAAAAAAAAAAAACWAPz/AAA=","name":"starling\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":61599,"stack_free":65532,"cpu":150} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"bWVfY2FsY19wdnQAAAAAAAAAAAAKAIwjAAA=","name":"me_calc_pvt\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":11833,"stack_free":9100,"cpu":10} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"UFBTAAAAAAAAAAAAAAAAAAAAAAAAAEgHAAA=","name":"PPS\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":38576,"stack_free":1864,"cpu":0} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"c3BlY3RydW0gYW5hbHl6ZXIAAAAAANQPAAA=","name":"spectrum analyzer\u0000\u0000\u0000","crc":50933,"stack_free":4052,"cpu":0} +{"cpu_vint":988,"length":10,"fe_temperature":5641,"preamble":85,"sender":22963,"cpu_vaux":1780,"msg_type":181,"payload":"7BbcA/QGURUJFg==","dev_vin":5868,"crc":34043,"cpu_temperature":5457} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgiUCS8QAAAAAAE=","wn":2098,"tow":271518100,"crc":41397} +{"length":16,"flags":17,"ns":99999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EZQJLxDkBwMZAxkA/uD1BQ==","day":25,"tow":271518100,"year":2020,"crc":29935,"minutes":25,"month":3,"seconds":0} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.075819486441098,"preamble":85,"sender":22963,"msg_type":522,"payload":"lAkvEIMTYeJl6kJAh1eoG1aSXsD+qebnaBMxwAECWwQPBg==","lat":37.8312342618947,"tow":271518100,"h_accuracy":513,"crc":30374,"lon":-122.28650561751975} +{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"lAkvEAAAAAD+////9v////EAygIPAg==","n":0,"d":-10,"tow":271518100,"h_accuracy":241,"crc":35811,"e":-2} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"lAkvEJsAhwBMAEgAcgAG","tow":271518100,"crc":61914,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"lAkvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271518100,"h_accuracy":0,"crc":21467,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"lAkvEP//","tow":271518100,"crc":958} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"Mgj4CS8QAAAAAAE=","wn":2098,"tow":271518200,"crc":60544} +{"length":16,"flags":17,"ns":199999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EfgJLxDkBwMZAxkA/sHrCw==","day":25,"tow":271518200,"year":2020,"crc":3905,"minutes":25,"month":3,"seconds":0} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.063664144835034,"preamble":85,"sender":22963,"msg_type":522,"payload":"+AkvEEUEj+Jl6kJAnNSkG1aSXsCJ/htLTBAxwAECWwQPBg==","lat":37.831234283287394,"tow":271518200,"h_accuracy":513,"crc":44104,"lon":-122.2865056142495} +{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"+AkvEAUAAAD/////AwAAAPEAygIPAg==","n":5,"d":3,"tow":271518200,"h_accuracy":241,"crc":62151,"e":-1} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"+AkvEJsAhwBMAEgAcgAG","tow":271518200,"crc":64048,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"+AkvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271518200,"h_accuracy":0,"crc":5582,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"+AkvEP//","tow":271518200,"crc":22341} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MghcCi8QAAAAAAE=","wn":2098,"tow":271518300,"crc":41044} +{"length":16,"flags":17,"ns":299999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EVwKLxDkBwMZAxkA/qLhEQ==","day":25,"tow":271518300,"year":2020,"crc":20189,"minutes":25,"month":3,"seconds":0} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.05004004186135,"preamble":85,"sender":22963,"msg_type":522,"payload":"XAovEOyKveJl6kJAv8+WG1aSXsD0SJdszwwxwAECWwQPBg==","lat":37.831234304952744,"tow":271518300,"h_accuracy":513,"crc":58391,"lon":-122.2865056011933} +{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"XAovEAQAAAD+////9f////EAygIPAg==","n":4,"d":-11,"tow":271518300,"h_accuracy":241,"crc":38364,"e":-2} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"XAovEJsAhwBMAEgAcgAG","tow":271518300,"crc":9511,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"XAovEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271518300,"h_accuracy":0,"crc":3212,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"XAovEP//","tow":271518300,"crc":24094} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":237,"states":[{"cn0":213,"mesid":{"sat":5,"code":0}},{"cn0":180,"mesid":{"sat":21,"code":0}},{"cn0":188,"mesid":{"sat":2,"code":0}},{"cn0":168,"mesid":{"sat":31,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":218,"mesid":{"sat":25,"code":0}},{"cn0":207,"mesid":{"sat":12,"code":0}},{"cn0":213,"mesid":{"sat":29,"code":0}},{"cn0":206,"mesid":{"sat":18,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":205,"mesid":{"sat":131,"code":2}},{"cn0":203,"mesid":{"sat":25,"code":1}},{"cn0":187,"mesid":{"sat":12,"code":1}},{"cn0":152,"mesid":{"sat":31,"code":1}},{"cn0":196,"mesid":{"sat":18,"code":1}},{"cn0":195,"mesid":{"sat":29,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":193,"mesid":{"sat":5,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":213,"mesid":{"sat":100,"code":3}},{"cn0":178,"mesid":{"sat":98,"code":3}},{"cn0":173,"mesid":{"sat":102,"code":3}},{"cn0":208,"mesid":{"sat":101,"code":3}},{"cn0":208,"mesid":{"sat":93,"code":3}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":180,"mesid":{"sat":106,"code":3}},{"cn0":203,"mesid":{"sat":104,"code":3}},{"cn0":170,"mesid":{"sat":98,"code":4}},{"cn0":205,"mesid":{"sat":102,"code":4}},{"cn0":76,"mesid":{"sat":93,"code":4}},{"cn0":199,"mesid":{"sat":100,"code":4}},{"cn0":195,"mesid":{"sat":101,"code":4}},{"cn0":188,"mesid":{"sat":104,"code":4}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":175,"mesid":{"sat":106,"code":4}},{"cn0":200,"mesid":{"sat":35,"code":12}},{"cn0":170,"mesid":{"sat":26,"code":12}},{"cn0":156,"mesid":{"sat":34,"code":12}},{"cn0":188,"mesid":{"sat":24,"code":12}},{"cn0":158,"mesid":{"sat":25,"code":12}},{"cn0":185,"mesid":{"sat":12,"code":12}},{"cn0":185,"mesid":{"sat":19,"code":12}},{"cn0":191,"mesid":{"sat":22,"code":12}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":209,"mesid":{"sat":12,"code":13}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":194,"mesid":{"sat":12,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":191,"mesid":{"sat":25,"code":14}},{"cn0":188,"mesid":{"sat":11,"code":14}},{"cn0":204,"mesid":{"sat":24,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":158,"mesid":{"sat":31,"code":14}},{"cn0":154,"mesid":{"sat":33,"code":14}},{"cn0":201,"mesid":{"sat":25,"code":20}},{"cn0":215,"mesid":{"sat":24,"code":20}},{"cn0":194,"mesid":{"sat":11,"code":20}},{"cn0":174,"mesid":{"sat":31,"code":20}},{"cn0":206,"mesid":{"sat":12,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":169,"mesid":{"sat":33,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}}],"preamble":85,"sender":22963,"msg_type":97,"payload":"BQDVFQC0AgC8HwCoAAAAAAAAGQDaDADPHQDVEgDOAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwLNGQHLDAG7HwGYEgHEHQHDAAAABQHBAAAAAAAAAAAAAAAAZAPVYgOyZgOtZQPQXQPQAAAAagO0aAPLYgSqZgTNXQRMZATHZQTDaAS8AAAAagSvIwzIGgyqIgycGAy8GQyeDAy5Ewy5Fgy/AAAADA3RAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADA7CAAAAGQ6/Cw68GA7MAAAAHw6eIQ6aGRTJGBTXCxTCHxSuDBTOAAAAIRSpAAAA","crc":36601} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgjACi8QAAAAAAE=","wn":2098,"tow":271518400,"crc":63752} +{"length":16,"flags":17,"ns":399999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EcAKLxDkBwMZAxkA/oPXFw==","day":25,"tow":271518400,"year":2020,"crc":38577,"minutes":25,"month":3,"seconds":0} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.03741516153949,"preamble":85,"sender":22963,"msg_type":522,"payload":"wAovEJTxyeJl6kJA6vKEG1aSXsDJLz8KlAkxwAECWwQPBg==","lat":37.83123431072741,"tow":271518400,"h_accuracy":513,"crc":47221,"lon":-122.28650558455743} +{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"wAovEPn///8BAAAA6f////EAygIPAg==","n":-7,"d":-23,"tow":271518400,"h_accuracy":241,"crc":60020,"e":1} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"wAovEJsAhwBMAEgAcgAG","tow":271518400,"crc":33608,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"wAovEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271518400,"h_accuracy":0,"crc":62141,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"wAovEP//","tow":271518400,"crc":39769} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":9,"l2ca_bias":0,"preamble":85,"l2p_bias":0,"sender":22963,"msg_type":117,"payload":"/wAAAAAAAAAA","l1ca_bias":0,"mask":255,"crc":49809,"l1p_bias":0} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MggkCy8QAAAAAAE=","wn":2098,"tow":271518500,"crc":26019} +{"length":16,"flags":17,"ns":499999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"ESQLLxDkBwMZAxkA/mTNHQ==","day":25,"tow":271518500,"year":2020,"crc":64830,"minutes":25,"month":3,"seconds":0} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.02737604776153,"preamble":85,"sender":22963,"msg_type":522,"payload":"JAsvEIGC7eJl6kJA56VgG1aSXsBa1N0dAgcxwAECWwQPBg==","lat":37.831234327289174,"tow":271518500,"h_accuracy":513,"crc":50724,"lon":-122.28650555074965} +{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"JAsvEP3///8LAAAAEQAAAPEAygIPAg==","n":-3,"d":17,"tow":271518500,"h_accuracy":241,"crc":48210,"e":11} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"JAsvEJsAhwBMAEgAcgAG","tow":271518500,"crc":32916,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"JAsvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271518500,"h_accuracy":0,"crc":34152,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"JAsvEP//","tow":271518500,"crc":48273} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgiICy8QAAAAAAE=","wn":2098,"tow":271518600,"crc":51453} +{"length":16,"flags":17,"ns":599999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EYgLLxDkBwMZAxkA/kXDIw==","day":25,"tow":271518600,"year":2020,"crc":52651,"minutes":25,"month":3,"seconds":0} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.01340717795645,"preamble":85,"sender":22963,"msg_type":522,"payload":"iAsvEAZIBONl6kJA0nRMG1aSXsDH2h6nbgMxwAECWwQPBg==","lat":37.83123433789301,"tow":271518600,"h_accuracy":513,"crc":7575,"lon":-122.28650553194464} +{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"iAsvEAUAAAD+////8v////EAygIPAg==","n":5,"d":-14,"tow":271518600,"h_accuracy":241,"crc":55593,"e":-2} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"iAsvEJsAhwBMAEgAcgAG","tow":271518600,"crc":62821,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"iAsvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271518600,"h_accuracy":0,"crc":44210,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"iAsvEP//","tow":271518600,"crc":22106} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgjsCy8QAAAAAAE=","wn":2098,"tow":271518700,"crc":44087} +{"length":16,"flags":17,"ns":699999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EewLLxDkBwMZAxkA/ia5KQ==","day":25,"tow":271518700,"year":2020,"crc":26087,"minutes":25,"month":3,"seconds":0} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-16.998094817547297,"preamble":85,"sender":22963,"msg_type":522,"payload":"7AsvEK+2LONl6kJA1z08G1aSXsA4rFckg/8wwAECWwQPBg==","lat":37.83123435672075,"tow":271518700,"h_accuracy":513,"crc":9755,"lon":-122.28650551684346} +{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"7AsvEAUAAAAAAAAA2v////EAygIPAg==","n":5,"d":-38,"tow":271518700,"h_accuracy":241,"crc":58411,"e":0} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"7AsvEJsAhwBMAEgAcgAG","tow":271518700,"crc":55754,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"7AsvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271518700,"h_accuracy":0,"crc":46084,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"7AsvEP//","tow":271518700,"crc":4067} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"message_type":1,"length":34,"data":[255,255,255,255,0,0,0,0,0,0,0,0,0,0,0,0,40,64,0,0,0,0,0,0,0,0,16],"preamble":85,"sender":22963,"msg_type":30583,"payload":"gwINCy8QAf////8AAAAAAAAAAAAAAAAoQAAAAAAAAAAAEA==","tow":271518477,"crc":32160,"sid":{"sat":131,"code":2}} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MghQDC8QAAAAAAE=","wn":2098,"tow":271518800,"crc":38287} +{"length":16,"flags":17,"ns":799999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EVAMLxDkBwMZAxkA/gevLw==","day":25,"tow":271518800,"year":2020,"crc":22143,"minutes":25,"month":3,"seconds":0} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-16.99376208320342,"preamble":85,"sender":22963,"msg_type":522,"payload":"UAwvEGb3SuNl6kJASec4G1aSXsAQXR8xZ/4wwAECWwQPBg==","lat":37.8312343708083,"tow":271518800,"h_accuracy":513,"crc":21182,"lon":-122.28650551373461} +{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"UAwvEAwAAAD4////JQAAAPEAygIPAg==","n":12,"d":37,"tow":271518800,"h_accuracy":241,"crc":62971,"e":-8} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"UAwvEJsAhwBMAEgAcgAG","tow":271518800,"crc":37559,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"UAwvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271518800,"h_accuracy":0,"crc":10520,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"UAwvEP//","tow":271518800,"crc":39032} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":51,"text":"GLO L2OF ME 1 [+1452ms] low CN0 too long, dropping","preamble":85,"sender":22963,"msg_type":1025,"payload":"BkdMTyBMMk9GIE1FIDEgWysxNDUybXNdIGxvdyBDTjAgdG9vIGxvbmcsIGRyb3BwaW5n","crc":18653,"level":6} +{"length":237,"states":[{"cn0":213,"mesid":{"sat":5,"code":0}},{"cn0":181,"mesid":{"sat":21,"code":0}},{"cn0":188,"mesid":{"sat":2,"code":0}},{"cn0":168,"mesid":{"sat":31,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":219,"mesid":{"sat":25,"code":0}},{"cn0":208,"mesid":{"sat":12,"code":0}},{"cn0":213,"mesid":{"sat":29,"code":0}},{"cn0":206,"mesid":{"sat":18,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":205,"mesid":{"sat":131,"code":2}},{"cn0":204,"mesid":{"sat":25,"code":1}},{"cn0":187,"mesid":{"sat":12,"code":1}},{"cn0":152,"mesid":{"sat":31,"code":1}},{"cn0":197,"mesid":{"sat":18,"code":1}},{"cn0":194,"mesid":{"sat":29,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":193,"mesid":{"sat":5,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":213,"mesid":{"sat":11,"code":3}},{"cn0":178,"mesid":{"sat":9,"code":3}},{"cn0":174,"mesid":{"sat":20,"code":3}},{"cn0":208,"mesid":{"sat":5,"code":3}},{"cn0":208,"mesid":{"sat":10,"code":3}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":180,"mesid":{"sat":4,"code":3}},{"cn0":203,"mesid":{"sat":21,"code":3}},{"cn0":170,"mesid":{"sat":9,"code":4}},{"cn0":205,"mesid":{"sat":20,"code":4}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":199,"mesid":{"sat":11,"code":4}},{"cn0":196,"mesid":{"sat":5,"code":4}},{"cn0":189,"mesid":{"sat":0,"code":4}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":175,"mesid":{"sat":4,"code":4}},{"cn0":200,"mesid":{"sat":35,"code":12}},{"cn0":170,"mesid":{"sat":26,"code":12}},{"cn0":156,"mesid":{"sat":34,"code":12}},{"cn0":188,"mesid":{"sat":24,"code":12}},{"cn0":158,"mesid":{"sat":25,"code":12}},{"cn0":185,"mesid":{"sat":12,"code":12}},{"cn0":184,"mesid":{"sat":19,"code":12}},{"cn0":191,"mesid":{"sat":22,"code":12}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":209,"mesid":{"sat":12,"code":13}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":195,"mesid":{"sat":12,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":192,"mesid":{"sat":25,"code":14}},{"cn0":189,"mesid":{"sat":11,"code":14}},{"cn0":204,"mesid":{"sat":24,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":159,"mesid":{"sat":31,"code":14}},{"cn0":153,"mesid":{"sat":33,"code":14}},{"cn0":201,"mesid":{"sat":25,"code":20}},{"cn0":215,"mesid":{"sat":24,"code":20}},{"cn0":194,"mesid":{"sat":11,"code":20}},{"cn0":174,"mesid":{"sat":31,"code":20}},{"cn0":206,"mesid":{"sat":12,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":169,"mesid":{"sat":33,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}}],"preamble":85,"sender":22963,"msg_type":97,"payload":"BQDVFQC1AgC8HwCoAAAAAAAAGQDbDADQHQDVEgDOAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwLNGQHMDAG7HwGYEgHFHQHCAAAABQHBAAAAAAAAAAAAAAAACwPVCQOyFAOuBQPQCgPQAAAABAO0FQPLCQSqFATNAAAACwTHBQTEAAS9AAAABASvIwzIGgyqIgycGAy8GQyeDAy5Ewy4Fgy/AAAADA3RAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADA7DAAAAGQ7ACw69GA7MAAAAHw6fIQ6ZGRTJGBTXCxTCHxSuDBTOAAAAIRSpAAAA","crc":19038} +{"length":132,"preamble":85,"sender":22963,"msg_type":151,"payload":"AgAaHQUAKzUMAFEtFQB9GRkAbUYaAKEBHQChNx8AlQ4EAxUWBQMyIQYDTggJA18OCgNxKQsDmCUMA6oDEwMiBxQDDDEVA5UlDAyUKRMMIyAUDA8CFgxDJBgMgiMZDJ0OGgxnFSIMjhEjDCItCw6LMgwODzwYDmw2GQ6XKR8OVREhDiAP","crc":53239,"azel":[{"el":29,"az":26,"sid":{"sat":2,"code":0}},{"el":53,"az":43,"sid":{"sat":5,"code":0}},{"el":45,"az":81,"sid":{"sat":12,"code":0}},{"el":25,"az":125,"sid":{"sat":21,"code":0}},{"el":70,"az":109,"sid":{"sat":25,"code":0}},{"el":1,"az":161,"sid":{"sat":26,"code":0}},{"el":55,"az":161,"sid":{"sat":29,"code":0}},{"el":14,"az":149,"sid":{"sat":31,"code":0}},{"el":22,"az":21,"sid":{"sat":4,"code":3}},{"el":33,"az":50,"sid":{"sat":5,"code":3}},{"el":8,"az":78,"sid":{"sat":6,"code":3}},{"el":14,"az":95,"sid":{"sat":9,"code":3}},{"el":41,"az":113,"sid":{"sat":10,"code":3}},{"el":37,"az":152,"sid":{"sat":11,"code":3}},{"el":3,"az":170,"sid":{"sat":12,"code":3}},{"el":7,"az":34,"sid":{"sat":19,"code":3}},{"el":49,"az":12,"sid":{"sat":20,"code":3}},{"el":37,"az":149,"sid":{"sat":21,"code":3}},{"el":41,"az":148,"sid":{"sat":12,"code":12}},{"el":32,"az":35,"sid":{"sat":19,"code":12}},{"el":2,"az":15,"sid":{"sat":20,"code":12}},{"el":36,"az":67,"sid":{"sat":22,"code":12}},{"el":35,"az":130,"sid":{"sat":24,"code":12}},{"el":14,"az":157,"sid":{"sat":25,"code":12}},{"el":21,"az":103,"sid":{"sat":26,"code":12}},{"el":17,"az":142,"sid":{"sat":34,"code":12}},{"el":45,"az":34,"sid":{"sat":35,"code":12}},{"el":50,"az":139,"sid":{"sat":11,"code":14}},{"el":60,"az":15,"sid":{"sat":12,"code":14}},{"el":54,"az":108,"sid":{"sat":24,"code":14}},{"el":41,"az":151,"sid":{"sat":25,"code":14}},{"el":17,"az":85,"sid":{"sat":31,"code":14}},{"el":15,"az":32,"sid":{"sat":33,"code":14}}]} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"Mgi0DC8QAAAAAAE=","wn":2098,"tow":271518900,"crc":20215} +{"length":16,"flags":17,"ns":899999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EbQMLxDkBwMZAxkA/uikNQ==","day":25,"tow":271518900,"year":2020,"crc":52547,"minutes":25,"month":3,"seconds":0} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-16.987710978081008,"preamble":85,"sender":22963,"msg_type":522,"payload":"tAwvEJgXQeNl6kJAS5QuG1aSXsATwmyg2vwwwAECWwQPBg==","lat":37.83123436621025,"tow":271518900,"h_accuracy":513,"crc":21647,"lon":-122.28650550411946} +{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"tAwvEPH///8DAAAA/f////EAygIPAg==","n":-15,"d":-3,"tow":271518900,"h_accuracy":241,"crc":44540,"e":3} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"tAwvEJsAhwBMAEgAcgAG","tow":271518900,"crc":59914,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"tAwvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271518900,"h_accuracy":0,"crc":35643,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"tAwvEP//","tow":271518900,"crc":5601} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":249,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":124,"i":110564947},"flags":15,"cn0":214,"P":1051990363,"D":{"f":231,"i":-187},"lock":15,"sid":{"sat":5,"code":0}},{"L":{"f":49,"i":121816045},"flags":15,"cn0":181,"P":1159041145,"D":{"f":39,"i":2172},"lock":15,"sid":{"sat":21,"code":0}},{"L":{"f":222,"i":123348241},"flags":15,"cn0":188,"P":1173619115,"D":{"f":31,"i":-2480},"lock":15,"sid":{"sat":2,"code":0}},{"L":{"f":60,"i":128739962},"flags":15,"cn0":169,"P":1224920070,"D":{"f":18,"i":-397},"lock":15,"sid":{"sat":31,"code":0}},{"L":{"f":114,"i":107827811},"flags":15,"cn0":219,"P":1025947441,"D":{"f":30,"i":-1130},"lock":15,"sid":{"sat":25,"code":0}},{"L":{"f":127,"i":114110616},"flags":15,"cn0":208,"P":1085726317,"D":{"f":216,"i":-2970},"lock":15,"sid":{"sat":12,"code":0}},{"L":{"f":209,"i":110754970},"flags":15,"cn0":213,"P":1053798424,"D":{"f":210,"i":1482},"lock":15,"sid":{"sat":29,"code":0}},{"L":{"f":191,"i":84021691},"flags":15,"cn0":204,"P":1025947477,"D":{"f":143,"i":-881},"lock":15,"sid":{"sat":25,"code":1}},{"L":{"f":36,"i":88917395},"flags":15,"cn0":187,"P":1085726233,"D":{"f":250,"i":-2313},"lock":15,"sid":{"sat":12,"code":1}},{"L":{"f":33,"i":100316856},"flags":15,"cn0":152,"P":1224919961,"D":{"f":72,"i":-311},"lock":15,"sid":{"sat":31,"code":1}},{"L":{"f":128,"i":86302576},"flags":15,"cn0":194,"P":1053798343,"D":{"f":233,"i":1155},"lock":15,"sid":{"sat":29,"code":1}},{"L":{"f":205,"i":86154533},"flags":15,"cn0":193,"P":1051990297,"D":{"f":91,"i":-146},"lock":15,"sid":{"sat":5,"code":1}},{"L":{"f":229,"i":112931775},"flags":15,"cn0":213,"P":1056681789,"D":{"f":100,"i":1162},"lock":15,"sid":{"sat":11,"code":3}},{"L":{"f":208,"i":123355152},"flags":15,"cn0":178,"P":1155022597,"D":{"f":252,"i":-4409},"lock":15,"sid":{"sat":9,"code":3}}],"payload":"GA0vEAAAAAAyCEBbGbQ+UxaXBnxF/+fWDw8FAHmQFUXtw0IHMXwIJ7UPDxUAqwH0RRElWgfeUPYfvA8PAgAGzAJJemqsBzxz/hKpDw8fADG3Jj1jUm0Gcpb7HtsPDxkAbd62QJgwzQZ/ZvTY0A8PDAAYsM8+mvyZBtHKBdLVDw8dAFW3Jj27EQIFv4/8j8wPDxkBGd62QJPFTAUk9/b6uw8PDAGZywJJuLb6BSHJ/kiYDw8fAcevzz5w3yQFgIME6cIPDx0BGRm0PiWdIgXNbv9bwQ8PBQE9r/s+vzO7BuWKBGTVDw8LAwU/2EQQQFoH0Mfu/LIPDwkD","header":{"n_obs":64,"t":{"ns_residual":0,"wn":2098,"tow":271519000}},"crc":20463} +{"length":249,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":92,"i":109776362},"flags":15,"cn0":174,"P":1026436346,"D":{"f":206,"i":-1212},"lock":15,"sid":{"sat":20,"code":3}},{"L":{"f":99,"i":114849798},"flags":15,"cn0":208,"P":1074251156,"D":{"f":123,"i":2195},"lock":15,"sid":{"sat":5,"code":3}},{"L":{"f":159,"i":111618105},"flags":15,"cn0":208,"P":1046963294,"D":{"f":121,"i":-3048},"lock":15,"sid":{"sat":10,"code":3}},{"L":{"f":175,"i":120444806},"flags":15,"cn0":180,"P":1124610595,"D":{"f":161,"i":-1318},"lock":15,"sid":{"sat":4,"code":3}},{"L":{"f":134,"i":113412129},"flags":15,"cn0":203,"P":1059687935,"D":{"f":192,"i":1619},"lock":15,"sid":{"sat":21,"code":3}},{"L":{"f":79,"i":95942906},"flags":15,"cn0":170,"P":1155022716,"D":{"f":225,"i":-3429},"lock":15,"sid":{"sat":9,"code":4}},{"L":{"f":231,"i":85381650},"flags":15,"cn0":205,"P":1026436695,"D":{"f":185,"i":-943},"lock":15,"sid":{"sat":20,"code":4}},{"L":{"f":6,"i":87835836},"flags":15,"cn0":199,"P":1056682059,"D":{"f":55,"i":904},"lock":15,"sid":{"sat":11,"code":4}},{"L":{"f":197,"i":89327624},"flags":15,"cn0":196,"P":1074251455,"D":{"f":39,"i":1707},"lock":15,"sid":{"sat":5,"code":4}},{"L":{"f":78,"i":93679284},"flags":15,"cn0":175,"P":1124610849,"D":{"f":134,"i":-1027},"lock":15,"sid":{"sat":4,"code":4}},{"L":{"f":213,"i":121587037},"flags":15,"cn0":200,"P":1167475327,"D":{"f":15,"i":-1501},"lock":15,"sid":{"sat":35,"code":12}},{"L":{"f":191,"i":129226154},"flags":15,"cn0":170,"P":1240826255,"D":{"f":14,"i":-3009},"lock":15,"sid":{"sat":26,"code":12}},{"L":{"f":177,"i":132935359},"flags":15,"cn0":156,"P":1276441652,"D":{"f":107,"i":2247},"lock":15,"sid":{"sat":34,"code":12}},{"L":{"f":223,"i":125157486},"flags":15,"cn0":188,"P":1201758982,"D":{"f":177,"i":-1305},"lock":15,"sid":{"sat":24,"code":12}}],"payload":"GA0vEAAAAAAyCEH6LC496g2LBlxE+86uDw8UA5TFB0AGeNgGY5MIe9APDwUDXmRnPjkopwafGPR50A8PCgMjMghDhtctB6/a+qG0Dw8EA/+NKT8hiMIGhlMGwMsPDxUDfD/YRPr4twVPm/Lhqg8PCQRXLi49EtIWBedR/LnNDw8UBEuw+z68RDwFBogDN8cPDwsEv8YHQAgIUwXFqwYnxA8PBQQhMwhDtG6VBU79+4avDw8EBH9ClkVdRT8H1SP6D8gPDyMMj4H1SarVswe/P/QOqg8PGgw09BRMv27sB7HHCGucDw8iDAZjoUduwHUH3+f6sbwPDxgM","header":{"n_obs":65,"t":{"ns_residual":0,"wn":2098,"tow":271519000}},"crc":19072} +{"length":249,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":122,"i":134665887},"flags":15,"cn0":158,"P":1293058386,"D":{"f":2,"i":1324},"lock":15,"sid":{"sat":25,"code":12}},{"L":{"f":118,"i":121092320},"flags":15,"cn0":185,"P":1162725327,"D":{"f":139,"i":1610},"lock":15,"sid":{"sat":12,"code":12}},{"L":{"f":195,"i":124516322},"flags":15,"cn0":184,"P":1195602483,"D":{"f":149,"i":-292},"lock":15,"sid":{"sat":19,"code":12}},{"L":{"f":85,"i":124693078},"flags":15,"cn0":192,"P":1197299722,"D":{"f":196,"i":2384},"lock":15,"sid":{"sat":22,"code":12}},{"L":{"f":248,"i":93636271},"flags":15,"cn0":209,"P":1162725252,"D":{"f":30,"i":1246},"lock":15,"sid":{"sat":12,"code":13}},{"L":{"f":4,"i":116431024},"flags":15,"cn0":195,"P":1107804323,"D":{"f":3,"i":-1030},"lock":15,"sid":{"sat":12,"code":14}},{"L":{"f":138,"i":132469586},"flags":15,"cn0":192,"P":1260406119,"D":{"f":96,"i":1086},"lock":15,"sid":{"sat":25,"code":14}},{"L":{"f":97,"i":125417500},"flags":15,"cn0":189,"P":1193307772,"D":{"f":86,"i":1047},"lock":15,"sid":{"sat":11,"code":14}},{"L":{"f":249,"i":118422389},"flags":15,"cn0":204,"P":1126751450,"D":{"f":142,"i":-1747},"lock":15,"sid":{"sat":24,"code":14}},{"L":{"f":221,"i":143336848},"flags":15,"cn0":159,"P":1363804745,"D":{"f":97,"i":-3171},"lock":15,"sid":{"sat":31,"code":14}},{"L":{"f":254,"i":144534605},"flags":15,"cn0":153,"P":1375201078,"D":{"f":110,"i":-2146},"lock":15,"sid":{"sat":33,"code":14}},{"L":{"f":159,"i":101502668},"flags":15,"cn0":201,"P":1260406102,"D":{"f":153,"i":832},"lock":15,"sid":{"sat":25,"code":20}},{"L":{"f":112,"i":90739297},"flags":15,"cn0":215,"P":1126751991,"D":{"f":158,"i":-1339},"lock":15,"sid":{"sat":24,"code":20}},{"L":{"f":130,"i":96099101},"flags":15,"cn0":194,"P":1193307589,"D":{"f":32,"i":801},"lock":15,"sid":{"sat":11,"code":20}}],"payload":"GA0vEAAAAAAyCEJSgRJNn9YGCHosBQKeDw8ZDM/HTUXguDcHdkoGi7kPDwwMM3JDR+L3awfD3P6VuA8PEwwKWF1HVqpuB1VQCcTADw8WDITHTUWvxpQF+N4EHtEPDwwNo8AHQrCY8AYE+vsDww8PDA5nRSBLUlPlB4o+BGDADw8ZDnxuIEccuHkHYRcEVr0PDwsO2twoQ3X7Dgf5LfmOzA8PGA5JAkpRkCWLCN2d82GfDw8fDjbn91FNbJ0I/p73bpkPDyEOVkUgS8zODAafQAOZyQ8PGRT33ihDYZJoBXDF+p7XDw8YFMVtIEcdW7oFgiEDIMIPDwsU","header":{"n_obs":66,"t":{"ns_residual":0,"wn":2098,"tow":271519000}},"crc":60303} +{"length":62,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":15,"i":109829575},"flags":15,"cn0":175,"P":1363804830,"D":{"f":83,"i":-2434},"lock":15,"sid":{"sat":31,"code":20}},{"L":{"f":165,"i":89213412},"flags":15,"cn0":206,"P":1107804175,"D":{"f":222,"i":-789},"lock":15,"sid":{"sat":12,"code":20}},{"L":{"f":0,"i":110747366},"flags":15,"cn0":169,"P":1375200992,"D":{"f":199,"i":-1642},"lock":15,"sid":{"sat":33,"code":20}}],"payload":"GA0vEAAAAAAyCEOeAkpRx92LBg9+9lOvDw8fFA/AB0LkSVEFpev83s4PDwwU4Ob3UebemQYAlvnHqQ8PIRQ=","header":{"n_obs":67,"t":{"ns_residual":0,"wn":2098,"tow":271519000}},"crc":985} +{"length":9,"l2ca_bias":0,"preamble":85,"l2p_bias":0,"sender":22963,"msg_type":117,"payload":"/wAAAAAAAAAA","l1ca_bias":0,"mask":255,"crc":49809,"l1p_bias":0} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MggYDS8QAAAAAAE=","wn":2098,"tow":271519000,"crc":42106} +{"length":16,"flags":17,"ns":999999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"ERgNLxDkBwMZAxkA/smaOw==","day":25,"tow":271519000,"year":2020,"crc":46449,"minutes":25,"month":3,"seconds":0} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-16.982003178874866,"preamble":85,"sender":22963,"msg_type":522,"payload":"GA0vEAlje+Nl6kJAOgYwG1aSXsDp1XGPZPswwAECWwQPBg==","lat":37.831234393355835,"tow":271519000,"h_accuracy":513,"crc":43720,"lon":-122.28650550546527} +{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"GA0vEAIAAAD/////+f////EAygIPAg==","n":2,"d":-7,"tow":271519000,"h_accuracy":241,"crc":29372,"e":-1} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"GA0vEJsAhwBMAEgAcgAG","tow":271519000,"crc":58522,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"GA0vEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271519000,"h_accuracy":0,"crc":30487,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"GA0vEP//","tow":271519000,"crc":21883} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":4,"flags":2147616000,"preamble":85,"sender":22963,"msg_type":65535,"payload":"AAUCgA==","crc":40942} +{"length":24,"z":3890655.0240602265,"preamble":85,"sender":22963,"msg_type":72,"payload":"UO0a3iqORMHK1UJhIkRQwc9nFIPvrk1B","crc":2168,"x":-2694229.735196747,"y":-4264073.519704292} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"Mgh8DS8QAAAAAAE=","wn":2098,"tow":271519100,"crc":49328} +{"length":16,"flags":17,"ns":99999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EXwNLxDkBwMZAxkB/uD1BQ==","day":25,"tow":271519100,"year":2020,"crc":59217,"minutes":25,"month":3,"seconds":1} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-16.98119539271124,"preamble":85,"sender":22963,"msg_type":522,"payload":"fA0vECNhp+Nl6kJAdlAeG1aSXsA/rgqfL/swwAECWwQPBg==","lat":37.83123441384148,"tow":271519100,"h_accuracy":513,"crc":31500,"lon":-122.28650548897153} +{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"fA0vEPn///8AAAAABQAAAPEAygIPAg==","n":-7,"d":5,"tow":271519100,"h_accuracy":241,"crc":63831,"e":0} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"fA0vEJsAhwBMAEgAcgAG","tow":271519100,"crc":51253,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"fA0vEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271519100,"h_accuracy":0,"crc":28577,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"fA0vEP//","tow":271519100,"crc":3266} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgjgDS8QAAAAAAE=","wn":2098,"tow":271519200,"crc":39404} +{"length":16,"flags":17,"ns":199999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EeANLxDkBwMZAxkB/sHrCw==","day":25,"tow":271519200,"year":2020,"crc":12666,"minutes":25,"month":3,"seconds":1} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-16.98951384880922,"preamble":85,"sender":22963,"msg_type":522,"payload":"4A0vEPsA6eNl6kJA5VAKG1aSXsAfk5PHUP0wwAECWwQPBg==","lat":37.831234444400216,"tow":271519200,"h_accuracy":513,"crc":40204,"lon":-122.28650547034665} +{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"4A0vEAMAAAAJAAAAHwAAAPEAygIPAg==","n":3,"d":31,"tow":271519200,"h_accuracy":241,"crc":47116,"e":9} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"4A0vEJsAhwBMAEgAcgAG","tow":271519200,"crc":28250,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"4A0vEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271519200,"h_accuracy":0,"crc":37264,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"4A0vEP//","tow":271519200,"crc":51589} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MghEDi8QAAAAAAE=","wn":2098,"tow":271519300,"crc":54584} +{"length":16,"flags":17,"ns":299999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EUQOLxDkBwMZAxkB/qLhEQ==","day":25,"tow":271519300,"year":2020,"crc":28902,"minutes":25,"month":3,"seconds":1} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-16.994783041243867,"preamble":85,"sender":22963,"msg_type":522,"payload":"RA4vEMWLMORl6kJANekGG1aSXsABwvQZqv4wwAECWwQPBg==","lat":37.831234477714624,"tow":271519300,"h_accuracy":513,"crc":58601,"lon":-122.28650546717547} +{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"RA4vEAcAAAD9/////v////EAygIPAg==","n":7,"d":-2,"tow":271519300,"h_accuracy":241,"crc":26583,"e":-3} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"RA4vEJsAhwBMAEgAcgAG","tow":271519300,"crc":45389,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"RA4vEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271519300,"h_accuracy":0,"crc":35026,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"RA4vEP//","tow":271519300,"crc":49374} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":237,"states":[{"cn0":214,"mesid":{"sat":5,"code":0}},{"cn0":182,"mesid":{"sat":21,"code":0}},{"cn0":189,"mesid":{"sat":2,"code":0}},{"cn0":169,"mesid":{"sat":31,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":219,"mesid":{"sat":25,"code":0}},{"cn0":209,"mesid":{"sat":12,"code":0}},{"cn0":214,"mesid":{"sat":29,"code":0}},{"cn0":207,"mesid":{"sat":18,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":206,"mesid":{"sat":131,"code":2}},{"cn0":204,"mesid":{"sat":25,"code":1}},{"cn0":187,"mesid":{"sat":12,"code":1}},{"cn0":152,"mesid":{"sat":31,"code":1}},{"cn0":196,"mesid":{"sat":18,"code":1}},{"cn0":195,"mesid":{"sat":29,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":194,"mesid":{"sat":5,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":213,"mesid":{"sat":100,"code":3}},{"cn0":178,"mesid":{"sat":98,"code":3}},{"cn0":174,"mesid":{"sat":102,"code":3}},{"cn0":208,"mesid":{"sat":101,"code":3}},{"cn0":208,"mesid":{"sat":93,"code":3}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":180,"mesid":{"sat":106,"code":3}},{"cn0":203,"mesid":{"sat":104,"code":3}},{"cn0":171,"mesid":{"sat":98,"code":4}},{"cn0":205,"mesid":{"sat":102,"code":4}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":199,"mesid":{"sat":100,"code":4}},{"cn0":196,"mesid":{"sat":101,"code":4}},{"cn0":189,"mesid":{"sat":104,"code":4}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":176,"mesid":{"sat":106,"code":4}},{"cn0":200,"mesid":{"sat":35,"code":12}},{"cn0":171,"mesid":{"sat":26,"code":12}},{"cn0":156,"mesid":{"sat":34,"code":12}},{"cn0":189,"mesid":{"sat":24,"code":12}},{"cn0":158,"mesid":{"sat":25,"code":12}},{"cn0":185,"mesid":{"sat":12,"code":12}},{"cn0":184,"mesid":{"sat":19,"code":12}},{"cn0":191,"mesid":{"sat":22,"code":12}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":209,"mesid":{"sat":12,"code":13}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":195,"mesid":{"sat":12,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":192,"mesid":{"sat":25,"code":14}},{"cn0":189,"mesid":{"sat":11,"code":14}},{"cn0":204,"mesid":{"sat":24,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":158,"mesid":{"sat":31,"code":14}},{"cn0":153,"mesid":{"sat":33,"code":14}},{"cn0":201,"mesid":{"sat":25,"code":20}},{"cn0":215,"mesid":{"sat":24,"code":20}},{"cn0":194,"mesid":{"sat":11,"code":20}},{"cn0":174,"mesid":{"sat":31,"code":20}},{"cn0":207,"mesid":{"sat":12,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":169,"mesid":{"sat":33,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}}],"preamble":85,"sender":22963,"msg_type":97,"payload":"BQDWFQC2AgC9HwCpAAAAAAAAGQDbDADRHQDWEgDPAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwLOGQHMDAG7HwGYEgHEHQHDAAAABQHCAAAAAAAAAAAAAAAAZAPVYgOyZgOuZQPQXQPQAAAAagO0aAPLYgSrZgTNAAAAZATHZQTEaAS9AAAAagSwIwzIGgyrIgycGAy9GQyeDAy5Ewy4Fgy/AAAADA3RAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADA7DAAAAGQ7ACw69GA7MAAAAHw6eIQ6ZGRTJGBTXCxTCHxSuDBTPAAAAIRSpAAAA","crc":28077} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgioDi8QAAAAAAE=","wn":2098,"tow":271519400,"crc":10175} +{"length":16,"flags":17,"ns":399999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EagOLxDkBwMZAxkB/oPXFw==","day":25,"tow":271519400,"year":2020,"crc":20765,"minutes":25,"month":3,"seconds":1} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-16.99616583851909,"preamble":85,"sender":22963,"msg_type":522,"payload":"qA4vEHkjhORl6kJAnMj0GlaSXsD41HG5BP8wwAECWwQPBg==","lat":37.83123451664046,"tow":271519400,"h_accuracy":513,"crc":54219,"lon":-122.28650545029308} +{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"qA4vEAwAAAD7////7f////EAygIPAg==","n":12,"d":-19,"tow":271519400,"h_accuracy":241,"crc":17524,"e":-5} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"qA4vEJsAhwBMAEgAcgAG","tow":271519400,"crc":61109,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"qA4vEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271519400,"h_accuracy":0,"crc":29778,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"qA4vEP//","tow":271519400,"crc":16389} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":9,"l2ca_bias":0,"preamble":85,"l2p_bias":0,"sender":22963,"msg_type":117,"payload":"/wAAAAAAAAAA","l1ca_bias":0,"mask":255,"crc":49809,"l1p_bias":0} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MggMDy8QAAAAAAE=","wn":2098,"tow":271519500,"crc":58573} +{"length":16,"flags":17,"ns":499999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EQwPLxDkBwMZAxkB/mTNHQ==","day":25,"tow":271519500,"year":2020,"crc":4251,"minutes":25,"month":3,"seconds":1} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.000573225405976,"preamble":85,"sender":22963,"msg_type":522,"payload":"DA8vEIF7quRl6kJAPFbdGlaSXsA1XyCRJQAxwAECWwQPBg==","lat":37.831234534495714,"tow":271519500,"h_accuracy":513,"crc":37823,"lon":-122.28650542845656} +{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"DA8vEPr///8BAAAA+v////EAygIPAg==","n":-6,"d":-6,"tow":271519500,"h_accuracy":241,"crc":60223,"e":1} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"DA8vEJsAhwBMAEgAcgAG","tow":271519500,"crc":51040,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"DA8vEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271519500,"h_accuracy":0,"crc":55005,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"DA8vEP//","tow":271519500,"crc":3549} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MghwDy8QAAAAAAE=","wn":2098,"tow":271519600,"crc":64006} +{"length":16,"flags":17,"ns":599999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EXAPLxDkBwMZAxkB/kXDIw==","day":25,"tow":271519600,"year":2020,"crc":4255,"minutes":25,"month":3,"seconds":1} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.009044016522083,"preamble":85,"sender":22963,"msg_type":522,"payload":"cA8vEN0PzuRl6kJA8v/FGlaSXsDUL2u1UAIxwAECWwQPBg==","lat":37.83123455106372,"tow":271519600,"h_accuracy":513,"crc":11019,"lon":-122.28650540672223} +{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"cA8vEPz////+////CwAAAPEAygIPAg==","n":-4,"d":11,"tow":271519600,"h_accuracy":241,"crc":54504,"e":-2} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"cA8vEJsAhwBMAEgAcgAG","tow":271519600,"crc":33280,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"cA8vEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271519600,"h_accuracy":0,"crc":11662,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"cA8vEP//","tow":271519600,"crc":17314} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"message_type":26,"length":34,"data":[34,4,72,30,64,178,3,144,21,0,168,13,96,122,3,200,30,64,242,6,144,28,128,168,5,80,0],"preamble":85,"sender":22963,"msg_type":30583,"payload":"gwLvDi8QGiIESB5AsgOQFQCoDWB6A8geQPIGkByAqAVQAA==","tow":271519471,"crc":47744,"sid":{"sat":131,"code":2}} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgjUDy8QAAAAAAE=","wn":2098,"tow":271519700,"crc":32423} +{"length":16,"flags":17,"ns":699999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EdQPLxDkBwMZAxkB/ia5KQ==","day":25,"tow":271519700,"year":2020,"crc":50888,"minutes":25,"month":3,"seconds":1} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.017999272723337,"preamble":85,"sender":22963,"msg_type":522,"payload":"1A8vEMJ3DOVl6kJA2CysGlaSXsDSsq+ZmwQxwAECWwQPBg==","lat":37.831234580123706,"tow":271519700,"h_accuracy":513,"crc":3980,"lon":-122.28650538267118} +{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"1A8vEP////8EAAAAFwAAAPEAygIPAg==","n":-1,"d":23,"tow":271519700,"h_accuracy":241,"crc":31580,"e":4} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"1A8vEJsAhwBMAEgAcgAG","tow":271519700,"crc":53428,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"1A8vEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271519700,"h_accuracy":0,"crc":23287,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"1A8vEP//","tow":271519700,"crc":42027} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"Mgg4EC8QAAAAAAE=","wn":2098,"tow":271519800,"crc":26710} +{"length":16,"flags":17,"ns":799999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"ETgQLxDkBwMZAxkB/gevLw==","day":25,"tow":271519800,"year":2020,"crc":48207,"minutes":25,"month":3,"seconds":1} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.025168688926406,"preamble":85,"sender":22963,"msg_type":522,"payload":"OBAvEE9QVOVl6kJASOqAGlaSXsB20od0cQYxwAECWwQPBg==","lat":37.83123461357956,"tow":271519800,"h_accuracy":513,"crc":52258,"lon":-122.28650534238216} +{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"OBAvEP////8RAAAACgAAAPEAygIPAg==","n":-1,"d":10,"tow":271519800,"h_accuracy":241,"crc":37753,"e":17} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"OBAvEJsAhwBMAEgAcgAG","tow":271519800,"crc":53974,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"OBAvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271519800,"h_accuracy":0,"crc":61004,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"OBAvEP//","tow":271519800,"crc":17747} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":237,"states":[{"cn0":214,"mesid":{"sat":5,"code":0}},{"cn0":181,"mesid":{"sat":21,"code":0}},{"cn0":188,"mesid":{"sat":2,"code":0}},{"cn0":168,"mesid":{"sat":31,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":219,"mesid":{"sat":25,"code":0}},{"cn0":208,"mesid":{"sat":12,"code":0}},{"cn0":213,"mesid":{"sat":29,"code":0}},{"cn0":207,"mesid":{"sat":18,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":206,"mesid":{"sat":131,"code":2}},{"cn0":204,"mesid":{"sat":25,"code":1}},{"cn0":188,"mesid":{"sat":12,"code":1}},{"cn0":153,"mesid":{"sat":31,"code":1}},{"cn0":197,"mesid":{"sat":18,"code":1}},{"cn0":195,"mesid":{"sat":29,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":194,"mesid":{"sat":5,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":214,"mesid":{"sat":11,"code":3}},{"cn0":178,"mesid":{"sat":9,"code":3}},{"cn0":174,"mesid":{"sat":20,"code":3}},{"cn0":208,"mesid":{"sat":5,"code":3}},{"cn0":208,"mesid":{"sat":10,"code":3}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":180,"mesid":{"sat":4,"code":3}},{"cn0":203,"mesid":{"sat":21,"code":3}},{"cn0":171,"mesid":{"sat":9,"code":4}},{"cn0":205,"mesid":{"sat":20,"code":4}},{"cn0":73,"mesid":{"sat":10,"code":4}},{"cn0":199,"mesid":{"sat":11,"code":4}},{"cn0":196,"mesid":{"sat":5,"code":4}},{"cn0":189,"mesid":{"sat":0,"code":4}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":175,"mesid":{"sat":4,"code":4}},{"cn0":200,"mesid":{"sat":35,"code":12}},{"cn0":171,"mesid":{"sat":26,"code":12}},{"cn0":157,"mesid":{"sat":34,"code":12}},{"cn0":188,"mesid":{"sat":24,"code":12}},{"cn0":158,"mesid":{"sat":25,"code":12}},{"cn0":185,"mesid":{"sat":12,"code":12}},{"cn0":184,"mesid":{"sat":19,"code":12}},{"cn0":191,"mesid":{"sat":22,"code":12}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":210,"mesid":{"sat":12,"code":13}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":195,"mesid":{"sat":12,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":192,"mesid":{"sat":25,"code":14}},{"cn0":189,"mesid":{"sat":11,"code":14}},{"cn0":204,"mesid":{"sat":24,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":159,"mesid":{"sat":31,"code":14}},{"cn0":153,"mesid":{"sat":33,"code":14}},{"cn0":201,"mesid":{"sat":25,"code":20}},{"cn0":215,"mesid":{"sat":24,"code":20}},{"cn0":194,"mesid":{"sat":11,"code":20}},{"cn0":174,"mesid":{"sat":31,"code":20}},{"cn0":206,"mesid":{"sat":12,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":169,"mesid":{"sat":33,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}}],"preamble":85,"sender":22963,"msg_type":97,"payload":"BQDWFQC1AgC8HwCoAAAAAAAAGQDbDADQHQDVEgDPAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwLOGQHMDAG8HwGZEgHFHQHDAAAABQHCAAAAAAAAAAAAAAAACwPWCQOyFAOuBQPQCgPQAAAABAO0FQPLCQSrFATNCgRJCwTHBQTEAAS9AAAABASvIwzIGgyrIgydGAy8GQyeDAy5Ewy4Fgy/AAAADA3SAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADA7DAAAAGQ7ACw69GA7MAAAAHw6fIQ6ZGRTJGBTXCxTCHxSuDBTOAAAAIRSpAAAA","crc":47201} +{"length":132,"preamble":85,"sender":22963,"msg_type":151,"payload":"AgAaHQUAKzUMAFEtFQB9GRkAbUYaAKEBHQChNx8AlQ4EAxUWBQMyIQYDTggJA18OCgNxKQsDmCUMA6oDEwMiBxQDDDEVA5UlDAyUKRMMIyAUDA8CFgxDJBgMgiMZDJ0OGgxnFSIMjhEjDCItCw6LMgwODzwYDmw2GQ6XKR8OVREhDiAP","crc":53239,"azel":[{"el":29,"az":26,"sid":{"sat":2,"code":0}},{"el":53,"az":43,"sid":{"sat":5,"code":0}},{"el":45,"az":81,"sid":{"sat":12,"code":0}},{"el":25,"az":125,"sid":{"sat":21,"code":0}},{"el":70,"az":109,"sid":{"sat":25,"code":0}},{"el":1,"az":161,"sid":{"sat":26,"code":0}},{"el":55,"az":161,"sid":{"sat":29,"code":0}},{"el":14,"az":149,"sid":{"sat":31,"code":0}},{"el":22,"az":21,"sid":{"sat":4,"code":3}},{"el":33,"az":50,"sid":{"sat":5,"code":3}},{"el":8,"az":78,"sid":{"sat":6,"code":3}},{"el":14,"az":95,"sid":{"sat":9,"code":3}},{"el":41,"az":113,"sid":{"sat":10,"code":3}},{"el":37,"az":152,"sid":{"sat":11,"code":3}},{"el":3,"az":170,"sid":{"sat":12,"code":3}},{"el":7,"az":34,"sid":{"sat":19,"code":3}},{"el":49,"az":12,"sid":{"sat":20,"code":3}},{"el":37,"az":149,"sid":{"sat":21,"code":3}},{"el":41,"az":148,"sid":{"sat":12,"code":12}},{"el":32,"az":35,"sid":{"sat":19,"code":12}},{"el":2,"az":15,"sid":{"sat":20,"code":12}},{"el":36,"az":67,"sid":{"sat":22,"code":12}},{"el":35,"az":130,"sid":{"sat":24,"code":12}},{"el":14,"az":157,"sid":{"sat":25,"code":12}},{"el":21,"az":103,"sid":{"sat":26,"code":12}},{"el":17,"az":142,"sid":{"sat":34,"code":12}},{"el":45,"az":34,"sid":{"sat":35,"code":12}},{"el":50,"az":139,"sid":{"sat":11,"code":14}},{"el":60,"az":15,"sid":{"sat":12,"code":14}},{"el":54,"az":108,"sid":{"sat":24,"code":14}},{"el":41,"az":151,"sid":{"sat":25,"code":14}},{"el":17,"az":85,"sid":{"sat":31,"code":14}},{"el":15,"az":32,"sid":{"sat":33,"code":14}}]} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgicEC8QAAAAAAE=","wn":2098,"tow":271519900,"crc":60663} +{"length":16,"flags":17,"ns":899999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EZwQLxDkBwMZAxkB/uikNQ==","day":25,"tow":271519900,"year":2020,"crc":3450,"minutes":25,"month":3,"seconds":1} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.026357049242964,"preamble":85,"sender":22963,"msg_type":522,"payload":"nBAvEDzEoOVl6kJAlLNzGlaSXsCBhOhVvwYxwAECWwQPBg==","lat":37.831234649180686,"tow":271519900,"h_accuracy":513,"crc":17157,"lon":-122.28650533007595} +{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"nBAvEAUAAAD4////4P////EAygIPAg==","n":5,"d":-32,"tow":271519900,"h_accuracy":241,"crc":44501,"e":-8} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"nBAvEJsAhwBMAEgAcgAG","tow":271519900,"crc":32866,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"nBAvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271519900,"h_accuracy":0,"crc":39221,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"nBAvEP//","tow":271519900,"crc":41690} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":249,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":123,"i":110565132},"flags":15,"cn0":214,"P":1051992124,"D":{"f":205,"i":-186},"lock":15,"sid":{"sat":5,"code":0}},{"L":{"f":179,"i":121813871},"flags":15,"cn0":181,"P":1159020469,"D":{"f":229,"i":2173},"lock":15,"sid":{"sat":21,"code":0}},{"L":{"f":40,"i":123350720},"flags":15,"cn0":188,"P":1173642687,"D":{"f":14,"i":-2479},"lock":15,"sid":{"sat":2,"code":0}},{"L":{"f":235,"i":128740358},"flags":15,"cn0":168,"P":1224923820,"D":{"f":228,"i":-398},"lock":15,"sid":{"sat":31,"code":0}},{"L":{"f":217,"i":107828939},"flags":15,"cn0":219,"P":1025958183,"D":{"f":64,"i":-1128},"lock":15,"sid":{"sat":25,"code":0}},{"L":{"f":116,"i":114113584},"flags":15,"cn0":209,"P":1085754554,"D":{"f":152,"i":-2969},"lock":15,"sid":{"sat":12,"code":0}},{"L":{"f":117,"i":110753486},"flags":15,"cn0":213,"P":1053784301,"D":{"f":173,"i":1484},"lock":15,"sid":{"sat":29,"code":0}},{"L":{"f":7,"i":84022571},"flags":15,"cn0":204,"P":1025958216,"D":{"f":226,"i":-880},"lock":15,"sid":{"sat":25,"code":1}},{"L":{"f":212,"i":88919707},"flags":15,"cn0":188,"P":1085754478,"D":{"f":160,"i":-2313},"lock":15,"sid":{"sat":12,"code":1}},{"L":{"f":56,"i":100317165},"flags":15,"cn0":151,"P":1224923735,"D":{"f":216,"i":-310},"lock":15,"sid":{"sat":31,"code":1}},{"L":{"f":217,"i":86301419},"flags":15,"cn0":195,"P":1053784228,"D":{"f":169,"i":1156},"lock":15,"sid":{"sat":29,"code":1}},{"L":{"f":246,"i":86154677},"flags":15,"cn0":194,"P":1051992052,"D":{"f":26,"i":-144},"lock":15,"sid":{"sat":5,"code":1}},{"L":{"f":69,"i":112930612},"flags":15,"cn0":214,"P":1056670909,"D":{"f":202,"i":1163},"lock":15,"sid":{"sat":11,"code":3}},{"L":{"f":148,"i":123359559},"flags":15,"cn0":177,"P":1155063874,"D":{"f":29,"i":-4406},"lock":15,"sid":{"sat":9,"code":3}}],"payload":"ABEvEAAAAAAyCEA8ILQ+DBeXBntG/83WDw8FALU/FUVvu0IHs30I5bUPDxUAv130RcAuWgcoUfYOvA8PAgCs2gJJBmysB+ty/uSoDw8fACfhJj3LVm0G2Zj7QNsPDxkAuky3QDA8zQZ0Z/SY0Q8PDADteM8+zvaZBnXMBa3VDw8dAEjhJj0rFQIFB5D84swPDxkBbky3QJvOTAXU9/agvA8PDAFX2gJJ7bf6BTjK/tiXDw8fAaR4zz7r2iQF2YQEqcMPDx0B9B+0PrWdIgX2cP8awg8PBQG9hPs+NC+7BkWLBMrWDw8LA0Lg2ERHUVoHlMruHbEPDwkD","header":{"n_obs":64,"t":{"ns_residual":0,"wn":2098,"tow":271520000}},"crc":42657} +{"length":249,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":50,"i":109777572},"flags":15,"cn0":174,"P":1026447655,"D":{"f":233,"i":-1211},"lock":15,"sid":{"sat":20,"code":3}},{"L":{"f":254,"i":114847601},"flags":15,"cn0":208,"P":1074230624,"D":{"f":149,"i":2196},"lock":15,"sid":{"sat":5,"code":3}},{"L":{"f":2,"i":111621151},"flags":15,"cn0":208,"P":1046991858,"D":{"f":16,"i":-3046},"lock":15,"sid":{"sat":10,"code":3}},{"L":{"f":236,"i":120446124},"flags":15,"cn0":180,"P":1124622871,"D":{"f":72,"i":-1318},"lock":15,"sid":{"sat":4,"code":3}},{"L":{"f":145,"i":113410506},"flags":15,"cn0":203,"P":1059672758,"D":{"f":55,"i":1623},"lock":15,"sid":{"sat":21,"code":3}},{"L":{"f":199,"i":95946333},"flags":15,"cn0":171,"P":1155063992,"D":{"f":219,"i":-3427},"lock":15,"sid":{"sat":9,"code":4}},{"L":{"f":226,"i":85382591},"flags":15,"cn0":205,"P":1026447998,"D":{"f":139,"i":-942},"lock":15,"sid":{"sat":20,"code":4}},{"L":{"f":252,"i":87834930},"flags":15,"cn0":200,"P":1056671172,"D":{"f":158,"i":904},"lock":15,"sid":{"sat":11,"code":4}},{"L":{"f":117,"i":89325916},"flags":15,"cn0":196,"P":1074230918,"D":{"f":69,"i":1708},"lock":15,"sid":{"sat":5,"code":4}},{"L":{"f":154,"i":93680309},"flags":15,"cn0":175,"P":1124623177,"D":{"f":227,"i":-1026},"lock":15,"sid":{"sat":4,"code":4}},{"L":{"f":167,"i":121588536},"flags":15,"cn0":200,"P":1167489719,"D":{"f":246,"i":-1500},"lock":15,"sid":{"sat":35,"code":12}},{"L":{"f":23,"i":129229162},"flags":15,"cn0":171,"P":1240855145,"D":{"f":49,"i":-3007},"lock":15,"sid":{"sat":26,"code":12}},{"L":{"f":95,"i":132933110},"flags":15,"cn0":157,"P":1276420054,"D":{"f":186,"i":2249},"lock":15,"sid":{"sat":34,"code":12}},{"L":{"f":67,"i":125158790},"flags":15,"cn0":188,"P":1201771505,"D":{"f":46,"i":-1303},"lock":15,"sid":{"sat":24,"code":12}}],"payload":"ABEvEAAAAAAyCEEnWS49pBKLBjJF++muDw8UA2B1B0Bxb9gG/pQIldAPDwUD8tNnPh80pwYCGvQQ0A8PCgMXYghDrNwtB+za+ki0Dw8EA7ZSKT/KgcIGkVcGN8sPDxUDuODYRF0GuAXHnfLbqw8PCQR+Wi49v9UWBeJS/IvNDw8UBMSF+z4yQTwF/IgDnsgPDwsEhnYHQFwBUwV1rAZFxA8PBQRJYwhDtXKVBZr+++OvDw8EBLd6lkU4Sz8HpyT69sgPDyMMafL1SWrhswcXQfQxqw8PGgzWnxRM9mXsB1/JCLqdDw8iDPGToUeGxXUHQ+n6LrwPDxgM","header":{"n_obs":65,"t":{"ns_residual":0,"wn":2098,"tow":271520000}},"crc":57914} +{"length":249,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":145,"i":134664563},"flags":15,"cn0":158,"P":1293045673,"D":{"f":0,"i":1324},"lock":15,"sid":{"sat":25,"code":12}},{"L":{"f":24,"i":121090708},"flags":15,"cn0":184,"P":1162709848,"D":{"f":181,"i":1612},"lock":15,"sid":{"sat":12,"code":12}},{"L":{"f":127,"i":124516613},"flags":15,"cn0":184,"P":1195605278,"D":{"f":123,"i":-291},"lock":15,"sid":{"sat":19,"code":12}},{"L":{"f":55,"i":124690691},"flags":15,"cn0":192,"P":1197276800,"D":{"f":37,"i":2387},"lock":15,"sid":{"sat":22,"code":12}},{"L":{"f":52,"i":93635025},"flags":15,"cn0":210,"P":1162709762,"D":{"f":65,"i":1246},"lock":15,"sid":{"sat":12,"code":13}},{"L":{"f":103,"i":116432050},"flags":15,"cn0":195,"P":1107814092,"D":{"f":153,"i":-1027},"lock":15,"sid":{"sat":12,"code":14}},{"L":{"f":66,"i":132468499},"flags":15,"cn0":192,"P":1260395777,"D":{"f":34,"i":1087},"lock":15,"sid":{"sat":25,"code":14}},{"L":{"f":208,"i":125416452},"flags":15,"cn0":189,"P":1193297806,"D":{"f":119,"i":1047},"lock":15,"sid":{"sat":11,"code":14}},{"L":{"f":241,"i":118424134},"flags":15,"cn0":205,"P":1126768054,"D":{"f":231,"i":-1746},"lock":15,"sid":{"sat":24,"code":14}},{"L":{"f":139,"i":143340020},"flags":15,"cn0":159,"P":1363834938,"D":{"f":194,"i":-3174},"lock":15,"sid":{"sat":31,"code":14}},{"L":{"f":223,"i":144536745},"flags":15,"cn0":153,"P":1375221401,"D":{"f":237,"i":-2141},"lock":15,"sid":{"sat":33,"code":14}},{"L":{"f":131,"i":101501835},"flags":15,"cn0":201,"P":1260395759,"D":{"f":175,"i":831},"lock":15,"sid":{"sat":25,"code":20}},{"L":{"f":129,"i":90740634},"flags":15,"cn0":215,"P":1126768592,"D":{"f":185,"i":-1338},"lock":15,"sid":{"sat":24,"code":20}},{"L":{"f":214,"i":96098298},"flags":15,"cn0":194,"P":1193297618,"D":{"f":161,"i":802},"lock":15,"sid":{"sat":11,"code":20}}],"payload":"ABEvEAAAAAAyCEKpTxJNc9EGCJEsBQCeDw8ZDFiLTUWUsjcHGEwGtbgPDwwMHn1DRwX5awd/3f57uA8PEwyA/lxHA6FuBzdTCSXADw8WDAKLTUXRwZQFNN4EQdIPDwwNzOYHQrKc8AZn/fuZww8PDA4BHSBLE0/lB0I/BCLADw8ZDo5HIEcEtHkH0BcEd70PDwsOth0pQ0YCDwfxLvnnzQ8PGA46eEpR9DGLCIua88KfDw8fDpk2+FGpdJ0I36P37ZkPDyEO7xwgS4vLDAaDPwOvyQ8PGRTQHylDmpdoBYHG+rnXDw8YFNJGIEf6V7oF1iIDocIPDwsU","header":{"n_obs":66,"t":{"ns_residual":0,"wn":2098,"tow":271520000}},"crc":2411} +{"length":62,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":81,"i":109832005},"flags":15,"cn0":174,"P":1363835006,"D":{"f":210,"i":-2434},"lock":15,"sid":{"sat":31,"code":20}},{"L":{"f":26,"i":89214199},"flags":15,"cn0":206,"P":1107813938,"D":{"f":98,"i":-787},"lock":15,"sid":{"sat":12,"code":20}},{"L":{"f":163,"i":110749005},"flags":15,"cn0":169,"P":1375221356,"D":{"f":216,"i":-1642},"lock":15,"sid":{"sat":33,"code":20}}],"payload":"ABEvEAAAAAAyCEN+eEpRReeLBlF+9tKuDw8fFDLmB0L3TFEFGu38Ys4PDwwUbDb4UU3lmQajlvnYqQ8PIRQ=","header":{"n_obs":67,"t":{"ns_residual":0,"wn":2098,"tow":271520000}},"crc":50367} +{"length":9,"l2ca_bias":0,"preamble":85,"l2p_bias":0,"sender":22963,"msg_type":117,"payload":"/wAAAAAAAAAA","l1ca_bias":0,"mask":255,"crc":49809,"l1p_bias":0} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MggAES8QAAAAAAE=","wn":2098,"tow":271520000,"crc":62072} +{"length":16,"flags":17,"ns":999999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EQARLxDkBwMZAxkB/smaOw==","day":25,"tow":271520000,"year":2020,"crc":42710,"minutes":25,"month":3,"seconds":1} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.029275270561335,"preamble":85,"sender":22963,"msg_type":522,"payload":"ABEvEEnq6eVl6kJAimJdGlaSXsB6pImVfgcxwAECWwQPBg==","lat":37.831234683243174,"tow":271520000,"h_accuracy":513,"crc":48569,"lon":-122.28650530929204} +{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"ABEvEAAAAAD8////BwAAAPEAygIPAg==","n":0,"d":7,"tow":271520000,"h_accuracy":241,"crc":30203,"e":-4} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"ABEvEJsAhwBMAEgAcgAG","tow":271520000,"crc":23916,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"ABEvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271520000,"h_accuracy":0,"crc":45810,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"ABEvEP//","tow":271520000,"crc":52684} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":4,"flags":2147616000,"preamble":85,"sender":22963,"msg_type":65535,"payload":"AAUCgA==","crc":40942} +{"length":24,"z":3890655.0240602265,"preamble":85,"sender":22963,"msg_type":72,"payload":"UO0a3iqORMHK1UJhIkRQwc9nFIPvrk1B","crc":2168,"x":-2694229.735196747,"y":-4264073.519704292} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"bWFpbgAAAAAAAAAAAAAAAAAAAAAAAAx1AAA=","name":"main\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":47991,"stack_free":29964,"cpu":0} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"aWRsZQAAAAAAAAAAAAAAAAAAAAD9AHwAAAA=","name":"idle\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":39855,"stack_free":124,"cpu":253} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"cnBtc2cAAAAAAAAAAAAAAAAAAAABAPwNAAA=","name":"rpmsg\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":54377,"stack_free":3580,"cpu":1} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"U0JQAAAAAAAAAAAAAAAAAAAAAAAAAPz/AAA=","name":"SBP\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":51784,"stack_free":65532,"cpu":0} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"TkFQAAAAAAAAAAAAAAAAAAAAAAAAAASAAAA=","name":"NAP\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":33651,"stack_free":32772,"cpu":0} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"bWFuYWdlIFBWAAAAAAAAAAAAAAAAABQEAAA=","name":"manage PV\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":22620,"stack_free":1044,"cpu":0} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"SU1VAAAAAAAAAAAAAAAAAAAAAAAAAPQHAAA=","name":"IMU\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":14252,"stack_free":2036,"cpu":0} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"SU1VIGF1eAAAAAAAAAAAAAAAAAAAAEwIAAA=","name":"IMU aux\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":18976,"stack_free":2124,"cpu":0} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"bmRiAAAAAAAAAAAAAAAAAAAAAAAAAFAMAAA=","name":"ndb\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":26120,"stack_free":3152,"cpu":0} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"TkFQIFRyYWNraW5nAAAAAAAAAAAgAdR3AAA=","name":"NAP Tracking\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":11008,"stack_free":30676,"cpu":288} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"ZGVjb2RlAAAAAAAAAAAAAAAAAAAJANQGAAA=","name":"decode\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":55602,"stack_free":1748,"cpu":9} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"bWFuYWdlIGFjcQAAAAAAAAAAAAAeAaR3AAA=","name":"manage acq\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":56072,"stack_free":30628,"cpu":286} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"c3lzdGVtIG1vbml0b3IAAAAAAAAAACwGAAA=","name":"system monitor\u0000\u0000\u0000\u0000\u0000\u0000","crc":58531,"stack_free":1580,"cpu":0} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"V2F0Y2hkb2cAAAAAAAAAAAAAAAAAAOQDAAA=","name":"Watchdog\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":44438,"stack_free":996,"cpu":0} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"c3RhcmxpbmcAAAAAAAAAAAAAAACWAPz/AAA=","name":"starling\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":61599,"stack_free":65532,"cpu":150} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"bWVfY2FsY19wdnQAAAAAAAAAAAAJAIwjAAA=","name":"me_calc_pvt\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":57561,"stack_free":9100,"cpu":9} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"UFBTAAAAAAAAAAAAAAAAAAAAAAAAAEgHAAA=","name":"PPS\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":38576,"stack_free":1864,"cpu":0} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"c3BlY3RydW0gYW5hbHl6ZXIAAAAAANQPAAA=","name":"spectrum analyzer\u0000\u0000\u0000","crc":50933,"stack_free":4052,"cpu":0} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MghkES8QAAAAAAE=","wn":2098,"tow":271520100,"crc":38578} +{"length":16,"flags":17,"ns":99999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EWQRLxDkBwMZAxkC/uD1BQ==","day":25,"tow":271520100,"year":2020,"crc":45173,"minutes":25,"month":3,"seconds":2} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.03466077881481,"preamble":85,"sender":22963,"msg_type":522,"payload":"ZBEvEDwoKOZl6kJAPs87GlaSXsCodl+H3wgxwAECWwQPBg==","lat":37.83123471222686,"tow":271520100,"h_accuracy":513,"crc":27436,"lon":-122.28650527802253} +{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"ZBEvEPz///8IAAAAAAAAAPEAygIPAg==","n":-4,"d":0,"tow":271520100,"h_accuracy":241,"crc":5439,"e":8} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"ZBEvEJsAhwBMAEgAcgAG","tow":271520100,"crc":29123,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"ZBEvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271520100,"h_accuracy":0,"crc":43588,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"ZBEvEP//","tow":271520100,"crc":38005} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":51,"text":"GLO L2OF ME 1 [+1302ms] low CN0 too long, dropping","preamble":85,"sender":22963,"msg_type":1025,"payload":"BkdMTyBMMk9GIE1FIDEgWysxMzAybXNdIGxvdyBDTjAgdG9vIGxvbmcsIGRyb3BwaW5n","crc":62933,"level":6} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgjIES8QAAAAAAE=","wn":2098,"tow":271520200,"crc":15340} +{"length":16,"flags":17,"ns":199999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EcgRLxDkBwMZAxkC/sHrCw==","day":25,"tow":271520200,"year":2020,"crc":46528,"minutes":25,"month":3,"seconds":2} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.04008366058701,"preamble":85,"sender":22963,"msg_type":522,"payload":"yBEvEIbHeuZl6kJAbFk6GlaSXsA+UzvsQgoxwAECWwQPBg==","lat":37.83123475070083,"tow":271520200,"h_accuracy":513,"crc":11543,"lon":-122.28650527666258} +{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"yBEvEAgAAAD5////8/////EAygIPAg==","n":8,"d":-13,"tow":271520200,"h_accuracy":241,"crc":6335,"e":-7} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"yBEvEJsAhwBMAEgAcgAG","tow":271520200,"crc":1074,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"yBEvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271520200,"h_accuracy":0,"crc":33694,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"yBEvEP//","tow":271520200,"crc":32446} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MggsEi8QAAAAAAE=","wn":2098,"tow":271520300,"crc":10465} +{"length":16,"flags":17,"ns":299999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"ESwSLxDkBwMZAxkC/qLhEQ==","day":25,"tow":271520300,"year":2020,"crc":56917,"minutes":25,"month":3,"seconds":2} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.051366637710377,"preamble":85,"sender":22963,"msg_type":522,"payload":"LBIvENX20uZl6kJA4eg1GlaSXsBREi1dJg0xwAECWwQPBg==","lat":37.83123479176508,"tow":271520300,"h_accuracy":513,"crc":42052,"lon":-122.28650527252786} +{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"LBIvEAQAAAD4////IwAAAPEAygIPAg==","n":4,"d":35,"tow":271520300,"h_accuracy":241,"crc":4533,"e":-8} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"LBIvEJsAhwBMAEgAcgAG","tow":271520300,"crc":61740,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"LBIvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271520300,"h_accuracy":0,"crc":20358,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"LBIvEP//","tow":271520300,"crc":7669} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":237,"states":[{"cn0":214,"mesid":{"sat":5,"code":0}},{"cn0":181,"mesid":{"sat":21,"code":0}},{"cn0":187,"mesid":{"sat":2,"code":0}},{"cn0":168,"mesid":{"sat":31,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":219,"mesid":{"sat":25,"code":0}},{"cn0":208,"mesid":{"sat":12,"code":0}},{"cn0":213,"mesid":{"sat":29,"code":0}},{"cn0":206,"mesid":{"sat":18,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":206,"mesid":{"sat":131,"code":2}},{"cn0":204,"mesid":{"sat":25,"code":1}},{"cn0":187,"mesid":{"sat":12,"code":1}},{"cn0":152,"mesid":{"sat":31,"code":1}},{"cn0":197,"mesid":{"sat":18,"code":1}},{"cn0":195,"mesid":{"sat":29,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":194,"mesid":{"sat":5,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":214,"mesid":{"sat":100,"code":3}},{"cn0":177,"mesid":{"sat":98,"code":3}},{"cn0":174,"mesid":{"sat":102,"code":3}},{"cn0":208,"mesid":{"sat":101,"code":3}},{"cn0":208,"mesid":{"sat":93,"code":3}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":180,"mesid":{"sat":106,"code":3}},{"cn0":203,"mesid":{"sat":104,"code":3}},{"cn0":171,"mesid":{"sat":98,"code":4}},{"cn0":205,"mesid":{"sat":102,"code":4}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":199,"mesid":{"sat":100,"code":4}},{"cn0":196,"mesid":{"sat":101,"code":4}},{"cn0":189,"mesid":{"sat":104,"code":4}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":176,"mesid":{"sat":106,"code":4}},{"cn0":200,"mesid":{"sat":35,"code":12}},{"cn0":171,"mesid":{"sat":26,"code":12}},{"cn0":156,"mesid":{"sat":34,"code":12}},{"cn0":188,"mesid":{"sat":24,"code":12}},{"cn0":158,"mesid":{"sat":25,"code":12}},{"cn0":184,"mesid":{"sat":12,"code":12}},{"cn0":185,"mesid":{"sat":19,"code":12}},{"cn0":191,"mesid":{"sat":22,"code":12}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":210,"mesid":{"sat":12,"code":13}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":196,"mesid":{"sat":12,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":193,"mesid":{"sat":25,"code":14}},{"cn0":190,"mesid":{"sat":11,"code":14}},{"cn0":205,"mesid":{"sat":24,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":160,"mesid":{"sat":31,"code":14}},{"cn0":154,"mesid":{"sat":33,"code":14}},{"cn0":201,"mesid":{"sat":25,"code":20}},{"cn0":215,"mesid":{"sat":24,"code":20}},{"cn0":193,"mesid":{"sat":11,"code":20}},{"cn0":174,"mesid":{"sat":31,"code":20}},{"cn0":206,"mesid":{"sat":12,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":169,"mesid":{"sat":33,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}}],"preamble":85,"sender":22963,"msg_type":97,"payload":"BQDWFQC1AgC7HwCoAAAAAAAAGQDbDADQHQDVEgDOAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwLOGQHMDAG7HwGYEgHFHQHDAAAABQHCAAAAAAAAAAAAAAAAZAPWYgOxZgOuZQPQXQPQAAAAagO0aAPLYgSrZgTNAAAAZATHZQTEaAS9AAAAagSwIwzIGgyrIgycGAy8GQyeDAy4Ewy5Fgy/AAAADA3SAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADA7EAAAAGQ7BCw6+GA7NAAAAHw6gIQ6aGRTJGBTXCxTBHxSuDBTOAAAAIRSpAAAA","crc":33391} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgiQEi8QAAAAAAE=","wn":2098,"tow":271520400,"crc":54849} +{"length":16,"flags":17,"ns":399999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EZASLxDkBwMZAxkC/oPXFw==","day":25,"tow":271520400,"year":2020,"crc":39725,"minutes":25,"month":3,"seconds":2} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.05625299771816,"preamble":85,"sender":22963,"msg_type":522,"payload":"kBIvEC7AG+dl6kJANIouGlaSXsBggLGYZg4xwAECWwQPBg==","lat":37.83123482565894,"tow":271520400,"h_accuracy":513,"crc":15832,"lon":-122.28650526566418} +{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"kBIvEAAAAAABAAAA5v////EAygIPAg==","n":0,"d":-26,"tow":271520400,"h_accuracy":241,"crc":47655,"e":1} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"kBIvEJsAhwBMAEgAcgAG","tow":271520400,"crc":51799,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"kBIvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271520400,"h_accuracy":0,"crc":56090,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"kBIvEP//","tow":271520400,"crc":60858} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":9,"l2ca_bias":0,"preamble":85,"l2p_bias":0,"sender":22963,"msg_type":117,"payload":"/wAAAAAAAAAA","l1ca_bias":0,"mask":255,"crc":49809,"l1p_bias":0} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"Mgj0Ei8QAAAAAAE=","wn":2098,"tow":271520500,"crc":45707} +{"length":16,"flags":17,"ns":499999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EfQSLxDkBwMZAxkC/mTNHQ==","day":25,"tow":271520500,"year":2020,"crc":57297,"minutes":25,"month":3,"seconds":2} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.068101924393215,"preamble":85,"sender":22963,"msg_type":522,"payload":"9BIvENTYUudl6kJA+bMGGlaSXsBDELIgbxExwAECWwQPBg==","lat":37.831234851315145,"tow":271520500,"h_accuracy":513,"crc":61200,"lon":-122.28650522856323} +{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"9BIvEPb///8NAAAAHwAAAPEAygIPAg==","n":-10,"d":31,"tow":271520500,"h_accuracy":241,"crc":14616,"e":13} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"9BIvEJsAhwBMAEgAcgAG","tow":271520500,"crc":59128,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"9BIvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271520500,"h_accuracy":0,"crc":50092,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"9BIvEP//","tow":271520500,"crc":46083} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MghYEy8QAAAAAAE=","wn":2098,"tow":271520600,"crc":22534} +{"length":16,"flags":17,"ns":599999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EVgTLxDkBwMZAxkC/kXDIw==","day":25,"tow":271520600,"year":2020,"crc":37925,"minutes":25,"month":3,"seconds":2} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.074801701418377,"preamble":85,"sender":22963,"msg_type":522,"payload":"WBMvEEREsOdl6kJAUD7zGVaSXsDvRk00JhMxwAECWwQPBg==","lat":37.83123489481707,"tow":271520600,"h_accuracy":513,"crc":5235,"lon":-122.28650521044005} +{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"WBMvEAwAAAD8////+P////EAygIPAg==","n":12,"d":-8,"tow":271520600,"h_accuracy":241,"crc":10566,"e":-4} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"WBMvEJsAhwBMAEgAcgAG","tow":271520600,"crc":59496,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"WBMvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271520600,"h_accuracy":0,"crc":16256,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"WBMvEP//","tow":271520600,"crc":62617} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"message_type":3,"length":34,"data":[151,255,0,31,254,127,247,255,0,7,255,255,215,255,127,240,0,255,255,255,232,206,246,231,239,229,112],"preamble":85,"sender":22963,"msg_type":30583,"payload":"gwLcEi8QA5f/AB/+f/f/AAf//9f/f/AA////6M725+/lcA==","tow":271520476,"crc":60393,"sid":{"sat":131,"code":2}} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"Mgi8Ey8QAAAAAAE=","wn":2098,"tow":271520700,"crc":33662} +{"length":16,"flags":17,"ns":699999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EbwTLxDkBwMZAxkC/ia5KQ==","day":25,"tow":271520700,"year":2020,"crc":26747,"minutes":25,"month":3,"seconds":2} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.088445518669424,"preamble":85,"sender":22963,"msg_type":522,"payload":"vBMvEDCr8+dl6kJAG0vVGVaSXsC2KZJdpBYxwAECWwQPBg==","lat":37.83123492620359,"tow":271520700,"h_accuracy":513,"crc":43434,"lon":-122.28650518254692} +{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"vBMvEP3///8EAAAAFgAAAPEAygIPAg==","n":-3,"d":22,"tow":271520700,"h_accuracy":241,"crc":8974,"e":4} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"vBMvEJsAhwBMAEgAcgAG","tow":271520700,"crc":37077,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"vBMvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271520700,"h_accuracy":0,"crc":40355,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"vBMvEP//","tow":271520700,"crc":30976} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgggFC8QAAAAAAE=","wn":2098,"tow":271520800,"crc":7482} +{"length":16,"flags":17,"ns":799999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"ESAULxDkBwMZAxkC/gevLw==","day":25,"tow":271520800,"year":2020,"crc":50935,"minutes":25,"month":3,"seconds":2} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.09520787475111,"preamble":85,"sender":22963,"msg_type":522,"payload":"IBQvEJS6VOhl6kJA1F++GVaSXsCwYBSLXxgxwAECWwQPBg==","lat":37.83123497140073,"tow":271520800,"h_accuracy":513,"crc":18280,"lon":-122.28650516120189} +{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"IBQvEAIAAAD9////9P////EAygIPAg==","n":2,"d":-12,"tow":271520800,"h_accuracy":241,"crc":4416,"e":-3} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"IBQvEJsAhwBMAEgAcgAG","tow":271520800,"crc":18108,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"IBQvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271520800,"h_accuracy":0,"crc":27154,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"IBQvEP//","tow":271520800,"crc":56211} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":237,"states":[{"cn0":214,"mesid":{"sat":5,"code":0}},{"cn0":181,"mesid":{"sat":21,"code":0}},{"cn0":187,"mesid":{"sat":2,"code":0}},{"cn0":167,"mesid":{"sat":31,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":219,"mesid":{"sat":25,"code":0}},{"cn0":208,"mesid":{"sat":12,"code":0}},{"cn0":213,"mesid":{"sat":29,"code":0}},{"cn0":207,"mesid":{"sat":18,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":205,"mesid":{"sat":131,"code":2}},{"cn0":204,"mesid":{"sat":25,"code":1}},{"cn0":187,"mesid":{"sat":12,"code":1}},{"cn0":152,"mesid":{"sat":31,"code":1}},{"cn0":197,"mesid":{"sat":18,"code":1}},{"cn0":195,"mesid":{"sat":29,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":194,"mesid":{"sat":5,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":214,"mesid":{"sat":11,"code":3}},{"cn0":178,"mesid":{"sat":9,"code":3}},{"cn0":174,"mesid":{"sat":20,"code":3}},{"cn0":208,"mesid":{"sat":5,"code":3}},{"cn0":208,"mesid":{"sat":10,"code":3}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":181,"mesid":{"sat":4,"code":3}},{"cn0":203,"mesid":{"sat":21,"code":3}},{"cn0":171,"mesid":{"sat":9,"code":4}},{"cn0":205,"mesid":{"sat":20,"code":4}},{"cn0":79,"mesid":{"sat":10,"code":4}},{"cn0":200,"mesid":{"sat":11,"code":4}},{"cn0":196,"mesid":{"sat":5,"code":4}},{"cn0":189,"mesid":{"sat":0,"code":4}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":176,"mesid":{"sat":4,"code":4}},{"cn0":200,"mesid":{"sat":35,"code":12}},{"cn0":171,"mesid":{"sat":26,"code":12}},{"cn0":157,"mesid":{"sat":34,"code":12}},{"cn0":188,"mesid":{"sat":24,"code":12}},{"cn0":157,"mesid":{"sat":25,"code":12}},{"cn0":185,"mesid":{"sat":12,"code":12}},{"cn0":185,"mesid":{"sat":19,"code":12}},{"cn0":191,"mesid":{"sat":22,"code":12}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":210,"mesid":{"sat":12,"code":13}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":197,"mesid":{"sat":12,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":193,"mesid":{"sat":25,"code":14}},{"cn0":190,"mesid":{"sat":11,"code":14}},{"cn0":206,"mesid":{"sat":24,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":160,"mesid":{"sat":31,"code":14}},{"cn0":154,"mesid":{"sat":33,"code":14}},{"cn0":201,"mesid":{"sat":25,"code":20}},{"cn0":215,"mesid":{"sat":24,"code":20}},{"cn0":194,"mesid":{"sat":11,"code":20}},{"cn0":174,"mesid":{"sat":31,"code":20}},{"cn0":206,"mesid":{"sat":12,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":169,"mesid":{"sat":33,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}}],"preamble":85,"sender":22963,"msg_type":97,"payload":"BQDWFQC1AgC7HwCnAAAAAAAAGQDbDADQHQDVEgDPAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwLNGQHMDAG7HwGYEgHFHQHDAAAABQHCAAAAAAAAAAAAAAAACwPWCQOyFAOuBQPQCgPQAAAABAO1FQPLCQSrFATNCgRPCwTIBQTEAAS9AAAABASwIwzIGgyrIgydGAy8GQydDAy5Ewy5Fgy/AAAADA3SAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADA7FAAAAGQ7BCw6+GA7OAAAAHw6gIQ6aGRTJGBTXCxTCHxSuDBTOAAAAIRSpAAAA","crc":4402} +{"length":132,"preamble":85,"sender":22963,"msg_type":151,"payload":"AgAaHQUAKzUMAFEtFQB9GRkAbUYaAKEBHQChNx8AlQ4EAxUWBQMyIQYDTggJA18OCgNxKQsDmCUMA6oDEwMiBxQDDDEVA5UlDAyUKRMMIyAUDA8CFgxDJBgMgiMZDJ0OGgxnFSIMjhEjDCItCw6LMgwODzwYDmw2GQ6XKR8OVREhDiAP","crc":53239,"azel":[{"el":29,"az":26,"sid":{"sat":2,"code":0}},{"el":53,"az":43,"sid":{"sat":5,"code":0}},{"el":45,"az":81,"sid":{"sat":12,"code":0}},{"el":25,"az":125,"sid":{"sat":21,"code":0}},{"el":70,"az":109,"sid":{"sat":25,"code":0}},{"el":1,"az":161,"sid":{"sat":26,"code":0}},{"el":55,"az":161,"sid":{"sat":29,"code":0}},{"el":14,"az":149,"sid":{"sat":31,"code":0}},{"el":22,"az":21,"sid":{"sat":4,"code":3}},{"el":33,"az":50,"sid":{"sat":5,"code":3}},{"el":8,"az":78,"sid":{"sat":6,"code":3}},{"el":14,"az":95,"sid":{"sat":9,"code":3}},{"el":41,"az":113,"sid":{"sat":10,"code":3}},{"el":37,"az":152,"sid":{"sat":11,"code":3}},{"el":3,"az":170,"sid":{"sat":12,"code":3}},{"el":7,"az":34,"sid":{"sat":19,"code":3}},{"el":49,"az":12,"sid":{"sat":20,"code":3}},{"el":37,"az":149,"sid":{"sat":21,"code":3}},{"el":41,"az":148,"sid":{"sat":12,"code":12}},{"el":32,"az":35,"sid":{"sat":19,"code":12}},{"el":2,"az":15,"sid":{"sat":20,"code":12}},{"el":36,"az":67,"sid":{"sat":22,"code":12}},{"el":35,"az":130,"sid":{"sat":24,"code":12}},{"el":14,"az":157,"sid":{"sat":25,"code":12}},{"el":21,"az":103,"sid":{"sat":26,"code":12}},{"el":17,"az":142,"sid":{"sat":34,"code":12}},{"el":45,"az":34,"sid":{"sat":35,"code":12}},{"el":50,"az":139,"sid":{"sat":11,"code":14}},{"el":60,"az":15,"sid":{"sat":12,"code":14}},{"el":54,"az":108,"sid":{"sat":24,"code":14}},{"el":41,"az":151,"sid":{"sat":25,"code":14}},{"el":17,"az":85,"sid":{"sat":31,"code":14}},{"el":15,"az":32,"sid":{"sat":33,"code":14}}]} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgiEFC8QAAAAAAE=","wn":2098,"tow":271520900,"crc":39323} +{"length":16,"flags":17,"ns":899999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EYQULxDkBwMZAxkC/uikNQ==","day":25,"tow":271520900,"year":2020,"crc":30658,"minutes":25,"month":3,"seconds":2} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.102843223866874,"preamble":85,"sender":22963,"msg_type":522,"payload":"hBQvEHDqpehl6kJAWAqeGVaSXsCZH/vuUxoxwAECWwQPBg==","lat":37.83123500920635,"tow":271520900,"h_accuracy":513,"crc":33859,"lon":-122.28650513108857} +{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"hBQvEP7////6////EQAAAPEAygIPAg==","n":-2,"d":17,"tow":271520900,"h_accuracy":241,"crc":59836,"e":-6} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"hBQvEJsAhwBMAEgAcgAG","tow":271520900,"crc":5128,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"hBQvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271520900,"h_accuracy":0,"crc":7531,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"hBQvEP//","tow":271520900,"crc":15386} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":249,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":255,"i":110565317},"flags":15,"cn0":214,"P":1051993884,"D":{"f":216,"i":-186},"lock":15,"sid":{"sat":5,"code":0}},{"L":{"f":82,"i":121811698},"flags":15,"cn0":181,"P":1158999789,"D":{"f":243,"i":2173},"lock":15,"sid":{"sat":21,"code":0}},{"L":{"f":75,"i":123353198},"flags":15,"cn0":187,"P":1173666244,"D":{"f":167,"i":-2477},"lock":15,"sid":{"sat":2,"code":0}},{"L":{"f":245,"i":128740755},"flags":15,"cn0":167,"P":1224927602,"D":{"f":172,"i":-399},"lock":15,"sid":{"sat":31,"code":0}},{"L":{"f":179,"i":107830068},"flags":15,"cn0":218,"P":1025968930,"D":{"f":161,"i":-1129},"lock":15,"sid":{"sat":25,"code":0}},{"L":{"f":159,"i":114116552},"flags":15,"cn0":208,"P":1085782801,"D":{"f":108,"i":-2967},"lock":15,"sid":{"sat":12,"code":0}},{"L":{"f":34,"i":110752002},"flags":15,"cn0":213,"P":1053770178,"D":{"f":37,"i":1485},"lock":15,"sid":{"sat":29,"code":0}},{"L":{"f":165,"i":84023450},"flags":15,"cn0":204,"P":1025968957,"D":{"f":92,"i":-879},"lock":15,"sid":{"sat":25,"code":1}},{"L":{"f":177,"i":88922020},"flags":15,"cn0":187,"P":1085782715,"D":{"f":87,"i":-2311},"lock":15,"sid":{"sat":12,"code":1}},{"L":{"f":152,"i":100317474},"flags":15,"cn0":151,"P":1224927517,"D":{"f":35,"i":-309},"lock":15,"sid":{"sat":31,"code":1}},{"L":{"f":60,"i":86300263},"flags":15,"cn0":195,"P":1053770103,"D":{"f":150,"i":1156},"lock":15,"sid":{"sat":29,"code":1}},{"L":{"f":133,"i":86154822},"flags":15,"cn0":194,"P":1051993816,"D":{"f":105,"i":-145},"lock":15,"sid":{"sat":5,"code":1}},{"L":{"f":86,"i":112929449},"flags":15,"cn0":214,"P":1056660031,"D":{"f":227,"i":1163},"lock":15,"sid":{"sat":11,"code":3}},{"L":{"f":53,"i":123363966},"flags":15,"cn0":178,"P":1155105148,"D":{"f":91,"i":-4407},"lock":15,"sid":{"sat":9,"code":3}}],"payload":"6BQvEAAAAAAyCEAcJ7Q+xReXBv9G/9jWDw8FAO3uFEXyskIHUn0I87UPDxUAxLn0RW44WgdLU/anuw8PAgBy6QJJk22sB/Vx/qynDw8fACILJz00W20Gs5f7odoPDxkAEbu3QMhHzQafafRs0A8PDADCQc8+AvGZBiLNBSXVDw8dAD0LJz2aGAIFpZH8XMwPDxkBu7q3QKTXTAWx+fZXuw8PDAEd6QJJIrn6BZjL/iOXDw8fAXdBzz5n1iQFPIQElsMPDx0B2Ca0PkaeIgWFb/9pwg8PBQE/Wvs+qSq7BlaLBOPWDw8LA3yB2UR+YloHNcnuW7IPDwkD","header":{"n_obs":64,"t":{"ns_residual":0,"wn":2098,"tow":271521000}},"crc":3413} +{"length":249,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":14,"i":109778782},"flags":15,"cn0":174,"P":1026458998,"D":{"f":231,"i":-1210},"lock":15,"sid":{"sat":20,"code":3}},{"L":{"f":25,"i":114845406},"flags":15,"cn0":208,"P":1074210085,"D":{"f":147,"i":2196},"lock":15,"sid":{"sat":5,"code":3}},{"L":{"f":207,"i":111624196},"flags":15,"cn0":208,"P":1047020428,"D":{"f":32,"i":-3046},"lock":15,"sid":{"sat":10,"code":3}},{"L":{"f":202,"i":120447443},"flags":15,"cn0":181,"P":1124635160,"D":{"f":210,"i":-1319},"lock":15,"sid":{"sat":4,"code":3}},{"L":{"f":164,"i":113408883},"flags":15,"cn0":203,"P":1059657586,"D":{"f":80,"i":1623},"lock":15,"sid":{"sat":21,"code":3}},{"L":{"f":36,"i":95949761},"flags":15,"cn0":171,"P":1155105222,"D":{"f":183,"i":-3426},"lock":15,"sid":{"sat":9,"code":4}},{"L":{"f":224,"i":85383532},"flags":15,"cn0":205,"P":1026459299,"D":{"f":245,"i":-942},"lock":15,"sid":{"sat":20,"code":4}},{"L":{"f":123,"i":87834026},"flags":15,"cn0":200,"P":1056660282,"D":{"f":185,"i":904},"lock":15,"sid":{"sat":11,"code":4}},{"L":{"f":139,"i":89324208},"flags":15,"cn0":196,"P":1074210374,"D":{"f":102,"i":1709},"lock":15,"sid":{"sat":5,"code":4}},{"L":{"f":103,"i":93681335},"flags":15,"cn0":176,"P":1124635478,"D":{"f":5,"i":-1025},"lock":15,"sid":{"sat":4,"code":4}},{"L":{"f":111,"i":121590035},"flags":15,"cn0":200,"P":1167504104,"D":{"f":86,"i":-1498},"lock":15,"sid":{"sat":35,"code":12}},{"L":{"f":84,"i":129232169},"flags":15,"cn0":171,"P":1240884018,"D":{"f":145,"i":-3008},"lock":15,"sid":{"sat":26,"code":12}},{"L":{"f":235,"i":132930860},"flags":15,"cn0":156,"P":1276398458,"D":{"f":3,"i":2251},"lock":15,"sid":{"sat":34,"code":12}},{"L":{"f":238,"i":125160093},"flags":15,"cn0":188,"P":1201784017,"D":{"f":16,"i":-1303},"lock":15,"sid":{"sat":24,"code":12}}],"payload":"6BQvEAAAAAAyCEF2hS49XheLBg5G++euDw8UAyUlB0DeZtgGGZQIk9APDwUDjENoPgRApwbPGvQg0A8PCgMYkghD0+EtB8rZ+tK1Dw8EA3IXKT9ze8IGpFcGUMsPDxUDxoHZRMETuAUknvK3qw8PCQSjhi49bNkWBeBS/PXNDw8UBDpb+z6qPTwFe4gDucgPDwsERiYHQLD6UgWLrQZmxA8PBQRWkwhDt3aVBWf/+wWwDw8EBOiylkUTUT8Hbyb6VsgPDyMMMmP2SSntswdUQPSRqw8PGgx6SxRMLF3sB+vLCAOcDw8iDNHEoUedynUH7un6ELwPDxgM","header":{"n_obs":65,"t":{"ns_residual":0,"wn":2098,"tow":271521000}},"crc":51072} +{"length":249,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":249,"i":134663239},"flags":15,"cn0":158,"P":1293032957,"D":{"f":131,"i":1325},"lock":15,"sid":{"sat":25,"code":12}},{"L":{"f":171,"i":121089095},"flags":15,"cn0":185,"P":1162694361,"D":{"f":168,"i":1613},"lock":15,"sid":{"sat":12,"code":12}},{"L":{"f":156,"i":124516904},"flags":15,"cn0":184,"P":1195608074,"D":{"f":251,"i":-291},"lock":15,"sid":{"sat":19,"code":12}},{"L":{"f":66,"i":124688304},"flags":15,"cn0":191,"P":1197253886,"D":{"f":148,"i":2387},"lock":15,"sid":{"sat":22,"code":12}},{"L":{"f":93,"i":93633778},"flags":15,"cn0":209,"P":1162694281,"D":{"f":11,"i":1247},"lock":15,"sid":{"sat":12,"code":13}},{"L":{"f":182,"i":116433076},"flags":15,"cn0":197,"P":1107823863,"D":{"f":220,"i":-1028},"lock":15,"sid":{"sat":12,"code":14}},{"L":{"f":62,"i":132467412},"flags":15,"cn0":194,"P":1260385444,"D":{"f":45,"i":1087},"lock":15,"sid":{"sat":25,"code":14}},{"L":{"f":51,"i":125415405},"flags":15,"cn0":191,"P":1193287831,"D":{"f":69,"i":1049},"lock":15,"sid":{"sat":11,"code":14}},{"L":{"f":34,"i":118425880},"flags":15,"cn0":206,"P":1126784661,"D":{"f":79,"i":-1745},"lock":15,"sid":{"sat":24,"code":14}},{"L":{"f":21,"i":143343192},"flags":15,"cn0":160,"P":1363865101,"D":{"f":6,"i":-3172},"lock":15,"sid":{"sat":31,"code":14}},{"L":{"f":114,"i":144538885},"flags":15,"cn0":155,"P":1375241784,"D":{"f":7,"i":-2141},"lock":15,"sid":{"sat":33,"code":14}},{"L":{"f":154,"i":101501002},"flags":15,"cn0":201,"P":1260385419,"D":{"f":147,"i":834},"lock":15,"sid":{"sat":25,"code":20}},{"L":{"f":183,"i":90741971},"flags":15,"cn0":215,"P":1126785197,"D":{"f":66,"i":-1337},"lock":15,"sid":{"sat":24,"code":20}},{"L":{"f":28,"i":96097496},"flags":15,"cn0":194,"P":1193287652,"D":{"f":213,"i":802},"lock":15,"sid":{"sat":11,"code":20}}],"payload":"6BQvEAAAAAAyCEL9HRJNR8wGCPktBYOeDw8ZDNlOTUVHrDcHq00GqLkPDwwMCohDRyj6awec3f77uA8PEwz+pFxHsJduB0JTCZS/Dw8WDIlOTUXyvJQFXd8EC9EPDwwN9wwIQrSg8Aa2/PvcxQ8PDA6k9B9L1ErlBz4/BC3CDw8ZDpcgIEftr3kHMxkERb8PDwsOlV4pQxgJDwciL/lPzg8PGA4N7kpRWD6LCBWc8wagDw8fDjiG+FEFfZ0IcqP3B5sPDyEOi/QfS0rIDAaaQgOTyQ8PGRStYClD05xoBbfH+kLXDw8YFOQfIEfYVLoFHCID1cIPDwsU","header":{"n_obs":66,"t":{"ns_residual":0,"wn":2098,"tow":271521000}},"crc":53130} +{"length":62,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":118,"i":109834435},"flags":15,"cn0":174,"P":1363865182,"D":{"f":105,"i":-2432},"lock":15,"sid":{"sat":31,"code":20}},{"L":{"f":125,"i":89214985},"flags":15,"cn0":207,"P":1107823702,"D":{"f":60,"i":-786},"lock":15,"sid":{"sat":12,"code":20}},{"L":{"f":18,"i":110750645},"flags":15,"cn0":169,"P":1375241719,"D":{"f":247,"i":-1639},"lock":15,"sid":{"sat":33,"code":20}}],"payload":"6BQvEAAAAAAyCENe7kpRw/CLBnaA9mmuDw8fFFYMCEIJUFEFfe78PM8PDwwU94X4UbXrmQYSmfn3qQ8PIRQ=","header":{"n_obs":67,"t":{"ns_residual":0,"wn":2098,"tow":271521000}},"crc":51661} +{"length":9,"l2ca_bias":0,"preamble":85,"l2p_bias":0,"sender":22963,"msg_type":117,"payload":"/wAAAAAAAAAA","l1ca_bias":0,"mask":255,"crc":49809,"l1p_bias":0} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgjoFC8QAAAAAAE=","wn":2098,"tow":271521000,"crc":54446} +{"length":16,"flags":17,"ns":999999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EegULxDkBwMZAxkC/smaOw==","day":25,"tow":271521000,"year":2020,"crc":2698,"minutes":25,"month":3,"seconds":2} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.110500710310962,"preamble":85,"sender":22963,"msg_type":522,"payload":"6BQvEAWr5+hl6kJAExlyGVaSXsBp+EjGSRwxwAECWwQPBg==","lat":37.83123503982464,"tow":271521000,"h_accuracy":513,"crc":39240,"lon":-122.28650509016397} +{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"6BQvEPz///8FAAAAAQAAAPEAygIPAg==","n":-4,"d":1,"tow":271521000,"h_accuracy":241,"crc":59119,"e":5} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"6BQvEJsAhwBMAEgAcgAG","tow":271521000,"crc":8162,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"6BQvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271521000,"h_accuracy":0,"crc":23422,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"6BQvEP//","tow":271521000,"crc":26849} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":4,"flags":2147616000,"preamble":85,"sender":22963,"msg_type":65535,"payload":"AAUCgA==","crc":40942} +{"length":24,"z":3890655.0240602265,"preamble":85,"sender":22963,"msg_type":72,"payload":"UO0a3iqORMHK1UJhIkRQwc9nFIPvrk1B","crc":2168,"x":-2694229.735196747,"y":-4264073.519704292} +{"cpu_vint":988,"length":10,"fe_temperature":5641,"preamble":85,"sender":22963,"cpu_vaux":1779,"msg_type":181,"payload":"4xbcA/MGUBUJFg==","dev_vin":5859,"crc":27839,"cpu_temperature":5456} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MghMFS8QAAAAAAE=","wn":2098,"tow":271521100,"crc":6108} +{"length":16,"flags":17,"ns":99999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EUwVLxDkBwMZAxkD/uD1BQ==","day":25,"tow":271521100,"year":2020,"crc":24016,"minutes":25,"month":3,"seconds":3} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.117857039168342,"preamble":85,"sender":22963,"msg_type":522,"payload":"TBUvEAEnZOll6kJAV0dPGVaSXsDY1ADhKx4xwAECWwQPBg==","lat":37.83123509779217,"tow":271521100,"h_accuracy":513,"crc":41122,"lon":-122.286505057736} +{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"TBUvEBEAAAD8////BwAAAPEAygIPAg==","n":17,"d":7,"tow":271521100,"h_accuracy":241,"crc":15414,"e":-4} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"TBUvEJsAhwBMAEgAcgAG","tow":271521100,"crc":13879,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"TBUvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271521100,"h_accuracy":0,"crc":63985,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"TBUvEP//","tow":271521100,"crc":9529} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgiwFS8QAAAAAAE=","wn":2098,"tow":271521200,"crc":46757} +{"length":16,"flags":17,"ns":199999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EbAVLxDkBwMZAxkD/sHrCw==","day":25,"tow":271521200,"year":2020,"crc":15590,"minutes":25,"month":3,"seconds":3} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.121547822258968,"preamble":85,"sender":22963,"msg_type":522,"payload":"sBUvEEpDxull6kJAmk0iGVaSXsCWgBHCHR8xwAECWwQPBg==","lat":37.83123514347842,"tow":271521200,"h_accuracy":513,"crc":44056,"lon":-122.28650501584926} +{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"sBUvEPz///8FAAAA8v////EAygIPAg==","n":-4,"d":-14,"tow":271521200,"h_accuracy":241,"crc":13023,"e":5} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"sBUvEJsAhwBMAEgAcgAG","tow":271521200,"crc":10053,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"sBUvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271521200,"h_accuracy":0,"crc":47159,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"sBUvEP//","tow":271521200,"crc":48998} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MggUFi8QAAAAAAE=","wn":2098,"tow":271521300,"crc":64113} +{"length":16,"flags":17,"ns":299999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"ERQWLxDkBwMZAxkD/qLhEQ==","day":25,"tow":271521300,"year":2020,"crc":32122,"minutes":25,"month":3,"seconds":3} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.129901369031778,"preamble":85,"sender":22963,"msg_type":522,"payload":"FBYvEEr+KOpl6kJA+o7nGFaSXsB2slM3QSExwAECWwQPBg==","lat":37.83123518945338,"tow":271521300,"h_accuracy":513,"crc":25012,"lon":-122.28650496113906} +{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"FBYvEPf///8IAAAAGAAAAPEAygIPAg==","n":-9,"d":24,"tow":271521300,"h_accuracy":241,"crc":12750,"e":8} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"FBYvEJsAhwBMAEgAcgAG","tow":271521300,"crc":63570,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"FBYvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271521300,"h_accuracy":0,"crc":41333,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"FBYvEP//","tow":271521300,"crc":46653} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":237,"states":[{"cn0":214,"mesid":{"sat":5,"code":0}},{"cn0":182,"mesid":{"sat":21,"code":0}},{"cn0":187,"mesid":{"sat":2,"code":0}},{"cn0":167,"mesid":{"sat":31,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":219,"mesid":{"sat":25,"code":0}},{"cn0":208,"mesid":{"sat":12,"code":0}},{"cn0":213,"mesid":{"sat":29,"code":0}},{"cn0":207,"mesid":{"sat":18,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":205,"mesid":{"sat":131,"code":2}},{"cn0":204,"mesid":{"sat":25,"code":1}},{"cn0":188,"mesid":{"sat":12,"code":1}},{"cn0":153,"mesid":{"sat":31,"code":1}},{"cn0":197,"mesid":{"sat":18,"code":1}},{"cn0":195,"mesid":{"sat":29,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":194,"mesid":{"sat":5,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":214,"mesid":{"sat":100,"code":3}},{"cn0":177,"mesid":{"sat":98,"code":3}},{"cn0":174,"mesid":{"sat":102,"code":3}},{"cn0":208,"mesid":{"sat":101,"code":3}},{"cn0":208,"mesid":{"sat":93,"code":3}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":180,"mesid":{"sat":106,"code":3}},{"cn0":203,"mesid":{"sat":104,"code":3}},{"cn0":171,"mesid":{"sat":98,"code":4}},{"cn0":204,"mesid":{"sat":102,"code":4}},{"cn0":66,"mesid":{"sat":93,"code":4}},{"cn0":200,"mesid":{"sat":100,"code":4}},{"cn0":196,"mesid":{"sat":101,"code":4}},{"cn0":189,"mesid":{"sat":104,"code":4}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":175,"mesid":{"sat":106,"code":4}},{"cn0":199,"mesid":{"sat":35,"code":12}},{"cn0":171,"mesid":{"sat":26,"code":12}},{"cn0":155,"mesid":{"sat":34,"code":12}},{"cn0":188,"mesid":{"sat":24,"code":12}},{"cn0":157,"mesid":{"sat":25,"code":12}},{"cn0":184,"mesid":{"sat":12,"code":12}},{"cn0":184,"mesid":{"sat":19,"code":12}},{"cn0":191,"mesid":{"sat":22,"code":12}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":209,"mesid":{"sat":12,"code":13}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":196,"mesid":{"sat":12,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":194,"mesid":{"sat":25,"code":14}},{"cn0":191,"mesid":{"sat":11,"code":14}},{"cn0":206,"mesid":{"sat":24,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":161,"mesid":{"sat":31,"code":14}},{"cn0":154,"mesid":{"sat":33,"code":14}},{"cn0":200,"mesid":{"sat":25,"code":20}},{"cn0":215,"mesid":{"sat":24,"code":20}},{"cn0":194,"mesid":{"sat":11,"code":20}},{"cn0":174,"mesid":{"sat":31,"code":20}},{"cn0":206,"mesid":{"sat":12,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":169,"mesid":{"sat":33,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}}],"preamble":85,"sender":22963,"msg_type":97,"payload":"BQDWFQC2AgC7HwCnAAAAAAAAGQDbDADQHQDVEgDPAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwLNGQHMDAG8HwGZEgHFHQHDAAAABQHCAAAAAAAAAAAAAAAAZAPWYgOxZgOuZQPQXQPQAAAAagO0aAPLYgSrZgTMXQRCZATIZQTEaAS9AAAAagSvIwzHGgyrIgybGAy8GQydDAy4Ewy4Fgy/AAAADA3RAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADA7EAAAAGQ7CCw6/GA7OAAAAHw6hIQ6aGRTIGBTXCxTCHxSuDBTOAAAAIRSpAAAA","crc":22968} +{"length":51,"text":"GLO L2OF ME 1 [+1204ms] low CN0 too long, dropping","preamble":85,"sender":22963,"msg_type":1025,"payload":"BkdMTyBMMk9GIE1FIDEgWysxMjA0bXNdIGxvdyBDTjAgdG9vIGxvbmcsIGRyb3BwaW5n","crc":27804,"level":6} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"Mgh4Fi8QAAAAAAE=","wn":2098,"tow":271521400,"crc":46916} +{"length":16,"flags":17,"ns":399999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EXgWLxDkBwMZAxkD/oPXFw==","day":25,"tow":271521400,"year":2020,"crc":2195,"minutes":25,"month":3,"seconds":3} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.1341741890337,"preamble":85,"sender":22963,"msg_type":522,"payload":"eBYvEK79tOpl6kJAeoK5GFaSXsD43Vk9WSIxwAECWwQPBg==","lat":37.83123525464485,"tow":271521400,"h_accuracy":513,"crc":19298,"lon":-122.28650491825275} +{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"eBYvEA4AAAAEAAAA7v////EAygIPAg==","n":14,"d":-18,"tow":271521400,"h_accuracy":241,"crc":47961,"e":4} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"eBYvEJsAhwBMAEgAcgAG","tow":271521400,"crc":62392,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"eBYvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271521400,"h_accuracy":0,"crc":59232,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"eBYvEP//","tow":271521400,"crc":58054} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":9,"l2ca_bias":0,"preamble":85,"l2p_bias":0,"sender":22963,"msg_type":117,"payload":"/wAAAAAAAAAA","l1ca_bias":0,"mask":255,"crc":49809,"l1p_bias":0} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgjcFi8QAAAAAAE=","wn":2098,"tow":271521500,"crc":13285} +{"length":16,"flags":17,"ns":499999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EdwWLxDkBwMZAxkD/mTNHQ==","day":25,"tow":271521500,"year":2020,"crc":12916,"minutes":25,"month":3,"seconds":3} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.143107065850316,"preamble":85,"sender":22963,"msg_type":522,"payload":"3BYvEO9cI+tl6kJA57OPGFaSXsBUpyeqoiQxwAECWwQPBg==","lat":37.83123530604086,"tow":271521500,"h_accuracy":513,"crc":640,"lon":-122.28650487931701} +{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"3BYvEPf///8EAAAABgAAAPEAygIPAg==","n":-9,"d":6,"tow":271521500,"h_accuracy":241,"crc":47886,"e":4} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"3BYvEJsAhwBMAEgAcgAG","tow":271521500,"crc":41228,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"3BYvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271521500,"h_accuracy":0,"crc":36889,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"3BYvEP//","tow":271521500,"crc":1359} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MghAFy8QAAAAAAE=","wn":2098,"tow":271521600,"crc":11626} +{"length":16,"flags":17,"ns":599999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EUAXLxDkBwMZAxkD/kXDIw==","day":25,"tow":271521600,"year":2020,"crc":43550,"minutes":25,"month":3,"seconds":3} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.146820229763307,"preamble":85,"sender":22963,"msg_type":522,"payload":"QBcvEAMMretl6kJAQ65vGFaSXsCAObUCliUxwAECWwQPBg==","lat":37.83123537015492,"tow":271521600,"h_accuracy":513,"crc":54157,"lon":-122.28650484949416} +{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"QBcvEAEAAAD5////9v////EAygIPAg==","n":1,"d":-10,"tow":271521600,"h_accuracy":241,"crc":58321,"e":-7} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"QBcvEJsAhwBMAEgAcgAG","tow":271521600,"crc":31746,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"QBcvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271521600,"h_accuracy":0,"crc":48094,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"QBcvEP//","tow":271521600,"crc":27225} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"message_type":4,"length":34,"data":[151,255,127,255,254,127,240,0,127,255,252,255,223,252,127,247,255,127,247,255,238,94,110,170,175,255,240],"preamble":85,"sender":22963,"msg_type":30583,"payload":"gwLFFi8QBJf/f//+f/AAf//8/9/8f/f/f/f/7l5uqq//8A==","tow":271521477,"crc":21060,"sid":{"sat":131,"code":2}} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgikFy8QAAAAAAE=","wn":2098,"tow":271521700,"crc":62994} +{"length":16,"flags":17,"ns":699999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EaQXLxDkBwMZAxkD/ia5KQ==","day":25,"tow":271521700,"year":2020,"crc":22080,"minutes":25,"month":3,"seconds":3} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.15562542837971,"preamble":85,"sender":22963,"msg_type":522,"payload":"pBcvEDO4JOxl6kJA3bM8GFaSXsAdUW0R1ycxwAECWwQPBg==","lat":37.83123542588182,"tow":271521700,"h_accuracy":513,"crc":32745,"lon":-122.28650480201709} +{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"pBcvEAcAAAD8////BQAAAPEAygIPAg==","n":7,"d":5,"tow":271521700,"h_accuracy":241,"crc":61611,"e":-4} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"pBcvEJsAhwBMAEgAcgAG","tow":271521700,"crc":1215,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"pBcvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271521700,"h_accuracy":0,"crc":6653,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"pBcvEP//","tow":271521700,"crc":59328} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MggIGC8QAAAAAAE=","wn":2098,"tow":271521800,"crc":33422} +{"length":16,"flags":17,"ns":799999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EQgYLxDkBwMZAxkD/gevLw==","day":25,"tow":271521800,"year":2020,"crc":49209,"minutes":25,"month":3,"seconds":3} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.163755445051937,"preamble":85,"sender":22963,"msg_type":522,"payload":"CBgvEDSEhexl6kJAhsMOGFaSXsA9Cnng6ykxwAECWwQPBg==","lat":37.831235470956386,"tow":271521800,"h_accuracy":513,"crc":48045,"lon":-122.28650475923322} +{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"CBgvEAcAAAD6//////////EAygIPAg==","n":7,"d":-1,"tow":271521800,"h_accuracy":241,"crc":1687,"e":-6} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"CBgvEJsAhwBMAEgAcgAG","tow":271521800,"crc":59939,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"CBgvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271521800,"h_accuracy":0,"crc":63185,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"CBgvEP//","tow":271521800,"crc":26866} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":237,"states":[{"cn0":214,"mesid":{"sat":5,"code":0}},{"cn0":181,"mesid":{"sat":21,"code":0}},{"cn0":188,"mesid":{"sat":2,"code":0}},{"cn0":168,"mesid":{"sat":31,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":219,"mesid":{"sat":25,"code":0}},{"cn0":208,"mesid":{"sat":12,"code":0}},{"cn0":213,"mesid":{"sat":29,"code":0}},{"cn0":207,"mesid":{"sat":18,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":205,"mesid":{"sat":131,"code":2}},{"cn0":205,"mesid":{"sat":25,"code":1}},{"cn0":187,"mesid":{"sat":12,"code":1}},{"cn0":152,"mesid":{"sat":31,"code":1}},{"cn0":197,"mesid":{"sat":18,"code":1}},{"cn0":195,"mesid":{"sat":29,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":194,"mesid":{"sat":5,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":214,"mesid":{"sat":11,"code":3}},{"cn0":177,"mesid":{"sat":9,"code":3}},{"cn0":174,"mesid":{"sat":20,"code":3}},{"cn0":208,"mesid":{"sat":5,"code":3}},{"cn0":208,"mesid":{"sat":10,"code":3}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":181,"mesid":{"sat":4,"code":3}},{"cn0":203,"mesid":{"sat":21,"code":3}},{"cn0":170,"mesid":{"sat":9,"code":4}},{"cn0":204,"mesid":{"sat":20,"code":4}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":200,"mesid":{"sat":11,"code":4}},{"cn0":196,"mesid":{"sat":5,"code":4}},{"cn0":189,"mesid":{"sat":0,"code":4}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":175,"mesid":{"sat":4,"code":4}},{"cn0":200,"mesid":{"sat":35,"code":12}},{"cn0":171,"mesid":{"sat":26,"code":12}},{"cn0":157,"mesid":{"sat":34,"code":12}},{"cn0":188,"mesid":{"sat":24,"code":12}},{"cn0":157,"mesid":{"sat":25,"code":12}},{"cn0":185,"mesid":{"sat":12,"code":12}},{"cn0":184,"mesid":{"sat":19,"code":12}},{"cn0":192,"mesid":{"sat":22,"code":12}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":209,"mesid":{"sat":12,"code":13}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":197,"mesid":{"sat":12,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":194,"mesid":{"sat":25,"code":14}},{"cn0":190,"mesid":{"sat":11,"code":14}},{"cn0":206,"mesid":{"sat":24,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":161,"mesid":{"sat":31,"code":14}},{"cn0":155,"mesid":{"sat":33,"code":14}},{"cn0":201,"mesid":{"sat":25,"code":20}},{"cn0":215,"mesid":{"sat":24,"code":20}},{"cn0":194,"mesid":{"sat":11,"code":20}},{"cn0":174,"mesid":{"sat":31,"code":20}},{"cn0":206,"mesid":{"sat":12,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":168,"mesid":{"sat":33,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}}],"preamble":85,"sender":22963,"msg_type":97,"payload":"BQDWFQC1AgC8HwCoAAAAAAAAGQDbDADQHQDVEgDPAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwLNGQHNDAG7HwGYEgHFHQHDAAAABQHCAAAAAAAAAAAAAAAACwPWCQOxFAOuBQPQCgPQAAAABAO1FQPLCQSqFATMAAAACwTIBQTEAAS9AAAABASvIwzIGgyrIgydGAy8GQydDAy5Ewy4FgzAAAAADA3RAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADA7FAAAAGQ7CCw6+GA7OAAAAHw6hIQ6bGRTJGBTXCxTCHxSuDBTOAAAAIRSoAAAA","crc":13321} +{"length":128,"preamble":85,"sender":22963,"msg_type":151,"payload":"AgAaHQUAKzUMAFEtFQB9GRkAbUYaAKEBHQChNx8AlQ4EAxUWBQMyIQkDXw4KA3EpCwOYJQwDqgMTAyIHFAMMMRUDlSUMDJQpEwwjIBQMDwIWDEMkGAyCIxkMnQ4aDGcVIgyOESMMIi0LDosyDA4PPBgObDYZDpcpHw5VESEOIA8=","crc":34187,"azel":[{"el":29,"az":26,"sid":{"sat":2,"code":0}},{"el":53,"az":43,"sid":{"sat":5,"code":0}},{"el":45,"az":81,"sid":{"sat":12,"code":0}},{"el":25,"az":125,"sid":{"sat":21,"code":0}},{"el":70,"az":109,"sid":{"sat":25,"code":0}},{"el":1,"az":161,"sid":{"sat":26,"code":0}},{"el":55,"az":161,"sid":{"sat":29,"code":0}},{"el":14,"az":149,"sid":{"sat":31,"code":0}},{"el":22,"az":21,"sid":{"sat":4,"code":3}},{"el":33,"az":50,"sid":{"sat":5,"code":3}},{"el":14,"az":95,"sid":{"sat":9,"code":3}},{"el":41,"az":113,"sid":{"sat":10,"code":3}},{"el":37,"az":152,"sid":{"sat":11,"code":3}},{"el":3,"az":170,"sid":{"sat":12,"code":3}},{"el":7,"az":34,"sid":{"sat":19,"code":3}},{"el":49,"az":12,"sid":{"sat":20,"code":3}},{"el":37,"az":149,"sid":{"sat":21,"code":3}},{"el":41,"az":148,"sid":{"sat":12,"code":12}},{"el":32,"az":35,"sid":{"sat":19,"code":12}},{"el":2,"az":15,"sid":{"sat":20,"code":12}},{"el":36,"az":67,"sid":{"sat":22,"code":12}},{"el":35,"az":130,"sid":{"sat":24,"code":12}},{"el":14,"az":157,"sid":{"sat":25,"code":12}},{"el":21,"az":103,"sid":{"sat":26,"code":12}},{"el":17,"az":142,"sid":{"sat":34,"code":12}},{"el":45,"az":34,"sid":{"sat":35,"code":12}},{"el":50,"az":139,"sid":{"sat":11,"code":14}},{"el":60,"az":15,"sid":{"sat":12,"code":14}},{"el":54,"az":108,"sid":{"sat":24,"code":14}},{"el":41,"az":151,"sid":{"sat":25,"code":14}},{"el":17,"az":85,"sid":{"sat":31,"code":14}},{"el":15,"az":32,"sid":{"sat":33,"code":14}}]} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MghsGC8QAAAAAAE=","wn":2098,"tow":271521900,"crc":58948} +{"length":16,"flags":17,"ns":899999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EWwYLxDkBwMZAxkD/uikNQ==","day":25,"tow":271521900,"year":2020,"crc":3863,"minutes":25,"month":3,"seconds":3} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.173558900590212,"preamble":85,"sender":22963,"msg_type":522,"payload":"bBgvELwt3uxl6kJAhj3bF1aSXsD19ilbbiwxwAECWwQPBg==","lat":37.831235512242955,"tow":271521900,"h_accuracy":513,"crc":26032,"lon":-122.28650471124828} +{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"bBgvEAQAAAAGAAAAHwAAAPEAygIPAg==","n":4,"d":31,"tow":271521900,"h_accuracy":241,"crc":44099,"e":6} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"bBgvEJsAhwBMAEgAcgAG","tow":271521900,"crc":50828,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"bBgvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271521900,"h_accuracy":0,"crc":61031,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"bBgvEP//","tow":271521900,"crc":12619} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":249,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":24,"i":110565504},"flags":15,"cn0":214,"P":1051995663,"D":{"f":95,"i":-187},"lock":15,"sid":{"sat":5,"code":0}},{"L":{"f":28,"i":121809525},"flags":15,"cn0":181,"P":1158979128,"D":{"f":112,"i":2173},"lock":15,"sid":{"sat":21,"code":0}},{"L":{"f":95,"i":123355676},"flags":15,"cn0":188,"P":1173689818,"D":{"f":110,"i":-2479},"lock":15,"sid":{"sat":2,"code":0}},{"L":{"f":117,"i":128741153},"flags":15,"cn0":167,"P":1224931380,"D":{"f":12,"i":-397},"lock":15,"sid":{"sat":31,"code":0}},{"L":{"f":21,"i":107831198},"flags":15,"cn0":219,"P":1025979675,"D":{"f":118,"i":-1130},"lock":15,"sid":{"sat":25,"code":0}},{"L":{"f":25,"i":114119521},"flags":15,"cn0":208,"P":1085811049,"D":{"f":116,"i":-2969},"lock":15,"sid":{"sat":12,"code":0}},{"L":{"f":234,"i":110750517},"flags":15,"cn0":213,"P":1053756052,"D":{"f":32,"i":1484},"lock":15,"sid":{"sat":29,"code":0}},{"L":{"f":175,"i":84024330},"flags":15,"cn0":205,"P":1025979709,"D":{"f":42,"i":-880},"lock":15,"sid":{"sat":25,"code":1}},{"L":{"f":201,"i":88924333},"flags":15,"cn0":188,"P":1085810963,"D":{"f":46,"i":-2313},"lock":15,"sid":{"sat":12,"code":1}},{"L":{"f":79,"i":100317784},"flags":15,"cn0":152,"P":1224931289,"D":{"f":106,"i":-312},"lock":15,"sid":{"sat":31,"code":1}},{"L":{"f":180,"i":86299106},"flags":15,"cn0":195,"P":1053755974,"D":{"f":26,"i":1158},"lock":15,"sid":{"sat":29,"code":1}},{"L":{"f":137,"i":86154967},"flags":15,"cn0":194,"P":1051995581,"D":{"f":252,"i":-147},"lock":15,"sid":{"sat":5,"code":1}},{"L":{"f":41,"i":112928287},"flags":15,"cn0":214,"P":1056649153,"D":{"f":23,"i":1162},"lock":15,"sid":{"sat":11,"code":3}},{"L":{"f":204,"i":123368372},"flags":15,"cn0":177,"P":1155146379,"D":{"f":34,"i":-4405},"lock":15,"sid":{"sat":9,"code":3}}],"payload":"0BgvEAAAAAAyCEAPLrQ+gBiXBhhF/1/WDw8FADieFEV1qkIHHH0IcLUPDxUA2hX1RRxCWgdfUfZuvA8PAgA0+AJJIW+sB3Vz/gynDw8fABs1Jz2eX20GFZb7dtsPDxkAaSm4QGFTzQYZZ/R00A8PDACUCs8+NeuZBurMBSDVDw8dAD01Jz0KHAIFr5D8Ks0PDxkBEym4QK3gTAXJ9/YuvA8PDAHZ9wJJWLr6BU/I/mqYDw8fAUYKzz7i0SQFtIYEGsMPDx0BvS20PteeIgWJbf/8wg8PBQHBL/s+Hya7BimKBBfWDw8LA4si2kS0c1oHzMvuIrEPDwkD","header":{"n_obs":64,"t":{"ns_residual":0,"wn":2098,"tow":271522000}},"crc":43496} +{"length":249,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":249,"i":109779991},"flags":15,"cn0":174,"P":1026470268,"D":{"f":62,"i":-1210},"lock":15,"sid":{"sat":20,"code":3}},{"L":{"f":208,"i":114843210},"flags":15,"cn0":208,"P":1074189547,"D":{"f":163,"i":2193},"lock":15,"sid":{"sat":5,"code":3}},{"L":{"f":25,"i":111627243},"flags":15,"cn0":208,"P":1047049006,"D":{"f":188,"i":-3048},"lock":15,"sid":{"sat":10,"code":3}},{"L":{"f":102,"i":120448763},"flags":15,"cn0":180,"P":1124647501,"D":{"f":122,"i":-1321},"lock":15,"sid":{"sat":4,"code":3}},{"L":{"f":208,"i":113407260},"flags":15,"cn0":202,"P":1059642431,"D":{"f":46,"i":1622},"lock":15,"sid":{"sat":21,"code":3}},{"L":{"f":130,"i":95953188},"flags":15,"cn0":170,"P":1155146495,"D":{"f":152,"i":-3427},"lock":15,"sid":{"sat":9,"code":4}},{"L":{"f":237,"i":85384473},"flags":15,"cn0":204,"P":1026470606,"D":{"f":69,"i":-942},"lock":15,"sid":{"sat":20,"code":4}},{"L":{"f":145,"i":87833122},"flags":15,"cn0":199,"P":1056649415,"D":{"f":5,"i":902},"lock":15,"sid":{"sat":11,"code":4}},{"L":{"f":25,"i":89322501},"flags":15,"cn0":195,"P":1074189842,"D":{"f":155,"i":1706},"lock":15,"sid":{"sat":5,"code":4}},{"L":{"f":196,"i":93682361},"flags":15,"cn0":175,"P":1124647807,"D":{"f":205,"i":-1028},"lock":15,"sid":{"sat":4,"code":4}},{"L":{"f":64,"i":121591534},"flags":15,"cn0":199,"P":1167518497,"D":{"f":87,"i":-1499},"lock":15,"sid":{"sat":35,"code":12}},{"L":{"f":137,"i":129235176},"flags":15,"cn0":171,"P":1240912887,"D":{"f":255,"i":-3009},"lock":15,"sid":{"sat":26,"code":12}},{"L":{"f":106,"i":132928611},"flags":15,"cn0":157,"P":1276376879,"D":{"f":219,"i":2250},"lock":15,"sid":{"sat":34,"code":12}},{"L":{"f":248,"i":125161397},"flags":15,"cn0":188,"P":1201796535,"D":{"f":153,"i":-1305},"lock":15,"sid":{"sat":24,"code":12}}],"payload":"0BgvEAAAAAAyCEF8sS49FxyLBvlG+z6uDw8UA+vUBkBKXtgG0JEIo9APDwUDLrNoPutLpwYZGPS80A8PCgNNwghD++YtB2bX+nq0Dw8EAz/cKD8cdcIG0FYGLsoPDxUD/yLaRCQhuAWCnfKYqg8PCQTOsi49Gd0WBe1S/EXMDw8UBMcw+z4iOjwFkYYDBccPDwsEEtYGQAX0UgUZqgabww8PBQR/wwhDuXqVBcT8+82vDw8EBCHrlkXuVj8HQCX6V8cPDyMM99P2Sej4sweJP/T/qw8PGgwv9xNMY1TsB2rKCNudDw8iDLf1oUe1z3UH+Of6mbwPDxgM","header":{"n_obs":65,"t":{"ns_residual":0,"wn":2098,"tow":271522000}},"crc":62809} +{"length":249,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":206,"i":134661916},"flags":15,"cn0":157,"P":1293020232,"D":{"f":34,"i":1323},"lock":15,"sid":{"sat":25,"code":12}},{"L":{"f":58,"i":121087483},"flags":15,"cn0":184,"P":1162678881,"D":{"f":67,"i":1612},"lock":15,"sid":{"sat":12,"code":12}},{"L":{"f":43,"i":124517196},"flags":15,"cn0":184,"P":1195610878,"D":{"f":212,"i":-293},"lock":15,"sid":{"sat":19,"code":12}},{"L":{"f":134,"i":124685917},"flags":15,"cn0":192,"P":1197230970,"D":{"f":1,"i":2385},"lock":15,"sid":{"sat":22,"code":12}},{"L":{"f":130,"i":93632531},"flags":15,"cn0":209,"P":1162678795,"D":{"f":162,"i":1246},"lock":15,"sid":{"sat":12,"code":13}},{"L":{"f":12,"i":116434103},"flags":15,"cn0":197,"P":1107833625,"D":{"f":107,"i":-1027},"lock":15,"sid":{"sat":12,"code":14}},{"L":{"f":145,"i":132466325},"flags":15,"cn0":193,"P":1260375091,"D":{"f":209,"i":1086},"lock":15,"sid":{"sat":25,"code":14}},{"L":{"f":176,"i":125414357},"flags":15,"cn0":190,"P":1193277868,"D":{"f":81,"i":1046},"lock":15,"sid":{"sat":11,"code":14}},{"L":{"f":159,"i":118427625},"flags":15,"cn0":206,"P":1126801265,"D":{"f":232,"i":-1748},"lock":15,"sid":{"sat":24,"code":14}},{"L":{"f":157,"i":143346363},"flags":15,"cn0":161,"P":1363895277,"D":{"f":10,"i":-3171},"lock":15,"sid":{"sat":31,"code":14}},{"L":{"f":236,"i":144541024},"flags":15,"cn0":155,"P":1375262121,"D":{"f":43,"i":-2139},"lock":15,"sid":{"sat":33,"code":14}},{"L":{"f":243,"i":101500169},"flags":15,"cn0":201,"P":1260375079,"D":{"f":220,"i":830},"lock":15,"sid":{"sat":25,"code":20}},{"L":{"f":41,"i":90743309},"flags":15,"cn0":215,"P":1126801807,"D":{"f":47,"i":-1338},"lock":15,"sid":{"sat":24,"code":20}},{"L":{"f":119,"i":96096693},"flags":15,"cn0":194,"P":1193277686,"D":{"f":182,"i":801},"lock":15,"sid":{"sat":11,"code":20}}],"payload":"0BgvEAAAAAAyCEJI7BFNHMcGCM4rBSKdDw8ZDGESTUX7pTcHOkwGQ7gPDwwM/pJDR0z7awcr2/7UuA8PEwx6S1xHXY5uB4ZRCQHADw8WDAsSTUUTuJQFgt4EotEPDwwNGTMIQrek8AYM/ftrxQ8PDA4zzB9LlUblB5E+BNHBDw8ZDqz5H0fVq3kHsBYEUb4PDwsOcZ8pQ+kPDwefLPnozg8PGA7tY0tRu0qLCJ2d8wqhDw8fDqnV+FFghZ0I7KX3K5sPDyEOJ8wfSwnFDAbzPgPcyQ8PGRSPoSlDDaJoBSnG+i/XDw8YFPb4H0e1UboFdyEDtsIPDwsU","header":{"n_obs":66,"t":{"ns_residual":0,"wn":2098,"tow":271522000}},"crc":2173} +{"length":62,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":143,"i":109836865},"flags":15,"cn0":174,"P":1363895358,"D":{"f":189,"i":-2432},"lock":15,"sid":{"sat":31,"code":20}},{"L":{"f":228,"i":89215771},"flags":15,"cn0":206,"P":1107833468,"D":{"f":24,"i":-787},"lock":15,"sid":{"sat":12,"code":20}},{"L":{"f":103,"i":110752284},"flags":15,"cn0":168,"P":1375262069,"D":{"f":243,"i":-1639},"lock":15,"sid":{"sat":33,"code":20}}],"payload":"0BgvEAAAAAAyCEM+ZEtRQfqLBo+A9r2uDw8fFHwyCEIbU1EF5O38GM4PDwwUddX4URzymQZnmfnzqA8PIRQ=","header":{"n_obs":67,"t":{"ns_residual":0,"wn":2098,"tow":271522000}},"crc":54639} +{"length":9,"l2ca_bias":0,"preamble":85,"l2p_bias":0,"sender":22963,"msg_type":117,"payload":"/wAAAAAAAAAA","l1ca_bias":0,"mask":255,"crc":49809,"l1p_bias":0} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgjQGC8QAAAAAAE=","wn":2098,"tow":271522000,"crc":6372} +{"length":16,"flags":17,"ns":999999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EdAYLxDkBwMZAxkD/smaOw==","day":25,"tow":271522000,"year":2020,"crc":17102,"minutes":25,"month":3,"seconds":3} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.182923755829705,"preamble":85,"sender":22963,"msg_type":522,"payload":"0BgvEM7fKe1l6kJAXgqdF1aSXsA481wX1C4xwAECWwQPBg==","lat":37.83123554749146,"tow":271522000,"h_accuracy":513,"crc":17074,"lon":-122.28650465332018} +{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"0BgvEO7///8OAAAAAgAAAPEAygIPAg==","n":-18,"d":2,"tow":271522000,"h_accuracy":241,"crc":4817,"e":14} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"0BgvEJsAhwBMAEgAcgAG","tow":271522000,"crc":65015,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"0BgvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271522000,"h_accuracy":0,"crc":31483,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"0BgvEP//","tow":271522000,"crc":49412} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":4,"flags":2147616000,"preamble":85,"sender":22963,"msg_type":65535,"payload":"AAUCgA==","crc":40942} +{"length":24,"z":3890655.0240602265,"preamble":85,"sender":22963,"msg_type":72,"payload":"UO0a3iqORMHK1UJhIkRQwc9nFIPvrk1B","crc":2168,"x":-2694229.735196747,"y":-4264073.519704292} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"bWFpbgAAAAAAAAAAAAAAAAAAAAAAAAx1AAA=","name":"main\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":47991,"stack_free":29964,"cpu":0} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"aWRsZQAAAAAAAAAAAAAAAAAAAABmAXwAAAA=","name":"idle\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":15608,"stack_free":124,"cpu":358} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"cnBtc2cAAAAAAAAAAAAAAAAAAAABANwNAAA=","name":"rpmsg\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":58151,"stack_free":3548,"cpu":1} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"U0JQAAAAAAAAAAAAAAAAAAAAAAAAAPz/AAA=","name":"SBP\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":51784,"stack_free":65532,"cpu":0} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"TkFQAAAAAAAAAAAAAAAAAAAAAAAAAASAAAA=","name":"NAP\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":33651,"stack_free":32772,"cpu":0} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"bWFuYWdlIFBWAAAAAAAAAAAAAAAAABQEAAA=","name":"manage PV\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":22620,"stack_free":1044,"cpu":0} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"SU1VAAAAAAAAAAAAAAAAAAAAAAAAAPQHAAA=","name":"IMU\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":14252,"stack_free":2036,"cpu":0} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"SU1VIGF1eAAAAAAAAAAAAAAAAAAAAEwIAAA=","name":"IMU aux\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":18976,"stack_free":2124,"cpu":0} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"bmRiAAAAAAAAAAAAAAAAAAAAAAAAAFAMAAA=","name":"ndb\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":26120,"stack_free":3152,"cpu":0} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"TkFQIFRyYWNraW5nAAAAAAAAAAAcAdR3AAA=","name":"NAP Tracking\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":3951,"stack_free":30676,"cpu":284} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"ZGVjb2RlAAAAAAAAAAAAAAAAAAAHANQGAAA=","name":"decode\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":22929,"stack_free":1748,"cpu":7} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"bWFuYWdlIGFjcQAAAAAAAAAAAAC7AKR3AAA=","name":"manage acq\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":54128,"stack_free":30628,"cpu":187} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"c3lzdGVtIG1vbml0b3IAAAAAAAAAACwGAAA=","name":"system monitor\u0000\u0000\u0000\u0000\u0000\u0000","crc":58531,"stack_free":1580,"cpu":0} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"V2F0Y2hkb2cAAAAAAAAAAAAAAAAAAOQDAAA=","name":"Watchdog\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":44438,"stack_free":996,"cpu":0} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"c3RhcmxpbmcAAAAAAAAAAAAAAACWAPz/AAA=","name":"starling\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":61599,"stack_free":65532,"cpu":150} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"bWVfY2FsY19wdnQAAAAAAAAAAAAJAIwjAAA=","name":"me_calc_pvt\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":57561,"stack_free":9100,"cpu":9} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"UFBTAAAAAAAAAAAAAAAAAAAAAAAAAEgHAAA=","name":"PPS\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":38576,"stack_free":1864,"cpu":0} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"c3BlY3RydW0gYW5hbHl6ZXIAAAAAANQPAAA=","name":"spectrum analyzer\u0000\u0000\u0000","crc":50933,"stack_free":4052,"cpu":0} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"Mgg0GS8QAAAAAAE=","wn":2098,"tow":271522100,"crc":33871} +{"length":16,"flags":17,"ns":99999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"ETQZLxDkBwMZAxkE/uD1BQ==","day":25,"tow":271522100,"year":2020,"crc":61976,"minutes":25,"month":3,"seconds":4} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.18987767239187,"preamble":85,"sender":22963,"msg_type":522,"payload":"NBkvEH2ajO1l6kJAw+hmF1aSXsDnKbnSmzAxwAECWwQPBg==","lat":37.83123559346584,"tow":271522100,"h_accuracy":513,"crc":63322,"lon":-122.2865046029065} +{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"NBkvEAMAAAAOAAAADAAAAPEAygIPAg==","n":3,"d":12,"tow":271522100,"h_accuracy":241,"crc":29165,"e":14} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"NBkvEJsAhwBMAEgAcgAG","tow":271522100,"crc":65067,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"NBkvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271522100,"h_accuracy":0,"crc":3374,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"NBkvEP//","tow":271522100,"crc":59084} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgiYGS8QAAAAAAE=","wn":2098,"tow":271522200,"crc":10513} +{"length":16,"flags":17,"ns":199999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EZgZLxDkBwMZAxkE/sHrCw==","day":25,"tow":271522200,"year":2020,"crc":63405,"minutes":25,"month":3,"seconds":4} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.194233999232754,"preamble":85,"sender":22963,"msg_type":522,"payload":"mBkvEG+p2+1l6kJA13VmF1aSXsDZecJRuTExwAECWwQPBg==","lat":37.83123563028027,"tow":271522200,"h_accuracy":513,"crc":58580,"lon":-122.28650460248842} +{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"mBkvEAQAAADw////9/////EAygIPAg==","n":4,"d":-9,"tow":271522200,"h_accuracy":241,"crc":33570,"e":-16} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"mBkvEJsAhwBMAEgAcgAG","tow":271522200,"crc":35802,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"mBkvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271522200,"h_accuracy":0,"crc":9460,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"mBkvEP//","tow":271522200,"crc":3079} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"Mgj8GS8QAAAAAAE=","wn":2098,"tow":271522300,"crc":19931} +{"length":16,"flags":17,"ns":299999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EfwZLxDkBwMZAxkE/qLhEQ==","day":25,"tow":271522300,"year":2020,"crc":17801,"minutes":25,"month":3,"seconds":4} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.196105420808436,"preamble":85,"sender":22963,"msg_type":522,"payload":"/BkvEBuIMe5l6kJAPrNmF1aSXsDI8AD3MzIxwAECWwQPBg==","lat":37.831235670266516,"tow":271522300,"h_accuracy":513,"crc":37402,"lon":-122.2865046027118} +{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"/BkvEAkAAADu////7v////EAygIPAg==","n":9,"d":-18,"tow":271522300,"h_accuracy":241,"crc":64782,"e":-18} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"/BkvEJsAhwBMAEgAcgAG","tow":271522300,"crc":42869,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"/BkvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271522300,"h_accuracy":0,"crc":15426,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"/BkvEP//","tow":271522300,"crc":21950} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":237,"states":[{"cn0":214,"mesid":{"sat":5,"code":0}},{"cn0":181,"mesid":{"sat":21,"code":0}},{"cn0":187,"mesid":{"sat":2,"code":0}},{"cn0":167,"mesid":{"sat":31,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":218,"mesid":{"sat":25,"code":0}},{"cn0":208,"mesid":{"sat":12,"code":0}},{"cn0":213,"mesid":{"sat":29,"code":0}},{"cn0":206,"mesid":{"sat":18,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":205,"mesid":{"sat":131,"code":2}},{"cn0":205,"mesid":{"sat":25,"code":1}},{"cn0":187,"mesid":{"sat":12,"code":1}},{"cn0":153,"mesid":{"sat":31,"code":1}},{"cn0":197,"mesid":{"sat":18,"code":1}},{"cn0":195,"mesid":{"sat":29,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":194,"mesid":{"sat":5,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":213,"mesid":{"sat":100,"code":3}},{"cn0":177,"mesid":{"sat":98,"code":3}},{"cn0":173,"mesid":{"sat":102,"code":3}},{"cn0":207,"mesid":{"sat":101,"code":3}},{"cn0":207,"mesid":{"sat":93,"code":3}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":180,"mesid":{"sat":106,"code":3}},{"cn0":202,"mesid":{"sat":104,"code":3}},{"cn0":170,"mesid":{"sat":98,"code":4}},{"cn0":204,"mesid":{"sat":102,"code":4}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":199,"mesid":{"sat":100,"code":4}},{"cn0":195,"mesid":{"sat":101,"code":4}},{"cn0":189,"mesid":{"sat":104,"code":4}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":175,"mesid":{"sat":106,"code":4}},{"cn0":199,"mesid":{"sat":35,"code":12}},{"cn0":170,"mesid":{"sat":26,"code":12}},{"cn0":157,"mesid":{"sat":34,"code":12}},{"cn0":187,"mesid":{"sat":24,"code":12}},{"cn0":157,"mesid":{"sat":25,"code":12}},{"cn0":184,"mesid":{"sat":12,"code":12}},{"cn0":184,"mesid":{"sat":19,"code":12}},{"cn0":192,"mesid":{"sat":22,"code":12}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":208,"mesid":{"sat":12,"code":13}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":196,"mesid":{"sat":12,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":193,"mesid":{"sat":25,"code":14}},{"cn0":190,"mesid":{"sat":11,"code":14}},{"cn0":205,"mesid":{"sat":24,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":161,"mesid":{"sat":31,"code":14}},{"cn0":154,"mesid":{"sat":33,"code":14}},{"cn0":201,"mesid":{"sat":25,"code":20}},{"cn0":215,"mesid":{"sat":24,"code":20}},{"cn0":194,"mesid":{"sat":11,"code":20}},{"cn0":174,"mesid":{"sat":31,"code":20}},{"cn0":206,"mesid":{"sat":12,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":168,"mesid":{"sat":33,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}}],"preamble":85,"sender":22963,"msg_type":97,"payload":"BQDWFQC1AgC7HwCnAAAAAAAAGQDaDADQHQDVEgDOAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwLNGQHNDAG7HwGZEgHFHQHDAAAABQHCAAAAAAAAAAAAAAAAZAPVYgOxZgOtZQPPXQPPAAAAagO0aAPKYgSqZgTMAAAAZATHZQTDaAS9AAAAagSvIwzHGgyqIgydGAy7GQydDAy4Ewy4FgzAAAAADA3QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADA7EAAAAGQ7BCw6+GA7NAAAAHw6hIQ6aGRTJGBTXCxTCHxSuDBTOAAAAIRSoAAAA","crc":22082} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MghgGi8QAAAAAAE=","wn":2098,"tow":271522400,"crc":56562} +{"length":16,"flags":17,"ns":399999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EWAaLxDkBwMZAxkE/oPXFw==","day":25,"tow":271522400,"year":2020,"crc":4166,"minutes":25,"month":3,"seconds":4} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.20131708701916,"preamble":85,"sender":22963,"msg_type":522,"payload":"YBovEEsSXu5l6kJAtD07F1aSXsCP30CEiTMxwAECWwQPBg==","lat":37.831235691006974,"tow":271522400,"h_accuracy":513,"crc":11962,"lon":-122.28650456223733} +{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"YBovEPv///8OAAAAGQAAAPEAygIPAg==","n":-5,"d":25,"tow":271522400,"h_accuracy":241,"crc":22809,"e":14} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"YBovEJsAhwBMAEgAcgAG","tow":271522400,"crc":36025,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"YBovEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271522400,"h_accuracy":0,"crc":44104,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"YBovEP//","tow":271522400,"crc":32299} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":9,"l2ca_bias":0,"preamble":85,"l2p_bias":0,"sender":22963,"msg_type":117,"payload":"/wAAAAAAAAAA","l1ca_bias":0,"mask":255,"crc":49809,"l1p_bias":0} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgjEGi8QAAAAAAE=","wn":2098,"tow":271522500,"crc":22611} +{"length":16,"flags":17,"ns":499999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EcQaLxDkBwMZAxkE/mTNHQ==","day":25,"tow":271522500,"year":2020,"crc":10913,"minutes":25,"month":3,"seconds":4} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.2057619724538,"preamble":85,"sender":22963,"msg_type":522,"payload":"xBovENyUm+5l6kJAnn8UF1aSXsAUcw7RrDQxwAECWwQPBg==","lat":37.83123571964981,"tow":271522500,"h_accuracy":513,"crc":9265,"lon":-122.28650452615554} +{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"xBovEAIAAAAFAAAAAwAAAPEAygIPAg==","n":2,"d":3,"tow":271522500,"h_accuracy":241,"crc":26554,"e":5} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"xBovEJsAhwBMAEgAcgAG","tow":271522500,"crc":56845,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"xBovEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271522500,"h_accuracy":0,"crc":56113,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"xBovEP//","tow":271522500,"crc":39330} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MggoGy8QAAAAAAE=","wn":2098,"tow":271522600,"crc":60679} +{"length":16,"flags":17,"ns":599999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"ESgbLxDkBwMZAxkE/kXDIw==","day":25,"tow":271522600,"year":2020,"crc":19292,"minutes":25,"month":3,"seconds":4} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.204817504448357,"preamble":85,"sender":22963,"msg_type":522,"payload":"KBsvECPtr+5l6kJAkFHfFlaSXsAIQYPrbjQxwAECWwQPBg==","lat":37.83123572912361,"tow":271522600,"h_accuracy":513,"crc":10473,"lon":-122.2865044766279} +{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"KBsvEPf///8RAAAA8f////EAygIPAg==","n":-9,"d":-15,"tow":271522600,"h_accuracy":241,"crc":815,"e":17} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"KBsvEJsAhwBMAEgAcgAG","tow":271522600,"crc":64148,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"KBsvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271522600,"h_accuracy":0,"crc":62023,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"KBsvEP//","tow":271522600,"crc":45864} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgiMGy8QAAAAAAE=","wn":2098,"tow":271522700,"crc":27046} +{"length":16,"flags":17,"ns":699999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EYwbLxDkBwMZAxkE/ia5KQ==","day":25,"tow":271522700,"year":2020,"crc":40203,"minutes":25,"month":3,"seconds":4} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.20880591863644,"preamble":85,"sender":22963,"msg_type":522,"payload":"jBsvEKii0O5l6kJAtIbDFlaSXsA3wf9NdDUxwAECWwQPBg==","lat":37.831235744354956,"tow":271522700,"h_accuracy":513,"crc":20436,"lon":-122.28650445074419} +{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"jBsvEAEAAAD8////EgAAAPEAygIPAg==","n":1,"d":18,"tow":271522700,"h_accuracy":241,"crc":58592,"e":-4} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"jBsvEJsAhwBMAEgAcgAG","tow":271522700,"crc":43040,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"jBsvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271522700,"h_accuracy":0,"crc":34110,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"jBsvEP//","tow":271522700,"crc":21665} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"message_type":2,"length":34,"data":[23,255,0,23,255,0,31,254,255,247,255,127,255,255,127,247,255,255,208,1,229,231,85,238,110,229,112],"preamble":85,"sender":22963,"msg_type":30583,"payload":"gwKzGi8QAhf/ABf/AB/+//f/f///f/f//9AB5edV7m7lcA==","tow":271522483,"crc":35215,"sid":{"sat":131,"code":2}} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgjwGy8QAAAAAAE=","wn":2098,"tow":271522800,"crc":30573} +{"length":16,"flags":17,"ns":799999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EfAbLxDkBwMZAxkE/gevLw==","day":25,"tow":271522800,"year":2020,"crc":41102,"minutes":25,"month":3,"seconds":4} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.20962281004414,"preamble":85,"sender":22963,"msg_type":522,"payload":"8BsvEJJ03O5l6kJAVUujFlaSXsCdoinXqTUxwAECWwQPBg==","lat":37.83123574985906,"tow":271522800,"h_accuracy":513,"crc":54508,"lon":-122.28650442072588} +{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"8BsvEA0AAAD6/////P////EAygIPAg==","n":13,"d":-4,"tow":271522800,"h_accuracy":241,"crc":16072,"e":-6} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"8BsvEJsAhwBMAEgAcgAG","tow":271522800,"crc":60736,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"8BsvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271522800,"h_accuracy":0,"crc":32365,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"8BsvEP//","tow":271522800,"crc":6878} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":237,"states":[{"cn0":213,"mesid":{"sat":5,"code":0}},{"cn0":181,"mesid":{"sat":21,"code":0}},{"cn0":187,"mesid":{"sat":2,"code":0}},{"cn0":166,"mesid":{"sat":31,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":218,"mesid":{"sat":25,"code":0}},{"cn0":207,"mesid":{"sat":12,"code":0}},{"cn0":212,"mesid":{"sat":29,"code":0}},{"cn0":206,"mesid":{"sat":18,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":204,"mesid":{"sat":131,"code":2}},{"cn0":204,"mesid":{"sat":25,"code":1}},{"cn0":187,"mesid":{"sat":12,"code":1}},{"cn0":153,"mesid":{"sat":31,"code":1}},{"cn0":197,"mesid":{"sat":18,"code":1}},{"cn0":195,"mesid":{"sat":29,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":194,"mesid":{"sat":5,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":213,"mesid":{"sat":11,"code":3}},{"cn0":176,"mesid":{"sat":9,"code":3}},{"cn0":172,"mesid":{"sat":20,"code":3}},{"cn0":207,"mesid":{"sat":5,"code":3}},{"cn0":207,"mesid":{"sat":10,"code":3}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":180,"mesid":{"sat":4,"code":3}},{"cn0":202,"mesid":{"sat":21,"code":3}},{"cn0":170,"mesid":{"sat":9,"code":4}},{"cn0":204,"mesid":{"sat":20,"code":4}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":199,"mesid":{"sat":11,"code":4}},{"cn0":195,"mesid":{"sat":5,"code":4}},{"cn0":188,"mesid":{"sat":0,"code":4}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":174,"mesid":{"sat":4,"code":4}},{"cn0":199,"mesid":{"sat":35,"code":12}},{"cn0":170,"mesid":{"sat":26,"code":12}},{"cn0":156,"mesid":{"sat":34,"code":12}},{"cn0":187,"mesid":{"sat":24,"code":12}},{"cn0":157,"mesid":{"sat":25,"code":12}},{"cn0":183,"mesid":{"sat":12,"code":12}},{"cn0":184,"mesid":{"sat":19,"code":12}},{"cn0":191,"mesid":{"sat":22,"code":12}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":208,"mesid":{"sat":12,"code":13}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":196,"mesid":{"sat":12,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":193,"mesid":{"sat":25,"code":14}},{"cn0":190,"mesid":{"sat":11,"code":14}},{"cn0":205,"mesid":{"sat":24,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":159,"mesid":{"sat":31,"code":14}},{"cn0":154,"mesid":{"sat":33,"code":14}},{"cn0":200,"mesid":{"sat":25,"code":20}},{"cn0":215,"mesid":{"sat":24,"code":20}},{"cn0":193,"mesid":{"sat":11,"code":20}},{"cn0":174,"mesid":{"sat":31,"code":20}},{"cn0":206,"mesid":{"sat":12,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":168,"mesid":{"sat":33,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}}],"preamble":85,"sender":22963,"msg_type":97,"payload":"BQDVFQC1AgC7HwCmAAAAAAAAGQDaDADPHQDUEgDOAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwLMGQHMDAG7HwGZEgHFHQHDAAAABQHCAAAAAAAAAAAAAAAACwPVCQOwFAOsBQPPCgPPAAAABAO0FQPKCQSqFATMAAAACwTHBQTDAAS8AAAABASuIwzHGgyqIgycGAy7GQydDAy3Ewy4Fgy/AAAADA3QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADA7EAAAAGQ7BCw6+GA7NAAAAHw6fIQ6aGRTIGBTXCxTBHxSuDBTOAAAAIRSoAAAA","crc":52250} +{"length":128,"preamble":85,"sender":22963,"msg_type":151,"payload":"AgAaHQUAKzUMAFEtFQB9GRkAbUYaAKEBHQChNx8AlQ4EAxUWBQMyIQkDXw4KA3EpCwOYJQwDqgMTAyIHFAMMMRUDlSUMDJQpEwwjIBQMDwIWDEMkGAyCIxkMnQ4aDGcVIgyOESMMIi0LDosyDA4PPBgObDYZDpcpHw5VESEOIA8=","crc":34187,"azel":[{"el":29,"az":26,"sid":{"sat":2,"code":0}},{"el":53,"az":43,"sid":{"sat":5,"code":0}},{"el":45,"az":81,"sid":{"sat":12,"code":0}},{"el":25,"az":125,"sid":{"sat":21,"code":0}},{"el":70,"az":109,"sid":{"sat":25,"code":0}},{"el":1,"az":161,"sid":{"sat":26,"code":0}},{"el":55,"az":161,"sid":{"sat":29,"code":0}},{"el":14,"az":149,"sid":{"sat":31,"code":0}},{"el":22,"az":21,"sid":{"sat":4,"code":3}},{"el":33,"az":50,"sid":{"sat":5,"code":3}},{"el":14,"az":95,"sid":{"sat":9,"code":3}},{"el":41,"az":113,"sid":{"sat":10,"code":3}},{"el":37,"az":152,"sid":{"sat":11,"code":3}},{"el":3,"az":170,"sid":{"sat":12,"code":3}},{"el":7,"az":34,"sid":{"sat":19,"code":3}},{"el":49,"az":12,"sid":{"sat":20,"code":3}},{"el":37,"az":149,"sid":{"sat":21,"code":3}},{"el":41,"az":148,"sid":{"sat":12,"code":12}},{"el":32,"az":35,"sid":{"sat":19,"code":12}},{"el":2,"az":15,"sid":{"sat":20,"code":12}},{"el":36,"az":67,"sid":{"sat":22,"code":12}},{"el":35,"az":130,"sid":{"sat":24,"code":12}},{"el":14,"az":157,"sid":{"sat":25,"code":12}},{"el":21,"az":103,"sid":{"sat":26,"code":12}},{"el":17,"az":142,"sid":{"sat":34,"code":12}},{"el":45,"az":34,"sid":{"sat":35,"code":12}},{"el":50,"az":139,"sid":{"sat":11,"code":14}},{"el":60,"az":15,"sid":{"sat":12,"code":14}},{"el":54,"az":108,"sid":{"sat":24,"code":14}},{"el":41,"az":151,"sid":{"sat":25,"code":14}},{"el":17,"az":85,"sid":{"sat":31,"code":14}},{"el":15,"az":32,"sid":{"sat":33,"code":14}}]} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MghUHC8QAAAAAAE=","wn":2098,"tow":271522900,"crc":13524} +{"length":16,"flags":17,"ns":899999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EVQcLxDkBwMZAxkE/uikNQ==","day":25,"tow":271522900,"year":2020,"crc":25021,"minutes":25,"month":3,"seconds":4} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.21362443832571,"preamble":85,"sender":22963,"msg_type":522,"payload":"VBwvEHmRze5l6kJArZB6FlaSXsA8PFgXsDYxwAECWwQPBg==","lat":37.831235742926715,"tow":271522900,"h_accuracy":513,"crc":45854,"lon":-122.28650438279392} +{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"VBwvEP////8CAAAADAAAAPEAygIPAg==","n":-1,"d":12,"tow":271522900,"h_accuracy":241,"crc":17738,"e":2} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"VBwvEJsAhwBMAEgAcgAG","tow":271522900,"crc":53234,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"VBwvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271522900,"h_accuracy":0,"crc":148,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"VBwvEP//","tow":271522900,"crc":39555} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":249,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":8,"i":110565691},"flags":15,"cn0":213,"P":1051997442,"D":{"f":233,"i":-187},"lock":15,"sid":{"sat":5,"code":0}},{"L":{"f":75,"i":121807352},"flags":15,"cn0":181,"P":1158958445,"D":{"f":60,"i":2174},"lock":15,"sid":{"sat":21,"code":0}},{"L":{"f":157,"i":123358154},"flags":15,"cn0":187,"P":1173713404,"D":{"f":253,"i":-2478},"lock":15,"sid":{"sat":2,"code":0}},{"L":{"f":158,"i":128741551},"flags":15,"cn0":167,"P":1224935185,"D":{"f":18,"i":-397},"lock":15,"sid":{"sat":31,"code":0}},{"L":{"f":58,"i":107832328},"flags":15,"cn0":218,"P":1025990424,"D":{"f":212,"i":-1131},"lock":15,"sid":{"sat":25,"code":0}},{"L":{"f":29,"i":114122490},"flags":15,"cn0":208,"P":1085839301,"D":{"f":163,"i":-2969},"lock":15,"sid":{"sat":12,"code":0}},{"L":{"f":11,"i":110749034},"flags":15,"cn0":213,"P":1053741935,"D":{"f":218,"i":1484},"lock":15,"sid":{"sat":29,"code":0}},{"L":{"f":82,"i":84025211},"flags":15,"cn0":204,"P":1025990462,"D":{"f":41,"i":-880},"lock":15,"sid":{"sat":25,"code":1}},{"L":{"f":78,"i":88926647},"flags":15,"cn0":187,"P":1085839202,"D":{"f":169,"i":-2315},"lock":15,"sid":{"sat":12,"code":1}},{"L":{"f":148,"i":100318094},"flags":15,"cn0":153,"P":1224935081,"D":{"f":250,"i":-312},"lock":15,"sid":{"sat":31,"code":1}},{"L":{"f":113,"i":86297950},"flags":15,"cn0":195,"P":1053741868,"D":{"f":249,"i":1155},"lock":15,"sid":{"sat":29,"code":1}},{"L":{"f":51,"i":86155113},"flags":15,"cn0":194,"P":1051997358,"D":{"f":13,"i":-145},"lock":15,"sid":{"sat":5,"code":1}},{"L":{"f":250,"i":112927125},"flags":15,"cn0":213,"P":1056638289,"D":{"f":73,"i":1161},"lock":15,"sid":{"sat":11,"code":3}},{"L":{"f":159,"i":123372779},"flags":15,"cn0":176,"P":1155187636,"D":{"f":13,"i":-4408},"lock":15,"sid":{"sat":9,"code":3}}],"payload":"uBwvEAAAAAAyCEACNbQ+OxmXBghF/+nVDw8FAG1NFEX4oUIHS34IPLUPDxUA/HH1RcpLWgedUvb9uw8PAgARBwNJr3CsB55z/hKnDw8fABhfJz0IZG0GOpX71NoPDxkAxZe4QPpezQYdZ/Sj0A8PDABv084+auWZBgvMBdrVDw8dAD5fJz17HwIFUpD8KcwPDxkBYpe4QLfpTAVO9fapuw8PDAGpBgNJjrv6BZTI/vqZDw8fASzTzj5ezSQFcYME+cMPDx0BrjS0PmmfIgUzb/8Nwg8PBQFRBfs+lSG7BvqJBEnVDw8LA7TD2kTrhFoHn8juDbAPDwkD","header":{"n_obs":64,"t":{"ns_residual":0,"wn":2098,"tow":271523000}},"crc":62077} +{"length":249,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":52,"i":109781202},"flags":15,"cn0":172,"P":1026481619,"D":{"f":250,"i":-1210},"lock":15,"sid":{"sat":20,"code":3}},{"L":{"f":87,"i":114841016},"flags":15,"cn0":207,"P":1074169004,"D":{"f":58,"i":2195},"lock":15,"sid":{"sat":5,"code":3}},{"L":{"f":32,"i":111630290},"flags":15,"cn0":207,"P":1047077571,"D":{"f":148,"i":-3048},"lock":15,"sid":{"sat":10,"code":3}},{"L":{"f":253,"i":120450083},"flags":15,"cn0":181,"P":1124659837,"D":{"f":96,"i":-1322},"lock":15,"sid":{"sat":4,"code":3}},{"L":{"f":83,"i":113405638},"flags":15,"cn0":202,"P":1059627246,"D":{"f":117,"i":1623},"lock":15,"sid":{"sat":21,"code":3}},{"L":{"f":5,"i":95956616},"flags":15,"cn0":170,"P":1155187703,"D":{"f":136,"i":-3428},"lock":15,"sid":{"sat":9,"code":4}},{"L":{"f":55,"i":85385415},"flags":15,"cn0":204,"P":1026481918,"D":{"f":247,"i":-942},"lock":15,"sid":{"sat":20,"code":4}},{"L":{"f":108,"i":87832219},"flags":15,"cn0":199,"P":1056638573,"D":{"f":102,"i":903},"lock":15,"sid":{"sat":11,"code":4}},{"L":{"f":73,"i":89320794},"flags":15,"cn0":194,"P":1074169287,"D":{"f":219,"i":1706},"lock":15,"sid":{"sat":5,"code":4}},{"L":{"f":227,"i":93683388},"flags":15,"cn0":174,"P":1124660109,"D":{"f":17,"i":-1027},"lock":15,"sid":{"sat":4,"code":4}},{"L":{"f":85,"i":121593033},"flags":15,"cn0":199,"P":1167532897,"D":{"f":207,"i":-1500},"lock":15,"sid":{"sat":35,"code":12}},{"L":{"f":246,"i":129238183},"flags":15,"cn0":171,"P":1240941764,"D":{"f":58,"i":-3006},"lock":15,"sid":{"sat":26,"code":12}},{"L":{"f":9,"i":132926362},"flags":15,"cn0":156,"P":1276355287,"D":{"f":140,"i":2248},"lock":15,"sid":{"sat":34,"code":12}},{"L":{"f":152,"i":125162702},"flags":15,"cn0":187,"P":1201809067,"D":{"f":211,"i":-1305},"lock":15,"sid":{"sat":24,"code":12}}],"payload":"uBwvEAAAAAAyCEHT3S490iCLBjRG+/qsDw8UA6yEBkC4VdgGV5MIOs8PDwUDwyJpPtJXpwYgGPSUzw8PCgN98ghDI+wtB/3W+mC1Dw8EA+6gKD/GbsIGU1cGdcoPDxUD98PaRIguuAUFnPKIqg8PCQT+3i49x+AWBTdS/PfMDw8UBG0G+z6bNjwFbIcDZscPDwsEx4UGQFrtUgVJqgbbwg8PBQSN8whDvH6VBeP9+xGuDw8EBGEjl0XJXD8HVST6z8cPDyMMxET3SacEtAf2QvQ6qw8PGgzXohNMmkvsBwnICIycDw8iDKsmokfO1HUHmOf607sPDxgM","header":{"n_obs":65,"t":{"ns_residual":0,"wn":2098,"tow":271523000}},"crc":21509} +{"length":249,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":50,"i":134660594},"flags":15,"cn0":158,"P":1293007566,"D":{"f":176,"i":1321},"lock":15,"sid":{"sat":25,"code":12}},{"L":{"f":5,"i":121085871},"flags":15,"cn0":184,"P":1162663395,"D":{"f":213,"i":1612},"lock":15,"sid":{"sat":12,"code":12}},{"L":{"f":103,"i":124517488},"flags":15,"cn0":184,"P":1195613679,"D":{"f":117,"i":-293},"lock":15,"sid":{"sat":19,"code":12}},{"L":{"f":62,"i":124683531},"flags":15,"cn0":191,"P":1197208063,"D":{"f":194,"i":2386},"lock":15,"sid":{"sat":22,"code":12}},{"L":{"f":218,"i":93631284},"flags":15,"cn0":208,"P":1162663316,"D":{"f":118,"i":1246},"lock":15,"sid":{"sat":12,"code":13}},{"L":{"f":157,"i":116435129},"flags":15,"cn0":196,"P":1107843396,"D":{"f":73,"i":-1026},"lock":15,"sid":{"sat":12,"code":14}},{"L":{"f":123,"i":132465239},"flags":15,"cn0":193,"P":1260364757,"D":{"f":130,"i":1086},"lock":15,"sid":{"sat":25,"code":14}},{"L":{"f":109,"i":125413310},"flags":15,"cn0":190,"P":1193267905,"D":{"f":167,"i":1046},"lock":15,"sid":{"sat":11,"code":14}},{"L":{"f":165,"i":118429371},"flags":15,"cn0":205,"P":1126817880,"D":{"f":249,"i":-1747},"lock":15,"sid":{"sat":24,"code":14}},{"L":{"f":73,"i":143349535},"flags":15,"cn0":160,"P":1363925466,"D":{"f":149,"i":-3172},"lock":15,"sid":{"sat":31,"code":14}},{"L":{"f":136,"i":144543164},"flags":15,"cn0":154,"P":1375282491,"D":{"f":114,"i":-2136},"lock":15,"sid":{"sat":33,"code":14}},{"L":{"f":191,"i":101499337},"flags":15,"cn0":200,"P":1260364747,"D":{"f":98,"i":832},"lock":15,"sid":{"sat":25,"code":20}},{"L":{"f":6,"i":90744647},"flags":15,"cn0":215,"P":1126818420,"D":{"f":250,"i":-1339},"lock":15,"sid":{"sat":24,"code":20}},{"L":{"f":6,"i":96095891},"flags":15,"cn0":193,"P":1193267722,"D":{"f":47,"i":803},"lock":15,"sid":{"sat":11,"code":20}}],"payload":"uBwvEAAAAAAyCELOuhFN8sEGCDIpBbCeDw8ZDOPVTEWvnzcHBUwG1bgPDwwM751DR3D8awdn2/51uA8PEwz/8VtHC4VuBz5SCcK/Dw8WDJTVTEU0s5QF2t4EdtAPDwwNRFkIQrmo8Aad/vtJxA8PDA7Vox9LV0LlB3s+BILBDw8ZDsHSH0e+p3kHbRYEp74PDwsOWOApQ7sWDwelLfn5zQ8PGA7a2UtRH1eLCEmc85WgDw8fDjsl+VG8jZ0IiKj3cpoPDyEOy6MfS8nBDAa/QANiyA8PGRR04ilDR6doBQbF+vrXDw8YFArSH0eTTroFBiMDL8EPDwsU","header":{"n_obs":66,"t":{"ns_residual":0,"wn":2098,"tow":271523000}},"crc":31837} +{"length":62,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":209,"i":109839295},"flags":15,"cn0":174,"P":1363925546,"D":{"f":142,"i":-2430},"lock":15,"sid":{"sat":31,"code":20}},{"L":{"f":124,"i":89216558},"flags":15,"cn0":206,"P":1107843236,"D":{"f":12,"i":-786},"lock":15,"sid":{"sat":12,"code":20}},{"L":{"f":206,"i":110753923},"flags":15,"cn0":169,"P":1375282430,"D":{"f":221,"i":-1641},"lock":15,"sid":{"sat":33,"code":20}}],"payload":"uBwvEAAAAAAyCEMq2ktRvwOMBtGC9o6uDw8fFKRYCEIuVlEFfO78DM4PDwwU/iT5UYP4mQbOl/ndqQ8PIRQ=","header":{"n_obs":67,"t":{"ns_residual":0,"wn":2098,"tow":271523000}},"crc":17267} +{"length":9,"l2ca_bias":0,"preamble":85,"l2p_bias":0,"sender":22963,"msg_type":117,"payload":"/wAAAAAAAAAA","l1ca_bias":0,"mask":255,"crc":49809,"l1p_bias":0} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"Mgi4HC8QAAAAAAE=","wn":2098,"tow":271523000,"crc":50771} +{"length":16,"flags":17,"ns":999999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EbgcLxDkBwMZAxkE/smaOw==","day":25,"tow":271523000,"year":2020,"crc":18663,"minutes":25,"month":3,"seconds":4} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.215534864913376,"preamble":85,"sender":22963,"msg_type":522,"payload":"uBwvEEoCrO5l6kJAJ3dfFlaSXsBj8/tKLTcxwAECWwQPBg==","lat":37.83123572729944,"tow":271523000,"h_accuracy":513,"crc":6366,"lon":-122.28650435755536} +{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"uBwvEPv////6////8f////EAygIPAg==","n":-5,"d":-15,"tow":271523000,"h_accuracy":241,"crc":6773,"e":-6} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"uBwvEJsAhwBMAEgAcgAG","tow":271523000,"crc":36874,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"uBwvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271523000,"h_accuracy":0,"crc":64532,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"uBwvEP//","tow":271523000,"crc":6744} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":4,"flags":2147616000,"preamble":85,"sender":22963,"msg_type":65535,"payload":"AAUCgA==","crc":40942} +{"length":24,"z":3890655.0240602265,"preamble":85,"sender":22963,"msg_type":72,"payload":"UO0a3iqORMHK1UJhIkRQwc9nFIPvrk1B","crc":2168,"x":-2694229.735196747,"y":-4264073.519704292} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MggcHS8QAAAAAAE=","wn":2098,"tow":271523100,"crc":1313} +{"length":16,"flags":17,"ns":99999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"ERwdLxDkBwMZAxkF/uD1BQ==","day":25,"tow":271523100,"year":2020,"crc":8125,"minutes":25,"month":3,"seconds":5} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.216968234147515,"preamble":85,"sender":22963,"msg_type":522,"payload":"HB0vEMx8fu5l6kJAs0cuFlaSXsA47+06izcxwAECWwQPBg==","lat":37.831235706101864,"tow":271523100,"h_accuracy":513,"crc":19138,"lon":-122.28650431174792} +{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"HB0vEPn///8QAAAAAAAAAPEAygIPAg==","n":-7,"d":0,"tow":271523100,"h_accuracy":241,"crc":52458,"e":16} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"HB0vEJsAhwBMAEgAcgAG","tow":271523100,"crc":47583,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"HB0vEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271523100,"h_accuracy":0,"crc":24219,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"HB0vEP//","tow":271523100,"crc":22400} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgiAHS8QAAAAAAE=","wn":2098,"tow":271523200,"crc":23677} +{"length":16,"flags":17,"ns":199999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EYAdLxDkBwMZAxkF/sHrCw==","day":25,"tow":271523200,"year":2020,"crc":51606,"minutes":25,"month":3,"seconds":5} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.216038200941558,"preamble":85,"sender":22963,"msg_type":522,"payload":"gB0vECq4fu5l6kJA9bIiFlaSXsANu49HTjcxwAECWwQPBg==","lat":37.83123570620985,"tow":271523200,"h_accuracy":513,"crc":29817,"lon":-122.28650430096225} +{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"gB0vEA0AAAD8////BAAAAPEAygIPAg==","n":13,"d":4,"tow":271523200,"h_accuracy":241,"crc":10133,"e":-4} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"gB0vEJsAhwBMAEgAcgAG","tow":271523200,"crc":8112,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"gB0vEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271523200,"h_accuracy":0,"crc":41130,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"gB0vEP//","tow":271523200,"crc":37575} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgjkHS8QAAAAAAE=","wn":2098,"tow":271523300,"crc":14519} +{"length":16,"flags":17,"ns":299999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EeQdLxDkBwMZAxkF/qLhEQ==","day":25,"tow":271523300,"year":2020,"crc":31666,"minutes":25,"month":3,"seconds":5} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.21552081877759,"preamble":85,"sender":22963,"msg_type":522,"payload":"5B0vEG8XVu5l6kJAoWMGFlaSXsDEQVRfLDcxwAECWwQPBg==","lat":37.831235687291034,"tow":271523300,"h_accuracy":513,"crc":10686,"lon":-122.28650427459662} +{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"5B0vEPj///8GAAAAAAAAAPEAygIPAg==","n":-8,"d":0,"tow":271523300,"h_accuracy":241,"crc":6092,"e":6} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"5B0vEJsAhwBMAEgAcgAG","tow":271523300,"crc":13087,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"5B0vEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271523300,"h_accuracy":0,"crc":47132,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"5B0vEP//","tow":271523300,"crc":52094} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":237,"states":[{"cn0":213,"mesid":{"sat":5,"code":0}},{"cn0":181,"mesid":{"sat":21,"code":0}},{"cn0":186,"mesid":{"sat":2,"code":0}},{"cn0":166,"mesid":{"sat":31,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":218,"mesid":{"sat":25,"code":0}},{"cn0":208,"mesid":{"sat":12,"code":0}},{"cn0":213,"mesid":{"sat":29,"code":0}},{"cn0":206,"mesid":{"sat":18,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":205,"mesid":{"sat":131,"code":2}},{"cn0":204,"mesid":{"sat":25,"code":1}},{"cn0":187,"mesid":{"sat":12,"code":1}},{"cn0":152,"mesid":{"sat":31,"code":1}},{"cn0":197,"mesid":{"sat":18,"code":1}},{"cn0":195,"mesid":{"sat":29,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":194,"mesid":{"sat":5,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":213,"mesid":{"sat":100,"code":3}},{"cn0":176,"mesid":{"sat":98,"code":3}},{"cn0":173,"mesid":{"sat":102,"code":3}},{"cn0":207,"mesid":{"sat":101,"code":3}},{"cn0":207,"mesid":{"sat":93,"code":3}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":181,"mesid":{"sat":106,"code":3}},{"cn0":202,"mesid":{"sat":104,"code":3}},{"cn0":170,"mesid":{"sat":98,"code":4}},{"cn0":204,"mesid":{"sat":102,"code":4}},{"cn0":83,"mesid":{"sat":93,"code":4}},{"cn0":200,"mesid":{"sat":100,"code":4}},{"cn0":195,"mesid":{"sat":101,"code":4}},{"cn0":189,"mesid":{"sat":104,"code":4}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":174,"mesid":{"sat":106,"code":4}},{"cn0":199,"mesid":{"sat":35,"code":12}},{"cn0":171,"mesid":{"sat":26,"code":12}},{"cn0":156,"mesid":{"sat":34,"code":12}},{"cn0":187,"mesid":{"sat":24,"code":12}},{"cn0":158,"mesid":{"sat":25,"code":12}},{"cn0":184,"mesid":{"sat":12,"code":12}},{"cn0":183,"mesid":{"sat":19,"code":12}},{"cn0":192,"mesid":{"sat":22,"code":12}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":208,"mesid":{"sat":12,"code":13}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":197,"mesid":{"sat":12,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":193,"mesid":{"sat":25,"code":14}},{"cn0":190,"mesid":{"sat":11,"code":14}},{"cn0":205,"mesid":{"sat":24,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":160,"mesid":{"sat":31,"code":14}},{"cn0":154,"mesid":{"sat":33,"code":14}},{"cn0":200,"mesid":{"sat":25,"code":20}},{"cn0":215,"mesid":{"sat":24,"code":20}},{"cn0":193,"mesid":{"sat":11,"code":20}},{"cn0":174,"mesid":{"sat":31,"code":20}},{"cn0":206,"mesid":{"sat":12,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":168,"mesid":{"sat":33,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}}],"preamble":85,"sender":22963,"msg_type":97,"payload":"BQDVFQC1AgC6HwCmAAAAAAAAGQDaDADQHQDVEgDOAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwLNGQHMDAG7HwGYEgHFHQHDAAAABQHCAAAAAAAAAAAAAAAAZAPVYgOwZgOtZQPPXQPPAAAAagO1aAPKYgSqZgTMXQRTZATIZQTDaAS9AAAAagSuIwzHGgyrIgycGAy7GQyeDAy4Ewy3FgzAAAAADA3QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADA7FAAAAGQ7BCw6+GA7NAAAAHw6gIQ6aGRTIGBTXCxTBHxSuDBTOAAAAIRSoAAAA","crc":44062} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MghIHi8QAAAAAAE=","wn":2098,"tow":271523400,"crc":23964} +{"length":16,"flags":17,"ns":399999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EUgeLxDkBwMZAxkF/oPXFw==","day":25,"tow":271523400,"year":2020,"crc":64995,"minutes":25,"month":3,"seconds":5} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.219468160026842,"preamble":85,"sender":22963,"msg_type":522,"payload":"SB4vEAJqQ+5l6kJAuT/nFVaSXsAe1LkQLzgxwAECWwQPBg==","lat":37.83123567859367,"tow":271523400,"h_accuracy":513,"crc":45474,"lon":-122.286504245595} +{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"SB4vEAgAAAAEAAAAGAAAAPEAygIPAg==","n":8,"d":24,"tow":271523400,"h_accuracy":241,"crc":22057,"e":4} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"SB4vEJsAhwBMAEgAcgAG","tow":271523400,"crc":52045,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"SB4vEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271523400,"h_accuracy":0,"crc":65533,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"SB4vEP//","tow":271523400,"crc":53095} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":9,"l2ca_bias":0,"preamble":85,"l2p_bias":0,"sender":22963,"msg_type":117,"payload":"/wAAAAAAAAAA","l1ca_bias":0,"mask":255,"crc":49809,"l1p_bias":0} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgisHi8QAAAAAAE=","wn":2098,"tow":271523500,"crc":34532} +{"length":16,"flags":17,"ns":499999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EaweLxDkBwMZAxkF/mTNHQ==","day":25,"tow":271523500,"year":2020,"crc":60685,"minutes":25,"month":3,"seconds":5} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.21646376745587,"preamble":85,"sender":22963,"msg_type":522,"payload":"rB4vEJmfI+5l6kJASRrgFVaSXsDu/WErajcxwAECWwQPBg==","lat":37.83123566378999,"tow":271523500,"h_accuracy":513,"crc":1747,"lon":-122.28650423893954} +{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"rB4vEAAAAAD/////5/////EAygIPAg==","n":0,"d":-25,"tow":271523500,"h_accuracy":241,"crc":1364,"e":-1} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"rB4vEJsAhwBMAEgAcgAG","tow":271523500,"crc":46064,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"rB4vEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271523500,"h_accuracy":0,"crc":24030,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"rB4vEP//","tow":271523500,"crc":17150} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MggQHy8QAAAAAAE=","wn":2098,"tow":271523600,"crc":16279} +{"length":16,"flags":17,"ns":599999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"ERAfLxDkBwMZAxkF/kXDIw==","day":25,"tow":271523600,"year":2020,"crc":59507,"minutes":25,"month":3,"seconds":5} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.2222249625184,"preamble":85,"sender":22963,"msg_type":522,"payload":"EB8vEHpx6e1l6kJAUC7RFVaSXsARXzK84zgxwAECWwQPBg==","lat":37.83123563669774,"tow":271523600,"h_accuracy":513,"crc":28050,"lon":-122.28650422504256} +{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"EB8vEPf////8////HQAAAPEAygIPAg==","n":-9,"d":29,"tow":271523600,"h_accuracy":241,"crc":1316,"e":-4} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"EB8vEJsAhwBMAEgAcgAG","tow":271523600,"crc":62442,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"EB8vEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271523600,"h_accuracy":0,"crc":7348,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"EB8vEP//","tow":271523600,"crc":6368} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"Mgh0Hy8QAAAAAAE=","wn":2098,"tow":271523700,"crc":23389} +{"length":16,"flags":17,"ns":699999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EXQfLxDkBwMZAxkF/ia5KQ==","day":25,"tow":271523700,"year":2020,"crc":16447,"minutes":25,"month":3,"seconds":5} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.222607913061974,"preamble":85,"sender":22963,"msg_type":522,"payload":"dB8vEPl5xe1l6kJAvGWzFVaSXsCXbgrV/DgxwAECWwQPBg==","lat":37.83123561994939,"tow":271523700,"h_accuracy":513,"crc":57843,"lon":-122.28650419730451} +{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"dB8vEAIAAAAJAAAA8f////EAygIPAg==","n":2,"d":-15,"tow":271523700,"h_accuracy":241,"crc":63099,"e":9} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"dB8vEJsAhwBMAEgAcgAG","tow":271523700,"crc":57157,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"dB8vEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271523700,"h_accuracy":0,"crc":1026,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"dB8vEP//","tow":271523700,"crc":16729} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"message_type":63,"length":34,"data":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"preamble":85,"sender":22963,"msg_type":30583,"payload":"gwKTHi8QPwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA==","tow":271523475,"crc":58793,"sid":{"sat":131,"code":2}} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgjYHy8QAAAAAAE=","wn":2098,"tow":271523800,"crc":62979} +{"length":16,"flags":17,"ns":799999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EdgfLxDkBwMZAxkF/gevLw==","day":25,"tow":271523800,"year":2020,"crc":19755,"minutes":25,"month":3,"seconds":5} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.227271329084864,"preamble":85,"sender":22963,"msg_type":522,"payload":"2B8vEEN6kO1l6kJA+eioFVaSXsDqvC10LjoxwAECWwQPBg==","lat":37.83123559526987,"tow":271523800,"h_accuracy":513,"crc":26048,"lon":-122.2865041875374} +{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"2B8vEPn////+/////f////EAygIPAg==","n":-7,"d":-3,"tow":271523800,"h_accuracy":241,"crc":8481,"e":-2} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"2B8vEJsAhwBMAEgAcgAG","tow":271523800,"crc":43700,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"2B8vEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271523800,"h_accuracy":0,"crc":11736,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"2B8vEP//","tow":271523800,"crc":43922} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":237,"states":[{"cn0":213,"mesid":{"sat":5,"code":0}},{"cn0":180,"mesid":{"sat":21,"code":0}},{"cn0":186,"mesid":{"sat":2,"code":0}},{"cn0":165,"mesid":{"sat":31,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":218,"mesid":{"sat":25,"code":0}},{"cn0":207,"mesid":{"sat":12,"code":0}},{"cn0":212,"mesid":{"sat":29,"code":0}},{"cn0":206,"mesid":{"sat":18,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":205,"mesid":{"sat":131,"code":2}},{"cn0":204,"mesid":{"sat":25,"code":1}},{"cn0":187,"mesid":{"sat":12,"code":1}},{"cn0":152,"mesid":{"sat":31,"code":1}},{"cn0":197,"mesid":{"sat":18,"code":1}},{"cn0":195,"mesid":{"sat":29,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":194,"mesid":{"sat":5,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":213,"mesid":{"sat":11,"code":3}},{"cn0":176,"mesid":{"sat":9,"code":3}},{"cn0":173,"mesid":{"sat":20,"code":3}},{"cn0":208,"mesid":{"sat":5,"code":3}},{"cn0":208,"mesid":{"sat":10,"code":3}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":182,"mesid":{"sat":4,"code":3}},{"cn0":203,"mesid":{"sat":21,"code":3}},{"cn0":170,"mesid":{"sat":9,"code":4}},{"cn0":204,"mesid":{"sat":20,"code":4}},{"cn0":69,"mesid":{"sat":10,"code":4}},{"cn0":200,"mesid":{"sat":11,"code":4}},{"cn0":195,"mesid":{"sat":5,"code":4}},{"cn0":188,"mesid":{"sat":0,"code":4}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":175,"mesid":{"sat":4,"code":4}},{"cn0":199,"mesid":{"sat":35,"code":12}},{"cn0":171,"mesid":{"sat":26,"code":12}},{"cn0":157,"mesid":{"sat":34,"code":12}},{"cn0":187,"mesid":{"sat":24,"code":12}},{"cn0":158,"mesid":{"sat":25,"code":12}},{"cn0":184,"mesid":{"sat":12,"code":12}},{"cn0":184,"mesid":{"sat":19,"code":12}},{"cn0":192,"mesid":{"sat":22,"code":12}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":208,"mesid":{"sat":12,"code":13}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":196,"mesid":{"sat":12,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":192,"mesid":{"sat":25,"code":14}},{"cn0":189,"mesid":{"sat":11,"code":14}},{"cn0":205,"mesid":{"sat":24,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":159,"mesid":{"sat":31,"code":14}},{"cn0":154,"mesid":{"sat":33,"code":14}},{"cn0":201,"mesid":{"sat":25,"code":20}},{"cn0":215,"mesid":{"sat":24,"code":20}},{"cn0":193,"mesid":{"sat":11,"code":20}},{"cn0":174,"mesid":{"sat":31,"code":20}},{"cn0":206,"mesid":{"sat":12,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":169,"mesid":{"sat":33,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}}],"preamble":85,"sender":22963,"msg_type":97,"payload":"BQDVFQC0AgC6HwClAAAAAAAAGQDaDADPHQDUEgDOAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwLNGQHMDAG7HwGYEgHFHQHDAAAABQHCAAAAAAAAAAAAAAAACwPVCQOwFAOtBQPQCgPQAAAABAO2FQPLCQSqFATMCgRFCwTIBQTDAAS8AAAABASvIwzHGgyrIgydGAy7GQyeDAy4Ewy4FgzAAAAADA3QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADA7EAAAAGQ7ACw69GA7NAAAAHw6fIQ6aGRTJGBTXCxTBHxSuDBTOAAAAIRSpAAAA","crc":54534} +{"length":128,"preamble":85,"sender":22963,"msg_type":151,"payload":"AgAaHQUAKzUMAFEtFQB9GRkAbUYaAKEBHQChNx8AlQ4EAxUWBQMyIQkDXw4KA3EpCwOYJQwDqgMTAyIHFAMMMRUDlSUMDJQpEwwjIBQMDwIWDEMkGAyCIxkMnQ4aDGcVIgyOESMMIi0LDosyDA4PPBgObDYZDpcpHw5VESEOIA8=","crc":34187,"azel":[{"el":29,"az":26,"sid":{"sat":2,"code":0}},{"el":53,"az":43,"sid":{"sat":5,"code":0}},{"el":45,"az":81,"sid":{"sat":12,"code":0}},{"el":25,"az":125,"sid":{"sat":21,"code":0}},{"el":70,"az":109,"sid":{"sat":25,"code":0}},{"el":1,"az":161,"sid":{"sat":26,"code":0}},{"el":55,"az":161,"sid":{"sat":29,"code":0}},{"el":14,"az":149,"sid":{"sat":31,"code":0}},{"el":22,"az":21,"sid":{"sat":4,"code":3}},{"el":33,"az":50,"sid":{"sat":5,"code":3}},{"el":14,"az":95,"sid":{"sat":9,"code":3}},{"el":41,"az":113,"sid":{"sat":10,"code":3}},{"el":37,"az":152,"sid":{"sat":11,"code":3}},{"el":3,"az":170,"sid":{"sat":12,"code":3}},{"el":7,"az":34,"sid":{"sat":19,"code":3}},{"el":49,"az":12,"sid":{"sat":20,"code":3}},{"el":37,"az":149,"sid":{"sat":21,"code":3}},{"el":41,"az":148,"sid":{"sat":12,"code":12}},{"el":32,"az":35,"sid":{"sat":19,"code":12}},{"el":2,"az":15,"sid":{"sat":20,"code":12}},{"el":36,"az":67,"sid":{"sat":22,"code":12}},{"el":35,"az":130,"sid":{"sat":24,"code":12}},{"el":14,"az":157,"sid":{"sat":25,"code":12}},{"el":21,"az":103,"sid":{"sat":26,"code":12}},{"el":17,"az":142,"sid":{"sat":34,"code":12}},{"el":45,"az":34,"sid":{"sat":35,"code":12}},{"el":50,"az":139,"sid":{"sat":11,"code":14}},{"el":60,"az":15,"sid":{"sat":12,"code":14}},{"el":54,"az":108,"sid":{"sat":24,"code":14}},{"el":41,"az":151,"sid":{"sat":25,"code":14}},{"el":17,"az":85,"sid":{"sat":31,"code":14}},{"el":15,"az":32,"sid":{"sat":33,"code":14}}]} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"Mgg8IC8QAAAAAAE=","wn":2098,"tow":271523900,"crc":45669} +{"length":16,"flags":17,"ns":899999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"ETwgLxDkBwMZAxkF/uikNQ==","day":25,"tow":271523900,"year":2020,"crc":5698,"minutes":25,"month":3,"seconds":5} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.23245259429677,"preamble":85,"sender":22963,"msg_type":522,"payload":"PCAvENQFeO1l6kJAeKmZFVaSXsD/X2IDgjsxwAECWwQPBg==","lat":37.831235583882204,"tow":271523900,"h_accuracy":513,"crc":61107,"lon":-122.28650417333654} +{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"PCAvEAQAAAAFAAAACgAAAPEAygIPAg==","n":4,"d":10,"tow":271523900,"h_accuracy":241,"crc":21274,"e":5} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"PCAvEJsAhwBMAEgAcgAG","tow":271523900,"crc":4700,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"PCAvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271523900,"h_accuracy":0,"crc":51835,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"PCAvEP//","tow":271523900,"crc":20252} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":249,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":100,"i":110565878},"flags":15,"cn0":213,"P":1051999222,"D":{"f":92,"i":-188},"lock":15,"sid":{"sat":5,"code":0}},{"L":{"f":119,"i":121805179},"flags":15,"cn0":180,"P":1158937768,"D":{"f":135,"i":2171},"lock":15,"sid":{"sat":21,"code":0}},{"L":{"f":158,"i":123360632},"flags":15,"cn0":186,"P":1173736995,"D":{"f":92,"i":-2478},"lock":15,"sid":{"sat":2,"code":0}},{"L":{"f":7,"i":128741950},"flags":15,"cn0":165,"P":1224938948,"D":{"f":132,"i":-401},"lock":15,"sid":{"sat":31,"code":0}},{"L":{"f":188,"i":107833458},"flags":15,"cn0":218,"P":1026001182,"D":{"f":5,"i":-1132},"lock":15,"sid":{"sat":25,"code":0}},{"L":{"f":69,"i":114125459},"flags":15,"cn0":208,"P":1085867553,"D":{"f":173,"i":-2972},"lock":15,"sid":{"sat":12,"code":0}},{"L":{"f":33,"i":110747550},"flags":15,"cn0":212,"P":1053727813,"D":{"f":215,"i":1483},"lock":15,"sid":{"sat":29,"code":0}},{"L":{"f":58,"i":84026092},"flags":15,"cn0":204,"P":1026001210,"D":{"f":136,"i":-882},"lock":15,"sid":{"sat":25,"code":1}},{"L":{"f":234,"i":88928960},"flags":15,"cn0":187,"P":1085867455,"D":{"f":26,"i":-2314},"lock":15,"sid":{"sat":12,"code":1}},{"L":{"f":5,"i":100318405},"flags":15,"cn0":153,"P":1224938886,"D":{"f":192,"i":-313},"lock":15,"sid":{"sat":31,"code":1}},{"L":{"f":34,"i":86296794},"flags":15,"cn0":195,"P":1053727746,"D":{"f":44,"i":1155},"lock":15,"sid":{"sat":29,"code":1}},{"L":{"f":46,"i":86155259},"flags":15,"cn0":194,"P":1051999145,"D":{"f":210,"i":-148},"lock":15,"sid":{"sat":5,"code":1}},{"L":{"f":101,"i":112925965},"flags":15,"cn0":213,"P":1056627427,"D":{"f":80,"i":1159},"lock":15,"sid":{"sat":11,"code":3}},{"L":{"f":67,"i":123377186},"flags":15,"cn0":177,"P":1155228888,"D":{"f":102,"i":-4409},"lock":15,"sid":{"sat":9,"code":3}}],"payload":"oCAvEAAAAAAyCED2O7Q+9hmXBmRE/1zVDw8FAKj8E0V7mUIHd3sIh7QPDxUAI871RXhVWgeeUvZcug8PAgDEFQNJPnKsBwdv/oSlDw8fAB6JJz1yaG0GvJT7BdoPDxkAIQa5QJNqzQZFZPSt0A8PDABFnM4+nt+ZBiHLBdfUDw8dADqJJz3sIgIFOo78iMwPDxkBvwW5QMDyTAXq9vYauw8PDAGGFQNJxbz6BQXH/sCZDw8fAQKczj7ayCQFIoMELMMPDx0BqTu0PvufIgUubP/Swg8PBQHj2vo+DR27BmWHBFDVDw8LA9hk20QilloHQ8fuZrEPDwkD","header":{"n_obs":64,"t":{"ns_residual":0,"wn":2098,"tow":271524000}},"crc":57299} +{"length":249,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":82,"i":109782412},"flags":15,"cn0":173,"P":1026492912,"D":{"f":117,"i":-1212},"lock":15,"sid":{"sat":20,"code":3}},{"L":{"f":70,"i":114838822},"flags":15,"cn0":208,"P":1074148483,"D":{"f":156,"i":2192},"lock":15,"sid":{"sat":5,"code":3}},{"L":{"f":123,"i":111633337},"flags":15,"cn0":208,"P":1047106166,"D":{"f":53,"i":-3050},"lock":15,"sid":{"sat":10,"code":3}},{"L":{"f":26,"i":120451405},"flags":15,"cn0":182,"P":1124672221,"D":{"f":232,"i":-1324},"lock":15,"sid":{"sat":4,"code":3}},{"L":{"f":190,"i":113404015},"flags":15,"cn0":202,"P":1059612090,"D":{"f":73,"i":1621},"lock":15,"sid":{"sat":21,"code":3}},{"L":{"f":102,"i":95960043},"flags":15,"cn0":170,"P":1155229014,"D":{"f":53,"i":-3429},"lock":15,"sid":{"sat":9,"code":4}},{"L":{"f":108,"i":85386356},"flags":15,"cn0":204,"P":1026493250,"D":{"f":196,"i":-943},"lock":15,"sid":{"sat":20,"code":4}},{"L":{"f":190,"i":87831316},"flags":15,"cn0":200,"P":1056627714,"D":{"f":21,"i":901},"lock":15,"sid":{"sat":11,"code":4}},{"L":{"f":200,"i":89319087},"flags":15,"cn0":195,"P":1074148782,"D":{"f":74,"i":1705},"lock":15,"sid":{"sat":5,"code":4}},{"L":{"f":108,"i":93684416},"flags":15,"cn0":175,"P":1124672433,"D":{"f":135,"i":-1028},"lock":15,"sid":{"sat":4,"code":4}},{"L":{"f":71,"i":121594532},"flags":15,"cn0":199,"P":1167547284,"D":{"f":5,"i":-1500},"lock":15,"sid":{"sat":35,"code":12}},{"L":{"f":50,"i":129241191},"flags":15,"cn0":171,"P":1240970643,"D":{"f":69,"i":-3007},"lock":15,"sid":{"sat":26,"code":12}},{"L":{"f":107,"i":132924112},"flags":15,"cn0":156,"P":1276333682,"D":{"f":171,"i":2249},"lock":15,"sid":{"sat":34,"code":12}},{"L":{"f":112,"i":125164007},"flags":15,"cn0":187,"P":1201821593,"D":{"f":209,"i":-1308},"lock":15,"sid":{"sat":24,"code":12}}],"payload":"oCAvEAAAAAAyCEHwCS89jCWLBlJE+3WtDw8UA4M0BkAmTdgGRpAInNAPDwUDdpJpPrljpwZ7FvQ10A8PCgPdIglDTfEtBxrU+ui2Dw8EA7plKD9vaMIGvlUGScoPDxUDVmXbROs7uAVmm/I1qg8PCQRCCy89dOQWBWxR/MTMDw8UBALc+j4UMzwFvoUDFcgPDwsErjUGQK/mUgXIqQZKww8PBQSxIwlDwIKVBWz8+4evDw8EBJRbl0WkYj8HRyT6BccPDyMMk7X3SWcQtAcyQfRFqw8PGgxyThNM0ELsB2vJCKucDw8iDJlXokfn2XUHcOT60bsPDxgM","header":{"n_obs":65,"t":{"ns_residual":0,"wn":2098,"tow":271524000}},"crc":10131} +{"length":249,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":210,"i":134659271},"flags":15,"cn0":158,"P":1292994863,"D":{"f":133,"i":1320},"lock":15,"sid":{"sat":25,"code":12}},{"L":{"f":168,"i":121084258},"flags":15,"cn0":184,"P":1162647905,"D":{"f":109,"i":1610},"lock":15,"sid":{"sat":12,"code":12}},{"L":{"f":236,"i":124517780},"flags":15,"cn0":184,"P":1195616484,"D":{"f":210,"i":-295},"lock":15,"sid":{"sat":19,"code":12}},{"L":{"f":6,"i":124681145},"flags":15,"cn0":192,"P":1197185148,"D":{"f":67,"i":2384},"lock":15,"sid":{"sat":22,"code":12}},{"L":{"f":22,"i":93630038},"flags":15,"cn0":208,"P":1162647839,"D":{"f":249,"i":1245},"lock":15,"sid":{"sat":12,"code":13}},{"L":{"f":6,"i":116436156},"flags":15,"cn0":196,"P":1107853164,"D":{"f":55,"i":-1027},"lock":15,"sid":{"sat":12,"code":14}},{"L":{"f":144,"i":132464153},"flags":15,"cn0":192,"P":1260354427,"D":{"f":23,"i":1084},"lock":15,"sid":{"sat":25,"code":14}},{"L":{"f":31,"i":125412263},"flags":15,"cn0":189,"P":1193257947,"D":{"f":217,"i":1046},"lock":15,"sid":{"sat":11,"code":14}},{"L":{"f":207,"i":118431117},"flags":15,"cn0":204,"P":1126834494,"D":{"f":159,"i":-1748},"lock":15,"sid":{"sat":24,"code":14}},{"L":{"f":196,"i":143352706},"flags":15,"cn0":159,"P":1363955629,"D":{"f":177,"i":-3173},"lock":15,"sid":{"sat":31,"code":14}},{"L":{"f":198,"i":144545303},"flags":15,"cn0":153,"P":1375302856,"D":{"f":187,"i":-2142},"lock":15,"sid":{"sat":33,"code":14}},{"L":{"f":173,"i":101498505},"flags":15,"cn0":201,"P":1260354414,"D":{"f":71,"i":831},"lock":15,"sid":{"sat":25,"code":20}},{"L":{"f":254,"i":90745984},"flags":15,"cn0":215,"P":1126835034,"D":{"f":201,"i":-1340},"lock":15,"sid":{"sat":24,"code":20}},{"L":{"f":136,"i":96095088},"flags":15,"cn0":194,"P":1193257759,"D":{"f":232,"i":801},"lock":15,"sid":{"sat":11,"code":20}}],"payload":"oCAvEAAAAAAyCEIviRFNx7wGCNIoBYWeDw8ZDGGZTEVimTcHqEoGbbgPDwwM5KhDR5T9awfs2f7SuA8PEwx8mFtHuXtuBwZQCUPADw8WDB+ZTEVWrpQFFt0E+dAPDwwNbH8IQrys8AYG/fs3xA8PDA57ex9LGT7lB5A8BBfADw8ZDturH0eno3kHHxYE2b0PDwsOPiEqQ40dDwfPLPmfzA8PGA6tT0xRgmOLCMSb87GfDw8fDsh0+VEXlp0IxqL3u5kPDyEObnsfS4m+DAatPwNHyQ8PGRRaIypDgKxoBf7E+snXDw8YFB+rH0dwS7oFiCED6MIPDwsU","header":{"n_obs":66,"t":{"ns_residual":0,"wn":2098,"tow":271524000}},"crc":7312} +{"length":62,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":235,"i":109841725},"flags":15,"cn0":174,"P":1363955724,"D":{"f":136,"i":-2433},"lock":15,"sid":{"sat":31,"code":20}},{"L":{"f":245,"i":89217344},"flags":15,"cn0":206,"P":1107853004,"D":{"f":2,"i":-787},"lock":15,"sid":{"sat":12,"code":20}},{"L":{"f":4,"i":110755563},"flags":15,"cn0":169,"P":1375302784,"D":{"f":202,"i":-1642},"lock":15,"sid":{"sat":33,"code":20}}],"payload":"oCAvEAAAAAAyCEMMUExRPQ2MBut/9oiuDw8fFMx+CEJAWVEF9e38As4PDwwUgHT5Uev+mQYElvnKqQ8PIRQ=","header":{"n_obs":67,"t":{"ns_residual":0,"wn":2098,"tow":271524000}},"crc":60117} +{"length":9,"l2ca_bias":0,"preamble":85,"l2p_bias":0,"sender":22963,"msg_type":117,"payload":"/wAAAAAAAAAA","l1ca_bias":0,"mask":255,"crc":49809,"l1p_bias":0} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgigIC8QAAAAAAE=","wn":2098,"tow":271524000,"crc":60217} +{"length":16,"flags":17,"ns":999999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EaAgLxDkBwMZAxkF/smaOw==","day":25,"tow":271524000,"year":2020,"crc":50831,"minutes":25,"month":3,"seconds":5} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.232199419751563,"preamble":85,"sender":22963,"msg_type":522,"payload":"oCAvEFzPe+1l6kJAYWaeFVaSXsCv+9FrcTsxwAECWwQPBg==","lat":37.83123558564577,"tow":271524000,"h_accuracy":513,"crc":62576,"lon":-122.28650417774908} +{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"oCAvEAwAAAACAAAACgAAAPEAygIPAg==","n":12,"d":10,"tow":271524000,"h_accuracy":241,"crc":11330,"e":2} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"oCAvEJsAhwBMAEgAcgAG","tow":271524000,"crc":46131,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"oCAvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271524000,"h_accuracy":0,"crc":13386,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"oCAvEP//","tow":271524000,"crc":35419} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":4,"flags":2147616000,"preamble":85,"sender":22963,"msg_type":65535,"payload":"AAUCgA==","crc":40942} +{"length":24,"z":3890655.0240602265,"preamble":85,"sender":22963,"msg_type":72,"payload":"UO0a3iqORMHK1UJhIkRQwc9nFIPvrk1B","crc":2168,"x":-2694229.735196747,"y":-4264073.519704292} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"bWFpbgAAAAAAAAAAAAAAAAAAAAAAAAx1AAA=","name":"main\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":47991,"stack_free":29964,"cpu":0} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"aWRsZQAAAAAAAAAAAAAAAAAAAABGAXwAAAA=","name":"idle\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":2544,"stack_free":124,"cpu":326} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"cnBtc2cAAAAAAAAAAAAAAAAAAAABANwNAAA=","name":"rpmsg\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":58151,"stack_free":3548,"cpu":1} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"U0JQAAAAAAAAAAAAAAAAAAAAAAAAAPz/AAA=","name":"SBP\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":51784,"stack_free":65532,"cpu":0} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"TkFQAAAAAAAAAAAAAAAAAAAAAAAAAASAAAA=","name":"NAP\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":33651,"stack_free":32772,"cpu":0} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"bWFuYWdlIFBWAAAAAAAAAAAAAAAAABQEAAA=","name":"manage PV\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":22620,"stack_free":1044,"cpu":0} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"SU1VAAAAAAAAAAAAAAAAAAAAAAAAAPQHAAA=","name":"IMU\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":14252,"stack_free":2036,"cpu":0} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"SU1VIGF1eAAAAAAAAAAAAAAAAAAAAEwIAAA=","name":"IMU aux\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":18976,"stack_free":2124,"cpu":0} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"bmRiAAAAAAAAAAAAAAAAAAAAAAAAAFAMAAA=","name":"ndb\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":26120,"stack_free":3152,"cpu":0} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"TkFQIFRyYWNraW5nAAAAAAAAAAApAdR3AAA=","name":"NAP Tracking\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":25570,"stack_free":30676,"cpu":297} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"ZGVjb2RlAAAAAAAAAAAAAAAAAAAIANQGAAA=","name":"decode\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":40082,"stack_free":1748,"cpu":8} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"bWFuYWdlIGFjcQAAAAAAAAAAAADLAKR3AAA=","name":"manage acq\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":38636,"stack_free":30628,"cpu":203} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"c3lzdGVtIG1vbml0b3IAAAAAAAAAACwGAAA=","name":"system monitor\u0000\u0000\u0000\u0000\u0000\u0000","crc":58531,"stack_free":1580,"cpu":0} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"V2F0Y2hkb2cAAAAAAAAAAAAAAAAAAOQDAAA=","name":"Watchdog\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":44438,"stack_free":996,"cpu":0} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"c3RhcmxpbmcAAAAAAAAAAAAAAACYAPz/AAA=","name":"starling\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":28732,"stack_free":65532,"cpu":152} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"bWVfY2FsY19wdnQAAAAAAAAAAAAJAIwjAAA=","name":"me_calc_pvt\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":57561,"stack_free":9100,"cpu":9} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"UFBTAAAAAAAAAAAAAAAAAAAAAAAAAEgHAAA=","name":"PPS\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":38576,"stack_free":1864,"cpu":0} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"c3BlY3RydW0gYW5hbHl6ZXIAAAAAANQPAAA=","name":"spectrum analyzer\u0000\u0000\u0000","crc":50933,"stack_free":4052,"cpu":0} +{"length":51,"text":"GLO L2OF ME 1 [+1490ms] low CN0 too long, dropping","preamble":85,"sender":22963,"msg_type":1025,"payload":"BkdMTyBMMk9GIE1FIDEgWysxNDkwbXNdIGxvdyBDTjAgdG9vIGxvbmcsIGRyb3BwaW5n","crc":56293,"level":6} +{"cpu_vint":989,"length":10,"fe_temperature":5641,"preamble":85,"sender":22963,"cpu_vaux":1779,"msg_type":181,"payload":"6hbdA/MGRRUJFg==","dev_vin":5866,"crc":43392,"cpu_temperature":5445} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MggEIS8QAAAAAAE=","wn":2098,"tow":271524100,"crc":10315} +{"length":16,"flags":17,"ns":99999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EQQhLxDkBwMZAxkG/uD1BQ==","day":25,"tow":271524100,"year":2020,"crc":54614,"minutes":25,"month":3,"seconds":6} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.236095339410056,"preamble":85,"sender":22963,"msg_type":522,"payload":"BCEvEGBHR+1l6kJA64GOFVaSXsAUgYG+cDwxwAECWwQPBg==","lat":37.83123556118403,"tow":271524100,"h_accuracy":513,"crc":20208,"lon":-122.2865041629481} +{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"BCEvEPv///8GAAAACgAAAPEAygIPAg==","n":-5,"d":10,"tow":271524100,"h_accuracy":241,"crc":44454,"e":6} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"BCEvEJsAhwBMAEgAcgAG","tow":271524100,"crc":40422,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"BCEvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271524100,"h_accuracy":0,"crc":38597,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"BCEvEP//","tow":271524100,"crc":51075} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MghoIS8QAAAAAAE=","wn":2098,"tow":271524200,"crc":25982} +{"length":16,"flags":17,"ns":199999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EWghLxDkBwMZAxkG/sHrCw==","day":25,"tow":271524200,"year":2020,"crc":44792,"minutes":25,"month":3,"seconds":6} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.237315995219863,"preamble":85,"sender":22963,"msg_type":522,"payload":"aCEvEBpvGu1l6kJA6deBFVaSXsB5Sba9wDwxwAECWwQPBg==","lat":37.831235540301535,"tow":271524200,"h_accuracy":513,"crc":25736,"lon":-122.28650415115375} +{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"aCEvEPz///8FAAAA+P////EAygIPAg==","n":-4,"d":-8,"tow":271524200,"h_accuracy":241,"crc":52985,"e":5} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"aCEvEJsAhwBMAEgAcgAG","tow":271524200,"crc":38412,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"aCEvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271524200,"h_accuracy":0,"crc":53456,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"aCEvEP//","tow":271524200,"crc":37752} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgjMIS8QAAAAAAE=","wn":2098,"tow":271524300,"crc":57823} +{"length":16,"flags":17,"ns":299999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EcwhLxDkBwMZAxkG/qLhEQ==","day":25,"tow":271524300,"year":2020,"crc":25287,"minutes":25,"month":3,"seconds":6} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.240072067185107,"preamble":85,"sender":22963,"msg_type":522,"payload":"zCEvEMAYA+1l6kJARyKCFVaSXsA/Pu1cdT0xwAECWwQPBg==","lat":37.83123552943425,"tow":271524300,"h_accuracy":513,"crc":4043,"lon":-122.2865041514243} +{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"zCEvEP7////1////6f////EAygIPAg==","n":-2,"d":-23,"tow":271524300,"h_accuracy":241,"crc":1262,"e":-11} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"zCEvEJsAhwBMAEgAcgAG","tow":271524300,"crc":50360,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"zCEvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271524300,"h_accuracy":0,"crc":42921,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"zCEvEP//","tow":271524300,"crc":29937} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":237,"states":[{"cn0":213,"mesid":{"sat":5,"code":0}},{"cn0":180,"mesid":{"sat":21,"code":0}},{"cn0":186,"mesid":{"sat":2,"code":0}},{"cn0":165,"mesid":{"sat":31,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":218,"mesid":{"sat":25,"code":0}},{"cn0":208,"mesid":{"sat":12,"code":0}},{"cn0":212,"mesid":{"sat":29,"code":0}},{"cn0":206,"mesid":{"sat":18,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":205,"mesid":{"sat":131,"code":2}},{"cn0":204,"mesid":{"sat":25,"code":1}},{"cn0":187,"mesid":{"sat":12,"code":1}},{"cn0":153,"mesid":{"sat":31,"code":1}},{"cn0":197,"mesid":{"sat":18,"code":1}},{"cn0":195,"mesid":{"sat":29,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":194,"mesid":{"sat":5,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":213,"mesid":{"sat":100,"code":3}},{"cn0":177,"mesid":{"sat":98,"code":3}},{"cn0":173,"mesid":{"sat":102,"code":3}},{"cn0":208,"mesid":{"sat":101,"code":3}},{"cn0":208,"mesid":{"sat":93,"code":3}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":182,"mesid":{"sat":106,"code":3}},{"cn0":202,"mesid":{"sat":104,"code":3}},{"cn0":170,"mesid":{"sat":98,"code":4}},{"cn0":204,"mesid":{"sat":102,"code":4}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":200,"mesid":{"sat":100,"code":4}},{"cn0":195,"mesid":{"sat":101,"code":4}},{"cn0":188,"mesid":{"sat":104,"code":4}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":175,"mesid":{"sat":106,"code":4}},{"cn0":199,"mesid":{"sat":35,"code":12}},{"cn0":171,"mesid":{"sat":26,"code":12}},{"cn0":157,"mesid":{"sat":34,"code":12}},{"cn0":188,"mesid":{"sat":24,"code":12}},{"cn0":159,"mesid":{"sat":25,"code":12}},{"cn0":184,"mesid":{"sat":12,"code":12}},{"cn0":184,"mesid":{"sat":19,"code":12}},{"cn0":192,"mesid":{"sat":22,"code":12}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":208,"mesid":{"sat":12,"code":13}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":195,"mesid":{"sat":12,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":191,"mesid":{"sat":25,"code":14}},{"cn0":188,"mesid":{"sat":11,"code":14}},{"cn0":204,"mesid":{"sat":24,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":159,"mesid":{"sat":31,"code":14}},{"cn0":151,"mesid":{"sat":33,"code":14}},{"cn0":201,"mesid":{"sat":25,"code":20}},{"cn0":215,"mesid":{"sat":24,"code":20}},{"cn0":194,"mesid":{"sat":11,"code":20}},{"cn0":174,"mesid":{"sat":31,"code":20}},{"cn0":206,"mesid":{"sat":12,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":169,"mesid":{"sat":33,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}}],"preamble":85,"sender":22963,"msg_type":97,"payload":"BQDVFQC0AgC6HwClAAAAAAAAGQDaDADQHQDUEgDOAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwLNGQHMDAG7HwGZEgHFHQHDAAAABQHCAAAAAAAAAAAAAAAAZAPVYgOxZgOtZQPQXQPQAAAAagO2aAPKYgSqZgTMAAAAZATIZQTDaAS8AAAAagSvIwzHGgyrIgydGAy8GQyfDAy4Ewy4FgzAAAAADA3QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADA7DAAAAGQ6/Cw68GA7MAAAAHw6fIQ6XGRTJGBTXCxTCHxSuDBTOAAAAIRSpAAAA","crc":2959} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MggwIi8QAAAAAAE=","wn":2098,"tow":271524400,"crc":35027} +{"length":16,"flags":17,"ns":399999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"ETAiLxDkBwMZAxkG/oPXFw==","day":25,"tow":271524400,"year":2020,"crc":32789,"minutes":25,"month":3,"seconds":6} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.24831418378895,"preamble":85,"sender":22963,"msg_type":522,"payload":"MCIvEB/z9exl6kJAYmV2FVaSXsCogbKEkT8xwAECWwQPBg==","lat":37.83123552331221,"tow":271524400,"h_accuracy":513,"crc":24576,"lon":-122.28650414049255} +{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"MCIvEAgAAAD8////FQAAAPEAygIPAg==","n":8,"d":21,"tow":271524400,"h_accuracy":241,"crc":62510,"e":-4} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"MCIvEJsAhwBMAEgAcgAG","tow":271524400,"crc":22633,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"MCIvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271524400,"h_accuracy":0,"crc":34900,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"MCIvEP//","tow":271524400,"crc":124} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":9,"l2ca_bias":0,"preamble":85,"l2p_bias":0,"sender":22963,"msg_type":117,"payload":"/wAAAAAAAAAA","l1ca_bias":0,"mask":255,"crc":49809,"l1p_bias":0} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgiUIi8QAAAAAAE=","wn":2098,"tow":271524500,"crc":3186} +{"length":16,"flags":17,"ns":499999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EZQiLxDkBwMZAxkG/mTNHQ==","day":25,"tow":271524500,"year":2020,"crc":47858,"minutes":25,"month":3,"seconds":6} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.256784350944105,"preamble":85,"sender":22963,"msg_type":522,"payload":"lCIvEJ7o+Oxl6kJAKqdhFVaSXsD1bYWevEExwAECWwQPBg==","lat":37.831235524690086,"tow":271524500,"h_accuracy":513,"crc":48494,"lon":-122.28650412117409} +{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"lCIvEAEAAAADAAAAFwAAAPEAygIPAg==","n":1,"d":23,"tow":271524500,"h_accuracy":241,"crc":28944,"e":3} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"lCIvEJsAhwBMAEgAcgAG","tow":271524500,"crc":2781,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"lCIvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271524500,"h_accuracy":0,"crc":65325,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"lCIvEP//","tow":271524500,"crc":59381} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"Mgj4Ii8QAAAAAAE=","wn":2098,"tow":271524600,"crc":16711} +{"length":16,"flags":17,"ns":599999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EfgiLxDkBwMZAxkG/kXDIw==","day":25,"tow":271524600,"year":2020,"crc":62588,"minutes":25,"month":3,"seconds":6} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.26014891570164,"preamble":85,"sender":22963,"msg_type":522,"payload":"+CIvENhC2Oxl6kJA2iBLFVaSXsBGB40emUIxwAECWwQPBg==","lat":37.831235509487385,"tow":271524600,"h_accuracy":513,"crc":58806,"lon":-122.28650410019637} +{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"+CIvEPT///8GAAAA7v////EAygIPAg==","n":-12,"d":-18,"tow":271524600,"h_accuracy":241,"crc":15604,"e":6} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"+CIvEJsAhwBMAEgAcgAG","tow":271524600,"crc":311,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"+CIvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271524600,"h_accuracy":0,"crc":47416,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"+CIvEP//","tow":271524600,"crc":45838} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"message_type":26,"length":34,"data":[35,3,216,30,128,244,6,160,52,129,100,7,32,42,0,208,34,192,246,7,160,53,1,168,11,48,0],"preamble":85,"sender":22963,"msg_type":30583,"payload":"gwJ1Ii8QGiMD2B6A9AagNIFkByAqANAiwPYHoDUBqAswAA==","tow":271524469,"crc":49271,"sid":{"sat":131,"code":2}} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MghcIy8QAAAAAAE=","wn":2098,"tow":271524700,"crc":33333} +{"length":16,"flags":17,"ns":699999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EVwjLxDkBwMZAxkG/ia5KQ==","day":25,"tow":271524700,"year":2020,"crc":22858,"minutes":25,"month":3,"seconds":6} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.268872786058115,"preamble":85,"sender":22963,"msg_type":522,"payload":"XCMvEBqG1exl6kJAC68tFVaSXsBt587Y1EQxwAECWwQPBg==","lat":37.83123550821274,"tow":271524700,"h_accuracy":513,"crc":18634,"lon":-122.28650407277398} +{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"XCMvEP7///8OAAAAHAAAAPEAygIPAg==","n":-2,"d":28,"tow":271524700,"h_accuracy":241,"crc":11264,"e":14} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"XCMvEJsAhwBMAEgAcgAG","tow":271524700,"crc":10466,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"XCMvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271524700,"h_accuracy":0,"crc":7095,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"XCMvEP//","tow":271524700,"crc":65238} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgjAIy8QAAAAAAE=","wn":2098,"tow":271524800,"crc":56169} +{"length":16,"flags":17,"ns":799999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EcAjLxDkBwMZAxkG/gevLw==","day":25,"tow":271524800,"year":2020,"crc":34752,"minutes":25,"month":3,"seconds":6} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.27523152348569,"preamble":85,"sender":22963,"msg_type":522,"payload":"wCMvEFAC4+xl6kJAx9AZFVaSXsAFM7iSdUYxwAECWwQPBg==","lat":37.83123551449228,"tow":271524800,"h_accuracy":513,"crc":52464,"lon":-122.28650405427025} +{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"wCMvEAYAAAD/////AQAAAPEAygIPAg==","n":6,"d":1,"tow":271524800,"h_accuracy":241,"crc":56439,"e":-1} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"wCMvEJsAhwBMAEgAcgAG","tow":271524800,"crc":36493,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"wCMvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271524800,"h_accuracy":0,"crc":58758,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"wCMvEP//","tow":271524800,"crc":15249} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":237,"states":[{"cn0":213,"mesid":{"sat":5,"code":0}},{"cn0":181,"mesid":{"sat":21,"code":0}},{"cn0":186,"mesid":{"sat":2,"code":0}},{"cn0":166,"mesid":{"sat":31,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":218,"mesid":{"sat":25,"code":0}},{"cn0":208,"mesid":{"sat":12,"code":0}},{"cn0":213,"mesid":{"sat":29,"code":0}},{"cn0":206,"mesid":{"sat":18,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":205,"mesid":{"sat":131,"code":2}},{"cn0":205,"mesid":{"sat":25,"code":1}},{"cn0":187,"mesid":{"sat":12,"code":1}},{"cn0":153,"mesid":{"sat":31,"code":1}},{"cn0":197,"mesid":{"sat":18,"code":1}},{"cn0":195,"mesid":{"sat":29,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":194,"mesid":{"sat":5,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":214,"mesid":{"sat":11,"code":3}},{"cn0":178,"mesid":{"sat":9,"code":3}},{"cn0":173,"mesid":{"sat":20,"code":3}},{"cn0":208,"mesid":{"sat":5,"code":3}},{"cn0":208,"mesid":{"sat":10,"code":3}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":182,"mesid":{"sat":4,"code":3}},{"cn0":203,"mesid":{"sat":21,"code":3}},{"cn0":170,"mesid":{"sat":9,"code":4}},{"cn0":205,"mesid":{"sat":20,"code":4}},{"cn0":78,"mesid":{"sat":10,"code":4}},{"cn0":200,"mesid":{"sat":11,"code":4}},{"cn0":195,"mesid":{"sat":5,"code":4}},{"cn0":189,"mesid":{"sat":0,"code":4}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":175,"mesid":{"sat":4,"code":4}},{"cn0":200,"mesid":{"sat":35,"code":12}},{"cn0":171,"mesid":{"sat":26,"code":12}},{"cn0":158,"mesid":{"sat":34,"code":12}},{"cn0":188,"mesid":{"sat":24,"code":12}},{"cn0":159,"mesid":{"sat":25,"code":12}},{"cn0":184,"mesid":{"sat":12,"code":12}},{"cn0":185,"mesid":{"sat":19,"code":12}},{"cn0":192,"mesid":{"sat":22,"code":12}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":208,"mesid":{"sat":12,"code":13}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":195,"mesid":{"sat":12,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":192,"mesid":{"sat":25,"code":14}},{"cn0":189,"mesid":{"sat":11,"code":14}},{"cn0":204,"mesid":{"sat":24,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":159,"mesid":{"sat":31,"code":14}},{"cn0":153,"mesid":{"sat":33,"code":14}},{"cn0":201,"mesid":{"sat":25,"code":20}},{"cn0":215,"mesid":{"sat":24,"code":20}},{"cn0":194,"mesid":{"sat":11,"code":20}},{"cn0":175,"mesid":{"sat":31,"code":20}},{"cn0":206,"mesid":{"sat":12,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":169,"mesid":{"sat":33,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}}],"preamble":85,"sender":22963,"msg_type":97,"payload":"BQDVFQC1AgC6HwCmAAAAAAAAGQDaDADQHQDVEgDOAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwLNGQHNDAG7HwGZEgHFHQHDAAAABQHCAAAAAAAAAAAAAAAACwPWCQOyFAOtBQPQCgPQAAAABAO2FQPLCQSqFATNCgROCwTIBQTDAAS9AAAABASvIwzIGgyrIgyeGAy8GQyfDAy4Ewy5FgzAAAAADA3QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADA7DAAAAGQ7ACw69GA7MAAAAHw6fIQ6ZGRTJGBTXCxTCHxSvDBTOAAAAIRSpAAAA","crc":4344} +{"length":128,"preamble":85,"sender":22963,"msg_type":151,"payload":"AgAaHQUAKzUMAFEtFQB9GRkAbUYaAKEBHQChNx8AlQ4EAxUWBQMyIQkDXw4KA3EpCwOYJQwDqgMTAyIHFAMMMRUDlSUMDJQpEwwjIBQMDwIWDEMkGAyCIxkMnQ4aDGcVIgyOESMMIi0LDosyDA4PPBgObDYZDpcpHw5VESEOIA8=","crc":34187,"azel":[{"el":29,"az":26,"sid":{"sat":2,"code":0}},{"el":53,"az":43,"sid":{"sat":5,"code":0}},{"el":45,"az":81,"sid":{"sat":12,"code":0}},{"el":25,"az":125,"sid":{"sat":21,"code":0}},{"el":70,"az":109,"sid":{"sat":25,"code":0}},{"el":1,"az":161,"sid":{"sat":26,"code":0}},{"el":55,"az":161,"sid":{"sat":29,"code":0}},{"el":14,"az":149,"sid":{"sat":31,"code":0}},{"el":22,"az":21,"sid":{"sat":4,"code":3}},{"el":33,"az":50,"sid":{"sat":5,"code":3}},{"el":14,"az":95,"sid":{"sat":9,"code":3}},{"el":41,"az":113,"sid":{"sat":10,"code":3}},{"el":37,"az":152,"sid":{"sat":11,"code":3}},{"el":3,"az":170,"sid":{"sat":12,"code":3}},{"el":7,"az":34,"sid":{"sat":19,"code":3}},{"el":49,"az":12,"sid":{"sat":20,"code":3}},{"el":37,"az":149,"sid":{"sat":21,"code":3}},{"el":41,"az":148,"sid":{"sat":12,"code":12}},{"el":32,"az":35,"sid":{"sat":19,"code":12}},{"el":2,"az":15,"sid":{"sat":20,"code":12}},{"el":36,"az":67,"sid":{"sat":22,"code":12}},{"el":35,"az":130,"sid":{"sat":24,"code":12}},{"el":14,"az":157,"sid":{"sat":25,"code":12}},{"el":21,"az":103,"sid":{"sat":26,"code":12}},{"el":17,"az":142,"sid":{"sat":34,"code":12}},{"el":45,"az":34,"sid":{"sat":35,"code":12}},{"el":50,"az":139,"sid":{"sat":11,"code":14}},{"el":60,"az":15,"sid":{"sat":12,"code":14}},{"el":54,"az":108,"sid":{"sat":24,"code":14}},{"el":41,"az":151,"sid":{"sat":25,"code":14}},{"el":17,"az":85,"sid":{"sat":31,"code":14}},{"el":15,"az":32,"sid":{"sat":33,"code":14}}]} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MggkJC8QAAAAAAE=","wn":2098,"tow":271524900,"crc":50953} +{"length":16,"flags":17,"ns":899999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"ESQkLxDkBwMZAxkG/uikNQ==","day":25,"tow":271524900,"year":2020,"crc":27898,"minutes":25,"month":3,"seconds":6} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.282588290216808,"preamble":85,"sender":22963,"msg_type":522,"payload":"JCQvEH+y7+xl6kJA6ugbFVaSXsC4tsi0V0gxwAECWwQPBg==","lat":37.83123552040069,"tow":271524900,"h_accuracy":513,"crc":13774,"lon":-122.2865040562207} +{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"JCQvEAsAAADy////9f////EAygIPAg==","n":11,"d":-11,"tow":271524900,"h_accuracy":241,"crc":49153,"e":-14} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"JCQvEJsAhwBMAEgAcgAG","tow":271524900,"crc":34358,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"JCQvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271524900,"h_accuracy":0,"crc":20005,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"JCQvEP//","tow":271524900,"crc":53724} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":249,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":89,"i":110566066},"flags":15,"cn0":213,"P":1052001008,"D":{"f":153,"i":-189},"lock":15,"sid":{"sat":5,"code":0}},{"L":{"f":216,"i":121803006},"flags":15,"cn0":182,"P":1158917102,"D":{"f":244,"i":2172},"lock":15,"sid":{"sat":21,"code":0}},{"L":{"f":145,"i":123363110},"flags":15,"cn0":186,"P":1173760565,"D":{"f":21,"i":-2477},"lock":15,"sid":{"sat":2,"code":0}},{"L":{"f":229,"i":128742348},"flags":15,"cn0":166,"P":1224942723,"D":{"f":150,"i":-398},"lock":15,"sid":{"sat":31,"code":0}},{"L":{"f":200,"i":107834589},"flags":15,"cn0":218,"P":1026011943,"D":{"f":93,"i":-1132},"lock":15,"sid":{"sat":25,"code":0}},{"L":{"f":180,"i":114128428},"flags":15,"cn0":209,"P":1085895807,"D":{"f":122,"i":-2970},"lock":15,"sid":{"sat":12,"code":0}},{"L":{"f":83,"i":110746066},"flags":15,"cn0":213,"P":1053713701,"D":{"f":122,"i":1483},"lock":15,"sid":{"sat":29,"code":0}},{"L":{"f":144,"i":84026973},"flags":15,"cn0":204,"P":1026011979,"D":{"f":94,"i":-881},"lock":15,"sid":{"sat":25,"code":1}},{"L":{"f":200,"i":88931274},"flags":15,"cn0":187,"P":1085895705,"D":{"f":174,"i":-2315},"lock":15,"sid":{"sat":12,"code":1}},{"L":{"f":214,"i":100318715},"flags":15,"cn0":153,"P":1224942670,"D":{"f":138,"i":-312},"lock":15,"sid":{"sat":31,"code":1}},{"L":{"f":237,"i":86295637},"flags":15,"cn0":195,"P":1053713631,"D":{"f":170,"i":1154},"lock":15,"sid":{"sat":29,"code":1}},{"L":{"f":166,"i":86155405},"flags":15,"cn0":194,"P":1052000940,"D":{"f":241,"i":-147},"lock":15,"sid":{"sat":5,"code":1}},{"L":{"f":162,"i":112924805},"flags":15,"cn0":214,"P":1056616579,"D":{"f":166,"i":1158},"lock":15,"sid":{"sat":11,"code":3}},{"L":{"f":207,"i":123381592},"flags":15,"cn0":178,"P":1155270170,"D":{"f":42,"i":-4406},"lock":15,"sid":{"sat":9,"code":3}}],"payload":"iCQvEAAAAAAyCEDwQrQ+shqXBllD/5nVDw8FAO6rE0X+kEIH2HwI9LYPDxUANSr2RSZfWgeRU/YVug8PAgCDJANJzHOsB+Vy/pamDw8fACezJz3dbG0GyJT7XdoPDxkAf3S5QCx2zQa0ZvR60Q8PDAAlZc4+0tmZBlPLBXrVDw8dAEuzJz1dJgIFkI/8XswPDxkBGXS5QMr7TAXI9fauuw8PDAFOJANJ+736BdbI/oqZDw8fAd9kzj5VxCQF7YIEqsMPDx0BrEK0Po2gIgWmbf/xwg8PBQGDsPo+hRi7BqKGBKbWDw8LAxoG3ERYp1oHz8ruKrIPDwkD","header":{"n_obs":64,"t":{"ns_residual":0,"wn":2098,"tow":271525000}},"crc":20005} +{"length":249,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":143,"i":109783622},"flags":15,"cn0":173,"P":1026504214,"D":{"f":4,"i":-1210},"lock":15,"sid":{"sat":20,"code":3}},{"L":{"f":206,"i":114836628},"flags":15,"cn0":208,"P":1074127970,"D":{"f":118,"i":2192},"lock":15,"sid":{"sat":5,"code":3}},{"L":{"f":79,"i":111636385},"flags":15,"cn0":208,"P":1047134745,"D":{"f":151,"i":-3049},"lock":15,"sid":{"sat":10,"code":3}},{"L":{"f":235,"i":120452726},"flags":15,"cn0":182,"P":1124684575,"D":{"f":186,"i":-1324},"lock":15,"sid":{"sat":4,"code":3}},{"L":{"f":62,"i":113402393},"flags":15,"cn0":203,"P":1059596940,"D":{"f":3,"i":1621},"lock":15,"sid":{"sat":21,"code":3}},{"L":{"f":182,"i":95963470},"flags":15,"cn0":170,"P":1155270265,"D":{"f":153,"i":-3429},"lock":15,"sid":{"sat":9,"code":4}},{"L":{"f":182,"i":85387297},"flags":15,"cn0":205,"P":1026504556,"D":{"f":245,"i":-942},"lock":15,"sid":{"sat":20,"code":4}},{"L":{"f":181,"i":87830414},"flags":15,"cn0":200,"P":1056616854,"D":{"f":121,"i":901},"lock":15,"sid":{"sat":11,"code":4}},{"L":{"f":194,"i":89317381},"flags":15,"cn0":195,"P":1074128282,"D":{"f":126,"i":1706},"lock":15,"sid":{"sat":5,"code":4}},{"L":{"f":128,"i":93685444},"flags":15,"cn0":175,"P":1124684777,"D":{"f":9,"i":-1028},"lock":15,"sid":{"sat":4,"code":4}},{"L":{"f":67,"i":121596031},"flags":15,"cn0":200,"P":1167561683,"D":{"f":42,"i":-1499},"lock":15,"sid":{"sat":35,"code":12}},{"L":{"f":98,"i":129244198},"flags":15,"cn0":172,"P":1240999524,"D":{"f":216,"i":-3008},"lock":15,"sid":{"sat":26,"code":12}},{"L":{"f":200,"i":132921862},"flags":15,"cn0":157,"P":1276312083,"D":{"f":218,"i":2248},"lock":15,"sid":{"sat":34,"code":12}},{"L":{"f":164,"i":125165312},"flags":15,"cn0":188,"P":1201834129,"D":{"f":76,"i":-1305},"lock":15,"sid":{"sat":24,"code":12}}],"payload":"iCQvEAAAAAAyCEEWNi89RiqLBo9G+wStDw8UA2LkBUCURNgGzpAIdtAPDwUDGQJqPqFvpwZPF/SX0A8PCgMfUwlDdvYtB+vU+rq2Dw8EA4wqKD8ZYsIGPlUGA8sPDxUDeQbcRE5JuAW2m/KZqg8PCQRsNy89IegWBbZS/PXNDw8UBJax+j6OLzwFtYUDecgPDwsEmuUFQAXgUgXCqgZ+ww8PBQTpUwlDxIaVBYD8+wmvDw8EBNOTl0V/aD8HQyX6KsgPDyMMZCb4SSYctAdiQPTYrA8PGgwT+hJMBjrsB8jICNqdDw8iDJGIokcA33UHpOf6TLwPDxgM","header":{"n_obs":65,"t":{"ns_residual":0,"wn":2098,"tow":271525000}},"crc":7191} +{"length":249,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":221,"i":134657949},"flags":15,"cn0":159,"P":1292982166,"D":{"f":253,"i":1319},"lock":15,"sid":{"sat":25,"code":12}},{"L":{"f":79,"i":121082646},"flags":15,"cn0":184,"P":1162632421,"D":{"f":73,"i":1612},"lock":15,"sid":{"sat":12,"code":12}},{"L":{"f":237,"i":124518073},"flags":15,"cn0":185,"P":1195619305,"D":{"f":59,"i":-294},"lock":15,"sid":{"sat":19,"code":12}},{"L":{"f":16,"i":124678759},"flags":15,"cn0":192,"P":1197162237,"D":{"f":242,"i":2384},"lock":15,"sid":{"sat":22,"code":12}},{"L":{"f":77,"i":93628791},"flags":15,"cn0":208,"P":1162632355,"D":{"f":215,"i":1246},"lock":15,"sid":{"sat":12,"code":13}},{"L":{"f":118,"i":116437182},"flags":15,"cn0":196,"P":1107862927,"D":{"f":243,"i":-1027},"lock":15,"sid":{"sat":12,"code":14}},{"L":{"f":253,"i":132463067},"flags":15,"cn0":192,"P":1260344096,"D":{"f":140,"i":1084},"lock":15,"sid":{"sat":25,"code":14}},{"L":{"f":214,"i":125411215},"flags":15,"cn0":189,"P":1193247980,"D":{"f":73,"i":1047},"lock":15,"sid":{"sat":11,"code":14}},{"L":{"f":68,"i":118432864},"flags":15,"cn0":204,"P":1126851113,"D":{"f":205,"i":-1748},"lock":15,"sid":{"sat":24,"code":14}},{"L":{"f":46,"i":143355878},"flags":15,"cn0":159,"P":1363985800,"D":{"f":219,"i":-3171},"lock":15,"sid":{"sat":31,"code":14}},{"L":{"f":233,"i":144547442},"flags":15,"cn0":154,"P":1375323188,"D":{"f":157,"i":-2142},"lock":15,"sid":{"sat":33,"code":14}},{"L":{"f":226,"i":101497673},"flags":15,"cn0":201,"P":1260344085,"D":{"f":106,"i":831},"lock":15,"sid":{"sat":25,"code":20}},{"L":{"f":50,"i":90747323},"flags":15,"cn0":215,"P":1126851653,"D":{"f":186,"i":-1338},"lock":15,"sid":{"sat":24,"code":20}},{"L":{"f":19,"i":96094286},"flags":15,"cn0":194,"P":1193247791,"D":{"f":27,"i":803},"lock":15,"sid":{"sat":11,"code":20}}],"payload":"iCQvEAAAAAAyCEKWVxFNnbcGCN0nBf2fDw8ZDOVcTEUWkzcHT0wGSbgPDwwM6bNDR7n+awft2v47uQ8PEwz9PltHZ3JuBxBQCfLADw8WDKNcTEV3qZQFTd4E19APDwwNj6UIQr6w8AZ2/fvzxA8PDA4gUx9L2znlB/08BIzADw8ZDuyEH0ePn3kH1hcESb0PDwsOKWIqQ2AkDwdELPnNzA8PGA6IxUxR5m+LCC6d89ufDw8fDjTE+VFynp0I6aL3nZoPDyEOFVMfS0m7DAbiPwNqyQ8PGRRFZCpDu7FoBTLG+rrXDw8YFC+EH0dOSLoFEyMDG8IPDwsU","header":{"n_obs":66,"t":{"ns_residual":0,"wn":2098,"tow":271525000}},"crc":17479} +{"length":62,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":243,"i":109844155},"flags":15,"cn0":175,"P":1363985895,"D":{"f":189,"i":-2430},"lock":15,"sid":{"sat":31,"code":20}},{"L":{"f":114,"i":89218131},"flags":15,"cn0":206,"P":1107862770,"D":{"f":6,"i":-786},"lock":15,"sid":{"sat":12,"code":20}},{"L":{"f":23,"i":110757202},"flags":15,"cn0":169,"P":1375323136,"D":{"f":41,"i":-1640},"lock":15,"sid":{"sat":33,"code":20}}],"payload":"iCQvEAAAAAAyCEPnxUxRuxaMBvOC9r2vDw8fFPKkCEJTXFEFcu78Bs4PDwwUAMT5UVIFmgYXmPkpqQ8PIRQ=","header":{"n_obs":67,"t":{"ns_residual":0,"wn":2098,"tow":271525000}},"crc":35835} +{"length":9,"l2ca_bias":0,"preamble":85,"l2p_bias":0,"sender":22963,"msg_type":117,"payload":"/wAAAAAAAAAA","l1ca_bias":0,"mask":255,"crc":49809,"l1p_bias":0} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgiIJC8QAAAAAAE=","wn":2098,"tow":271525000,"crc":27223} +{"length":16,"flags":17,"ns":999999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EYgkLxDkBwMZAxkG/smaOw==","day":25,"tow":271525000,"year":2020,"crc":28585,"minutes":25,"month":3,"seconds":6} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.294068763572596,"preamble":85,"sender":22963,"msg_type":522,"payload":"iCQvELSAy+xl6kJAEjISFVaSXsDIUSoXSEsxwAECWwQPBg==","lat":37.83123550354631,"tow":271525000,"h_accuracy":513,"crc":59790,"lon":-122.28650404717362} +{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"iCQvEPP///8BAAAAKAAAAPEAygIPAg==","n":-13,"d":40,"tow":271525000,"h_accuracy":241,"crc":14962,"e":1} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"iCQvEJsAhwBMAEgAcgAG","tow":271525000,"crc":62407,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"iCQvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271525000,"h_accuracy":0,"crc":26623,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"iCQvEP//","tow":271525000,"crc":15127} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":4,"flags":2147616000,"preamble":85,"sender":22963,"msg_type":65535,"payload":"AAUCgA==","crc":40942} +{"length":24,"z":3890655.0240602265,"preamble":85,"sender":22963,"msg_type":72,"payload":"UO0a3iqORMHK1UJhIkRQwc9nFIPvrk1B","crc":2168,"x":-2694229.735196747,"y":-4264073.519704292} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgjsJC8QAAAAAAE=","wn":2098,"tow":271525100,"crc":3741} +{"length":16,"flags":17,"ns":99999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EewkLxDkBwMZAxkH/uD1BQ==","day":25,"tow":271525100,"year":2020,"crc":15753,"minutes":25,"month":3,"seconds":7} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.30327695192358,"preamble":85,"sender":22963,"msg_type":522,"payload":"7CQvEBxQqOxl6kJAY4f+FFaSXsBwJO6Oo00xwAECWwQPBg==","lat":37.83123548715977,"tow":271525100,"h_accuracy":513,"crc":35021,"lon":-122.28650402885755} +{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"7CQvEPT///8AAAAAAwAAAPEAygIPAg==","n":-12,"d":3,"tow":271525100,"h_accuracy":241,"crc":27641,"e":0} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"7CQvEJsAhwBMAEgAcgAG","tow":271525100,"crc":57192,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"7CQvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271525100,"h_accuracy":0,"crc":32585,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"7CQvEP//","tow":271525100,"crc":25262} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MghQJS8QAAAAAAE=","wn":2098,"tow":271525200,"crc":47086} +{"length":16,"flags":17,"ns":199999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EVAlLxDkBwMZAxkH/sHrCw==","day":25,"tow":271525200,"year":2020,"crc":3543,"minutes":25,"month":3,"seconds":7} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.309922768722167,"preamble":85,"sender":22963,"msg_type":522,"payload":"UCUvEPLuouxl6kJAUZbeFFaSXsCO8jsZV08xwAECWwQPBg==","lat":37.83123548465473,"tow":271525200,"h_accuracy":513,"crc":37009,"lon":-122.28650399910954} +{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"UCUvEAoAAAADAAAA/P////EAygIPAg==","n":10,"d":-4,"tow":271525200,"h_accuracy":241,"crc":43175,"e":3} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"UCUvEJsAhwBMAEgAcgAG","tow":271525200,"crc":40818,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"UCUvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271525200,"h_accuracy":0,"crc":15907,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"UCUvEP//","tow":271525200,"crc":14512} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"Mgi0JS8QAAAAAAE=","wn":2098,"tow":271525300,"crc":27798} +{"length":16,"flags":17,"ns":299999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EbQlLxDkBwMZAxkH/qLhEQ==","day":25,"tow":271525300,"year":2020,"crc":60385,"minutes":25,"month":3,"seconds":7} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.3141553544929,"preamble":85,"sender":22963,"msg_type":522,"payload":"tCUvEIRWkuxl6kJAdDPHFFaSXsAJaT18bFAxwAECWwQPBg==","lat":37.83123547692688,"tow":271525300,"h_accuracy":513,"crc":55355,"lon":-122.28650397732946} +{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"tCUvEAUAAAADAAAAAwAAAPEAygIPAg==","n":5,"d":3,"tow":271525300,"h_accuracy":241,"crc":56121,"e":3} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"tCUvEJsAhwBMAEgAcgAG","tow":271525300,"crc":59343,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"tCUvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271525300,"h_accuracy":0,"crc":39936,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"tCUvEP//","tow":271525300,"crc":46377} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":237,"states":[{"cn0":214,"mesid":{"sat":5,"code":0}},{"cn0":181,"mesid":{"sat":21,"code":0}},{"cn0":187,"mesid":{"sat":2,"code":0}},{"cn0":166,"mesid":{"sat":31,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":218,"mesid":{"sat":25,"code":0}},{"cn0":209,"mesid":{"sat":12,"code":0}},{"cn0":213,"mesid":{"sat":29,"code":0}},{"cn0":206,"mesid":{"sat":18,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":206,"mesid":{"sat":131,"code":2}},{"cn0":204,"mesid":{"sat":25,"code":1}},{"cn0":187,"mesid":{"sat":12,"code":1}},{"cn0":153,"mesid":{"sat":31,"code":1}},{"cn0":197,"mesid":{"sat":18,"code":1}},{"cn0":195,"mesid":{"sat":29,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":194,"mesid":{"sat":5,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":214,"mesid":{"sat":100,"code":3}},{"cn0":178,"mesid":{"sat":98,"code":3}},{"cn0":174,"mesid":{"sat":102,"code":3}},{"cn0":208,"mesid":{"sat":101,"code":3}},{"cn0":208,"mesid":{"sat":93,"code":3}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":182,"mesid":{"sat":106,"code":3}},{"cn0":203,"mesid":{"sat":104,"code":3}},{"cn0":170,"mesid":{"sat":98,"code":4}},{"cn0":205,"mesid":{"sat":102,"code":4}},{"cn0":67,"mesid":{"sat":93,"code":4}},{"cn0":201,"mesid":{"sat":100,"code":4}},{"cn0":195,"mesid":{"sat":101,"code":4}},{"cn0":189,"mesid":{"sat":104,"code":4}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":175,"mesid":{"sat":106,"code":4}},{"cn0":200,"mesid":{"sat":35,"code":12}},{"cn0":172,"mesid":{"sat":26,"code":12}},{"cn0":158,"mesid":{"sat":34,"code":12}},{"cn0":188,"mesid":{"sat":24,"code":12}},{"cn0":159,"mesid":{"sat":25,"code":12}},{"cn0":184,"mesid":{"sat":12,"code":12}},{"cn0":185,"mesid":{"sat":19,"code":12}},{"cn0":192,"mesid":{"sat":22,"code":12}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":209,"mesid":{"sat":12,"code":13}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":196,"mesid":{"sat":12,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":192,"mesid":{"sat":25,"code":14}},{"cn0":190,"mesid":{"sat":11,"code":14}},{"cn0":205,"mesid":{"sat":24,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":160,"mesid":{"sat":31,"code":14}},{"cn0":153,"mesid":{"sat":33,"code":14}},{"cn0":201,"mesid":{"sat":25,"code":20}},{"cn0":215,"mesid":{"sat":24,"code":20}},{"cn0":194,"mesid":{"sat":11,"code":20}},{"cn0":175,"mesid":{"sat":31,"code":20}},{"cn0":206,"mesid":{"sat":12,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":169,"mesid":{"sat":33,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}}],"preamble":85,"sender":22963,"msg_type":97,"payload":"BQDWFQC1AgC7HwCmAAAAAAAAGQDaDADRHQDVEgDOAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwLOGQHMDAG7HwGZEgHFHQHDAAAABQHCAAAAAAAAAAAAAAAAZAPWYgOyZgOuZQPQXQPQAAAAagO2aAPLYgSqZgTNXQRDZATJZQTDaAS9AAAAagSvIwzIGgysIgyeGAy8GQyfDAy4Ewy5FgzAAAAADA3RAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADA7EAAAAGQ7ACw6+GA7NAAAAHw6gIQ6ZGRTJGBTXCxTCHxSvDBTOAAAAIRSpAAAA","crc":31571} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MggYJi8QAAAAAAE=","wn":2098,"tow":271525400,"crc":2493} +{"length":16,"flags":17,"ns":399999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"ERgmLxDkBwMZAxkH/oPXFw==","day":25,"tow":271525400,"year":2020,"crc":28080,"minutes":25,"month":3,"seconds":7} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.318663073738396,"preamble":85,"sender":22963,"msg_type":522,"payload":"GCYvEI3gUexl6kJAqB6fFFaSXsA1Jjjnk1ExwAECWwQPBg==","lat":37.83123544690998,"tow":271525400,"h_accuracy":513,"crc":42041,"lon":-122.2865039400009} +{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"GCYvEPb///8LAAAA/v////EAygIPAg==","n":-10,"d":-2,"tow":271525400,"h_accuracy":241,"crc":22359,"e":11} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"GCYvEJsAhwBMAEgAcgAG","tow":271525400,"crc":8093,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"GCYvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271525400,"h_accuracy":0,"crc":56289,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"GCYvEP//","tow":271525400,"crc":45360} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":9,"l2ca_bias":0,"preamble":85,"l2p_bias":0,"sender":22963,"msg_type":117,"payload":"/wAAAAAAAAAA","l1ca_bias":0,"mask":255,"crc":49809,"l1p_bias":0} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"Mgh8Ji8QAAAAAAE=","wn":2098,"tow":271525500,"crc":28023} +{"length":16,"flags":17,"ns":499999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EXwmLxDkBwMZAxkH/mTNHQ==","day":25,"tow":271525500,"year":2020,"crc":10572,"minutes":25,"month":3,"seconds":7} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.323980403823903,"preamble":85,"sender":22963,"msg_type":522,"payload":"fCYvEA2NLuxl6kJAJWGJFFaSXsDy9zZh8FIxwAECWwQPBg==","lat":37.83123543045995,"tow":271525500,"h_accuracy":513,"crc":30880,"lon":-122.28650391975368} +{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"fCYvEAMAAAABAAAAAwAAAPEAygIPAg==","n":3,"d":3,"tow":271525500,"h_accuracy":241,"crc":29256,"e":1} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"fCYvEJsAhwBMAEgAcgAG","tow":271525500,"crc":13106,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"fCYvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271525500,"h_accuracy":0,"crc":50007,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"fCYvEP//","tow":271525500,"crc":59529} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":51,"text":"GLO L2OF ME 1 [+1449ms] low CN0 too long, dropping","preamble":85,"sender":22963,"msg_type":1025,"payload":"BkdMTyBMMk9GIE1FIDEgWysxNDQ5bXNdIGxvdyBDTjAgdG9vIGxvbmcsIGRyb3BwaW5n","crc":41485,"level":6} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgjgJi8QAAAAAAE=","wn":2098,"tow":271525600,"crc":13355} +{"length":16,"flags":17,"ns":599999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EeAmLxDkBwMZAxkH/kXDIw==","day":25,"tow":271525600,"year":2020,"crc":51783,"minutes":25,"month":3,"seconds":7} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.32606019610572,"preamble":85,"sender":22963,"msg_type":522,"payload":"4CYvEIWo9etl6kJAl3d2FFaSXsApzVaueFMxwAECWwQPBg==","lat":37.83123540396722,"tow":271525600,"h_accuracy":513,"crc":61784,"lon":-122.28650390214021} +{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"4CYvEPf////+////+f////EAygIPAg==","n":-9,"d":-7,"tow":271525600,"h_accuracy":241,"crc":27937,"e":-2} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"4CYvEJsAhwBMAEgAcgAG","tow":271525600,"crc":38237,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"4CYvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271525600,"h_accuracy":0,"crc":15718,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"4CYvEP//","tow":271525600,"crc":11726} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"message_type":28,"length":34,"data":[66,52,201,3,200,33,253,144,247,198,184,125,233,109,22,228,44,242,16,59,122,127,95,111,233,59,16],"preamble":85,"sender":22963,"msg_type":30583,"payload":"gwJiJi8QHEI0yQPIIf2Q98a4feltFuQs8hA7en9fb+k7EA==","tow":271525474,"crc":38650,"sid":{"sat":131,"code":2}} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MghEJy8QAAAAAAE=","wn":2098,"tow":271525700,"crc":63321} +{"length":16,"flags":17,"ns":699999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EUQnLxDkBwMZAxkH/ia5KQ==","day":25,"tow":271525700,"year":2020,"crc":26481,"minutes":25,"month":3,"seconds":7} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.331911056545444,"preamble":85,"sender":22963,"msg_type":522,"payload":"RCcvEGBl4+tl6kJA7ldyFFaSXsAiC30f+FQxwAECWwQPBg==","lat":37.83123539546318,"tow":271525700,"h_accuracy":513,"crc":58556,"lon":-122.28650389829974} +{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"RCcvEAQAAAD7////DAAAAPEAygIPAg==","n":4,"d":12,"tow":271525700,"h_accuracy":241,"crc":9157,"e":-5} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"RCcvEJsAhwBMAEgAcgAG","tow":271525700,"crc":48264,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"RCcvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271525700,"h_accuracy":0,"crc":40937,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"RCcvEP//","tow":271525700,"crc":24598} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgioJy8QAAAAAAE=","wn":2098,"tow":271525800,"crc":1502} +{"length":16,"flags":17,"ns":799999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EagnLxDkBwMZAxkH/gevLw==","day":25,"tow":271525800,"year":2020,"crc":16492,"minutes":25,"month":3,"seconds":7} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.33807732871493,"preamble":85,"sender":22963,"msg_type":522,"payload":"qCcvEJxL2etl6kJAP4FyFFaSXsCEWV48jFYxwAECWwQPBg==","lat":37.8312353907597,"tow":271525800,"h_accuracy":513,"crc":9585,"lon":-122.28650389845005} +{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"qCcvEAQAAAD7////DQAAAPEAygIPAg==","n":4,"d":13,"tow":271525800,"h_accuracy":241,"crc":45056,"e":-5} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"qCcvEJsAhwBMAEgAcgAG","tow":271525800,"crc":58224,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"qCcvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271525800,"h_accuracy":0,"crc":25449,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"qCcvEP//","tow":271525800,"crc":57549} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":237,"states":[{"cn0":214,"mesid":{"sat":5,"code":0}},{"cn0":182,"mesid":{"sat":21,"code":0}},{"cn0":187,"mesid":{"sat":2,"code":0}},{"cn0":165,"mesid":{"sat":31,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":219,"mesid":{"sat":25,"code":0}},{"cn0":209,"mesid":{"sat":12,"code":0}},{"cn0":214,"mesid":{"sat":29,"code":0}},{"cn0":206,"mesid":{"sat":18,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":206,"mesid":{"sat":131,"code":2}},{"cn0":204,"mesid":{"sat":25,"code":1}},{"cn0":187,"mesid":{"sat":12,"code":1}},{"cn0":152,"mesid":{"sat":31,"code":1}},{"cn0":197,"mesid":{"sat":18,"code":1}},{"cn0":195,"mesid":{"sat":29,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":194,"mesid":{"sat":5,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":214,"mesid":{"sat":11,"code":3}},{"cn0":177,"mesid":{"sat":9,"code":3}},{"cn0":174,"mesid":{"sat":20,"code":3}},{"cn0":208,"mesid":{"sat":5,"code":3}},{"cn0":208,"mesid":{"sat":10,"code":3}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":183,"mesid":{"sat":4,"code":3}},{"cn0":203,"mesid":{"sat":21,"code":3}},{"cn0":171,"mesid":{"sat":9,"code":4}},{"cn0":205,"mesid":{"sat":20,"code":4}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":201,"mesid":{"sat":11,"code":4}},{"cn0":195,"mesid":{"sat":5,"code":4}},{"cn0":188,"mesid":{"sat":0,"code":4}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":175,"mesid":{"sat":4,"code":4}},{"cn0":200,"mesid":{"sat":35,"code":12}},{"cn0":172,"mesid":{"sat":26,"code":12}},{"cn0":158,"mesid":{"sat":34,"code":12}},{"cn0":188,"mesid":{"sat":24,"code":12}},{"cn0":159,"mesid":{"sat":25,"code":12}},{"cn0":185,"mesid":{"sat":12,"code":12}},{"cn0":185,"mesid":{"sat":19,"code":12}},{"cn0":192,"mesid":{"sat":22,"code":12}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":208,"mesid":{"sat":12,"code":13}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":196,"mesid":{"sat":12,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":193,"mesid":{"sat":25,"code":14}},{"cn0":190,"mesid":{"sat":11,"code":14}},{"cn0":206,"mesid":{"sat":24,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":160,"mesid":{"sat":31,"code":14}},{"cn0":153,"mesid":{"sat":33,"code":14}},{"cn0":201,"mesid":{"sat":25,"code":20}},{"cn0":215,"mesid":{"sat":24,"code":20}},{"cn0":193,"mesid":{"sat":11,"code":20}},{"cn0":175,"mesid":{"sat":31,"code":20}},{"cn0":206,"mesid":{"sat":12,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":168,"mesid":{"sat":33,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}}],"preamble":85,"sender":22963,"msg_type":97,"payload":"BQDWFQC2AgC7HwClAAAAAAAAGQDbDADRHQDWEgDOAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwLOGQHMDAG7HwGYEgHFHQHDAAAABQHCAAAAAAAAAAAAAAAACwPWCQOxFAOuBQPQCgPQAAAABAO3FQPLCQSrFATNAAAACwTJBQTDAAS8AAAABASvIwzIGgysIgyeGAy8GQyfDAy5Ewy5FgzAAAAADA3QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADA7EAAAAGQ7BCw6+GA7OAAAAHw6gIQ6ZGRTJGBTXCxTBHxSvDBTOAAAAIRSoAAAA","crc":63332} +{"length":128,"preamble":85,"sender":22963,"msg_type":151,"payload":"AgAaHQUAKzUMAFEtFQB9GRkAbUYaAKEBHQChNx8AlQ4EAxUWBQMyIQkDXw4KA3EpCwOYJQwDqgMTAyIHFAMMMRUDlSUMDJQpEwwjIBQMDwIWDEMkGAyCIxkMnQ4aDGcVIgyOESMMIi0LDosyDA4PPBgObDYZDpcpHw5VESEOIA8=","crc":34187,"azel":[{"el":29,"az":26,"sid":{"sat":2,"code":0}},{"el":53,"az":43,"sid":{"sat":5,"code":0}},{"el":45,"az":81,"sid":{"sat":12,"code":0}},{"el":25,"az":125,"sid":{"sat":21,"code":0}},{"el":70,"az":109,"sid":{"sat":25,"code":0}},{"el":1,"az":161,"sid":{"sat":26,"code":0}},{"el":55,"az":161,"sid":{"sat":29,"code":0}},{"el":14,"az":149,"sid":{"sat":31,"code":0}},{"el":22,"az":21,"sid":{"sat":4,"code":3}},{"el":33,"az":50,"sid":{"sat":5,"code":3}},{"el":14,"az":95,"sid":{"sat":9,"code":3}},{"el":41,"az":113,"sid":{"sat":10,"code":3}},{"el":37,"az":152,"sid":{"sat":11,"code":3}},{"el":3,"az":170,"sid":{"sat":12,"code":3}},{"el":7,"az":34,"sid":{"sat":19,"code":3}},{"el":49,"az":12,"sid":{"sat":20,"code":3}},{"el":37,"az":149,"sid":{"sat":21,"code":3}},{"el":41,"az":148,"sid":{"sat":12,"code":12}},{"el":32,"az":35,"sid":{"sat":19,"code":12}},{"el":2,"az":15,"sid":{"sat":20,"code":12}},{"el":36,"az":67,"sid":{"sat":22,"code":12}},{"el":35,"az":130,"sid":{"sat":24,"code":12}},{"el":14,"az":157,"sid":{"sat":25,"code":12}},{"el":21,"az":103,"sid":{"sat":26,"code":12}},{"el":17,"az":142,"sid":{"sat":34,"code":12}},{"el":45,"az":34,"sid":{"sat":35,"code":12}},{"el":50,"az":139,"sid":{"sat":11,"code":14}},{"el":60,"az":15,"sid":{"sat":12,"code":14}},{"el":54,"az":108,"sid":{"sat":24,"code":14}},{"el":41,"az":151,"sid":{"sat":25,"code":14}},{"el":17,"az":85,"sid":{"sat":31,"code":14}},{"el":15,"az":32,"sid":{"sat":33,"code":14}}]} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MggMKC8QAAAAAAE=","wn":2098,"tow":271525900,"crc":22717} +{"length":16,"flags":17,"ns":899999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EQwoLxDkBwMZAxkH/uikNQ==","day":25,"tow":271525900,"year":2020,"crc":27188,"minutes":25,"month":3,"seconds":7} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.346337066425992,"preamble":85,"sender":22963,"msg_type":522,"payload":"DCgvEMbj2Otl6kJAs+NqFFaSXsA1scWLqVgxwAECWwQPBg==","lat":37.831235390570825,"tow":271525900,"h_accuracy":513,"crc":6655,"lon":-122.28650389135764} +{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"DCgvEAIAAAAFAAAABwAAAPEAygIPAg==","n":2,"d":7,"tow":271525900,"h_accuracy":241,"crc":50008,"e":5} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"DCgvEJsAhwBMAEgAcgAG","tow":271525900,"crc":10921,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"DCgvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271525900,"h_accuracy":0,"crc":53990,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"DCgvEP//","tow":271525900,"crc":25277} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":249,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":217,"i":110566254},"flags":15,"cn0":214,"P":1052002802,"D":{"f":187,"i":-189},"lock":15,"sid":{"sat":5,"code":0}},{"L":{"f":80,"i":121800834},"flags":15,"cn0":181,"P":1158896423,"D":{"f":140,"i":2171},"lock":15,"sid":{"sat":21,"code":0}},{"L":{"f":101,"i":123365588},"flags":15,"cn0":187,"P":1173784131,"D":{"f":143,"i":-2478},"lock":15,"sid":{"sat":2,"code":0}},{"L":{"f":38,"i":128742748},"flags":15,"cn0":165,"P":1224946524,"D":{"f":240,"i":-400},"lock":15,"sid":{"sat":31,"code":0}},{"L":{"f":74,"i":107835721},"flags":15,"cn0":219,"P":1026022706,"D":{"f":108,"i":-1132},"lock":15,"sid":{"sat":25,"code":0}},{"L":{"f":105,"i":114131398},"flags":15,"cn0":209,"P":1085924060,"D":{"f":132,"i":-2971},"lock":15,"sid":{"sat":12,"code":0}},{"L":{"f":150,"i":110744582},"flags":15,"cn0":214,"P":1053699581,"D":{"f":79,"i":1483},"lock":15,"sid":{"sat":29,"code":0}},{"L":{"f":66,"i":84027855},"flags":15,"cn0":204,"P":1026022747,"D":{"f":150,"i":-883},"lock":15,"sid":{"sat":25,"code":1}},{"L":{"f":211,"i":88933588},"flags":15,"cn0":187,"P":1085923957,"D":{"f":200,"i":-2313},"lock":15,"sid":{"sat":12,"code":1}},{"L":{"f":236,"i":100319026},"flags":15,"cn0":152,"P":1224946471,"D":{"f":92,"i":-312},"lock":15,"sid":{"sat":31,"code":1}},{"L":{"f":198,"i":86294481},"flags":15,"cn0":195,"P":1053699508,"D":{"f":10,"i":1155},"lock":15,"sid":{"sat":29,"code":1}},{"L":{"f":135,"i":86155552},"flags":15,"cn0":194,"P":1052002735,"D":{"f":74,"i":-147},"lock":15,"sid":{"sat":5,"code":1}},{"L":{"f":141,"i":112923646},"flags":15,"cn0":214,"P":1056605730,"D":{"f":14,"i":1158},"lock":15,"sid":{"sat":11,"code":3}},{"L":{"f":75,"i":123385999},"flags":15,"cn0":178,"P":1155311429,"D":{"f":205,"i":-4408},"lock":15,"sid":{"sat":9,"code":3}}],"payload":"cCgvEAAAAAAyCEDySbQ+bhuXBtlD/7vWDw8FACdbE0WCiEIHUHsIjLUPDxUAQ4b2RdRoWgdlUvaPuw8PAgBcMwNJXHWsByZw/vClDw8fADLdJz1JcW0GSpT7bNsPDxkA3OK5QMaBzQZpZfSE0Q8PDAD9Lc4+BtSZBpbLBU/WDw8dAFvdJz3PKQIFQo38lswPDxkBdeK5QNQETQXT9/bIuw8PDAEnMwNJMr/6BezI/lyYDw8fAbQtzj7RvyQFxoMECsMPDx0Br0m0PiChIgWHbf9Kwg8PBQEihvo+/hO7Bo2GBA7WDw8LA0Wn3ESPuFoHS8juzbIPDwkD","header":{"n_obs":64,"t":{"ns_residual":0,"wn":2098,"tow":271526000}},"crc":62956} +{"length":249,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":202,"i":109784832},"flags":15,"cn0":174,"P":1026515521,"D":{"f":79,"i":-1210},"lock":15,"sid":{"sat":20,"code":3}},{"L":{"f":218,"i":114834435},"flags":15,"cn0":208,"P":1074107456,"D":{"f":159,"i":2192},"lock":15,"sid":{"sat":5,"code":3}},{"L":{"f":149,"i":111639433},"flags":15,"cn0":208,"P":1047163341,"D":{"f":108,"i":-3049},"lock":15,"sid":{"sat":10,"code":3}},{"L":{"f":99,"i":120454049},"flags":15,"cn0":183,"P":1124696928,"D":{"f":152,"i":-1324},"lock":15,"sid":{"sat":4,"code":3}},{"L":{"f":205,"i":113400770},"flags":15,"cn0":203,"P":1059581772,"D":{"f":241,"i":1621},"lock":15,"sid":{"sat":21,"code":3}},{"L":{"f":253,"i":95966897},"flags":15,"cn0":172,"P":1155311535,"D":{"f":10,"i":-3427},"lock":15,"sid":{"sat":9,"code":4}},{"L":{"f":4,"i":85388239},"flags":15,"cn0":205,"P":1026515893,"D":{"f":161,"i":-942},"lock":15,"sid":{"sat":20,"code":4}},{"L":{"f":51,"i":87829513},"flags":15,"cn0":201,"P":1056606025,"D":{"f":200,"i":901},"lock":15,"sid":{"sat":11,"code":4}},{"L":{"f":31,"i":89315676},"flags":15,"cn0":195,"P":1074107747,"D":{"f":17,"i":1704},"lock":15,"sid":{"sat":5,"code":4}},{"L":{"f":25,"i":93686473},"flags":15,"cn0":175,"P":1124697121,"D":{"f":9,"i":-1029},"lock":15,"sid":{"sat":4,"code":4}},{"L":{"f":59,"i":121597530},"flags":15,"cn0":200,"P":1167576073,"D":{"f":157,"i":-1500},"lock":15,"sid":{"sat":35,"code":12}},{"L":{"f":135,"i":129247205},"flags":15,"cn0":172,"P":1241028404,"D":{"f":75,"i":-3007},"lock":15,"sid":{"sat":26,"code":12}},{"L":{"f":4,"i":132919613},"flags":15,"cn0":158,"P":1276290497,"D":{"f":23,"i":2252},"lock":15,"sid":{"sat":34,"code":12}},{"L":{"f":38,"i":125166618},"flags":15,"cn0":188,"P":1201846668,"D":{"f":44,"i":-1307},"lock":15,"sid":{"sat":24,"code":12}}],"payload":"cCgvEAAAAAAyCEFBYi89AC+LBspG+0+uDw8UA0CUBUADPNgG2pAIn9APDwUDzXFqPol7pwaVF/Rs0A8PCgNggwlDofstB2PU+pi3Dw8EA0zvJz/CW8IGzVUG8csPDxUDr6fcRLFWuAX9nfIKrA8PCQS1Yy89z+sWBQRS/KHNDw8UBEmH+j4JLDwFM4UDyMkPDwsEY5UFQFzZUgUfqAYRww8PBQQhhAlDyYqVBRn7+wmvDw8EBAnMl0Vabj8HOyT6ncgPDyMMNJf4SeUntAeHQfRLrA8PGgzBpRJMPTHsBwTMCBeeDw8iDIy5okca5HUHJuX6LLwPDxgM","header":{"n_obs":65,"t":{"ns_residual":0,"wn":2098,"tow":271526000}},"crc":27044} +{"length":249,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":50,"i":134656628},"flags":15,"cn0":159,"P":1292969459,"D":{"f":235,"i":1321},"lock":15,"sid":{"sat":25,"code":12}},{"L":{"f":228,"i":121081033},"flags":15,"cn0":184,"P":1162616944,"D":{"f":150,"i":1611},"lock":15,"sid":{"sat":12,"code":12}},{"L":{"f":80,"i":124518367},"flags":15,"cn0":185,"P":1195622120,"D":{"f":183,"i":-294},"lock":15,"sid":{"sat":19,"code":12}},{"L":{"f":67,"i":124676373},"flags":15,"cn0":192,"P":1197139326,"D":{"f":194,"i":2385},"lock":15,"sid":{"sat":22,"code":12}},{"L":{"f":123,"i":93627544},"flags":15,"cn0":208,"P":1162616875,"D":{"f":44,"i":1247},"lock":15,"sid":{"sat":12,"code":13}},{"L":{"f":214,"i":116438208},"flags":15,"cn0":196,"P":1107872704,"D":{"f":217,"i":-1029},"lock":15,"sid":{"sat":12,"code":14}},{"L":{"f":182,"i":132461982},"flags":15,"cn0":193,"P":1260333773,"D":{"f":215,"i":1084},"lock":15,"sid":{"sat":25,"code":14}},{"L":{"f":153,"i":125410168},"flags":15,"cn0":191,"P":1193238012,"D":{"f":179,"i":1047},"lock":15,"sid":{"sat":11,"code":14}},{"L":{"f":250,"i":118434610},"flags":15,"cn0":205,"P":1126867725,"D":{"f":79,"i":-1748},"lock":15,"sid":{"sat":24,"code":14}},{"L":{"f":127,"i":143359049},"flags":15,"cn0":160,"P":1364015974,"D":{"f":113,"i":-3174},"lock":15,"sid":{"sat":31,"code":14}},{"L":{"f":229,"i":144549581},"flags":15,"cn0":154,"P":1375343521,"D":{"f":233,"i":-2140},"lock":15,"sid":{"sat":33,"code":14}},{"L":{"f":75,"i":101496842},"flags":15,"cn0":201,"P":1260333760,"D":{"f":27,"i":831},"lock":15,"sid":{"sat":25,"code":20}},{"L":{"f":146,"i":90748661},"flags":15,"cn0":215,"P":1126868271,"D":{"f":75,"i":-1339},"lock":15,"sid":{"sat":24,"code":20}},{"L":{"f":164,"i":96093483},"flags":15,"cn0":194,"P":1193237831,"D":{"f":165,"i":803},"lock":15,"sid":{"sat":11,"code":20}}],"payload":"cCgvEAAAAAAyCELzJRFNdLIGCDIpBeufDw8ZDHAgTEXJjDcH5EsGlrgPDwwM6L5DR9//awdQ2v63uQ8PEwx+5VpHFWluB0NRCcLADw8WDCsgTEWYpJQFe98ELNAPDwwNwMsIQsC08AbW+/vZxA8PDA7NKh9LnjXlB7Y8BNfBDw8ZDvxdH0d4m3kHmRcEs78PDwsODaMqQzIrDwf6LPlPzQ8PGA5mO01RSXyLCH+a83GgDw8fDqET+lHNpp0I5aT36ZoPDyEOwCofSwq4DAZLPwMbyQ8PGRQvpSpD9bZoBZLF+kvXDw8YFEddH0crRboFpCMDpcIPDwsU","header":{"n_obs":66,"t":{"ns_residual":0,"wn":2098,"tow":271526000}},"crc":22451} +{"length":62,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":233,"i":109846585},"flags":15,"cn0":175,"P":1364016068,"D":{"f":250,"i":-2431},"lock":15,"sid":{"sat":31,"code":20}},{"L":{"f":227,"i":89218917},"flags":15,"cn0":206,"P":1107872537,"D":{"f":47,"i":-786},"lock":15,"sid":{"sat":12,"code":20}},{"L":{"f":2,"i":110758841},"flags":15,"cn0":168,"P":1375343483,"D":{"f":49,"i":-1639},"lock":15,"sid":{"sat":33,"code":20}}],"payload":"cCgvEAAAAAAyCEPEO01ROSCMBumB9vqvDw8fFBnLCEJlX1EF4+78L84PDwwUexP6UbkLmgYCmfkxqA8PIRQ=","header":{"n_obs":67,"t":{"ns_residual":0,"wn":2098,"tow":271526000}},"crc":2370} +{"length":9,"l2ca_bias":0,"preamble":85,"l2p_bias":0,"sender":22963,"msg_type":117,"payload":"/wAAAAAAAAAA","l1ca_bias":0,"mask":255,"crc":49809,"l1p_bias":0} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MghwKC8QAAAAAAE=","wn":2098,"tow":271526000,"crc":18038} +{"length":16,"flags":17,"ns":999999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EXAoLxDkBwMZAxkH/smaOw==","day":25,"tow":271526000,"year":2020,"crc":23030,"minutes":25,"month":3,"seconds":7} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.358330799109996,"preamble":85,"sender":22963,"msg_type":522,"payload":"cCgvECeJ0Otl6kJA40RjFFaSXsC1UzeRu1sxwAECWwQPBg==","lat":37.831235386680696,"tow":271526000,"h_accuracy":513,"crc":5258,"lon":-122.28650388426063} +{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"cCgvEPv///8IAAAABgAAAPEAygIPAg==","n":-5,"d":6,"tow":271526000,"h_accuracy":241,"crc":5540,"e":8} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"cCgvEJsAhwBMAEgAcgAG","tow":271526000,"crc":28617,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"cCgvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271526000,"h_accuracy":0,"crc":10677,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"cCgvEP//","tow":271526000,"crc":11458} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":4,"flags":2147616000,"preamble":85,"sender":22963,"msg_type":65535,"payload":"AAUCgA==","crc":40942} +{"length":24,"z":3890655.0240602265,"preamble":85,"sender":22963,"msg_type":72,"payload":"UO0a3iqORMHK1UJhIkRQwc9nFIPvrk1B","crc":2168,"x":-2694229.735196747,"y":-4264073.519704292} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"bWFpbgAAAAAAAAAAAAAAAAAAAAAAAAx1AAA=","name":"main\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":47991,"stack_free":29964,"cpu":0} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"aWRsZQAAAAAAAAAAAAAAAAAAAAABAXwAAAA=","name":"idle\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":43937,"stack_free":124,"cpu":257} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"cnBtc2cAAAAAAAAAAAAAAAAAAAABANwNAAA=","name":"rpmsg\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":58151,"stack_free":3548,"cpu":1} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"U0JQAAAAAAAAAAAAAAAAAAAAAAAAAPz/AAA=","name":"SBP\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":51784,"stack_free":65532,"cpu":0} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"TkFQAAAAAAAAAAAAAAAAAAAAAAAAAASAAAA=","name":"NAP\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":33651,"stack_free":32772,"cpu":0} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"bWFuYWdlIFBWAAAAAAAAAAAAAAAAABQEAAA=","name":"manage PV\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":22620,"stack_free":1044,"cpu":0} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"SU1VAAAAAAAAAAAAAAAAAAAAAAAAAPQHAAA=","name":"IMU\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":14252,"stack_free":2036,"cpu":0} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"SU1VIGF1eAAAAAAAAAAAAAAAAAAAAEwIAAA=","name":"IMU aux\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":18976,"stack_free":2124,"cpu":0} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"bmRiAAAAAAAAAAAAAAAAAAAAAAAAAFAMAAA=","name":"ndb\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":26120,"stack_free":3152,"cpu":0} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"TkFQIFRyYWNraW5nAAAAAAAAAAAfAdR3AAA=","name":"NAP Tracking\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":49551,"stack_free":30676,"cpu":287} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"ZGVjb2RlAAAAAAAAAAAAAAAAAAAIANQGAAA=","name":"decode\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":40082,"stack_free":1748,"cpu":8} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"bWFuYWdlIGFjcQAAAAAAAAAAAAAdAaR3AAA=","name":"manage acq\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":5608,"stack_free":30628,"cpu":285} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"c3lzdGVtIG1vbml0b3IAAAAAAAAAACwGAAA=","name":"system monitor\u0000\u0000\u0000\u0000\u0000\u0000","crc":58531,"stack_free":1580,"cpu":0} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"V2F0Y2hkb2cAAAAAAAAAAAAAAAAAAOQDAAA=","name":"Watchdog\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":44438,"stack_free":996,"cpu":0} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"c3RhcmxpbmcAAAAAAAAAAAAAAACVAPz/AAA=","name":"starling\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":15999,"stack_free":65532,"cpu":149} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"bWVfY2FsY19wdnQAAAAAAAAAAAAJAIwjAAA=","name":"me_calc_pvt\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":57561,"stack_free":9100,"cpu":9} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"UFBTAAAAAAAAAAAAAAAAAAAAAAAAAEgHAAA=","name":"PPS\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":38576,"stack_free":1864,"cpu":0} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"c3BlY3RydW0gYW5hbHl6ZXIAAAAAANQPAAA=","name":"spectrum analyzer\u0000\u0000\u0000","crc":50933,"stack_free":4052,"cpu":0} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgjUKC8QAAAAAAE=","wn":2098,"tow":271526100,"crc":49879} +{"length":16,"flags":17,"ns":99999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EdQoLxDkBwMZAxkI/uD1BQ==","day":25,"tow":271526100,"year":2020,"crc":47717,"minutes":25,"month":3,"seconds":8} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.3689912887542,"preamble":85,"sender":22963,"msg_type":522,"payload":"1CgvEEnUzutl6kJA6IRnFFaSXsBLtY02dl4xwAECWwQPBg==","lat":37.83123538588604,"tow":271526100,"h_accuracy":513,"crc":9344,"lon":-122.28650388821882} +{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"1CgvEPv///8BAAAA+v////EAygIPAg==","n":-5,"d":-6,"tow":271526100,"h_accuracy":241,"crc":37663,"e":1} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"1CgvEJsAhwBMAEgAcgAG","tow":271526100,"crc":15741,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"1CgvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271526100,"h_accuracy":0,"crc":24268,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"1CgvEP//","tow":271526100,"crc":52043} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"Mgg4KS8QAAAAAAE=","wn":2098,"tow":271526200,"crc":30595} +{"length":16,"flags":17,"ns":199999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"ETgpLxDkBwMZAxkI/sHrCw==","day":25,"tow":271526200,"year":2020,"crc":61112,"minutes":25,"month":3,"seconds":8} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.384027432884572,"preamble":85,"sender":22963,"msg_type":522,"payload":"OCkvEJWPwetl6kJA5SFjFFaSXsCOATGfT2IxwAECWwQPBg==","lat":37.83123537970747,"tow":271526200,"h_accuracy":513,"crc":36493,"lon":-122.28650388413332} +{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"OCkvEPf///8DAAAAFgAAAPEAygIPAg==","n":-9,"d":22,"tow":271526200,"h_accuracy":241,"crc":47165,"e":3} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"OCkvEJsAhwBMAEgAcgAG","tow":271526200,"crc":6628,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"OCkvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271526200,"h_accuracy":0,"crc":30650,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"OCkvEP//","tow":271526200,"crc":57793} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgicKS8QAAAAAAE=","wn":2098,"tow":271526300,"crc":62242} +{"length":16,"flags":17,"ns":299999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EZwpLxDkBwMZAxkI/qLhEQ==","day":25,"tow":271526300,"year":2020,"crc":8839,"minutes":25,"month":3,"seconds":8} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.396733803151225,"preamble":85,"sender":22963,"msg_type":522,"payload":"nCkvEJMw2+tl6kJALhNuFFaSXsCRwLVYkGUxwAECWwQPBg==","lat":37.83123539164185,"tow":271526300,"h_accuracy":513,"crc":51239,"lon":-122.28650389432434} +{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"nCkvEA0AAADu/////P////EAygIPAg==","n":13,"d":-4,"tow":271526300,"h_accuracy":241,"crc":31540,"e":-18} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"nCkvEJsAhwBMAEgAcgAG","tow":271526300,"crc":19280,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"nCkvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271526300,"h_accuracy":0,"crc":195,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"nCkvEP//","tow":271526300,"crc":1608} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":237,"states":[{"cn0":214,"mesid":{"sat":5,"code":0}},{"cn0":181,"mesid":{"sat":21,"code":0}},{"cn0":187,"mesid":{"sat":2,"code":0}},{"cn0":165,"mesid":{"sat":31,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":218,"mesid":{"sat":25,"code":0}},{"cn0":209,"mesid":{"sat":12,"code":0}},{"cn0":213,"mesid":{"sat":29,"code":0}},{"cn0":206,"mesid":{"sat":18,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":205,"mesid":{"sat":131,"code":2}},{"cn0":204,"mesid":{"sat":25,"code":1}},{"cn0":187,"mesid":{"sat":12,"code":1}},{"cn0":152,"mesid":{"sat":31,"code":1}},{"cn0":197,"mesid":{"sat":18,"code":1}},{"cn0":195,"mesid":{"sat":29,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":194,"mesid":{"sat":5,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":213,"mesid":{"sat":100,"code":3}},{"cn0":178,"mesid":{"sat":98,"code":3}},{"cn0":174,"mesid":{"sat":102,"code":3}},{"cn0":207,"mesid":{"sat":101,"code":3}},{"cn0":208,"mesid":{"sat":93,"code":3}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":183,"mesid":{"sat":106,"code":3}},{"cn0":203,"mesid":{"sat":104,"code":3}},{"cn0":171,"mesid":{"sat":98,"code":4}},{"cn0":205,"mesid":{"sat":102,"code":4}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":201,"mesid":{"sat":100,"code":4}},{"cn0":195,"mesid":{"sat":101,"code":4}},{"cn0":188,"mesid":{"sat":104,"code":4}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":175,"mesid":{"sat":106,"code":4}},{"cn0":200,"mesid":{"sat":35,"code":12}},{"cn0":172,"mesid":{"sat":26,"code":12}},{"cn0":158,"mesid":{"sat":34,"code":12}},{"cn0":188,"mesid":{"sat":24,"code":12}},{"cn0":159,"mesid":{"sat":25,"code":12}},{"cn0":184,"mesid":{"sat":12,"code":12}},{"cn0":185,"mesid":{"sat":19,"code":12}},{"cn0":192,"mesid":{"sat":22,"code":12}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":208,"mesid":{"sat":12,"code":13}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":196,"mesid":{"sat":12,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":193,"mesid":{"sat":25,"code":14}},{"cn0":190,"mesid":{"sat":11,"code":14}},{"cn0":205,"mesid":{"sat":24,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":159,"mesid":{"sat":31,"code":14}},{"cn0":153,"mesid":{"sat":33,"code":14}},{"cn0":201,"mesid":{"sat":25,"code":20}},{"cn0":215,"mesid":{"sat":24,"code":20}},{"cn0":194,"mesid":{"sat":11,"code":20}},{"cn0":175,"mesid":{"sat":31,"code":20}},{"cn0":206,"mesid":{"sat":12,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":168,"mesid":{"sat":33,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}}],"preamble":85,"sender":22963,"msg_type":97,"payload":"BQDWFQC1AgC7HwClAAAAAAAAGQDaDADRHQDVEgDOAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwLNGQHMDAG7HwGYEgHFHQHDAAAABQHCAAAAAAAAAAAAAAAAZAPVYgOyZgOuZQPPXQPQAAAAagO3aAPLYgSrZgTNAAAAZATJZQTDaAS8AAAAagSvIwzIGgysIgyeGAy8GQyfDAy4Ewy5FgzAAAAADA3QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADA7EAAAAGQ7BCw6+GA7NAAAAHw6fIQ6ZGRTJGBTXCxTCHxSvDBTOAAAAIRSoAAAA","crc":47831} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MggAKi8QAAAAAAE=","wn":2098,"tow":271526400,"crc":25099} +{"length":16,"flags":17,"ns":399999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EQAqLxDkBwMZAxkI/oPXFw==","day":25,"tow":271526400,"year":2020,"crc":30536,"minutes":25,"month":3,"seconds":8} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.409479337415522,"preamble":85,"sender":22963,"msg_type":522,"payload":"ACovEHiC5+tl6kJAZ2dWFFaSXsBhlkqj02gxwAECWwQPBg==","lat":37.83123539737875,"tow":271526400,"h_accuracy":513,"crc":23064,"lon":-122.286503872279} +{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"ACovEAQAAAAJAAAACAAAAPEAygIPAg==","n":4,"d":8,"tow":271526400,"h_accuracy":241,"crc":49644,"e":9} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"ACovEJsAhwBMAEgAcgAG","tow":271526400,"crc":24732,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"ACovEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271526400,"h_accuracy":0,"crc":37065,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"ACovEP//","tow":271526400,"crc":11741} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":9,"l2ca_bias":0,"preamble":85,"l2p_bias":0,"sender":22963,"msg_type":117,"payload":"/wAAAAAAAAAA","l1ca_bias":0,"mask":255,"crc":49809,"l1p_bias":0} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MghkKi8QAAAAAAE=","wn":2098,"tow":271526500,"crc":1729} +{"length":16,"flags":17,"ns":499999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EWQqLxDkBwMZAxkI/mTNHQ==","day":25,"tow":271526500,"year":2020,"crc":13236,"minutes":25,"month":3,"seconds":8} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.420461704490428,"preamble":85,"sender":22963,"msg_type":522,"payload":"ZCovEH161utl6kJAwFFGFFaSXsC+AdZgo2sxwAECWwQPBg==","lat":37.83123538944799,"tow":271526500,"h_accuracy":513,"crc":38759,"lon":-122.28650385729907} +{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"ZCovEPT////+////GwAAAPEAygIPAg==","n":-12,"d":27,"tow":271526500,"h_accuracy":241,"crc":5344,"e":-2} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"ZCovEJsAhwBMAEgAcgAG","tow":271526500,"crc":19507,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"ZCovEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271526500,"h_accuracy":0,"crc":34943,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"ZCovEP//","tow":271526500,"crc":29796} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgjIKi8QAAAAAAE=","wn":2098,"tow":271526600,"crc":43935} +{"length":16,"flags":17,"ns":599999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EcgqLxDkBwMZAxkI/kXDIw==","day":25,"tow":271526600,"year":2020,"crc":801,"minutes":25,"month":3,"seconds":8} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.426516021953287,"preamble":85,"sender":22963,"msg_type":522,"payload":"yCovEL9J3Otl6kJAb1EkFFaSXsBngm0nMG0xwAECWwQPBg==","lat":37.831235392153296,"tow":271526600,"h_accuracy":513,"crc":30978,"lon":-122.28650382563295} +{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"yCovEAIAAAAIAAAAAQAAAPEAygIPAg==","n":2,"d":1,"tow":271526600,"h_accuracy":241,"crc":44555,"e":8} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"yCovEJsAhwBMAEgAcgAG","tow":271526600,"crc":14786,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"yCovEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271526600,"h_accuracy":0,"crc":41381,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"yCovEP//","tow":271526600,"crc":40623} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"message_type":3,"length":34,"data":[23,255,0,15,253,127,247,255,0,23,255,255,231,255,127,240,0,255,240,0,232,206,246,231,239,229,112],"preamble":85,"sender":22963,"msg_type":30583,"payload":"gwJHKi8QAxf/AA/9f/f/ABf//+f/f/AA//AA6M725+/lcA==","tow":271526471,"crc":11616,"sid":{"sat":131,"code":2}} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MggsKy8QAAAAAAE=","wn":2098,"tow":271526700,"crc":14132} +{"length":16,"flags":17,"ns":699999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"ESwrLxDkBwMZAxkI/ia5KQ==","day":25,"tow":271526700,"year":2020,"crc":33822,"minutes":25,"month":3,"seconds":8} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.429499730688164,"preamble":85,"sender":22963,"msg_type":522,"payload":"LCsvEPy9Aexl6kJACfEZFFaSXsBM8sCx820xwAECWwQPBg==","lat":37.8312354095942,"tow":271526700,"h_accuracy":513,"crc":11857,"lon":-122.28650381596903} +{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"LCsvEBAAAADz////+/////EAygIPAg==","n":16,"d":-5,"tow":271526700,"h_accuracy":241,"crc":6435,"e":-13} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"LCsvEJsAhwBMAEgAcgAG","tow":271526700,"crc":14878,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"LCsvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271526700,"h_accuracy":0,"crc":54896,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"LCsvEP//","tow":271526700,"crc":47463} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgiQKy8QAAAAAAE=","wn":2098,"tow":271526800,"crc":51604} +{"length":16,"flags":17,"ns":799999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EZArLxDkBwMZAxkI/gevLw==","day":25,"tow":271526800,"year":2020,"crc":51072,"minutes":25,"month":3,"seconds":8} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.43490116359639,"preamble":85,"sender":22963,"msg_type":522,"payload":"kCsvEB8M9+tl6kJAAjL1E1aSXsCLo8KuVW8xwAECWwQPBg==","lat":37.831235404614056,"tow":271526800,"h_accuracy":513,"crc":62822,"lon":-122.28650378174646} +{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"kCsvEPT///8QAAAAAwAAAPEAygIPAg==","n":-12,"d":3,"tow":271526800,"h_accuracy":241,"crc":37035,"e":16} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"kCsvEJsAhwBMAEgAcgAG","tow":271526800,"crc":357,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"kCsvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271526800,"h_accuracy":0,"crc":17132,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"kCsvEP//","tow":271526800,"crc":18728} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":237,"states":[{"cn0":214,"mesid":{"sat":5,"code":0}},{"cn0":181,"mesid":{"sat":21,"code":0}},{"cn0":187,"mesid":{"sat":2,"code":0}},{"cn0":165,"mesid":{"sat":31,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":218,"mesid":{"sat":25,"code":0}},{"cn0":209,"mesid":{"sat":12,"code":0}},{"cn0":213,"mesid":{"sat":29,"code":0}},{"cn0":207,"mesid":{"sat":18,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":206,"mesid":{"sat":131,"code":2}},{"cn0":204,"mesid":{"sat":25,"code":1}},{"cn0":187,"mesid":{"sat":12,"code":1}},{"cn0":152,"mesid":{"sat":31,"code":1}},{"cn0":197,"mesid":{"sat":18,"code":1}},{"cn0":195,"mesid":{"sat":29,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":194,"mesid":{"sat":5,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":213,"mesid":{"sat":11,"code":3}},{"cn0":178,"mesid":{"sat":9,"code":3}},{"cn0":173,"mesid":{"sat":20,"code":3}},{"cn0":207,"mesid":{"sat":5,"code":3}},{"cn0":208,"mesid":{"sat":10,"code":3}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":183,"mesid":{"sat":4,"code":3}},{"cn0":203,"mesid":{"sat":21,"code":3}},{"cn0":171,"mesid":{"sat":9,"code":4}},{"cn0":205,"mesid":{"sat":20,"code":4}},{"cn0":88,"mesid":{"sat":10,"code":4}},{"cn0":201,"mesid":{"sat":11,"code":4}},{"cn0":195,"mesid":{"sat":5,"code":4}},{"cn0":189,"mesid":{"sat":0,"code":4}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":175,"mesid":{"sat":4,"code":4}},{"cn0":200,"mesid":{"sat":35,"code":12}},{"cn0":172,"mesid":{"sat":26,"code":12}},{"cn0":158,"mesid":{"sat":34,"code":12}},{"cn0":188,"mesid":{"sat":24,"code":12}},{"cn0":158,"mesid":{"sat":25,"code":12}},{"cn0":184,"mesid":{"sat":12,"code":12}},{"cn0":185,"mesid":{"sat":19,"code":12}},{"cn0":192,"mesid":{"sat":22,"code":12}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":208,"mesid":{"sat":12,"code":13}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":196,"mesid":{"sat":12,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":193,"mesid":{"sat":25,"code":14}},{"cn0":190,"mesid":{"sat":11,"code":14}},{"cn0":205,"mesid":{"sat":24,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":160,"mesid":{"sat":31,"code":14}},{"cn0":153,"mesid":{"sat":33,"code":14}},{"cn0":201,"mesid":{"sat":25,"code":20}},{"cn0":215,"mesid":{"sat":24,"code":20}},{"cn0":193,"mesid":{"sat":11,"code":20}},{"cn0":174,"mesid":{"sat":31,"code":20}},{"cn0":206,"mesid":{"sat":12,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":169,"mesid":{"sat":33,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}}],"preamble":85,"sender":22963,"msg_type":97,"payload":"BQDWFQC1AgC7HwClAAAAAAAAGQDaDADRHQDVEgDPAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwLOGQHMDAG7HwGYEgHFHQHDAAAABQHCAAAAAAAAAAAAAAAACwPVCQOyFAOtBQPPCgPQAAAABAO3FQPLCQSrFATNCgRYCwTJBQTDAAS9AAAABASvIwzIGgysIgyeGAy8GQyeDAy4Ewy5FgzAAAAADA3QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADA7EAAAAGQ7BCw6+GA7NAAAAHw6gIQ6ZGRTJGBTXCxTBHxSuDBTOAAAAIRSpAAAA","crc":36424} +{"length":128,"preamble":85,"sender":22963,"msg_type":151,"payload":"AgAaHQUAKzUMAFEtFQB9GRkAbUYaAKEBHQChNx8AlQ4EAxUWBQMyIQkDXw4KA3EpCwOYJQwDqgMTAyIHFAMMMRUDlSUMDJQpEwwjIBQMDwIWDEMkGAyCIxkMnQ4aDGcVIgyOESMMIi0LDosyDA4PPBgObDYZDpcpHw5VESEOIA8=","crc":34187,"azel":[{"el":29,"az":26,"sid":{"sat":2,"code":0}},{"el":53,"az":43,"sid":{"sat":5,"code":0}},{"el":45,"az":81,"sid":{"sat":12,"code":0}},{"el":25,"az":125,"sid":{"sat":21,"code":0}},{"el":70,"az":109,"sid":{"sat":25,"code":0}},{"el":1,"az":161,"sid":{"sat":26,"code":0}},{"el":55,"az":161,"sid":{"sat":29,"code":0}},{"el":14,"az":149,"sid":{"sat":31,"code":0}},{"el":22,"az":21,"sid":{"sat":4,"code":3}},{"el":33,"az":50,"sid":{"sat":5,"code":3}},{"el":14,"az":95,"sid":{"sat":9,"code":3}},{"el":41,"az":113,"sid":{"sat":10,"code":3}},{"el":37,"az":152,"sid":{"sat":11,"code":3}},{"el":3,"az":170,"sid":{"sat":12,"code":3}},{"el":7,"az":34,"sid":{"sat":19,"code":3}},{"el":49,"az":12,"sid":{"sat":20,"code":3}},{"el":37,"az":149,"sid":{"sat":21,"code":3}},{"el":41,"az":148,"sid":{"sat":12,"code":12}},{"el":32,"az":35,"sid":{"sat":19,"code":12}},{"el":2,"az":15,"sid":{"sat":20,"code":12}},{"el":36,"az":67,"sid":{"sat":22,"code":12}},{"el":35,"az":130,"sid":{"sat":24,"code":12}},{"el":14,"az":157,"sid":{"sat":25,"code":12}},{"el":21,"az":103,"sid":{"sat":26,"code":12}},{"el":17,"az":142,"sid":{"sat":34,"code":12}},{"el":45,"az":34,"sid":{"sat":35,"code":12}},{"el":50,"az":139,"sid":{"sat":11,"code":14}},{"el":60,"az":15,"sid":{"sat":12,"code":14}},{"el":54,"az":108,"sid":{"sat":24,"code":14}},{"el":41,"az":151,"sid":{"sat":25,"code":14}},{"el":17,"az":85,"sid":{"sat":31,"code":14}},{"el":15,"az":32,"sid":{"sat":33,"code":14}}]} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"Mgj0Ky8QAAAAAAE=","wn":2098,"tow":271526900,"crc":44382} +{"length":16,"flags":17,"ns":899999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EfQrLxDkBwMZAxkI/uikNQ==","day":25,"tow":271526900,"year":2020,"crc":2222,"minutes":25,"month":3,"seconds":8} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.4445425736161,"preamble":85,"sender":22963,"msg_type":522,"payload":"9CsvEHUrDexl6kJArXTiE1aSXsBfXMeKzXExwAECWwQPBg==","lat":37.831235414915604,"tow":271526900,"h_accuracy":513,"crc":11107,"lon":-122.28650376429387} +{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"9CsvEAEAAAD+////CQAAAPEAygIPAg==","n":1,"d":9,"tow":271526900,"h_accuracy":241,"crc":41556,"e":-2} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"9CsvEJsAhwBMAEgAcgAG","tow":271526900,"crc":11722,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"9CsvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271526900,"h_accuracy":0,"crc":23130,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"9CsvEP//","tow":271526900,"crc":4241} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":249,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":41,"i":110566444},"flags":15,"cn0":214,"P":1052004604,"D":{"f":20,"i":-190},"lock":15,"sid":{"sat":5,"code":0}},{"L":{"f":46,"i":121798662},"flags":15,"cn0":181,"P":1158875762,"D":{"f":229,"i":2171},"lock":15,"sid":{"sat":21,"code":0}},{"L":{"f":95,"i":123368066},"flags":15,"cn0":187,"P":1173807699,"D":{"f":35,"i":-2477},"lock":15,"sid":{"sat":2,"code":0}},{"L":{"f":5,"i":128743148},"flags":15,"cn0":164,"P":1224950312,"D":{"f":215,"i":-400},"lock":15,"sid":{"sat":31,"code":0}},{"L":{"f":141,"i":107836853},"flags":15,"cn0":218,"P":1026033479,"D":{"f":252,"i":-1134},"lock":15,"sid":{"sat":25,"code":0}},{"L":{"f":160,"i":114134368},"flags":15,"cn0":209,"P":1085952324,"D":{"f":39,"i":-2970},"lock":15,"sid":{"sat":12,"code":0}},{"L":{"f":44,"i":110743099},"flags":15,"cn0":213,"P":1053685471,"D":{"f":126,"i":1482},"lock":15,"sid":{"sat":29,"code":0}},{"L":{"f":138,"i":84028737},"flags":15,"cn0":204,"P":1026033524,"D":{"f":211,"i":-884},"lock":15,"sid":{"sat":25,"code":1}},{"L":{"f":71,"i":88935903},"flags":15,"cn0":187,"P":1085952218,"D":{"f":88,"i":-2315},"lock":15,"sid":{"sat":12,"code":1}},{"L":{"f":140,"i":100319338},"flags":15,"cn0":152,"P":1224950275,"D":{"f":130,"i":-313},"lock":15,"sid":{"sat":31,"code":1}},{"L":{"f":221,"i":86293325},"flags":15,"cn0":195,"P":1053685398,"D":{"f":151,"i":1155},"lock":15,"sid":{"sat":29,"code":1}},{"L":{"f":12,"i":86155700},"flags":15,"cn0":194,"P":1052004537,"D":{"f":120,"i":-149},"lock":15,"sid":{"sat":5,"code":1}},{"L":{"f":107,"i":112922488},"flags":15,"cn0":213,"P":1056594887,"D":{"f":205,"i":1157},"lock":15,"sid":{"sat":11,"code":3}},{"L":{"f":233,"i":123390405},"flags":15,"cn0":178,"P":1155352710,"D":{"f":203,"i":-4409},"lock":15,"sid":{"sat":9,"code":3}}],"payload":"WCwvEAAAAAAyCED8ULQ+LByXBilC/xTWDw8FAHIKE0UGgEIHLnsI5bUPDxUAU+L2RYJyWgdfU/Yjuw8PAgAoQgNJ7HasBwVw/tekDw8fAEcHKD21dW0GjZL7/NoPDxkARFG6QGCNzQagZvQn0Q8PDADf9s0+O86ZBizKBX7VDw8dAHQHKD1BLQIFioz808wPDxkB2lC6QN8NTQVH9fZYuw8PDAEDQgNJasD6BYzH/oKYDw8fAZb2zT5NuyQF3YMEl8MPDx0BuVC0PrShIgUMa/94wg8PBQHHW/o+eA+7BmuFBM3VDw8LA4ZI3UTFyVoH6cfuy7IPDwkD","header":{"n_obs":64,"t":{"ns_residual":0,"wn":2098,"tow":271527000}},"crc":36286} +{"length":249,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":87,"i":109786043},"flags":15,"cn0":174,"P":1026526836,"D":{"f":39,"i":-1211},"lock":15,"sid":{"sat":20,"code":3}},{"L":{"f":173,"i":114832243},"flags":15,"cn0":208,"P":1074086948,"D":{"f":193,"i":2191},"lock":15,"sid":{"sat":5,"code":3}},{"L":{"f":142,"i":111642482},"flags":15,"cn0":208,"P":1047191949,"D":{"f":25,"i":-3049},"lock":15,"sid":{"sat":10,"code":3}},{"L":{"f":205,"i":120455372},"flags":15,"cn0":183,"P":1124709291,"D":{"f":100,"i":-1325},"lock":15,"sid":{"sat":4,"code":3}},{"L":{"f":174,"i":113399148},"flags":15,"cn0":203,"P":1059566641,"D":{"f":66,"i":1621},"lock":15,"sid":{"sat":21,"code":3}},{"L":{"f":96,"i":95970325},"flags":15,"cn0":171,"P":1155352793,"D":{"f":91,"i":-3428},"lock":15,"sid":{"sat":9,"code":4}},{"L":{"f":143,"i":85389180},"flags":15,"cn0":205,"P":1026527198,"D":{"f":69,"i":-942},"lock":15,"sid":{"sat":20,"code":4}},{"L":{"f":110,"i":87828612},"flags":15,"cn0":201,"P":1056595200,"D":{"f":86,"i":900},"lock":15,"sid":{"sat":11,"code":4}},{"L":{"f":25,"i":89313971},"flags":15,"cn0":195,"P":1074087259,"D":{"f":26,"i":1705},"lock":15,"sid":{"sat":5,"code":4}},{"L":{"f":110,"i":93687502},"flags":15,"cn0":175,"P":1124709488,"D":{"f":93,"i":-1031},"lock":15,"sid":{"sat":4,"code":4}},{"L":{"f":112,"i":121599029},"flags":15,"cn0":200,"P":1167590468,"D":{"f":71,"i":-1500},"lock":15,"sid":{"sat":35,"code":12}},{"L":{"f":213,"i":129250212},"flags":15,"cn0":172,"P":1241057280,"D":{"f":65,"i":-3007},"lock":15,"sid":{"sat":26,"code":12}},{"L":{"f":103,"i":132917363},"flags":15,"cn0":158,"P":1276268889,"D":{"f":46,"i":2249},"lock":15,"sid":{"sat":34,"code":12}},{"L":{"f":59,"i":125167924},"flags":15,"cn0":188,"P":1201859205,"D":{"f":50,"i":-1307},"lock":15,"sid":{"sat":24,"code":12}}],"payload":"WCwvEAAAAAAyCEF0ji89uzOLBldF+yeuDw8UAyREBUBzM9gGrY8IwdAPDwUDjeFqPnKHpwaOF/QZ0A8PCgOrswlDzAAuB83T+mS3Dw8EAzG0Jz9sVcIGrlUGQssPDxUD2UjdRBVkuAVgnPJbqw8PCQTejy89fO8WBY9S/EXNDw8UBABd+j6EKDwFboQDVskPDwsEW0UFQLPSUgUZqQYaww8PBQRwtAlDzo6VBW75+12vDw8EBEQEmEU1dD8HcCT6R8gPDyMMAAj5SaQztAfVQfRBrA8PGgxZURJMcyjsB2fJCC6eDw8iDIXqokc06XUHO+X6MrwPDxgM","header":{"n_obs":65,"t":{"ns_residual":0,"wn":2098,"tow":271527000}},"crc":64094} +{"length":249,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":46,"i":134655307},"flags":15,"cn0":158,"P":1292956811,"D":{"f":41,"i":1319},"lock":15,"sid":{"sat":25,"code":12}},{"L":{"f":179,"i":121079421},"flags":15,"cn0":184,"P":1162601464,"D":{"f":142,"i":1611},"lock":15,"sid":{"sat":12,"code":12}},{"L":{"f":95,"i":124518661},"flags":15,"cn0":185,"P":1195624939,"D":{"f":158,"i":-295},"lock":15,"sid":{"sat":19,"code":12}},{"L":{"f":233,"i":124673987},"flags":15,"cn0":192,"P":1197116420,"D":{"f":152,"i":2385},"lock":15,"sid":{"sat":22,"code":12}},{"L":{"f":212,"i":93626297},"flags":15,"cn0":208,"P":1162601394,"D":{"f":79,"i":1246},"lock":15,"sid":{"sat":12,"code":13}},{"L":{"f":115,"i":116439235},"flags":15,"cn0":196,"P":1107882461,"D":{"f":126,"i":-1027},"lock":15,"sid":{"sat":12,"code":14}},{"L":{"f":253,"i":132460897},"flags":15,"cn0":193,"P":1260323462,"D":{"f":142,"i":1084},"lock":15,"sid":{"sat":25,"code":14}},{"L":{"f":156,"i":125409121},"flags":15,"cn0":190,"P":1193228052,"D":{"f":184,"i":1045},"lock":15,"sid":{"sat":11,"code":14}},{"L":{"f":50,"i":118436358},"flags":15,"cn0":205,"P":1126884350,"D":{"f":134,"i":-1748},"lock":15,"sid":{"sat":24,"code":14}},{"L":{"f":250,"i":143362220},"flags":15,"cn0":160,"P":1364046130,"D":{"f":166,"i":-3173},"lock":15,"sid":{"sat":31,"code":14}},{"L":{"f":231,"i":144551720},"flags":15,"cn0":153,"P":1375363883,"D":{"f":247,"i":-2141},"lock":15,"sid":{"sat":33,"code":14}},{"L":{"f":39,"i":101496011},"flags":15,"cn0":201,"P":1260323440,"D":{"f":48,"i":830},"lock":15,"sid":{"sat":25,"code":20}},{"L":{"f":90,"i":90750000},"flags":15,"cn0":215,"P":1126884896,"D":{"f":74,"i":-1339},"lock":15,"sid":{"sat":24,"code":20}},{"L":{"f":104,"i":96092681},"flags":15,"cn0":193,"P":1193227868,"D":{"f":99,"i":801},"lock":15,"sid":{"sat":11,"code":20}}],"payload":"WCwvEAAAAAAyCEKL9BBNS60GCC4nBSmeDw8ZDPjjS0V9hjcHs0sGjrgPDwwM68lDRwUBbAdf2f6euQ8PEwwEjFpHw19uB+lRCZjADw8WDLLjS0W5n5QF1N4ET9APDwwN3fEIQsO48AZz/ft+xA8PDA6GAh9LYTHlB/08BI7BDw8ZDhQ3H0dhl3kHnBUEuL4PDwsO/uMqQwYyDwcyLPmGzQ8PGA4ysU1RrIiLCPqb86agDw8fDitj+lEor50I56P395kPDyEOcAIfS8u0DAYnPgMwyQ8PGRQg5ipDMLxoBVrF+krXDw8YFFw2H0cJQroFaCEDY8EPDwsU","header":{"n_obs":66,"t":{"ns_residual":0,"wn":2098,"tow":271527000}},"crc":7988} +{"length":62,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":6,"i":109849016},"flags":15,"cn0":174,"P":1364046245,"D":{"f":80,"i":-2429},"lock":15,"sid":{"sat":31,"code":20}},{"L":{"f":131,"i":89219704},"flags":15,"cn0":206,"P":1107882303,"D":{"f":26,"i":-787},"lock":15,"sid":{"sat":12,"code":20}},{"L":{"f":1,"i":110760480},"flags":15,"cn0":169,"P":1375363834,"D":{"f":218,"i":-1639},"lock":15,"sid":{"sat":33,"code":20}}],"payload":"WCwvEAAAAAAyCEOlsU1RuCmMBgaD9lCuDw8fFD/xCEJ4YlEFg+38Gs4PDwwU+mL6USASmgYBmfnaqQ8PIRQ=","header":{"n_obs":67,"t":{"ns_residual":0,"wn":2098,"tow":271527000}},"crc":43485} +{"length":9,"l2ca_bias":0,"preamble":85,"l2p_bias":0,"sender":22963,"msg_type":117,"payload":"/wAAAAAAAAAA","l1ca_bias":0,"mask":255,"crc":49809,"l1p_bias":0} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MghYLC8QAAAAAAE=","wn":2098,"tow":271527000,"crc":50968} +{"length":16,"flags":17,"ns":999999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EVgsLxDkBwMZAxkI/smaOw==","day":25,"tow":271527000,"year":2020,"crc":31739,"minutes":25,"month":3,"seconds":8} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.457220713556822,"preamble":85,"sender":22963,"msg_type":522,"payload":"WCwvEJfrEOxl6kJAMwLNE1aSXsDEx6tqDHUxwAECWwQPBg==","lat":37.831235416662075,"tow":271527000,"h_accuracy":513,"crc":50094,"lon":-122.28650374431963} +{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"WCwvEP3////6////EQAAAPEAygIPAg==","n":-3,"d":17,"tow":271527000,"h_accuracy":241,"crc":36517,"e":-6} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"WCwvEJsAhwBMAEgAcgAG","tow":271527000,"crc":10301,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"WCwvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271527000,"h_accuracy":0,"crc":31232,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"WCwvEP//","tow":271527000,"crc":40334} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":4,"flags":2147616000,"preamble":85,"sender":22963,"msg_type":65535,"payload":"AAUCgA==","crc":40942} +{"length":24,"z":3890655.0240602265,"preamble":85,"sender":22963,"msg_type":72,"payload":"UO0a3iqORMHK1UJhIkRQwc9nFIPvrk1B","crc":2168,"x":-2694229.735196747,"y":-4264073.519704292} +{"length":152,"af0":-5.076638772152363e-4,"w":0.10354153367476945,"dn":3.2908513628827244e-9,"c_us":1.1920929e-6,"c_uc":-8.121133e-7,"ecc":9.008531924337149e-5,"sqrta":5440.607664108276,"preamble":85,"toc":{"wn":2098,"tow":270600},"sender":22963,"bgd_e1e5a":1.3969839e-9,"msg_type":149,"omegadot":-5.960248268264261e-9,"payload":"GQ4IIQQAMggUrkdAQDgAAAEAAADAMAAAwDAAAIrBALShQwAAWrUAAKA1AADgMgAA4LKKbhefqEQsPueMGSXuj/0/AAAAAIadFz8AAOCPm0C1QIEMVy/PG/0//nAUvlyZOb5WK+mssoG6P8U92ZNjcu8/GZRKcC+LyL3////fl6JAv////////3O9AAAAAAghBAAyCEMAQwA=","inc":0.9827134978931374,"inc_dot":-4.464471677451059e-11,"iode":67,"crc":52895,"common":{"health_bits":0,"fit_interval":14400,"valid":1,"sid":{"sat":25,"code":14},"toe":{"wn":2098,"tow":270600},"ura":3.12},"c_rs":-17.25,"m0":1.847639222069853,"af2":0,"c_rc":323.40625,"bgd_e1e5b":1.3969839e-9,"af1":-1.13686837721616e-12,"c_is":-2.6077032e-8,"c_ic":2.6077032e-8,"omega0":1.8192893838138675,"iodc":67} +{"cpu_vint":987,"length":10,"fe_temperature":5641,"preamble":85,"sender":22963,"cpu_vaux":1779,"msg_type":181,"payload":"5hbbA/MGTxUJFg==","dev_vin":5862,"crc":42654,"cpu_temperature":5455} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"Mgi8LC8QAAAAAAE=","wn":2098,"tow":271527100,"crc":7264} +{"length":16,"flags":17,"ns":99999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EbwsLxDkBwMZAxkJ/uD1BQ==","day":25,"tow":271527100,"year":2020,"crc":32201,"minutes":25,"month":3,"seconds":9} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.466236550805093,"preamble":85,"sender":22963,"msg_type":522,"payload":"vCwvED0qFexl6kJAVEmxE1aSXsBg6FFHW3cxwAECWwQPBg==","lat":37.83123541863868,"tow":271527100,"h_accuracy":513,"crc":23482,"lon":-122.28650371850136} +{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"vCwvEAQAAAAFAAAAAgAAAPEAygIPAg==","n":4,"d":2,"tow":271527100,"h_accuracy":241,"crc":2825,"e":5} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"vCwvEJsAhwBMAEgAcgAG","tow":271527100,"crc":20608,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"vCwvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271527100,"h_accuracy":0,"crc":55331,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"vCwvEP//","tow":271527100,"crc":4119} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgggLS8QAAAAAAE=","wn":2098,"tow":271527200,"crc":751} +{"length":16,"flags":17,"ns":199999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"ESAtLxDkBwMZAxkJ/sHrCw==","day":25,"tow":271527200,"year":2020,"crc":53379,"minutes":25,"month":3,"seconds":9} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.47467253577704,"preamble":85,"sender":22963,"msg_type":522,"payload":"IC0vELpkGOxl6kJA4HemE1aSXsDGeKkjhHkxwAECWwQPBg==","lat":37.83123542014205,"tow":271527200,"h_accuracy":513,"crc":61571,"lon":-122.28650370842615} +{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"IC0vEP7////7////FQAAAPEAygIPAg==","n":-2,"d":21,"tow":271527200,"h_accuracy":241,"crc":53607,"e":-5} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"IC0vEJsAhwBMAEgAcgAG","tow":271527200,"crc":36238,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"IC0vEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271527200,"h_accuracy":0,"crc":62436,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"IC0vEP//","tow":271527200,"crc":32513} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgiELS8QAAAAAAE=","wn":2098,"tow":271527300,"crc":34382} +{"length":16,"flags":17,"ns":299999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EYQtLxDkBwMZAxkJ/qLhEQ==","day":25,"tow":271527300,"year":2020,"crc":7356,"minutes":25,"month":3,"seconds":9} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.476398941894153,"preamble":85,"sender":22963,"msg_type":522,"payload":"hC0vEBozCOxl6kJA8NaQE1aSXsDOSPNH9XkxwAECWwQPBg==","lat":37.8312354126012,"tow":271527300,"h_accuracy":513,"crc":37051,"lon":-122.28650368828289} +{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"hC0vEP////8CAAAA6f////EAygIPAg==","n":-1,"d":-23,"tow":271527300,"h_accuracy":241,"crc":4371,"e":2} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"hC0vEJsAhwBMAEgAcgAG","tow":271527300,"crc":57146,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"hC0vEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271527300,"h_accuracy":0,"crc":33949,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"hC0vEP//","tow":271527300,"crc":39048} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":237,"states":[{"cn0":213,"mesid":{"sat":5,"code":0}},{"cn0":181,"mesid":{"sat":21,"code":0}},{"cn0":187,"mesid":{"sat":2,"code":0}},{"cn0":165,"mesid":{"sat":31,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":218,"mesid":{"sat":25,"code":0}},{"cn0":208,"mesid":{"sat":12,"code":0}},{"cn0":213,"mesid":{"sat":29,"code":0}},{"cn0":206,"mesid":{"sat":18,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":206,"mesid":{"sat":131,"code":2}},{"cn0":204,"mesid":{"sat":25,"code":1}},{"cn0":187,"mesid":{"sat":12,"code":1}},{"cn0":153,"mesid":{"sat":31,"code":1}},{"cn0":197,"mesid":{"sat":18,"code":1}},{"cn0":194,"mesid":{"sat":29,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":194,"mesid":{"sat":5,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":213,"mesid":{"sat":100,"code":3}},{"cn0":178,"mesid":{"sat":98,"code":3}},{"cn0":174,"mesid":{"sat":102,"code":3}},{"cn0":208,"mesid":{"sat":101,"code":3}},{"cn0":208,"mesid":{"sat":93,"code":3}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":182,"mesid":{"sat":106,"code":3}},{"cn0":203,"mesid":{"sat":104,"code":3}},{"cn0":170,"mesid":{"sat":98,"code":4}},{"cn0":204,"mesid":{"sat":102,"code":4}},{"cn0":70,"mesid":{"sat":93,"code":4}},{"cn0":201,"mesid":{"sat":100,"code":4}},{"cn0":195,"mesid":{"sat":101,"code":4}},{"cn0":188,"mesid":{"sat":104,"code":4}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":175,"mesid":{"sat":106,"code":4}},{"cn0":200,"mesid":{"sat":35,"code":12}},{"cn0":172,"mesid":{"sat":26,"code":12}},{"cn0":158,"mesid":{"sat":34,"code":12}},{"cn0":188,"mesid":{"sat":24,"code":12}},{"cn0":159,"mesid":{"sat":25,"code":12}},{"cn0":184,"mesid":{"sat":12,"code":12}},{"cn0":185,"mesid":{"sat":19,"code":12}},{"cn0":192,"mesid":{"sat":22,"code":12}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":209,"mesid":{"sat":12,"code":13}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":196,"mesid":{"sat":12,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":192,"mesid":{"sat":25,"code":14}},{"cn0":190,"mesid":{"sat":11,"code":14}},{"cn0":205,"mesid":{"sat":24,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":159,"mesid":{"sat":31,"code":14}},{"cn0":153,"mesid":{"sat":33,"code":14}},{"cn0":201,"mesid":{"sat":25,"code":20}},{"cn0":215,"mesid":{"sat":24,"code":20}},{"cn0":194,"mesid":{"sat":11,"code":20}},{"cn0":174,"mesid":{"sat":31,"code":20}},{"cn0":206,"mesid":{"sat":12,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":169,"mesid":{"sat":33,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}}],"preamble":85,"sender":22963,"msg_type":97,"payload":"BQDVFQC1AgC7HwClAAAAAAAAGQDaDADQHQDVEgDOAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwLOGQHMDAG7HwGZEgHFHQHCAAAABQHCAAAAAAAAAAAAAAAAZAPVYgOyZgOuZQPQXQPQAAAAagO2aAPLYgSqZgTMXQRGZATJZQTDaAS8AAAAagSvIwzIGgysIgyeGAy8GQyfDAy4Ewy5FgzAAAAADA3RAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADA7EAAAAGQ7ACw6+GA7NAAAAHw6fIQ6ZGRTJGBTXCxTCHxSuDBTOAAAAIRSpAAAA","crc":18446} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgjoLS8QAAAAAAE=","wn":2098,"tow":271527400,"crc":52091} +{"length":16,"flags":17,"ns":399999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EegtLxDkBwMZAxkJ/oPXFw==","day":25,"tow":271527400,"year":2020,"crc":26965,"minutes":25,"month":3,"seconds":9} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.482086601781674,"preamble":85,"sender":22963,"msg_type":522,"payload":"6C0vEHkF8etl6kJA87pyE1aSXsD4fQwHansxwAECWwQPBg==","lat":37.831235401807994,"tow":271527400,"h_accuracy":513,"crc":6761,"lon":-122.2865036602414} +{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"6C0vEPz///8CAAAA/P////EAygIPAg==","n":-4,"d":-4,"tow":271527400,"h_accuracy":241,"crc":402,"e":2} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"6C0vEJsAhwBMAEgAcgAG","tow":271527400,"crc":54480,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"6C0vEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271527400,"h_accuracy":0,"crc":49800,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"6C0vEP//","tow":271527400,"crc":52339} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":9,"l2ca_bias":0,"preamble":85,"l2p_bias":0,"sender":22963,"msg_type":117,"payload":"/wAAAAAAAAAA","l1ca_bias":0,"mask":255,"crc":49809,"l1p_bias":0} +{"length":51,"text":"GLO L2OF ME 1 [+1330ms] low CN0 too long, dropping","preamble":85,"sender":22963,"msg_type":1025,"payload":"BkdMTyBMMk9GIE1FIDEgWysxMzMwbXNdIGxvdyBDTjAgdG9vIGxvbmcsIGRyb3BwaW5n","crc":4716,"level":6} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MghMLi8QAAAAAAE=","wn":2098,"tow":271527500,"crc":34735} +{"length":16,"flags":17,"ns":499999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EUwuLxDkBwMZAxkJ/mTNHQ==","day":25,"tow":271527500,"year":2020,"crc":56849,"minutes":25,"month":3,"seconds":9} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.489967312405426,"preamble":85,"sender":22963,"msg_type":522,"payload":"TC4vECbc8utl6kJAtU1CE1aSXsDs425/bn0xwAECWwQPBg==","lat":37.83123540266415,"tow":271527500,"h_accuracy":513,"crc":29561,"lon":-122.28650361514049} +{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"TC4vEP////8PAAAAGwAAAPEAygIPAg==","n":-1,"d":27,"tow":271527500,"h_accuracy":241,"crc":31703,"e":15} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"TC4vEJsAhwBMAEgAcgAG","tow":271527500,"crc":3015,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"TC4vEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271527500,"h_accuracy":0,"crc":56266,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"TC4vEP//","tow":271527500,"crc":50472} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgiwLi8QAAAAAAE=","wn":2098,"tow":271527600,"crc":9942} +{"length":16,"flags":17,"ns":599999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EbAuLxDkBwMZAxkJ/kXDIw==","day":25,"tow":271527600,"year":2020,"crc":35335,"minutes":25,"month":3,"seconds":9} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.493422902391874,"preamble":85,"sender":22963,"msg_type":522,"payload":"sC4vEE9k4utl6kJATyUgE1aSXsDZ3pz2UH4xwAECWwQPBg==","lat":37.83123539499558,"tow":271527600,"h_accuracy":513,"crc":44465,"lon":-122.28650358332855} +{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"sC4vEP3///8DAAAA+/////EAygIPAg==","n":-3,"d":-5,"tow":271527600,"h_accuracy":241,"crc":52924,"e":3} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"sC4vEJsAhwBMAEgAcgAG","tow":271527600,"crc":6837,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"sC4vEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271527600,"h_accuracy":0,"crc":39436,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"sC4vEP//","tow":271527600,"crc":24439} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MggULy8QAAAAAAE=","wn":2098,"tow":271527700,"crc":58788} +{"length":16,"flags":17,"ns":699999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"ERQvLxDkBwMZAxkJ/ia5KQ==","day":25,"tow":271527700,"year":2020,"crc":10033,"minutes":25,"month":3,"seconds":9} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.49329548252506,"preamble":85,"sender":22963,"msg_type":522,"payload":"FC8vEHAoyutl6kJAWSIJE1aSXsCttdycSH4xwAECWwQPBg==","lat":37.831235383710805,"tow":271527700,"h_accuracy":513,"crc":54096,"lon":-122.28650356189736} +{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"FC8vEAEAAAD3////4f////EAygIPAg==","n":1,"d":-31,"tow":271527700,"h_accuracy":241,"crc":2284,"e":-9} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"FC8vEJsAhwBMAEgAcgAG","tow":271527700,"crc":13152,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"FC8vEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271527700,"h_accuracy":0,"crc":14467,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"FC8vEP//","tow":271527700,"crc":4783} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"message_type":4,"length":34,"data":[23,255,127,255,253,127,240,1,127,255,254,255,239,251,127,247,255,127,247,255,238,94,110,170,175,255,240],"preamble":85,"sender":22963,"msg_type":30583,"payload":"gwI/Li8QBBf/f//9f/ABf//+/+/7f/f/f/f/7l5uqq//8A==","tow":271527487,"crc":44433,"sid":{"sat":131,"code":2}} +{"length":92,"gamma":-9.094947e-13,"vel":[-2222.8660583496094,-1659.963607788086,-1670.3033447265625],"iod":100,"preamble":85,"sender":22963,"d_tau":2.7939677e-9,"msg_type":139,"payload":"CwNGIgQAMggAAABAYAkAAAEAAACAqwDmlTcAAEAxAACAR+eDbcEAAAA4HE4XQQAAUAGIVHNBAAAAbLtdocAAAAC82u+ZwAAAAKA2GZrAAAB6tQCAOzYAAPq1CGQ=","pos":[-1.5474490234375e7,381831.0546875,2.026918408203125e7],"crc":50097,"common":{"health_bits":0,"fit_interval":2400,"valid":1,"sid":{"sat":11,"code":3},"toe":{"wn":2098,"tow":270918},"ura":2},"tau":1.7869286e-5,"fcn":8,"acc":[-9.313226e-7,2.7939677e-6,-1.8626451e-6]} +{"length":92,"gamma":0,"vel":[2992.52986907959,-1104.3386459350586,-178.58600616455078],"iod":100,"preamble":85,"sender":22963,"d_tau":4.656613e-9,"msg_type":139,"payload":"FANGIgQAMggAAIBAYAkAAAEAAAAAAECe1TkAAKAxAAAAuA7SQcEAAEBAz29jwQAA4GdQM3ZBAAAASw9hp0AAAADGWkGRwAAAAJDAUmbAAAB6NQAAAIAAAPq1CmQ=","pos":[-2335773.4375,-1.01904580078125e7,2.32788544921875e7],"crc":33330,"common":{"health_bits":0,"fit_interval":2400,"valid":1,"sid":{"sat":20,"code":3},"toe":{"wn":2098,"tow":270918},"ura":4},"tau":4.074443e-4,"fcn":10,"acc":[9.313226e-7,0,-1.8626451e-6]} +{"length":92,"gamma":9.094947e-13,"vel":[-301.24950408935547,848.7043380737305,3434.189796447754],"iod":100,"preamble":85,"sender":22963,"d_tau":2.7939677e-9,"msg_type":139,"payload":"BQNGIgQAMggAAIBAYAkAAAEAAACAKwC7RrgAAEAxAACAPjXzWEEAADCIaLR2wQAAAJfDqlhBAAAA+P3TcsAAAAB8ooWKQAAAAC1h1KpAAAB6NgAA+rUAAHq1CWQ=","pos":[6540500.9765625,-2.380762451171875e7,6466318.359375],"crc":53984,"common":{"health_bits":0,"fit_interval":2400,"valid":1,"sid":{"sat":5,"code":3},"toe":{"wn":2098,"tow":270918},"ura":4},"tau":-4.7381036e-5,"fcn":9,"acc":[3.7252903e-6,-1.8626451e-6,-9.313226e-7]} +{"length":92,"gamma":0,"vel":[-696.5875625610352,-328.67431640625,-3462.845802307129],"iod":100,"preamble":85,"sender":22963,"d_tau":0,"msg_type":139,"payload":"CgNGIgQAMggAAOBAYAkAAAEAAAAAAADEbTgAAAAAAAAAFwhFdMEAACB48+dowQAAwO6k8VRBAAAAVLPEhcAAAAAAyop0wAAAAA2xDavAAAAAAACAOzYAAACAAWQ=","pos":[-2.12542734375e7,-1.305794775390625e7,5490323.73046875],"crc":45853,"common":{"health_bits":0,"fit_interval":2400,"valid":1,"sid":{"sat":10,"code":3},"toe":{"wn":2098,"tow":270918},"ura":7},"tau":5.6687742e-5,"fcn":1,"acc":[0,2.7939677e-6,0]} +{"length":92,"gamma":-2.728484e-12,"vel":[2159.489631652832,-671.0147857666016,2543.1900024414063],"iod":100,"preamble":85,"sender":22963,"d_tau":9.313226e-10,"msg_type":139,"payload":"FQNGIgQAMggAAIBAYAkAAAEAAABArIAU7jgAAIAwAAAwUcqXcsEAAAA0nRoUwQAAgBD6ZG9BAAAAsfreoEAAAABIHviEwAAAAEhh3qNAAAB6tQCAOzYAAPq1DGQ=","pos":[-1.949610107421875e7,-329383.30078125,1.6459728515625e7],"crc":11629,"common":{"health_bits":0,"fit_interval":2400,"valid":1,"sid":{"sat":21,"code":3},"toe":{"wn":2098,"tow":270918},"ura":4},"tau":1.1352543e-4,"fcn":12,"acc":[-9.313226e-7,2.7939677e-6,-1.8626451e-6]} +{"length":92,"gamma":1.8189894e-12,"vel":[809.9918365478516,769.8259353637695,-3324.6536254882813],"iod":100,"preamble":85,"sender":22963,"d_tau":-3.7252903e-9,"msg_type":139,"payload":"CQNGIgQAMggAAABAYAkAAAEAAAAALICvAbkAAICxAACga9onb8EAAIA6nfZwwQAAgLft6F7BAAAASO9PiUAAAACEmw6IQAAAAKhO+anAAAD6NQAA+jUAAHo1BmQ=","pos":[-1.633454736328125e7,-1.778734765625e7,-8102838.8671875],"crc":34365,"common":{"health_bits":0,"fit_interval":2400,"valid":1,"sid":{"sat":9,"code":3},"toe":{"wn":2098,"tow":270918},"ura":2},"tau":-1.2367778e-4,"fcn":6,"acc":[1.8626451e-6,1.8626451e-6,9.313226e-7]} +{"length":92,"gamma":1.8189894e-12,"vel":[-479.2194366455078,2705.232620239258,1765.4428482055664],"iod":100,"preamble":85,"sender":22963,"d_tau":-2.7939677e-9,"msg_type":139,"payload":"BANGIgQAMggAAKBAYAkAAAEAAAAALAAiNbgAAECxAAAgdUE8ZUEAAGA4CTplwQAAUEpjK3NBAAAA0ILzfcAAAAAadyKlQAAAAHrFlZtAAAD6NQAA+rUAAPq1DmQ=","pos":[1.113345166015625e7,-1.112890576171875e7,2.010066064453125e7],"crc":64387,"common":{"health_bits":0,"fit_interval":2400,"valid":1,"sid":{"sat":4,"code":3},"toe":{"wn":2098,"tow":270918},"ura":5},"tau":-4.3185428e-5,"fcn":14,"acc":[1.8626451e-6,-1.8626451e-6,-1.8626451e-6]} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"Mgh4Ly8QAAAAAAE=","wn":2098,"tow":271527800,"crc":43153} +{"length":16,"flags":17,"ns":799999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EXgvLxDkBwMZAxkJ/gevLw==","day":25,"tow":271527800,"year":2020,"crc":21566,"minutes":25,"month":3,"seconds":9} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.4923759555231,"preamble":85,"sender":22963,"msg_type":522,"payload":"eC8vEOfX5Otl6kJAmE8EE1aSXsD4TsJZDH4xwAECWwQPBg==","lat":37.83123539613717,"tow":271527800,"h_accuracy":513,"crc":8830,"lon":-122.28650355740535} +{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"eC8vEA8AAAD2/////P////EAygIPAg==","n":15,"d":-4,"tow":271527800,"h_accuracy":241,"crc":55486,"e":-10} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"eC8vEJsAhwBMAEgAcgAG","tow":271527800,"crc":14474,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"eC8vEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271527800,"h_accuracy":0,"crc":32406,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"eC8vEP//","tow":271527800,"crc":18004} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":237,"states":[{"cn0":212,"mesid":{"sat":5,"code":0}},{"cn0":180,"mesid":{"sat":21,"code":0}},{"cn0":186,"mesid":{"sat":2,"code":0}},{"cn0":162,"mesid":{"sat":31,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":217,"mesid":{"sat":25,"code":0}},{"cn0":207,"mesid":{"sat":12,"code":0}},{"cn0":212,"mesid":{"sat":29,"code":0}},{"cn0":205,"mesid":{"sat":18,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":204,"mesid":{"sat":131,"code":2}},{"cn0":204,"mesid":{"sat":25,"code":1}},{"cn0":186,"mesid":{"sat":12,"code":1}},{"cn0":151,"mesid":{"sat":31,"code":1}},{"cn0":196,"mesid":{"sat":18,"code":1}},{"cn0":194,"mesid":{"sat":29,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":193,"mesid":{"sat":5,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":213,"mesid":{"sat":11,"code":3}},{"cn0":179,"mesid":{"sat":9,"code":3}},{"cn0":174,"mesid":{"sat":20,"code":3}},{"cn0":208,"mesid":{"sat":5,"code":3}},{"cn0":208,"mesid":{"sat":10,"code":3}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":182,"mesid":{"sat":4,"code":3}},{"cn0":203,"mesid":{"sat":21,"code":3}},{"cn0":170,"mesid":{"sat":9,"code":4}},{"cn0":205,"mesid":{"sat":20,"code":4}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":201,"mesid":{"sat":11,"code":4}},{"cn0":195,"mesid":{"sat":5,"code":4}},{"cn0":188,"mesid":{"sat":0,"code":4}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":175,"mesid":{"sat":4,"code":4}},{"cn0":200,"mesid":{"sat":35,"code":12}},{"cn0":172,"mesid":{"sat":26,"code":12}},{"cn0":159,"mesid":{"sat":34,"code":12}},{"cn0":188,"mesid":{"sat":24,"code":12}},{"cn0":158,"mesid":{"sat":25,"code":12}},{"cn0":184,"mesid":{"sat":12,"code":12}},{"cn0":185,"mesid":{"sat":19,"code":12}},{"cn0":192,"mesid":{"sat":22,"code":12}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":209,"mesid":{"sat":12,"code":13}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":195,"mesid":{"sat":12,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":192,"mesid":{"sat":25,"code":14}},{"cn0":189,"mesid":{"sat":11,"code":14}},{"cn0":204,"mesid":{"sat":24,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":158,"mesid":{"sat":31,"code":14}},{"cn0":152,"mesid":{"sat":33,"code":14}},{"cn0":201,"mesid":{"sat":25,"code":20}},{"cn0":215,"mesid":{"sat":24,"code":20}},{"cn0":194,"mesid":{"sat":11,"code":20}},{"cn0":175,"mesid":{"sat":31,"code":20}},{"cn0":206,"mesid":{"sat":12,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":169,"mesid":{"sat":33,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}}],"preamble":85,"sender":22963,"msg_type":97,"payload":"BQDUFQC0AgC6HwCiAAAAAAAAGQDZDADPHQDUEgDNAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwLMGQHMDAG6HwGXEgHEHQHCAAAABQHBAAAAAAAAAAAAAAAACwPVCQOzFAOuBQPQCgPQAAAABAO2FQPLCQSqFATNAAAACwTJBQTDAAS8AAAABASvIwzIGgysIgyfGAy8GQyeDAy4Ewy5FgzAAAAADA3RAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADA7DAAAAGQ7ACw69GA7MAAAAHw6eIQ6YGRTJGBTXCxTCHxSvDBTOAAAAIRSpAAAA","crc":45824} +{"length":128,"preamble":85,"sender":22963,"msg_type":151,"payload":"AgAaHQUAKzUMAFEtFQB9GRkAbUYaAKEBHQChNx8AlQ4EAxUWBQMyIQkDXw4KA3EpCwOYJQwDqgMTAyIHFAMMMRUDlSUMDJQpEwwjIBQMDwIWDEMkGAyCIxkMnQ4aDGcVIgyOESMMIi0LDosyDA4PPBgObDYZDpcpHw5VESEOIA8=","crc":34187,"azel":[{"el":29,"az":26,"sid":{"sat":2,"code":0}},{"el":53,"az":43,"sid":{"sat":5,"code":0}},{"el":45,"az":81,"sid":{"sat":12,"code":0}},{"el":25,"az":125,"sid":{"sat":21,"code":0}},{"el":70,"az":109,"sid":{"sat":25,"code":0}},{"el":1,"az":161,"sid":{"sat":26,"code":0}},{"el":55,"az":161,"sid":{"sat":29,"code":0}},{"el":14,"az":149,"sid":{"sat":31,"code":0}},{"el":22,"az":21,"sid":{"sat":4,"code":3}},{"el":33,"az":50,"sid":{"sat":5,"code":3}},{"el":14,"az":95,"sid":{"sat":9,"code":3}},{"el":41,"az":113,"sid":{"sat":10,"code":3}},{"el":37,"az":152,"sid":{"sat":11,"code":3}},{"el":3,"az":170,"sid":{"sat":12,"code":3}},{"el":7,"az":34,"sid":{"sat":19,"code":3}},{"el":49,"az":12,"sid":{"sat":20,"code":3}},{"el":37,"az":149,"sid":{"sat":21,"code":3}},{"el":41,"az":148,"sid":{"sat":12,"code":12}},{"el":32,"az":35,"sid":{"sat":19,"code":12}},{"el":2,"az":15,"sid":{"sat":20,"code":12}},{"el":36,"az":67,"sid":{"sat":22,"code":12}},{"el":35,"az":130,"sid":{"sat":24,"code":12}},{"el":14,"az":157,"sid":{"sat":25,"code":12}},{"el":21,"az":103,"sid":{"sat":26,"code":12}},{"el":17,"az":142,"sid":{"sat":34,"code":12}},{"el":45,"az":34,"sid":{"sat":35,"code":12}},{"el":50,"az":139,"sid":{"sat":11,"code":14}},{"el":60,"az":15,"sid":{"sat":12,"code":14}},{"el":54,"az":108,"sid":{"sat":24,"code":14}},{"el":41,"az":151,"sid":{"sat":25,"code":14}},{"el":17,"az":85,"sid":{"sat":31,"code":14}},{"el":15,"az":32,"sid":{"sat":33,"code":14}}]} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgjcLy8QAAAAAAE=","wn":2098,"tow":271527900,"crc":11312} +{"length":16,"flags":17,"ns":899999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EdwvLxDkBwMZAxkJ/uikNQ==","day":25,"tow":271527900,"year":2020,"crc":58635,"minutes":25,"month":3,"seconds":9} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.497015451736722,"preamble":85,"sender":22963,"msg_type":522,"payload":"3C8vEJ7kuetl6kJA79vzElaSXsDe0JZnPH8xwAECWwQPBg==","lat":37.83123537613686,"tow":271527900,"h_accuracy":513,"crc":59898,"lon":-122.28650354208342} +{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"3C8vEPL///8HAAAAJgAAAPEAygIPAg==","n":-14,"d":38,"tow":271527900,"h_accuracy":241,"crc":38592,"e":7} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"3C8vEJsAhwBMAEgAcgAG","tow":271527900,"crc":27198,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"3C8vEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271527900,"h_accuracy":0,"crc":2543,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"3C8vEP//","tow":271527900,"crc":41437} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":249,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":174,"i":110566634},"flags":15,"cn0":212,"P":1052006413,"D":{"f":133,"i":-192},"lock":15,"sid":{"sat":5,"code":0}},{"L":{"f":215,"i":121796490},"flags":15,"cn0":179,"P":1158855102,"D":{"f":25,"i":2171},"lock":15,"sid":{"sat":21,"code":0}},{"L":{"f":224,"i":123370544},"flags":15,"cn0":186,"P":1173831300,"D":{"f":157,"i":-2478},"lock":15,"sid":{"sat":2,"code":0}},{"L":{"f":253,"i":128743548},"flags":15,"cn0":163,"P":1224954123,"D":{"f":85,"i":-401},"lock":15,"sid":{"sat":31,"code":0}},{"L":{"f":243,"i":107837986},"flags":15,"cn0":216,"P":1026044262,"D":{"f":85,"i":-1134},"lock":15,"sid":{"sat":25,"code":0}},{"L":{"f":190,"i":114137339},"flags":15,"cn0":207,"P":1085980598,"D":{"f":186,"i":-2972},"lock":15,"sid":{"sat":12,"code":0}},{"L":{"f":123,"i":110741616},"flags":15,"cn0":212,"P":1053671371,"D":{"f":212,"i":1482},"lock":15,"sid":{"sat":29,"code":0}},{"L":{"f":182,"i":84029620},"flags":15,"cn0":204,"P":1026044314,"D":{"f":83,"i":-883},"lock":15,"sid":{"sat":25,"code":1}},{"L":{"f":112,"i":88938218},"flags":15,"cn0":186,"P":1085980485,"D":{"f":195,"i":-2317},"lock":15,"sid":{"sat":12,"code":1}},{"L":{"f":252,"i":100319650},"flags":15,"cn0":152,"P":1224954090,"D":{"f":57,"i":-312},"lock":15,"sid":{"sat":31,"code":1}},{"L":{"f":134,"i":86292170},"flags":15,"cn0":194,"P":1053671294,"D":{"f":176,"i":1155},"lock":15,"sid":{"sat":29,"code":1}},{"L":{"f":127,"i":86155848},"flags":15,"cn0":193,"P":1052006346,"D":{"f":91,"i":-150},"lock":15,"sid":{"sat":5,"code":1}},{"L":{"f":174,"i":112921331},"flags":15,"cn0":213,"P":1056584066,"D":{"f":159,"i":1156},"lock":15,"sid":{"sat":11,"code":3}},{"L":{"f":43,"i":123394813},"flags":15,"cn0":179,"P":1155394040,"D":{"f":21,"i":-4406},"lock":15,"sid":{"sat":9,"code":3}}],"payload":"QDAvEAAAAAAyCEANWLQ+6hyXBq5A/4XUDw8FAL65EkWKd0IH13sIGbMPDxUAhD73RTB8WgfgUvadug8PAgALUQNJfHisB/1v/lWjDw8fAGYxKD0iem0G85L7VdgPDxkAtr+6QPuYzQa+ZPS6zw8PDADLv80+cMiZBnvKBdTUDw8dAJoxKD20MAIFto38U8wPDxkBRb+6QOoWTQVw8/bDug8PDAHqUANJosH6BfzI/jmYDw8fAX6/zT7KtiQFhoMEsMIPDx0Byle0PkiiIgV/av9bwQ8PBQGCMfo+8wq7Bq6EBJ/VDw8LA/jp3UT92loHK8ruFbMPDwkD","header":{"n_obs":64,"t":{"ns_residual":0,"wn":2098,"tow":271528000}},"crc":59163} +{"length":249,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":151,"i":109787254},"flags":15,"cn0":174,"P":1026538184,"D":{"f":48,"i":-1211},"lock":15,"sid":{"sat":20,"code":3}},{"L":{"f":181,"i":114830052},"flags":15,"cn0":208,"P":1074066458,"D":{"f":105,"i":2190},"lock":15,"sid":{"sat":5,"code":3}},{"L":{"f":170,"i":111645532},"flags":15,"cn0":208,"P":1047220559,"D":{"f":228,"i":-3052},"lock":15,"sid":{"sat":10,"code":3}},{"L":{"f":153,"i":120456697},"flags":15,"cn0":183,"P":1124721652,"D":{"f":200,"i":-1326},"lock":15,"sid":{"sat":4,"code":3}},{"L":{"f":68,"i":113397527},"flags":15,"cn0":203,"P":1059551494,"D":{"f":108,"i":1620},"lock":15,"sid":{"sat":21,"code":3}},{"L":{"f":54,"i":95973753},"flags":15,"cn0":171,"P":1155394032,"D":{"f":72,"i":-3428},"lock":15,"sid":{"sat":9,"code":4}},{"L":{"f":163,"i":85390122},"flags":15,"cn0":204,"P":1026538520,"D":{"f":52,"i":-942},"lock":15,"sid":{"sat":20,"code":4}},{"L":{"f":191,"i":87827712},"flags":15,"cn0":201,"P":1056584385,"D":{"f":221,"i":899},"lock":15,"sid":{"sat":11,"code":4}},{"L":{"f":3,"i":89312267},"flags":15,"cn0":195,"P":1074066770,"D":{"f":126,"i":1704},"lock":15,"sid":{"sat":5,"code":4}},{"L":{"f":207,"i":93688532},"flags":15,"cn0":175,"P":1124721855,"D":{"f":97,"i":-1032},"lock":15,"sid":{"sat":4,"code":4}},{"L":{"f":74,"i":121600529},"flags":15,"cn0":200,"P":1167604876,"D":{"f":68,"i":-1500},"lock":15,"sid":{"sat":35,"code":12}},{"L":{"f":188,"i":129253220},"flags":15,"cn0":172,"P":1241086155,"D":{"f":37,"i":-3007},"lock":15,"sid":{"sat":26,"code":12}},{"L":{"f":75,"i":132915114},"flags":15,"cn0":158,"P":1276247287,"D":{"f":165,"i":2248},"lock":15,"sid":{"sat":34,"code":12}},{"L":{"f":75,"i":125169231},"flags":15,"cn0":188,"P":1201871760,"D":{"f":137,"i":-1308},"lock":15,"sid":{"sat":24,"code":12}}],"payload":"QDAvEAAAAAAyCEHIui89djiLBpdF+zCuDw8UAxr0BEDkKtgGtY4IadAPDwUDT1FrPlyTpwaqFPTk0A8PCgP04wlD+QUuB5nS+si3Dw8EAwZ5Jz8XT8IGRFQGbMsPDxUD8OndRHlxuAU2nPJIqw8PCQQYvC89KvMWBaNS/DTMDw8UBMEy+j4AJTwFv4MD3ckPDwsEUvUEQAvMUgUDqAZ+ww8PBQS/5AlD1JKVBc/4+2GvDw8EBIw8mEURej8HSiT6RMgPDyMMy3j5SWQ/tAe8QfQlrA8PGgz3/BFMqh/sB0vICKWeDw8iDJAbo0dP7nUHS+T6ibwPDxgM","header":{"n_obs":65,"t":{"ns_residual":0,"wn":2098,"tow":271528000}},"crc":7483} +{"length":249,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":28,"i":134653987},"flags":15,"cn0":159,"P":1292944152,"D":{"f":230,"i":1319},"lock":15,"sid":{"sat":25,"code":12}},{"L":{"f":27,"i":121077810},"flags":15,"cn0":184,"P":1162585975,"D":{"f":167,"i":1611},"lock":15,"sid":{"sat":12,"code":12}},{"L":{"f":122,"i":124518956},"flags":15,"cn0":185,"P":1195627776,"D":{"f":93,"i":-297},"lock":15,"sid":{"sat":19,"code":12}},{"L":{"f":100,"i":124671603},"flags":15,"cn0":192,"P":1197093531,"D":{"f":84,"i":2383},"lock":15,"sid":{"sat":22,"code":12}},{"L":{"f":165,"i":93625051},"flags":15,"cn0":209,"P":1162585919,"D":{"f":78,"i":1246},"lock":15,"sid":{"sat":12,"code":13}},{"L":{"f":175,"i":116440262},"flags":15,"cn0":195,"P":1107892238,"D":{"f":215,"i":-1029},"lock":15,"sid":{"sat":12,"code":14}},{"L":{"f":58,"i":132459814},"flags":15,"cn0":192,"P":1260313143,"D":{"f":134,"i":1082},"lock":15,"sid":{"sat":25,"code":14}},{"L":{"f":76,"i":125408075},"flags":15,"cn0":189,"P":1193218108,"D":{"f":28,"i":1046},"lock":15,"sid":{"sat":11,"code":14}},{"L":{"f":82,"i":118438106},"flags":15,"cn0":204,"P":1126900983,"D":{"f":190,"i":-1750},"lock":15,"sid":{"sat":24,"code":14}},{"L":{"f":7,"i":143365393},"flags":15,"cn0":158,"P":1364076332,"D":{"f":181,"i":-3172},"lock":15,"sid":{"sat":31,"code":14}},{"L":{"f":103,"i":144553860},"flags":15,"cn0":152,"P":1375384256,"D":{"f":48,"i":-2141},"lock":15,"sid":{"sat":33,"code":14}},{"L":{"f":192,"i":101495180},"flags":15,"cn0":201,"P":1260313125,"D":{"f":85,"i":830},"lock":15,"sid":{"sat":25,"code":20}},{"L":{"f":214,"i":90751339},"flags":15,"cn0":215,"P":1126901527,"D":{"f":242,"i":-1341},"lock":15,"sid":{"sat":24,"code":20}},{"L":{"f":180,"i":96091879},"flags":15,"cn0":194,"P":1193217913,"D":{"f":46,"i":802},"lock":15,"sid":{"sat":11,"code":20}}],"payload":"QDAvEAAAAAAyCEIYwxBNI6gGCBwnBeafDw8ZDHenS0UygDcHG0sGp7gPDwwMANVDRywCbAd61/5duQ8PEwybMlpHc1ZuB2RPCVTADw8WDD+nS0XbmpQFpd4ETtEPDwwNDhgJQsa88Aav+/vXww8PDA432h5LJi3lBzo6BIbADw8ZDjwQH0dLk3kHTBYEHL0PDwsO9yQrQ9o4DwdSKvm+zA8PGA4sJ05REZWLCAec87WeDw8fDsCy+lGEt50IZ6P3MJgPDyEOJdoeS4yxDAbAPgNVyQ8PGRQXJytDa8FoBdbD+vLXDw8YFHkPH0fnProFtCIDLsIPDwsU","header":{"n_obs":66,"t":{"ns_residual":0,"wn":2098,"tow":271528000}},"crc":12965} +{"length":62,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":142,"i":109851446},"flags":15,"cn0":175,"P":1364076426,"D":{"f":134,"i":-2431},"lock":15,"sid":{"sat":31,"code":20}},{"L":{"f":158,"i":89220491},"flags":15,"cn0":206,"P":1107892075,"D":{"f":53,"i":-787},"lock":15,"sid":{"sat":12,"code":20}},{"L":{"f":94,"i":110762119},"flags":15,"cn0":169,"P":1375384191,"D":{"f":174,"i":-1638},"lock":15,"sid":{"sat":33,"code":20}}],"payload":"QDAvEAAAAAAyCEOKJ05RNjOMBo6B9oavDw8fFGsXCUKLZVEFnu38Nc4PDwwUf7L6UYcYmgZemvmuqQ8PIRQ=","header":{"n_obs":67,"t":{"ns_residual":0,"wn":2098,"tow":271528000}},"crc":29409} +{"length":9,"l2ca_bias":0,"preamble":85,"l2p_bias":0,"sender":22963,"msg_type":117,"payload":"/wAAAAAAAAAA","l1ca_bias":0,"mask":255,"crc":49809,"l1p_bias":0} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MghAMC8QAAAAAAE=","wn":2098,"tow":271528000,"crc":37146} +{"length":16,"flags":17,"ns":999999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EUAwLxDkBwMZAxkJ/smaOw==","day":25,"tow":271528000,"year":2020,"crc":26716,"minutes":25,"month":3,"seconds":9} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.498315857420504,"preamble":85,"sender":22963,"msg_type":522,"payload":"QDAvECoBwOtl6kJAQpvlElaSXsADs8agkX8xwAECWwQPBg==","lat":37.831235378982754,"tow":271528000,"h_accuracy":513,"crc":22240,"lon":-122.28650352880962} +{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"QDAvEAAAAAAJAAAAAQAAAPEAygIPAg==","n":0,"d":1,"tow":271528000,"h_accuracy":241,"crc":15209,"e":9} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"QDAvEJsAhwBMAEgAcgAG","tow":271528000,"crc":37323,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"QDAvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271528000,"h_accuracy":0,"crc":49125,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"QDAvEP//","tow":271528000,"crc":1337} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":4,"flags":2147616000,"preamble":85,"sender":22963,"msg_type":65535,"payload":"AAUCgA==","crc":40942} +{"length":24,"z":3890655.0240602265,"preamble":85,"sender":22963,"msg_type":72,"payload":"UO0a3iqORMHK1UJhIkRQwc9nFIPvrk1B","crc":2168,"x":-2694229.735196747,"y":-4264073.519704292} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"bWFpbgAAAAAAAAAAAAAAAAAAAAAAAAx1AAA=","name":"main\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":47991,"stack_free":29964,"cpu":0} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"aWRsZQAAAAAAAAAAAAAAAAAAAAAbAHwAAAA=","name":"idle\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":40310,"stack_free":124,"cpu":27} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"cnBtc2cAAAAAAAAAAAAAAAAAAAABAOQNAAA=","name":"rpmsg\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":18957,"stack_free":3556,"cpu":1} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"U0JQAAAAAAAAAAAAAAAAAAAAAAAAAPz/AAA=","name":"SBP\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":51784,"stack_free":65532,"cpu":0} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"TkFQAAAAAAAAAAAAAAAAAAAAAAAAAASAAAA=","name":"NAP\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":33651,"stack_free":32772,"cpu":0} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"bWFuYWdlIFBWAAAAAAAAAAAAAAAAAOwDAAA=","name":"manage PV\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":51010,"stack_free":1004,"cpu":0} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"SU1VAAAAAAAAAAAAAAAAAAAAAAAAAPQHAAA=","name":"IMU\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":14252,"stack_free":2036,"cpu":0} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"SU1VIGF1eAAAAAAAAAAAAAAAAAAAAEwIAAA=","name":"IMU aux\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":18976,"stack_free":2124,"cpu":0} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"bmRiAAAAAAAAAAAAAAAAAAAAAAAAAFAMAAA=","name":"ndb\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":26120,"stack_free":3152,"cpu":0} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"TkFQIFRyYWNraW5nAAAAAAAAAAAuAdR3AAA=","name":"NAP Tracking\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":43939,"stack_free":30676,"cpu":302} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"ZGVjb2RlAAAAAAAAAAAAAAAAAAAJANQGAAA=","name":"decode\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":55602,"stack_free":1748,"cpu":9} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"bWFuYWdlIGFjcQAAAAAAAAAAAADzAaR3AAA=","name":"manage acq\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":7795,"stack_free":30628,"cpu":499} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"c3lzdGVtIG1vbml0b3IAAAAAAAAAACwGAAA=","name":"system monitor\u0000\u0000\u0000\u0000\u0000\u0000","crc":58531,"stack_free":1580,"cpu":0} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"V2F0Y2hkb2cAAAAAAAAAAAAAAAAAAOQDAAA=","name":"Watchdog\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":44438,"stack_free":996,"cpu":0} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"c3RhcmxpbmcAAAAAAAAAAAAAAACVAPz/AAA=","name":"starling\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":15999,"stack_free":65532,"cpu":149} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"bWVfY2FsY19wdnQAAAAAAAAAAAAHAIwjAAA=","name":"me_calc_pvt\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":24698,"stack_free":9100,"cpu":7} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"UFBTAAAAAAAAAAAAAAAAAAAAAAAAAEgHAAA=","name":"PPS\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":38576,"stack_free":1864,"cpu":0} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"c3BlY3RydW0gYW5hbHl6ZXIAAAAAANQPAAA=","name":"spectrum analyzer\u0000\u0000\u0000","crc":50933,"stack_free":4052,"cpu":0} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgikMC8QAAAAAAE=","wn":2098,"tow":271528100,"crc":19042} +{"length":16,"flags":17,"ns":99999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EaQwLxDkBwMZAxkK/uD1BQ==","day":25,"tow":271528100,"year":2020,"crc":10989,"minutes":25,"month":3,"seconds":10} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.50208066592448,"preamble":85,"sender":22963,"msg_type":522,"payload":"pDAvEGmFpetl6kJAtsHcElaSXsB8GchbiIAxwAECWwQPBg==","lat":37.83123536665045,"tow":271528100,"h_accuracy":513,"crc":27134,"lon":-122.2865035205676} +{"v_accuracy":714,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"pDAvEP3///8AAAAAAAAAAPEAygIPAg==","n":-3,"d":0,"tow":271528100,"h_accuracy":241,"crc":47591,"e":0} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"pDAvEJsAhwBMAEgAcgAG","tow":271528100,"crc":59766,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"pDAvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271528100,"h_accuracy":0,"crc":7622,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"pDAvEP//","tow":271528100,"crc":34976} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MggIMS8QAAAAAAE=","wn":2098,"tow":271528200,"crc":41199} +{"length":16,"flags":17,"ns":199999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EQgxLxDkBwMZAxkK/sHrCw==","day":25,"tow":271528200,"year":2020,"crc":21561,"minutes":25,"month":3,"seconds":10} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.5073098327424,"preamble":85,"sender":22963,"msg_type":522,"payload":"CDEvEN3gnOtl6kJAKxXSElaSXsBekaQO34ExwAECWwQPBg==","lat":37.831235362625854,"tow":271528200,"h_accuracy":513,"crc":26313,"lon":-122.28650351062667} +{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"CDEvEAUAAAABAAAACAAAAPEAywIPAg==","n":5,"d":8,"tow":271528200,"h_accuracy":241,"crc":56609,"e":1} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"CDEvEJsAhwBMAEgAcgAG","tow":271528200,"crc":59366,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"CDEvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271528200,"h_accuracy":0,"crc":57834,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"CDEvEP//","tow":271528200,"crc":51258} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MghsMS8QAAAAAAE=","wn":2098,"tow":271528300,"crc":50213} +{"length":16,"flags":17,"ns":299999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EWwxLxDkBwMZAxkK/qLhEQ==","day":25,"tow":271528300,"year":2020,"crc":58909,"minutes":25,"month":3,"seconds":10} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.513536378650866,"preamble":85,"sender":22963,"msg_type":522,"payload":"bDEvEC0Hhutl6kJAF/rPElaSXsCbnL8ed4MxwAECWwQPBg==","lat":37.831235351985335,"tow":271528300,"h_accuracy":513,"crc":60846,"lon":-122.28650350866552} +{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"bDEvEP////8GAAAA/v////EAywIPAg==","n":-1,"d":-2,"tow":271528300,"h_accuracy":241,"crc":28591,"e":6} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"bDEvEJsAhwBMAEgAcgAG","tow":271528300,"crc":52041,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"bDEvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271528300,"h_accuracy":0,"crc":63836,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"bDEvEP//","tow":271528300,"crc":37251} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":237,"states":[{"cn0":212,"mesid":{"sat":5,"code":0}},{"cn0":179,"mesid":{"sat":21,"code":0}},{"cn0":185,"mesid":{"sat":2,"code":0}},{"cn0":162,"mesid":{"sat":31,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":216,"mesid":{"sat":25,"code":0}},{"cn0":206,"mesid":{"sat":12,"code":0}},{"cn0":212,"mesid":{"sat":29,"code":0}},{"cn0":204,"mesid":{"sat":18,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":203,"mesid":{"sat":131,"code":2}},{"cn0":204,"mesid":{"sat":25,"code":1}},{"cn0":186,"mesid":{"sat":12,"code":1}},{"cn0":151,"mesid":{"sat":31,"code":1}},{"cn0":196,"mesid":{"sat":18,"code":1}},{"cn0":194,"mesid":{"sat":29,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":193,"mesid":{"sat":5,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":214,"mesid":{"sat":100,"code":3}},{"cn0":179,"mesid":{"sat":98,"code":3}},{"cn0":174,"mesid":{"sat":102,"code":3}},{"cn0":208,"mesid":{"sat":101,"code":3}},{"cn0":208,"mesid":{"sat":93,"code":3}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":182,"mesid":{"sat":106,"code":3}},{"cn0":203,"mesid":{"sat":104,"code":3}},{"cn0":171,"mesid":{"sat":98,"code":4}},{"cn0":205,"mesid":{"sat":102,"code":4}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":201,"mesid":{"sat":100,"code":4}},{"cn0":196,"mesid":{"sat":101,"code":4}},{"cn0":188,"mesid":{"sat":104,"code":4}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":175,"mesid":{"sat":106,"code":4}},{"cn0":200,"mesid":{"sat":35,"code":12}},{"cn0":172,"mesid":{"sat":26,"code":12}},{"cn0":159,"mesid":{"sat":34,"code":12}},{"cn0":188,"mesid":{"sat":24,"code":12}},{"cn0":159,"mesid":{"sat":25,"code":12}},{"cn0":185,"mesid":{"sat":12,"code":12}},{"cn0":185,"mesid":{"sat":19,"code":12}},{"cn0":192,"mesid":{"sat":22,"code":12}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":209,"mesid":{"sat":12,"code":13}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":195,"mesid":{"sat":12,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":192,"mesid":{"sat":25,"code":14}},{"cn0":189,"mesid":{"sat":11,"code":14}},{"cn0":204,"mesid":{"sat":24,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":157,"mesid":{"sat":31,"code":14}},{"cn0":153,"mesid":{"sat":33,"code":14}},{"cn0":201,"mesid":{"sat":25,"code":20}},{"cn0":215,"mesid":{"sat":24,"code":20}},{"cn0":194,"mesid":{"sat":11,"code":20}},{"cn0":175,"mesid":{"sat":31,"code":20}},{"cn0":206,"mesid":{"sat":12,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":169,"mesid":{"sat":33,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}}],"preamble":85,"sender":22963,"msg_type":97,"payload":"BQDUFQCzAgC5HwCiAAAAAAAAGQDYDADOHQDUEgDMAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwLLGQHMDAG6HwGXEgHEHQHCAAAABQHBAAAAAAAAAAAAAAAAZAPWYgOzZgOuZQPQXQPQAAAAagO2aAPLYgSrZgTNAAAAZATJZQTEaAS8AAAAagSvIwzIGgysIgyfGAy8GQyfDAy5Ewy5FgzAAAAADA3RAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADA7DAAAAGQ7ACw69GA7MAAAAHw6dIQ6ZGRTJGBTXCxTCHxSvDBTOAAAAIRSpAAAA","crc":21854} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgjQMS8QAAAAAAE=","wn":2098,"tow":271528400,"crc":14981} +{"length":16,"flags":17,"ns":399999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EdAxLxDkBwMZAxkK/oPXFw==","day":25,"tow":271528400,"year":2020,"crc":41829,"minutes":25,"month":3,"seconds":10} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.5179741030323,"preamble":85,"sender":22963,"msg_type":522,"payload":"0DEvEJ9naetl6kJAg8jaElaSXsDcsmjzmYQxwAECWwQPBg==","lat":37.83123533865659,"tow":271528400,"h_accuracy":513,"crc":6251,"lon":-122.2865035187297} +{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"0DEvEAIAAAD6////BQAAAPEAywIPAg==","n":2,"d":5,"tow":271528400,"h_accuracy":241,"crc":63955,"e":-6} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"0DEvEJsAhwBMAEgAcgAG","tow":271528400,"crc":61490,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"0DEvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271528400,"h_accuracy":0,"crc":28096,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"0DEvEP//","tow":271528400,"crc":25036} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":9,"l2ca_bias":0,"preamble":85,"l2p_bias":0,"sender":22963,"msg_type":117,"payload":"/wAAAAAAAAAA","l1ca_bias":0,"mask":255,"crc":49809,"l1p_bias":0} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"Mgg0Mi8QAAAAAAE=","wn":2098,"tow":271528500,"crc":10632} +{"length":16,"flags":17,"ns":499999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"ETQyLxDkBwMZAxkK/mTNHQ==","day":25,"tow":271528500,"year":2020,"crc":15912,"minutes":25,"month":3,"seconds":10} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.521637712947758,"preamble":85,"sender":22963,"msg_type":522,"payload":"NDIvEJpgRutl6kJAkCDWElaSXsCKeJUMioUxwAECWwQPBg==","lat":37.83123532234568,"tow":271528500,"h_accuracy":513,"crc":793,"lon":-122.28650351439342} +{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"NDIvEPv////5/////f////EAywIPAg==","n":-5,"d":-3,"tow":271528500,"h_accuracy":241,"crc":23504,"e":-7} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"NDIvEJsAhwBMAEgAcgAG","tow":271528500,"crc":1324,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"NDIvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271528500,"h_accuracy":0,"crc":41432,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"NDIvEP//","tow":271528500,"crc":647} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgiYMi8QAAAAAAE=","wn":2098,"tow":271528600,"crc":34006} +{"length":16,"flags":17,"ns":599999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EZgyLxDkBwMZAxkK/kXDIw==","day":25,"tow":271528600,"year":2020,"crc":3773,"minutes":25,"month":3,"seconds":10} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.525909606481804,"preamble":85,"sender":22963,"msg_type":522,"payload":"mDIvELKkS+tl6kJAe0i3ElaSXsDYfRADooYxwAECWwQPBg==","lat":37.831235324797845,"tow":271528600,"h_accuracy":513,"crc":59203,"lon":-122.28650348566764} +{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"mDIvEAoAAAANAAAA/f////EAywIPAg==","n":10,"d":-3,"tow":271528600,"h_accuracy":241,"crc":59259,"e":13} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"mDIvEJsAhwBMAEgAcgAG","tow":271528600,"crc":28893,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"mDIvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271528600,"h_accuracy":0,"crc":34818,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"mDIvEP//","tow":271528600,"crc":59468} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"Mgj8Mi8QAAAAAAE=","wn":2098,"tow":271528700,"crc":57372} +{"length":16,"flags":17,"ns":699999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EfwyLxDkBwMZAxkK/ia5KQ==","day":25,"tow":271528700,"year":2020,"crc":42737,"minutes":25,"month":3,"seconds":10} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.530555189128012,"preamble":85,"sender":22963,"msg_type":522,"payload":"/DIvECbBROtl6kJACbu0ElaSXsAlBwJ30ocxwAECWwQPBg==","lat":37.83123532158997,"tow":271528700,"h_accuracy":513,"crc":56626,"lon":-122.28650348329042} +{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"/DIvEAMAAAD3////FQAAAPEAywIPAg==","n":3,"d":21,"tow":271528700,"h_accuracy":241,"crc":3503,"e":-9} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"/DIvEJsAhwBMAEgAcgAG","tow":271528700,"crc":23666,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"/DIvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271528700,"h_accuracy":0,"crc":37044,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"/DIvEP//","tow":271528700,"crc":45557} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"message_type":2,"length":34,"data":[87,255,0,7,255,0,47,255,0,7,255,127,255,254,127,247,255,255,224,2,229,231,85,238,110,229,112],"preamble":85,"sender":22963,"msg_type":30583,"payload":"gwIZMi8QAlf/AAf/AC//AAf/f//+f/f//+AC5edV7m7lcA==","tow":271528473,"crc":62134,"sid":{"sat":131,"code":2}} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MghgMy8QAAAAAAE=","wn":2098,"tow":271528800,"crc":65171} +{"length":16,"flags":17,"ns":799999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EWAzLxDkBwMZAxkK/gevLw==","day":25,"tow":271528800,"year":2020,"crc":794,"minutes":25,"month":3,"seconds":10} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.536757654311355,"preamble":85,"sender":22963,"msg_type":522,"payload":"YDMvEH0/c+tl6kJA2HupElaSXsAbJRvzaIkxwAECWwQPBg==","lat":37.8312353432402,"tow":271528800,"h_accuracy":513,"crc":60714,"lon":-122.28650347281598} +{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"YDMvEAIAAAALAAAAAwAAAPEAywIPAg==","n":2,"d":3,"tow":271528800,"h_accuracy":241,"crc":37184,"e":11} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"YDMvEJsAhwBMAEgAcgAG","tow":271528800,"crc":33148,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"YDMvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271528800,"h_accuracy":0,"crc":47987,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"YDMvEP//","tow":271528800,"crc":57059} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":237,"states":[{"cn0":212,"mesid":{"sat":5,"code":0}},{"cn0":179,"mesid":{"sat":21,"code":0}},{"cn0":186,"mesid":{"sat":2,"code":0}},{"cn0":163,"mesid":{"sat":31,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":217,"mesid":{"sat":25,"code":0}},{"cn0":207,"mesid":{"sat":12,"code":0}},{"cn0":212,"mesid":{"sat":29,"code":0}},{"cn0":205,"mesid":{"sat":18,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":204,"mesid":{"sat":131,"code":2}},{"cn0":204,"mesid":{"sat":25,"code":1}},{"cn0":186,"mesid":{"sat":12,"code":1}},{"cn0":152,"mesid":{"sat":31,"code":1}},{"cn0":196,"mesid":{"sat":18,"code":1}},{"cn0":194,"mesid":{"sat":29,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":193,"mesid":{"sat":5,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":213,"mesid":{"sat":11,"code":3}},{"cn0":179,"mesid":{"sat":9,"code":3}},{"cn0":173,"mesid":{"sat":20,"code":3}},{"cn0":208,"mesid":{"sat":5,"code":3}},{"cn0":208,"mesid":{"sat":10,"code":3}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":182,"mesid":{"sat":4,"code":3}},{"cn0":203,"mesid":{"sat":21,"code":3}},{"cn0":170,"mesid":{"sat":9,"code":4}},{"cn0":205,"mesid":{"sat":20,"code":4}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":201,"mesid":{"sat":11,"code":4}},{"cn0":195,"mesid":{"sat":5,"code":4}},{"cn0":188,"mesid":{"sat":0,"code":4}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":175,"mesid":{"sat":4,"code":4}},{"cn0":200,"mesid":{"sat":35,"code":12}},{"cn0":172,"mesid":{"sat":26,"code":12}},{"cn0":159,"mesid":{"sat":34,"code":12}},{"cn0":188,"mesid":{"sat":24,"code":12}},{"cn0":160,"mesid":{"sat":25,"code":12}},{"cn0":185,"mesid":{"sat":12,"code":12}},{"cn0":185,"mesid":{"sat":19,"code":12}},{"cn0":192,"mesid":{"sat":22,"code":12}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":209,"mesid":{"sat":12,"code":13}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":195,"mesid":{"sat":12,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":191,"mesid":{"sat":25,"code":14}},{"cn0":189,"mesid":{"sat":11,"code":14}},{"cn0":204,"mesid":{"sat":24,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":157,"mesid":{"sat":31,"code":14}},{"cn0":151,"mesid":{"sat":33,"code":14}},{"cn0":201,"mesid":{"sat":25,"code":20}},{"cn0":215,"mesid":{"sat":24,"code":20}},{"cn0":194,"mesid":{"sat":11,"code":20}},{"cn0":175,"mesid":{"sat":31,"code":20}},{"cn0":206,"mesid":{"sat":12,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":169,"mesid":{"sat":33,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}}],"preamble":85,"sender":22963,"msg_type":97,"payload":"BQDUFQCzAgC6HwCjAAAAAAAAGQDZDADPHQDUEgDNAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwLMGQHMDAG6HwGYEgHEHQHCAAAABQHBAAAAAAAAAAAAAAAACwPVCQOzFAOtBQPQCgPQAAAABAO2FQPLCQSqFATNAAAACwTJBQTDAAS8AAAABASvIwzIGgysIgyfGAy8GQygDAy5Ewy5FgzAAAAADA3RAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADA7DAAAAGQ6/Cw69GA7MAAAAHw6dIQ6XGRTJGBTXCxTCHxSvDBTOAAAAIRSpAAAA","crc":2603} +{"length":128,"preamble":85,"sender":22963,"msg_type":151,"payload":"AgAaHQUAKzUMAFEtFQB9GRkAbUYaAKEBHQChNx8AlQ4EAxUWBQMyIQkDXw4KA3EpCwOYJQwDqgMTAyIHFAMMMRUDlSUMDJQpEwwjIBQMDwIWDEMkGAyCIxkMnQ4aDGcVIgyOESMMIi0LDosyDA4PPBgObDYZDpcpHw5VESEOIA8=","crc":34187,"azel":[{"el":29,"az":26,"sid":{"sat":2,"code":0}},{"el":53,"az":43,"sid":{"sat":5,"code":0}},{"el":45,"az":81,"sid":{"sat":12,"code":0}},{"el":25,"az":125,"sid":{"sat":21,"code":0}},{"el":70,"az":109,"sid":{"sat":25,"code":0}},{"el":1,"az":161,"sid":{"sat":26,"code":0}},{"el":55,"az":161,"sid":{"sat":29,"code":0}},{"el":14,"az":149,"sid":{"sat":31,"code":0}},{"el":22,"az":21,"sid":{"sat":4,"code":3}},{"el":33,"az":50,"sid":{"sat":5,"code":3}},{"el":14,"az":95,"sid":{"sat":9,"code":3}},{"el":41,"az":113,"sid":{"sat":10,"code":3}},{"el":37,"az":152,"sid":{"sat":11,"code":3}},{"el":3,"az":170,"sid":{"sat":12,"code":3}},{"el":7,"az":34,"sid":{"sat":19,"code":3}},{"el":49,"az":12,"sid":{"sat":20,"code":3}},{"el":37,"az":149,"sid":{"sat":21,"code":3}},{"el":41,"az":148,"sid":{"sat":12,"code":12}},{"el":32,"az":35,"sid":{"sat":19,"code":12}},{"el":2,"az":15,"sid":{"sat":20,"code":12}},{"el":36,"az":67,"sid":{"sat":22,"code":12}},{"el":35,"az":130,"sid":{"sat":24,"code":12}},{"el":14,"az":157,"sid":{"sat":25,"code":12}},{"el":21,"az":103,"sid":{"sat":26,"code":12}},{"el":17,"az":142,"sid":{"sat":34,"code":12}},{"el":45,"az":34,"sid":{"sat":35,"code":12}},{"el":50,"az":139,"sid":{"sat":11,"code":14}},{"el":60,"az":15,"sid":{"sat":12,"code":14}},{"el":54,"az":108,"sid":{"sat":24,"code":14}},{"el":41,"az":151,"sid":{"sat":25,"code":14}},{"el":17,"az":85,"sid":{"sat":31,"code":14}},{"el":15,"az":32,"sid":{"sat":33,"code":14}}]} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgjEMy8QAAAAAAE=","wn":2098,"tow":271528900,"crc":31282} +{"length":16,"flags":17,"ns":899999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EcQzLxDkBwMZAxkK/uikNQ==","day":25,"tow":271528900,"year":2020,"crc":45615,"minutes":25,"month":3,"seconds":10} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.543721877462104,"preamble":85,"sender":22963,"msg_type":522,"payload":"xDMvEL4Bh+tl6kJAIqepElaSXsDI0WFbMYsxwAECWwQPBg==","lat":37.83123535244111,"tow":271528900,"h_accuracy":513,"crc":56878,"lon":-122.28650347297346} +{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"xDMvEPX///8HAAAACQAAAPEAywIPAg==","n":-11,"d":9,"tow":271528900,"h_accuracy":241,"crc":47864,"e":7} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"xDMvEJsAhwBMAEgAcgAG","tow":271528900,"crc":54216,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"xDMvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271528900,"h_accuracy":0,"crc":52234,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"xDMvEP//","tow":271528900,"crc":14698} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":249,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":51,"i":110566826},"flags":15,"cn0":212,"P":1052008240,"D":{"f":188,"i":-193},"lock":15,"sid":{"sat":5,"code":0}},{"L":{"f":20,"i":121794320},"flags":15,"cn0":179,"P":1158834445,"D":{"f":30,"i":2170},"lock":15,"sid":{"sat":21,"code":0}},{"L":{"f":193,"i":123373023},"flags":15,"cn0":185,"P":1173854871,"D":{"f":188,"i":-2478},"lock":15,"sid":{"sat":2,"code":0}},{"L":{"f":210,"i":128743950},"flags":15,"cn0":163,"P":1224957926,"D":{"f":137,"i":-403},"lock":15,"sid":{"sat":31,"code":0}},{"L":{"f":76,"i":107839121},"flags":15,"cn0":217,"P":1026055053,"D":{"f":234,"i":-1135},"lock":15,"sid":{"sat":25,"code":0}},{"L":{"f":152,"i":114140311},"flags":15,"cn0":207,"P":1086008871,"D":{"f":52,"i":-2971},"lock":15,"sid":{"sat":12,"code":0}},{"L":{"f":84,"i":110740134},"flags":15,"cn0":212,"P":1053657268,"D":{"f":153,"i":1482},"lock":15,"sid":{"sat":29,"code":0}},{"L":{"f":158,"i":84030504},"flags":15,"cn0":204,"P":1026055106,"D":{"f":198,"i":-884},"lock":15,"sid":{"sat":25,"code":1}},{"L":{"f":45,"i":88940534},"flags":15,"cn0":186,"P":1086008762,"D":{"f":189,"i":-2316},"lock":15,"sid":{"sat":12,"code":1}},{"L":{"f":27,"i":100319964},"flags":15,"cn0":152,"P":1224957915,"D":{"f":215,"i":-314},"lock":15,"sid":{"sat":31,"code":1}},{"L":{"f":155,"i":86291015},"flags":15,"cn0":194,"P":1053657193,"D":{"f":234,"i":1154},"lock":15,"sid":{"sat":29,"code":1}},{"L":{"f":191,"i":86155997},"flags":15,"cn0":193,"P":1052008171,"D":{"f":77,"i":-149},"lock":15,"sid":{"sat":5,"code":1}},{"L":{"f":39,"i":112920176},"flags":15,"cn0":213,"P":1056573261,"D":{"f":191,"i":1155},"lock":15,"sid":{"sat":11,"code":3}},{"L":{"f":187,"i":123399220},"flags":15,"cn0":180,"P":1155435289,"D":{"f":32,"i":-4409},"lock":15,"sid":{"sat":9,"code":3}}],"payload":"KDQvEAAAAAAyCEAwX7Q+qh2XBjM//7zUDw8FAA1pEkUQb0IHFHoIHrMPDxUAl5r3Rd+FWgfBUva8uQ8PAgDmXwNJDnqsB9Jt/omjDw8fAI1bKD2Rfm0GTJH76tkPDxkAJy67QJekzQaYZfQ0zw8PDAC0iM0+psKZBlTKBZnUDw8dAMJbKD0oNAIFnoz8xswPDxkBui27QPYfTQUt9Pa9ug8PDAHbXwNJ3ML6BRvG/teYDw8fAWmIzT5HsiQFm4IE6sIPDx0B6160Pt2iIgW/a/9NwQ8PBQFNB/o+cAa7BieDBL/VDw8LAxmL3kQ07FoHu8fuILQPDwkD","header":{"n_obs":64,"t":{"ns_residual":0,"wn":2098,"tow":271529000}},"crc":58446} +{"length":249,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":88,"i":109788466},"flags":15,"cn0":174,"P":1026549523,"D":{"f":172,"i":-1212},"lock":15,"sid":{"sat":20,"code":3}},{"L":{"f":200,"i":114827862},"flags":15,"cn0":208,"P":1074045994,"D":{"f":189,"i":2190},"lock":15,"sid":{"sat":5,"code":3}},{"L":{"f":176,"i":111648583},"flags":15,"cn0":208,"P":1047249177,"D":{"f":122,"i":-3051},"lock":15,"sid":{"sat":10,"code":3}},{"L":{"f":135,"i":120458023},"flags":15,"cn0":182,"P":1124734008,"D":{"f":86,"i":-1326},"lock":15,"sid":{"sat":4,"code":3}},{"L":{"f":94,"i":113395906},"flags":15,"cn0":203,"P":1059536353,"D":{"f":139,"i":1621},"lock":15,"sid":{"sat":21,"code":3}},{"L":{"f":92,"i":95977181},"flags":15,"cn0":170,"P":1155435320,"D":{"f":145,"i":-3430},"lock":15,"sid":{"sat":9,"code":4}},{"L":{"f":28,"i":85391065},"flags":15,"cn0":205,"P":1026549856,"D":{"f":185,"i":-943},"lock":15,"sid":{"sat":20,"code":4}},{"L":{"f":1,"i":87826814},"flags":15,"cn0":201,"P":1056573580,"D":{"f":163,"i":898},"lock":15,"sid":{"sat":11,"code":4}},{"L":{"f":188,"i":89310563},"flags":15,"cn0":195,"P":1074046248,"D":{"f":92,"i":1703},"lock":15,"sid":{"sat":5,"code":4}},{"L":{"f":25,"i":93689564},"flags":15,"cn0":175,"P":1124734243,"D":{"f":99,"i":-1030},"lock":15,"sid":{"sat":4,"code":4}},{"L":{"f":151,"i":121602029},"flags":15,"cn0":200,"P":1167619282,"D":{"f":145,"i":-1501},"lock":15,"sid":{"sat":35,"code":12}},{"L":{"f":3,"i":129256229},"flags":15,"cn0":172,"P":1241115046,"D":{"f":83,"i":-3008},"lock":15,"sid":{"sat":26,"code":12}},{"L":{"f":149,"i":132912865},"flags":15,"cn0":159,"P":1276225710,"D":{"f":29,"i":2249},"lock":15,"sid":{"sat":34,"code":12}},{"L":{"f":34,"i":125170539},"flags":15,"cn0":188,"P":1201884317,"D":{"f":153,"i":-1308},"lock":15,"sid":{"sat":24,"code":12}}],"payload":"KDQvEAAAAAAyCEET5y89Mj2LBlhE+6yuDw8UAyqkBEBWItgGyI4IvdAPDwUDGcFrPkefpwawFfR60A8PCgM4FApDJwsuB4fS+la2Dw8EA+E9Jz/CSMIGXlUGi8sPDxUDOIveRN1+uAVcmvKRqg8PCQRg6C892fYWBRxR/LnNDw8UBIwI+j5+ITwFAYIDo8kPDwsEKKUEQGPFUgW8pwZcww8PBQQjFQpD3JaVBRn6+2OvDw8EBNJ0mEXtfz8HlyP6kcgPDyMMpun5SSVLtAcDQPRTrA8PGgyuqBFM4RbsB5XJCB2fDw8iDJ1Mo0dr83UHIuT6mbwPDxgM","header":{"n_obs":65,"t":{"ns_residual":0,"wn":2098,"tow":271529000}},"crc":35527} +{"length":249,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":223,"i":134652667},"flags":15,"cn0":159,"P":1292931494,"D":{"f":106,"i":1319},"lock":15,"sid":{"sat":25,"code":12}},{"L":{"f":239,"i":121076198},"flags":15,"cn0":185,"P":1162570522,"D":{"f":103,"i":1612},"lock":15,"sid":{"sat":12,"code":12}},{"L":{"f":119,"i":124519252},"flags":15,"cn0":185,"P":1195630624,"D":{"f":56,"i":-296},"lock":15,"sid":{"sat":19,"code":12}},{"L":{"f":136,"i":124669219},"flags":15,"cn0":192,"P":1197070641,"D":{"f":112,"i":2384},"lock":15,"sid":{"sat":22,"code":12}},{"L":{"f":200,"i":93623805},"flags":15,"cn0":209,"P":1162570455,"D":{"f":72,"i":1246},"lock":15,"sid":{"sat":12,"code":13}},{"L":{"f":89,"i":116441290},"flags":15,"cn0":195,"P":1107902017,"D":{"f":255,"i":-1028},"lock":15,"sid":{"sat":12,"code":14}},{"L":{"f":59,"i":132458731},"flags":15,"cn0":191,"P":1260302842,"D":{"f":207,"i":1082},"lock":15,"sid":{"sat":25,"code":14}},{"L":{"f":125,"i":125407029},"flags":15,"cn0":189,"P":1193208155,"D":{"f":188,"i":1046},"lock":15,"sid":{"sat":11,"code":14}},{"L":{"f":46,"i":118439855},"flags":15,"cn0":204,"P":1126917627,"D":{"f":186,"i":-1749},"lock":15,"sid":{"sat":24,"code":14}},{"L":{"f":111,"i":143368565},"flags":15,"cn0":157,"P":1364106503,"D":{"f":68,"i":-3171},"lock":15,"sid":{"sat":31,"code":14}},{"L":{"f":41,"i":144556000},"flags":15,"cn0":151,"P":1375404599,"D":{"f":162,"i":-2138},"lock":15,"sid":{"sat":33,"code":14}},{"L":{"f":235,"i":101494350},"flags":15,"cn0":201,"P":1260302822,"D":{"f":238,"i":829},"lock":15,"sid":{"sat":25,"code":20}},{"L":{"f":219,"i":90752679},"flags":15,"cn0":215,"P":1126918166,"D":{"f":30,"i":-1340},"lock":15,"sid":{"sat":24,"code":20}},{"L":{"f":93,"i":96091078},"flags":15,"cn0":194,"P":1193207963,"D":{"f":172,"i":800},"lock":15,"sid":{"sat":11,"code":20}}],"payload":"KDQvEAAAAAAyCEKmkRBN+6IGCN8nBWqfDw8ZDBprS0XmeTcH70wGZ7kPDwwMIOBDR1QDbAd32P44uQ8PEwwx2VlHI01uB4hQCXDADw8WDNdqS0X9lZQFyN4ESNEPDwwNQT4JQsrA8AZZ/Pv/ww8PDA76sR5L6yjlBzs6BM+/Dw8ZDlvpHkc1j3kHfRYEvL0PDwsO+2UrQ68/DwcuK/m6zA8PGA4HnU5RdaGLCG+d80SdDw8fDjcC+1Hgv50IKab3opcPDyEO5rEeS06uDAbrPQPuyQ8PGRQWaCtDp8ZoBdvE+h7XDw8YFJvoHkfGO7oFXSADrMIPDwsU","header":{"n_obs":66,"t":{"ns_residual":0,"wn":2098,"tow":271529000}},"crc":40959} +{"length":62,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":88,"i":109853877},"flags":15,"cn0":174,"P":1364106608,"D":{"f":69,"i":-2432},"lock":15,"sid":{"sat":31,"code":20}},{"L":{"f":11,"i":89221279},"flags":15,"cn0":206,"P":1107901853,"D":{"f":135,"i":-788},"lock":15,"sid":{"sat":12,"code":20}},{"L":{"f":240,"i":110763758},"flags":15,"cn0":169,"P":1375404553,"D":{"f":58,"i":-1639},"lock":15,"sid":{"sat":33,"code":20}}],"payload":"KDQvEAAAAAAyCENwnU5RtTyMBliA9kWuDw8fFJ09CUKfaFEFC+z8h84PDwwUCQL7Ue4emgbwmfk6qQ8PIRQ=","header":{"n_obs":67,"t":{"ns_residual":0,"wn":2098,"tow":271529000}},"crc":27298} +{"length":9,"l2ca_bias":0,"preamble":85,"l2p_bias":0,"sender":22963,"msg_type":117,"payload":"/wAAAAAAAAAA","l1ca_bias":0,"mask":255,"crc":49809,"l1p_bias":0} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MggoNC8QAAAAAAE=","wn":2098,"tow":271529000,"crc":20397} +{"length":16,"flags":17,"ns":999999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"ESg0LxDkBwMZAxkK/smaOw==","day":25,"tow":271529000,"year":2020,"crc":60275,"minutes":25,"month":3,"seconds":10} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.55468374792116,"preamble":85,"sender":22963,"msg_type":522,"payload":"KDQvEPeSs+tl6kJAYby4ElaSXsCw8QzB/40xwAECWwQPBg==","lat":37.83123537319437,"tow":271529000,"h_accuracy":513,"crc":43633,"lon":-122.2865034870206} +{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"KDQvEPz///8BAAAACAAAAPEAywIPAg==","n":-4,"d":8,"tow":271529000,"h_accuracy":241,"crc":10884,"e":1} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"KDQvEJsAhwBMAEgAcgAG","tow":271529000,"crc":64566,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"KDQvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271529000,"h_accuracy":0,"crc":14602,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"KDQvEP//","tow":271529000,"crc":56933} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":4,"flags":2147616000,"preamble":85,"sender":22963,"msg_type":65535,"payload":"AAUCgA==","crc":40942} +{"length":24,"z":3890655.0240602265,"preamble":85,"sender":22963,"msg_type":72,"payload":"UO0a3iqORMHK1UJhIkRQwc9nFIPvrk1B","crc":2168,"x":-2694229.735196747,"y":-4264073.519704292} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgiMNC8QAAAAAAE=","wn":2098,"tow":271529100,"crc":51980} +{"length":16,"flags":17,"ns":99999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EYw0LxDkBwMZAxkL/uD1BQ==","day":25,"tow":271529100,"year":2020,"crc":51016,"minutes":25,"month":3,"seconds":11} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.564098609516677,"preamble":85,"sender":22963,"msg_type":522,"payload":"jDQvEEtQ7etl6kJAHiDnElaSXsDclzfEaJAxwAECWwQPBg==","lat":37.83123540008145,"tow":271529100,"h_accuracy":513,"crc":12009,"lon":-122.28650353022428} +{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"jDQvEAkAAADx////+f////EAywIPAg==","n":9,"d":-7,"tow":271529100,"h_accuracy":241,"crc":11389,"e":-15} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"jDQvEJsAhwBMAEgAcgAG","tow":271529100,"crc":44674,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"jDQvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271529100,"h_accuracy":0,"crc":20083,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"jDQvEP//","tow":271529100,"crc":14828} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgjwNC8QAAAAAAE=","wn":2098,"tow":271529200,"crc":54727} +{"length":16,"flags":17,"ns":199999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EfA0LxDkBwMZAxkL/sHrCw==","day":25,"tow":271529200,"year":2020,"crc":62060,"minutes":25,"month":3,"seconds":11} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.575478339370594,"preamble":85,"sender":22963,"msg_type":522,"payload":"8DQvECBaQuxl6kJAcfUPE1aSXsAxJ2eMUpMxwAECWwQPBg==","lat":37.83123543968054,"tow":271529200,"h_accuracy":513,"crc":58412,"lon":-122.28650356825325} +{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"8DQvEBYAAAD3////BwAAAPEAywIPAg==","n":22,"d":7,"tow":271529200,"h_accuracy":241,"crc":36942,"e":-9} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"8DQvEJsAhwBMAEgAcgAG","tow":271529200,"crc":60386,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"8DQvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271529200,"h_accuracy":0,"crc":46368,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"8DQvEP//","tow":271529200,"crc":30611} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MghUNS8QAAAAAAE=","wn":2098,"tow":271529300,"crc":5813} +{"length":16,"flags":17,"ns":299999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EVQ1LxDkBwMZAxkL/qLhEQ==","day":25,"tow":271529300,"year":2020,"crc":17714,"minutes":25,"month":3,"seconds":11} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.583475233542902,"preamble":85,"sender":22963,"msg_type":522,"payload":"VDUvEMnSUOxl6kJArAEUE1aSXsC9FwaiXpUxwAECWwQPBg==","lat":37.83123544641928,"tow":271529300,"h_accuracy":513,"crc":11336,"lon":-122.28650357202304} +{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"VDUvEPL///8OAAAAFAAAAPEAywIPAg==","n":-14,"d":20,"tow":271529300,"h_accuracy":241,"crc":7471,"e":14} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"VDUvEJsAhwBMAEgAcgAG","tow":271529300,"crc":49719,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"VDUvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271529300,"h_accuracy":0,"crc":6063,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"VDUvEP//","tow":271529300,"crc":14923} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":237,"states":[{"cn0":212,"mesid":{"sat":5,"code":0}},{"cn0":179,"mesid":{"sat":21,"code":0}},{"cn0":185,"mesid":{"sat":2,"code":0}},{"cn0":162,"mesid":{"sat":31,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":217,"mesid":{"sat":25,"code":0}},{"cn0":207,"mesid":{"sat":12,"code":0}},{"cn0":212,"mesid":{"sat":29,"code":0}},{"cn0":205,"mesid":{"sat":18,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":204,"mesid":{"sat":131,"code":2}},{"cn0":204,"mesid":{"sat":25,"code":1}},{"cn0":186,"mesid":{"sat":12,"code":1}},{"cn0":152,"mesid":{"sat":31,"code":1}},{"cn0":196,"mesid":{"sat":18,"code":1}},{"cn0":194,"mesid":{"sat":29,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":193,"mesid":{"sat":5,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":213,"mesid":{"sat":100,"code":3}},{"cn0":180,"mesid":{"sat":98,"code":3}},{"cn0":174,"mesid":{"sat":102,"code":3}},{"cn0":208,"mesid":{"sat":101,"code":3}},{"cn0":208,"mesid":{"sat":93,"code":3}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":182,"mesid":{"sat":106,"code":3}},{"cn0":203,"mesid":{"sat":104,"code":3}},{"cn0":170,"mesid":{"sat":98,"code":4}},{"cn0":205,"mesid":{"sat":102,"code":4}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":201,"mesid":{"sat":100,"code":4}},{"cn0":195,"mesid":{"sat":101,"code":4}},{"cn0":188,"mesid":{"sat":104,"code":4}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":175,"mesid":{"sat":106,"code":4}},{"cn0":200,"mesid":{"sat":35,"code":12}},{"cn0":172,"mesid":{"sat":26,"code":12}},{"cn0":159,"mesid":{"sat":34,"code":12}},{"cn0":187,"mesid":{"sat":24,"code":12}},{"cn0":160,"mesid":{"sat":25,"code":12}},{"cn0":185,"mesid":{"sat":12,"code":12}},{"cn0":185,"mesid":{"sat":19,"code":12}},{"cn0":192,"mesid":{"sat":22,"code":12}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":209,"mesid":{"sat":12,"code":13}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":195,"mesid":{"sat":12,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":192,"mesid":{"sat":25,"code":14}},{"cn0":189,"mesid":{"sat":11,"code":14}},{"cn0":204,"mesid":{"sat":24,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":157,"mesid":{"sat":31,"code":14}},{"cn0":152,"mesid":{"sat":33,"code":14}},{"cn0":201,"mesid":{"sat":25,"code":20}},{"cn0":215,"mesid":{"sat":24,"code":20}},{"cn0":193,"mesid":{"sat":11,"code":20}},{"cn0":175,"mesid":{"sat":31,"code":20}},{"cn0":206,"mesid":{"sat":12,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":168,"mesid":{"sat":33,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}}],"preamble":85,"sender":22963,"msg_type":97,"payload":"BQDUFQCzAgC5HwCiAAAAAAAAGQDZDADPHQDUEgDNAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwLMGQHMDAG6HwGYEgHEHQHCAAAABQHBAAAAAAAAAAAAAAAAZAPVYgO0ZgOuZQPQXQPQAAAAagO2aAPLYgSqZgTNAAAAZATJZQTDaAS8AAAAagSvIwzIGgysIgyfGAy7GQygDAy5Ewy5FgzAAAAADA3RAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADA7DAAAAGQ7ACw69GA7MAAAAHw6dIQ6YGRTJGBTXCxTBHxSvDBTOAAAAIRSoAAAA","crc":50922} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"Mgi4NS8QAAAAAAE=","wn":2098,"tow":271529400,"crc":58418} +{"length":16,"flags":17,"ns":399999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"Ebg1LxDkBwMZAxkL/oPXFw==","day":25,"tow":271529400,"year":2020,"crc":25801,"minutes":25,"month":3,"seconds":11} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.590293795106795,"preamble":85,"sender":22963,"msg_type":522,"payload":"uDUvENWqgexl6kJA4uErE1aSXsDyA4F+HZcxwAECWwQPBg==","lat":37.83123546916401,"tow":271529400,"h_accuracy":513,"crc":63595,"lon":-122.28650359425913} +{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"uDUvEAEAAAADAAAADwAAAPEAywIPAg==","n":1,"d":15,"tow":271529400,"h_accuracy":241,"crc":52603,"e":3} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"uDUvEJsAhwBMAEgAcgAG","tow":271529400,"crc":40399,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"uDUvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271529400,"h_accuracy":0,"crc":60207,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"uDUvEP//","tow":271529400,"crc":47760} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":9,"l2ca_bias":0,"preamble":85,"l2p_bias":0,"sender":22963,"msg_type":117,"payload":"/wAAAAAAAAAA","l1ca_bias":0,"mask":255,"crc":49809,"l1p_bias":0} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MggcNi8QAAAAAAE=","wn":2098,"tow":271529500,"crc":43238} +{"length":16,"flags":17,"ns":499999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"ERw2LxDkBwMZAxkL/mTNHQ==","day":25,"tow":271529500,"year":2020,"crc":54157,"minutes":25,"month":3,"seconds":11} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.59454618286365,"preamble":85,"sender":22963,"msg_type":522,"payload":"HDYvEEeFn+xl6kJA+iI+E1aSXsBrXLstNJgxwAECWwQPBg==","lat":37.831235483065534,"tow":271529500,"h_accuracy":513,"crc":7811,"lon":-122.28650361125975} +{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"HDYvEPn///8MAAAA/f////EAywIPAg==","n":-7,"d":-3,"tow":271529500,"h_accuracy":241,"crc":51228,"e":12} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"HDYvEJsAhwBMAEgAcgAG","tow":271529500,"crc":17112,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"HDYvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271529500,"h_accuracy":0,"crc":62061,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"HDYvEP//","tow":271529500,"crc":46027} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgiANi8QAAAAAAE=","wn":2098,"tow":271529600,"crc":61882} +{"length":16,"flags":17,"ns":599999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EYA2LxDkBwMZAxkL/kXDIw==","day":25,"tow":271529600,"year":2020,"crc":12422,"minutes":25,"month":3,"seconds":11} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.604180674776938,"preamble":85,"sender":22963,"msg_type":522,"payload":"gDYvEA390uxl6kJA4JlrE1aSXsDLCq+Vq5oxwAECWwQPBg==","lat":37.831235507032126,"tow":271529600,"h_accuracy":513,"crc":15348,"lon":-122.28650365360181} +{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"gDYvEAkAAAD2////AwAAAPEAywIPAg==","n":9,"d":3,"tow":271529600,"h_accuracy":241,"crc":3107,"e":-10} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"gDYvEJsAhwBMAEgAcgAG","tow":271529600,"crc":58551,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"gDYvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271529600,"h_accuracy":0,"crc":3164,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"gDYvEP//","tow":271529600,"crc":30348} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"message_type":63,"length":34,"data":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"preamble":85,"sender":22963,"msg_type":30583,"payload":"gwIFNi8QPwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA==","tow":271529477,"crc":22219,"sid":{"sat":131,"code":2}} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgjkNi8QAAAAAAE=","wn":2098,"tow":271529700,"crc":38256} +{"length":16,"flags":17,"ns":699999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EeQ2LxDkBwMZAxkL/ia5KQ==","day":25,"tow":271529700,"year":2020,"crc":39114,"minutes":25,"month":3,"seconds":11} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.610274759375642,"preamble":85,"sender":22963,"msg_type":522,"payload":"5DYvEJK/5Oxl6kJAEwmPE1aSXsC4F3X3OpwxwAECWwQPBg==","lat":37.8312355153022,"tow":271529700,"h_accuracy":513,"crc":29085,"lon":-122.28650368660264} +{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"5DYvEAIAAAD/////9f////EAywIPAg==","n":2,"d":-11,"tow":271529700,"h_accuracy":241,"crc":32907,"e":-1} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"5DYvEJsAhwBMAEgAcgAG","tow":271529700,"crc":51224,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"5DYvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271529700,"h_accuracy":0,"crc":5354,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"5DYvEP//","tow":271529700,"crc":12085} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MghINy8QAAAAAAE=","wn":2098,"tow":271529800,"crc":32765} +{"length":16,"flags":17,"ns":799999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EUg3LxDkBwMZAxkL/gevLw==","day":25,"tow":271529800,"year":2020,"crc":61119,"minutes":25,"month":3,"seconds":11} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.61518050052195,"preamble":85,"sender":22963,"msg_type":522,"payload":"SDcvEDXB9uxl6kJAypOqE1aSXsDy4CJ4fJ0xwAECWwQPBg==","lat":37.83123552368708,"tow":271529800,"h_accuracy":513,"crc":58008,"lon":-122.286503712253} +{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"SDcvEAQAAAD/////+P////EAywIPAg==","n":4,"d":-8,"tow":271529800,"h_accuracy":241,"crc":62584,"e":-1} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"SDcvEJsAhwBMAEgAcgAG","tow":271529800,"crc":50824,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"SDcvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271529800,"h_accuracy":0,"crc":59590,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"SDcvEP//","tow":271529800,"crc":28591} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":237,"states":[{"cn0":212,"mesid":{"sat":5,"code":0}},{"cn0":179,"mesid":{"sat":21,"code":0}},{"cn0":185,"mesid":{"sat":2,"code":0}},{"cn0":162,"mesid":{"sat":31,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":216,"mesid":{"sat":25,"code":0}},{"cn0":206,"mesid":{"sat":12,"code":0}},{"cn0":211,"mesid":{"sat":29,"code":0}},{"cn0":205,"mesid":{"sat":18,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":204,"mesid":{"sat":131,"code":2}},{"cn0":204,"mesid":{"sat":25,"code":1}},{"cn0":186,"mesid":{"sat":12,"code":1}},{"cn0":153,"mesid":{"sat":31,"code":1}},{"cn0":196,"mesid":{"sat":18,"code":1}},{"cn0":194,"mesid":{"sat":29,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":193,"mesid":{"sat":5,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":213,"mesid":{"sat":11,"code":3}},{"cn0":179,"mesid":{"sat":9,"code":3}},{"cn0":173,"mesid":{"sat":20,"code":3}},{"cn0":208,"mesid":{"sat":5,"code":3}},{"cn0":208,"mesid":{"sat":10,"code":3}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":182,"mesid":{"sat":4,"code":3}},{"cn0":203,"mesid":{"sat":21,"code":3}},{"cn0":171,"mesid":{"sat":9,"code":4}},{"cn0":205,"mesid":{"sat":20,"code":4}},{"cn0":77,"mesid":{"sat":10,"code":4}},{"cn0":201,"mesid":{"sat":11,"code":4}},{"cn0":195,"mesid":{"sat":5,"code":4}},{"cn0":188,"mesid":{"sat":0,"code":4}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":175,"mesid":{"sat":4,"code":4}},{"cn0":200,"mesid":{"sat":35,"code":12}},{"cn0":172,"mesid":{"sat":26,"code":12}},{"cn0":160,"mesid":{"sat":34,"code":12}},{"cn0":188,"mesid":{"sat":24,"code":12}},{"cn0":160,"mesid":{"sat":25,"code":12}},{"cn0":185,"mesid":{"sat":12,"code":12}},{"cn0":184,"mesid":{"sat":19,"code":12}},{"cn0":193,"mesid":{"sat":22,"code":12}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":209,"mesid":{"sat":12,"code":13}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":194,"mesid":{"sat":12,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":191,"mesid":{"sat":25,"code":14}},{"cn0":188,"mesid":{"sat":11,"code":14}},{"cn0":203,"mesid":{"sat":24,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":157,"mesid":{"sat":31,"code":14}},{"cn0":150,"mesid":{"sat":33,"code":14}},{"cn0":201,"mesid":{"sat":25,"code":20}},{"cn0":215,"mesid":{"sat":24,"code":20}},{"cn0":194,"mesid":{"sat":11,"code":20}},{"cn0":175,"mesid":{"sat":31,"code":20}},{"cn0":206,"mesid":{"sat":12,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":169,"mesid":{"sat":33,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}}],"preamble":85,"sender":22963,"msg_type":97,"payload":"BQDUFQCzAgC5HwCiAAAAAAAAGQDYDADOHQDTEgDNAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwLMGQHMDAG6HwGZEgHEHQHCAAAABQHBAAAAAAAAAAAAAAAACwPVCQOzFAOtBQPQCgPQAAAABAO2FQPLCQSrFATNCgRNCwTJBQTDAAS8AAAABASvIwzIGgysIgygGAy8GQygDAy5Ewy4FgzBAAAADA3RAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADA7CAAAAGQ6/Cw68GA7LAAAAHw6dIQ6WGRTJGBTXCxTCHxSvDBTOAAAAIRSpAAAA","crc":58530} +{"length":128,"preamble":85,"sender":22963,"msg_type":151,"payload":"AgAaHQUAKzUMAFEtFQB9GRkAbUYaAKEBHQChNx8AlQ4EAxUWBQMyIQkDXw4KA3EpCwOYJQwDqgMTAyIHFAMMMRUDlSUMDJQpEwwjIBQMDwIWDEMkGAyCIxkMnQ4aDGcVIgyOESMMIi0LDosyDA4PPBgObDYZDpcpHw5VESEOIA8=","crc":34187,"azel":[{"el":29,"az":26,"sid":{"sat":2,"code":0}},{"el":53,"az":43,"sid":{"sat":5,"code":0}},{"el":45,"az":81,"sid":{"sat":12,"code":0}},{"el":25,"az":125,"sid":{"sat":21,"code":0}},{"el":70,"az":109,"sid":{"sat":25,"code":0}},{"el":1,"az":161,"sid":{"sat":26,"code":0}},{"el":55,"az":161,"sid":{"sat":29,"code":0}},{"el":14,"az":149,"sid":{"sat":31,"code":0}},{"el":22,"az":21,"sid":{"sat":4,"code":3}},{"el":33,"az":50,"sid":{"sat":5,"code":3}},{"el":14,"az":95,"sid":{"sat":9,"code":3}},{"el":41,"az":113,"sid":{"sat":10,"code":3}},{"el":37,"az":152,"sid":{"sat":11,"code":3}},{"el":3,"az":170,"sid":{"sat":12,"code":3}},{"el":7,"az":34,"sid":{"sat":19,"code":3}},{"el":49,"az":12,"sid":{"sat":20,"code":3}},{"el":37,"az":149,"sid":{"sat":21,"code":3}},{"el":41,"az":148,"sid":{"sat":12,"code":12}},{"el":32,"az":35,"sid":{"sat":19,"code":12}},{"el":2,"az":15,"sid":{"sat":20,"code":12}},{"el":36,"az":67,"sid":{"sat":22,"code":12}},{"el":35,"az":130,"sid":{"sat":24,"code":12}},{"el":14,"az":157,"sid":{"sat":25,"code":12}},{"el":21,"az":103,"sid":{"sat":26,"code":12}},{"el":17,"az":142,"sid":{"sat":34,"code":12}},{"el":45,"az":34,"sid":{"sat":35,"code":12}},{"el":50,"az":139,"sid":{"sat":11,"code":14}},{"el":60,"az":15,"sid":{"sat":12,"code":14}},{"el":54,"az":108,"sid":{"sat":24,"code":14}},{"el":41,"az":151,"sid":{"sat":25,"code":14}},{"el":17,"az":85,"sid":{"sat":31,"code":14}},{"el":15,"az":32,"sid":{"sat":33,"code":14}}]} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgisNy8QAAAAAAE=","wn":2098,"tow":271529900,"crc":42117} +{"length":16,"flags":17,"ns":899999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"Eaw3LxDkBwMZAxkL/uikNQ==","day":25,"tow":271529900,"year":2020,"crc":30083,"minutes":25,"month":3,"seconds":11} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.62269848703441,"preamble":85,"sender":22963,"msg_type":522,"payload":"rDcvEEIfAO1l6kJAXsbQE1aSXsDbFAUraZ8xwAECWwQPBg==","lat":37.831235528049106,"tow":271529900,"h_accuracy":513,"crc":60238,"lon":-122.28650374782725} +{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"rDcvEAMAAAD9////GQAAAPEAywIPAg==","n":3,"d":25,"tow":271529900,"h_accuracy":241,"crc":11561,"e":-3} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"rDcvEJsAhwBMAEgAcgAG","tow":271529900,"crc":48693,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"rDcvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271529900,"h_accuracy":0,"crc":19173,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"rDcvEP//","tow":271529900,"crc":57910} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":249,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":221,"i":110567018},"flags":15,"cn0":212,"P":1052010073,"D":{"f":83,"i":-193},"lock":15,"sid":{"sat":5,"code":0}},{"L":{"f":1,"i":121792150},"flags":15,"cn0":178,"P":1158813776,"D":{"f":169,"i":2169},"lock":15,"sid":{"sat":21,"code":0}},{"L":{"f":25,"i":123375503},"flags":15,"cn0":185,"P":1173878476,"D":{"f":147,"i":-2480},"lock":15,"sid":{"sat":2,"code":0}},{"L":{"f":155,"i":128744353},"flags":15,"cn0":162,"P":1224961757,"D":{"f":19,"i":-403},"lock":15,"sid":{"sat":31,"code":0}},{"L":{"f":181,"i":107840256},"flags":15,"cn0":216,"P":1026065854,"D":{"f":114,"i":-1136},"lock":15,"sid":{"sat":25,"code":0}},{"L":{"f":74,"i":114143284},"flags":15,"cn0":206,"P":1086037158,"D":{"f":222,"i":-2973},"lock":15,"sid":{"sat":12,"code":0}},{"L":{"f":210,"i":110738652},"flags":15,"cn0":211,"P":1053643172,"D":{"f":93,"i":1481},"lock":15,"sid":{"sat":29,"code":0}},{"L":{"f":93,"i":84031389},"flags":15,"cn0":204,"P":1026065907,"D":{"f":83,"i":-885},"lock":15,"sid":{"sat":25,"code":1}},{"L":{"f":142,"i":88942850},"flags":15,"cn0":186,"P":1086037037,"D":{"f":82,"i":-2319},"lock":15,"sid":{"sat":12,"code":1}},{"L":{"f":249,"i":100320277},"flags":15,"cn0":153,"P":1224961760,"D":{"f":7,"i":-314},"lock":15,"sid":{"sat":31,"code":1}},{"L":{"f":44,"i":86289861},"flags":15,"cn0":193,"P":1053643092,"D":{"f":67,"i":1155},"lock":15,"sid":{"sat":29,"code":1}},{"L":{"f":224,"i":86156147},"flags":15,"cn0":193,"P":1052009999,"D":{"f":153,"i":-151},"lock":15,"sid":{"sat":5,"code":1}},{"L":{"f":233,"i":112919021},"flags":15,"cn0":213,"P":1056562462,"D":{"f":145,"i":1154},"lock":15,"sid":{"sat":11,"code":3}},{"L":{"f":212,"i":123403628},"flags":15,"cn0":179,"P":1155476594,"D":{"f":204,"i":-4408},"lock":15,"sid":{"sat":9,"code":3}}],"payload":"EDgvEAAAAAAyCEBZZrQ+ah6XBt0//1PUDw8FAFAYEkWWZkIHAXkIqbIPDxUAzPb3RY+PWgcZUPaTuQ8PAgDdbgNJoXusB5tt/hOiDw8fAL6FKD0Ag20GtZD7ctgPDxkAppy7QDSwzQZKY/Tezg8PDACkUc0+3LyZBtLJBV3TDw8dAPOFKD2dNwIFXYv8U8wPDxkBLZy7QAIpTQWO8fZSug8PDAHgbgNJFcT6BfnG/geZDw8fAVRRzT7FrSQFLIMEQ8EPDx0BD2a0PnOjIgXgaf+ZwQ8PBQEe3fk+7QG7BumCBJHVDw8LA3Is30Rs/VoH1MjuzLMPDwkD","header":{"n_obs":64,"t":{"ns_residual":0,"wn":2098,"tow":271530000}},"crc":5309} +{"length":249,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":181,"i":109789678},"flags":15,"cn0":174,"P":1026560826,"D":{"f":35,"i":-1212},"lock":15,"sid":{"sat":20,"code":3}},{"L":{"f":0,"i":114825674},"flags":15,"cn0":208,"P":1074025529,"D":{"f":88,"i":2188},"lock":15,"sid":{"sat":5,"code":3}},{"L":{"f":194,"i":111651635},"flags":15,"cn0":208,"P":1047277803,"D":{"f":254,"i":-3053},"lock":15,"sid":{"sat":10,"code":3}},{"L":{"f":177,"i":120459350},"flags":15,"cn0":182,"P":1124746402,"D":{"f":196,"i":-1328},"lock":15,"sid":{"sat":4,"code":3}},{"L":{"f":29,"i":113394286},"flags":15,"cn0":203,"P":1059521220,"D":{"f":145,"i":1620},"lock":15,"sid":{"sat":21,"code":3}},{"L":{"f":218,"i":95980609},"flags":15,"cn0":170,"P":1155476619,"D":{"f":100,"i":-3427},"lock":15,"sid":{"sat":9,"code":4}},{"L":{"f":15,"i":85392008},"flags":15,"cn0":205,"P":1026561199,"D":{"f":96,"i":-944},"lock":15,"sid":{"sat":20,"code":4}},{"L":{"f":67,"i":87825916},"flags":15,"cn0":201,"P":1056562773,"D":{"f":88,"i":897},"lock":15,"sid":{"sat":11,"code":4}},{"L":{"f":91,"i":89308861},"flags":15,"cn0":195,"P":1074025812,"D":{"f":176,"i":1701},"lock":15,"sid":{"sat":5,"code":4}},{"L":{"f":83,"i":93690596},"flags":15,"cn0":175,"P":1124746626,"D":{"f":57,"i":-1034},"lock":15,"sid":{"sat":4,"code":4}},{"L":{"f":116,"i":121603530},"flags":15,"cn0":200,"P":1167633701,"D":{"f":216,"i":-1502},"lock":15,"sid":{"sat":35,"code":12}},{"L":{"f":205,"i":129259237},"flags":15,"cn0":173,"P":1241143949,"D":{"f":211,"i":-3010},"lock":15,"sid":{"sat":26,"code":12}},{"L":{"f":72,"i":132910617},"flags":15,"cn0":161,"P":1276204145,"D":{"f":50,"i":2249},"lock":15,"sid":{"sat":34,"code":12}},{"L":{"f":225,"i":125171847},"flags":15,"cn0":188,"P":1201896879,"D":{"f":189,"i":-1309},"lock":15,"sid":{"sat":24,"code":12}}],"payload":"EDgvEAAAAAAyCEE6EzA97kGLBrVE+yOuDw8UAzlUBEDKGdgGAIwIWNAPDwUD6zBsPjOrpwbCE/T+0A8PCgOiRApDVhAuB7HQ+sS2Dw8EA8QCJz9uQsIGHVQGkcsPDxUDiyzfREGMuAXanfJkqg8PCQSvFDA9iPoWBQ9Q/GDNDw8UBFXe+T78HTwFQ4EDWMkPDwsEVFUEQL2+UgVbpQawww8PBQSCRQpD5JqVBVP2+zmvDw8EBCWtmEXKhT8HdCL62MgPDyMMjVr6SeVWtAfNPvTTrQ8PGgxxVBFMGQ7sB0jJCDKhDw8iDK99o0eH+HUH4eP6vbwPDxgM","header":{"n_obs":65,"t":{"ns_residual":0,"wn":2098,"tow":271530000}},"crc":58534} +{"length":249,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":133,"i":134651349},"flags":15,"cn0":160,"P":1292918830,"D":{"f":61,"i":1318},"lock":15,"sid":{"sat":25,"code":12}},{"L":{"f":74,"i":121074588},"flags":15,"cn0":185,"P":1162555059,"D":{"f":84,"i":1610},"lock":15,"sid":{"sat":12,"code":12}},{"L":{"f":103,"i":124519549},"flags":15,"cn0":184,"P":1195633478,"D":{"f":57,"i":-298},"lock":15,"sid":{"sat":19,"code":12}},{"L":{"f":101,"i":124666836},"flags":15,"cn0":193,"P":1197047762,"D":{"f":32,"i":2382},"lock":15,"sid":{"sat":22,"code":12}},{"L":{"f":85,"i":93622560},"flags":15,"cn0":209,"P":1162554986,"D":{"f":167,"i":1244},"lock":15,"sid":{"sat":12,"code":13}},{"L":{"f":139,"i":116442318},"flags":15,"cn0":194,"P":1107911800,"D":{"f":125,"i":-1028},"lock":15,"sid":{"sat":12,"code":14}},{"L":{"f":27,"i":132457649},"flags":15,"cn0":191,"P":1260292551,"D":{"f":167,"i":1081},"lock":15,"sid":{"sat":25,"code":14}},{"L":{"f":66,"i":125405984},"flags":15,"cn0":188,"P":1193198212,"D":{"f":228,"i":1044},"lock":15,"sid":{"sat":11,"code":14}},{"L":{"f":222,"i":118441604},"flags":15,"cn0":203,"P":1126934269,"D":{"f":242,"i":-1751},"lock":15,"sid":{"sat":24,"code":14}},{"L":{"f":85,"i":143371738},"flags":15,"cn0":157,"P":1364136694,"D":{"f":184,"i":-3175},"lock":15,"sid":{"sat":31,"code":14}},{"L":{"f":88,"i":144558140},"flags":15,"cn0":150,"P":1375424955,"D":{"f":17,"i":-2144},"lock":15,"sid":{"sat":33,"code":14}},{"L":{"f":195,"i":101493521},"flags":15,"cn0":201,"P":1260292527,"D":{"f":37,"i":828},"lock":15,"sid":{"sat":25,"code":20}},{"L":{"f":138,"i":90754020},"flags":15,"cn0":215,"P":1126934815,"D":{"f":172,"i":-1342},"lock":15,"sid":{"sat":24,"code":20}},{"L":{"f":123,"i":96090277},"flags":15,"cn0":194,"P":1193198013,"D":{"f":171,"i":799},"lock":15,"sid":{"sat":11,"code":20}}],"payload":"EDgvEAAAAAAyCEIuYBBN1Z0GCIUmBT2gDw8ZDLMuS0WcczcHSkoGVLkPDwwMRutDR30EbAdn1v45uA8PEwzSf1lH1ENuB2VOCSDBDw8WDGouS0UgkZQFVdwEp9EPDwwNeGQJQs7E8AaL/Pt9wg8PDA7HiR5LsSTlBxs5BKe/Dw8ZDoTCHkcgi3kHQhQE5LwPDwsO/aYrQ4RGDwfeKfnyyw8PGA72Ek9R2q2LCFWZ87idDw8fDrtR+1E8yJ0IWKD3EZYPDyEOr4keSxGrDAbDPAMlyQ8PGRQfqStD5MtoBYrC+qzXDw8YFL3BHkelOLoFex8Dq8IPDwsU","header":{"n_obs":66,"t":{"ns_residual":0,"wn":2098,"tow":271530000}},"crc":62356} +{"length":62,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":142,"i":109856308},"flags":15,"cn0":175,"P":1364136798,"D":{"f":150,"i":-2432},"lock":15,"sid":{"sat":31,"code":20}},{"L":{"f":229,"i":89222066},"flags":15,"cn0":206,"P":1107911636,"D":{"f":247,"i":-789},"lock":15,"sid":{"sat":12,"code":20}},{"L":{"f":207,"i":110765398},"flags":15,"cn0":169,"P":1375424915,"D":{"f":105,"i":-1641},"lock":15,"sid":{"sat":33,"code":20}}],"payload":"EDgvEAAAAAAyCENeE09RNEaMBo6A9pavDw8fFNRjCUKya1EF5ev8984PDwwUk1H7UVYlmgbPl/lpqQ8PIRQ=","header":{"n_obs":67,"t":{"ns_residual":0,"wn":2098,"tow":271530000}},"crc":12805} +{"length":9,"l2ca_bias":0,"preamble":85,"l2p_bias":0,"sender":22963,"msg_type":117,"payload":"/wAAAAAAAAAA","l1ca_bias":0,"mask":255,"crc":49809,"l1p_bias":0} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MggQOC8QAAAAAAE=","wn":2098,"tow":271530000,"crc":33767} +{"length":16,"flags":17,"ns":999999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"ERA4LxDkBwMZAxkL/smaOw==","day":25,"tow":271530000,"year":2020,"crc":41783,"minutes":25,"month":3,"seconds":11} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.629623655072756,"preamble":85,"sender":22963,"msg_type":522,"payload":"EDgvENBQCe1l6kJAmnTwE1aSXsBSUw8EL6ExwAECWwQPBg==","lat":37.8312355323302,"tow":271530000,"h_accuracy":513,"crc":33161,"lon":-122.28650377733211} +{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"EDgvEAQAAAABAAAA/P////EAywIPAg==","n":4,"d":-4,"tow":271530000,"h_accuracy":241,"crc":65526,"e":1} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"EDgvEJsAhwBMAEgAcgAG","tow":271530000,"crc":7715,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"EDgvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271530000,"h_accuracy":0,"crc":6287,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"EDgvEP//","tow":271530000,"crc":30592} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":4,"flags":2147616000,"preamble":85,"sender":22963,"msg_type":65535,"payload":"AAUCgA==","crc":40942} +{"length":24,"z":3890655.0240602265,"preamble":85,"sender":22963,"msg_type":72,"payload":"UO0a3iqORMHK1UJhIkRQwc9nFIPvrk1B","crc":2168,"x":-2694229.735196747,"y":-4264073.519704292} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"bWFpbgAAAAAAAAAAAAAAAAAAAAAAAAx1AAA=","name":"main\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":47991,"stack_free":29964,"cpu":0} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"aWRsZQAAAAAAAAAAAAAAAAAAAACKAHwAAAA=","name":"idle\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":5746,"stack_free":124,"cpu":138} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"cnBtc2cAAAAAAAAAAAAAAAAAAAABACQOAAA=","name":"rpmsg\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":41209,"stack_free":3620,"cpu":1} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"U0JQAAAAAAAAAAAAAAAAAAAAAAAAAPz/AAA=","name":"SBP\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":51784,"stack_free":65532,"cpu":0} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"TkFQAAAAAAAAAAAAAAAAAAAAAAAAAASAAAA=","name":"NAP\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":33651,"stack_free":32772,"cpu":0} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"bWFuYWdlIFBWAAAAAAAAAAAAAAAAACQEAAA=","name":"manage PV\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":29877,"stack_free":1060,"cpu":0} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"SU1VAAAAAAAAAAAAAAAAAAAAAAAAAPQHAAA=","name":"IMU\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":14252,"stack_free":2036,"cpu":0} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"SU1VIGF1eAAAAAAAAAAAAAAAAAAAAEwIAAA=","name":"IMU aux\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":18976,"stack_free":2124,"cpu":0} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"bmRiAAAAAAAAAAAAAAAAAAAAAAAAAFAMAAA=","name":"ndb\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":26120,"stack_free":3152,"cpu":0} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"TkFQIFRyYWNraW5nAAAAAAAAAAAmAdR3AAA=","name":"NAP Tracking\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":42721,"stack_free":30676,"cpu":294} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"ZGVjb2RlAAAAAAAAAAAAAAAAAAAIANQGAAA=","name":"decode\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":40082,"stack_free":1748,"cpu":8} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"bWFuYWdlIGFjcQAAAAAAAAAAAACLAaR3AAA=","name":"manage acq\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":22189,"stack_free":30628,"cpu":395} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"c3lzdGVtIG1vbml0b3IAAAAAAAAAACwGAAA=","name":"system monitor\u0000\u0000\u0000\u0000\u0000\u0000","crc":58531,"stack_free":1580,"cpu":0} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"V2F0Y2hkb2cAAAAAAAAAAAAAAAAAAOQDAAA=","name":"Watchdog\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":44438,"stack_free":996,"cpu":0} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"c3RhcmxpbmcAAAAAAAAAAAAAAACXAPz/AAA=","name":"starling\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":46399,"stack_free":65532,"cpu":151} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"bWVfY2FsY19wdnQAAAAAAAAAAAAJAIwjAAA=","name":"me_calc_pvt\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":57561,"stack_free":9100,"cpu":9} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"UFBTAAAAAAAAAAAAAAAAAAAAAAAAAEgHAAA=","name":"PPS\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":38576,"stack_free":1864,"cpu":0} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"c3BlY3RydW0gYW5hbHl6ZXIAAAAAANQPAAA=","name":"spectrum analyzer\u0000\u0000\u0000","crc":50933,"stack_free":4052,"cpu":0} +{"cpu_vint":989,"length":10,"fe_temperature":5641,"preamble":85,"sender":22963,"cpu_vaux":1779,"msg_type":181,"payload":"8BbdA/MGSxUJFg==","dev_vin":5872,"crc":2957,"cpu_temperature":5451} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"Mgh0OC8QAAAAAAE=","wn":2098,"tow":271530100,"crc":59181} +{"length":16,"flags":17,"ns":99999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EXQ4LxDkBwMZAxkM/uD1BQ==","day":25,"tow":271530100,"year":2020,"crc":15506,"minutes":25,"month":3,"seconds":12} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.637863656550522,"preamble":85,"sender":22963,"msg_type":522,"payload":"dDgvEJ1E++xl6kJAmsv8E1aSXsAEMVgIS6MxwAECWwQPBg==","lat":37.83123552578875,"tow":271530100,"h_accuracy":513,"crc":15752,"lon":-122.28650378882449} +{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"dDgvEPr///8KAAAABQAAAPEAywIPAg==","n":-6,"d":5,"tow":271530100,"h_accuracy":241,"crc":64928,"e":10} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"dDgvEJsAhwBMAEgAcgAG","tow":271530100,"crc":12940,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"dDgvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271530100,"h_accuracy":0,"crc":57,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"dDgvEP//","tow":271530100,"crc":11833} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgjYOC8QAAAAAAE=","wn":2098,"tow":271530200,"crc":19059} +{"length":16,"flags":17,"ns":199999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"Edg4LxDkBwMZAxkM/sHrCw==","day":25,"tow":271530200,"year":2020,"crc":14631,"minutes":25,"month":3,"seconds":12} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.646582468682222,"preamble":85,"sender":22963,"msg_type":522,"payload":"2DgvEOb6CO1l6kJAq38MFFaSXsA3KL1thqUxwAECWwQPBg==","lat":37.83123553217392,"tow":271530200,"h_accuracy":513,"crc":41772,"lon":-122.2865038034494} +{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"2DgvEAcAAAABAAAA//////EAywIPAg==","n":7,"d":-1,"tow":271530200,"h_accuracy":241,"crc":32551,"e":1} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"2DgvEJsAhwBMAEgAcgAG","tow":271530200,"crc":18301,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"2DgvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271530200,"h_accuracy":0,"crc":10723,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"2DgvEP//","tow":271530200,"crc":50418} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"Mgg8OS8QAAAAAAE=","wn":2098,"tow":271530300,"crc":55000} +{"length":16,"flags":17,"ns":299999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"ETw5LxDkBwMZAxkM/qLhEQ==","day":25,"tow":271530300,"year":2020,"crc":42096,"minutes":25,"month":3,"seconds":12} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.658642633705263,"preamble":85,"sender":22963,"msg_type":522,"payload":"PDkvEAJu/uxl6kJAnfgXFFaSXsDyg7vNnKgxwAECWwQPBg==","lat":37.83123552726103,"tow":271530300,"h_accuracy":513,"crc":29944,"lon":-122.28650381413395} +{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"PDkvEPn///8FAAAAEwAAAPEAywIPAg==","n":-7,"d":19,"tow":271530300,"h_accuracy":241,"crc":57241,"e":5} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"PDkvEJsAhwBMAEgAcgAG","tow":271530300,"crc":17569,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"PDkvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271530300,"h_accuracy":0,"crc":24118,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"PDkvEP//","tow":271530300,"crc":58170} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":51,"text":"GLO L2OF ME 1 [+1341ms] low CN0 too long, dropping","preamble":85,"sender":22963,"msg_type":1025,"payload":"BkdMTyBMMk9GIE1FIDEgWysxMzQxbXNdIGxvdyBDTjAgdG9vIGxvbmcsIGRyb3BwaW5n","crc":694,"level":6} +{"length":237,"states":[{"cn0":212,"mesid":{"sat":5,"code":0}},{"cn0":178,"mesid":{"sat":21,"code":0}},{"cn0":185,"mesid":{"sat":2,"code":0}},{"cn0":161,"mesid":{"sat":31,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":216,"mesid":{"sat":25,"code":0}},{"cn0":206,"mesid":{"sat":12,"code":0}},{"cn0":211,"mesid":{"sat":29,"code":0}},{"cn0":205,"mesid":{"sat":18,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":203,"mesid":{"sat":131,"code":2}},{"cn0":204,"mesid":{"sat":25,"code":1}},{"cn0":186,"mesid":{"sat":12,"code":1}},{"cn0":152,"mesid":{"sat":31,"code":1}},{"cn0":196,"mesid":{"sat":18,"code":1}},{"cn0":194,"mesid":{"sat":29,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":193,"mesid":{"sat":5,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":213,"mesid":{"sat":100,"code":3}},{"cn0":179,"mesid":{"sat":98,"code":3}},{"cn0":174,"mesid":{"sat":102,"code":3}},{"cn0":208,"mesid":{"sat":101,"code":3}},{"cn0":208,"mesid":{"sat":93,"code":3}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":182,"mesid":{"sat":106,"code":3}},{"cn0":203,"mesid":{"sat":104,"code":3}},{"cn0":171,"mesid":{"sat":98,"code":4}},{"cn0":205,"mesid":{"sat":102,"code":4}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":201,"mesid":{"sat":100,"code":4}},{"cn0":195,"mesid":{"sat":101,"code":4}},{"cn0":188,"mesid":{"sat":104,"code":4}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":175,"mesid":{"sat":106,"code":4}},{"cn0":200,"mesid":{"sat":35,"code":12}},{"cn0":173,"mesid":{"sat":26,"code":12}},{"cn0":159,"mesid":{"sat":34,"code":12}},{"cn0":188,"mesid":{"sat":24,"code":12}},{"cn0":161,"mesid":{"sat":25,"code":12}},{"cn0":185,"mesid":{"sat":12,"code":12}},{"cn0":185,"mesid":{"sat":19,"code":12}},{"cn0":193,"mesid":{"sat":22,"code":12}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":209,"mesid":{"sat":12,"code":13}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":194,"mesid":{"sat":12,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":191,"mesid":{"sat":25,"code":14}},{"cn0":188,"mesid":{"sat":11,"code":14}},{"cn0":203,"mesid":{"sat":24,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":157,"mesid":{"sat":31,"code":14}},{"cn0":151,"mesid":{"sat":33,"code":14}},{"cn0":201,"mesid":{"sat":25,"code":20}},{"cn0":215,"mesid":{"sat":24,"code":20}},{"cn0":194,"mesid":{"sat":11,"code":20}},{"cn0":174,"mesid":{"sat":31,"code":20}},{"cn0":206,"mesid":{"sat":12,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":169,"mesid":{"sat":33,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}}],"preamble":85,"sender":22963,"msg_type":97,"payload":"BQDUFQCyAgC5HwChAAAAAAAAGQDYDADOHQDTEgDNAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwLLGQHMDAG6HwGYEgHEHQHCAAAABQHBAAAAAAAAAAAAAAAAZAPVYgOzZgOuZQPQXQPQAAAAagO2aAPLYgSrZgTNAAAAZATJZQTDaAS8AAAAagSvIwzIGgytIgyfGAy8GQyhDAy5Ewy5FgzBAAAADA3RAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADA7CAAAAGQ6/Cw68GA7LAAAAHw6dIQ6XGRTJGBTXCxTCHxSuDBTOAAAAIRSpAAAA","crc":57044} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgigOS8QAAAAAAE=","wn":2098,"tow":271530400,"crc":36740} +{"length":16,"flags":17,"ns":399999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EaA5LxDkBwMZAxkM/oPXFw==","day":25,"tow":271530400,"year":2020,"crc":31772,"minutes":25,"month":3,"seconds":12} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.669500899051567,"preamble":85,"sender":22963,"msg_type":522,"payload":"oDkvENkbBe1l6kJA88cvFFaSXsCvETJpZKsxwAECWwQPBg==","lat":37.83123553037121,"tow":271530400,"h_accuracy":513,"crc":3110,"lon":-122.28650383630865} +{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"oDkvEP/////7/////f////EAywIPAg==","n":-1,"d":-3,"tow":271530400,"h_accuracy":241,"crc":23658,"e":-5} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"oDkvEJsAhwBMAEgAcgAG","tow":271530400,"crc":58062,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"oDkvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271530400,"h_accuracy":0,"crc":40967,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"oDkvEP//","tow":271530400,"crc":9853} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":9,"l2ca_bias":0,"preamble":85,"l2p_bias":0,"sender":22963,"msg_type":117,"payload":"/wAAAAAAAAAA","l1ca_bias":0,"mask":255,"crc":49809,"l1p_bias":0} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MggEOi8QAAAAAAE=","wn":2098,"tow":271530500,"crc":50000} +{"length":16,"flags":17,"ns":499999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EQQ6LxDkBwMZAxkM/mTNHQ==","day":25,"tow":271530500,"year":2020,"crc":52056,"minutes":25,"month":3,"seconds":12} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.67623559707129,"preamble":85,"sender":22963,"msg_type":522,"payload":"BDovEDKkFe1l6kJAXShHFFaSXsDuz63GHa0xwAECWwQPBg==","lat":37.831235538069805,"tow":271530500,"h_accuracy":513,"crc":38475,"lon":-122.28650385807983} +{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"BDovEAwAAAD2////7/////EAywIPAg==","n":12,"d":-17,"tow":271530500,"h_accuracy":241,"crc":19698,"e":-10} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"BDovEJsAhwBMAEgAcgAG","tow":271530500,"crc":15833,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"BDovEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271530500,"h_accuracy":0,"crc":47429,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"BDovEP//","tow":271530500,"crc":12070} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MghoOi8QAAAAAAE=","wn":2098,"tow":271530600,"crc":36453} +{"length":16,"flags":17,"ns":599999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EWg6LxDkBwMZAxkM/kXDIw==","day":25,"tow":271530600,"year":2020,"crc":34262,"minutes":25,"month":3,"seconds":12} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.68472751543139,"preamble":85,"sender":22963,"msg_type":522,"payload":"aDovEFfn9uxl6kJAxilJFFaSXsD8cm1NSq8xwAECWwQPBg==","lat":37.83123552375644,"tow":271530600,"h_accuracy":513,"crc":39928,"lon":-122.2865038599476} +{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"aDovEAEAAAADAAAAAAAAAPEAywIPAg==","n":1,"d":0,"tow":271530600,"h_accuracy":241,"crc":36789,"e":3} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"aDovEJsAhwBMAEgAcgAG","tow":271530600,"crc":13875,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"aDovEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271530600,"h_accuracy":0,"crc":65360,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"aDovEP//","tow":271530600,"crc":31709} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"message_type":63,"length":34,"data":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"preamble":85,"sender":22963,"msg_type":30583,"payload":"gwLpOS8QPwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA==","tow":271530473,"crc":40642,"sid":{"sat":131,"code":2}} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgjMOi8QAAAAAAE=","wn":2098,"tow":271530700,"crc":2756} +{"length":16,"flags":17,"ns":699999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"Ecw6LxDkBwMZAxkM/ia5KQ==","day":25,"tow":271530700,"year":2020,"crc":21377,"minutes":25,"month":3,"seconds":12} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.6948379307105,"preamble":85,"sender":22963,"msg_type":522,"payload":"zDovEDI73Oxl6kJApsFQFFaSXsACbAzm4LExwAECWwQPBg==","lat":37.83123551133612,"tow":271530700,"h_accuracy":513,"crc":32625,"lon":-122.28650386701938} +{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"zDovEP3///8JAAAAFAAAAPEAywIPAg==","n":-3,"d":20,"tow":271530700,"h_accuracy":241,"crc":62229,"e":9} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"zDovEJsAhwBMAEgAcgAG","tow":271530700,"crc":25735,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"zDovEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271530700,"h_accuracy":0,"crc":34857,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"zDovEP//","tow":271530700,"crc":40020} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MggwOy8QAAAAAAE=","wn":2098,"tow":271530800,"crc":60526} +{"length":16,"flags":17,"ns":799999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"ETA7LxDkBwMZAxkM/gevLw==","day":25,"tow":271530800,"year":2020,"crc":16759,"minutes":25,"month":3,"seconds":12} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.704538097071996,"preamble":85,"sender":22963,"msg_type":522,"payload":"MDsvEDIB0exl6kJAODFaFFaSXsDWtdWbXLQxwAECWwQPBg==","lat":37.83123550610834,"tow":271530800,"h_accuracy":513,"crc":14435,"lon":-122.28650387580717} +{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"MDsvEAIAAAAHAAAA/f////EAywIPAg==","n":2,"d":-3,"tow":271530800,"h_accuracy":241,"crc":40870,"e":7} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"MDsvEJsAhwBMAEgAcgAG","tow":271530800,"crc":3732,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"MDsvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271530800,"h_accuracy":0,"crc":7193,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"MDsvEP//","tow":271530800,"crc":44122} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":237,"states":[{"cn0":212,"mesid":{"sat":5,"code":0}},{"cn0":178,"mesid":{"sat":21,"code":0}},{"cn0":185,"mesid":{"sat":2,"code":0}},{"cn0":163,"mesid":{"sat":31,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":216,"mesid":{"sat":25,"code":0}},{"cn0":206,"mesid":{"sat":12,"code":0}},{"cn0":211,"mesid":{"sat":29,"code":0}},{"cn0":205,"mesid":{"sat":18,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":204,"mesid":{"sat":131,"code":2}},{"cn0":204,"mesid":{"sat":25,"code":1}},{"cn0":187,"mesid":{"sat":12,"code":1}},{"cn0":153,"mesid":{"sat":31,"code":1}},{"cn0":196,"mesid":{"sat":18,"code":1}},{"cn0":194,"mesid":{"sat":29,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":193,"mesid":{"sat":5,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":213,"mesid":{"sat":11,"code":3}},{"cn0":179,"mesid":{"sat":9,"code":3}},{"cn0":174,"mesid":{"sat":20,"code":3}},{"cn0":209,"mesid":{"sat":5,"code":3}},{"cn0":208,"mesid":{"sat":10,"code":3}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":182,"mesid":{"sat":4,"code":3}},{"cn0":203,"mesid":{"sat":21,"code":3}},{"cn0":171,"mesid":{"sat":9,"code":4}},{"cn0":205,"mesid":{"sat":20,"code":4}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":201,"mesid":{"sat":11,"code":4}},{"cn0":195,"mesid":{"sat":5,"code":4}},{"cn0":188,"mesid":{"sat":0,"code":4}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":175,"mesid":{"sat":4,"code":4}},{"cn0":200,"mesid":{"sat":35,"code":12}},{"cn0":172,"mesid":{"sat":26,"code":12}},{"cn0":159,"mesid":{"sat":34,"code":12}},{"cn0":188,"mesid":{"sat":24,"code":12}},{"cn0":161,"mesid":{"sat":25,"code":12}},{"cn0":184,"mesid":{"sat":12,"code":12}},{"cn0":185,"mesid":{"sat":19,"code":12}},{"cn0":193,"mesid":{"sat":22,"code":12}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":209,"mesid":{"sat":12,"code":13}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":194,"mesid":{"sat":12,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":191,"mesid":{"sat":25,"code":14}},{"cn0":188,"mesid":{"sat":11,"code":14}},{"cn0":203,"mesid":{"sat":24,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":157,"mesid":{"sat":31,"code":14}},{"cn0":152,"mesid":{"sat":33,"code":14}},{"cn0":201,"mesid":{"sat":25,"code":20}},{"cn0":215,"mesid":{"sat":24,"code":20}},{"cn0":194,"mesid":{"sat":11,"code":20}},{"cn0":174,"mesid":{"sat":31,"code":20}},{"cn0":206,"mesid":{"sat":12,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":169,"mesid":{"sat":33,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}}],"preamble":85,"sender":22963,"msg_type":97,"payload":"BQDUFQCyAgC5HwCjAAAAAAAAGQDYDADOHQDTEgDNAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwLMGQHMDAG7HwGZEgHEHQHCAAAABQHBAAAAAAAAAAAAAAAACwPVCQOzFAOuBQPRCgPQAAAABAO2FQPLCQSrFATNAAAACwTJBQTDAAS8AAAABASvIwzIGgysIgyfGAy8GQyhDAy4Ewy5FgzBAAAADA3RAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADA7CAAAAGQ6/Cw68GA7LAAAAHw6dIQ6YGRTJGBTXCxTCHxSuDBTOAAAAIRSpAAAA","crc":38053} +{"length":128,"preamble":85,"sender":22963,"msg_type":151,"payload":"AgAaHQUAKzUMAFEtFQB9GRkAbUYaAKEBHQChNx8AlQ4EAxUWBQMyIQkDXw4KA3EpCwOYJQwDqgMTAyIHFAMMMRUDlSUMDJQpEwwjIBQMDwIWDEMkGAyCIxkMnQ4aDGcVIgyOESMMIi0LDosyDA4PPBgObDYZDpcpHw5VESEOIA8=","crc":34187,"azel":[{"el":29,"az":26,"sid":{"sat":2,"code":0}},{"el":53,"az":43,"sid":{"sat":5,"code":0}},{"el":45,"az":81,"sid":{"sat":12,"code":0}},{"el":25,"az":125,"sid":{"sat":21,"code":0}},{"el":70,"az":109,"sid":{"sat":25,"code":0}},{"el":1,"az":161,"sid":{"sat":26,"code":0}},{"el":55,"az":161,"sid":{"sat":29,"code":0}},{"el":14,"az":149,"sid":{"sat":31,"code":0}},{"el":22,"az":21,"sid":{"sat":4,"code":3}},{"el":33,"az":50,"sid":{"sat":5,"code":3}},{"el":14,"az":95,"sid":{"sat":9,"code":3}},{"el":41,"az":113,"sid":{"sat":10,"code":3}},{"el":37,"az":152,"sid":{"sat":11,"code":3}},{"el":3,"az":170,"sid":{"sat":12,"code":3}},{"el":7,"az":34,"sid":{"sat":19,"code":3}},{"el":49,"az":12,"sid":{"sat":20,"code":3}},{"el":37,"az":149,"sid":{"sat":21,"code":3}},{"el":41,"az":148,"sid":{"sat":12,"code":12}},{"el":32,"az":35,"sid":{"sat":19,"code":12}},{"el":2,"az":15,"sid":{"sat":20,"code":12}},{"el":36,"az":67,"sid":{"sat":22,"code":12}},{"el":35,"az":130,"sid":{"sat":24,"code":12}},{"el":14,"az":157,"sid":{"sat":25,"code":12}},{"el":21,"az":103,"sid":{"sat":26,"code":12}},{"el":17,"az":142,"sid":{"sat":34,"code":12}},{"el":45,"az":34,"sid":{"sat":35,"code":12}},{"el":50,"az":139,"sid":{"sat":11,"code":14}},{"el":60,"az":15,"sid":{"sat":12,"code":14}},{"el":54,"az":108,"sid":{"sat":24,"code":14}},{"el":41,"az":151,"sid":{"sat":25,"code":14}},{"el":17,"az":85,"sid":{"sat":31,"code":14}},{"el":15,"az":32,"sid":{"sat":33,"code":14}}]} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgiUOy8QAAAAAAE=","wn":2098,"tow":271530900,"crc":26831} +{"length":16,"flags":17,"ns":899999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EZQ7LxDkBwMZAxkM/uikNQ==","day":25,"tow":271530900,"year":2020,"crc":61506,"minutes":25,"month":3,"seconds":12} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.7126035093981,"preamble":85,"sender":22963,"msg_type":522,"payload":"lDsvEAOsyOxl6kJA7s9xFFaSXsAy4f8ubbYxwAECWwQPBg==","lat":37.831235502228104,"tow":271530900,"h_accuracy":513,"crc":51994,"lon":-122.28650389780498} +{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"lDsvEAMAAAACAAAAEwAAAPEAywIPAg==","n":3,"d":19,"tow":271530900,"h_accuracy":241,"crc":46590,"e":2} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"lDsvEJsAhwBMAEgAcgAG","tow":271530900,"crc":23584,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"lDsvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271530900,"h_accuracy":0,"crc":27488,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"lDsvEP//","tow":271530900,"crc":19411} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":249,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":152,"i":110567212},"flags":15,"cn0":212,"P":1052011916,"D":{"f":151,"i":-193},"lock":15,"sid":{"sat":5,"code":0}},{"L":{"f":146,"i":121789980},"flags":15,"cn0":178,"P":1158793121,"D":{"f":14,"i":2170},"lock":15,"sid":{"sat":21,"code":0}},{"L":{"f":221,"i":123377982},"flags":15,"cn0":185,"P":1173902062,"D":{"f":196,"i":-2477},"lock":15,"sid":{"sat":2,"code":0}},{"L":{"f":81,"i":128744757},"flags":15,"cn0":162,"P":1224965601,"D":{"f":71,"i":-401},"lock":15,"sid":{"sat":31,"code":0}},{"L":{"f":32,"i":107841393},"flags":15,"cn0":216,"P":1026076672,"D":{"f":144,"i":-1136},"lock":15,"sid":{"sat":25,"code":0}},{"L":{"f":199,"i":114146257},"flags":15,"cn0":206,"P":1086065441,"D":{"f":121,"i":-2972},"lock":15,"sid":{"sat":12,"code":0}},{"L":{"f":234,"i":110737171},"flags":15,"cn0":212,"P":1053629083,"D":{"f":21,"i":1483},"lock":15,"sid":{"sat":29,"code":0}},{"L":{"f":226,"i":84032274},"flags":15,"cn0":204,"P":1026076726,"D":{"f":230,"i":-886},"lock":15,"sid":{"sat":25,"code":1}},{"L":{"f":143,"i":88945167},"flags":15,"cn0":187,"P":1086065334,"D":{"f":143,"i":-2317},"lock":15,"sid":{"sat":12,"code":1}},{"L":{"f":141,"i":100320592},"flags":15,"cn0":153,"P":1224965606,"D":{"f":206,"i":-315},"lock":15,"sid":{"sat":31,"code":1}},{"L":{"f":59,"i":86288707},"flags":15,"cn0":194,"P":1053629002,"D":{"f":52,"i":1154},"lock":15,"sid":{"sat":29,"code":1}},{"L":{"f":214,"i":86156298},"flags":15,"cn0":193,"P":1052011850,"D":{"f":214,"i":-151},"lock":15,"sid":{"sat":5,"code":1}},{"L":{"f":239,"i":112917868},"flags":15,"cn0":213,"P":1056551672,"D":{"f":8,"i":1154},"lock":15,"sid":{"sat":11,"code":3}},{"L":{"f":100,"i":123408037},"flags":15,"cn0":179,"P":1155517874,"D":{"f":116,"i":-4406},"lock":15,"sid":{"sat":9,"code":3}}],"payload":"+DsvEAAAAAAyCECMbbQ+LB+XBpg//5fUDw8FAKHHEUUcXkIHknoIDrIPDxUA7lL4RT6ZWgfdU/bEuQ8PAgDhfQNJNX2sB1Fv/keiDw8fAACwKD1xh20GIJD7kNgPDxkAIQu8QNG7zQbHZPR5zg8PDACbGs0+E7eZBurLBRXUDw8dADawKD0SOwIF4or85swPDxkBtgq8QA8yTQWP8/aPuw8PDAHmfQNJUMX6BY3F/s6ZDw8fAUoazT5DqSQFO4IENMIPDx0BSm20PgqkIgXWaf/WwQ8PBQH4svk+bP26Bu+CBAjVDw8LA7LN30SlDlsHZMrudLMPDwkD","header":{"n_obs":64,"t":{"ns_residual":0,"wn":2098,"tow":271531000}},"crc":20468} +{"length":249,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":161,"i":109790891},"flags":15,"cn0":173,"P":1026572166,"D":{"f":133,"i":-1212},"lock":15,"sid":{"sat":20,"code":3}},{"L":{"f":82,"i":114823486},"flags":15,"cn0":209,"P":1074005086,"D":{"f":64,"i":2189},"lock":15,"sid":{"sat":5,"code":3}},{"L":{"f":207,"i":111654688},"flags":15,"cn0":208,"P":1047306443,"D":{"f":230,"i":-3053},"lock":15,"sid":{"sat":10,"code":3}},{"L":{"f":14,"i":120460679},"flags":15,"cn0":182,"P":1124758788,"D":{"f":11,"i":-1328},"lock":15,"sid":{"sat":4,"code":3}},{"L":{"f":113,"i":113392666},"flags":15,"cn0":203,"P":1059506077,"D":{"f":119,"i":1621},"lock":15,"sid":{"sat":21,"code":3}},{"L":{"f":190,"i":95984038},"flags":15,"cn0":171,"P":1155517893,"D":{"f":56,"i":-3426},"lock":15,"sid":{"sat":9,"code":4}},{"L":{"f":115,"i":85392951},"flags":15,"cn0":205,"P":1026572531,"D":{"f":233,"i":-943},"lock":15,"sid":{"sat":20,"code":4}},{"L":{"f":128,"i":87825019},"flags":15,"cn0":201,"P":1056551958,"D":{"f":125,"i":897},"lock":15,"sid":{"sat":11,"code":4}},{"L":{"f":212,"i":89307159},"flags":15,"cn0":196,"P":1074005360,"D":{"f":251,"i":1702},"lock":15,"sid":{"sat":5,"code":4}},{"L":{"f":129,"i":93691629},"flags":15,"cn0":175,"P":1124759028,"D":{"f":104,"i":-1032},"lock":15,"sid":{"sat":4,"code":4}},{"L":{"f":213,"i":121605031},"flags":15,"cn0":200,"P":1167648113,"D":{"f":78,"i":-1499},"lock":15,"sid":{"sat":35,"code":12}},{"L":{"f":11,"i":129262247},"flags":15,"cn0":172,"P":1241172844,"D":{"f":17,"i":-3008},"lock":15,"sid":{"sat":26,"code":12}},{"L":{"f":111,"i":132908369},"flags":15,"cn0":159,"P":1276182555,"D":{"f":205,"i":2249},"lock":15,"sid":{"sat":34,"code":12}},{"L":{"f":115,"i":125173157},"flags":15,"cn0":188,"P":1201909452,"D":{"f":197,"i":-1310},"lock":15,"sid":{"sat":24,"code":12}}],"payload":"+DsvEAAAAAAyCEGGPzA9q0aLBqFE+4WtDw8UA14EBEA+EdgGUo0IQNEPDwUDy6BsPiC3pwbPE/Tm0A8PCgMEdQpDhxUuBw7Q+gu2Dw8EA53HJj8aPMIGcVUGd8sPDxUDxc3fRKaZuAW+nvI4qw8PCQTzQDA9N/4WBXNR/OnNDw8UBBa0+T57GjwFgIEDfckPDwsEcAUEQBe4UgXUpgb7xA8PBQT0dQpD7Z6VBYH4+2ivDw8EBHHlmEWniz8H1SX6TsgPDyMMbMv6SaditAcLQPQRrA8PGgwbABFMUQXsB2/JCM2fDw8iDMyuo0el/XUHc+L6xbwPDxgM","header":{"n_obs":65,"t":{"ns_residual":0,"wn":2098,"tow":271531000}},"crc":30296} +{"length":249,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":9,"i":134650032},"flags":15,"cn0":161,"P":1292906192,"D":{"f":11,"i":1319},"lock":15,"sid":{"sat":25,"code":12}},{"L":{"f":26,"i":121072978},"flags":15,"cn0":184,"P":1162539607,"D":{"f":9,"i":1612},"lock":15,"sid":{"sat":12,"code":12}},{"L":{"f":75,"i":124519847},"flags":15,"cn0":185,"P":1195636334,"D":{"f":211,"i":-298},"lock":15,"sid":{"sat":19,"code":12}},{"L":{"f":0,"i":124664454},"flags":15,"cn0":193,"P":1197024875,"D":{"f":70,"i":2383},"lock":15,"sid":{"sat":22,"code":12}},{"L":{"f":65,"i":93621315},"flags":15,"cn0":208,"P":1162539523,"D":{"f":57,"i":1246},"lock":15,"sid":{"sat":12,"code":13}},{"L":{"f":65,"i":116443347},"flags":15,"cn0":194,"P":1107921584,"D":{"f":198,"i":-1028},"lock":15,"sid":{"sat":12,"code":14}},{"L":{"f":213,"i":132456567},"flags":15,"cn0":191,"P":1260282267,"D":{"f":22,"i":1083},"lock":15,"sid":{"sat":25,"code":14}},{"L":{"f":157,"i":125404939},"flags":15,"cn0":188,"P":1193188278,"D":{"f":146,"i":1045},"lock":15,"sid":{"sat":11,"code":14}},{"L":{"f":87,"i":118443355},"flags":15,"cn0":203,"P":1126950920,"D":{"f":153,"i":-1750},"lock":15,"sid":{"sat":24,"code":14}},{"L":{"f":165,"i":143374911},"flags":15,"cn0":157,"P":1364166909,"D":{"f":110,"i":-3175},"lock":15,"sid":{"sat":31,"code":14}},{"L":{"f":227,"i":144560280},"flags":15,"cn0":152,"P":1375445329,"D":{"f":89,"i":-2140},"lock":15,"sid":{"sat":33,"code":14}},{"L":{"f":62,"i":101492693},"flags":15,"cn0":201,"P":1260282237,"D":{"f":232,"i":828},"lock":15,"sid":{"sat":25,"code":20}},{"L":{"f":208,"i":90755361},"flags":15,"cn0":215,"P":1126951472,"D":{"f":8,"i":-1340},"lock":15,"sid":{"sat":24,"code":20}},{"L":{"f":9,"i":96089477},"flags":15,"cn0":194,"P":1193188076,"D":{"f":236,"i":800},"lock":15,"sid":{"sat":11,"code":20}}],"payload":"+DsvEAAAAAAyCELQLhBNsJgGCAknBQuhDw8ZDFfySkVSbTcHGkwGCbgPDwwMbvZDR6cFbAdL1v7TuQ8PEwxrJllHhjpuBwBPCUbBDw8WDAPySkVDjJQFQd4EOdAPDwwNsIoJQtPI8AZB/PvGwg8PDA6bYR5LdyDlB9U7BBa/Dw8ZDrabHkcLh3kHnRUEkrwPDwsOCOgrQ1tNDwdXKvmZyw8PGA79iE9RP7qLCKWZ826dDw8fDlGh+1GY0J0I46T3WZgPDyEOfWEeS9WnDAY+PAPoyQ8PGRQw6itDIdFoBdDE+gjXDw8YFOyaHkeFNboFCSAD7MIPDwsU","header":{"n_obs":66,"t":{"ns_residual":0,"wn":2098,"tow":271531000}},"crc":9078} +{"length":62,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":17,"i":109858740},"flags":15,"cn0":174,"P":1364166990,"D":{"f":129,"i":-2433},"lock":15,"sid":{"sat":31,"code":20}},{"L":{"f":31,"i":89222855},"flags":15,"cn0":206,"P":1107921424,"D":{"f":154,"i":-787},"lock":15,"sid":{"sat":12,"code":20}},{"L":{"f":246,"i":110767038},"flags":15,"cn0":169,"P":1375445287,"D":{"f":170,"i":-1639},"lock":15,"sid":{"sat":33,"code":20}}],"payload":"+DsvEAAAAAAyCENOiU9RtE+MBhF/9oGuDw8fFBCKCULHblEFH+38ms4PDwwUJ6H7Ub4rmgb2mfmqqQ8PIRQ=","header":{"n_obs":67,"t":{"ns_residual":0,"wn":2098,"tow":271531000}},"crc":42991} +{"length":9,"l2ca_bias":0,"preamble":85,"l2p_bias":0,"sender":22963,"msg_type":117,"payload":"/wAAAAAAAAAA","l1ca_bias":0,"mask":255,"crc":49809,"l1p_bias":0} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"Mgj4Oy8QAAAAAAE=","wn":2098,"tow":271531000,"crc":9722} +{"length":16,"flags":17,"ns":999999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"Efg7LxDkBwMZAxkM/smaOw==","day":25,"tow":271531000,"year":2020,"crc":36106,"minutes":25,"month":3,"seconds":12} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.72322591967462,"preamble":85,"sender":22963,"msg_type":522,"payload":"+DsvEPgI0Oxl6kJAHlSbFFaSXsA8n3hVJbkxwAECWwQPBg==","lat":37.83123550565682,"tow":271531000,"h_accuracy":513,"crc":17790,"lon":-122.2865039364701} +{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"+DsvEP/////8////DQAAAPEAywIPAg==","n":-1,"d":13,"tow":271531000,"h_accuracy":241,"crc":10152,"e":-4} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"+DsvEJsAhwBMAEgAcgAG","tow":271531000,"crc":22474,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"+DsvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271531000,"h_accuracy":0,"crc":11637,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"+DsvEP//","tow":271531000,"crc":7976} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":4,"flags":2147616000,"preamble":85,"sender":22963,"msg_type":65535,"payload":"AAUCgA==","crc":40942} +{"length":24,"z":3890655.0240602265,"preamble":85,"sender":22963,"msg_type":72,"payload":"UO0a3iqORMHK1UJhIkRQwc9nFIPvrk1B","crc":2168,"x":-2694229.735196747,"y":-4264073.519704292} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MghcPC8QAAAAAAE=","wn":2098,"tow":271531100,"crc":26179} +{"length":16,"flags":17,"ns":99999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EVw8LxDkBwMZAxkN/uD1BQ==","day":25,"tow":271531100,"year":2020,"crc":53559,"minutes":25,"month":3,"seconds":13} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.73432727722361,"preamble":85,"sender":22963,"msg_type":522,"payload":"XDwvEE4b5exl6kJAecu2FFaSXsBzPFjf/LsxwAECWwQPBg==","lat":37.83123551546906,"tow":271531100,"h_accuracy":513,"crc":35494,"lon":-122.28650396205002} +{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"XDwvEAUAAAAHAAAA+/////EAywIPAg==","n":5,"d":-5,"tow":271531100,"h_accuracy":241,"crc":21337,"e":7} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"XDwvEJsAhwBMAEgAcgAG","tow":271531100,"crc":30072,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"XDwvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271531100,"h_accuracy":0,"crc":21388,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"XDwvEP//","tow":271531100,"crc":40821} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgjAPC8QAAAAAAE=","wn":2098,"tow":271531200,"crc":16159} +{"length":16,"flags":17,"ns":199999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EcA8LxDkBwMZAxkN/sHrCw==","day":25,"tow":271531200,"year":2020,"crc":1820,"minutes":25,"month":3,"seconds":13} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.744869640000353,"preamble":85,"sender":22963,"msg_type":522,"payload":"wDwvEJ+36uxl6kJArK7qFFaSXsC2ldfGr74xwAECWwQPBg==","lat":37.831235518081705,"tow":271531200,"h_accuracy":513,"crc":38079,"lon":-122.28650401037402} +{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"wDwvEAAAAAD2////AgAAAPEAywIPAg==","n":0,"d":2,"tow":271531200,"h_accuracy":241,"crc":50137,"e":-10} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"wDwvEJsAhwBMAEgAcgAG","tow":271531200,"crc":54039,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"wDwvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271531200,"h_accuracy":0,"crc":44477,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"wDwvEP//","tow":271531200,"crc":23090} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MggkPS8QAAAAAAE=","wn":2098,"tow":271531300,"crc":41908} +{"length":16,"flags":17,"ns":299999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"ESQ9LxDkBwMZAxkN/qLhEQ==","day":25,"tow":271531300,"year":2020,"crc":39499,"minutes":25,"month":3,"seconds":13} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.75665505044879,"preamble":85,"sender":22963,"msg_type":522,"payload":"JD0vEAnD1+xl6kJA+yAKFVaSXsDhBzgltMExwAECWwQPBg==","lat":37.8312355092549,"tow":271531300,"h_accuracy":513,"crc":2883,"lon":-122.28650403966087} +{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"JD0vEPr///8DAAAAEQAAAPEAywIPAg==","n":-6,"d":17,"tow":271531300,"h_accuracy":241,"crc":36440,"e":3} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"JD0vEJsAhwBMAEgAcgAG","tow":271531300,"crc":53451,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"JD0vEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271531300,"h_accuracy":0,"crc":55912,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"JD0vEP//","tow":271531300,"crc":32250} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":237,"states":[{"cn0":212,"mesid":{"sat":5,"code":0}},{"cn0":178,"mesid":{"sat":21,"code":0}},{"cn0":185,"mesid":{"sat":2,"code":0}},{"cn0":162,"mesid":{"sat":31,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":217,"mesid":{"sat":25,"code":0}},{"cn0":207,"mesid":{"sat":12,"code":0}},{"cn0":212,"mesid":{"sat":29,"code":0}},{"cn0":205,"mesid":{"sat":18,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":204,"mesid":{"sat":131,"code":2}},{"cn0":204,"mesid":{"sat":25,"code":1}},{"cn0":187,"mesid":{"sat":12,"code":1}},{"cn0":152,"mesid":{"sat":31,"code":1}},{"cn0":196,"mesid":{"sat":18,"code":1}},{"cn0":194,"mesid":{"sat":29,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":193,"mesid":{"sat":5,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":213,"mesid":{"sat":100,"code":3}},{"cn0":179,"mesid":{"sat":98,"code":3}},{"cn0":173,"mesid":{"sat":102,"code":3}},{"cn0":209,"mesid":{"sat":101,"code":3}},{"cn0":208,"mesid":{"sat":93,"code":3}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":182,"mesid":{"sat":106,"code":3}},{"cn0":203,"mesid":{"sat":104,"code":3}},{"cn0":171,"mesid":{"sat":98,"code":4}},{"cn0":205,"mesid":{"sat":102,"code":4}},{"cn0":72,"mesid":{"sat":93,"code":4}},{"cn0":201,"mesid":{"sat":100,"code":4}},{"cn0":196,"mesid":{"sat":101,"code":4}},{"cn0":188,"mesid":{"sat":104,"code":4}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":174,"mesid":{"sat":106,"code":4}},{"cn0":200,"mesid":{"sat":35,"code":12}},{"cn0":172,"mesid":{"sat":26,"code":12}},{"cn0":158,"mesid":{"sat":34,"code":12}},{"cn0":188,"mesid":{"sat":24,"code":12}},{"cn0":161,"mesid":{"sat":25,"code":12}},{"cn0":185,"mesid":{"sat":12,"code":12}},{"cn0":185,"mesid":{"sat":19,"code":12}},{"cn0":193,"mesid":{"sat":22,"code":12}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":208,"mesid":{"sat":12,"code":13}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":195,"mesid":{"sat":12,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":192,"mesid":{"sat":25,"code":14}},{"cn0":189,"mesid":{"sat":11,"code":14}},{"cn0":204,"mesid":{"sat":24,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":158,"mesid":{"sat":31,"code":14}},{"cn0":152,"mesid":{"sat":33,"code":14}},{"cn0":201,"mesid":{"sat":25,"code":20}},{"cn0":215,"mesid":{"sat":24,"code":20}},{"cn0":194,"mesid":{"sat":11,"code":20}},{"cn0":175,"mesid":{"sat":31,"code":20}},{"cn0":206,"mesid":{"sat":12,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":169,"mesid":{"sat":33,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}}],"preamble":85,"sender":22963,"msg_type":97,"payload":"BQDUFQCyAgC5HwCiAAAAAAAAGQDZDADPHQDUEgDNAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwLMGQHMDAG7HwGYEgHEHQHCAAAABQHBAAAAAAAAAAAAAAAAZAPVYgOzZgOtZQPRXQPQAAAAagO2aAPLYgSrZgTNXQRIZATJZQTEaAS8AAAAagSuIwzIGgysIgyeGAy8GQyhDAy5Ewy5FgzBAAAADA3QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADA7DAAAAGQ7ACw69GA7MAAAAHw6eIQ6YGRTJGBTXCxTCHxSvDBTOAAAAIRSpAAAA","crc":49321} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgiIPS8QAAAAAAE=","wn":2098,"tow":271531400,"crc":3818} +{"length":16,"flags":17,"ns":399999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EYg9LxDkBwMZAxkN/oPXFw==","day":25,"tow":271531400,"year":2020,"crc":37305,"minutes":25,"month":3,"seconds":13} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.76307443161369,"preamble":85,"sender":22963,"msg_type":522,"payload":"iD0vEPGs3Oxl6kJABA8wFVaSXsDQMZDYWMMxwAECWwQPBg==","lat":37.83123551154302,"tow":271531400,"h_accuracy":513,"crc":21368,"lon":-122.28650407498577} +{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"iD0vEAEAAAAHAAAA//////EAywIPAg==","n":1,"d":-1,"tow":271531400,"h_accuracy":241,"crc":44789,"e":7} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"iD0vEJsAhwBMAEgAcgAG","tow":271531400,"crc":42298,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"iD0vEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271531400,"h_accuracy":0,"crc":62386,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"iD0vEP//","tow":271531400,"crc":38705} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":9,"l2ca_bias":0,"preamble":85,"l2p_bias":0,"sender":22963,"msg_type":117,"payload":"/wAAAAAAAAAA","l1ca_bias":0,"mask":255,"crc":49809,"l1p_bias":0} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgjsPS8QAAAAAAE=","wn":2098,"tow":271531500,"crc":27168} +{"length":16,"flags":17,"ns":499999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"Eew9LxDkBwMZAxkN/mTNHQ==","day":25,"tow":271531500,"year":2020,"crc":54597,"minutes":25,"month":3,"seconds":13} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.766344803515597,"preamble":85,"sender":22963,"msg_type":522,"payload":"7D0vEDL8Fe1l6kJAXxlmFVaSXsAdj0wsL8QxwAECWwQPBg==","lat":37.831235538229876,"tow":271531500,"h_accuracy":513,"crc":22142,"lon":-122.28650412531486} +{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"7D0vEAwAAAD7////+f////EAywIPAg==","n":12,"d":-7,"tow":271531500,"h_accuracy":241,"crc":37941,"e":-5} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"7D0vEJsAhwBMAEgAcgAG","tow":271531500,"crc":35221,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"7D0vEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271531500,"h_accuracy":0,"crc":60164,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"7D0vEP//","tow":271531500,"crc":52872} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MghQPi8QAAAAAAE=","wn":2098,"tow":271531600,"crc":23797} +{"length":16,"flags":17,"ns":599999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EVA+LxDkBwMZAxkN/kXDIw==","day":25,"tow":271531600,"year":2020,"crc":9977,"minutes":25,"month":3,"seconds":13} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.773675000479376,"preamble":85,"sender":22963,"msg_type":522,"payload":"UD4vEFYQFO1l6kJAqaGIFVaSXsCtypiQD8YxwAECWwQPBg==","lat":37.83123553733519,"tow":271531600,"h_accuracy":513,"crc":3153,"lon":-122.28650415747565} +{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"UD4vEP3///8KAAAABgAAAPEAywIPAg==","n":-3,"d":6,"tow":271531600,"h_accuracy":241,"crc":44320,"e":10} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"UD4vEJsAhwBMAEgAcgAG","tow":271531600,"crc":16205,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"UD4vEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271531600,"h_accuracy":0,"crc":4515,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"UD4vEP//","tow":271531600,"crc":53269} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":51,"text":"GLO L2OF ME 1 [+1321ms] low CN0 too long, dropping","preamble":85,"sender":22963,"msg_type":1025,"payload":"BkdMTyBMMk9GIE1FIDEgWysxMzIxbXNdIGxvdyBDTjAgdG9vIGxvbmcsIGRyb3BwaW5n","crc":50435,"level":6} +{"message_type":25,"length":34,"data":[152,47,255,0,8,1,0,64,32,0,31,226,248,102,139,126,79,233,252,255,232,16,0,8,0,190,80],"preamble":85,"sender":22963,"msg_type":30583,"payload":"gwLNPS8QGZgv/wAIAQBAIAAf4vhmi35P6fz/6BAACAC+UA==","tow":271531469,"crc":23581,"sid":{"sat":131,"code":2}} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"Mgi0Pi8QAAAAAAE=","wn":2098,"tow":271531700,"crc":34701} +{"length":16,"flags":17,"ns":699999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EbQ+LxDkBwMZAxkN/ia5KQ==","day":25,"tow":271531700,"year":2020,"crc":55975,"minutes":25,"month":3,"seconds":13} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.781947244932006,"preamble":85,"sender":22963,"msg_type":522,"payload":"tD4vELiTD+1l6kJAAjHAFVaSXsAmLtSxLcgxwAECWwQPBg==","lat":37.83123553524587,"tow":271531700,"h_accuracy":513,"crc":8086,"lon":-122.28650420921988} +{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"tD4vEPn////6////DgAAAPEAywIPAg==","n":-7,"d":14,"tow":271531700,"h_accuracy":241,"crc":785,"e":-6} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"tD4vEJsAhwBMAEgAcgAG","tow":271531700,"crc":18416,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"tD4vEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271531700,"h_accuracy":0,"crc":45952,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"tD4vEP//","tow":271531700,"crc":23948} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MggYPy8QAAAAAAE=","wn":2098,"tow":271531800,"crc":27904} +{"length":16,"flags":17,"ns":799999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"ERg/LxDkBwMZAxkN/gevLw==","day":25,"tow":271531800,"year":2020,"crc":44242,"minutes":25,"month":3,"seconds":13} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.789546854119468,"preamble":85,"sender":22963,"msg_type":522,"payload":"GD8vEDtWM+1l6kJAIyDyFVaSXsBRGh2+H8oxwAECWwQPBg==","lat":37.83123555189783,"tow":271531800,"h_accuracy":513,"crc":4915,"lon":-122.28650425572464} +{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"GD8vEAgAAAD+////+f////EAywIPAg==","n":8,"d":-7,"tow":271531800,"h_accuracy":241,"crc":18174,"e":-2} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"GD8vEJsAhwBMAEgAcgAG","tow":271531800,"crc":18784,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"GD8vEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271531800,"h_accuracy":0,"crc":20396,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"GD8vEP//","tow":271531800,"crc":7446} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":237,"states":[{"cn0":212,"mesid":{"sat":5,"code":0}},{"cn0":178,"mesid":{"sat":21,"code":0}},{"cn0":185,"mesid":{"sat":2,"code":0}},{"cn0":163,"mesid":{"sat":31,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":216,"mesid":{"sat":25,"code":0}},{"cn0":207,"mesid":{"sat":12,"code":0}},{"cn0":212,"mesid":{"sat":29,"code":0}},{"cn0":205,"mesid":{"sat":18,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":204,"mesid":{"sat":131,"code":2}},{"cn0":204,"mesid":{"sat":25,"code":1}},{"cn0":186,"mesid":{"sat":12,"code":1}},{"cn0":151,"mesid":{"sat":31,"code":1}},{"cn0":196,"mesid":{"sat":18,"code":1}},{"cn0":193,"mesid":{"sat":29,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":193,"mesid":{"sat":5,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":213,"mesid":{"sat":11,"code":3}},{"cn0":179,"mesid":{"sat":9,"code":3}},{"cn0":173,"mesid":{"sat":20,"code":3}},{"cn0":209,"mesid":{"sat":5,"code":3}},{"cn0":208,"mesid":{"sat":10,"code":3}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":182,"mesid":{"sat":4,"code":3}},{"cn0":203,"mesid":{"sat":21,"code":3}},{"cn0":172,"mesid":{"sat":9,"code":4}},{"cn0":205,"mesid":{"sat":20,"code":4}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":201,"mesid":{"sat":11,"code":4}},{"cn0":196,"mesid":{"sat":5,"code":4}},{"cn0":188,"mesid":{"sat":0,"code":4}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":174,"mesid":{"sat":4,"code":4}},{"cn0":200,"mesid":{"sat":35,"code":12}},{"cn0":172,"mesid":{"sat":26,"code":12}},{"cn0":160,"mesid":{"sat":34,"code":12}},{"cn0":188,"mesid":{"sat":24,"code":12}},{"cn0":161,"mesid":{"sat":25,"code":12}},{"cn0":184,"mesid":{"sat":12,"code":12}},{"cn0":185,"mesid":{"sat":19,"code":12}},{"cn0":193,"mesid":{"sat":22,"code":12}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":207,"mesid":{"sat":12,"code":13}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":195,"mesid":{"sat":12,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":192,"mesid":{"sat":25,"code":14}},{"cn0":189,"mesid":{"sat":11,"code":14}},{"cn0":204,"mesid":{"sat":24,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":159,"mesid":{"sat":31,"code":14}},{"cn0":151,"mesid":{"sat":33,"code":14}},{"cn0":201,"mesid":{"sat":25,"code":20}},{"cn0":215,"mesid":{"sat":24,"code":20}},{"cn0":194,"mesid":{"sat":11,"code":20}},{"cn0":175,"mesid":{"sat":31,"code":20}},{"cn0":206,"mesid":{"sat":12,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":169,"mesid":{"sat":33,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}}],"preamble":85,"sender":22963,"msg_type":97,"payload":"BQDUFQCyAgC5HwCjAAAAAAAAGQDYDADPHQDUEgDNAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwLMGQHMDAG6HwGXEgHEHQHBAAAABQHBAAAAAAAAAAAAAAAACwPVCQOzFAOtBQPRCgPQAAAABAO2FQPLCQSsFATNAAAACwTJBQTEAAS8AAAABASuIwzIGgysIgygGAy8GQyhDAy4Ewy5FgzBAAAADA3PAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADA7DAAAAGQ7ACw69GA7MAAAAHw6fIQ6XGRTJGBTXCxTCHxSvDBTOAAAAIRSpAAAA","crc":20513} +{"length":128,"preamble":85,"sender":22963,"msg_type":151,"payload":"AgAaHQUAKzUMAFEtFQB9GRkAbUYaAKEBHQChNx8AlQ4EAxUWBQMyIQkDXw4KA3EpCwOYJQwDqgMTAyIHFAMMMRUDlSUMDJQpEwwjIBQMDwIWDEMkGAyCIxkMnQ4aDGcVIgyOESMMIi0LDosyDA4PPBgObDYZDpcpHw5VESEOIA8=","crc":34187,"azel":[{"el":29,"az":26,"sid":{"sat":2,"code":0}},{"el":53,"az":43,"sid":{"sat":5,"code":0}},{"el":45,"az":81,"sid":{"sat":12,"code":0}},{"el":25,"az":125,"sid":{"sat":21,"code":0}},{"el":70,"az":109,"sid":{"sat":25,"code":0}},{"el":1,"az":161,"sid":{"sat":26,"code":0}},{"el":55,"az":161,"sid":{"sat":29,"code":0}},{"el":14,"az":149,"sid":{"sat":31,"code":0}},{"el":22,"az":21,"sid":{"sat":4,"code":3}},{"el":33,"az":50,"sid":{"sat":5,"code":3}},{"el":14,"az":95,"sid":{"sat":9,"code":3}},{"el":41,"az":113,"sid":{"sat":10,"code":3}},{"el":37,"az":152,"sid":{"sat":11,"code":3}},{"el":3,"az":170,"sid":{"sat":12,"code":3}},{"el":7,"az":34,"sid":{"sat":19,"code":3}},{"el":49,"az":12,"sid":{"sat":20,"code":3}},{"el":37,"az":149,"sid":{"sat":21,"code":3}},{"el":41,"az":148,"sid":{"sat":12,"code":12}},{"el":32,"az":35,"sid":{"sat":19,"code":12}},{"el":2,"az":15,"sid":{"sat":20,"code":12}},{"el":36,"az":67,"sid":{"sat":22,"code":12}},{"el":35,"az":130,"sid":{"sat":24,"code":12}},{"el":14,"az":157,"sid":{"sat":25,"code":12}},{"el":21,"az":103,"sid":{"sat":26,"code":12}},{"el":17,"az":142,"sid":{"sat":34,"code":12}},{"el":45,"az":34,"sid":{"sat":35,"code":12}},{"el":50,"az":139,"sid":{"sat":11,"code":14}},{"el":60,"az":15,"sid":{"sat":12,"code":14}},{"el":54,"az":108,"sid":{"sat":24,"code":14}},{"el":41,"az":151,"sid":{"sat":25,"code":14}},{"el":17,"az":85,"sid":{"sat":31,"code":14}},{"el":15,"az":32,"sid":{"sat":33,"code":14}}]} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"Mgh8Py8QAAAAAAE=","wn":2098,"tow":271531900,"crc":2506} +{"length":16,"flags":17,"ns":899999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EXw/LxDkBwMZAxkN/uikNQ==","day":25,"tow":271531900,"year":2020,"crc":25596,"minutes":25,"month":3,"seconds":13} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.799950782963364,"preamble":85,"sender":22963,"msg_type":522,"payload":"fD8vENkHUO1l6kJAo4sgFlaSXsC8PBOTycwxwAECWwQPBg==","lat":37.831235565259426,"tow":271531900,"h_accuracy":513,"crc":60001,"lon":-122.28650429895656} +{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"fD8vEAIAAAAAAAAABgAAAPEAywIPAg==","n":2,"d":6,"tow":271531900,"h_accuracy":241,"crc":55697,"e":0} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"fD8vEJsAhwBMAEgAcgAG","tow":271531900,"crc":26063,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"fD8vEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271531900,"h_accuracy":0,"crc":22298,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"fD8vEP//","tow":271531900,"crc":17583} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":249,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":112,"i":110567406},"flags":15,"cn0":212,"P":1052013769,"D":{"f":224,"i":-193},"lock":15,"sid":{"sat":5,"code":0}},{"L":{"f":219,"i":121787810},"flags":15,"cn0":178,"P":1158772470,"D":{"f":19,"i":2169},"lock":15,"sid":{"sat":21,"code":0}},{"L":{"f":20,"i":123380462},"flags":15,"cn0":186,"P":1173925659,"D":{"f":146,"i":-2478},"lock":15,"sid":{"sat":2,"code":0}},{"L":{"f":2,"i":128745161},"flags":15,"cn0":163,"P":1224969437,"D":{"f":167,"i":-402},"lock":15,"sid":{"sat":31,"code":0}},{"L":{"f":151,"i":107842529},"flags":15,"cn0":217,"P":1026087488,"D":{"f":68,"i":-1136},"lock":15,"sid":{"sat":25,"code":0}},{"L":{"f":18,"i":114149231},"flags":15,"cn0":207,"P":1086093734,"D":{"f":100,"i":-2973},"lock":15,"sid":{"sat":12,"code":0}},{"L":{"f":163,"i":110735690},"flags":15,"cn0":212,"P":1053614993,"D":{"f":78,"i":1481},"lock":15,"sid":{"sat":29,"code":0}},{"L":{"f":112,"i":84033160},"flags":15,"cn0":204,"P":1026087542,"D":{"f":235,"i":-886},"lock":15,"sid":{"sat":25,"code":1}},{"L":{"f":103,"i":88947484},"flags":15,"cn0":186,"P":1086093637,"D":{"f":182,"i":-2316},"lock":15,"sid":{"sat":12,"code":1}},{"L":{"f":21,"i":100320907},"flags":15,"cn0":151,"P":1224969463,"D":{"f":165,"i":-315},"lock":15,"sid":{"sat":31,"code":1}},{"L":{"f":252,"i":86287552},"flags":15,"cn0":193,"P":1053614905,"D":{"f":112,"i":1155},"lock":15,"sid":{"sat":29,"code":1}},{"L":{"f":224,"i":86156449},"flags":15,"cn0":193,"P":1052013684,"D":{"f":153,"i":-151},"lock":15,"sid":{"sat":5,"code":1}},{"L":{"f":63,"i":112916716},"flags":15,"cn0":213,"P":1056540877,"D":{"f":39,"i":1153},"lock":15,"sid":{"sat":11,"code":3}},{"L":{"f":107,"i":123412445},"flags":15,"cn0":179,"P":1155559118,"D":{"f":167,"i":-4409},"lock":15,"sid":{"sat":9,"code":3}}],"payload":"4D8vEAAAAAAyCEDJdLQ+7h+XBnA//+DUDw8FAPZ2EUWiVUIH23kIE7IPDxUAG6/4Re6iWgcUUvaSug8PAgDdjANJyX6sBwJu/qejDw8fAEDaKD3hi20Gl5D7RNkPDxkApnm8QG/HzQYSY/Rkzw8PDACR48w+SrGZBqPJBU7UDw8dAHbaKD2IPgIFcIr868wPDxkBRXm8QBw7TQVn9Pa2ug8PDAH3jANJi8b6BRXF/qWXDw8fATnjzD7ApCQF/IMEcMEPDx0BdHS0PqGkIgXgaf+ZwQ8PBQHNiPk+7Pi6Bj+BBCfVDw8LA85u4ETdH1sHa8fup7MPDwkD","header":{"n_obs":64,"t":{"ns_residual":0,"wn":2098,"tow":271532000}},"crc":30651} +{"length":249,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":42,"i":109792104},"flags":15,"cn0":174,"P":1026583535,"D":{"f":21,"i":-1211},"lock":15,"sid":{"sat":20,"code":3}},{"L":{"f":191,"i":114821298},"flags":15,"cn0":209,"P":1073984634,"D":{"f":124,"i":2188},"lock":15,"sid":{"sat":5,"code":3}},{"L":{"f":219,"i":111657741},"flags":15,"cn0":208,"P":1047335079,"D":{"f":244,"i":-3054},"lock":15,"sid":{"sat":10,"code":3}},{"L":{"f":172,"i":120462007},"flags":15,"cn0":182,"P":1124771240,"D":{"f":200,"i":-1329},"lock":15,"sid":{"sat":4,"code":3}},{"L":{"f":96,"i":113391046},"flags":15,"cn0":203,"P":1059490934,"D":{"f":130,"i":1621},"lock":15,"sid":{"sat":21,"code":3}},{"L":{"f":53,"i":95987467},"flags":15,"cn0":172,"P":1155559189,"D":{"f":245,"i":-3429},"lock":15,"sid":{"sat":9,"code":4}},{"L":{"f":134,"i":85393894},"flags":15,"cn0":205,"P":1026583861,"D":{"f":148,"i":-943},"lock":15,"sid":{"sat":20,"code":4}},{"L":{"f":245,"i":87824122},"flags":15,"cn0":201,"P":1056541181,"D":{"f":231,"i":896},"lock":15,"sid":{"sat":11,"code":4}},{"L":{"f":96,"i":89305458},"flags":15,"cn0":195,"P":1073984873,"D":{"f":6,"i":1701},"lock":15,"sid":{"sat":5,"code":4}},{"L":{"f":220,"i":93692662},"flags":15,"cn0":174,"P":1124771444,"D":{"f":197,"i":-1034},"lock":15,"sid":{"sat":4,"code":4}},{"L":{"f":198,"i":121606532},"flags":15,"cn0":200,"P":1167662526,"D":{"f":238,"i":-1502},"lock":15,"sid":{"sat":35,"code":12}},{"L":{"f":200,"i":129265255},"flags":15,"cn0":172,"P":1241201723,"D":{"f":206,"i":-3009},"lock":15,"sid":{"sat":26,"code":12}},{"L":{"f":6,"i":132906121},"flags":15,"cn0":160,"P":1276160947,"D":{"f":78,"i":2250},"lock":15,"sid":{"sat":34,"code":12}},{"L":{"f":238,"i":125174466},"flags":15,"cn0":188,"P":1201922030,"D":{"f":59,"i":-1309},"lock":15,"sid":{"sat":24,"code":12}}],"payload":"4D8vEAAAAAAyCEHvazA9aEuLBipF+xWuDw8UA3q0A0CyCNgGv4wIfNEPDwUDpxBtPg3DpwbbEvT00A8PCgOopQpDtxouB6zP+si2Dw8EA3aMJj/GNcIGYFUGgssPDxUDFW/gRAunuAU1m/L1rA8PCQQ1bTA95gEXBYZR/JTNDw8UBP2J+T76FjwF9YAD58kPDwsEabUDQHKxUgVgpQYGww8PBQR0pgpD9qKVBdz2+8WuDw8EBL4dmUWEkT8HxiL67sgPDyMMOzz7SWdutAfIP/TOrA8PGgyzqxBMifzrBwbKCE6gDw8iDO7fo0fCAnYH7uP6O7wPDxgM","header":{"n_obs":65,"t":{"ns_residual":0,"wn":2098,"tow":271532000}},"crc":42590} +{"length":249,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":120,"i":134648714},"flags":15,"cn0":161,"P":1292893544,"D":{"f":164,"i":1317},"lock":15,"sid":{"sat":25,"code":12}},{"L":{"f":116,"i":121071367},"flags":15,"cn0":184,"P":1162524132,"D":{"f":153,"i":1611},"lock":15,"sid":{"sat":12,"code":12}},{"L":{"f":40,"i":124520145},"flags":15,"cn0":185,"P":1195639187,"D":{"f":233,"i":-299},"lock":15,"sid":{"sat":19,"code":12}},{"L":{"f":91,"i":124662071},"flags":15,"cn0":193,"P":1197001998,"D":{"f":154,"i":2382},"lock":15,"sid":{"sat":22,"code":12}},{"L":{"f":201,"i":93620069},"flags":15,"cn0":207,"P":1162524070,"D":{"f":75,"i":1246},"lock":15,"sid":{"sat":12,"code":13}},{"L":{"f":124,"i":116444375},"flags":15,"cn0":195,"P":1107931367,"D":{"f":90,"i":-1028},"lock":15,"sid":{"sat":12,"code":14}},{"L":{"f":106,"i":132455486},"flags":15,"cn0":192,"P":1260271976,"D":{"f":166,"i":1082},"lock":15,"sid":{"sat":25,"code":14}},{"L":{"f":131,"i":125403894},"flags":15,"cn0":189,"P":1193178329,"D":{"f":201,"i":1047},"lock":15,"sid":{"sat":11,"code":14}},{"L":{"f":160,"i":118445105},"flags":15,"cn0":204,"P":1126967578,"D":{"f":119,"i":-1750},"lock":15,"sid":{"sat":24,"code":14}},{"L":{"f":114,"i":143378084},"flags":15,"cn0":159,"P":1364197099,"D":{"f":160,"i":-3174},"lock":15,"sid":{"sat":31,"code":14}},{"L":{"f":198,"i":144562420},"flags":15,"cn0":152,"P":1375465665,"D":{"f":124,"i":-2141},"lock":15,"sid":{"sat":33,"code":14}},{"L":{"f":157,"i":101491864},"flags":15,"cn0":201,"P":1260271947,"D":{"f":237,"i":828},"lock":15,"sid":{"sat":25,"code":20}},{"L":{"f":239,"i":90756702},"flags":15,"cn0":215,"P":1126968124,"D":{"f":19,"i":-1341},"lock":15,"sid":{"sat":24,"code":20}},{"L":{"f":62,"i":96088676},"flags":15,"cn0":193,"P":1193178131,"D":{"f":16,"i":802},"lock":15,"sid":{"sat":11,"code":20}}],"payload":"4D8vEAAAAAAyCEJo/Q9NipMGCHglBaShDw8ZDOS1SkUHZzcHdEsGmbgPDwwMkwFER9EGbAco1f7puQ8PEwwOzVhHNzFuB1tOCZrBDw8WDKa1SkVlh5QFyd4ES88PDwwN57AJQtfM8AZ8/Ptaww8PDA5oOR5LPhzlB2o6BKbADw8ZDtl0Hkf2gnkHgxcEyb0PDwsOGiksQzFUDwegKvl3zA8PGA7r/k9RpMaLCHKa86CfDw8fDsHw+1H02J0IxqP3fJgPDyEOSzkeS5ikDAadPAPtyQ8PGRQ8KyxDXtZoBe/D+hPXDw8YFBN0HkdkMroFPiIDEMEPDwsU","header":{"n_obs":66,"t":{"ns_residual":0,"wn":2098,"tow":271532000}},"crc":51370} +{"length":62,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":47,"i":109861171},"flags":15,"cn0":175,"P":1364197179,"D":{"f":35,"i":-2431},"lock":15,"sid":{"sat":31,"code":20}},{"L":{"f":252,"i":89223642},"flags":15,"cn0":206,"P":1107931207,"D":{"f":49,"i":-789},"lock":15,"sid":{"sat":12,"code":20}},{"L":{"f":155,"i":110768678},"flags":15,"cn0":169,"P":1375465643,"D":{"f":159,"i":-1639},"lock":15,"sid":{"sat":33,"code":20}}],"payload":"4D8vEAAAAAAyCEM7/09RM1mMBi+B9iOvDw8fFEewCULacVEF/Ov8Mc4PDwwUq/D7USYymgabmfmfqQ8PIRQ=","header":{"n_obs":67,"t":{"ns_residual":0,"wn":2098,"tow":271532000}},"crc":26500} +{"length":9,"l2ca_bias":0,"preamble":85,"l2p_bias":0,"sender":22963,"msg_type":117,"payload":"/wAAAAAAAAAA","l1ca_bias":0,"mask":255,"crc":49809,"l1p_bias":0} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgjgPy8QAAAAAAE=","wn":2098,"tow":271532000,"crc":20630} +{"length":16,"flags":17,"ns":999999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EeA/LxDkBwMZAxkN/smaOw==","day":25,"tow":271532000,"year":2020,"crc":45873,"minutes":25,"month":3,"seconds":13} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.807651702029755,"preamble":85,"sender":22963,"msg_type":522,"payload":"4D8vEEdLY+1l6kJA2xFGFlaSXsDLxg5Dws4xwAECWwQPBg==","lat":37.831235574229645,"tow":271532000,"h_accuracy":513,"crc":23503,"lon":-122.28650433390378} +{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"4D8vEPf////8////+v////EAywIPAg==","n":-9,"d":-6,"tow":271532000,"h_accuracy":241,"crc":51413,"e":-4} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"4D8vEJsAhwBMAEgAcgAG","tow":271532000,"crc":50080,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"4D8vEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271532000,"h_accuracy":0,"crc":43307,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"4D8vEP//","tow":271532000,"crc":33256} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":4,"flags":2147616000,"preamble":85,"sender":22963,"msg_type":65535,"payload":"AAUCgA==","crc":40942} +{"length":24,"z":3890655.0240602265,"preamble":85,"sender":22963,"msg_type":72,"payload":"UO0a3iqORMHK1UJhIkRQwc9nFIPvrk1B","crc":2168,"x":-2694229.735196747,"y":-4264073.519704292} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"bWFpbgAAAAAAAAAAAAAAAAAAAAAAAAx1AAA=","name":"main\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":47991,"stack_free":29964,"cpu":0} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"aWRsZQAAAAAAAAAAAAAAAAAAAABlAXwAAAA=","name":"idle\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":61976,"stack_free":124,"cpu":357} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"cnBtc2cAAAAAAAAAAAAAAAAAAAABAAwOAAA=","name":"rpmsg\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":4724,"stack_free":3596,"cpu":1} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"U0JQAAAAAAAAAAAAAAAAAAAAAAAAAPz/AAA=","name":"SBP\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":51784,"stack_free":65532,"cpu":0} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"TkFQAAAAAAAAAAAAAAAAAAAAAAAAAASAAAA=","name":"NAP\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":33651,"stack_free":32772,"cpu":0} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"bWFuYWdlIFBWAAAAAAAAAAAAAAAAACQEAAA=","name":"manage PV\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":29877,"stack_free":1060,"cpu":0} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"SU1VAAAAAAAAAAAAAAAAAAAAAAAAAPQHAAA=","name":"IMU\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":14252,"stack_free":2036,"cpu":0} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"SU1VIGF1eAAAAAAAAAAAAAAAAAAAAEwIAAA=","name":"IMU aux\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":18976,"stack_free":2124,"cpu":0} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"bmRiAAAAAAAAAAAAAAAAAAAAAAAAAFAMAAA=","name":"ndb\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":26120,"stack_free":3152,"cpu":0} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"TkFQIFRyYWNraW5nAAAAAAAAAAAcAdR3AAA=","name":"NAP Tracking\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":3951,"stack_free":30676,"cpu":284} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"ZGVjb2RlAAAAAAAAAAAAAAAAAAAIANQGAAA=","name":"decode\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":40082,"stack_free":1748,"cpu":8} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"bWFuYWdlIGFjcQAAAAAAAAAAAAC9AKR3AAA=","name":"manage acq\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":24209,"stack_free":30628,"cpu":189} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"c3lzdGVtIG1vbml0b3IAAAAAAAAAACwGAAA=","name":"system monitor\u0000\u0000\u0000\u0000\u0000\u0000","crc":58531,"stack_free":1580,"cpu":0} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"V2F0Y2hkb2cAAAAAAAAAAAAAAAAAAOQDAAA=","name":"Watchdog\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":44438,"stack_free":996,"cpu":0} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"c3RhcmxpbmcAAAAAAAAAAAAAAACVAPz/AAA=","name":"starling\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":15999,"stack_free":65532,"cpu":149} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"bWVfY2FsY19wdnQAAAAAAAAAAAAJAIwjAAA=","name":"me_calc_pvt\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":57561,"stack_free":9100,"cpu":9} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"UFBTAAAAAAAAAAAAAAAAAAAAAAAAAEgHAAA=","name":"PPS\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":38576,"stack_free":1864,"cpu":0} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"c3BlY3RydW0gYW5hbHl6ZXIAAAAAANQPAAA=","name":"spectrum analyzer\u0000\u0000\u0000","crc":50933,"stack_free":4052,"cpu":0} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MghEQC8QAAAAAAE=","wn":2098,"tow":271532100,"crc":48633} +{"length":16,"flags":17,"ns":99999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EURALxDkBwMZAxkO/uD1BQ==","day":25,"tow":271532100,"year":2020,"crc":12387,"minutes":25,"month":3,"seconds":14} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.81561338943416,"preamble":85,"sender":22963,"msg_type":522,"payload":"REAvEHAic+1l6kJAAQ57FlaSXsCnzAEKzNAxwAECWwQPBg==","lat":37.83123558160594,"tow":271532100,"h_accuracy":513,"crc":5160,"lon":-122.28650438324986} +{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"REAvEAEAAAD6////DAAAAPEAywIPAg==","n":1,"d":12,"tow":271532100,"h_accuracy":241,"crc":12747,"e":-6} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"REAvEJsAhwBMAEgAcgAG","tow":271532100,"crc":31486,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"REAvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271532100,"h_accuracy":0,"crc":32932,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"REAvEP//","tow":271532100,"crc":7710} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgioQC8QAAAAAAE=","wn":2098,"tow":271532200,"crc":20350} +{"length":16,"flags":17,"ns":199999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EahALxDkBwMZAxkO/sHrCw==","day":25,"tow":271532200,"year":2020,"crc":8159,"minutes":25,"month":3,"seconds":14} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.826844517567505,"preamble":85,"sender":22963,"msg_type":522,"payload":"qEAvEKPKfu1l6kJAAbKpFlaSXsBP1BEVrNMxwAECWwQPBg==","lat":37.831235587034165,"tow":271532200,"h_accuracy":513,"crc":3495,"lon":-122.28650442668733} +{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"qEAvEP////8EAAAAIQAAAPEAywIPAg==","n":-1,"d":33,"tow":271532200,"h_accuracy":241,"crc":62751,"e":4} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"qEAvEJsAhwBMAEgAcgAG","tow":271532200,"crc":9478,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"qEAvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271532200,"h_accuracy":0,"crc":31780,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"qEAvEP//","tow":271532200,"crc":40645} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MggMQS8QAAAAAAE=","wn":2098,"tow":271532300,"crc":35852} +{"length":16,"flags":17,"ns":299999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EQxBLxDkBwMZAxkO/qLhEQ==","day":25,"tow":271532300,"year":2020,"crc":43137,"minutes":25,"month":3,"seconds":14} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.83749533982504,"preamble":85,"sender":22963,"msg_type":522,"payload":"DEEvEDdSje1l6kJA1tPVFlaSXsDYGTcYZtYxwAECWwQPBg==","lat":37.83123559380004,"tow":271532300,"h_accuracy":513,"crc":15450,"lon":-122.2865044677886} +{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"DEEvEAMAAAAKAAAA9/////EAywIPAg==","n":3,"d":-9,"tow":271532300,"h_accuracy":241,"crc":21579,"e":10} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"DEEvEJsAhwBMAEgAcgAG","tow":271532300,"crc":3283,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"DEEvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271532300,"h_accuracy":0,"crc":57003,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"DEEvEP//","tow":271532300,"crc":54045} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":237,"states":[{"cn0":213,"mesid":{"sat":5,"code":0}},{"cn0":179,"mesid":{"sat":21,"code":0}},{"cn0":186,"mesid":{"sat":2,"code":0}},{"cn0":164,"mesid":{"sat":31,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":217,"mesid":{"sat":25,"code":0}},{"cn0":207,"mesid":{"sat":12,"code":0}},{"cn0":212,"mesid":{"sat":29,"code":0}},{"cn0":206,"mesid":{"sat":18,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":204,"mesid":{"sat":131,"code":2}},{"cn0":203,"mesid":{"sat":25,"code":1}},{"cn0":187,"mesid":{"sat":12,"code":1}},{"cn0":151,"mesid":{"sat":31,"code":1}},{"cn0":196,"mesid":{"sat":18,"code":1}},{"cn0":193,"mesid":{"sat":29,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":192,"mesid":{"sat":5,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":213,"mesid":{"sat":100,"code":3}},{"cn0":179,"mesid":{"sat":98,"code":3}},{"cn0":173,"mesid":{"sat":102,"code":3}},{"cn0":209,"mesid":{"sat":101,"code":3}},{"cn0":208,"mesid":{"sat":93,"code":3}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":182,"mesid":{"sat":106,"code":3}},{"cn0":203,"mesid":{"sat":104,"code":3}},{"cn0":172,"mesid":{"sat":98,"code":4}},{"cn0":205,"mesid":{"sat":102,"code":4}},{"cn0":83,"mesid":{"sat":93,"code":4}},{"cn0":201,"mesid":{"sat":100,"code":4}},{"cn0":195,"mesid":{"sat":101,"code":4}},{"cn0":188,"mesid":{"sat":104,"code":4}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":175,"mesid":{"sat":106,"code":4}},{"cn0":200,"mesid":{"sat":35,"code":12}},{"cn0":173,"mesid":{"sat":26,"code":12}},{"cn0":159,"mesid":{"sat":34,"code":12}},{"cn0":188,"mesid":{"sat":24,"code":12}},{"cn0":161,"mesid":{"sat":25,"code":12}},{"cn0":185,"mesid":{"sat":12,"code":12}},{"cn0":185,"mesid":{"sat":19,"code":12}},{"cn0":193,"mesid":{"sat":22,"code":12}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":207,"mesid":{"sat":12,"code":13}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":194,"mesid":{"sat":12,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":191,"mesid":{"sat":25,"code":14}},{"cn0":188,"mesid":{"sat":11,"code":14}},{"cn0":203,"mesid":{"sat":24,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":158,"mesid":{"sat":31,"code":14}},{"cn0":151,"mesid":{"sat":33,"code":14}},{"cn0":201,"mesid":{"sat":25,"code":20}},{"cn0":215,"mesid":{"sat":24,"code":20}},{"cn0":194,"mesid":{"sat":11,"code":20}},{"cn0":175,"mesid":{"sat":31,"code":20}},{"cn0":206,"mesid":{"sat":12,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":170,"mesid":{"sat":33,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}}],"preamble":85,"sender":22963,"msg_type":97,"payload":"BQDVFQCzAgC6HwCkAAAAAAAAGQDZDADPHQDUEgDOAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwLMGQHLDAG7HwGXEgHEHQHBAAAABQHAAAAAAAAAAAAAAAAAZAPVYgOzZgOtZQPRXQPQAAAAagO2aAPLYgSsZgTNXQRTZATJZQTDaAS8AAAAagSvIwzIGgytIgyfGAy8GQyhDAy5Ewy5FgzBAAAADA3PAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADA7CAAAAGQ6/Cw68GA7LAAAAHw6eIQ6XGRTJGBTXCxTCHxSvDBTOAAAAIRSqAAAA","crc":32415} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MghwQS8QAAAAAAE=","wn":2098,"tow":271532400,"crc":37575} +{"length":16,"flags":17,"ns":399999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EXBBLxDkBwMZAxkO/oPXFw==","day":25,"tow":271532400,"year":2020,"crc":37858,"minutes":25,"month":3,"seconds":14} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.850109908095327,"preamble":85,"sender":22963,"msg_type":522,"payload":"cEEvEAQHk+1l6kJAH7sIF1aSXsBmRo3NoNkxwAECWwQPBg==","lat":37.83123559645722,"tow":271532400,"h_accuracy":513,"crc":12989,"lon":-122.28650451519614} +{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"cEEvEAYAAAD6////+/////EAywIPAg==","n":6,"d":-5,"tow":271532400,"h_accuracy":241,"crc":65038,"e":-6} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"cEEvEJsAhwBMAEgAcgAG","tow":271532400,"crc":18867,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"cEEvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271532400,"h_accuracy":0,"crc":9720,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"cEEvEP//","tow":271532400,"crc":40290} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":9,"l2ca_bias":0,"preamble":85,"l2p_bias":0,"sender":22963,"msg_type":117,"payload":"/wAAAAAAAAAA","l1ca_bias":0,"mask":255,"crc":49809,"l1p_bias":0} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgjUQS8QAAAAAAE=","wn":2098,"tow":271532500,"crc":5734} +{"length":16,"flags":17,"ns":499999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EdRBLxDkBwMZAxkO/mTNHQ==","day":25,"tow":271532500,"year":2020,"crc":43269,"minutes":25,"month":3,"seconds":14} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.86162557262341,"preamble":85,"sender":22963,"msg_type":522,"payload":"1EEvEE/Jj+1l6kJAfVc+F1aSXsCY0Fd+k9wxwAECWwQPBg==","lat":37.83123559494799,"tow":271532500,"h_accuracy":513,"crc":3224,"lon":-122.2865045651251} +{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"1EEvEP7/////////9/////EAywIPAg==","n":-2,"d":-9,"tow":271532500,"h_accuracy":241,"crc":14265,"e":-1} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"1EEvEJsAhwBMAEgAcgAG","tow":271532500,"crc":6919,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"1EEvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271532500,"h_accuracy":0,"crc":21121,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"1EEvEP//","tow":271532500,"crc":31467} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"Mgg4Qi8QAAAAAAE=","wn":2098,"tow":271532600,"crc":11412} +{"length":16,"flags":17,"ns":599999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EThCLxDkBwMZAxkO/kXDIw==","day":25,"tow":271532600,"year":2020,"crc":15930,"minutes":25,"month":3,"seconds":14} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.877730227165625,"preamble":85,"sender":22963,"msg_type":522,"payload":"OEIvEMhym+1l6kJAp/uIF1aSXsATY5ztsuAxwAECWwQPBg==","lat":37.831235600378534,"tow":271532600,"h_accuracy":513,"crc":24264,"lon":-122.2865046346402} +{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"OEIvEAQAAAD1////HQAAAPEAywIPAg==","n":4,"d":29,"tow":271532600,"h_accuracy":241,"crc":4477,"e":-11} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"OEIvEJsAhwBMAEgAcgAG","tow":271532600,"crc":51548,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"OEIvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271532600,"h_accuracy":0,"crc":49210,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"OEIvEP//","tow":271532600,"crc":5346} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":147,"af0":-9.23714367672801e-4,"w":-5.725038031956664e-2,"dn":3.576934707973788e-9,"c_us":1.2642704e-5,"c_uc":1.5250407e-6,"ecc":7.52994092181325e-4,"sqrta":5282.620655059814,"preamble":85,"toc":{"wn":2098,"tow":270014},"sender":22963,"msg_type":137,"omegadot":-6.592417457791331e-9,"payload":"Iwy+HgQAMggAAABAMCoAAAEAwwCGscMAhrEAgPlBANjTQgCwzDUAHFQ3AABIsgAAOjMUuSw6w7kuPn/O4GKYQgBAAAAAgJKsSD8AAEDjnqK0QJ1VR5JSigbAf+7mjHBQPL5w7E/+60+tv7WNXBae1O4/TfYYl9sb7T0AAACArUROvwAGni0AAAAAvh4EADIIh4cA","inc":0.963454288172605,"inc_dot":2.1179453637827823e-10,"iode":135,"crc":30051,"tgd2":-3.9e-9,"common":{"health_bits":0,"fit_interval":10800,"valid":1,"sid":{"sat":35,"code":12},"toe":{"wn":2098,"tow":270014},"ura":2},"c_rs":31.1875,"m0":2.03251721619182,"af2":0,"c_rc":105.921875,"af1":1.7965185e-11,"c_is":4.33065e-8,"c_ic":-1.1641532e-8,"tgd1":-3.9e-9,"omega0":-2.817540304948763,"iodc":135} +{"length":147,"af0":6.189986597746611e-4,"w":0.32445982545408203,"dn":4.235176412097173e-9,"c_us":3.1171367e-6,"c_uc":3.4985133e-6,"ecc":6.687664426863194e-4,"sqrta":5282.61806678772,"preamble":85,"toc":{"wn":2098,"tow":270014},"sender":22963,"msg_type":137,"omegadot":-7.279231780650402e-9,"payload":"Ggy+HgQAMggAAABAMCoAAAEAjyjOsY8ozrEACItCAAKUQwDIajYAMFE2AACGMwAAADHP95QuoDAyPiLf2/NWewdAAAAAAAXqRT8AAKA5nqK0QPup189o9PU//N6OmJlDP77QO8wk88PUP5/Et3R4h+4/gsMdrMKq/D0AAACAiUhEPwAwdy0AAAAAvh4EADIIh4cA","inc":0.9540369300504102,"inc_dot":4.1716023354102695e-10,"iode":135,"crc":36026,"tgd2":-6.0e-9,"common":{"health_bits":0,"fit_interval":10800,"valid":1,"sid":{"sat":26,"code":12},"toe":{"wn":2098,"tow":270014},"ura":2},"c_rs":69.515625,"m0":2.935224442622613,"af2":0,"c_rc":296.01563,"af1":1.4050983e-11,"c_is":1.8626451e-9,"c_ic":6.239861e-8,"tgd1":-6.0e-9,"omega0":1.372170268902322,"iodc":135} +{"length":147,"af0":-5.756265018135309e-4,"w":0.17131749839288932,"dn":3.5805062853157493e-9,"c_us":1.34021975e-5,"c_uc":1.5008263e-6,"ecc":5.672440165653825e-4,"sqrta":5282.627738952637,"preamble":85,"toc":{"wn":2098,"tow":270014},"sender":22963,"msg_type":137,"omegadot":-6.595989035133292e-9,"payload":"Igy+HgQAMggAAABAMCoAAAEAWdkAslnZALIAAPZBAAi9QgBwyTUA2mA3AABwMgAAKDJjDrfYncEuPsrGdL5ZIcw/AAAAQGOWQj8AAICzoKK0QIU/AkIEigbAJhks3F1UPL4vPWpWu+3FP6YFBUkK1O4/ejptkv007T0AAACAtNxCvwCgC64AAAAAvh4EADIIh4cA","inc":0.9633838106312183,"inc_dot":2.125088518466704e-10,"iode":135,"crc":62150,"tgd2":-7.5e-9,"common":{"health_bits":0,"fit_interval":10800,"valid":1,"sid":{"sat":34,"code":12},"toe":{"wn":2098,"tow":270014},"ura":2},"c_rs":30.75,"m0":0.21976777839295486,"af2":0,"c_rc":94.515625,"af1":-3.174705e-11,"c_is":9.778887e-9,"c_ic":1.3969839e-8,"tgd1":-7.5e-9,"omega0":-2.8173909336982796,"iodc":135} +{"length":147,"af0":-8.866871939972043e-4,"w":0.5946314748905823,"dn":4.351609833445096e-9,"c_us":3.0193478e-6,"c_uc":3.3127144e-6,"ecc":5.869971355423331e-4,"sqrta":5282.613315582275,"preamble":85,"toc":{"wn":2098,"tow":270014},"sender":22963,"msg_type":137,"omegadot":-7.331733967577227e-9,"payload":"GAy+HgQAMggAAABAMCoAAAEA/+bbMf/m2zEA+IVCAKiTQwBQXjYAoEo2AABYMwAAjLIVM8pGpbAyPiifS3+Dnf4/AAAAwBY8Qz8AAEACnaK0QCg91PljXPY/lGvUpVN9P742eTqWOAfjP+Iz0JJ5fe4/ndgi/RFG+D0AAABAEg5NvwAkli0AAAAAvh4EADIIh4cA","inc":0.9528167598197081,"inc_dot":3.532289991199278e-10,"iode":135,"crc":37866,"tgd2":6.4e-9,"common":{"health_bits":0,"fit_interval":10800,"valid":1,"sid":{"sat":24,"code":12},"toe":{"wn":2098,"tow":270014},"ura":2},"c_rs":66.984375,"m0":1.9134554836727578,"af2":0,"c_rc":295.3125,"af1":1.7069013e-11,"c_is":-1.6298145e-8,"c_ic":5.029142e-8,"tgd1":6.4e-9,"omega0":1.397556281943091,"iodc":135} +{"length":147,"af0":-5.598061252385378e-4,"w":0.4555162837044739,"dn":4.254820087477957e-9,"c_us":3.4887344e-6,"c_uc":3.5273843e-6,"ecc":4.072687588632107e-4,"sqrta":5282.618574142456,"preamble":85,"toc":{"wn":2098,"tow":270014},"sender":22963,"msg_type":137,"omegadot":-7.227086751457774e-9,"payload":"GQy+HgQAMggAAABAMCoAAAEAP+2krz/tpK8AcI5CAByQQwC4bDYAIGo2AACUsgAAtLNlYpFiOUYyPjyioq2B4/M/AAAAANawOj8AAOBanqK0QNMn20Uo8vU/daM2E0QKP75XmFPFLSfdPykqFKcEh+4/DQoOoigw+j0AAACA/ldCvwCgZK0AAAAAvh4EADIIh4cA","inc":0.9539817107445902,"inc_dot":3.8108730238722235e-10,"iode":135,"crc":4271,"tgd2":-3.0e-10,"common":{"health_bits":0,"fit_interval":10800,"valid":1,"sid":{"sat":25,"code":12},"toe":{"wn":2098,"tow":270014},"ura":2},"c_rs":71.21875,"m0":1.2430435927036703,"af2":0,"c_rc":288.21875,"af1":-1.2995827e-11,"c_is":-8.381903e-8,"c_ic":-1.7229468e-8,"tgd1":-3.0e-10,"omega0":1.37162043845682,"iodc":135} +{"length":147,"af0":3.375648520886898e-4,"w":-1.9081863131506556,"dn":3.0797711419728383e-9,"c_us":1.3451092e-5,"c_uc":1.7820857e-6,"ecc":1.1259819148108363e-3,"sqrta":5282.626808166504,"preamble":85,"toc":{"wn":2098,"tow":270014},"sender":22963,"msg_type":137,"omegadot":-6.337763993309523e-9,"payload":"DAy+HgQAMggAAABAMCoAAAEAzy4XMV9wCbAAABtCAMjSQgAw7zUArGE3AACoMgAAALJoI1sFfXQqPnhZ35WZjwVAAAAA4LVyUj8AAIB2oKK0QPC50DJHWwbA+Cbw+HE4O76Vghpf7of+v3czuyPlpO8/MRP6+nc/8D0AAAAAZh82PwCo3iwAAAAAvh4EADIIh4cA","inc":0.9888787935138755,"inc_dot":2.3643842003780805e-10,"iode":135,"crc":42543,"tgd2":-5.0e-10,"common":{"health_bits":0,"fit_interval":10800,"valid":1,"sid":{"sat":12,"code":12},"toe":{"wn":2098,"tow":270014},"ura":2},"c_rs":38.75,"m0":2.695117159727655,"af2":0,"c_rc":105.390625,"af1":6.3282712e-12,"c_is":-7.450581e-9,"c_ic":1.9557774e-8,"tgd1":2.2e-9,"omega0":-2.794569394106695,"iodc":135} +{"length":147,"af0":3.618638729676604e-4,"w":-1.2494646693101417,"dn":3.988380417767678e-9,"c_us":6.2091276e-6,"c_uc":-4.3381006e-6,"ecc":9.270192822441459e-4,"sqrta":5282.625810623169,"preamble":85,"toc":{"wn":2098,"tow":270014},"sender":22963,"msg_type":137,"omegadot":-7.019935265624045e-9,"payload":"Ewy+HgQAMggAAABAMCoAAAEAUbI+MlGyPjIAILLCAMhnQwCQkbYAWNA2AAB4sgAAhbO3JwNJRSExPsX1sYGVhf4/AAAAwGZgTj8AACA1oKK0QLpUxzpa1+a/nPmKHYAmPr66HEOqzv3zv9CGs83N0u4/GoYZD6w0Bb4AAACAEbc3PwD8SC0AAAAAvh4EADIIh4cA","inc":0.9632329003909152,"inc_dot":-6.171685646908344e-10,"iode":135,"crc":22496,"tgd2":1.11e-8,"common":{"health_bits":0,"fit_interval":10800,"valid":1,"sid":{"sat":19,"code":12},"toe":{"wn":2098,"tow":270014},"ura":2},"c_rs":-89.0625,"m0":1.9076132837502524,"af2":0,"c_rc":231.78125,"af1":1.1424639e-11,"c_is":-6.193295e-8,"c_ic":-1.44355e-8,"tgd1":1.11e-8,"omega0":-0.7137881420154806,"iodc":135} +{"length":147,"af0":-8.595683611929417e-4,"w":-0.4481241952228889,"dn":3.9401641236512066e-9,"c_us":6.60168e-6,"c_uc":-4.6142377e-6,"ecc":6.332750199362636e-4,"sqrta":5282.624731063843,"preamble":85,"toc":{"wn":2098,"tow":270014},"sender":22963,"msg_type":137,"omegadot":-6.962790028152671e-9,"payload":"Fgy+HgQAMggAAABAMCoAAAEA5fp/MuX6fzIAKLXCAChjQwDUmrYAhN02AADksgAAgDLoZ92aQewwPiTcBIFHTtQ/AAAAwEvARD8AAGDun6K0QNF2psYWw+a/K084KavnPb4H1cEaEa7cv5y4HRYKze4/0Nr8rnXhBb4AAAAAlSpMvwDsfy0AAAAAvh4EADIIh4cA","inc":0.962529223628525,"inc_dot":-6.36812240071619e-10,"iode":135,"crc":61525,"tgd2":1.49e-8,"common":{"health_bits":0,"fit_interval":10800,"valid":1,"sid":{"sat":22,"code":12},"toe":{"wn":2098,"tow":270014},"ura":2},"c_rs":-90.578125,"m0":0.31727779006490864,"af2":0,"c_rc":227.15625,"af1":1.4547474e-11,"c_is":1.4901161e-8,"c_ic":-2.6542693e-8,"tgd1":1.49e-8,"omega0":-0.711314571369906,"iodc":135} +{"message_type":3,"length":34,"data":[87,255,0,31,254,127,247,255,0,7,255,255,215,255,127,240,0,255,255,255,232,206,246,231,239,229,112],"preamble":85,"sender":22963,"msg_type":30583,"payload":"gwK3QS8QA1f/AB/+f/f/AAf//9f/f/AA////6M725+/lcA==","tow":271532471,"crc":13409,"sid":{"sat":131,"code":2}} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgicQi8QAAAAAAE=","wn":2098,"tow":271532700,"crc":43061} +{"length":16,"flags":17,"ns":699999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EZxCLxDkBwMZAxkO/ia5KQ==","day":25,"tow":271532700,"year":2020,"crc":59501,"minutes":25,"month":3,"seconds":14} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.891267188563717,"preamble":85,"sender":22963,"msg_type":522,"payload":"nEIvEBTcq+1l6kJAEGzLF1aSXsAI4SIWKuQxwAECWwQPBg==","lat":37.83123560802065,"tow":271532700,"h_accuracy":513,"crc":30569,"lon":-122.28650469651643} +{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"nEIvEP7///8CAAAA9f////EAywIPAg==","n":-2,"d":-11,"tow":271532700,"h_accuracy":241,"crc":55200,"e":2} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"nEIvEJsAhwBMAEgAcgAG","tow":271532700,"crc":39912,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"nEIvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271532700,"h_accuracy":0,"crc":46915,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"nEIvEP//","tow":271532700,"crc":62315} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MggAQy8QAAAAAAE=","wn":2098,"tow":271532800,"crc":46778} +{"length":16,"flags":17,"ns":799999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EQBDLxDkBwMZAxkO/gevLw==","day":25,"tow":271532800,"year":2020,"crc":19846,"minutes":25,"month":3,"seconds":14} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.901494761190733,"preamble":85,"sender":22963,"msg_type":522,"payload":"AEMvEMPo1e1l6kJA6o8JGFaSXsBc1FRcyOYxwAECWwQPBg==","lat":37.831235627601494,"tow":271532800,"h_accuracy":513,"crc":38433,"lon":-122.28650475438886} +{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"AEMvEAMAAAAFAAAAAAAAAPEAywIPAg==","n":3,"d":0,"tow":271532800,"h_accuracy":241,"crc":5957,"e":5} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"AEMvEJsAhwBMAEgAcgAG","tow":271532800,"crc":18150,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"AEMvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271532800,"h_accuracy":0,"crc":40068,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"AEMvEP//","tow":271532800,"crc":40061} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":237,"states":[{"cn0":212,"mesid":{"sat":5,"code":0}},{"cn0":178,"mesid":{"sat":21,"code":0}},{"cn0":185,"mesid":{"sat":2,"code":0}},{"cn0":162,"mesid":{"sat":31,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":216,"mesid":{"sat":25,"code":0}},{"cn0":206,"mesid":{"sat":12,"code":0}},{"cn0":211,"mesid":{"sat":29,"code":0}},{"cn0":205,"mesid":{"sat":18,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":203,"mesid":{"sat":131,"code":2}},{"cn0":204,"mesid":{"sat":25,"code":1}},{"cn0":187,"mesid":{"sat":12,"code":1}},{"cn0":151,"mesid":{"sat":31,"code":1}},{"cn0":196,"mesid":{"sat":18,"code":1}},{"cn0":193,"mesid":{"sat":29,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":193,"mesid":{"sat":5,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":213,"mesid":{"sat":11,"code":3}},{"cn0":179,"mesid":{"sat":9,"code":3}},{"cn0":173,"mesid":{"sat":20,"code":3}},{"cn0":209,"mesid":{"sat":5,"code":3}},{"cn0":207,"mesid":{"sat":10,"code":3}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":182,"mesid":{"sat":4,"code":3}},{"cn0":203,"mesid":{"sat":21,"code":3}},{"cn0":172,"mesid":{"sat":9,"code":4}},{"cn0":205,"mesid":{"sat":20,"code":4}},{"cn0":65,"mesid":{"sat":10,"code":4}},{"cn0":201,"mesid":{"sat":11,"code":4}},{"cn0":195,"mesid":{"sat":5,"code":4}},{"cn0":188,"mesid":{"sat":0,"code":4}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":174,"mesid":{"sat":4,"code":4}},{"cn0":200,"mesid":{"sat":35,"code":12}},{"cn0":173,"mesid":{"sat":26,"code":12}},{"cn0":160,"mesid":{"sat":34,"code":12}},{"cn0":188,"mesid":{"sat":24,"code":12}},{"cn0":161,"mesid":{"sat":25,"code":12}},{"cn0":185,"mesid":{"sat":12,"code":12}},{"cn0":185,"mesid":{"sat":19,"code":12}},{"cn0":193,"mesid":{"sat":22,"code":12}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":207,"mesid":{"sat":12,"code":13}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":193,"mesid":{"sat":12,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":190,"mesid":{"sat":25,"code":14}},{"cn0":187,"mesid":{"sat":11,"code":14}},{"cn0":202,"mesid":{"sat":24,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":156,"mesid":{"sat":31,"code":14}},{"cn0":149,"mesid":{"sat":33,"code":14}},{"cn0":201,"mesid":{"sat":25,"code":20}},{"cn0":215,"mesid":{"sat":24,"code":20}},{"cn0":194,"mesid":{"sat":11,"code":20}},{"cn0":174,"mesid":{"sat":31,"code":20}},{"cn0":206,"mesid":{"sat":12,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":169,"mesid":{"sat":33,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}}],"preamble":85,"sender":22963,"msg_type":97,"payload":"BQDUFQCyAgC5HwCiAAAAAAAAGQDYDADOHQDTEgDNAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwLLGQHMDAG7HwGXEgHEHQHBAAAABQHBAAAAAAAAAAAAAAAACwPVCQOzFAOtBQPRCgPPAAAABAO2FQPLCQSsFATNCgRBCwTJBQTDAAS8AAAABASuIwzIGgytIgygGAy8GQyhDAy5Ewy5FgzBAAAADA3PAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADA7BAAAAGQ6+Cw67GA7KAAAAHw6cIQ6VGRTJGBTXCxTCHxSuDBTOAAAAIRSpAAAA","crc":44876} +{"length":128,"preamble":85,"sender":22963,"msg_type":151,"payload":"AgAaHQUAKzUMAFEtFQB9GRkAbUYaAKEBHQChNx8AlQ4EAxUWBQMyIQkDXw4KA3EpCwOYJQwDqgMTAyIHFAMMMRUDlSUMDJQpEwwjIBQMDwIWDEMkGAyCIxkMnQ4aDGcVIgyOESMMIi0LDosyDA4PPBgObDYZDpcpHw5VESEOIA8=","crc":34187,"azel":[{"el":29,"az":26,"sid":{"sat":2,"code":0}},{"el":53,"az":43,"sid":{"sat":5,"code":0}},{"el":45,"az":81,"sid":{"sat":12,"code":0}},{"el":25,"az":125,"sid":{"sat":21,"code":0}},{"el":70,"az":109,"sid":{"sat":25,"code":0}},{"el":1,"az":161,"sid":{"sat":26,"code":0}},{"el":55,"az":161,"sid":{"sat":29,"code":0}},{"el":14,"az":149,"sid":{"sat":31,"code":0}},{"el":22,"az":21,"sid":{"sat":4,"code":3}},{"el":33,"az":50,"sid":{"sat":5,"code":3}},{"el":14,"az":95,"sid":{"sat":9,"code":3}},{"el":41,"az":113,"sid":{"sat":10,"code":3}},{"el":37,"az":152,"sid":{"sat":11,"code":3}},{"el":3,"az":170,"sid":{"sat":12,"code":3}},{"el":7,"az":34,"sid":{"sat":19,"code":3}},{"el":49,"az":12,"sid":{"sat":20,"code":3}},{"el":37,"az":149,"sid":{"sat":21,"code":3}},{"el":41,"az":148,"sid":{"sat":12,"code":12}},{"el":32,"az":35,"sid":{"sat":19,"code":12}},{"el":2,"az":15,"sid":{"sat":20,"code":12}},{"el":36,"az":67,"sid":{"sat":22,"code":12}},{"el":35,"az":130,"sid":{"sat":24,"code":12}},{"el":14,"az":157,"sid":{"sat":25,"code":12}},{"el":21,"az":103,"sid":{"sat":26,"code":12}},{"el":17,"az":142,"sid":{"sat":34,"code":12}},{"el":45,"az":34,"sid":{"sat":35,"code":12}},{"el":50,"az":139,"sid":{"sat":11,"code":14}},{"el":60,"az":15,"sid":{"sat":12,"code":14}},{"el":54,"az":108,"sid":{"sat":24,"code":14}},{"el":41,"az":151,"sid":{"sat":25,"code":14}},{"el":17,"az":85,"sid":{"sat":31,"code":14}},{"el":15,"az":32,"sid":{"sat":33,"code":14}}]} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MghkQy8QAAAAAAE=","wn":2098,"tow":271532900,"crc":53872} +{"length":16,"flags":17,"ns":899999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EWRDLxDkBwMZAxkO/uikNQ==","day":25,"tow":271532900,"year":2020,"crc":33448,"minutes":25,"month":3,"seconds":14} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.913825628873305,"preamble":85,"sender":22963,"msg_type":522,"payload":"ZEMvEFbl4O1l6kJAXJpMGFaSXsDqQfZ58OkxwAECWwQPBg==","lat":37.83123563271754,"tow":271532900,"h_accuracy":513,"crc":48802,"lon":-122.28650481682547} +{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"ZEMvEPH////8////KwAAAPEAywIPAg==","n":-15,"d":43,"tow":271532900,"h_accuracy":241,"crc":13782,"e":-4} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"ZEMvEJsAhwBMAEgAcgAG","tow":271532900,"crc":27209,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"ZEMvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271532900,"h_accuracy":0,"crc":33842,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"ZEMvEP//","tow":271532900,"crc":50628} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":51,"text":"GLO L2OF ME 1 [+1248ms] low CN0 too long, dropping","preamble":85,"sender":22963,"msg_type":1025,"payload":"BkdMTyBMMk9GIE1FIDEgWysxMjQ4bXNdIGxvdyBDTjAgdG9vIGxvbmcsIGRyb3BwaW5n","crc":12431,"level":6} +{"length":249,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":182,"i":110567601},"flags":15,"cn0":211,"P":1052015625,"D":{"f":195,"i":-195},"lock":15,"sid":{"sat":5,"code":0}},{"L":{"f":37,"i":121785642},"flags":15,"cn0":178,"P":1158751841,"D":{"f":114,"i":2169},"lock":15,"sid":{"sat":21,"code":0}},{"L":{"f":15,"i":123382942},"flags":15,"cn0":185,"P":1173949258,"D":{"f":214,"i":-2479},"lock":15,"sid":{"sat":2,"code":0}},{"L":{"f":235,"i":128745565},"flags":15,"cn0":162,"P":1224973274,"D":{"f":121,"i":-405},"lock":15,"sid":{"sat":31,"code":0}},{"L":{"f":109,"i":107843667},"flags":15,"cn0":216,"P":1026098311,"D":{"f":200,"i":-1137},"lock":15,"sid":{"sat":25,"code":0}},{"L":{"f":125,"i":114152205},"flags":15,"cn0":206,"P":1086122023,"D":{"f":90,"i":-2974},"lock":15,"sid":{"sat":12,"code":0}},{"L":{"f":76,"i":110734210},"flags":15,"cn0":211,"P":1053600902,"D":{"f":111,"i":1481},"lock":15,"sid":{"sat":29,"code":0}},{"L":{"f":15,"i":84034047},"flags":15,"cn0":204,"P":1026098367,"D":{"f":10,"i":-886},"lock":15,"sid":{"sat":25,"code":1}},{"L":{"f":37,"i":88949802},"flags":15,"cn0":187,"P":1086121944,"D":{"f":97,"i":-2317},"lock":15,"sid":{"sat":12,"code":1}},{"L":{"f":164,"i":100321222},"flags":15,"cn0":152,"P":1224973266,"D":{"f":109,"i":-316},"lock":15,"sid":{"sat":31,"code":1}},{"L":{"f":123,"i":86286399},"flags":15,"cn0":193,"P":1053600813,"D":{"f":14,"i":1155},"lock":15,"sid":{"sat":29,"code":1}},{"L":{"f":11,"i":86156602},"flags":15,"cn0":193,"P":1052015547,"D":{"f":174,"i":-154},"lock":15,"sid":{"sat":5,"code":1}},{"L":{"f":39,"i":112915565},"flags":15,"cn0":213,"P":1056530102,"D":{"f":224,"i":1151},"lock":15,"sid":{"sat":11,"code":3}},{"L":{"f":63,"i":123416854},"flags":15,"cn0":179,"P":1155600380,"D":{"f":186,"i":-4407},"lock":15,"sid":{"sat":9,"code":3}}],"payload":"yEMvEAAAAAAyCEAJfLQ+sSCXBrY9/8PTDw8FAGEmEUUqTUIHJXkIcrIPDxUASgv5RZ6sWgcPUfbWuQ8PAgDamwNJXYCsB+tr/nmiDw8fAIcEKT1TkG0GbY/7yNgPDxkAJ+i8QA3TzQZ9YvRazg8PDACGrMw+gquZBkzJBW/TDw8dAL8EKT3/QQIFD4r8CswPDxkB2Oe8QCpETQUl8/Zhuw8PDAHSmwNJxsf6BaTE/m2YDw8fAS2szD4/oCQFe4MEDsEPDx0Bu3u0PjqlIgULZv+uwQ8PBQG2Xvk+bfS6Bid/BODVDw8LA/wP4UQWMVsHP8nuurMPDwkD","header":{"n_obs":64,"t":{"ns_residual":0,"wn":2098,"tow":271533000}},"crc":36836} +{"length":249,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":166,"i":109793317},"flags":15,"cn0":174,"P":1026594879,"D":{"f":213,"i":-1213},"lock":15,"sid":{"sat":20,"code":3}},{"L":{"f":147,"i":114819112},"flags":15,"cn0":209,"P":1073964187,"D":{"f":98,"i":2187},"lock":15,"sid":{"sat":5,"code":3}},{"L":{"f":61,"i":111660796},"flags":15,"cn0":207,"P":1047363734,"D":{"f":80,"i":-3054},"lock":15,"sid":{"sat":10,"code":3}},{"L":{"f":215,"i":120463337},"flags":15,"cn0":182,"P":1124783646,"D":{"f":128,"i":-1330},"lock":15,"sid":{"sat":4,"code":3}},{"L":{"f":63,"i":113389427},"flags":15,"cn0":202,"P":1059475798,"D":{"f":209,"i":1619},"lock":15,"sid":{"sat":21,"code":3}},{"L":{"f":71,"i":95990896},"flags":15,"cn0":171,"P":1155600484,"D":{"f":173,"i":-3431},"lock":15,"sid":{"sat":9,"code":4}},{"L":{"f":87,"i":85394838},"flags":15,"cn0":205,"P":1026595227,"D":{"f":80,"i":-943},"lock":15,"sid":{"sat":20,"code":4}},{"L":{"f":172,"i":87823227},"flags":15,"cn0":201,"P":1056530405,"D":{"f":130,"i":896},"lock":15,"sid":{"sat":11,"code":4}},{"L":{"f":7,"i":89303758},"flags":15,"cn0":195,"P":1073964405,"D":{"f":127,"i":1701},"lock":15,"sid":{"sat":5,"code":4}},{"L":{"f":118,"i":93693697},"flags":15,"cn0":174,"P":1124783878,"D":{"f":70,"i":-1035},"lock":15,"sid":{"sat":4,"code":4}},{"L":{"f":143,"i":121608034},"flags":15,"cn0":200,"P":1167676946,"D":{"f":155,"i":-1501},"lock":15,"sid":{"sat":35,"code":12}},{"L":{"f":80,"i":129268265},"flags":15,"cn0":173,"P":1241230636,"D":{"f":129,"i":-3009},"lock":15,"sid":{"sat":26,"code":12}},{"L":{"f":96,"i":132903873},"flags":15,"cn0":160,"P":1276139362,"D":{"f":36,"i":2249},"lock":15,"sid":{"sat":34,"code":12}},{"L":{"f":153,"i":125175777},"flags":15,"cn0":188,"P":1201934617,"D":{"f":178,"i":-1311},"lock":15,"sid":{"sat":24,"code":12}}],"payload":"yEMvEAAAAAAyCEE/mDA9JVCLBqZD+9WuDw8UA5tkA0AoANgGk4sIYtEPDwUDloBtPvzOpwY9EvRQzw8PCgMe1gpD6R8uB9fO+oC2Dw8EA1ZRJj9zL8IGP1MG0coPDxUDZBDhRHC0uAVHmfKtqw8PCQSbmTA9lgUXBVdR/FDNDw8UBOVf+T57EzwFrIADgskPDwsEdWUDQM6qUgUHpQZ/ww8PBQQG1wpDAaeVBXb1+0auDw8EBBJWmUVilz8HjyP6m8gPDyMMLK37SSl6tAdQP/SBrQ8PGgxiVxBMwfPrB2DJCCSgDw8iDBkRpEfhB3YHmeH6srwPDxgM","header":{"n_obs":65,"t":{"ns_residual":0,"wn":2098,"tow":271533000}},"crc":52465} +{"length":249,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":28,"i":134647398},"flags":15,"cn0":161,"P":1292880925,"D":{"f":209,"i":1316},"lock":15,"sid":{"sat":25,"code":12}},{"L":{"f":161,"i":121069757},"flags":15,"cn0":184,"P":1162508671,"D":{"f":72,"i":1611},"lock":15,"sid":{"sat":12,"code":12}},{"L":{"f":80,"i":124520444},"flags":15,"cn0":185,"P":1195642065,"D":{"f":122,"i":-299},"lock":15,"sid":{"sat":19,"code":12}},{"L":{"f":193,"i":124659689},"flags":15,"cn0":193,"P":1196979131,"D":{"f":23,"i":2383},"lock":15,"sid":{"sat":22,"code":12}},{"L":{"f":247,"i":93618824},"flags":15,"cn0":208,"P":1162508614,"D":{"f":146,"i":1245},"lock":15,"sid":{"sat":12,"code":13}},{"L":{"f":142,"i":116445404},"flags":15,"cn0":193,"P":1107941160,"D":{"f":201,"i":-1029},"lock":15,"sid":{"sat":12,"code":14}},{"L":{"f":41,"i":132454406},"flags":15,"cn0":189,"P":1260261706,"D":{"f":223,"i":1081},"lock":15,"sid":{"sat":25,"code":14}},{"L":{"f":87,"i":125402850},"flags":15,"cn0":187,"P":1193168390,"D":{"f":43,"i":1045},"lock":15,"sid":{"sat":11,"code":14}},{"L":{"f":13,"i":118446857},"flags":15,"cn0":201,"P":1126984239,"D":{"f":179,"i":-1751},"lock":15,"sid":{"sat":24,"code":14}},{"L":{"f":10,"i":143381258},"flags":15,"cn0":156,"P":1364227273,"D":{"f":241,"i":-3172},"lock":15,"sid":{"sat":31,"code":14}},{"L":{"f":79,"i":144564561},"flags":15,"cn0":149,"P":1375486062,"D":{"f":197,"i":-2140},"lock":15,"sid":{"sat":33,"code":14}},{"L":{"f":230,"i":101491036},"flags":15,"cn0":201,"P":1260261665,"D":{"f":223,"i":828},"lock":15,"sid":{"sat":25,"code":20}},{"L":{"f":239,"i":90758044},"flags":15,"cn0":215,"P":1126984789,"D":{"f":247,"i":-1342},"lock":15,"sid":{"sat":24,"code":20}},{"L":{"f":43,"i":96087876},"flags":15,"cn0":194,"P":1193168195,"D":{"f":69,"i":801},"lock":15,"sid":{"sat":11,"code":20}}],"payload":"yEMvEAAAAAAyCEIdzA9NZo4GCBwkBdGhDw8ZDH95SkW9YDcHoUsGSLgPDwwM0QxER/wHbAdQ1f56uQ8PEwy7c1hH6SduB8FPCRfBDw8WDEZ5SkWIgpQF990EktAPDwwNKNcJQtzQ8AaO+/vJwQ8PDA5KER5LBhjlByk5BN+9Dw8ZDgZOHkfifnkHVxUEK7sPDwsOL2osQwlbDwcNKfmzyQ8PGA7JdFBRCtOLCAqc8/GcDw8fDm5A/FFR4Z0IT6T3xZUPDyEOIREeS1yhDAbmPAPfyQ8PGRRVbCxDnNtoBe/C+vfXDw8YFENNHkdEL7oFKyEDRcIPDwsU","header":{"n_obs":66,"t":{"ns_residual":0,"wn":2098,"tow":271533000}},"crc":63018} +{"length":62,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":223,"i":109863602},"flags":15,"cn0":174,"P":1364227369,"D":{"f":188,"i":-2431},"lock":15,"sid":{"sat":31,"code":20}},{"L":{"f":127,"i":89224431},"flags":15,"cn0":206,"P":1107940998,"D":{"f":164,"i":-789},"lock":15,"sid":{"sat":12,"code":20}},{"L":{"f":204,"i":110770318},"flags":15,"cn0":169,"P":1375486007,"D":{"f":224,"i":-1639},"lock":15,"sid":{"sat":33,"code":20}}],"payload":"yEMvEAAAAAAyCEMpdVBRsmKMBt+B9ryuDw8fFIbWCULvdFEFf+v8pM4PDwwUN0D8UY44mgbMmfngqQ8PIRQ=","header":{"n_obs":67,"t":{"ns_residual":0,"wn":2098,"tow":271533000}},"crc":35905} +{"length":9,"l2ca_bias":0,"preamble":85,"l2p_bias":0,"sender":22963,"msg_type":117,"payload":"/wAAAAAAAAAA","l1ca_bias":0,"mask":255,"crc":49809,"l1p_bias":0} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgjIQy8QAAAAAAE=","wn":2098,"tow":271533000,"crc":32558} +{"length":16,"flags":17,"ns":999999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EchDLxDkBwMZAxkO/smaOw==","day":25,"tow":271533000,"year":2020,"crc":33275,"minutes":25,"month":3,"seconds":14} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.92275684426247,"preamble":85,"sender":22963,"msg_type":522,"payload":"yEMvELvrAu5l6kJAhByFGFaSXsB5ROTKOewxwAECWwQPBg==","lat":37.83123564856165,"tow":271533000,"h_accuracy":513,"crc":45032,"lon":-122.28650486945304} +{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"yEMvEAEAAAAHAAAA+v////EAywIPAg==","n":1,"d":-6,"tow":271533000,"h_accuracy":241,"crc":13023,"e":7} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"yEMvEJsAhwBMAEgAcgAG","tow":271533000,"crc":8120,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"yEMvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271533000,"h_accuracy":0,"crc":44520,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"yEMvEP//","tow":271533000,"crc":12047} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":4,"flags":2147616000,"preamble":85,"sender":22963,"msg_type":65535,"payload":"AAUCgA==","crc":40942} +{"length":24,"z":3890655.0240602265,"preamble":85,"sender":22963,"msg_type":72,"payload":"UO0a3iqORMHK1UJhIkRQwc9nFIPvrk1B","crc":2168,"x":-2694229.735196747,"y":-4264073.519704292} +{"cpu_vint":988,"length":10,"fe_temperature":5641,"preamble":85,"sender":22963,"cpu_vaux":1779,"msg_type":181,"payload":"6BbcA/MGPBUJFg==","dev_vin":5864,"crc":33243,"cpu_temperature":5436} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MggsRC8QAAAAAAE=","wn":2098,"tow":271533100,"crc":25422} +{"length":16,"flags":17,"ns":99999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"ESxELxDkBwMZAxkP/uD1BQ==","day":25,"tow":271533100,"year":2020,"crc":63439,"minutes":25,"month":3,"seconds":15} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.928863281537556,"preamble":85,"sender":22963,"msg_type":522,"payload":"LEQvEJXHKO5l6kJAvKLVGFaSXsC3qOj7ye0xwAECWwQPBg==","lat":37.83123566619103,"tow":271533100,"h_accuracy":513,"crc":28443,"lon":-122.28650494444713} +{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"LEQvEAUAAAD2////8P////EAywIPAg==","n":5,"d":-16,"tow":271533100,"h_accuracy":241,"crc":12421,"e":-10} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"LEQvEJsAhwBMAEgAcgAG","tow":271533100,"crc":5891,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"LEQvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271533100,"h_accuracy":0,"crc":1611,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"LEQvEP//","tow":271533100,"crc":50498} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgiQRC8QAAAAAAE=","wn":2098,"tow":271533200,"crc":40430} +{"length":16,"flags":17,"ns":199999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EZBELxDkBwMZAxkP/sHrCw==","day":25,"tow":271533200,"year":2020,"crc":48368,"minutes":25,"month":3,"seconds":15} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.93775064637113,"preamble":85,"sender":22963,"msg_type":522,"payload":"kEQvEG31Vu5l6kJAy2wkGVaSXsCE9yVtEPAxwAECWwQPBg==","lat":37.831235687694836,"tow":271533200,"h_accuracy":513,"crc":308,"lon":-122.28650501782538} +{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"kEQvEAsAAADy////+P////EAywIPAg==","n":11,"d":-8,"tow":271533200,"h_accuracy":241,"crc":57980,"e":-14} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"kEQvEJsAhwBMAEgAcgAG","tow":271533200,"crc":11384,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"kEQvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271533200,"h_accuracy":0,"crc":37591,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"kEQvEP//","tow":271533200,"crc":13581} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"Mgj0RC8QAAAAAAE=","wn":2098,"tow":271533300,"crc":63780} +{"length":16,"flags":17,"ns":299999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EfRELxDkBwMZAxkP/qLhEQ==","day":25,"tow":271533300,"year":2020,"crc":3796,"minutes":25,"month":3,"seconds":15} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.951878750012618,"preamble":85,"sender":22963,"msg_type":522,"payload":"9EQvEH/Xbu5l6kJAaPlmGVaSXsDCD2VTrvMxwAECWwQPBg==","lat":37.831235698816265,"tow":271533300,"h_accuracy":513,"crc":53557,"lon":-122.28650507980421} +{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"9EQvEAQAAAAHAAAAEgAAAPEAywIPAg==","n":4,"d":18,"tow":271533300,"h_accuracy":241,"crc":19883,"e":7} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"9EQvEJsAhwBMAEgAcgAG","tow":271533300,"crc":215,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"9EQvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271533300,"h_accuracy":0,"crc":35425,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"9EQvEP//","tow":271533300,"crc":27828} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":237,"states":[{"cn0":210,"mesid":{"sat":5,"code":0}},{"cn0":177,"mesid":{"sat":21,"code":0}},{"cn0":184,"mesid":{"sat":2,"code":0}},{"cn0":161,"mesid":{"sat":31,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":215,"mesid":{"sat":25,"code":0}},{"cn0":205,"mesid":{"sat":12,"code":0}},{"cn0":210,"mesid":{"sat":29,"code":0}},{"cn0":203,"mesid":{"sat":18,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":202,"mesid":{"sat":131,"code":2}},{"cn0":204,"mesid":{"sat":25,"code":1}},{"cn0":187,"mesid":{"sat":12,"code":1}},{"cn0":151,"mesid":{"sat":31,"code":1}},{"cn0":196,"mesid":{"sat":18,"code":1}},{"cn0":194,"mesid":{"sat":29,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":193,"mesid":{"sat":5,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":213,"mesid":{"sat":100,"code":3}},{"cn0":179,"mesid":{"sat":98,"code":3}},{"cn0":174,"mesid":{"sat":102,"code":3}},{"cn0":209,"mesid":{"sat":101,"code":3}},{"cn0":207,"mesid":{"sat":93,"code":3}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":182,"mesid":{"sat":106,"code":3}},{"cn0":203,"mesid":{"sat":104,"code":3}},{"cn0":172,"mesid":{"sat":98,"code":4}},{"cn0":205,"mesid":{"sat":102,"code":4}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":201,"mesid":{"sat":100,"code":4}},{"cn0":195,"mesid":{"sat":101,"code":4}},{"cn0":188,"mesid":{"sat":104,"code":4}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":174,"mesid":{"sat":106,"code":4}},{"cn0":200,"mesid":{"sat":35,"code":12}},{"cn0":173,"mesid":{"sat":26,"code":12}},{"cn0":160,"mesid":{"sat":34,"code":12}},{"cn0":188,"mesid":{"sat":24,"code":12}},{"cn0":161,"mesid":{"sat":25,"code":12}},{"cn0":184,"mesid":{"sat":12,"code":12}},{"cn0":185,"mesid":{"sat":19,"code":12}},{"cn0":192,"mesid":{"sat":22,"code":12}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":208,"mesid":{"sat":12,"code":13}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":193,"mesid":{"sat":12,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":190,"mesid":{"sat":25,"code":14}},{"cn0":187,"mesid":{"sat":11,"code":14}},{"cn0":202,"mesid":{"sat":24,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":156,"mesid":{"sat":31,"code":14}},{"cn0":150,"mesid":{"sat":33,"code":14}},{"cn0":201,"mesid":{"sat":25,"code":20}},{"cn0":215,"mesid":{"sat":24,"code":20}},{"cn0":193,"mesid":{"sat":11,"code":20}},{"cn0":175,"mesid":{"sat":31,"code":20}},{"cn0":206,"mesid":{"sat":12,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":169,"mesid":{"sat":33,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}}],"preamble":85,"sender":22963,"msg_type":97,"payload":"BQDSFQCxAgC4HwChAAAAAAAAGQDXDADNHQDSEgDLAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwLKGQHMDAG7HwGXEgHEHQHCAAAABQHBAAAAAAAAAAAAAAAAZAPVYgOzZgOuZQPRXQPPAAAAagO2aAPLYgSsZgTNAAAAZATJZQTDaAS8AAAAagSuIwzIGgytIgygGAy8GQyhDAy4Ewy5FgzAAAAADA3QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADA7BAAAAGQ6+Cw67GA7KAAAAHw6cIQ6WGRTJGBTXCxTBHxSvDBTOAAAAIRSpAAAA","crc":20365} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MghYRS8QAAAAAAE=","wn":2098,"tow":271533400,"crc":5033} +{"length":16,"flags":17,"ns":399999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EVhFLxDkBwMZAxkP/oPXFw==","day":25,"tow":271533400,"year":2020,"crc":32327,"minutes":25,"month":3,"seconds":15} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.959296623327806,"preamble":85,"sender":22963,"msg_type":522,"payload":"WEUvELV9a+5l6kJAjNzDGVaSXsAtW6h2lPUxwAECWwQPBg==","lat":37.831235697255956,"tow":271533400,"h_accuracy":513,"crc":49894,"lon":-122.28650516631222} +{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"WEUvEPf////3/////v////EAywIPAg==","n":-9,"d":-2,"tow":271533400,"h_accuracy":241,"crc":56398,"e":-9} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"WEUvEJsAhwBMAEgAcgAG","tow":271533400,"crc":3655,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"WEUvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271533400,"h_accuracy":0,"crc":30285,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"WEUvEP//","tow":271533400,"crc":11310} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":9,"l2ca_bias":0,"preamble":85,"l2p_bias":0,"sender":22963,"msg_type":117,"payload":"/wAAAAAAAAAA","l1ca_bias":0,"mask":255,"crc":49809,"l1p_bias":0} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"Mgi8RS8QAAAAAAE=","wn":2098,"tow":271533500,"crc":51409} +{"length":16,"flags":17,"ns":499999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EbxFLxDkBwMZAxkP/mTNHQ==","day":25,"tow":271533500,"year":2020,"crc":28329,"minutes":25,"month":3,"seconds":15} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.96692293888981,"preamble":85,"sender":22963,"msg_type":522,"payload":"vEUvEM+kVO5l6kJAjh0TGlaSXsCwSABDiPcxwAECWwQPBg==","lat":37.83123568661687,"tow":271533500,"h_accuracy":513,"crc":21420,"lon":-122.2865052401232} +{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"vEUvEPH///8FAAAABwAAAPEAywIPAg==","n":-15,"d":7,"tow":271533500,"h_accuracy":241,"crc":40205,"e":5} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"vEUvEJsAhwBMAEgAcgAG","tow":271533500,"crc":30458,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"vEUvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271533500,"h_accuracy":0,"crc":54382,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"vEUvEP//","tow":271533500,"crc":41399} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgggRi8QAAAAAAE=","wn":2098,"tow":271533600,"crc":23032} +{"length":16,"flags":17,"ns":599999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"ESBGLxDkBwMZAxkP/kXDIw==","day":25,"tow":271533600,"year":2020,"crc":1,"minutes":25,"month":3,"seconds":15} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.970811815803923,"preamble":85,"sender":22963,"msg_type":522,"payload":"IEYvEI9tPu5l6kJAMJ5hGlaSXsC/cocfh/gxwAECWwQPBg==","lat":37.831235676271824,"tow":271533600,"h_accuracy":513,"crc":9873,"lon":-122.28650531323433} +{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"IEYvEPz///8HAAAA//////EAywIPAg==","n":-4,"d":-1,"tow":271533600,"h_accuracy":241,"crc":50881,"e":7} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"IEYvEJsAhwBMAEgAcgAG","tow":271533600,"crc":23862,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"IEYvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271533600,"h_accuracy":0,"crc":17508,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"IEYvEP//","tow":271533600,"crc":35362} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgiERi8QAAAAAAE=","wn":2098,"tow":271533700,"crc":56665} +{"length":16,"flags":17,"ns":699999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EYRGLxDkBwMZAxkP/ia5KQ==","day":25,"tow":271533700,"year":2020,"crc":54870,"minutes":25,"month":3,"seconds":15} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.971254468249406,"preamble":85,"sender":22963,"msg_type":522,"payload":"hEYvEP0fT+5l6kJA7la+GlaSXsCeOQEipPgxwAECWwQPBg==","lat":37.831235684046966,"tow":271533700,"h_accuracy":513,"crc":42562,"lon":-122.2865053995881} +{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"hEYvEBAAAAD5////1/////EAywIPAg==","n":16,"d":-41,"tow":271533700,"h_accuracy":241,"crc":18720,"e":-7} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"hEYvEJsAhwBMAEgAcgAG","tow":271533700,"crc":3970,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"hEYvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271533700,"h_accuracy":0,"crc":13085,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"hEYvEP//","tow":271533700,"crc":28075} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"message_type":4,"length":34,"data":[87,255,127,255,254,127,240,0,127,255,253,255,239,252,127,247,255,127,247,255,238,94,110,170,175,255,240],"preamble":85,"sender":22963,"msg_type":30583,"payload":"gwKiRS8QBFf/f//+f/AAf//9/+/8f/f/f/f/7l5uqq//8A==","tow":271533474,"crc":53755,"sid":{"sat":131,"code":2}} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgjoRi8QAAAAAAE=","wn":2098,"tow":271533800,"crc":36972} +{"length":16,"flags":17,"ns":799999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EehGLxDkBwMZAxkP/gevLw==","day":25,"tow":271533800,"year":2020,"crc":42329,"minutes":25,"month":3,"seconds":15} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.98243622641579,"preamble":85,"sender":22963,"msg_type":522,"payload":"6EYvEO9uB+5l6kJAFDH9GlaSXsCJ3MbwgPsxwAECWwQPBg==","lat":37.831235650662954,"tow":271533800,"h_accuracy":513,"crc":35490,"lon":-122.28650545812371} +{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"6EYvEPn///8CAAAANgAAAPEAywIPAg==","n":-7,"d":54,"tow":271533800,"h_accuracy":241,"crc":32732,"e":2} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"6EYvEJsAhwBMAEgAcgAG","tow":271533800,"crc":1128,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"6EYvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271533800,"h_accuracy":0,"crc":29960,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"6EYvEP//","tow":271533800,"crc":14672} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":237,"states":[{"cn0":209,"mesid":{"sat":5,"code":0}},{"cn0":176,"mesid":{"sat":21,"code":0}},{"cn0":183,"mesid":{"sat":2,"code":0}},{"cn0":160,"mesid":{"sat":31,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":214,"mesid":{"sat":25,"code":0}},{"cn0":203,"mesid":{"sat":12,"code":0}},{"cn0":209,"mesid":{"sat":29,"code":0}},{"cn0":203,"mesid":{"sat":18,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":201,"mesid":{"sat":131,"code":2}},{"cn0":204,"mesid":{"sat":25,"code":1}},{"cn0":188,"mesid":{"sat":12,"code":1}},{"cn0":151,"mesid":{"sat":31,"code":1}},{"cn0":196,"mesid":{"sat":18,"code":1}},{"cn0":194,"mesid":{"sat":29,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":193,"mesid":{"sat":5,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":213,"mesid":{"sat":11,"code":3}},{"cn0":179,"mesid":{"sat":9,"code":3}},{"cn0":174,"mesid":{"sat":20,"code":3}},{"cn0":209,"mesid":{"sat":5,"code":3}},{"cn0":207,"mesid":{"sat":10,"code":3}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":181,"mesid":{"sat":4,"code":3}},{"cn0":203,"mesid":{"sat":21,"code":3}},{"cn0":172,"mesid":{"sat":9,"code":4}},{"cn0":205,"mesid":{"sat":20,"code":4}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":200,"mesid":{"sat":11,"code":4}},{"cn0":195,"mesid":{"sat":5,"code":4}},{"cn0":188,"mesid":{"sat":0,"code":4}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":173,"mesid":{"sat":4,"code":4}},{"cn0":200,"mesid":{"sat":35,"code":12}},{"cn0":172,"mesid":{"sat":26,"code":12}},{"cn0":161,"mesid":{"sat":34,"code":12}},{"cn0":188,"mesid":{"sat":24,"code":12}},{"cn0":161,"mesid":{"sat":25,"code":12}},{"cn0":185,"mesid":{"sat":12,"code":12}},{"cn0":185,"mesid":{"sat":19,"code":12}},{"cn0":193,"mesid":{"sat":22,"code":12}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":208,"mesid":{"sat":12,"code":13}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":193,"mesid":{"sat":12,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":190,"mesid":{"sat":25,"code":14}},{"cn0":188,"mesid":{"sat":11,"code":14}},{"cn0":202,"mesid":{"sat":24,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":157,"mesid":{"sat":31,"code":14}},{"cn0":150,"mesid":{"sat":33,"code":14}},{"cn0":201,"mesid":{"sat":25,"code":20}},{"cn0":215,"mesid":{"sat":24,"code":20}},{"cn0":194,"mesid":{"sat":11,"code":20}},{"cn0":175,"mesid":{"sat":31,"code":20}},{"cn0":206,"mesid":{"sat":12,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":169,"mesid":{"sat":33,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}}],"preamble":85,"sender":22963,"msg_type":97,"payload":"BQDRFQCwAgC3HwCgAAAAAAAAGQDWDADLHQDREgDLAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwLJGQHMDAG8HwGXEgHEHQHCAAAABQHBAAAAAAAAAAAAAAAACwPVCQOzFAOuBQPRCgPPAAAABAO1FQPLCQSsFATNAAAACwTIBQTDAAS8AAAABAStIwzIGgysIgyhGAy8GQyhDAy5Ewy5FgzBAAAADA3QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADA7BAAAAGQ6+Cw68GA7KAAAAHw6dIQ6WGRTJGBTXCxTCHxSvDBTOAAAAIRSpAAAA","crc":10447} +{"length":128,"preamble":85,"sender":22963,"msg_type":151,"payload":"AgAaHQUAKzUMAFEtFQB9GRkAbUYaAKEBHQChNx8AlQ4EAxUWBQMyIQkDXw4KA3EpCwOYJQwDqgMTAyIHFAMMMRUDlSUMDJQpEwwjIBQMDwIWDEMkGAyCIxkMnQ4aDGcVIgyOESMMIi0LDosyDA4PPBgObDYZDpcpHw5VESEOIA8=","crc":34187,"azel":[{"el":29,"az":26,"sid":{"sat":2,"code":0}},{"el":53,"az":43,"sid":{"sat":5,"code":0}},{"el":45,"az":81,"sid":{"sat":12,"code":0}},{"el":25,"az":125,"sid":{"sat":21,"code":0}},{"el":70,"az":109,"sid":{"sat":25,"code":0}},{"el":1,"az":161,"sid":{"sat":26,"code":0}},{"el":55,"az":161,"sid":{"sat":29,"code":0}},{"el":14,"az":149,"sid":{"sat":31,"code":0}},{"el":22,"az":21,"sid":{"sat":4,"code":3}},{"el":33,"az":50,"sid":{"sat":5,"code":3}},{"el":14,"az":95,"sid":{"sat":9,"code":3}},{"el":41,"az":113,"sid":{"sat":10,"code":3}},{"el":37,"az":152,"sid":{"sat":11,"code":3}},{"el":3,"az":170,"sid":{"sat":12,"code":3}},{"el":7,"az":34,"sid":{"sat":19,"code":3}},{"el":49,"az":12,"sid":{"sat":20,"code":3}},{"el":37,"az":149,"sid":{"sat":21,"code":3}},{"el":41,"az":148,"sid":{"sat":12,"code":12}},{"el":32,"az":35,"sid":{"sat":19,"code":12}},{"el":2,"az":15,"sid":{"sat":20,"code":12}},{"el":36,"az":67,"sid":{"sat":22,"code":12}},{"el":35,"az":130,"sid":{"sat":24,"code":12}},{"el":14,"az":157,"sid":{"sat":25,"code":12}},{"el":21,"az":103,"sid":{"sat":26,"code":12}},{"el":17,"az":142,"sid":{"sat":34,"code":12}},{"el":45,"az":34,"sid":{"sat":35,"code":12}},{"el":50,"az":139,"sid":{"sat":11,"code":14}},{"el":60,"az":15,"sid":{"sat":12,"code":14}},{"el":54,"az":108,"sid":{"sat":24,"code":14}},{"el":41,"az":151,"sid":{"sat":25,"code":14}},{"el":17,"az":85,"sid":{"sat":31,"code":14}},{"el":15,"az":32,"sid":{"sat":33,"code":14}}]} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MghMRy8QAAAAAAE=","wn":2098,"tow":271533900,"crc":21278} +{"length":16,"flags":17,"ns":899999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EUxHLxDkBwMZAxkP/uikNQ==","day":25,"tow":271533900,"year":2020,"crc":28429,"minutes":25,"month":3,"seconds":15} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.99290707820085,"preamble":85,"sender":22963,"msg_type":522,"payload":"TEcvEA9myO1l6kJAYAQ9G1aSXsDu1oQoL/4xwAECWwQPBg==","lat":37.83123562131015,"tow":271533900,"h_accuracy":513,"crc":55639,"lon":-122.28650551756573} +{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"TEcvEPz////+////FQAAAPEAywIPAg==","n":-4,"d":21,"tow":271533900,"h_accuracy":241,"crc":62775,"e":-2} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"TEcvEJsAhwBMAEgAcgAG","tow":271533900,"crc":11709,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"TEcvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271533900,"h_accuracy":0,"crc":55175,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"TEcvEP//","tow":271533900,"crc":29832} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":249,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":209,"i":110567796},"flags":15,"cn0":209,"P":1052017478,"D":{"f":99,"i":-194},"lock":15,"sid":{"sat":5,"code":0}},{"L":{"f":212,"i":121783472},"flags":15,"cn0":176,"P":1158731193,"D":{"f":136,"i":2170},"lock":15,"sid":{"sat":21,"code":0}},{"L":{"f":53,"i":123385421},"flags":15,"cn0":183,"P":1173972854,"D":{"f":31,"i":-2479},"lock":15,"sid":{"sat":2,"code":0}},{"L":{"f":139,"i":128745970},"flags":15,"cn0":160,"P":1224977138,"D":{"f":103,"i":-405},"lock":15,"sid":{"sat":31,"code":0}},{"L":{"f":1,"i":107844805},"flags":15,"cn0":214,"P":1026109127,"D":{"f":228,"i":-1137},"lock":15,"sid":{"sat":25,"code":0}},{"L":{"f":115,"i":114155179},"flags":15,"cn0":204,"P":1086150315,"D":{"f":188,"i":-2973},"lock":15,"sid":{"sat":12,"code":0}},{"L":{"f":78,"i":110732729},"flags":15,"cn0":209,"P":1053586806,"D":{"f":72,"i":1482},"lock":15,"sid":{"sat":29,"code":0}},{"L":{"f":124,"i":84034933},"flags":15,"cn0":204,"P":1026109184,"D":{"f":240,"i":-887},"lock":15,"sid":{"sat":25,"code":1}},{"L":{"f":129,"i":88952119},"flags":15,"cn0":187,"P":1086150237,"D":{"f":252,"i":-2316},"lock":15,"sid":{"sat":12,"code":1}},{"L":{"f":233,"i":100321537},"flags":15,"cn0":151,"P":1224977089,"D":{"f":19,"i":-315},"lock":15,"sid":{"sat":31,"code":1}},{"L":{"f":117,"i":86285245},"flags":15,"cn0":194,"P":1053586725,"D":{"f":184,"i":1153},"lock":15,"sid":{"sat":29,"code":1}},{"L":{"f":20,"i":86156754},"flags":15,"cn0":193,"P":1052017403,"D":{"f":58,"i":-153},"lock":15,"sid":{"sat":5,"code":1}},{"L":{"f":5,"i":112914414},"flags":15,"cn0":213,"P":1056519323,"D":{"f":75,"i":1152},"lock":15,"sid":{"sat":11,"code":3}},{"L":{"f":62,"i":123421262},"flags":15,"cn0":179,"P":1155641653,"D":{"f":159,"i":-4408},"lock":15,"sid":{"sat":9,"code":3}}],"payload":"sEcvEAAAAAAyCEBGg7Q+dCGXBtE+/2PRDw8FALnVEEWwREIH1HoIiLAPDxUAdmf5RU22Wgc1UfYftw8PAgDyqgNJ8oGsB4tr/megDw8fAMcuKT3FlG0GAY/75NYPDxkAq1a9QKvezQZzY/S8zA8PDAB2dcw+uaWZBk7KBUjRDw8dAAAvKT11RQIFfIn88MwPDxkBXVa9QDdNTQWB9Pb8uw8PDAHBqgNJAcn6BenF/hOXDw8fASV1zD69myQFdYEEuMIPDx0B+4K0PtKlIgUUZ/86wQ8PBQGbNPk+7u+6BgWABEvVDw8LAzWx4UROQlsHPsjun7MPDwkD","header":{"n_obs":64,"t":{"ns_residual":0,"wn":2098,"tow":271534000}},"crc":33625} +{"length":249,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":106,"i":109794530},"flags":15,"cn0":173,"P":1026606243,"D":{"f":87,"i":-1211},"lock":15,"sid":{"sat":20,"code":3}},{"L":{"f":49,"i":114816926},"flags":15,"cn0":209,"P":1073943718,"D":{"f":252,"i":2186},"lock":15,"sid":{"sat":5,"code":3}},{"L":{"f":85,"i":111663850},"flags":15,"cn0":207,"P":1047392383,"D":{"f":63,"i":-3053},"lock":15,"sid":{"sat":10,"code":3}},{"L":{"f":243,"i":120464667},"flags":15,"cn0":181,"P":1124796043,"D":{"f":143,"i":-1330},"lock":15,"sid":{"sat":4,"code":3}},{"L":{"f":109,"i":113387807},"flags":15,"cn0":202,"P":1059460655,"D":{"f":138,"i":1621},"lock":15,"sid":{"sat":21,"code":3}},{"L":{"f":188,"i":95994324},"flags":15,"cn0":172,"P":1155641737,"D":{"f":198,"i":-3427},"lock":15,"sid":{"sat":9,"code":4}},{"L":{"f":155,"i":85395781},"flags":15,"cn0":204,"P":1026606556,"D":{"f":72,"i":-943},"lock":15,"sid":{"sat":20,"code":4}},{"L":{"f":88,"i":87822332},"flags":15,"cn0":200,"P":1056519636,"D":{"f":31,"i":897},"lock":15,"sid":{"sat":11,"code":4}},{"L":{"f":129,"i":89302057},"flags":15,"cn0":195,"P":1073943960,"D":{"f":254,"i":1700},"lock":15,"sid":{"sat":5,"code":4}},{"L":{"f":246,"i":93694731},"flags":15,"cn0":173,"P":1124796228,"D":{"f":176,"i":-1034},"lock":15,"sid":{"sat":4,"code":4}},{"L":{"f":161,"i":121609535},"flags":15,"cn0":200,"P":1167691357,"D":{"f":29,"i":-1501},"lock":15,"sid":{"sat":35,"code":12}},{"L":{"f":18,"i":129271274},"flags":15,"cn0":173,"P":1241259508,"D":{"f":58,"i":-3007},"lock":15,"sid":{"sat":26,"code":12}},{"L":{"f":234,"i":132901624},"flags":15,"cn0":160,"P":1276117806,"D":{"f":96,"i":2250},"lock":15,"sid":{"sat":34,"code":12}},{"L":{"f":220,"i":125177087},"flags":15,"cn0":188,"P":1201947193,"D":{"f":254,"i":-1311},"lock":15,"sid":{"sat":24,"code":12}}],"payload":"sEcvEAAAAAAyCEGjxDA94lSLBmpF+1etDw8UA6YUA0Ce99cGMYoI/NEPDwUDf/BtPurapwZVE/Q/zw8PCgOLBgtDGyUuB/PO+o+1Dw8EAy8WJj8fKcIGbVUGisoPDxUDibHhRNTBuAW8nfLGrA8PCQTcxTA9RQkXBZtR/EjMDw8UBNQ1+T78DzwFWIEDH8gPDwsEmBUDQCmkUgWBpAb+ww8PBQREBwtDC6uVBfb2+7CtDw8EBF2OmUU/nT8HoSP6HcgPDyMM9B38SeqFtAcSQfQ6rQ8PGgwuAxBM+OrrB+rKCGCgDw8iDDlCpEf/DHYH3OH6/rwPDxgM","header":{"n_obs":65,"t":{"ns_residual":0,"wn":2098,"tow":271534000}},"crc":53857} +{"length":249,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":97,"i":134646081},"flags":15,"cn0":161,"P":1292868264,"D":{"f":53,"i":1317},"lock":15,"sid":{"sat":25,"code":12}},{"L":{"f":13,"i":121068147},"flags":15,"cn0":184,"P":1162493195,"D":{"f":61,"i":1612},"lock":15,"sid":{"sat":12,"code":12}},{"L":{"f":34,"i":124520743},"flags":15,"cn0":185,"P":1195644936,"D":{"f":157,"i":-299},"lock":15,"sid":{"sat":19,"code":12}},{"L":{"f":161,"i":124657307},"flags":15,"cn0":193,"P":1196956259,"D":{"f":23,"i":2383},"lock":15,"sid":{"sat":22,"code":12}},{"L":{"f":145,"i":93617579},"flags":15,"cn0":208,"P":1162493154,"D":{"f":13,"i":1246},"lock":15,"sid":{"sat":12,"code":13}},{"L":{"f":221,"i":116446432},"flags":15,"cn0":193,"P":1107950938,"D":{"f":38,"i":-1027},"lock":15,"sid":{"sat":12,"code":14}},{"L":{"f":122,"i":132453325},"flags":15,"cn0":190,"P":1260251414,"D":{"f":5,"i":1080},"lock":15,"sid":{"sat":25,"code":14}},{"L":{"f":110,"i":125401805},"flags":15,"cn0":187,"P":1193158455,"D":{"f":123,"i":1045},"lock":15,"sid":{"sat":11,"code":14}},{"L":{"f":0,"i":118448608},"flags":15,"cn0":202,"P":1127000898,"D":{"f":245,"i":-1751},"lock":15,"sid":{"sat":24,"code":14}},{"L":{"f":198,"i":143384430},"flags":15,"cn0":156,"P":1364257441,"D":{"f":225,"i":-3171},"lock":15,"sid":{"sat":31,"code":14}},{"L":{"f":10,"i":144566701},"flags":15,"cn0":150,"P":1375506415,"D":{"f":124,"i":-2138},"lock":15,"sid":{"sat":33,"code":14}},{"L":{"f":218,"i":101490208},"flags":15,"cn0":201,"P":1260251383,"D":{"f":25,"i":828},"lock":15,"sid":{"sat":25,"code":20}},{"L":{"f":146,"i":90759386},"flags":15,"cn0":215,"P":1127001447,"D":{"f":146,"i":-1342},"lock":15,"sid":{"sat":24,"code":20}},{"L":{"f":132,"i":96087075},"flags":15,"cn0":194,"P":1193158255,"D":{"f":204,"i":801},"lock":15,"sid":{"sat":11,"code":20}}],"payload":"sEcvEAAAAAAyCEKomg9NQYkGCGElBTWhDw8ZDAs9SkVzWjcHDUwGPbgPDwwMCBhERycJbAci1f6duQ8PEwxjGlhHmx5uB6FPCRfBDw8WDOI8SkWrfZQFkd4EDdAPDwwNWv0JQuDU8Abd/fsmwQ8PDA4W6R1LzRPlB3o4BAW+Dw8ZDjcnHkfNenkHbhUEe7sPDwsOQqssQ+BhDwcAKfn1yg8PGA6h6lBRbt+LCMad8+GcDw8fDu+P/FGt6Z0ICqb3fJYPDyEO9+gdSyCeDAbaPAMZyQ8PGRRnrSxD2uBoBZLC+pLXDw8YFG8mHkcjLLoFhCEDzMIPDwsU","header":{"n_obs":66,"t":{"ns_residual":0,"wn":2098,"tow":271534000}},"crc":28311} +{"length":62,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":237,"i":109866033},"flags":15,"cn0":174,"P":1364257556,"D":{"f":95,"i":-2429},"lock":15,"sid":{"sat":31,"code":20}},{"L":{"f":109,"i":89225219},"flags":15,"cn0":206,"P":1107950782,"D":{"f":191,"i":-787},"lock":15,"sid":{"sat":12,"code":20}},{"L":{"f":74,"i":110771958},"flags":15,"cn0":169,"P":1375506362,"D":{"f":141,"i":-1640},"lock":15,"sid":{"sat":33,"code":20}}],"payload":"sEcvEAAAAAAyCEMU61BRMWyMBu2D9l+uDw8fFL78CUIDeFEFbe38v84PDwwUuo/8UfY+mgZKmPmNqQ8PIRQ=","header":{"n_obs":67,"t":{"ns_residual":0,"wn":2098,"tow":271534000}},"crc":18208} +{"length":9,"l2ca_bias":0,"preamble":85,"l2p_bias":0,"sender":22963,"msg_type":117,"payload":"/wAAAAAAAAAA","l1ca_bias":0,"mask":255,"crc":49809,"l1p_bias":0} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgiwRy8QAAAAAAE=","wn":2098,"tow":271534000,"crc":62055} +{"length":16,"flags":17,"ns":999999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EbBHLxDkBwMZAxkP/smaOw==","day":25,"tow":271534000,"year":2020,"crc":2269,"minutes":25,"month":3,"seconds":15} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-18.000290034867643,"preamble":85,"sender":22963,"msg_type":522,"payload":"sEcvECm/mO1l6kJAOVt8G1aSXsBvRfoBEwAywAECWwQPBg==","lat":37.83123559912048,"tow":271534000,"h_accuracy":513,"crc":14448,"lon":-122.286505576555} +{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"sEcvEP3////0////6P////EAywIPAg==","n":-3,"d":-24,"tow":271534000,"h_accuracy":241,"crc":22500,"e":-12} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"sEcvEJsAhwBMAEgAcgAG","tow":271534000,"crc":15567,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"sEcvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271534000,"h_accuracy":0,"crc":38465,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"sEcvEP//","tow":271534000,"crc":61143} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":4,"flags":2147616000,"preamble":85,"sender":22963,"msg_type":65535,"payload":"AAUCgA==","crc":40942} +{"length":24,"z":3890655.0240602265,"preamble":85,"sender":22963,"msg_type":72,"payload":"UO0a3iqORMHK1UJhIkRQwc9nFIPvrk1B","crc":2168,"x":-2694229.735196747,"y":-4264073.519704292} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"bWFpbgAAAAAAAAAAAAAAAAAAAAAAAAx1AAA=","name":"main\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":47991,"stack_free":29964,"cpu":0} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"aWRsZQAAAAAAAAAAAAAAAAAAAABYAXwAAAA=","name":"idle\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":37847,"stack_free":124,"cpu":344} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"cnBtc2cAAAAAAAAAAAAAAAAAAAABAPwNAAA=","name":"rpmsg\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":54377,"stack_free":3580,"cpu":1} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"U0JQAAAAAAAAAAAAAAAAAAAAAAAAAPz/AAA=","name":"SBP\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":51784,"stack_free":65532,"cpu":0} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"TkFQAAAAAAAAAAAAAAAAAAAAAAAAAASAAAA=","name":"NAP\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":33651,"stack_free":32772,"cpu":0} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"bWFuYWdlIFBWAAAAAAAAAAAAAAAAACQEAAA=","name":"manage PV\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":29877,"stack_free":1060,"cpu":0} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"SU1VAAAAAAAAAAAAAAAAAAAAAAAAAPQHAAA=","name":"IMU\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":14252,"stack_free":2036,"cpu":0} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"SU1VIGF1eAAAAAAAAAAAAAAAAAAAAEwIAAA=","name":"IMU aux\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":18976,"stack_free":2124,"cpu":0} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"bmRiAAAAAAAAAAAAAAAAAAAAAAAAAFAMAAA=","name":"ndb\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":26120,"stack_free":3152,"cpu":0} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"TkFQIFRyYWNraW5nAAAAAAAAAAAjAdR3AAA=","name":"NAP Tracking\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":58848,"stack_free":30676,"cpu":291} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"ZGVjb2RlAAAAAAAAAAAAAAAAAAAIANQGAAA=","name":"decode\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":40082,"stack_free":1748,"cpu":8} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"bWFuYWdlIGFjcQAAAAAAAAAAAAC/AKR3AAA=","name":"manage acq\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":54737,"stack_free":30628,"cpu":191} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"c3lzdGVtIG1vbml0b3IAAAAAAAAAACwGAAA=","name":"system monitor\u0000\u0000\u0000\u0000\u0000\u0000","crc":58531,"stack_free":1580,"cpu":0} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"V2F0Y2hkb2cAAAAAAAAAAAAAAAAAAOQDAAA=","name":"Watchdog\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":44438,"stack_free":996,"cpu":0} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"c3RhcmxpbmcAAAAAAAAAAAAAAACXAPz/AAA=","name":"starling\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":46399,"stack_free":65532,"cpu":151} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"bWVfY2FsY19wdnQAAAAAAAAAAAAJAIwjAAA=","name":"me_calc_pvt\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":57561,"stack_free":9100,"cpu":9} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"UFBTAAAAAAAAAAAAAAAAAAAAAAAAAEgHAAA=","name":"PPS\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":38576,"stack_free":1864,"cpu":0} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"c3BlY3RydW0gYW5hbHl6ZXIAAAAAANQPAAA=","name":"spectrum analyzer\u0000\u0000\u0000","crc":50933,"stack_free":4052,"cpu":0} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MggUSC8QAAAAAAE=","wn":2098,"tow":271534100,"crc":44804} +{"length":16,"flags":17,"ns":99999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"ERRILxDkBwMZAxkQ/uD1BQ==","day":25,"tow":271534100,"year":2020,"crc":29817,"minutes":25,"month":3,"seconds":16} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-18.014385834061496,"preamble":85,"sender":22963,"msg_type":522,"payload":"FEgvEC5WaO1l6kJADcisG1aSXsDf0T7KrgMywAECWwQPBg==","lat":37.83123557657778,"tow":271534100,"h_accuracy":513,"crc":6502,"lon":-122.2865056216544} +{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"FEgvEAAAAAAFAAAAGwAAAPEAywIPAg==","n":0,"d":27,"tow":271534100,"h_accuracy":241,"crc":50031,"e":5} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"FEgvEJsAhwBMAEgAcgAG","tow":271534100,"crc":62742,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"FEgvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271534100,"h_accuracy":0,"crc":10190,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"FEgvEP//","tow":271534100,"crc":27815} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"Mgh4SC8QAAAAAAE=","wn":2098,"tow":271534200,"crc":57905} +{"length":16,"flags":17,"ns":199999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EXhILxDkBwMZAxkQ/sHrCw==","day":25,"tow":271534200,"year":2020,"crc":4055,"minutes":25,"month":3,"seconds":16} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-18.024862964142468,"preamble":85,"sender":22963,"msg_type":522,"payload":"eEgvEATAP+1l6kJAaGfmG1aSXsCf31FrXQYywAECWwQPBg==","lat":37.831235557678184,"tow":271534200,"h_accuracy":513,"crc":49970,"lon":-122.28650567531952} +{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"eEgvEAcAAAD+////9v////EAywIPAg==","n":7,"d":-10,"tow":271534200,"h_accuracy":241,"crc":16258,"e":-2} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"eEgvEJsAhwBMAEgAcgAG","tow":271534200,"crc":65276,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"eEgvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271534200,"h_accuracy":0,"crc":25051,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"eEgvEP//","tow":271534200,"crc":14428} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgjcSC8QAAAAAAE=","wn":2098,"tow":271534300,"crc":26256} +{"length":16,"flags":17,"ns":299999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EdxILxDkBwMZAxkQ/qLhEQ==","day":25,"tow":271534300,"year":2020,"crc":50152,"minutes":25,"month":3,"seconds":16} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-18.036257937859393,"preamble":85,"sender":22963,"msg_type":522,"payload":"3EgvEOOjAu1l6kJAq2QEHFaSXsCVU0EzSAkywAECWwQPBg==","lat":37.83123552922168,"tow":271534300,"h_accuracy":513,"crc":14337,"lon":-122.28650570324923} +{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"3EgvEPr///8DAAAACQAAAPEAywIPAg==","n":-6,"d":9,"tow":271534300,"h_accuracy":241,"crc":40015,"e":3} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"3EgvEJsAhwBMAEgAcgAG","tow":271534300,"crc":44104,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"3EgvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271534300,"h_accuracy":0,"crc":5794,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"3EgvEP//","tow":271534300,"crc":57301} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":237,"states":[{"cn0":209,"mesid":{"sat":5,"code":0}},{"cn0":175,"mesid":{"sat":21,"code":0}},{"cn0":182,"mesid":{"sat":2,"code":0}},{"cn0":160,"mesid":{"sat":31,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":213,"mesid":{"sat":25,"code":0}},{"cn0":203,"mesid":{"sat":12,"code":0}},{"cn0":208,"mesid":{"sat":29,"code":0}},{"cn0":202,"mesid":{"sat":18,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":200,"mesid":{"sat":131,"code":2}},{"cn0":204,"mesid":{"sat":25,"code":1}},{"cn0":187,"mesid":{"sat":12,"code":1}},{"cn0":151,"mesid":{"sat":31,"code":1}},{"cn0":196,"mesid":{"sat":18,"code":1}},{"cn0":194,"mesid":{"sat":29,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":193,"mesid":{"sat":5,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":212,"mesid":{"sat":100,"code":3}},{"cn0":178,"mesid":{"sat":98,"code":3}},{"cn0":173,"mesid":{"sat":102,"code":3}},{"cn0":208,"mesid":{"sat":101,"code":3}},{"cn0":206,"mesid":{"sat":93,"code":3}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":180,"mesid":{"sat":106,"code":3}},{"cn0":202,"mesid":{"sat":104,"code":3}},{"cn0":172,"mesid":{"sat":98,"code":4}},{"cn0":204,"mesid":{"sat":102,"code":4}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":200,"mesid":{"sat":100,"code":4}},{"cn0":194,"mesid":{"sat":101,"code":4}},{"cn0":188,"mesid":{"sat":104,"code":4}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":173,"mesid":{"sat":106,"code":4}},{"cn0":200,"mesid":{"sat":35,"code":12}},{"cn0":172,"mesid":{"sat":26,"code":12}},{"cn0":160,"mesid":{"sat":34,"code":12}},{"cn0":188,"mesid":{"sat":24,"code":12}},{"cn0":160,"mesid":{"sat":25,"code":12}},{"cn0":184,"mesid":{"sat":12,"code":12}},{"cn0":184,"mesid":{"sat":19,"code":12}},{"cn0":192,"mesid":{"sat":22,"code":12}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":208,"mesid":{"sat":12,"code":13}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":193,"mesid":{"sat":12,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":190,"mesid":{"sat":25,"code":14}},{"cn0":187,"mesid":{"sat":11,"code":14}},{"cn0":202,"mesid":{"sat":24,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":157,"mesid":{"sat":31,"code":14}},{"cn0":149,"mesid":{"sat":33,"code":14}},{"cn0":201,"mesid":{"sat":25,"code":20}},{"cn0":215,"mesid":{"sat":24,"code":20}},{"cn0":194,"mesid":{"sat":11,"code":20}},{"cn0":174,"mesid":{"sat":31,"code":20}},{"cn0":206,"mesid":{"sat":12,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":169,"mesid":{"sat":33,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}}],"preamble":85,"sender":22963,"msg_type":97,"payload":"BQDRFQCvAgC2HwCgAAAAAAAAGQDVDADLHQDQEgDKAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwLIGQHMDAG7HwGXEgHEHQHCAAAABQHBAAAAAAAAAAAAAAAAZAPUYgOyZgOtZQPQXQPOAAAAagO0aAPKYgSsZgTMAAAAZATIZQTCaAS8AAAAagStIwzIGgysIgygGAy8GQygDAy4Ewy4FgzAAAAADA3QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADA7BAAAAGQ6+Cw67GA7KAAAAHw6dIQ6VGRTJGBTXCxTCHxSuDBTOAAAAIRSpAAAA","crc":60593} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MghASS8QAAAAAAE=","wn":2098,"tow":271534400,"crc":30751} +{"length":16,"flags":17,"ns":399999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EUBJLxDkBwMZAxkQ/oPXFw==","day":25,"tow":271534400,"year":2020,"crc":24805,"minutes":25,"month":3,"seconds":16} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-18.042210788564386,"preamble":85,"sender":22963,"msg_type":522,"payload":"QEkvEMu5x+xl6kJAQk0aHFaSXsAjbIRTzgoywAECWwQPBg==","lat":37.83123550178751,"tow":271534400,"h_accuracy":513,"crc":56269,"lon":-122.28650572365316} +{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"QEkvEPH///8GAAAA9/////EAywIPAg==","n":-15,"d":-9,"tow":271534400,"h_accuracy":241,"crc":32531,"e":6} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"QEkvEJsAhwBMAEgAcgAG","tow":271534400,"crc":28998,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"QEkvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271534400,"h_accuracy":0,"crc":15717,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"QEkvEP//","tow":271534400,"crc":45251} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":9,"l2ca_bias":0,"preamble":85,"l2p_bias":0,"sender":22963,"msg_type":117,"payload":"/wAAAAAAAAAA","l1ca_bias":0,"mask":255,"crc":49809,"l1p_bias":0} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgikSS8QAAAAAAE=","wn":2098,"tow":271534500,"crc":41831} +{"length":16,"flags":17,"ns":499999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EaRJLxDkBwMZAxkQ/mTNHQ==","day":25,"tow":271534500,"year":2020,"crc":28683,"minutes":25,"month":3,"seconds":16} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-18.04795990818738,"preamble":85,"sender":22963,"msg_type":522,"payload":"pEkvEBehuOxl6kJAxcxCHFaSXsAYL70ZRwwywAECWwQPBg==","lat":37.83123549475766,"tow":271534500,"h_accuracy":513,"crc":17821,"lon":-122.28650576136995} +{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"pEkvEAUAAAAAAAAA7P////EAywIPAg==","n":5,"d":-20,"tow":271534500,"h_accuracy":241,"crc":26617,"e":0} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"pEkvEJsAhwBMAEgAcgAG","tow":271534500,"crc":2555,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"pEkvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271534500,"h_accuracy":0,"crc":40774,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"pEkvEP//","tow":271534500,"crc":15706} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MggISi8QAAAAAAE=","wn":2098,"tow":271534600,"crc":50764} +{"length":16,"flags":17,"ns":599999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EQhKLxDkBwMZAxkQ/kXDIw==","day":25,"tow":271534600,"year":2020,"crc":52541,"minutes":25,"month":3,"seconds":16} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-18.053781505367844,"preamble":85,"sender":22963,"msg_type":522,"payload":"CEovEGJUyexl6kJAqXCKHFaSXsA+r+6fxA0ywAECWwQPBg==","lat":37.83123550253437,"tow":271534600,"h_accuracy":513,"crc":34480,"lon":-122.28650582809009} +{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"CEovEBEAAADq////AQAAAPEAywIPAg==","n":17,"d":1,"tow":271534600,"h_accuracy":241,"crc":54779,"e":-22} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"CEovEJsAhwBMAEgAcgAG","tow":271534600,"crc":61865,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"CEovEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271534600,"h_accuracy":0,"crc":55463,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"CEovEP//","tow":271534600,"crc":14659} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MghsSi8QAAAAAAE=","wn":2098,"tow":271534700,"crc":41606} +{"length":16,"flags":17,"ns":699999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EWxKLxDkBwMZAxkQ/ia5KQ==","day":25,"tow":271534700,"year":2020,"crc":25969,"minutes":25,"month":3,"seconds":16} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-18.06075080805496,"preamble":85,"sender":22963,"msg_type":522,"payload":"bEovEPVQpuxl6kJAaUHFHFaSXsA3zW1djQ8ywAECWwQPBg==","lat":37.83123548622999,"tow":271534700,"h_accuracy":513,"crc":40244,"lon":-122.28650588286622} +{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"bEovEPT/////////GwAAAPEAywIPAg==","n":-12,"d":27,"tow":271534700,"h_accuracy":241,"crc":20827,"e":-1} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"bEovEJsAhwBMAEgAcgAG","tow":271534700,"crc":56582,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"bEovEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271534700,"h_accuracy":0,"crc":49169,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"bEovEP//","tow":271534700,"crc":24826} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"message_type":2,"length":34,"data":[151,255,0,7,255,0,31,254,255,247,255,127,255,255,127,247,255,255,208,1,229,231,85,238,110,229,112],"preamble":85,"sender":22963,"msg_type":30583,"payload":"gwKNSS8QApf/AAf/AB/+//f/f///f/f//9AB5edV7m7lcA==","tow":271534477,"crc":54460,"sid":{"sat":131,"code":2}} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgjQSi8QAAAAAAE=","wn":2098,"tow":271534800,"crc":23590} +{"length":16,"flags":17,"ns":799999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EdBKLxDkBwMZAxkQ/gevLw==","day":25,"tow":271534800,"year":2020,"crc":9967,"minutes":25,"month":3,"seconds":16} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-18.06753541249976,"preamble":85,"sender":22963,"msg_type":522,"payload":"0EovEAy6iOxl6kJAxq3THFaSXsAiAjQAShEywAECWwQPBg==","lat":37.83123547245131,"tow":271534800,"h_accuracy":513,"crc":12905,"lon":-122.28650589629896} +{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"0EovEP////8HAAAAEgAAAPEAywIPAg==","n":-1,"d":18,"tow":271534800,"h_accuracy":241,"crc":19521,"e":7} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"0EovEJsAhwBMAEgAcgAG","tow":271534800,"crc":59005,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"0EovEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271534800,"h_accuracy":0,"crc":21645,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"0EovEP//","tow":271534800,"crc":37045} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":237,"states":[{"cn0":208,"mesid":{"sat":5,"code":0}},{"cn0":175,"mesid":{"sat":21,"code":0}},{"cn0":182,"mesid":{"sat":2,"code":0}},{"cn0":159,"mesid":{"sat":31,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":213,"mesid":{"sat":25,"code":0}},{"cn0":203,"mesid":{"sat":12,"code":0}},{"cn0":208,"mesid":{"sat":29,"code":0}},{"cn0":202,"mesid":{"sat":18,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":200,"mesid":{"sat":131,"code":2}},{"cn0":203,"mesid":{"sat":25,"code":1}},{"cn0":187,"mesid":{"sat":12,"code":1}},{"cn0":151,"mesid":{"sat":31,"code":1}},{"cn0":196,"mesid":{"sat":18,"code":1}},{"cn0":193,"mesid":{"sat":29,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":193,"mesid":{"sat":5,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":211,"mesid":{"sat":11,"code":3}},{"cn0":177,"mesid":{"sat":9,"code":3}},{"cn0":172,"mesid":{"sat":20,"code":3}},{"cn0":207,"mesid":{"sat":5,"code":3}},{"cn0":205,"mesid":{"sat":10,"code":3}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":179,"mesid":{"sat":4,"code":3}},{"cn0":201,"mesid":{"sat":21,"code":3}},{"cn0":172,"mesid":{"sat":9,"code":4}},{"cn0":204,"mesid":{"sat":20,"code":4}},{"cn0":96,"mesid":{"sat":10,"code":4}},{"cn0":200,"mesid":{"sat":11,"code":4}},{"cn0":194,"mesid":{"sat":5,"code":4}},{"cn0":188,"mesid":{"sat":0,"code":4}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":172,"mesid":{"sat":4,"code":4}},{"cn0":200,"mesid":{"sat":35,"code":12}},{"cn0":171,"mesid":{"sat":26,"code":12}},{"cn0":159,"mesid":{"sat":34,"code":12}},{"cn0":188,"mesid":{"sat":24,"code":12}},{"cn0":160,"mesid":{"sat":25,"code":12}},{"cn0":183,"mesid":{"sat":12,"code":12}},{"cn0":184,"mesid":{"sat":19,"code":12}},{"cn0":192,"mesid":{"sat":22,"code":12}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":208,"mesid":{"sat":12,"code":13}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":193,"mesid":{"sat":12,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":189,"mesid":{"sat":25,"code":14}},{"cn0":187,"mesid":{"sat":11,"code":14}},{"cn0":201,"mesid":{"sat":24,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":156,"mesid":{"sat":31,"code":14}},{"cn0":150,"mesid":{"sat":33,"code":14}},{"cn0":200,"mesid":{"sat":25,"code":20}},{"cn0":215,"mesid":{"sat":24,"code":20}},{"cn0":193,"mesid":{"sat":11,"code":20}},{"cn0":174,"mesid":{"sat":31,"code":20}},{"cn0":206,"mesid":{"sat":12,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":169,"mesid":{"sat":33,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}}],"preamble":85,"sender":22963,"msg_type":97,"payload":"BQDQFQCvAgC2HwCfAAAAAAAAGQDVDADLHQDQEgDKAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwLIGQHLDAG7HwGXEgHEHQHBAAAABQHBAAAAAAAAAAAAAAAACwPTCQOxFAOsBQPPCgPNAAAABAOzFQPJCQSsFATMCgRgCwTIBQTCAAS8AAAABASsIwzIGgyrIgyfGAy8GQygDAy3Ewy4FgzAAAAADA3QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADA7BAAAAGQ69Cw67GA7JAAAAHw6cIQ6WGRTIGBTXCxTBHxSuDBTOAAAAIRSpAAAA","crc":3081} +{"length":128,"preamble":85,"sender":22963,"msg_type":151,"payload":"AgAaHQUAKzUMAFEtFQB9GRkAbUYaAKEBHQChNx8AlQ4EAxUWBQMyIQkDXw4KA3EpCwOYJQwDqgMTAyIHFAMMMRUDlSUMDJQpEwwjIBQMDwIWDEMkGAyCIxkMnQ4aDGcVIgyOESMMIi0LDosyDA4PPBgObDYZDpcpHw5VESEOIA8=","crc":34187,"azel":[{"el":29,"az":26,"sid":{"sat":2,"code":0}},{"el":53,"az":43,"sid":{"sat":5,"code":0}},{"el":45,"az":81,"sid":{"sat":12,"code":0}},{"el":25,"az":125,"sid":{"sat":21,"code":0}},{"el":70,"az":109,"sid":{"sat":25,"code":0}},{"el":1,"az":161,"sid":{"sat":26,"code":0}},{"el":55,"az":161,"sid":{"sat":29,"code":0}},{"el":14,"az":149,"sid":{"sat":31,"code":0}},{"el":22,"az":21,"sid":{"sat":4,"code":3}},{"el":33,"az":50,"sid":{"sat":5,"code":3}},{"el":14,"az":95,"sid":{"sat":9,"code":3}},{"el":41,"az":113,"sid":{"sat":10,"code":3}},{"el":37,"az":152,"sid":{"sat":11,"code":3}},{"el":3,"az":170,"sid":{"sat":12,"code":3}},{"el":7,"az":34,"sid":{"sat":19,"code":3}},{"el":49,"az":12,"sid":{"sat":20,"code":3}},{"el":37,"az":149,"sid":{"sat":21,"code":3}},{"el":41,"az":148,"sid":{"sat":12,"code":12}},{"el":32,"az":35,"sid":{"sat":19,"code":12}},{"el":2,"az":15,"sid":{"sat":20,"code":12}},{"el":36,"az":67,"sid":{"sat":22,"code":12}},{"el":35,"az":130,"sid":{"sat":24,"code":12}},{"el":14,"az":157,"sid":{"sat":25,"code":12}},{"el":21,"az":103,"sid":{"sat":26,"code":12}},{"el":17,"az":142,"sid":{"sat":34,"code":12}},{"el":45,"az":34,"sid":{"sat":35,"code":12}},{"el":50,"az":139,"sid":{"sat":11,"code":14}},{"el":60,"az":15,"sid":{"sat":12,"code":14}},{"el":54,"az":108,"sid":{"sat":24,"code":14}},{"el":41,"az":151,"sid":{"sat":25,"code":14}},{"el":17,"az":85,"sid":{"sat":31,"code":14}},{"el":15,"az":32,"sid":{"sat":33,"code":14}}]} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"Mgg0Sy8QAAAAAAE=","wn":2098,"tow":271534900,"crc":49293} +{"length":16,"flags":17,"ns":899999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"ETRLLxDkBwMZAxkQ/uikNQ==","day":25,"tow":271534900,"year":2020,"crc":50866,"minutes":25,"month":3,"seconds":16} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-18.069894517068292,"preamble":85,"sender":22963,"msg_type":522,"payload":"NEsvEHG3hexl6kJAE2jZHFaSXsBg+mib5BEywAECWwQPBg==","lat":37.83123547104959,"tow":271534900,"h_accuracy":513,"crc":13480,"lon":-122.28650590163333} +{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"NEsvEAkAAAALAAAA+f////EAywIPAg==","n":9,"d":-7,"tow":271534900,"h_accuracy":241,"crc":59905,"e":11} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"NEsvEJsAhwBMAEgAcgAG","tow":271534900,"crc":58785,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"NEsvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271534900,"h_accuracy":0,"crc":9048,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"NEsvEP//","tow":271534900,"crc":46973} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":249,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":193,"i":110567992},"flags":15,"cn0":209,"P":1052019346,"D":{"f":29,"i":-196},"lock":15,"sid":{"sat":5,"code":0}},{"L":{"f":234,"i":121781303},"flags":15,"cn0":175,"P":1158710563,"D":{"f":222,"i":2169},"lock":15,"sid":{"sat":21,"code":0}},{"L":{"f":132,"i":123387900},"flags":15,"cn0":182,"P":1173996437,"D":{"f":50,"i":-2480},"lock":15,"sid":{"sat":2,"code":0}},{"L":{"f":219,"i":128746375},"flags":15,"cn0":160,"P":1224980999,"D":{"f":99,"i":-406},"lock":15,"sid":{"sat":31,"code":0}},{"L":{"f":94,"i":107845943},"flags":15,"cn0":213,"P":1026119961,"D":{"f":209,"i":-1139},"lock":15,"sid":{"sat":25,"code":0}},{"L":{"f":245,"i":114158153},"flags":15,"cn0":203,"P":1086178620,"D":{"f":200,"i":-2975},"lock":15,"sid":{"sat":12,"code":0}},{"L":{"f":174,"i":110731248},"flags":15,"cn0":208,"P":1053572720,"D":{"f":27,"i":1480},"lock":15,"sid":{"sat":29,"code":0}},{"L":{"f":133,"i":84035820},"flags":15,"cn0":204,"P":1026120013,"D":{"f":247,"i":-888},"lock":15,"sid":{"sat":25,"code":1}},{"L":{"f":77,"i":88954437},"flags":15,"cn0":187,"P":1086178551,"D":{"f":245,"i":-2318},"lock":15,"sid":{"sat":12,"code":1}},{"L":{"f":182,"i":100321853},"flags":15,"cn0":150,"P":1224980938,"D":{"f":248,"i":-318},"lock":15,"sid":{"sat":31,"code":1}},{"L":{"f":185,"i":86284091},"flags":15,"cn0":193,"P":1053572640,"D":{"f":36,"i":1154},"lock":15,"sid":{"sat":29,"code":1}},{"L":{"f":194,"i":86156906},"flags":15,"cn0":193,"P":1052019271,"D":{"f":171,"i":-153},"lock":15,"sid":{"sat":5,"code":1}},{"L":{"f":229,"i":112913263},"flags":15,"cn0":211,"P":1056508578,"D":{"f":91,"i":1150},"lock":15,"sid":{"sat":11,"code":3}},{"L":{"f":116,"i":123425670},"flags":15,"cn0":178,"P":1155682949,"D":{"f":135,"i":-4408},"lock":15,"sid":{"sat":9,"code":3}}],"payload":"mEsvEAAAAAAyCECSirQ+OCKXBsE8/x3RDw8FACOFEEU3PEIH6nkI3q8PDxUAlcP5Rfy/WgeEUPYytg8PAgAHugNJh4OsB9tq/mOgDw8fABlZKT03mW0GXo370dUPDxkAPMW9QEnqzQb1YfTIyw8PDABwPsw+8J+ZBq7IBRvQDw8dAE1ZKT3sSAIFhYj898wPDxkB98S9QEVWTQVN8vb1uw8PDAHKuQNJPcr6BbbC/viWDw8fASA+zD47lyQFuYIEJMEPDx0BR4q0PmqmIgXCZ/+rwQ8PBQGiCvk+b+u6BuV+BFvTDw8LA4VS4kSGU1sHdMjuh7IPDwkD","header":{"n_obs":64,"t":{"ns_residual":0,"wn":2098,"tow":271535000}},"crc":3439} +{"length":249,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":136,"i":109795743},"flags":15,"cn0":172,"P":1026617598,"D":{"f":176,"i":-1214},"lock":15,"sid":{"sat":20,"code":3}},{"L":{"f":166,"i":114814740},"flags":15,"cn0":207,"P":1073923262,"D":{"f":57,"i":2185},"lock":15,"sid":{"sat":5,"code":3}},{"L":{"f":42,"i":111666905},"flags":15,"cn0":206,"P":1047421023,"D":{"f":193,"i":-3055},"lock":15,"sid":{"sat":10,"code":3}},{"L":{"f":2,"i":120465999},"flags":15,"cn0":179,"P":1124808427,"D":{"f":16,"i":-1332},"lock":15,"sid":{"sat":4,"code":3}},{"L":{"f":246,"i":113386187},"flags":15,"cn0":201,"P":1059445516,"D":{"f":242,"i":1618},"lock":15,"sid":{"sat":21,"code":3}},{"L":{"f":86,"i":95997753},"flags":15,"cn0":172,"P":1155683020,"D":{"f":95,"i":-3428},"lock":15,"sid":{"sat":9,"code":4}},{"L":{"f":32,"i":85396725},"flags":15,"cn0":204,"P":1026617894,"D":{"f":90,"i":-943},"lock":15,"sid":{"sat":20,"code":4}},{"L":{"f":208,"i":87821437},"flags":15,"cn0":200,"P":1056508887,"D":{"f":117,"i":893},"lock":15,"sid":{"sat":11,"code":4}},{"L":{"f":164,"i":89300357},"flags":15,"cn0":194,"P":1073923520,"D":{"f":75,"i":1699},"lock":15,"sid":{"sat":5,"code":4}},{"L":{"f":57,"i":93695767},"flags":15,"cn0":173,"P":1124808646,"D":{"f":185,"i":-1037},"lock":15,"sid":{"sat":4,"code":4}},{"L":{"f":248,"i":121611036},"flags":15,"cn0":200,"P":1167705782,"D":{"f":139,"i":-1501},"lock":15,"sid":{"sat":35,"code":12}},{"L":{"f":3,"i":129274283},"flags":15,"cn0":172,"P":1241288392,"D":{"f":98,"i":-3009},"lock":15,"sid":{"sat":26,"code":12}},{"L":{"f":155,"i":132899376},"flags":15,"cn0":160,"P":1276096193,"D":{"f":115,"i":2248},"lock":15,"sid":{"sat":34,"code":12}},{"L":{"f":181,"i":125178398},"flags":15,"cn0":188,"P":1201959784,"D":{"f":83,"i":-1311},"lock":15,"sid":{"sat":24,"code":12}}],"payload":"mEsvEAAAAAAyCEH+8DA9n1mLBohC+7CsDw8UA77EAkAU79cGpokIOc8PDwUDX2BuPtnmpwYqEfTBzg8PCgPrNgtDTyouBwLM+hCzDw8EAwzbJT/LIsIG9lIG8skPDxUDzFLiRDnPuAVWnPJfrA8PCQQm8jA99QwXBSBR/FrMDw8UBNcL+T59DDwF0H0DdcgPDwsEwMUCQIWdUgWkowZLwg8PBQTGNwtDF6+VBTnz+7mtDw8EBLbGmUUcoz8H+CP6i8gPDyMMyI78SauRtAcDP/RirA8PGgzBrg9MMOLrB5vICHOgDw8iDGhzpEceEnYHteH6U7wPDxgM","header":{"n_obs":65,"t":{"ns_residual":0,"wn":2098,"tow":271535000}},"crc":50129} +{"length":249,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":65,"i":134644765},"flags":15,"cn0":160,"P":1292855625,"D":{"f":206,"i":1317},"lock":15,"sid":{"sat":25,"code":12}},{"L":{"f":177,"i":121066536},"flags":15,"cn0":184,"P":1162477730,"D":{"f":179,"i":1609},"lock":15,"sid":{"sat":12,"code":12}},{"L":{"f":168,"i":124521042},"flags":15,"cn0":184,"P":1195647813,"D":{"f":233,"i":-300},"lock":15,"sid":{"sat":19,"code":12}},{"L":{"f":247,"i":124654925},"flags":15,"cn0":192,"P":1196933387,"D":{"f":120,"i":2381},"lock":15,"sid":{"sat":22,"code":12}},{"L":{"f":87,"i":93616334},"flags":15,"cn0":208,"P":1162477690,"D":{"f":47,"i":1245},"lock":15,"sid":{"sat":12,"code":13}},{"L":{"f":108,"i":116447461},"flags":15,"cn0":193,"P":1107960726,"D":{"f":226,"i":-1029},"lock":15,"sid":{"sat":12,"code":14}},{"L":{"f":102,"i":132452245},"flags":15,"cn0":190,"P":1260241138,"D":{"f":43,"i":1079},"lock":15,"sid":{"sat":25,"code":14}},{"L":{"f":221,"i":125400760},"flags":15,"cn0":187,"P":1193148509,"D":{"f":104,"i":1044},"lock":15,"sid":{"sat":11,"code":14}},{"L":{"f":127,"i":118450359},"flags":15,"cn0":201,"P":1127017564,"D":{"f":65,"i":-1752},"lock":15,"sid":{"sat":24,"code":14}},{"L":{"f":196,"i":143387603},"flags":15,"cn0":156,"P":1364287654,"D":{"f":22,"i":-3172},"lock":15,"sid":{"sat":31,"code":14}},{"L":{"f":208,"i":144568840},"flags":15,"cn0":150,"P":1375526755,"D":{"f":217,"i":-2144},"lock":15,"sid":{"sat":33,"code":14}},{"L":{"f":64,"i":101489381},"flags":15,"cn0":200,"P":1260241110,"D":{"f":51,"i":827},"lock":15,"sid":{"sat":25,"code":20}},{"L":{"f":160,"i":90760728},"flags":15,"cn0":215,"P":1127018114,"D":{"f":14,"i":-1342},"lock":15,"sid":{"sat":24,"code":20}},{"L":{"f":35,"i":96086275},"flags":15,"cn0":193,"P":1193148317,"D":{"f":218,"i":799},"lock":15,"sid":{"sat":11,"code":20}}],"payload":"mEsvEAAAAAAyCEJJaQ9NHYQGCEElBc6gDw8ZDKIASkUoVDcHsUkGs7gPDwwMRSNER1IKbAeo1P7puA8PEwwLwVdHTRVuB/dNCXjADw8WDHoASkXOeJQFV90EL9APDwwNliMKQuXY8AZs+/viwQ8PDA7ywB1LlQ/lB2Y3BCu+Dw8ZDl0AHke4dnkH3RQEaLsPDwsOXOwsQ7doDwd/KPlByQ8PGA6mYFFR0+uLCMSc8xacDw8fDmPf/FEI8p0I0KD32ZYPDyEO1sAdS+WaDAZAOwMzyA8PGRSC7ixDGOZoBaDC+g7XDw8YFJ3/HUcDKboFIx8D2sEPDwsU","header":{"n_obs":66,"t":{"ns_residual":0,"wn":2098,"tow":271535000}},"crc":922} +{"length":62,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":43,"i":109868465},"flags":15,"cn0":174,"P":1364287749,"D":{"f":70,"i":-2432},"lock":15,"sid":{"sat":31,"code":20}},{"L":{"f":138,"i":89226007},"flags":15,"cn0":206,"P":1107960571,"D":{"f":19,"i":-789},"lock":15,"sid":{"sat":12,"code":20}},{"L":{"f":226,"i":110773597},"flags":15,"cn0":169,"P":1375526728,"D":{"f":138,"i":-1639},"lock":15,"sid":{"sat":33,"code":20}}],"payload":"mEsvEAAAAAAyCEMFYVFRsXWMBiuA9kauDw8fFPsiCkIXe1EFiuv8E84PDwwUSN/8UV1FmgbimfmKqQ8PIRQ=","header":{"n_obs":67,"t":{"ns_residual":0,"wn":2098,"tow":271535000}},"crc":22115} +{"length":9,"l2ca_bias":0,"preamble":85,"l2p_bias":0,"sender":22963,"msg_type":117,"payload":"/wAAAAAAAAAA","l1ca_bias":0,"mask":255,"crc":49809,"l1p_bias":0} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgiYSy8QAAAAAAE=","wn":2098,"tow":271535000,"crc":28115} +{"length":16,"flags":17,"ns":999999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EZhLLxDkBwMZAxkQ/smaOw==","day":25,"tow":271535000,"year":2020,"crc":50657,"minutes":25,"month":3,"seconds":16} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-18.075031865333706,"preamble":85,"sender":22963,"msg_type":522,"payload":"mEsvEJjlZuxl6kJAd27tHFaSXsAixM9JNRMywAECWwQPBg==","lat":37.83123545669804,"tow":271535000,"h_accuracy":513,"crc":9117,"lon":-122.28650592028303} +{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"mEsvEPT///8AAAAA9f////EAywIPAg==","n":-12,"d":-11,"tow":271535000,"h_accuracy":241,"crc":40335,"e":0} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"mEsvEJsAhwBMAEgAcgAG","tow":271535000,"crc":36944,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"mEsvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271535000,"h_accuracy":0,"crc":2690,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"mEsvEP//","tow":271535000,"crc":23990} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":4,"flags":2147616000,"preamble":85,"sender":22963,"msg_type":65535,"payload":"AAUCgA==","crc":40942} +{"length":24,"z":3890655.0240602265,"preamble":85,"sender":22963,"msg_type":72,"payload":"UO0a3iqORMHK1UJhIkRQwc9nFIPvrk1B","crc":2168,"x":-2694229.735196747,"y":-4264073.519704292} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"Mgj8Sy8QAAAAAAE=","wn":2098,"tow":271535100,"crc":2329} +{"length":16,"flags":17,"ns":99999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EfxLLxDkBwMZAxkR/uD1BQ==","day":25,"tow":271535100,"year":2020,"crc":38849,"minutes":25,"month":3,"seconds":17} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-18.080454974249047,"preamble":85,"sender":22963,"msg_type":522,"payload":"/EsvEKzRVOxl6kJAj5L9HFaSXsA/M3uymBQywAECWwQPBg==","lat":37.8312354482799,"tow":271535100,"h_accuracy":513,"crc":54077,"lon":-122.2865059353155} +{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"/EsvEPz///8AAAAA/f////EAywIPAg==","n":-4,"d":-3,"tow":271535100,"h_accuracy":241,"crc":15901,"e":0} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"/EsvEJsAhwBMAEgAcgAG","tow":271535100,"crc":48383,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"/EsvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271535100,"h_accuracy":0,"crc":4660,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"/EsvEP//","tow":271535100,"crc":1039} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MghgTC8QAAAAAAE=","wn":2098,"tow":271535200,"crc":38749} +{"length":16,"flags":17,"ns":199999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EWBMLxDkBwMZAxkR/sHrCw==","day":25,"tow":271535200,"year":2020,"crc":12780,"minutes":25,"month":3,"seconds":17} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-18.084029885547135,"preamble":85,"sender":22963,"msg_type":522,"payload":"YEwvENZqaOxl6kJA6qcUHVaSXsDDT4r7ghUywAECWwQPBg==","lat":37.831235457406066,"tow":271535200,"h_accuracy":513,"crc":1580,"lon":-122.28650595681361} +{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"YEwvEAQAAAD9////BAAAAPEAywIPAg==","n":4,"d":4,"tow":271535200,"h_accuracy":241,"crc":28209,"e":-3} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"YEwvEJsAhwBMAEgAcgAG","tow":271535200,"crc":27286,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"YEwvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271535200,"h_accuracy":0,"crc":58757,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"YEwvEP//","tow":271535200,"crc":42652} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgjETC8QAAAAAAE=","wn":2098,"tow":271535300,"crc":5116} +{"length":16,"flags":17,"ns":299999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EcRMLxDkBwMZAxkR/qLhEQ==","day":25,"tow":271535300,"year":2020,"crc":64979,"minutes":25,"month":3,"seconds":17} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-18.086518493122483,"preamble":85,"sender":22963,"msg_type":522,"payload":"xEwvEKyYk+xl6kJAxEkkHVaSXsDUdXITJhYywAECWwQPBg==","lat":37.83123547751288,"tow":271535300,"h_accuracy":513,"crc":16107,"lon":-122.28650597137226} +{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"xEwvEAoAAAD1////EAAAAPEAywIPAg==","n":10,"d":16,"tow":271535300,"h_accuracy":241,"crc":14859,"e":-11} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"xEwvEJsAhwBMAEgAcgAG","tow":271535300,"crc":14370,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"xEwvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271535300,"h_accuracy":0,"crc":37628,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"xEwvEP//","tow":271535300,"crc":16661} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":237,"states":[{"cn0":210,"mesid":{"sat":5,"code":0}},{"cn0":176,"mesid":{"sat":21,"code":0}},{"cn0":184,"mesid":{"sat":2,"code":0}},{"cn0":161,"mesid":{"sat":31,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":214,"mesid":{"sat":25,"code":0}},{"cn0":204,"mesid":{"sat":12,"code":0}},{"cn0":209,"mesid":{"sat":29,"code":0}},{"cn0":202,"mesid":{"sat":18,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":201,"mesid":{"sat":131,"code":2}},{"cn0":204,"mesid":{"sat":25,"code":1}},{"cn0":188,"mesid":{"sat":12,"code":1}},{"cn0":151,"mesid":{"sat":31,"code":1}},{"cn0":196,"mesid":{"sat":18,"code":1}},{"cn0":194,"mesid":{"sat":29,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":194,"mesid":{"sat":5,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":212,"mesid":{"sat":100,"code":3}},{"cn0":178,"mesid":{"sat":98,"code":3}},{"cn0":173,"mesid":{"sat":102,"code":3}},{"cn0":208,"mesid":{"sat":101,"code":3}},{"cn0":207,"mesid":{"sat":93,"code":3}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":180,"mesid":{"sat":106,"code":3}},{"cn0":202,"mesid":{"sat":104,"code":3}},{"cn0":172,"mesid":{"sat":98,"code":4}},{"cn0":204,"mesid":{"sat":102,"code":4}},{"cn0":68,"mesid":{"sat":93,"code":4}},{"cn0":200,"mesid":{"sat":100,"code":4}},{"cn0":194,"mesid":{"sat":101,"code":4}},{"cn0":188,"mesid":{"sat":104,"code":4}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":173,"mesid":{"sat":106,"code":4}},{"cn0":200,"mesid":{"sat":35,"code":12}},{"cn0":172,"mesid":{"sat":26,"code":12}},{"cn0":160,"mesid":{"sat":34,"code":12}},{"cn0":188,"mesid":{"sat":24,"code":12}},{"cn0":160,"mesid":{"sat":25,"code":12}},{"cn0":184,"mesid":{"sat":12,"code":12}},{"cn0":184,"mesid":{"sat":19,"code":12}},{"cn0":192,"mesid":{"sat":22,"code":12}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":209,"mesid":{"sat":12,"code":13}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":193,"mesid":{"sat":12,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":190,"mesid":{"sat":25,"code":14}},{"cn0":187,"mesid":{"sat":11,"code":14}},{"cn0":202,"mesid":{"sat":24,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":156,"mesid":{"sat":31,"code":14}},{"cn0":150,"mesid":{"sat":33,"code":14}},{"cn0":201,"mesid":{"sat":25,"code":20}},{"cn0":215,"mesid":{"sat":24,"code":20}},{"cn0":193,"mesid":{"sat":11,"code":20}},{"cn0":174,"mesid":{"sat":31,"code":20}},{"cn0":206,"mesid":{"sat":12,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":170,"mesid":{"sat":33,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}}],"preamble":85,"sender":22963,"msg_type":97,"payload":"BQDSFQCwAgC4HwChAAAAAAAAGQDWDADMHQDREgDKAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwLJGQHMDAG8HwGXEgHEHQHCAAAABQHCAAAAAAAAAAAAAAAAZAPUYgOyZgOtZQPQXQPPAAAAagO0aAPKYgSsZgTMXQREZATIZQTCaAS8AAAAagStIwzIGgysIgygGAy8GQygDAy4Ewy4FgzAAAAADA3RAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADA7BAAAAGQ6+Cw67GA7KAAAAHw6cIQ6WGRTJGBTXCxTBHxSuDBTOAAAAIRSqAAAA","crc":14543} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MggoTS8QAAAAAAE=","wn":2098,"tow":271535400,"crc":42664} +{"length":16,"flags":17,"ns":399999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EShNLxDkBwMZAxkR/oPXFw==","day":25,"tow":271535400,"year":2020,"crc":42825,"minutes":25,"month":3,"seconds":17} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-18.090332640796753,"preamble":85,"sender":22963,"msg_type":522,"payload":"KE0vEHPssOxl6kJALdgxHVaSXsC++zkKIBcywAECWwQPBg==","lat":37.831235491169444,"tow":271535400,"h_accuracy":513,"crc":58164,"lon":-122.28650598399754} +{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"KE0vEP3//////////v////EAywIPAg==","n":-3,"d":-2,"tow":271535400,"h_accuracy":241,"crc":64462,"e":-1} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"KE0vEJsAhwBMAEgAcgAG","tow":271535400,"crc":7355,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"KE0vEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271535400,"h_accuracy":0,"crc":48010,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"KE0vEP//","tow":271535400,"crc":27551} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":9,"l2ca_bias":0,"preamble":85,"l2p_bias":0,"sender":22963,"msg_type":117,"payload":"/wAAAAAAAAAA","l1ca_bias":0,"mask":255,"crc":49809,"l1p_bias":0} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgiMTS8QAAAAAAE=","wn":2098,"tow":271535500,"crc":8713} +{"length":16,"flags":17,"ns":499999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EYxNLxDkBwMZAxkR/mTNHQ==","day":25,"tow":271535500,"year":2020,"crc":40366,"minutes":25,"month":3,"seconds":17} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-18.09381369548441,"preamble":85,"sender":22963,"msg_type":522,"payload":"jE0vEFII0exl6kJALb0pHVaSXsC/BaIsBBgywAECWwQPBg==","lat":37.8312355061213,"tow":271535500,"h_accuracy":513,"crc":1355,"lon":-122.28650597644874} +{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"jE0vEP7///8GAAAABQAAAPEAywIPAg==","n":-2,"d":5,"tow":271535500,"h_accuracy":241,"crc":55043,"e":6} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"jE0vEJsAhwBMAEgAcgAG","tow":271535500,"crc":19983,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"jE0vEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271535500,"h_accuracy":0,"crc":52467,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"jE0vEP//","tow":271535500,"crc":35862} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":51,"text":"GLO L2OF ME 1 [+1226ms] low CN0 too long, dropping","preamble":85,"sender":22963,"msg_type":1025,"payload":"BkdMTyBMMk9GIE1FIDEgWysxMjI2bXNdIGxvdyBDTjAgdG9vIGxvbmcsIGRyb3BwaW5n","crc":53859,"level":6} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgjwTS8QAAAAAAE=","wn":2098,"tow":271535600,"crc":15554} +{"length":16,"flags":17,"ns":599999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EfBNLxDkBwMZAxkR/kXDIw==","day":25,"tow":271535600,"year":2020,"crc":40362,"minutes":25,"month":3,"seconds":17} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-18.098291071825642,"preamble":85,"sender":22963,"msg_type":522,"payload":"8E0vELmY7uxl6kJAiHMbHVaSXsDc+oqaKRkywAECWwQPBg==","lat":37.831235519888146,"tow":271535600,"h_accuracy":513,"crc":58139,"lon":-122.2865059631423} +{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"8E0vEPz///8NAAAABgAAAPEAywIPAg==","n":-4,"d":6,"tow":271535600,"h_accuracy":241,"crc":2836,"e":13} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"8E0vEJsAhwBMAEgAcgAG","tow":271535600,"crc":2927,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"8E0vEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271535600,"h_accuracy":0,"crc":14240,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"8E0vEP//","tow":271535600,"crc":49769} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"message_type":28,"length":34,"data":[98,178,225,80,120,2,178,3,206,151,172,13,128,113,212,232,252,76,1,121,3,7,251,245,14,128,64],"preamble":85,"sender":22963,"msg_type":30583,"payload":"gwJvTS8QHGKy4VB4ArIDzpesDYBx1Oj8TAF5Awf79Q6AQA==","tow":271535471,"crc":64045,"sid":{"sat":131,"code":2}} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MghUTi8QAAAAAAE=","wn":2098,"tow":271535700,"crc":28694} +{"length":16,"flags":17,"ns":699999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EVROLxDkBwMZAxkR/ia5KQ==","day":25,"tow":271535700,"year":2020,"crc":50782,"minutes":25,"month":3,"seconds":17} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-18.104360950594252,"preamble":85,"sender":22963,"msg_type":522,"payload":"VE4vEGbzJe1l6kJA4h0WHVaSXsAjyDVmtxoywAECWwQPBg==","lat":37.831235545664455,"tow":271535700,"h_accuracy":513,"crc":6318,"lon":-122.2865059581741} +{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"VE4vEAUAAAADAAAA+v////EAywIPAg==","n":5,"d":-6,"tow":271535700,"h_accuracy":241,"crc":48343,"e":3} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"VE4vEJsAhwBMAEgAcgAG","tow":271535700,"crc":54392,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"VE4vEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271535700,"h_accuracy":0,"crc":12002,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"VE4vEP//","tow":271535700,"crc":52018} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"Mgi4Ti8QAAAAAAE=","wn":2098,"tow":271535800,"crc":33425} +{"length":16,"flags":17,"ns":799999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EbhOLxDkBwMZAxkR/gevLw==","day":25,"tow":271535800,"year":2020,"crc":57667,"minutes":25,"month":3,"seconds":17} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-18.113643642816438,"preamble":85,"sender":22963,"msg_type":522,"payload":"uE4vEJbtWu1l6kJAcqYUHVaSXsB/S/G/Fx0ywAECWwQPBg==","lat":37.83123557033393,"tow":271535800,"h_accuracy":513,"crc":24593,"lon":-122.28650595680827} +{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"uE4vEAQAAAD8////AAAAAPEAywIPAg==","n":4,"d":0,"tow":271535800,"h_accuracy":241,"crc":36738,"e":-4} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"uE4vEJsAhwBMAEgAcgAG","tow":271535800,"crc":35712,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"uE4vEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271535800,"h_accuracy":0,"crc":53858,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"uE4vEP//","tow":271535800,"crc":19433} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":237,"states":[{"cn0":210,"mesid":{"sat":5,"code":0}},{"cn0":177,"mesid":{"sat":21,"code":0}},{"cn0":184,"mesid":{"sat":2,"code":0}},{"cn0":161,"mesid":{"sat":31,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":215,"mesid":{"sat":25,"code":0}},{"cn0":204,"mesid":{"sat":12,"code":0}},{"cn0":209,"mesid":{"sat":29,"code":0}},{"cn0":204,"mesid":{"sat":18,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":202,"mesid":{"sat":131,"code":2}},{"cn0":204,"mesid":{"sat":25,"code":1}},{"cn0":188,"mesid":{"sat":12,"code":1}},{"cn0":150,"mesid":{"sat":31,"code":1}},{"cn0":197,"mesid":{"sat":18,"code":1}},{"cn0":194,"mesid":{"sat":29,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":194,"mesid":{"sat":5,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":212,"mesid":{"sat":11,"code":3}},{"cn0":178,"mesid":{"sat":9,"code":3}},{"cn0":173,"mesid":{"sat":20,"code":3}},{"cn0":208,"mesid":{"sat":5,"code":3}},{"cn0":207,"mesid":{"sat":10,"code":3}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":180,"mesid":{"sat":4,"code":3}},{"cn0":203,"mesid":{"sat":21,"code":3}},{"cn0":173,"mesid":{"sat":9,"code":4}},{"cn0":204,"mesid":{"sat":20,"code":4}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":200,"mesid":{"sat":11,"code":4}},{"cn0":194,"mesid":{"sat":5,"code":4}},{"cn0":188,"mesid":{"sat":0,"code":4}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":173,"mesid":{"sat":4,"code":4}},{"cn0":200,"mesid":{"sat":35,"code":12}},{"cn0":172,"mesid":{"sat":26,"code":12}},{"cn0":160,"mesid":{"sat":34,"code":12}},{"cn0":188,"mesid":{"sat":24,"code":12}},{"cn0":160,"mesid":{"sat":25,"code":12}},{"cn0":184,"mesid":{"sat":12,"code":12}},{"cn0":184,"mesid":{"sat":19,"code":12}},{"cn0":192,"mesid":{"sat":22,"code":12}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":209,"mesid":{"sat":12,"code":13}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":193,"mesid":{"sat":12,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":190,"mesid":{"sat":25,"code":14}},{"cn0":188,"mesid":{"sat":11,"code":14}},{"cn0":202,"mesid":{"sat":24,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":156,"mesid":{"sat":31,"code":14}},{"cn0":151,"mesid":{"sat":33,"code":14}},{"cn0":201,"mesid":{"sat":25,"code":20}},{"cn0":215,"mesid":{"sat":24,"code":20}},{"cn0":193,"mesid":{"sat":11,"code":20}},{"cn0":174,"mesid":{"sat":31,"code":20}},{"cn0":206,"mesid":{"sat":12,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":169,"mesid":{"sat":33,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}}],"preamble":85,"sender":22963,"msg_type":97,"payload":"BQDSFQCxAgC4HwChAAAAAAAAGQDXDADMHQDREgDMAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwLKGQHMDAG8HwGWEgHFHQHCAAAABQHCAAAAAAAAAAAAAAAACwPUCQOyFAOtBQPQCgPPAAAABAO0FQPLCQStFATMAAAACwTIBQTCAAS8AAAABAStIwzIGgysIgygGAy8GQygDAy4Ewy4FgzAAAAADA3RAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADA7BAAAAGQ6+Cw68GA7KAAAAHw6cIQ6XGRTJGBTXCxTBHxSuDBTOAAAAIRSpAAAA","crc":32469} +{"length":128,"preamble":85,"sender":22963,"msg_type":151,"payload":"AgAaHQUAKzUMAFEtFQB9GRkAbUYaAKEBHQChNx8AlQ4EAxUWBQMyIQkDXw4KA3EpCwOYJQwDqgMTAyIHFAMMMRUDlSUMDJQpEwwjIBQMDwIWDEMkGAyCIxkMnQ4aDGcVIgyOESMMIi0LDosyDA4PPBgObDYZDpcpHw5VESEOIA8=","crc":34187,"azel":[{"el":29,"az":26,"sid":{"sat":2,"code":0}},{"el":53,"az":43,"sid":{"sat":5,"code":0}},{"el":45,"az":81,"sid":{"sat":12,"code":0}},{"el":25,"az":125,"sid":{"sat":21,"code":0}},{"el":70,"az":109,"sid":{"sat":25,"code":0}},{"el":1,"az":161,"sid":{"sat":26,"code":0}},{"el":55,"az":161,"sid":{"sat":29,"code":0}},{"el":14,"az":149,"sid":{"sat":31,"code":0}},{"el":22,"az":21,"sid":{"sat":4,"code":3}},{"el":33,"az":50,"sid":{"sat":5,"code":3}},{"el":14,"az":95,"sid":{"sat":9,"code":3}},{"el":41,"az":113,"sid":{"sat":10,"code":3}},{"el":37,"az":152,"sid":{"sat":11,"code":3}},{"el":3,"az":170,"sid":{"sat":12,"code":3}},{"el":7,"az":34,"sid":{"sat":19,"code":3}},{"el":49,"az":12,"sid":{"sat":20,"code":3}},{"el":37,"az":149,"sid":{"sat":21,"code":3}},{"el":41,"az":148,"sid":{"sat":12,"code":12}},{"el":32,"az":35,"sid":{"sat":19,"code":12}},{"el":2,"az":15,"sid":{"sat":20,"code":12}},{"el":36,"az":67,"sid":{"sat":22,"code":12}},{"el":35,"az":130,"sid":{"sat":24,"code":12}},{"el":14,"az":157,"sid":{"sat":25,"code":12}},{"el":21,"az":103,"sid":{"sat":26,"code":12}},{"el":17,"az":142,"sid":{"sat":34,"code":12}},{"el":45,"az":34,"sid":{"sat":35,"code":12}},{"el":50,"az":139,"sid":{"sat":11,"code":14}},{"el":60,"az":15,"sid":{"sat":12,"code":14}},{"el":54,"az":108,"sid":{"sat":24,"code":14}},{"el":41,"az":151,"sid":{"sat":25,"code":14}},{"el":17,"az":85,"sid":{"sat":31,"code":14}},{"el":15,"az":32,"sid":{"sat":33,"code":14}}]} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MggcTy8QAAAAAAE=","wn":2098,"tow":271535900,"crc":16867} +{"length":16,"flags":17,"ns":899999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"ERxPLxDkBwMZAxkR/uikNQ==","day":25,"tow":271535900,"year":2020,"crc":11031,"minutes":25,"month":3,"seconds":17} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-18.120484342695722,"preamble":85,"sender":22963,"msg_type":522,"payload":"HE8vEPkCgO1l6kJAH2oPHVaSXsDljtcP2B4ywAECWwQPBg==","lat":37.8312355876023,"tow":271535900,"h_accuracy":513,"crc":2111,"lon":-122.2865059519322} +{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"HE8vEAEAAAD6////CgAAAPEAywIPAg==","n":1,"d":10,"tow":271535900,"h_accuracy":241,"crc":45629,"e":-6} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"HE8vEJsAhwBMAEgAcgAG","tow":271535900,"crc":41557,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"HE8vEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271535900,"h_accuracy":0,"crc":28909,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"HE8vEP//","tow":271535900,"crc":1585} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":249,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":228,"i":110568189},"flags":15,"cn0":211,"P":1052021219,"D":{"f":169,"i":-197},"lock":15,"sid":{"sat":5,"code":0}},{"L":{"f":197,"i":121779135},"flags":15,"cn0":177,"P":1158689947,"D":{"f":249,"i":2168},"lock":15,"sid":{"sat":21,"code":0}},{"L":{"f":93,"i":123390380},"flags":15,"cn0":184,"P":1174020021,"D":{"f":215,"i":-2482},"lock":15,"sid":{"sat":2,"code":0}},{"L":{"f":50,"i":128746782},"flags":15,"cn0":162,"P":1224984875,"D":{"f":80,"i":-406},"lock":15,"sid":{"sat":31,"code":0}},{"L":{"f":222,"i":107847082},"flags":15,"cn0":215,"P":1026130805,"D":{"f":187,"i":-1139},"lock":15,"sid":{"sat":25,"code":0}},{"L":{"f":89,"i":114161129},"flags":15,"cn0":205,"P":1086206930,"D":{"f":91,"i":-2975},"lock":15,"sid":{"sat":12,"code":0}},{"L":{"f":194,"i":110729768},"flags":15,"cn0":210,"P":1053558632,"D":{"f":68,"i":1482},"lock":15,"sid":{"sat":29,"code":0}},{"L":{"f":115,"i":84036708},"flags":15,"cn0":204,"P":1026130859,"D":{"f":243,"i":-888},"lock":15,"sid":{"sat":25,"code":1}},{"L":{"f":204,"i":88956755},"flags":15,"cn0":188,"P":1086206861,"D":{"f":2,"i":-2318},"lock":15,"sid":{"sat":12,"code":1}},{"L":{"f":88,"i":100322170},"flags":15,"cn0":150,"P":1224984793,"D":{"f":250,"i":-315},"lock":15,"sid":{"sat":31,"code":1}},{"L":{"f":139,"i":86282938},"flags":15,"cn0":194,"P":1053558557,"D":{"f":200,"i":1153},"lock":15,"sid":{"sat":29,"code":1}},{"L":{"f":97,"i":86157060},"flags":15,"cn0":194,"P":1052021147,"D":{"f":170,"i":-153},"lock":15,"sid":{"sat":5,"code":1}},{"L":{"f":50,"i":112912115},"flags":15,"cn0":212,"P":1056497813,"D":{"f":152,"i":1148},"lock":15,"sid":{"sat":11,"code":3}},{"L":{"f":62,"i":123430079},"flags":15,"cn0":178,"P":1155724199,"D":{"f":18,"i":-4406},"lock":15,"sid":{"sat":9,"code":3}}],"payload":"gE8vEAAAAAAyCEDjkbQ+/SKXBuQ7/6nTDw8FAJs0EEW/M0IHxXgI+bEPDxUAtR/6RazJWgddTvbXuA8PAgAryQNJHoWsBzJq/lCiDw8fAHWDKT2qnW0G3o37u9cPDxkA0jO+QOn1zQZZYfRbzQ8PDABoB8w+KJqZBsLKBUTSDw8dAKuDKT1kTAIFc4j888wPDxkBjTO+QFNfTQXM8vYCvA8PDAHZyANJesv6BVjF/vqWDw8fAR0HzD66kiQFi4EEyMIPDx0Bm5G0PgSnIgVhZ/+qwg8PBQGV4Pg+8+a6BjJ8BJjUDw8LA6fz4kS/ZFsHPsruErIPDwkD","header":{"n_obs":64,"t":{"ns_residual":0,"wn":2098,"tow":271536000}},"crc":44420} +{"length":249,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":76,"i":109796957},"flags":15,"cn0":173,"P":1026628930,"D":{"f":107,"i":-1214},"lock":15,"sid":{"sat":20,"code":3}},{"L":{"f":79,"i":114812556},"flags":15,"cn0":208,"P":1073902833,"D":{"f":172,"i":2184},"lock":15,"sid":{"sat":5,"code":3}},{"L":{"f":28,"i":111669961},"flags":15,"cn0":207,"P":1047449694,"D":{"f":73,"i":-3055},"lock":15,"sid":{"sat":10,"code":3}},{"L":{"f":101,"i":120467331},"flags":15,"cn0":180,"P":1124820890,"D":{"f":122,"i":-1332},"lock":15,"sid":{"sat":4,"code":3}},{"L":{"f":57,"i":113384569},"flags":15,"cn0":203,"P":1059430411,"D":{"f":86,"i":1619},"lock":15,"sid":{"sat":21,"code":3}},{"L":{"f":103,"i":96001182},"flags":15,"cn0":173,"P":1155724285,"D":{"f":83,"i":-3427},"lock":15,"sid":{"sat":9,"code":4}},{"L":{"f":47,"i":85397669},"flags":15,"cn0":204,"P":1026629231,"D":{"f":124,"i":-944},"lock":15,"sid":{"sat":20,"code":4}},{"L":{"f":94,"i":87820544},"flags":15,"cn0":200,"P":1056498129,"D":{"f":129,"i":893},"lock":15,"sid":{"sat":11,"code":4}},{"L":{"f":181,"i":89298658},"flags":15,"cn0":194,"P":1073903079,"D":{"f":134,"i":1699},"lock":15,"sid":{"sat":5,"code":4}},{"L":{"f":138,"i":93696803},"flags":15,"cn0":173,"P":1124821081,"D":{"f":182,"i":-1037},"lock":15,"sid":{"sat":4,"code":4}},{"L":{"f":241,"i":121612538},"flags":15,"cn0":200,"P":1167720203,"D":{"f":236,"i":-1502},"lock":15,"sid":{"sat":35,"code":12}},{"L":{"f":137,"i":129277292},"flags":15,"cn0":172,"P":1241317280,"D":{"f":31,"i":-3010},"lock":15,"sid":{"sat":26,"code":12}},{"L":{"f":214,"i":132897128},"flags":15,"cn0":160,"P":1276074627,"D":{"f":65,"i":2247},"lock":15,"sid":{"sat":34,"code":12}},{"L":{"f":138,"i":125179710},"flags":15,"cn0":188,"P":1201972378,"D":{"f":137,"i":-1311},"lock":15,"sid":{"sat":24,"code":12}}],"payload":"gE8vEAAAAAAyCEFCHTE9XV6LBkxC+2utDw8UA/F0AkCM5tcGT4gIrNAPDwUDXtBuPsnypwYcEfRJzw8PCgOaZwtDgy8uB2XM+nq0Dw8EAwugJT95HMIGOVMGVssPDxUD/fPiRJ7cuAVnnfJTrQ8PCQRvHjE9pRAXBS9Q/HzMDw8UBNHh+D4ACTwFXn0DgcgPDwsE53UCQOKWUgW1owaGwg8PBQRZaAtDI7OVBYrz+7atDw8EBAv/mUX6qD8H8SL67MgPDyMMoP/8SWydtAeJPvQfrA8PGgyDWg9MaNnrB9bHCEGgDw8iDJqkpEc+F3YHiuH6ibwPDxgM","header":{"n_obs":65,"t":{"ns_residual":0,"wn":2098,"tow":271536000}},"crc":28483} +{"length":249,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":37,"i":134643450},"flags":15,"cn0":160,"P":1292843003,"D":{"f":31,"i":1316},"lock":15,"sid":{"sat":25,"code":12}},{"L":{"f":246,"i":121064926},"flags":15,"cn0":184,"P":1162462277,"D":{"f":207,"i":1610},"lock":15,"sid":{"sat":12,"code":12}},{"L":{"f":57,"i":124521343},"flags":15,"cn0":185,"P":1195650696,"D":{"f":110,"i":-301},"lock":15,"sid":{"sat":19,"code":12}},{"L":{"f":32,"i":124652545},"flags":15,"cn0":192,"P":1196910525,"D":{"f":91,"i":2381},"lock":15,"sid":{"sat":22,"code":12}},{"L":{"f":149,"i":93615089},"flags":15,"cn0":209,"P":1162462233,"D":{"f":126,"i":1246},"lock":15,"sid":{"sat":12,"code":13}},{"L":{"f":154,"i":116448490},"flags":15,"cn0":193,"P":1107970518,"D":{"f":55,"i":-1029},"lock":15,"sid":{"sat":12,"code":14}},{"L":{"f":68,"i":132451166},"flags":15,"cn0":190,"P":1260230878,"D":{"f":192,"i":1078},"lock":15,"sid":{"sat":25,"code":14}},{"L":{"f":241,"i":125399716},"flags":15,"cn0":188,"P":1193138579,"D":{"f":71,"i":1044},"lock":15,"sid":{"sat":11,"code":14}},{"L":{"f":228,"i":118452111},"flags":15,"cn0":202,"P":1127034234,"D":{"f":217,"i":-1753},"lock":15,"sid":{"sat":24,"code":14}},{"L":{"f":61,"i":143390777},"flags":15,"cn0":156,"P":1364317841,"D":{"f":162,"i":-3173},"lock":15,"sid":{"sat":31,"code":14}},{"L":{"f":20,"i":144570981},"flags":15,"cn0":150,"P":1375547096,"D":{"f":80,"i":-2139},"lock":15,"sid":{"sat":33,"code":14}},{"L":{"f":98,"i":101488554},"flags":15,"cn0":201,"P":1260230839,"D":{"f":106,"i":828},"lock":15,"sid":{"sat":25,"code":20}},{"L":{"f":95,"i":90762071},"flags":15,"cn0":215,"P":1127034788,"D":{"f":114,"i":-1343},"lock":15,"sid":{"sat":24,"code":20}},{"L":{"f":64,"i":96085475},"flags":15,"cn0":193,"P":1193138385,"D":{"f":229,"i":799},"lock":15,"sid":{"sat":11,"code":20}}],"payload":"gE8vEAAAAAAyCEL7Nw9N+n4GCCUkBR+gDw8ZDEXESUXeTTcH9koGz7gPDwwMiC5ER38LbAc50/5uuQ8PEwy9Z1dHAQxuByBNCVvADw8WDBnESUXxc5QFld4EftEPDwwN1kkKQurc8Aaa+/s3wQ8PDA7emB1LXgvlB0Q2BMC+Dw8ZDpPZHUekcnkH8RQER7wPDwsOei0tQ49vDwfkJ/nZyg8PGA6R1lFROfiLCD2b86KcDw8fDtgu/VFl+p0IFKX3UJYPDyEOt5gdS6qXDAZiPANqyQ8PGRSkLy1DV+toBV/B+nLXDw8YFNHYHUfjJboFQB8D5cEPDwsU","header":{"n_obs":66,"t":{"ns_residual":0,"wn":2098,"tow":271536000}},"crc":33626} +{"length":62,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":207,"i":109870896},"flags":15,"cn0":174,"P":1364317946,"D":{"f":122,"i":-2430},"lock":15,"sid":{"sat":31,"code":20}},{"L":{"f":35,"i":89226796},"flags":15,"cn0":206,"P":1107970362,"D":{"f":148,"i":-788},"lock":15,"sid":{"sat":12,"code":20}},{"L":{"f":208,"i":110775237},"flags":15,"cn0":170,"P":1375547092,"D":{"f":44,"i":-1639},"lock":15,"sid":{"sat":33,"code":20}}],"payload":"gE8vEAAAAAAyCEP61lFRMH+MBs+C9nquDw8fFDpJCkIsflEFI+z8lM4PDwwU1C79UcVLmgbQmfksqg8PIRQ=","header":{"n_obs":67,"t":{"ns_residual":0,"wn":2098,"tow":271536000}},"crc":7828} +{"length":9,"l2ca_bias":0,"preamble":85,"l2p_bias":0,"sender":22963,"msg_type":117,"payload":"/wAAAAAAAAAA","l1ca_bias":0,"mask":255,"crc":49809,"l1p_bias":0} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgiATy8QAAAAAAE=","wn":2098,"tow":271536000,"crc":6335} +{"length":16,"flags":17,"ns":999999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EYBPLxDkBwMZAxkR/smaOw==","day":25,"tow":271536000,"year":2020,"crc":64474,"minutes":25,"month":3,"seconds":17} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-18.132584111302485,"preamble":85,"sender":22963,"msg_type":522,"payload":"gE8vEA2fmO1l6kJAWyPpHFaSXsBuA0YI8SEywAECWwQPBg==","lat":37.831235599062076,"tow":271536000,"h_accuracy":513,"crc":64674,"lon":-122.2865059162845} +{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"gE8vEPr///8RAAAAMwAAAPEAywIPAg==","n":-6,"d":51,"tow":271536000,"h_accuracy":241,"crc":3422,"e":17} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"gE8vEJsAhwBMAEgAcgAG","tow":271536000,"crc":1082,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"gE8vEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271536000,"h_accuracy":0,"crc":36572,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"gE8vEP//","tow":271536000,"crc":50038} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":4,"flags":2147616000,"preamble":85,"sender":22963,"msg_type":65535,"payload":"AAUCgA==","crc":40942} +{"length":24,"z":3890655.0240602265,"preamble":85,"sender":22963,"msg_type":72,"payload":"UO0a3iqORMHK1UJhIkRQwc9nFIPvrk1B","crc":2168,"x":-2694229.735196747,"y":-4264073.519704292} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"bWFpbgAAAAAAAAAAAAAAAAAAAAAAAAx1AAA=","name":"main\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":47991,"stack_free":29964,"cpu":0} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"aWRsZQAAAAAAAAAAAAAAAAAAAABkAXwAAAA=","name":"idle\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":47032,"stack_free":124,"cpu":356} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"cnBtc2cAAAAAAAAAAAAAAAAAAAABAOQNAAA=","name":"rpmsg\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":18957,"stack_free":3556,"cpu":1} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"U0JQAAAAAAAAAAAAAAAAAAAAAAAAAPz/AAA=","name":"SBP\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":51784,"stack_free":65532,"cpu":0} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"TkFQAAAAAAAAAAAAAAAAAAAAAAAAAASAAAA=","name":"NAP\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":33651,"stack_free":32772,"cpu":0} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"bWFuYWdlIFBWAAAAAAAAAAAAAAAAACwEAAA=","name":"manage PV\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":61814,"stack_free":1068,"cpu":0} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"SU1VAAAAAAAAAAAAAAAAAAAAAAAAAPQHAAA=","name":"IMU\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":14252,"stack_free":2036,"cpu":0} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"SU1VIGF1eAAAAAAAAAAAAAAAAAAAAEwIAAA=","name":"IMU aux\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":18976,"stack_free":2124,"cpu":0} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"bmRiAAAAAAAAAAAAAAAAAAAAAAAAAFAMAAA=","name":"ndb\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":26120,"stack_free":3152,"cpu":0} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"TkFQIFRyYWNraW5nAAAAAAAAAAAdAdR3AAA=","name":"NAP Tracking\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":19151,"stack_free":30676,"cpu":285} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"ZGVjb2RlAAAAAAAAAAAAAAAAAAAHANQGAAA=","name":"decode\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":22929,"stack_free":1748,"cpu":7} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"bWFuYWdlIGFjcQAAAAAAAAAAAAC9AKR3AAA=","name":"manage acq\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":24209,"stack_free":30628,"cpu":189} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"c3lzdGVtIG1vbml0b3IAAAAAAAAAACwGAAA=","name":"system monitor\u0000\u0000\u0000\u0000\u0000\u0000","crc":58531,"stack_free":1580,"cpu":0} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"V2F0Y2hkb2cAAAAAAAAAAAAAAAAAAOQDAAA=","name":"Watchdog\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":44438,"stack_free":996,"cpu":0} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"c3RhcmxpbmcAAAAAAAAAAAAAAACVAPz/AAA=","name":"starling\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":15999,"stack_free":65532,"cpu":149} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"bWVfY2FsY19wdnQAAAAAAAAAAAAJAIwjAAA=","name":"me_calc_pvt\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":57561,"stack_free":9100,"cpu":9} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"UFBTAAAAAAAAAAAAAAAAAAAAAAAAAEgHAAA=","name":"PPS\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":38576,"stack_free":1864,"cpu":0} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"c3BlY3RydW0gYW5hbHl6ZXIAAAAAANQPAAA=","name":"spectrum analyzer\u0000\u0000\u0000","crc":50933,"stack_free":4052,"cpu":0} +{"length":152,"af0":5.887670442461967e-3,"w":-0.44091143270237854,"dn":2.7565433925253817e-9,"c_us":1.0313466e-5,"c_uc":4.9471855e-6,"ecc":5.041392287239432e-4,"sqrta":5440.606742858887,"preamble":85,"toc":{"wn":2098,"tow":270600},"sender":22963,"bgd_e1e5a":-1.2805685e-8,"msg_type":149,"omegadot":-5.397724836905428e-9,"payload":"DA4IIQQAMggUrkdAQDgAAAEAAABcsgAAXLIAENRCALgCQwAApjYACC03AABAsgAAgDNL+3P5s60nPnUMqQwPaP4/AAAAwAaFQD8AAIBTm0C1QIrkGgU4CAPAN7MGedwuN77+6PiV5Dfcv4P9KHoHme8/6TII/sTfAj7///9/qx14P///////m7S9AAAAAAghBAAyCEMAQwA=","inc":0.9874303232135592,"inc_dot":5.493085951935782e-10,"iode":67,"crc":22055,"common":{"health_bits":0,"fit_interval":14400,"valid":1,"sid":{"sat":12,"code":14},"toe":{"wn":2098,"tow":270600},"ura":3.12},"c_rs":106.03125,"m0":1.9004049772782114,"af2":0,"c_rc":130.71875,"bgd_e1e5b":-1.2805685e-8,"af1":-1.874411736935144e-11,"c_is":5.9604645e-8,"c_ic":-1.1175871e-8,"omega0":-2.379013099559022,"iodc":67} +{"cpu_vint":988,"length":10,"fe_temperature":5641,"preamble":85,"sender":22963,"cpu_vaux":1780,"msg_type":181,"payload":"6hbcA/QGRhUJFg==","dev_vin":5866,"crc":48590,"cpu_temperature":5446} +{"length":152,"af0":5.542786035221069e-3,"w":0.8010578836647987,"dn":3.2565642203999004e-9,"c_us":1.2051314e-6,"c_uc":-9.313226e-7,"ecc":6.41814898699522e-4,"sqrta":5440.5982837677,"preamble":85,"toc":{"wn":2098,"tow":270600},"sender":22963,"bgd_e1e5a":4.5401976e-8,"msg_type":149,"omegadot":-5.952033640377751e-9,"payload":"GA4IIQQAMggUrkdAQDgAAAEAAABDMwAAWjMAwLDBACiiQwAAerUAwKE1AADAMgAAkLIDohqtQvkrPghvDWj2Cv8/AAAAAO8HRT8AACApmUC1QAE7BZsOMv0/fijCh1SQOb6TYpEkRKLpP79dPRTHYe8/dQCRpGwQsr3///9LCLR2P///////07W9AAAAAAghBAAyCEMAQwA=","inc":0.9806857486063832,"inc_dot":-1.6429255773019897e-11,"iode":67,"crc":17160,"common":{"health_bits":0,"fit_interval":14400,"valid":1,"sid":{"sat":24,"code":14},"toe":{"wn":2098,"tow":270600},"ura":3.12},"c_rs":-22.09375,"m0":1.9401763977575133,"af2":0,"c_rc":324.3125,"bgd_e1e5b":5.075708e-8,"af1":-1.9852564037137196e-11,"c_is":-1.6763806e-8,"c_ic":2.2351742e-8,"omega0":1.8247209601865395,"iodc":67} +{"length":152,"af0":1.907260389998555e-3,"w":-1.5654652719122086e-2,"dn":2.7722583328300094e-9,"c_us":1.0371208e-5,"c_uc":4.9714e-6,"ecc":4.320717416703701e-4,"sqrta":5440.606544494629,"preamble":85,"toc":{"wn":2098,"tow":270600},"sender":22963,"bgd_e1e5a":-1.5366822e-8,"msg_type":149,"omegadot":-5.393081786360879e-9,"payload":"Cw4IIQQAMggUrkdAQDgAAAEAAACEsgAAkLIAgNtCAHAEQwDQpjYAAC43AADAMQAA8DIJ2QezQtAnPuz3xuNXe+U/AAAAAPZQPD8AAIBGm0C1QK3tOpsxCAPAXpX5kcEpN74w4dX1xQeQv9UhC83qmO8/RLuw9AgSAz7///8/oT9fP/7/////ces9AAAAIgghBAAyCEMAQwA=","inc":0.9874166493182722,"inc_dot":5.550231189407157e-10,"iode":67,"crc":2583,"common":{"health_bits":0,"fit_interval":14400,"valid":1,"sid":{"sat":11,"code":14},"toe":{"wn":2098,"tow":270600},"ura":3.12},"c_rs":109.75,"m0":0.6713065575383985,"af2":1.7347235e-18,"c_rc":132.4375,"bgd_e1e5b":-1.6763806e-8,"af1":1.996909304580185e-10,"c_is":2.7939677e-8,"c_ic":5.5879354e-9,"omega0":-2.379000866638043,"iodc":67} +{"length":152,"af0":-4.7208549221977586e-4,"w":-0.5807865279072539,"dn":3.1744179415348008e-9,"c_us":1.1641532e-6,"c_uc":-6.724149e-7,"ecc":6.590713746845722e-5,"sqrta":5440.611110687256,"preamble":85,"toc":{"wn":2098,"tow":270600},"sender":22963,"bgd_e1e5a":2.3283064e-9,"msg_type":149,"omegadot":-5.8966741915773585e-9,"payload":"Hw4IIQQAMggUrkdAQDgAAAEAAAAgMQAAMDEAAHbBAHijQwCANLUAQJw1AAAAsQAA8DL+96xunkQrPkZyn/wvcwHAAAAAAPRGET8AAMBxnEC1QJaRgpusG/0/YRMSO3ZTOb6iNeqgzZXiv43JI3Ekcu8/wO8/t+Srsb3///+/R/A+v/7//////y+9AAAAAAghBAAyCEMAQwA=","inc":0.9826833925019841,"inc_dot":-1.607209803882381e-11,"iode":67,"crc":3,"common":{"health_bits":0,"fit_interval":14400,"valid":1,"sid":{"sat":31,"code":14},"toe":{"wn":2098,"tow":270600},"ura":3.12},"c_rs":-15.375,"m0":-2.181243871322553,"af2":0,"c_rc":326.9375,"bgd_e1e5b":2.561137e-9,"af1":-5.6843418860808e-14,"c_is":2.7939677e-8,"c_ic":-1.8626451e-9,"omega0":1.8192564081774427,"iodc":67} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgjkTy8QAAAAAAE=","wn":2098,"tow":271536100,"crc":31861} +{"length":16,"flags":17,"ns":99999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EeRPLxDkBwMZAxkS/uD1BQ==","day":25,"tow":271536100,"year":2020,"crc":60793,"minutes":25,"month":3,"seconds":18} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-18.13616813288269,"preamble":85,"sender":22963,"msg_type":522,"payload":"5E8vEGOEwe1l6kJAOU7xHFaSXsARfS3q2yIywAECWwQPBg==","lat":37.83123561810569,"tow":271536100,"h_accuracy":513,"crc":33970,"lon":-122.28650592389103} +{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"5E8vEAQAAAD4////4P////EAywIPAg==","n":4,"d":-32,"tow":271536100,"h_accuracy":241,"crc":9231,"e":-8} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"5E8vEJsAhwBMAEgAcgAG","tow":271536100,"crc":10389,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"5E8vEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271536100,"h_accuracy":0,"crc":38506,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"5E8vEP//","tow":271536100,"crc":39631} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":152,"af0":-4.6914938138797874e-4,"w":-0.8905894853810961,"dn":2.6633252239002037e-9,"c_us":1.0326505e-5,"c_uc":4.2803586e-6,"ecc":3.9580545853823423e-4,"sqrta":5440.610097885132,"preamble":85,"toc":{"wn":2098,"tow":270000},"sender":22963,"bgd_e1e5a":-5.122274e-9,"msg_type":149,"omegadot":-5.325221816863623e-9,"payload":"IQ6wHgQAMggUrkdAQDgAAAEAAACwsQAA0LEAMLNCALgFQwCgjzYAQC03AACIswAAwLE7r4zPtuAmPkwWPLbJbwhAAAAAgIPwOT8AAGAvnEC1QDTgM7QeEQPA+GrXryTfNr7k8TuFtX/sv6HbAEo2s+8/tGUD6d1QAz7///8/Bb8+v/7//////109AAAAALAeBAAyCEIAQgA=","inc":0.9906264729860262,"inc_dot":5.621662736246373e-10,"iode":66,"crc":18815,"common":{"health_bits":0,"fit_interval":14400,"valid":1,"sid":{"sat":33,"code":14},"toe":{"wn":2098,"tow":270000},"ura":3.12},"c_rs":89.59375,"m0":3.0545839535796286,"af2":0,"c_rc":133.71875,"bgd_e1e5b":-6.0535967e-9,"af1":4.2632564145606e-13,"c_is":-5.5879354e-9,"c_ic":-6.3329935e-8,"omega0":-2.383359344323276,"iodc":66} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MghIUC8QAAAAAAE=","wn":2098,"tow":271536200,"crc":13661} +{"length":16,"flags":17,"ns":199999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EUhQLxDkBwMZAxkS/sHrCw==","day":25,"tow":271536200,"year":2020,"crc":46422,"minutes":25,"month":3,"seconds":18} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-18.143399615788987,"preamble":85,"sender":22963,"msg_type":522,"payload":"SFAvEI3K2+1l6kJACLHwHFaSXsCaElTWtSQywAECWwQPBg==","lat":37.83123563034051,"tow":271536200,"h_accuracy":513,"crc":39405,"lon":-122.28650592331917} +{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"SFAvEPz////8////9f////EAywIPAg==","n":-4,"d":-11,"tow":271536200,"h_accuracy":241,"crc":12761,"e":-4} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"SFAvEJsAhwBMAEgAcgAG","tow":271536200,"crc":254,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"SFAvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271536200,"h_accuracy":0,"crc":63371,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"SFAvEP//","tow":271536200,"crc":4519} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgisUC8QAAAAAAE=","wn":2098,"tow":271536300,"crc":60965} +{"length":16,"flags":17,"ns":299999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EaxQLxDkBwMZAxkS/qLhEQ==","day":25,"tow":271536300,"year":2020,"crc":21344,"minutes":25,"month":3,"seconds":18} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-18.151908599707962,"preamble":85,"sender":22963,"msg_type":522,"payload":"rFAvEKpaCO5l6kJAtofcHFaSXsATumN74yYywAECWwQPBg==","lat":37.831235651091745,"tow":271536300,"h_accuracy":513,"crc":62178,"lon":-122.2865059045424} +{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"rFAvEAgAAAAQAAAADwAAAPEAywIPAg==","n":8,"d":15,"tow":271536300,"h_accuracy":241,"crc":14838,"e":16} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"rFAvEJsAhwBMAEgAcgAG","tow":271536300,"crc":30787,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"rFAvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271536300,"h_accuracy":0,"crc":21928,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"rFAvEP//","tow":271536300,"crc":39998} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":237,"states":[{"cn0":211,"mesid":{"sat":5,"code":0}},{"cn0":177,"mesid":{"sat":21,"code":0}},{"cn0":185,"mesid":{"sat":2,"code":0}},{"cn0":162,"mesid":{"sat":31,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":216,"mesid":{"sat":25,"code":0}},{"cn0":206,"mesid":{"sat":12,"code":0}},{"cn0":210,"mesid":{"sat":29,"code":0}},{"cn0":205,"mesid":{"sat":18,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":203,"mesid":{"sat":131,"code":2}},{"cn0":204,"mesid":{"sat":25,"code":1}},{"cn0":188,"mesid":{"sat":12,"code":1}},{"cn0":150,"mesid":{"sat":31,"code":1}},{"cn0":196,"mesid":{"sat":18,"code":1}},{"cn0":194,"mesid":{"sat":29,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":194,"mesid":{"sat":5,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":212,"mesid":{"sat":100,"code":3}},{"cn0":178,"mesid":{"sat":98,"code":3}},{"cn0":174,"mesid":{"sat":102,"code":3}},{"cn0":208,"mesid":{"sat":101,"code":3}},{"cn0":207,"mesid":{"sat":93,"code":3}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":180,"mesid":{"sat":106,"code":3}},{"cn0":203,"mesid":{"sat":104,"code":3}},{"cn0":172,"mesid":{"sat":98,"code":4}},{"cn0":205,"mesid":{"sat":102,"code":4}},{"cn0":76,"mesid":{"sat":93,"code":4}},{"cn0":200,"mesid":{"sat":100,"code":4}},{"cn0":194,"mesid":{"sat":101,"code":4}},{"cn0":188,"mesid":{"sat":104,"code":4}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":172,"mesid":{"sat":106,"code":4}},{"cn0":200,"mesid":{"sat":35,"code":12}},{"cn0":172,"mesid":{"sat":26,"code":12}},{"cn0":160,"mesid":{"sat":34,"code":12}},{"cn0":189,"mesid":{"sat":24,"code":12}},{"cn0":161,"mesid":{"sat":25,"code":12}},{"cn0":184,"mesid":{"sat":12,"code":12}},{"cn0":184,"mesid":{"sat":19,"code":12}},{"cn0":192,"mesid":{"sat":22,"code":12}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":209,"mesid":{"sat":12,"code":13}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":194,"mesid":{"sat":12,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":190,"mesid":{"sat":25,"code":14}},{"cn0":188,"mesid":{"sat":11,"code":14}},{"cn0":202,"mesid":{"sat":24,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":156,"mesid":{"sat":31,"code":14}},{"cn0":150,"mesid":{"sat":33,"code":14}},{"cn0":201,"mesid":{"sat":25,"code":20}},{"cn0":215,"mesid":{"sat":24,"code":20}},{"cn0":193,"mesid":{"sat":11,"code":20}},{"cn0":174,"mesid":{"sat":31,"code":20}},{"cn0":206,"mesid":{"sat":12,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":170,"mesid":{"sat":33,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}}],"preamble":85,"sender":22963,"msg_type":97,"payload":"BQDTFQCxAgC5HwCiAAAAAAAAGQDYDADOHQDSEgDNAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwLLGQHMDAG8HwGWEgHEHQHCAAAABQHCAAAAAAAAAAAAAAAAZAPUYgOyZgOuZQPQXQPPAAAAagO0aAPLYgSsZgTNXQRMZATIZQTCaAS8AAAAagSsIwzIGgysIgygGAy9GQyhDAy4Ewy4FgzAAAAADA3RAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADA7CAAAAGQ6+Cw68GA7KAAAAHw6cIQ6WGRTJGBTXCxTBHxSuDBTOAAAAIRSqAAAA","crc":53590} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MggQUS8QAAAAAAE=","wn":2098,"tow":271536400,"crc":22358} +{"length":16,"flags":17,"ns":399999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"ERBRLxDkBwMZAxkS/oPXFw==","day":25,"tow":271536400,"year":2020,"crc":28025,"minutes":25,"month":3,"seconds":18} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-18.153916646797704,"preamble":85,"sender":22963,"msg_type":522,"payload":"EFEvEIOPF+5l6kJACg7oHFaSXsBeTtQUZycywAECWwQPBg==","lat":37.831235658172794,"tow":271536400,"h_accuracy":513,"crc":54818,"lon":-122.28650591527563} +{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"EFEvEAIAAAAAAAAA+v////EAywIPAg==","n":2,"d":-6,"tow":271536400,"h_accuracy":241,"crc":64385,"e":0} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"EFEvEJsAhwBMAEgAcgAG","tow":271536400,"crc":14425,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"EFEvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271536400,"h_accuracy":0,"crc":5314,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"EFEvEP//","tow":271536400,"crc":50720} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":9,"l2ca_bias":0,"preamble":85,"l2p_bias":0,"sender":22963,"msg_type":117,"payload":"/wAAAAAAAAAA","l1ca_bias":0,"mask":255,"crc":49809,"l1p_bias":0} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"Mgh0US8QAAAAAAE=","wn":2098,"tow":271536500,"crc":13212} +{"length":16,"flags":17,"ns":499999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EXRRLxDkBwMZAxkS/mTNHQ==","day":25,"tow":271536500,"year":2020,"crc":10629,"minutes":25,"month":3,"seconds":18} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-18.153620538115607,"preamble":85,"sender":22963,"msg_type":522,"payload":"dFEvEKB2HO5l6kJA+Mz0HFaSXsBRM/OsUycywAECWwQPBg==","lat":37.83123566045583,"tow":271536500,"h_accuracy":513,"crc":44905,"lon":-122.2865059271461} +{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"dFEvEAEAAAD8////BQAAAPEAywIPAg==","n":1,"d":5,"tow":271536500,"h_accuracy":241,"crc":37746,"e":-4} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"dFEvEJsAhwBMAEgAcgAG","tow":271536500,"crc":5366,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"dFEvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271536500,"h_accuracy":0,"crc":3188,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"dFEvEP//","tow":271536500,"crc":40857} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgjYUS8QAAAAAAE=","wn":2098,"tow":271536600,"crc":40642} +{"length":16,"flags":17,"ns":599999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EdhRLxDkBwMZAxkS/kXDIw==","day":25,"tow":271536600,"year":2020,"crc":6416,"minutes":25,"month":3,"seconds":18} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-18.153802633958872,"preamble":85,"sender":22963,"msg_type":522,"payload":"2FEvEMTfEO5l6kJA6jPqHFaSXsBb5AKcXycywAECWwQPBg==","lat":37.831235655059146,"tow":271536600,"h_accuracy":513,"crc":36736,"lon":-122.28650591727606} +{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"2FEvEPv///8NAAAA+f////EAywIPAg==","n":-5,"d":-7,"tow":271536600,"h_accuracy":241,"crc":14792,"e":13} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"2FEvEJsAhwBMAEgAcgAG","tow":271536600,"crc":24839,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"2FEvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271536600,"h_accuracy":0,"crc":9646,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"2FEvEP//","tow":271536600,"crc":30034} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"message_type":63,"length":34,"data":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"preamble":85,"sender":22963,"msg_type":30583,"payload":"gwJdUS8QPwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA==","tow":271536477,"crc":39110,"sid":{"sat":131,"code":2}} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"Mgg8Ui8QAAAAAAE=","wn":2098,"tow":271536700,"crc":36303} +{"length":16,"flags":17,"ns":699999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"ETxSLxDkBwMZAxkS/ia5KQ==","day":25,"tow":271536700,"year":2020,"crc":26861,"minutes":25,"month":3,"seconds":18} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-18.154961441061836,"preamble":85,"sender":22963,"msg_type":522,"payload":"PFIvEMUJGe5l6kJAG9MIHVaSXsBqgJGNqycywAECWwQPBg==","lat":37.83123565886084,"tow":271536700,"h_accuracy":513,"crc":12223,"lon":-122.28650594579487} +{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"PFIvEAcAAADu/////v////EAywIPAg==","n":7,"d":-2,"tow":271536700,"h_accuracy":241,"crc":15187,"e":-18} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"PFIvEJsAhwBMAEgAcgAG","tow":271536700,"crc":37913,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"PFIvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271536700,"h_accuracy":0,"crc":59830,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"PFIvEP//","tow":271536700,"crc":5657} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgigUi8QAAAAAAE=","wn":2098,"tow":271536800,"crc":54419} +{"length":16,"flags":17,"ns":799999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EaBSLxDkBwMZAxkS/gevLw==","day":25,"tow":271536800,"year":2020,"crc":46695,"minutes":25,"month":3,"seconds":18} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-18.15627915875016,"preamble":85,"sender":22963,"msg_type":522,"payload":"oFIvEF0X9u1l6kJAa3QEHVaSXsDa4DPpASgywAECWwQPBg==","lat":37.83123564258742,"tow":271536800,"h_accuracy":513,"crc":19631,"lon":-122.28650594172511} +{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"oFIvEPn///8NAAAAEwAAAPEAywIPAg==","n":-7,"d":19,"tow":271536800,"h_accuracy":241,"crc":32067,"e":13} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"oFIvEJsAhwBMAEgAcgAG","tow":271536800,"crc":12918,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"oFIvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271536800,"h_accuracy":0,"crc":6023,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"oFIvEP//","tow":271536800,"crc":54110} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":51,"text":"GLO L2OF ME 1 [+1209ms] low CN0 too long, dropping","preamble":85,"sender":22963,"msg_type":1025,"payload":"BkdMTyBMMk9GIE1FIDEgWysxMjA5bXNdIGxvdyBDTjAgdG9vIGxvbmcsIGRyb3BwaW5n","crc":52127,"level":6} +{"length":237,"states":[{"cn0":212,"mesid":{"sat":5,"code":0}},{"cn0":178,"mesid":{"sat":21,"code":0}},{"cn0":186,"mesid":{"sat":2,"code":0}},{"cn0":163,"mesid":{"sat":31,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":216,"mesid":{"sat":25,"code":0}},{"cn0":206,"mesid":{"sat":12,"code":0}},{"cn0":210,"mesid":{"sat":29,"code":0}},{"cn0":205,"mesid":{"sat":18,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":203,"mesid":{"sat":131,"code":2}},{"cn0":204,"mesid":{"sat":25,"code":1}},{"cn0":188,"mesid":{"sat":12,"code":1}},{"cn0":150,"mesid":{"sat":31,"code":1}},{"cn0":197,"mesid":{"sat":18,"code":1}},{"cn0":194,"mesid":{"sat":29,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":194,"mesid":{"sat":5,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":212,"mesid":{"sat":11,"code":3}},{"cn0":178,"mesid":{"sat":9,"code":3}},{"cn0":173,"mesid":{"sat":20,"code":3}},{"cn0":208,"mesid":{"sat":5,"code":3}},{"cn0":207,"mesid":{"sat":10,"code":3}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":180,"mesid":{"sat":4,"code":3}},{"cn0":203,"mesid":{"sat":21,"code":3}},{"cn0":173,"mesid":{"sat":9,"code":4}},{"cn0":205,"mesid":{"sat":20,"code":4}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":200,"mesid":{"sat":11,"code":4}},{"cn0":194,"mesid":{"sat":5,"code":4}},{"cn0":188,"mesid":{"sat":0,"code":4}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":173,"mesid":{"sat":4,"code":4}},{"cn0":201,"mesid":{"sat":35,"code":12}},{"cn0":172,"mesid":{"sat":26,"code":12}},{"cn0":161,"mesid":{"sat":34,"code":12}},{"cn0":189,"mesid":{"sat":24,"code":12}},{"cn0":161,"mesid":{"sat":25,"code":12}},{"cn0":184,"mesid":{"sat":12,"code":12}},{"cn0":185,"mesid":{"sat":19,"code":12}},{"cn0":193,"mesid":{"sat":22,"code":12}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":209,"mesid":{"sat":12,"code":13}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":194,"mesid":{"sat":12,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":191,"mesid":{"sat":25,"code":14}},{"cn0":188,"mesid":{"sat":11,"code":14}},{"cn0":203,"mesid":{"sat":24,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":156,"mesid":{"sat":31,"code":14}},{"cn0":151,"mesid":{"sat":33,"code":14}},{"cn0":201,"mesid":{"sat":25,"code":20}},{"cn0":215,"mesid":{"sat":24,"code":20}},{"cn0":194,"mesid":{"sat":11,"code":20}},{"cn0":174,"mesid":{"sat":31,"code":20}},{"cn0":206,"mesid":{"sat":12,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":170,"mesid":{"sat":33,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}}],"preamble":85,"sender":22963,"msg_type":97,"payload":"BQDUFQCyAgC6HwCjAAAAAAAAGQDYDADOHQDSEgDNAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwLLGQHMDAG8HwGWEgHFHQHCAAAABQHCAAAAAAAAAAAAAAAACwPUCQOyFAOtBQPQCgPPAAAABAO0FQPLCQStFATNAAAACwTIBQTCAAS8AAAABAStIwzJGgysIgyhGAy9GQyhDAy4Ewy5FgzBAAAADA3RAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADA7CAAAAGQ6/Cw68GA7LAAAAHw6cIQ6XGRTJGBTXCxTCHxSuDBTOAAAAIRSqAAAA","crc":19929} +{"length":128,"preamble":85,"sender":22963,"msg_type":151,"payload":"AgAaHQUAKzUMAFEtFQB9GRkAbUYaAKEBHQChNx8AlQ4EAxUWBQMyIQkDXw4KA3EpCwOYJQwDqgMTAyIHFAMMMRUDlSUMDJQpEwwjIBQMDwIWDEMkGAyCIxkMnQ4aDGcVIgyOESMMIi0LDosyDA4PPBgObDYZDpcpHw5VESEOIA8=","crc":34187,"azel":[{"el":29,"az":26,"sid":{"sat":2,"code":0}},{"el":53,"az":43,"sid":{"sat":5,"code":0}},{"el":45,"az":81,"sid":{"sat":12,"code":0}},{"el":25,"az":125,"sid":{"sat":21,"code":0}},{"el":70,"az":109,"sid":{"sat":25,"code":0}},{"el":1,"az":161,"sid":{"sat":26,"code":0}},{"el":55,"az":161,"sid":{"sat":29,"code":0}},{"el":14,"az":149,"sid":{"sat":31,"code":0}},{"el":22,"az":21,"sid":{"sat":4,"code":3}},{"el":33,"az":50,"sid":{"sat":5,"code":3}},{"el":14,"az":95,"sid":{"sat":9,"code":3}},{"el":41,"az":113,"sid":{"sat":10,"code":3}},{"el":37,"az":152,"sid":{"sat":11,"code":3}},{"el":3,"az":170,"sid":{"sat":12,"code":3}},{"el":7,"az":34,"sid":{"sat":19,"code":3}},{"el":49,"az":12,"sid":{"sat":20,"code":3}},{"el":37,"az":149,"sid":{"sat":21,"code":3}},{"el":41,"az":148,"sid":{"sat":12,"code":12}},{"el":32,"az":35,"sid":{"sat":19,"code":12}},{"el":2,"az":15,"sid":{"sat":20,"code":12}},{"el":36,"az":67,"sid":{"sat":22,"code":12}},{"el":35,"az":130,"sid":{"sat":24,"code":12}},{"el":14,"az":157,"sid":{"sat":25,"code":12}},{"el":21,"az":103,"sid":{"sat":26,"code":12}},{"el":17,"az":142,"sid":{"sat":34,"code":12}},{"el":45,"az":34,"sid":{"sat":35,"code":12}},{"el":50,"az":139,"sid":{"sat":11,"code":14}},{"el":60,"az":15,"sid":{"sat":12,"code":14}},{"el":54,"az":108,"sid":{"sat":24,"code":14}},{"el":41,"az":151,"sid":{"sat":25,"code":14}},{"el":17,"az":85,"sid":{"sat":31,"code":14}},{"el":15,"az":32,"sid":{"sat":33,"code":14}}]} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MggEUy8QAAAAAAE=","wn":2098,"tow":271536900,"crc":6113} +{"length":16,"flags":17,"ns":899999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EQRTLxDkBwMZAxkS/uikNQ==","day":25,"tow":271536900,"year":2020,"crc":31795,"minutes":25,"month":3,"seconds":18} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-18.151081056845385,"preamble":85,"sender":22963,"msg_type":522,"payload":"BFMvEME47+1l6kJAwfAIHVaSXsAwMoY/rSYywAECWwQPBg==","lat":37.83123563938853,"tow":271536900,"h_accuracy":513,"crc":4216,"lon":-122.28650594590273} +{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"BFMvEAgAAAD6////8/////EAywIPAg==","n":8,"d":-13,"tow":271536900,"h_accuracy":241,"crc":54590,"e":-6} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"BFMvEJsAhwBMAEgAcgAG","tow":271536900,"crc":7075,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"BFMvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271536900,"h_accuracy":0,"crc":46344,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"BFMvEP//","tow":271536900,"crc":40582} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":249,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":3,"i":110568387},"flags":15,"cn0":212,"P":1052023104,"D":{"f":212,"i":-198},"lock":15,"sid":{"sat":5,"code":0}},{"L":{"f":42,"i":121776967},"flags":15,"cn0":178,"P":1158669313,"D":{"f":13,"i":2169},"lock":15,"sid":{"sat":21,"code":0}},{"L":{"f":140,"i":123392859},"flags":15,"cn0":186,"P":1174043621,"D":{"f":127,"i":-2478},"lock":15,"sid":{"sat":2,"code":0}},{"L":{"f":93,"i":128747188},"flags":15,"cn0":163,"P":1224988756,"D":{"f":110,"i":-406},"lock":15,"sid":{"sat":31,"code":0}},{"L":{"f":65,"i":107848222},"flags":15,"cn0":216,"P":1026141648,"D":{"f":98,"i":-1140},"lock":15,"sid":{"sat":25,"code":0}},{"L":{"f":111,"i":114164104},"flags":15,"cn0":206,"P":1086235230,"D":{"f":46,"i":-2975},"lock":15,"sid":{"sat":12,"code":0}},{"L":{"f":86,"i":110728288},"flags":15,"cn0":211,"P":1053544549,"D":{"f":73,"i":1480},"lock":15,"sid":{"sat":29,"code":0}},{"L":{"f":73,"i":84037596},"flags":15,"cn0":204,"P":1026141694,"D":{"f":216,"i":-889},"lock":15,"sid":{"sat":25,"code":1}},{"L":{"f":12,"i":88959074},"flags":15,"cn0":188,"P":1086235173,"D":{"f":190,"i":-2318},"lock":15,"sid":{"sat":12,"code":1}},{"L":{"f":213,"i":100322486},"flags":15,"cn0":150,"P":1224988666,"D":{"f":236,"i":-318},"lock":15,"sid":{"sat":31,"code":1}},{"L":{"f":246,"i":86281784},"flags":15,"cn0":194,"P":1053544476,"D":{"f":175,"i":1153},"lock":15,"sid":{"sat":29,"code":1}},{"L":{"f":248,"i":86157213},"flags":15,"cn0":194,"P":1052023027,"D":{"f":234,"i":-154},"lock":15,"sid":{"sat":5,"code":1}},{"L":{"f":161,"i":112910966},"flags":15,"cn0":213,"P":1056487067,"D":{"f":203,"i":1148},"lock":15,"sid":{"sat":11,"code":3}},{"L":{"f":87,"i":123434487},"flags":15,"cn0":177,"P":1155765471,"D":{"f":101,"i":-4408},"lock":15,"sid":{"sat":9,"code":3}}],"payload":"aFMvEAAAAAAyCEBAmbQ+wyOXBgM6/9TUDw8FAAHkD0VHK0IHKnkIDbIPDxUA5Xv6RVvTWgeMUvZ/ug8PAgBU2ANJtIasB11q/m6jDw8fANCtKT0eom0GQYz7YtgPDxkAXqK+QIgBzgZvYfQuzg8PDABl0Ms+YJSZBlbIBUnTDw8dAP6tKT3cTwIFSYf82MwPDxkBJaK+QGJoTQUM8va+vA8PDAH61wNJtsz6BdXC/uyWDw8fARzQyz44jiQF9oEEr8IPDx0B85i0Pp2nIgX4Zv/qwg8PBQGbtvg+duK6BqF8BMvVDw8LA9+U40T3dVsHV8juZbEPDwkD","header":{"n_obs":64,"t":{"ns_residual":0,"wn":2098,"tow":271537000}},"crc":50169} +{"length":249,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":124,"i":109798170},"flags":15,"cn0":174,"P":1026640267,"D":{"f":9,"i":-1214},"lock":15,"sid":{"sat":20,"code":3}},{"L":{"f":237,"i":114810371},"flags":15,"cn0":208,"P":1073882391,"D":{"f":39,"i":2184},"lock":15,"sid":{"sat":5,"code":3}},{"L":{"f":235,"i":111673016},"flags":15,"cn0":207,"P":1047478346,"D":{"f":180,"i":-3057},"lock":15,"sid":{"sat":10,"code":3}},{"L":{"f":221,"i":120468663},"flags":15,"cn0":180,"P":1124833331,"D":{"f":177,"i":-1333},"lock":15,"sid":{"sat":4,"code":3}},{"L":{"f":240,"i":113382949},"flags":15,"cn0":203,"P":1059415271,"D":{"f":1,"i":1619},"lock":15,"sid":{"sat":21,"code":3}},{"L":{"f":236,"i":96004610},"flags":15,"cn0":173,"P":1155765571,"D":{"f":213,"i":-3429},"lock":15,"sid":{"sat":9,"code":4}},{"L":{"f":202,"i":85398612},"flags":15,"cn0":205,"P":1026640582,"D":{"f":253,"i":-944},"lock":15,"sid":{"sat":20,"code":4}},{"L":{"f":10,"i":87819651},"flags":15,"cn0":200,"P":1056487374,"D":{"f":21,"i":894},"lock":15,"sid":{"sat":11,"code":4}},{"L":{"f":191,"i":89296959},"flags":15,"cn0":194,"P":1073882640,"D":{"f":207,"i":1699},"lock":15,"sid":{"sat":5,"code":4}},{"L":{"f":231,"i":93697839},"flags":15,"cn0":173,"P":1124833553,"D":{"f":24,"i":-1035},"lock":15,"sid":{"sat":4,"code":4}},{"L":{"f":83,"i":121614040},"flags":15,"cn0":201,"P":1167734619,"D":{"f":226,"i":-1502},"lock":15,"sid":{"sat":35,"code":12}},{"L":{"f":113,"i":129280301},"flags":15,"cn0":172,"P":1241346179,"D":{"f":245,"i":-3010},"lock":15,"sid":{"sat":26,"code":12}},{"L":{"f":94,"i":132894880},"flags":15,"cn0":161,"P":1276053047,"D":{"f":15,"i":2248},"lock":15,"sid":{"sat":34,"code":12}},{"L":{"f":29,"i":125181022},"flags":15,"cn0":189,"P":1201984979,"D":{"f":39,"i":-1311},"lock":15,"sid":{"sat":24,"code":12}}],"payload":"aFMvEAAAAAAyCEGLSTE9GmOLBnxC+wmuDw8UAxclAkAD3tcG7YgIJ9APDwUDSkBvPrj+pwbrD/S0zw8PCgMzmAtDtzQuB93L+rG0Dw8EA+dkJT8lFsIG8FMGAcsPDxUDQ5XjRALquAXsm/LVrQ8PCQTGSjE9VBQXBcpQ/P3NDw8UBM63+D6DBTwFCn4DFcgPDwsEECYCQD+QUgW/owbPwg8PBQQRmQtDL7eVBef1+xitDw8EBFs3mkXYrj8HUyL64skPDyMMg3D9SS2ptAdxPvT1rA8PGgw3Bg9MoNDrB17ICA+hDw8iDNPVpEdeHHYHHeH6J70PDxgM","header":{"n_obs":65,"t":{"ns_residual":0,"wn":2098,"tow":271537000}},"crc":28423} +{"length":249,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":197,"i":134642134},"flags":15,"cn0":161,"P":1292830370,"D":{"f":177,"i":1314},"lock":15,"sid":{"sat":25,"code":12}},{"L":{"f":149,"i":121063316},"flags":15,"cn0":184,"P":1162446825,"D":{"f":27,"i":1610},"lock":15,"sid":{"sat":12,"code":12}},{"L":{"f":161,"i":124521643},"flags":15,"cn0":185,"P":1195653585,"D":{"f":26,"i":-301},"lock":15,"sid":{"sat":19,"code":12}},{"L":{"f":231,"i":124650163},"flags":15,"cn0":193,"P":1196887666,"D":{"f":129,"i":2381},"lock":15,"sid":{"sat":22,"code":12}},{"L":{"f":88,"i":93613844},"flags":15,"cn0":210,"P":1162446767,"D":{"f":134,"i":1245},"lock":15,"sid":{"sat":12,"code":13}},{"L":{"f":44,"i":116449519},"flags":15,"cn0":194,"P":1107980310,"D":{"f":112,"i":-1029},"lock":15,"sid":{"sat":12,"code":14}},{"L":{"f":219,"i":132450086},"flags":15,"cn0":191,"P":1260220601,"D":{"f":85,"i":1080},"lock":15,"sid":{"sat":25,"code":14}},{"L":{"f":125,"i":125398672},"flags":15,"cn0":188,"P":1193128641,"D":{"f":203,"i":1044},"lock":15,"sid":{"sat":11,"code":14}},{"L":{"f":247,"i":118453863},"flags":15,"cn0":203,"P":1127050904,"D":{"f":111,"i":-1752},"lock":15,"sid":{"sat":24,"code":14}},{"L":{"f":21,"i":143393950},"flags":15,"cn0":157,"P":1364348023,"D":{"f":246,"i":-3173},"lock":15,"sid":{"sat":31,"code":14}},{"L":{"f":149,"i":144573120},"flags":15,"cn0":151,"P":1375567470,"D":{"f":0,"i":-2137},"lock":15,"sid":{"sat":33,"code":14}},{"L":{"f":74,"i":101487727},"flags":15,"cn0":201,"P":1260220569,"D":{"f":70,"i":826},"lock":15,"sid":{"sat":25,"code":20}},{"L":{"f":221,"i":90763413},"flags":15,"cn0":215,"P":1127051459,"D":{"f":145,"i":-1343},"lock":15,"sid":{"sat":24,"code":20}},{"L":{"f":243,"i":96084674},"flags":15,"cn0":194,"P":1193128446,"D":{"f":9,"i":801},"lock":15,"sid":{"sat":11,"code":20}}],"payload":"aFMvEAAAAAAyCEKiBg9N1nkGCMUiBbGhDw8ZDOmHSUWURzcHlUoGG7gPDwwM0TlER6sMbAeh0/4auQ8PEwxyDldHswJuB+dNCYHBDw8WDK+HSUUUb5QFWN0EhtIPDwwNFnAKQu/g8AYs+/twwg8PDA65cB1LJgflB9s4BFW/Dw8ZDsGyHUeQbnkHfRQEy7wPDwsOmG4tQ2d2Dwf3KPlvyw8PGA53TFJRngSMCBWb8/adDw8fDm5+/VHAAp4Ilaf3AJcPDyEOmXAdS2+UDAZKOgNGyQ8PGRTDcC1DlfBoBd3B+pHXDw8YFP6xHUfCIroF8yEDCcIPDwsU","header":{"n_obs":66,"t":{"ns_residual":0,"wn":2098,"tow":271537000}},"crc":48757} +{"length":62,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":240,"i":109873327},"flags":15,"cn0":174,"P":1364348136,"D":{"f":51,"i":-2433},"lock":15,"sid":{"sat":31,"code":20}},{"L":{"f":66,"i":89227584},"flags":15,"cn0":206,"P":1107980148,"D":{"f":82,"i":-789},"lock":15,"sid":{"sat":12,"code":20}},{"L":{"f":39,"i":110776877},"flags":15,"cn0":169,"P":1375567448,"D":{"f":253,"i":-1642},"lock":15,"sid":{"sat":33,"code":20}}],"payload":"aFMvEAAAAAAyCEPoTFJRr4iMBvB/9jOuDw8fFHRvCkJAgVEFQuv8Us4PDwwUWH79US1SmgYnlvn9qQ8PIRQ=","header":{"n_obs":67,"t":{"ns_residual":0,"wn":2098,"tow":271537000}},"crc":21370} +{"length":9,"l2ca_bias":0,"preamble":85,"l2p_bias":0,"sender":22963,"msg_type":117,"payload":"/wAAAAAAAAAA","l1ca_bias":0,"mask":255,"crc":49809,"l1p_bias":0} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MghoUy8QAAAAAAE=","wn":2098,"tow":271537000,"crc":23252} +{"length":16,"flags":17,"ns":999999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EWhTLxDkBwMZAxkS/smaOw==","day":25,"tow":271537000,"year":2020,"crc":379,"minutes":25,"month":3,"seconds":18} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-18.153477352967236,"preamble":85,"sender":22963,"msg_type":522,"payload":"aFMvEIdWz+1l6kJAF+IMHVaSXsDCq7NKSicywAECWwQPBg==","lat":37.83123562454153,"tow":271537000,"h_accuracy":513,"crc":453,"lon":-122.28650594957467} +{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"aFMvEAEAAAAFAAAAHQAAAPEAywIPAg==","n":1,"d":29,"tow":271537000,"h_accuracy":241,"crc":37938,"e":5} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"aFMvEJsAhwBMAEgAcgAG","tow":271537000,"crc":4169,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"aFMvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271537000,"h_accuracy":0,"crc":62237,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"aFMvEP//","tow":271537000,"crc":51837} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":4,"flags":2147616000,"preamble":85,"sender":22963,"msg_type":65535,"payload":"AAUCgA==","crc":40942} +{"length":24,"z":3890655.0240602265,"preamble":85,"sender":22963,"msg_type":72,"payload":"UO0a3iqORMHK1UJhIkRQwc9nFIPvrk1B","crc":2168,"x":-2694229.735196747,"y":-4264073.519704292} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgjMUy8QAAAAAAE=","wn":2098,"tow":271537100,"crc":56949} +{"length":16,"flags":17,"ns":99999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EcxTLxDkBwMZAxkT/uD1BQ==","day":25,"tow":271537100,"year":2020,"crc":11584,"minutes":25,"month":3,"seconds":19} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-18.14732716567941,"preamble":85,"sender":22963,"msg_type":522,"payload":"zFMvEBEWru1l6kJAGesIHVaSXsDLZ647tyUywAECWwQPBg==","lat":37.83123560905745,"tow":271537100,"h_accuracy":513,"crc":963,"lon":-122.28650594588215} +{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"zFMvEP////8HAAAA9/////EAywIPAg==","n":-1,"d":-9,"tow":271537100,"h_accuracy":241,"crc":19704,"e":7} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"zFMvEJsAhwBMAEgAcgAG","tow":271537100,"crc":17149,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"zFMvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271537100,"h_accuracy":0,"crc":33892,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"zFMvEP//","tow":271537100,"crc":11764} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MggwVC8QAAAAAAE=","wn":2098,"tow":271537200,"crc":47124} +{"length":16,"flags":17,"ns":199999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"ETBULxDkBwMZAxkT/sHrCw==","day":25,"tow":271537200,"year":2020,"crc":15472,"minutes":25,"month":3,"seconds":19} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-18.146840802959957,"preamble":85,"sender":22963,"msg_type":522,"payload":"MFQvEPhInO1l6kJAnqAkHVaSXsBwbt5blyUywAECWwQPBg==","lat":37.83123560076814,"tow":271537200,"h_accuracy":513,"crc":18276,"lon":-122.28650597168823} +{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"MFQvEAIAAAD4////GQAAAPEAywIPAg==","n":2,"d":25,"tow":271537200,"h_accuracy":241,"crc":56603,"e":-8} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"MFQvEJsAhwBMAEgAcgAG","tow":271537200,"crc":9097,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"MFQvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271537200,"h_accuracy":0,"crc":52258,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"MFQvEP//","tow":271537200,"crc":53375} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":139,"af0":-9.685755e-6,"w":0.7879862351781709,"dn":5.216288707933817e-9,"c_us":3.6917627e-6,"c_uc":-2.0805746e-6,"ecc":5.77498646453023e-3,"sqrta":5153.621828079224,"preamble":85,"toc":{"wn":2098,"tow":273600},"sender":22963,"msg_type":138,"omegadot":-8.661789369723447e-9,"payload":"BQDALAQAMggAAABAQDgAAAEAAABAsgBALsIAFJZDAKALtgDAdzYAAACxAACAMRHWGb5eZzY+T/dUY52P0T8AAAAgg6d3PwAAIDCfIbRARtfJCOom8b9M1QV73plCvqU6ueguN+k/EhTM+Tx17j/o1QJxDTj7vQCAIrcAAECrAAAAAMAsBAAyCBsbAA==","inc":0.9518113020755001,"inc_dot":-3.9608792722345795e-10,"tgd":-1.1175871e-8,"iode":27,"crc":17495,"common":{"health_bits":0,"fit_interval":14400,"valid":1,"sid":{"sat":5,"code":0},"toe":{"wn":2098,"tow":273600},"ura":2},"c_rs":-43.5625,"m0":0.2743905515707085,"af2":0,"c_rc":300.15625,"af1":-6.82121e-13,"c_is":3.7252903e-9,"c_ic":-1.8626451e-9,"omega0":-1.0720005362795333,"iodc":27} +{"length":139,"af0":-7.2387047e-6,"w":0.913959268152067,"dn":4.643050544549101e-9,"c_us":4.1704625e-6,"c_uc":-2.9560179e-6,"ecc":9.245076566003263e-3,"sqrta":5153.570272445679,"preamble":85,"toc":{"wn":2098,"tow":273600},"sender":22963,"msg_type":138,"omegadot":-8.311417632477088e-9,"payload":"GQDALAQAMggAAABAQDgAAAEAAADAMQAgX8IA/JZDAGBGtgDwizYAADa0AAAotFSYPIsW8TM+5hz4wc+O/z8AAAAsFe+CPwAAYP2RIbRAFhvTsJnQAEDKAtIKQNlBvuja0oEnP+0/Qj1ZqGzq7j/cS8aiBt3svQDk8rYAABgsAAAAAMAsBAAyCAUFAA==","inc":0.9661162651117723,"inc_dot":-2.100087477072978e-10,"tgd":5.5879354e-9,"iode":5,"crc":19841,"common":{"health_bits":0,"fit_interval":14400,"valid":1,"sid":{"sat":25,"code":0},"toe":{"wn":2098,"tow":273600},"ura":2},"c_rs":-55.78125,"m0":1.9723661019250414,"af2":0,"c_rc":301.96875,"af1":2.16005e-12,"c_is":-1.5646219e-7,"c_ic":-1.6950071e-7,"omega0":2.101855641786993,"iodc":5} +{"length":139,"af0":1.3691094e-4,"w":1.124390026032068,"dn":4.266606292706428e-9,"c_us":4.5280904e-6,"c_uc":-3.33786e-6,"ecc":8.09362216386944e-3,"sqrta":5153.721719741821,"preamble":85,"toc":{"wn":2098,"tow":273600},"sender":22963,"msg_type":138,"omegadot":-8.031048811133161e-9,"payload":"DADALAQAMggAAABAQDgAAAEAAABYsgCge8IApJZDAABgtgDwlzYAAKAyAAAgtI3VKOguUzI+msQrVfHbAUAAAACUY5OAPwAAoMK4IbRAOKAgCzJcAUCtOHejHT9BvuQZXGWA/fE/c6ROYnhS7z8M3+7JXEfxvcCPDzkAAJisAAAAAMAsBAAyCBcXAA==","inc":0.9788171691954076,"inc_dot":-2.5143904487404365e-10,"tgd":-1.2572855e-8,"iode":23,"crc":50178,"common":{"health_bits":0,"fit_interval":14400,"valid":1,"sid":{"sat":12,"code":0},"toe":{"wn":2098,"tow":273600},"ura":2},"c_rs":-62.90625,"m0":2.2323938993436743,"af2":0,"c_rc":301.28125,"af1":-4.3201e-12,"c_is":-1.4901161e-7,"c_ic":1.8626451e-8,"omega0":2.1700173253375645,"iodc":23} +{"length":139,"af0":-6.4762775e-5,"w":1.8704240804535182,"dn":3.736227057425242e-9,"c_us":1.2401491e-5,"c_uc":-9.741634e-7,"ecc":1.2328720185905695e-3,"sqrta":5153.613843917847,"preamble":85,"toc":{"wn":2098,"tow":273600},"sender":22963,"msg_type":138,"omegadot":-7.594244902211349e-9,"payload":"HQDALAQAMggAAABAQDgAAAEAAAAwsgCAYsEAABlDAMCCtQAQUDcAAOAyAACQMqWXiWwGDDA+XB/TSA2OvL8AAABACjNUPwAA4CSdIbRAtqOeydGKCMBFFRj0+k5AvgMu88xB7f0/FO/KteyN7z8ahhkPrDSlvUDRh7gAACKtAAAAAMAsBAAyCEREAA==","inc":0.9860747862471464,"inc_dot":-9.643258823294287e-12,"tgd":-1.0244548e-8,"iode":68,"crc":20617,"common":{"health_bits":0,"fit_interval":14400,"valid":1,"sid":{"sat":29,"code":0},"toe":{"wn":2098,"tow":273600},"ura":2},"c_rs":-14.15625,"m0":-0.11154253986307822,"af2":0,"c_rc":153,"af1":-9.208634e-12,"c_is":1.6763806e-8,"c_ic":2.6077032e-8,"omega0":-3.067782950547975,"iodc":68} +{"length":139,"af0":-4.2781373e-4,"w":-1.6429787675404337,"dn":4.696267046944317e-9,"c_us":7.232651e-6,"c_uc":4.408881e-6,"ecc":1.97759565198794e-2,"sqrta":5153.662273406982,"preamble":85,"toc":{"wn":2098,"tow":273600},"sender":22963,"msg_type":138,"omegadot":-7.878185300897237e-9,"payload":"AgDALAQAMggAAABAQDgAAAEAAACYsgCwpkIAuGpDAPCTNgCw8jYAAGg0AAAsNA3HXKiZKzQ+FOBzlwsNA8AAAAD6JUCUPwAAwIqpIbRAOU/fvEhCAcC2dBUDFOtAvp68qRqkSfq/uJiunyKq7j/puaCuBosEPjBM4LkAAOisAAAAAMAsBAAyCDQ0AA==","inc":0.9582684630193148,"inc_dot":5.978820470442458e-10,"tgd":-1.7695129e-8,"iode":52,"crc":18755,"common":{"health_bits":0,"fit_interval":14400,"valid":1,"sid":{"sat":2,"code":0},"toe":{"wn":2098,"tow":273600},"ura":2},"c_rs":83.34375,"m0":-2.3813697654950463,"af2":0,"c_rc":234.71875,"af1":-6.5938366e-12,"c_is":1.6018748e-7,"c_ic":2.1606684e-7,"omega0":-2.1573652988098755,"iodc":52} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgiUVC8QAAAAAAE=","wn":2098,"tow":271537300,"crc":15541} +{"length":16,"flags":17,"ns":299999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EZRULxDkBwMZAxkT/qLhEQ==","day":25,"tow":271537300,"year":2020,"crc":61519,"minutes":25,"month":3,"seconds":19} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-18.13790012760019,"preamble":85,"sender":22963,"msg_type":522,"payload":"lFQvEKMnhO1l6kJAGiI9HVaSXsA0KDpsTSMywAECWwQPBg==","lat":37.83123558953164,"tow":271537300,"h_accuracy":513,"crc":43062,"lon":-122.28650599451103} +{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"lFQvEPr///8CAAAA1f////EAywIPAg==","n":-6,"d":-43,"tow":271537300,"h_accuracy":241,"crc":4626,"e":2} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"lFQvEJsAhwBMAEgAcgAG","tow":271537300,"crc":28989,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"lFQvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271537300,"h_accuracy":0,"crc":47963,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"lFQvEP//","tow":271537300,"crc":14326} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":237,"states":[{"cn0":212,"mesid":{"sat":5,"code":0}},{"cn0":178,"mesid":{"sat":21,"code":0}},{"cn0":186,"mesid":{"sat":2,"code":0}},{"cn0":163,"mesid":{"sat":31,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":216,"mesid":{"sat":25,"code":0}},{"cn0":206,"mesid":{"sat":12,"code":0}},{"cn0":211,"mesid":{"sat":29,"code":0}},{"cn0":205,"mesid":{"sat":18,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":204,"mesid":{"sat":131,"code":2}},{"cn0":204,"mesid":{"sat":25,"code":1}},{"cn0":188,"mesid":{"sat":12,"code":1}},{"cn0":150,"mesid":{"sat":31,"code":1}},{"cn0":197,"mesid":{"sat":18,"code":1}},{"cn0":194,"mesid":{"sat":29,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":194,"mesid":{"sat":5,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":212,"mesid":{"sat":100,"code":3}},{"cn0":177,"mesid":{"sat":98,"code":3}},{"cn0":174,"mesid":{"sat":102,"code":3}},{"cn0":208,"mesid":{"sat":101,"code":3}},{"cn0":207,"mesid":{"sat":93,"code":3}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":180,"mesid":{"sat":106,"code":3}},{"cn0":203,"mesid":{"sat":104,"code":3}},{"cn0":173,"mesid":{"sat":98,"code":4}},{"cn0":205,"mesid":{"sat":102,"code":4}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":200,"mesid":{"sat":100,"code":4}},{"cn0":194,"mesid":{"sat":101,"code":4}},{"cn0":189,"mesid":{"sat":104,"code":4}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":173,"mesid":{"sat":106,"code":4}},{"cn0":200,"mesid":{"sat":35,"code":12}},{"cn0":172,"mesid":{"sat":26,"code":12}},{"cn0":161,"mesid":{"sat":34,"code":12}},{"cn0":189,"mesid":{"sat":24,"code":12}},{"cn0":160,"mesid":{"sat":25,"code":12}},{"cn0":184,"mesid":{"sat":12,"code":12}},{"cn0":185,"mesid":{"sat":19,"code":12}},{"cn0":193,"mesid":{"sat":22,"code":12}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":210,"mesid":{"sat":12,"code":13}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":195,"mesid":{"sat":12,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":192,"mesid":{"sat":25,"code":14}},{"cn0":189,"mesid":{"sat":11,"code":14}},{"cn0":203,"mesid":{"sat":24,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":158,"mesid":{"sat":31,"code":14}},{"cn0":152,"mesid":{"sat":33,"code":14}},{"cn0":201,"mesid":{"sat":25,"code":20}},{"cn0":215,"mesid":{"sat":24,"code":20}},{"cn0":194,"mesid":{"sat":11,"code":20}},{"cn0":174,"mesid":{"sat":31,"code":20}},{"cn0":206,"mesid":{"sat":12,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":169,"mesid":{"sat":33,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}}],"preamble":85,"sender":22963,"msg_type":97,"payload":"BQDUFQCyAgC6HwCjAAAAAAAAGQDYDADOHQDTEgDNAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwLMGQHMDAG8HwGWEgHFHQHCAAAABQHCAAAAAAAAAAAAAAAAZAPUYgOxZgOuZQPQXQPPAAAAagO0aAPLYgStZgTNAAAAZATIZQTCaAS9AAAAagStIwzIGgysIgyhGAy9GQygDAy4Ewy5FgzBAAAADA3SAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADA7DAAAAGQ7ACw69GA7LAAAAHw6eIQ6YGRTJGBTXCxTCHxSuDBTOAAAAIRSpAAAA","crc":58534} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"Mgj4VC8QAAAAAAE=","wn":2098,"tow":271537400,"crc":29056} +{"length":16,"flags":17,"ns":399999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EfhULxDkBwMZAxkT/oPXFw==","day":25,"tow":271537400,"year":2020,"crc":34214,"minutes":25,"month":3,"seconds":19} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-18.137786438032347,"preamble":85,"sender":22963,"msg_type":522,"payload":"+FQvEI8Vau1l6kJAQotjHVaSXsBnLtX4RSMywAECWwQPBg==","lat":37.83123557739156,"tow":271537400,"h_accuracy":513,"crc":3640,"lon":-122.28650603028385} +{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"+FQvEAQAAAD3////BwAAAPEAywIPAg==","n":4,"d":7,"tow":271537400,"h_accuracy":241,"crc":55964,"e":-9} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"+FQvEJsAhwBMAEgAcgAG","tow":271537400,"crc":31447,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"+FQvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271537400,"h_accuracy":0,"crc":64846,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"+FQvEP//","tow":271537400,"crc":25357} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":9,"l2ca_bias":0,"preamble":85,"l2p_bias":0,"sender":22963,"msg_type":117,"payload":"/wAAAAAAAAAA","l1ca_bias":0,"mask":255,"crc":49809,"l1p_bias":0} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MghcVS8QAAAAAAE=","wn":2098,"tow":271537500,"crc":45810} +{"length":16,"flags":17,"ns":499999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EVxVLxDkBwMZAxkT/mTNHQ==","day":25,"tow":271537500,"year":2020,"crc":50208,"minutes":25,"month":3,"seconds":19} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-18.141565761917843,"preamble":85,"sender":22963,"msg_type":522,"payload":"XFUvEGfgYu1l6kJAgQh0HVaSXsCjq12nPSQywAECWwQPBg==","lat":37.83123557403524,"tow":271537500,"h_accuracy":513,"crc":24986,"lon":-122.28650604564065} +{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"XFUvEP////8AAAAAEgAAAPEAywIPAg==","n":-1,"d":18,"tow":271537500,"h_accuracy":241,"crc":14091,"e":0} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"XFUvEJsAhwBMAEgAcgAG","tow":271537500,"crc":21250,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"XFUvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271537500,"h_accuracy":0,"crc":24513,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"XFUvEP//","tow":271537500,"crc":11989} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgjAVS8QAAAAAAE=","wn":2098,"tow":271537600,"crc":60334} +{"length":16,"flags":17,"ns":599999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EcBVLxDkBwMZAxkT/kXDIw==","day":25,"tow":271537600,"year":2020,"crc":10027,"minutes":25,"month":3,"seconds":19} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-18.14429355405878,"preamble":85,"sender":22963,"msg_type":522,"payload":"wFUvEKXgXu1l6kJAl7pzHVaSXsDBtB9s8CQywAECWwQPBg==","lat":37.831235572173036,"tow":271537600,"h_accuracy":513,"crc":56677,"lon":-122.2865060453572} +{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"wFUvEPz///8GAAAA/v////EAywIPAg==","n":-4,"d":-2,"tow":271537600,"h_accuracy":241,"crc":14193,"e":6} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"wFUvEJsAhwBMAEgAcgAG","tow":271537600,"crc":62829,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"wFUvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271537600,"h_accuracy":0,"crc":41456,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"wFUvEP//","tow":271537600,"crc":60306} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"message_type":25,"length":34,"data":[156,27,253,64,32,4,0,191,224,0,31,226,250,110,162,127,48,26,0,128,48,0,0,0,0,190,144],"preamble":85,"sender":22963,"msg_type":30583,"payload":"gwJBVS8QGZwb/UAgBAC/4AAf4vpuon8wGgCAMAAAAAC+kA==","tow":271537473,"crc":33970,"sid":{"sat":131,"code":2}} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MggkVi8QAAAAAAE=","wn":2098,"tow":271537700,"crc":63651} +{"length":16,"flags":17,"ns":699999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"ESRWLxDkBwMZAxkT/ia5KQ==","day":25,"tow":271537700,"year":2020,"crc":22230,"minutes":25,"month":3,"seconds":19} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-18.144356748724352,"preamble":85,"sender":22963,"msg_type":522,"payload":"JFYvEJm3bu1l6kJAy/VoHVaSXsBdulqQ9CQywAECWwQPBg==","lat":37.83123557954895,"tow":271537700,"h_accuracy":513,"crc":34250,"lon":-122.28650603532803} +{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"JFYvEAsAAAAJAAAABAAAAPEAywIPAg==","n":11,"d":4,"tow":271537700,"h_accuracy":241,"crc":44221,"e":9} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"JFYvEJsAhwBMAEgAcgAG","tow":271537700,"crc":115,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"JFYvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271537700,"h_accuracy":0,"crc":28136,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"JFYvEP//","tow":271537700,"crc":35033} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgiIVi8QAAAAAAE=","wn":2098,"tow":271537800,"crc":22013} +{"length":16,"flags":17,"ns":799999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EYhWLxDkBwMZAxkT/gevLw==","day":25,"tow":271537800,"year":2020,"crc":23490,"minutes":25,"month":3,"seconds":19} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-18.14805988196711,"preamble":85,"sender":22963,"msg_type":522,"payload":"iFYvEAS6Wu1l6kJAp7tiHVaSXsD75Z5A5yUywAECWwQPBg==","lat":37.831235570240125,"tow":271537800,"h_accuracy":513,"crc":30570,"lon":-122.28650602952858} +{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"iFYvEPn///8CAAAAFQAAAPEAywIPAg==","n":-7,"d":21,"tow":271537800,"h_accuracy":241,"crc":50724,"e":2} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"iFYvEJsAhwBMAEgAcgAG","tow":271537800,"crc":30082,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"iFYvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271537800,"h_accuracy":0,"crc":17458,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"iFYvEP//","tow":271537800,"crc":25106} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":237,"states":[{"cn0":212,"mesid":{"sat":5,"code":0}},{"cn0":178,"mesid":{"sat":21,"code":0}},{"cn0":186,"mesid":{"sat":2,"code":0}},{"cn0":164,"mesid":{"sat":31,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":216,"mesid":{"sat":25,"code":0}},{"cn0":206,"mesid":{"sat":12,"code":0}},{"cn0":211,"mesid":{"sat":29,"code":0}},{"cn0":205,"mesid":{"sat":18,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":204,"mesid":{"sat":131,"code":2}},{"cn0":204,"mesid":{"sat":25,"code":1}},{"cn0":188,"mesid":{"sat":12,"code":1}},{"cn0":149,"mesid":{"sat":31,"code":1}},{"cn0":196,"mesid":{"sat":18,"code":1}},{"cn0":194,"mesid":{"sat":29,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":193,"mesid":{"sat":5,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":212,"mesid":{"sat":11,"code":3}},{"cn0":177,"mesid":{"sat":9,"code":3}},{"cn0":174,"mesid":{"sat":20,"code":3}},{"cn0":207,"mesid":{"sat":5,"code":3}},{"cn0":207,"mesid":{"sat":10,"code":3}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":181,"mesid":{"sat":4,"code":3}},{"cn0":203,"mesid":{"sat":21,"code":3}},{"cn0":173,"mesid":{"sat":9,"code":4}},{"cn0":205,"mesid":{"sat":20,"code":4}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":200,"mesid":{"sat":11,"code":4}},{"cn0":195,"mesid":{"sat":5,"code":4}},{"cn0":189,"mesid":{"sat":0,"code":4}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":172,"mesid":{"sat":4,"code":4}},{"cn0":201,"mesid":{"sat":35,"code":12}},{"cn0":171,"mesid":{"sat":26,"code":12}},{"cn0":161,"mesid":{"sat":34,"code":12}},{"cn0":188,"mesid":{"sat":24,"code":12}},{"cn0":160,"mesid":{"sat":25,"code":12}},{"cn0":184,"mesid":{"sat":12,"code":12}},{"cn0":185,"mesid":{"sat":19,"code":12}},{"cn0":193,"mesid":{"sat":22,"code":12}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":209,"mesid":{"sat":12,"code":13}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":195,"mesid":{"sat":12,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":192,"mesid":{"sat":25,"code":14}},{"cn0":190,"mesid":{"sat":11,"code":14}},{"cn0":204,"mesid":{"sat":24,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":159,"mesid":{"sat":31,"code":14}},{"cn0":152,"mesid":{"sat":33,"code":14}},{"cn0":201,"mesid":{"sat":25,"code":20}},{"cn0":215,"mesid":{"sat":24,"code":20}},{"cn0":193,"mesid":{"sat":11,"code":20}},{"cn0":175,"mesid":{"sat":31,"code":20}},{"cn0":206,"mesid":{"sat":12,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":170,"mesid":{"sat":33,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}}],"preamble":85,"sender":22963,"msg_type":97,"payload":"BQDUFQCyAgC6HwCkAAAAAAAAGQDYDADOHQDTEgDNAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwLMGQHMDAG8HwGVEgHEHQHCAAAABQHBAAAAAAAAAAAAAAAACwPUCQOxFAOuBQPPCgPPAAAABAO1FQPLCQStFATNAAAACwTIBQTDAAS9AAAABASsIwzJGgyrIgyhGAy8GQygDAy4Ewy5FgzBAAAADA3RAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADA7DAAAAGQ7ACw6+GA7MAAAAHw6fIQ6YGRTJGBTXCxTBHxSvDBTOAAAAIRSqAAAA","crc":24828} +{"length":128,"preamble":85,"sender":22963,"msg_type":151,"payload":"AgAaHQUAKzUMAFEtFQB9GRkAbUYaAKEBHQChNx8AlQ4EAxUWBQMyIQkDXw4KA3EpCwOYJQwDqgMTAyIHFAMMMRUDlSUMDJQpEwwjIBQMDwIWDEMkGAyCIxkMnQ4aDGcVIgyOESMMIi0LDosyDA4PPBgObDYZDpcpHw5VESEOIA8=","crc":34187,"azel":[{"el":29,"az":26,"sid":{"sat":2,"code":0}},{"el":53,"az":43,"sid":{"sat":5,"code":0}},{"el":45,"az":81,"sid":{"sat":12,"code":0}},{"el":25,"az":125,"sid":{"sat":21,"code":0}},{"el":70,"az":109,"sid":{"sat":25,"code":0}},{"el":1,"az":161,"sid":{"sat":26,"code":0}},{"el":55,"az":161,"sid":{"sat":29,"code":0}},{"el":14,"az":149,"sid":{"sat":31,"code":0}},{"el":22,"az":21,"sid":{"sat":4,"code":3}},{"el":33,"az":50,"sid":{"sat":5,"code":3}},{"el":14,"az":95,"sid":{"sat":9,"code":3}},{"el":41,"az":113,"sid":{"sat":10,"code":3}},{"el":37,"az":152,"sid":{"sat":11,"code":3}},{"el":3,"az":170,"sid":{"sat":12,"code":3}},{"el":7,"az":34,"sid":{"sat":19,"code":3}},{"el":49,"az":12,"sid":{"sat":20,"code":3}},{"el":37,"az":149,"sid":{"sat":21,"code":3}},{"el":41,"az":148,"sid":{"sat":12,"code":12}},{"el":32,"az":35,"sid":{"sat":19,"code":12}},{"el":2,"az":15,"sid":{"sat":20,"code":12}},{"el":36,"az":67,"sid":{"sat":22,"code":12}},{"el":35,"az":130,"sid":{"sat":24,"code":12}},{"el":14,"az":157,"sid":{"sat":25,"code":12}},{"el":21,"az":103,"sid":{"sat":26,"code":12}},{"el":17,"az":142,"sid":{"sat":34,"code":12}},{"el":45,"az":34,"sid":{"sat":35,"code":12}},{"el":50,"az":139,"sid":{"sat":11,"code":14}},{"el":60,"az":15,"sid":{"sat":12,"code":14}},{"el":54,"az":108,"sid":{"sat":24,"code":14}},{"el":41,"az":151,"sid":{"sat":25,"code":14}},{"el":17,"az":85,"sid":{"sat":31,"code":14}},{"el":15,"az":32,"sid":{"sat":33,"code":14}}]} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgjsVi8QAAAAAAE=","wn":2098,"tow":271537900,"crc":12599} +{"length":16,"flags":17,"ns":899999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EexWLxDkBwMZAxkT/uikNQ==","day":25,"tow":271537900,"year":2020,"crc":38124,"minutes":25,"month":3,"seconds":19} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-18.15102221152946,"preamble":85,"sender":22963,"msg_type":522,"payload":"7FYvEOAIWO1l6kJAuDtkHVaSXsAXfUNkqSYywAECWwQPBg==","lat":37.831235568986585,"tow":271537900,"h_accuracy":513,"crc":43377,"lon":-122.2865060309258} +{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"7FYvEP7/////////FAAAAPEAywIPAg==","n":-2,"d":20,"tow":271537900,"h_accuracy":241,"crc":39507,"e":-1} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"7FYvEJsAhwBMAEgAcgAG","tow":271537900,"crc":22829,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"7FYvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271537900,"h_accuracy":0,"crc":23684,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"7FYvEP//","tow":271537900,"crc":15275} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":249,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":106,"i":110568585},"flags":15,"cn0":212,"P":1052024990,"D":{"f":58,"i":-199},"lock":15,"sid":{"sat":5,"code":0}},{"L":{"f":109,"i":121774799},"flags":15,"cn0":178,"P":1158648690,"D":{"f":248,"i":2167},"lock":15,"sid":{"sat":21,"code":0}},{"L":{"f":89,"i":123395339},"flags":15,"cn0":185,"P":1174067224,"D":{"f":113,"i":-2479},"lock":15,"sid":{"sat":2,"code":0}},{"L":{"f":168,"i":128747595},"flags":15,"cn0":164,"P":1224992623,"D":{"f":106,"i":-405},"lock":15,"sid":{"sat":31,"code":0}},{"L":{"f":223,"i":107849362},"flags":15,"cn0":216,"P":1026152503,"D":{"f":5,"i":-1140},"lock":15,"sid":{"sat":25,"code":0}},{"L":{"f":131,"i":114167080},"flags":15,"cn0":206,"P":1086263548,"D":{"f":138,"i":-2976},"lock":15,"sid":{"sat":12,"code":0}},{"L":{"f":182,"i":110726808},"flags":15,"cn0":211,"P":1053530475,"D":{"f":237,"i":1480},"lock":15,"sid":{"sat":29,"code":0}},{"L":{"f":18,"i":84038485},"flags":15,"cn0":204,"P":1026152546,"D":{"f":51,"i":-889},"lock":15,"sid":{"sat":25,"code":1}},{"L":{"f":16,"i":88961393},"flags":15,"cn0":188,"P":1086263495,"D":{"f":63,"i":-2319},"lock":15,"sid":{"sat":12,"code":1}},{"L":{"f":54,"i":100322804},"flags":15,"cn0":150,"P":1224992527,"D":{"f":236,"i":-321},"lock":15,"sid":{"sat":31,"code":1}},{"L":{"f":3,"i":86280632},"flags":15,"cn0":194,"P":1053530394,"D":{"f":207,"i":1152},"lock":15,"sid":{"sat":29,"code":1}},{"L":{"f":143,"i":86157368},"flags":15,"cn0":193,"P":1052024911,"D":{"f":154,"i":-156},"lock":15,"sid":{"sat":5,"code":1}},{"L":{"f":124,"i":112909819},"flags":15,"cn0":212,"P":1056476324,"D":{"f":69,"i":1147},"lock":15,"sid":{"sat":11,"code":3}},{"L":{"f":27,"i":123438896},"flags":15,"cn0":177,"P":1155806752,"D":{"f":91,"i":-4408},"lock":15,"sid":{"sat":9,"code":3}}],"payload":"UFcvEAAAAAAyCECeoLQ+iSSXBmo5/zrUDw8FAHKTD0XPIkIHbXcI+LIPDxUAGNj6RQvdWgdZUfZxuQ8PAgBv5wNJS4isB6hr/mqkDw8fADfYKT2Spm0G34z7BdgPDxkA/BC/QCgNzgaDYPSKzg8PDABrmcs+mI6ZBrbIBe3TDw8dAGLYKT1VUwIFEof8M8wPDxkBxxC/QHFxTQUQ8fY/vA8PDAEP5wNJ9M36BTa//uyWDw8fARqZyz64iSQFA4AEz8IPDx0BT6C0PjioIgWPZP+awQ8PBQGkjPg++926Bnx7BEXUDw8LAyA25EQwh1sHG8juW7EPDwkD","header":{"n_obs":64,"t":{"ns_residual":0,"wn":2098,"tow":271538000}},"crc":60154} +{"length":249,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":127,"i":109799384},"flags":15,"cn0":174,"P":1026651596,"D":{"f":147,"i":-1214},"lock":15,"sid":{"sat":20,"code":3}},{"L":{"f":216,"i":114808188},"flags":15,"cn0":207,"P":1073861956,"D":{"f":237,"i":2182},"lock":15,"sid":{"sat":5,"code":3}},{"L":{"f":233,"i":111676073},"flags":15,"cn0":207,"P":1047507007,"D":{"f":240,"i":-3057},"lock":15,"sid":{"sat":10,"code":3}},{"L":{"f":186,"i":120469997},"flags":15,"cn0":181,"P":1124845815,"D":{"f":42,"i":-1335},"lock":15,"sid":{"sat":4,"code":3}},{"L":{"f":112,"i":113381331},"flags":15,"cn0":203,"P":1059400158,"D":{"f":211,"i":1618},"lock":15,"sid":{"sat":21,"code":3}},{"L":{"f":249,"i":96008039},"flags":15,"cn0":174,"P":1155806873,"D":{"f":85,"i":-3429},"lock":15,"sid":{"sat":9,"code":4}},{"L":{"f":0,"i":85399557},"flags":15,"cn0":205,"P":1026651950,"D":{"f":54,"i":-944},"lock":15,"sid":{"sat":20,"code":4}},{"L":{"f":211,"i":87818758},"flags":15,"cn0":200,"P":1056476634,"D":{"f":202,"i":892},"lock":15,"sid":{"sat":11,"code":4}},{"L":{"f":201,"i":89295261},"flags":15,"cn0":195,"P":1073862234,"D":{"f":174,"i":1697},"lock":15,"sid":{"sat":5,"code":4}},{"L":{"f":89,"i":93698877},"flags":15,"cn0":172,"P":1124846001,"D":{"f":203,"i":-1038},"lock":15,"sid":{"sat":4,"code":4}},{"L":{"f":109,"i":121615542},"flags":15,"cn0":201,"P":1167749042,"D":{"f":238,"i":-1503},"lock":15,"sid":{"sat":35,"code":12}},{"L":{"f":251,"i":129283310},"flags":15,"cn0":172,"P":1241375081,"D":{"f":38,"i":-3011},"lock":15,"sid":{"sat":26,"code":12}},{"L":{"f":137,"i":132892632},"flags":15,"cn0":161,"P":1276031464,"D":{"f":104,"i":2249},"lock":15,"sid":{"sat":34,"code":12}},{"L":{"f":187,"i":125182334},"flags":15,"cn0":188,"P":1201997590,"D":{"f":206,"i":-1314},"lock":15,"sid":{"sat":24,"code":12}}],"payload":"UFcvEAAAAAAyCEHMdTE92GeLBn9C+5OuDw8UA0TVAUB81dcG2IYI7c8PDwUDP7BvPqkKqAbpD/Twzw8PCgP3yAtD7TkuB7rJ+iq1Dw8EA94pJT/TD8IGcFIG08sPDxUDmTbkRGf3uAX5m/JVrg8PCQQudzE9BRgXBQBQ/DbNDw8UBNqN+D4GAjwF03wDysgPDwsEWtYBQJ2JUgXJoQauww8PBQSxyQtDPbuVBVny+8usDw8EBLJvmkW2tD8HbSH67skPDyMMaeH9Se60tAf7PfQmrA8PGgzosQ5M2MfrB4nJCGihDw8iDBYHpUd+IXYHu976zrwPDxgM","header":{"n_obs":65,"t":{"ns_residual":0,"wn":2098,"tow":271538000}},"crc":47975} +{"length":249,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":122,"i":134640820},"flags":15,"cn0":160,"P":1292817759,"D":{"f":15,"i":1316},"lock":15,"sid":{"sat":25,"code":12}},{"L":{"f":232,"i":121061706},"flags":15,"cn0":185,"P":1162431374,"D":{"f":207,"i":1610},"lock":15,"sid":{"sat":12,"code":12}},{"L":{"f":42,"i":124521945},"flags":15,"cn0":185,"P":1195656482,"D":{"f":220,"i":-301},"lock":15,"sid":{"sat":19,"code":12}},{"L":{"f":155,"i":124647783},"flags":15,"cn0":193,"P":1196864813,"D":{"f":215,"i":2380},"lock":15,"sid":{"sat":22,"code":12}},{"L":{"f":164,"i":93612599},"flags":15,"cn0":209,"P":1162431306,"D":{"f":9,"i":1245},"lock":15,"sid":{"sat":12,"code":13}},{"L":{"f":112,"i":116450548},"flags":15,"cn0":195,"P":1107990094,"D":{"f":166,"i":-1030},"lock":15,"sid":{"sat":12,"code":14}},{"L":{"f":120,"i":132449008},"flags":15,"cn0":192,"P":1260210335,"D":{"f":143,"i":1078},"lock":15,"sid":{"sat":25,"code":14}},{"L":{"f":195,"i":125397628},"flags":15,"cn0":190,"P":1193118708,"D":{"f":18,"i":1043},"lock":15,"sid":{"sat":11,"code":14}},{"L":{"f":6,"i":118455617},"flags":15,"cn0":204,"P":1127067576,"D":{"f":243,"i":-1754},"lock":15,"sid":{"sat":24,"code":14}},{"L":{"f":143,"i":143397123},"flags":15,"cn0":159,"P":1364378215,"D":{"f":216,"i":-3172},"lock":15,"sid":{"sat":31,"code":14}},{"L":{"f":153,"i":144575260},"flags":15,"cn0":152,"P":1375587819,"D":{"f":77,"i":-2141},"lock":15,"sid":{"sat":33,"code":14}},{"L":{"f":0,"i":101486901},"flags":15,"cn0":201,"P":1260210309,"D":{"f":3,"i":826},"lock":15,"sid":{"sat":25,"code":20}},{"L":{"f":30,"i":90764757},"flags":15,"cn0":215,"P":1127068141,"D":{"f":62,"i":-1344},"lock":15,"sid":{"sat":24,"code":20}},{"L":{"f":51,"i":96083875},"flags":15,"cn0":193,"P":1193118513,"D":{"f":72,"i":800},"lock":15,"sid":{"sat":11,"code":20}}],"payload":"UFcvEAAAAAAyCEJf1Q5NtHQGCHokBQ+gDw8ZDI5LSUVKQTcH6EoGz7kPDwwMIkVER9kNbAcq0/7cuQ8PEwwttVZHZ/ltB5tMCdfBDw8WDEpLSUU3apQFpN0ECdEPDwwNTpYKQvTk8AZw+vumww8PDA6fSB1L8ALlB3g2BI/ADw8ZDvSLHUd8ankHwxMEEr4PDwsOuK8tQ0F9DwcGJvnzzA8PGA5nwlJRAxGMCI+c89ifDw8fDuvN/VEcC54ImaP3TZgPDyEOhUgdSzWRDAYAOgMDyQ8PGRTtsS1D1fVoBR7A+j7XDw8YFDGLHUejH7oFMyADSMEPDwsU","header":{"n_obs":66,"t":{"ns_residual":0,"wn":2098,"tow":271538000}},"crc":51351} +{"length":62,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":142,"i":109875759},"flags":15,"cn0":175,"P":1364378328,"D":{"f":122,"i":-2430},"lock":15,"sid":{"sat":31,"code":20}},{"L":{"f":234,"i":89228372},"flags":15,"cn0":206,"P":1107989938,"D":{"f":92,"i":-789},"lock":15,"sid":{"sat":12,"code":20}},{"L":{"f":236,"i":110778516},"flags":15,"cn0":170,"P":1375587812,"D":{"f":72,"i":-1641},"lock":15,"sid":{"sat":33,"code":20}}],"payload":"UFcvEAAAAAAyCEPYwlJRL5KMBo6C9nqvDw8fFLKVCkJUhFEF6uv8XM4PDwwU5M39UZRYmgbsl/lIqg8PIRQ=","header":{"n_obs":67,"t":{"ns_residual":0,"wn":2098,"tow":271538000}},"crc":19135} +{"length":9,"l2ca_bias":0,"preamble":85,"l2p_bias":0,"sender":22963,"msg_type":117,"payload":"/wAAAAAAAAAA","l1ca_bias":0,"mask":255,"crc":49809,"l1p_bias":0} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MghQVy8QAAAAAAE=","wn":2098,"tow":271538000,"crc":34884} +{"length":16,"flags":17,"ns":999999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EVBXLxDkBwMZAxkT/smaOw==","day":25,"tow":271538000,"year":2020,"crc":41556,"minutes":25,"month":3,"seconds":19} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-18.147618173295562,"preamble":85,"sender":22963,"msg_type":522,"payload":"UFcvEHeqZe1l6kJAAvl9HVaSXsCGmfpNyiUywAECWwQPBg==","lat":37.83123557533411,"tow":271538000,"h_accuracy":513,"crc":3554,"lon":-122.2865060548975} +{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"UFcvEAkAAADz////3v////EAywIPAg==","n":9,"d":-34,"tow":271538000,"h_accuracy":241,"crc":44245,"e":-13} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"UFcvEJsAhwBMAEgAcgAG","tow":271538000,"crc":6455,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"UFcvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271538000,"h_accuracy":0,"crc":7662,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"UFcvEP//","tow":271538000,"crc":25013} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":4,"flags":2147616000,"preamble":85,"sender":22963,"msg_type":65535,"payload":"AAUCgA==","crc":40942} +{"length":24,"z":3890655.0240602265,"preamble":85,"sender":22963,"msg_type":72,"payload":"UO0a3iqORMHK1UJhIkRQwc9nFIPvrk1B","crc":2168,"x":-2694229.735196747,"y":-4264073.519704292} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"bWFpbgAAAAAAAAAAAAAAAAAAAAAAAAx1AAA=","name":"main\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":47991,"stack_free":29964,"cpu":0} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"aWRsZQAAAAAAAAAAAAAAAAAAAAAxAHwAAAA=","name":"idle\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":11900,"stack_free":124,"cpu":49} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"cnBtc2cAAAAAAAAAAAAAAAAAAAABAAQOAAA=","name":"rpmsg\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":38839,"stack_free":3588,"cpu":1} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"U0JQAAAAAAAAAAAAAAAAAAAAAAAAAPz/AAA=","name":"SBP\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":51784,"stack_free":65532,"cpu":0} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"TkFQAAAAAAAAAAAAAAAAAAAAAAAAAASAAAA=","name":"NAP\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":33651,"stack_free":32772,"cpu":0} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"bWFuYWdlIFBWAAAAAAAAAAAAAAAAACwEAAA=","name":"manage PV\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":61814,"stack_free":1068,"cpu":0} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"SU1VAAAAAAAAAAAAAAAAAAAAAAAAAPQHAAA=","name":"IMU\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":14252,"stack_free":2036,"cpu":0} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"SU1VIGF1eAAAAAAAAAAAAAAAAAAAAEwIAAA=","name":"IMU aux\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":18976,"stack_free":2124,"cpu":0} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"bmRiAAAAAAAAAAAAAAAAAAAAAAAAAFAMAAA=","name":"ndb\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":26120,"stack_free":3152,"cpu":0} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"TkFQIFRyYWNraW5nAAAAAAAAAAAtAdR3AAA=","name":"NAP Tracking\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":25923,"stack_free":30676,"cpu":301} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"ZGVjb2RlAAAAAAAAAAAAAAAAAAAKANQGAAA=","name":"decode\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":6098,"stack_free":1748,"cpu":10} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"bWFuYWdlIGFjcQAAAAAAAAAAAADcAaR3AAA=","name":"manage acq\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":61048,"stack_free":30628,"cpu":476} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"c3lzdGVtIG1vbml0b3IAAAAAAAAAACwGAAA=","name":"system monitor\u0000\u0000\u0000\u0000\u0000\u0000","crc":58531,"stack_free":1580,"cpu":0} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"V2F0Y2hkb2cAAAAAAAAAAAAAAAAAAOQDAAA=","name":"Watchdog\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":44438,"stack_free":996,"cpu":0} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"c3RhcmxpbmcAAAAAAAAAAAAAAACWAPz/AAA=","name":"starling\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":61599,"stack_free":65532,"cpu":150} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"bWVfY2FsY19wdnQAAAAAAAAAAAAIAIwjAAA=","name":"me_calc_pvt\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":42361,"stack_free":9100,"cpu":8} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"UFBTAAAAAAAAAAAAAAAAAAAAAAAAAEgHAAA=","name":"PPS\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":38576,"stack_free":1864,"cpu":0} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"c3BlY3RydW0gYW5hbHl6ZXIAAAAAANQPAAA=","name":"spectrum analyzer\u0000\u0000\u0000","crc":50933,"stack_free":4052,"cpu":0} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"Mgi0Vy8QAAAAAAE=","wn":2098,"tow":271538100,"crc":21308} +{"length":16,"flags":17,"ns":99999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EbRXLxDkBwMZAxkU/uD1BQ==","day":25,"tow":271538100,"year":2020,"crc":27107,"minutes":25,"month":3,"seconds":20} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-18.147907787527018,"preamble":85,"sender":22963,"msg_type":522,"payload":"tFcvEKDzdu1l6kJAQCttHVaSXsCUQOZI3SUywAECWwQPBg==","lat":37.83123558338343,"tow":271538100,"h_accuracy":513,"crc":62296,"lon":-122.2865060392478} +{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"tFcvEAkAAAAKAAAACwAAAPEAywIPAg==","n":9,"d":11,"tow":271538100,"h_accuracy":241,"crc":21961,"e":10} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"tFcvEJsAhwBMAEgAcgAG","tow":271538100,"crc":24970,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"tFcvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271538100,"h_accuracy":0,"crc":49101,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"tFcvEP//","tow":271538100,"crc":60460} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MggYWC8QAAAAAAE=","wn":2098,"tow":271538200,"crc":10144} +{"length":16,"flags":17,"ns":199999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"ERhYLxDkBwMZAxkU/sHrCw==","day":25,"tow":271538200,"year":2020,"crc":63291,"minutes":25,"month":3,"seconds":20} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-18.145177959895403,"preamble":85,"sender":22963,"msg_type":522,"payload":"GFgvEJ4AdO1l6kJAvRxsHVaSXsDL2f1hKiUywAECWwQPBg==","lat":37.83123558201008,"tow":271538200,"h_accuracy":513,"crc":45143,"lon":-122.28650603826368} +{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"GFgvEPz////4////BwAAAPEAywIPAg==","n":-4,"d":7,"tow":271538200,"h_accuracy":241,"crc":13098,"e":-8} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"GFgvEJsAhwBMAEgAcgAG","tow":271538200,"crc":36630,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"GFgvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271538200,"h_accuracy":0,"crc":20705,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"GFgvEP//","tow":271538200,"crc":25374} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"Mgh8WC8QAAAAAAE=","wn":2098,"tow":271538300,"crc":17258} +{"length":16,"flags":17,"ns":299999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EXxYLxDkBwMZAxkU/qLhEQ==","day":25,"tow":271538300,"year":2020,"crc":17695,"minutes":25,"month":3,"seconds":20} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-18.146990921034842,"preamble":85,"sender":22963,"msg_type":522,"payload":"fFgvEH6Ca+1l6kJAhklYHVaSXsBQp24yoSUywAECWwQPBg==","lat":37.83123557805537,"tow":271538300,"h_accuracy":513,"crc":53427,"lon":-122.28650601980016} +{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"fFgvEPf///8QAAAAFAAAAPEAywIPAg==","n":-9,"d":20,"tow":271538300,"h_accuracy":241,"crc":25786,"e":16} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"fFgvEJsAhwBMAEgAcgAG","tow":271538300,"crc":41913,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"fFgvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271538300,"h_accuracy":0,"crc":18519,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"fFgvEP//","tow":271538300,"crc":15015} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":237,"states":[{"cn0":212,"mesid":{"sat":5,"code":0}},{"cn0":178,"mesid":{"sat":21,"code":0}},{"cn0":185,"mesid":{"sat":2,"code":0}},{"cn0":165,"mesid":{"sat":31,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":216,"mesid":{"sat":25,"code":0}},{"cn0":206,"mesid":{"sat":12,"code":0}},{"cn0":210,"mesid":{"sat":29,"code":0}},{"cn0":205,"mesid":{"sat":18,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":203,"mesid":{"sat":131,"code":2}},{"cn0":204,"mesid":{"sat":25,"code":1}},{"cn0":188,"mesid":{"sat":12,"code":1}},{"cn0":149,"mesid":{"sat":31,"code":1}},{"cn0":196,"mesid":{"sat":18,"code":1}},{"cn0":194,"mesid":{"sat":29,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":193,"mesid":{"sat":5,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":212,"mesid":{"sat":100,"code":3}},{"cn0":177,"mesid":{"sat":98,"code":3}},{"cn0":174,"mesid":{"sat":102,"code":3}},{"cn0":207,"mesid":{"sat":101,"code":3}},{"cn0":207,"mesid":{"sat":93,"code":3}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":181,"mesid":{"sat":106,"code":3}},{"cn0":203,"mesid":{"sat":104,"code":3}},{"cn0":173,"mesid":{"sat":98,"code":4}},{"cn0":205,"mesid":{"sat":102,"code":4}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":200,"mesid":{"sat":100,"code":4}},{"cn0":195,"mesid":{"sat":101,"code":4}},{"cn0":189,"mesid":{"sat":104,"code":4}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":172,"mesid":{"sat":106,"code":4}},{"cn0":201,"mesid":{"sat":35,"code":12}},{"cn0":172,"mesid":{"sat":26,"code":12}},{"cn0":161,"mesid":{"sat":34,"code":12}},{"cn0":188,"mesid":{"sat":24,"code":12}},{"cn0":160,"mesid":{"sat":25,"code":12}},{"cn0":184,"mesid":{"sat":12,"code":12}},{"cn0":185,"mesid":{"sat":19,"code":12}},{"cn0":192,"mesid":{"sat":22,"code":12}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":210,"mesid":{"sat":12,"code":13}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":195,"mesid":{"sat":12,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":192,"mesid":{"sat":25,"code":14}},{"cn0":189,"mesid":{"sat":11,"code":14}},{"cn0":204,"mesid":{"sat":24,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":158,"mesid":{"sat":31,"code":14}},{"cn0":152,"mesid":{"sat":33,"code":14}},{"cn0":201,"mesid":{"sat":25,"code":20}},{"cn0":215,"mesid":{"sat":24,"code":20}},{"cn0":194,"mesid":{"sat":11,"code":20}},{"cn0":174,"mesid":{"sat":31,"code":20}},{"cn0":206,"mesid":{"sat":12,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":170,"mesid":{"sat":33,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}}],"preamble":85,"sender":22963,"msg_type":97,"payload":"BQDUFQCyAgC5HwClAAAAAAAAGQDYDADOHQDSEgDNAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwLLGQHMDAG8HwGVEgHEHQHCAAAABQHBAAAAAAAAAAAAAAAAZAPUYgOxZgOuZQPPXQPPAAAAagO1aAPLYgStZgTNAAAAZATIZQTDaAS9AAAAagSsIwzJGgysIgyhGAy8GQygDAy4Ewy5FgzAAAAADA3SAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADA7DAAAAGQ7ACw69GA7MAAAAHw6eIQ6YGRTJGBTXCxTCHxSuDBTOAAAAIRSqAAAA","crc":45086} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgjgWC8QAAAAAAE=","wn":2098,"tow":271538400,"crc":6710} +{"length":16,"flags":17,"ns":399999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EeBYLxDkBwMZAxkU/oPXFw==","day":25,"tow":271538400,"year":2020,"crc":40307,"minutes":25,"month":3,"seconds":20} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-18.145536806609712,"preamble":85,"sender":22963,"msg_type":522,"payload":"4FgvEGEecO1l6kJAeolnHVaSXsDEwHDmQSUywAECWwQPBg==","lat":37.83123558020157,"tow":271538400,"h_accuracy":513,"crc":7193,"lon":-122.28650603400266} +{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"4FgvEAQAAAD2////5v////EAywIPAg==","n":4,"d":-26,"tow":271538400,"h_accuracy":241,"crc":38832,"e":-10} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"4FgvEJsAhwBMAEgAcgAG","tow":271538400,"crc":1494,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"4FgvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271538400,"h_accuracy":0,"crc":46694,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"4FgvEP//","tow":271538400,"crc":65504} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":9,"l2ca_bias":0,"preamble":85,"l2p_bias":0,"sender":22963,"msg_type":117,"payload":"/wAAAAAAAAAA","l1ca_bias":0,"mask":255,"crc":49809,"l1p_bias":0} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MghEWS8QAAAAAAE=","wn":2098,"tow":271538500,"crc":55620} +{"length":16,"flags":17,"ns":499999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EURZLxDkBwMZAxkU/mTNHQ==","day":25,"tow":271538500,"year":2020,"crc":56565,"minutes":25,"month":3,"seconds":20} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-18.14729412996424,"preamble":85,"sender":22963,"msg_type":522,"payload":"RFkvEFSti+1l6kJA8z95HVaSXsDVFm8RtSUywAECWwQPBg==","lat":37.83123559303445,"tow":271538500,"h_accuracy":513,"crc":2481,"lon":-122.28650605049897} +{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"RFkvEAkAAAABAAAA/v////EAywIPAg==","n":9,"d":-2,"tow":271538500,"h_accuracy":241,"crc":56547,"e":1} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"RFkvEJsAhwBMAEgAcgAG","tow":271538500,"crc":11267,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"RFkvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271538500,"h_accuracy":0,"crc":5353,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"RFkvEP//","tow":271538500,"crc":45624} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgioWS8QAAAAAAE=","wn":2098,"tow":271538600,"crc":11203} +{"length":16,"flags":17,"ns":599999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EahZLxDkBwMZAxkU/kXDIw==","day":25,"tow":271538600,"year":2020,"crc":50793,"minutes":25,"month":3,"seconds":20} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-18.14898904694454,"preamble":85,"sender":22963,"msg_type":522,"payload":"qFkvEFYPiu1l6kJA1dGBHVaSXsDJFmwlJCYywAECWwQPBg==","lat":37.8312355922814,"tow":271538600,"h_accuracy":513,"crc":42803,"lon":-122.28650605848027} +{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"qFkvEPn///8HAAAABgAAAPEAywIPAg==","n":-7,"d":6,"tow":271538600,"h_accuracy":241,"crc":51682,"e":7} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"qFkvEJsAhwBMAEgAcgAG","tow":271538600,"crc":29691,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"qFkvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271538600,"h_accuracy":0,"crc":59497,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"qFkvEP//","tow":271538600,"crc":13027} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MggMWi8QAAAAAAE=","wn":2098,"tow":271538700,"crc":26391} +{"length":16,"flags":17,"ns":699999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EQxaLxDkBwMZAxkU/ia5KQ==","day":25,"tow":271538700,"year":2020,"crc":40349,"minutes":25,"month":3,"seconds":20} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-18.152667493719072,"preamble":85,"sender":22963,"msg_type":522,"payload":"DFovEPhFt+1l6kJAIsGmHVaSXsCKr4Q3FScywAECWwQPBg==","lat":37.83123561333554,"tow":271538700,"h_accuracy":513,"crc":56893,"lon":-122.28650609287845} +{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"DFovEAQAAAD5////BgAAAPEAywIPAg==","n":4,"d":6,"tow":271538700,"h_accuracy":241,"crc":22960,"e":-7} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"DFovEJsAhwBMAEgAcgAG","tow":271538700,"crc":44268,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"DFovEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271538700,"h_accuracy":0,"crc":61739,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"DFovEP//","tow":271538700,"crc":15288} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"message_type":3,"length":34,"data":[151,255,0,15,253,127,247,255,0,23,255,255,231,255,127,240,1,255,240,0,232,206,246,231,239,229,112],"preamble":85,"sender":22963,"msg_type":30583,"payload":"gwIvWS8QA5f/AA/9f/f/ABf//+f/f/AB//AA6M725+/lcA==","tow":271538479,"crc":3966,"sid":{"sat":131,"code":2}} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MghwWi8QAAAAAAE=","wn":2098,"tow":271538800,"crc":31196} +{"length":16,"flags":17,"ns":799999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EXBaLxDkBwMZAxkU/gevLw==","day":25,"tow":271538800,"year":2020,"crc":40984,"minutes":25,"month":3,"seconds":20} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-18.155604190597796,"preamble":85,"sender":22963,"msg_type":522,"payload":"cFovEPpG3O1l6kJAg07FHVaSXsDzvB2t1ScywAECWwQPBg==","lat":37.83123563056684,"tow":271538800,"h_accuracy":513,"crc":10236,"lon":-122.28650612133247} +{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"cFovEAMAAAD0////KwAAAPEAywIPAg==","n":3,"d":43,"tow":271538800,"h_accuracy":241,"crc":36527,"e":-12} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"cFovEJsAhwBMAEgAcgAG","tow":271538800,"crc":59788,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"cFovEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271538800,"h_accuracy":0,"crc":2680,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"cFovEP//","tow":271538800,"crc":30151} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":237,"states":[{"cn0":212,"mesid":{"sat":5,"code":0}},{"cn0":178,"mesid":{"sat":21,"code":0}},{"cn0":186,"mesid":{"sat":2,"code":0}},{"cn0":164,"mesid":{"sat":31,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":216,"mesid":{"sat":25,"code":0}},{"cn0":206,"mesid":{"sat":12,"code":0}},{"cn0":211,"mesid":{"sat":29,"code":0}},{"cn0":204,"mesid":{"sat":18,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":203,"mesid":{"sat":131,"code":2}},{"cn0":204,"mesid":{"sat":25,"code":1}},{"cn0":188,"mesid":{"sat":12,"code":1}},{"cn0":149,"mesid":{"sat":31,"code":1}},{"cn0":196,"mesid":{"sat":18,"code":1}},{"cn0":194,"mesid":{"sat":29,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":193,"mesid":{"sat":5,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":212,"mesid":{"sat":11,"code":3}},{"cn0":177,"mesid":{"sat":9,"code":3}},{"cn0":174,"mesid":{"sat":20,"code":3}},{"cn0":207,"mesid":{"sat":5,"code":3}},{"cn0":207,"mesid":{"sat":10,"code":3}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":180,"mesid":{"sat":4,"code":3}},{"cn0":203,"mesid":{"sat":21,"code":3}},{"cn0":173,"mesid":{"sat":9,"code":4}},{"cn0":205,"mesid":{"sat":20,"code":4}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":200,"mesid":{"sat":11,"code":4}},{"cn0":195,"mesid":{"sat":5,"code":4}},{"cn0":189,"mesid":{"sat":0,"code":4}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":173,"mesid":{"sat":4,"code":4}},{"cn0":201,"mesid":{"sat":35,"code":12}},{"cn0":172,"mesid":{"sat":26,"code":12}},{"cn0":162,"mesid":{"sat":34,"code":12}},{"cn0":188,"mesid":{"sat":24,"code":12}},{"cn0":160,"mesid":{"sat":25,"code":12}},{"cn0":184,"mesid":{"sat":12,"code":12}},{"cn0":185,"mesid":{"sat":19,"code":12}},{"cn0":192,"mesid":{"sat":22,"code":12}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":209,"mesid":{"sat":12,"code":13}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":195,"mesid":{"sat":12,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":192,"mesid":{"sat":25,"code":14}},{"cn0":189,"mesid":{"sat":11,"code":14}},{"cn0":204,"mesid":{"sat":24,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":158,"mesid":{"sat":31,"code":14}},{"cn0":152,"mesid":{"sat":33,"code":14}},{"cn0":201,"mesid":{"sat":25,"code":20}},{"cn0":215,"mesid":{"sat":24,"code":20}},{"cn0":194,"mesid":{"sat":11,"code":20}},{"cn0":174,"mesid":{"sat":31,"code":20}},{"cn0":206,"mesid":{"sat":12,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":170,"mesid":{"sat":33,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}}],"preamble":85,"sender":22963,"msg_type":97,"payload":"BQDUFQCyAgC6HwCkAAAAAAAAGQDYDADOHQDTEgDMAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwLLGQHMDAG8HwGVEgHEHQHCAAAABQHBAAAAAAAAAAAAAAAACwPUCQOxFAOuBQPPCgPPAAAABAO0FQPLCQStFATNAAAACwTIBQTDAAS9AAAABAStIwzJGgysIgyiGAy8GQygDAy4Ewy5FgzAAAAADA3RAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADA7DAAAAGQ7ACw69GA7MAAAAHw6eIQ6YGRTJGBTXCxTCHxSuDBTOAAAAIRSqAAAA","crc":44289} +{"length":128,"preamble":85,"sender":22963,"msg_type":151,"payload":"AgAaHQUAKzUMAFEtFQB9GRkAbUYaAKEBHQChNx8AlQ4EAxUWBQMyIQkDXw4KA3EpCwOYJQwDqgMTAyIHFAMMMRUDlSUMDJQpEwwjIBQMDwIWDEMkGAyCIxkMnQ4aDGcVIgyOESMMIi0LDosyDA4PPBgObDYZDpcpHw5VESEOIA8=","crc":34187,"azel":[{"el":29,"az":26,"sid":{"sat":2,"code":0}},{"el":53,"az":43,"sid":{"sat":5,"code":0}},{"el":45,"az":81,"sid":{"sat":12,"code":0}},{"el":25,"az":125,"sid":{"sat":21,"code":0}},{"el":70,"az":109,"sid":{"sat":25,"code":0}},{"el":1,"az":161,"sid":{"sat":26,"code":0}},{"el":55,"az":161,"sid":{"sat":29,"code":0}},{"el":14,"az":149,"sid":{"sat":31,"code":0}},{"el":22,"az":21,"sid":{"sat":4,"code":3}},{"el":33,"az":50,"sid":{"sat":5,"code":3}},{"el":14,"az":95,"sid":{"sat":9,"code":3}},{"el":41,"az":113,"sid":{"sat":10,"code":3}},{"el":37,"az":152,"sid":{"sat":11,"code":3}},{"el":3,"az":170,"sid":{"sat":12,"code":3}},{"el":7,"az":34,"sid":{"sat":19,"code":3}},{"el":49,"az":12,"sid":{"sat":20,"code":3}},{"el":37,"az":149,"sid":{"sat":21,"code":3}},{"el":41,"az":148,"sid":{"sat":12,"code":12}},{"el":32,"az":35,"sid":{"sat":19,"code":12}},{"el":2,"az":15,"sid":{"sat":20,"code":12}},{"el":36,"az":67,"sid":{"sat":22,"code":12}},{"el":35,"az":130,"sid":{"sat":24,"code":12}},{"el":14,"az":157,"sid":{"sat":25,"code":12}},{"el":21,"az":103,"sid":{"sat":26,"code":12}},{"el":17,"az":142,"sid":{"sat":34,"code":12}},{"el":45,"az":34,"sid":{"sat":35,"code":12}},{"el":50,"az":139,"sid":{"sat":11,"code":14}},{"el":60,"az":15,"sid":{"sat":12,"code":14}},{"el":54,"az":108,"sid":{"sat":24,"code":14}},{"el":41,"az":151,"sid":{"sat":25,"code":14}},{"el":17,"az":85,"sid":{"sat":31,"code":14}},{"el":15,"az":32,"sid":{"sat":33,"code":14}}]} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgjUWi8QAAAAAAE=","wn":2098,"tow":271538900,"crc":64893} +{"length":16,"flags":17,"ns":899999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EdRaLxDkBwMZAxkU/uikNQ==","day":25,"tow":271538900,"year":2020,"crc":4397,"minutes":25,"month":3,"seconds":20} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-18.1485637142829,"preamble":85,"sender":22963,"msg_type":522,"payload":"1FovEFGJDu5l6kJAkhTaHVaSXsCkN4ZFCCYywAECWwQPBg==","lat":37.83123565397057,"tow":271538900,"h_accuracy":513,"crc":62946,"lon":-122.28650614067945} +{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"1FovEAgAAAD/////yf////EAywIPAg==","n":8,"d":-55,"tow":271538900,"h_accuracy":241,"crc":41641,"e":-1} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"1FovEJsAhwBMAEgAcgAG","tow":271538900,"crc":47928,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"1FovEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271538900,"h_accuracy":0,"crc":32001,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"1FovEP//","tow":271538900,"crc":37454} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":249,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":120,"i":110568783},"flags":15,"cn0":212,"P":1052026879,"D":{"f":107,"i":-199},"lock":15,"sid":{"sat":5,"code":0}},{"L":{"f":234,"i":121772630},"flags":15,"cn0":178,"P":1158628049,"D":{"f":216,"i":2168},"lock":15,"sid":{"sat":21,"code":0}},{"L":{"f":30,"i":123397818},"flags":15,"cn0":186,"P":1174090800,"D":{"f":170,"i":-2482},"lock":15,"sid":{"sat":2,"code":0}},{"L":{"f":112,"i":128748002},"flags":15,"cn0":164,"P":1224996511,"D":{"f":135,"i":-409},"lock":15,"sid":{"sat":31,"code":0}},{"L":{"f":19,"i":107850503},"flags":15,"cn0":216,"P":1026163350,"D":{"f":74,"i":-1141},"lock":15,"sid":{"sat":25,"code":0}},{"L":{"f":243,"i":114170055},"flags":15,"cn0":206,"P":1086291859,"D":{"f":40,"i":-2976},"lock":15,"sid":{"sat":12,"code":0}},{"L":{"f":69,"i":110725328},"flags":15,"cn0":211,"P":1053516383,"D":{"f":21,"i":1480},"lock":15,"sid":{"sat":29,"code":0}},{"L":{"f":138,"i":84039373},"flags":15,"cn0":204,"P":1026163396,"D":{"f":236,"i":-890},"lock":15,"sid":{"sat":25,"code":1}},{"L":{"f":148,"i":88963711},"flags":15,"cn0":188,"P":1086291811,"D":{"f":40,"i":-2319},"lock":15,"sid":{"sat":12,"code":1}},{"L":{"f":52,"i":100323121},"flags":15,"cn0":149,"P":1224996371,"D":{"f":84,"i":-315},"lock":15,"sid":{"sat":31,"code":1}},{"L":{"f":106,"i":86279478},"flags":15,"cn0":194,"P":1053516306,"D":{"f":210,"i":1152},"lock":15,"sid":{"sat":29,"code":1}},{"L":{"f":230,"i":86157522},"flags":15,"cn0":193,"P":1052026793,"D":{"f":213,"i":-155},"lock":15,"sid":{"sat":5,"code":1}},{"L":{"f":40,"i":112908672},"flags":15,"cn0":212,"P":1056465581,"D":{"f":53,"i":1146},"lock":15,"sid":{"sat":11,"code":3}},{"L":{"f":225,"i":123443303},"flags":15,"cn0":177,"P":1155847998,"D":{"f":114,"i":-4407},"lock":15,"sid":{"sat":9,"code":3}}],"payload":"OFsvEAAAAAAyCED/p7Q+TyWXBng5/2vUDw8FANFCD0VWGkIH6ngI2LIPDxUAMDT7RbrmWgceTvaqug8PAgCf9gNJ4omsB3Bn/oekDw8fAJYCKj0Hq20GE4v7StgPDxkAk3+/QMcYzgbzYPQozg8PDABfYss+0IiZBkXIBRXTDw8dAMQCKj3NVgIFiob87MwPDxkBY3+/QH96TQWU8fYovA8PDAET9gNJMc/6BTTF/lSVDw8fARJiyz42hSQFaoAE0sIPDx0Bqae0PtKoIgXmZf/VwQ8PBQGtYvg+gNm6Bih6BDXUDw8LAz7X5ERnmFsH4cnucrEPDwkD","header":{"n_obs":64,"t":{"ns_residual":0,"wn":2098,"tow":271539000}},"crc":46440} +{"length":249,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":152,"i":109800597},"flags":15,"cn0":174,"P":1026662950,"D":{"f":221,"i":-1214},"lock":15,"sid":{"sat":20,"code":3}},{"L":{"f":98,"i":114806005},"flags":15,"cn0":207,"P":1073841525,"D":{"f":174,"i":2182},"lock":15,"sid":{"sat":5,"code":3}},{"L":{"f":109,"i":111679130},"flags":15,"cn0":206,"P":1047535677,"D":{"f":25,"i":-3057},"lock":15,"sid":{"sat":10,"code":3}},{"L":{"f":95,"i":120471331},"flags":15,"cn0":180,"P":1124858257,"D":{"f":178,"i":-1336},"lock":15,"sid":{"sat":4,"code":3}},{"L":{"f":15,"i":113379712},"flags":15,"cn0":203,"P":1059385035,"D":{"f":36,"i":1619},"lock":15,"sid":{"sat":21,"code":3}},{"L":{"f":57,"i":96011468},"flags":15,"cn0":173,"P":1155848137,"D":{"f":210,"i":-3430},"lock":15,"sid":{"sat":9,"code":4}},{"L":{"f":135,"i":85400500},"flags":15,"cn0":205,"P":1026663296,"D":{"f":253,"i":-945},"lock":15,"sid":{"sat":20,"code":4}},{"L":{"f":115,"i":87817866},"flags":15,"cn0":200,"P":1056465886,"D":{"f":57,"i":891},"lock":15,"sid":{"sat":11,"code":4}},{"L":{"f":138,"i":89293563},"flags":15,"cn0":195,"P":1073841819,"D":{"f":185,"i":1698},"lock":15,"sid":{"sat":5,"code":4}},{"L":{"f":161,"i":93699914},"flags":15,"cn0":172,"P":1124858456,"D":{"f":71,"i":-1037},"lock":15,"sid":{"sat":4,"code":4}},{"L":{"f":165,"i":121617043},"flags":15,"cn0":201,"P":1167763458,"D":{"f":222,"i":-1502},"lock":15,"sid":{"sat":35,"code":12}},{"L":{"f":146,"i":129286319},"flags":15,"cn0":172,"P":1241403952,"D":{"f":134,"i":-3010},"lock":15,"sid":{"sat":26,"code":12}},{"L":{"f":177,"i":132890383},"flags":15,"cn0":161,"P":1276009869,"D":{"f":189,"i":2248},"lock":15,"sid":{"sat":34,"code":12}},{"L":{"f":202,"i":125183646},"flags":15,"cn0":188,"P":1202010189,"D":{"f":52,"i":-1312},"lock":15,"sid":{"sat":24,"code":12}}],"payload":"OFsvEAAAAAAyCEEmojE9lWyLBphC+92uDw8UA3WFAUD1zNcGYoYIrs8PDwUDPSBwPpoWqAZtD/QZzg8PCgOR+QtDIz8uB1/I+rK0Dw8EA8vuJD+ACcIGD1MGJMsPDxUDydfkRMwEuQU5mvLSrQ8PCQSAozE9tBsXBYdP/P3NDw8UBN5j+D6K/jsFc3sDOcgPDwsEm4YBQPuCUgWKoga5ww8PBQRY+gtDSr+VBaHz+0esDw8EBAKomkWTuj8HpSL63skPDyMMMFL+Sa/AtAeSPvSGrA8PGgyNXQ5MD7/rB7HICL2hDw8iDE04pUeeJnYHyuD6NLwPDxgM","header":{"n_obs":65,"t":{"ns_residual":0,"wn":2098,"tow":271539000}},"crc":52089} +{"length":249,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":165,"i":134639505},"flags":15,"cn0":160,"P":1292805134,"D":{"f":145,"i":1315},"lock":15,"sid":{"sat":25,"code":12}},{"L":{"f":74,"i":121060096},"flags":15,"cn0":184,"P":1162415910,"D":{"f":81,"i":1610},"lock":15,"sid":{"sat":12,"code":12}},{"L":{"f":57,"i":124522246},"flags":15,"cn0":185,"P":1195659367,"D":{"f":226,"i":-302},"lock":15,"sid":{"sat":19,"code":12}},{"L":{"f":153,"i":124645402},"flags":15,"cn0":192,"P":1196841950,"D":{"f":53,"i":2380},"lock":15,"sid":{"sat":22,"code":12}},{"L":{"f":54,"i":93611354},"flags":15,"cn0":209,"P":1162415834,"D":{"f":139,"i":1246},"lock":15,"sid":{"sat":12,"code":13}},{"L":{"f":198,"i":116451576},"flags":15,"cn0":195,"P":1107999878,"D":{"f":115,"i":-1030},"lock":15,"sid":{"sat":12,"code":14}},{"L":{"f":128,"i":132447929},"flags":15,"cn0":192,"P":1260200067,"D":{"f":163,"i":1078},"lock":15,"sid":{"sat":25,"code":14}},{"L":{"f":46,"i":125396584},"flags":15,"cn0":189,"P":1193108766,"D":{"f":25,"i":1045},"lock":15,"sid":{"sat":11,"code":14}},{"L":{"f":113,"i":118457369},"flags":15,"cn0":204,"P":1127084253,"D":{"f":228,"i":-1755},"lock":15,"sid":{"sat":24,"code":14}},{"L":{"f":8,"i":143400296},"flags":15,"cn0":158,"P":1364408409,"D":{"f":115,"i":-3173},"lock":15,"sid":{"sat":31,"code":14}},{"L":{"f":148,"i":144577399},"flags":15,"cn0":151,"P":1375608182,"D":{"f":126,"i":-2142},"lock":15,"sid":{"sat":33,"code":14}},{"L":{"f":64,"i":101486074},"flags":15,"cn0":201,"P":1260200045,"D":{"f":200,"i":825},"lock":15,"sid":{"sat":25,"code":20}},{"L":{"f":226,"i":90766099},"flags":15,"cn0":215,"P":1127084814,"D":{"f":109,"i":-1342},"lock":15,"sid":{"sat":24,"code":20}},{"L":{"f":207,"i":96083074},"flags":15,"cn0":194,"P":1193108577,"D":{"f":253,"i":801},"lock":15,"sid":{"sat":11,"code":20}}],"payload":"OFsvEAAAAAAyCEIOpA5NkW8GCKUjBZGgDw8ZDCYPSUUAOzcHSkoGUbgPDwwMZ1BERwYPbAc50v7iuQ8PEwzeW1ZHGvBtB5lMCTXADw8WDNoOSUVaZZQFNt4Ei9EPDwwNhrwKQvjo8AbG+vtzww8PDA6DIB1Luf7kB4A2BKPADw8ZDh5lHUdoZnkHLhUEGb0PDwsO3fAtQxmEDwdxJfnkzA8PGA5ZOFNRaB2MCAib83OeDw8fDnYd/lF3E54IlKL3fpcPDyEObSAdS/qNDAZAOQPIyQ8PGRQO8y1DE/toBeLC+m3XDw8YFGFkHUeCHLoFzyED/cIPDwsU","header":{"n_obs":66,"t":{"ns_residual":0,"wn":2098,"tow":271539000}},"crc":11625} +{"length":62,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":105,"i":109878190},"flags":15,"cn0":174,"P":1364408514,"D":{"f":101,"i":-2432},"lock":15,"sid":{"sat":31,"code":20}},{"L":{"f":222,"i":89229160},"flags":15,"cn0":206,"P":1107999722,"D":{"f":73,"i":-787},"lock":15,"sid":{"sat":12,"code":20}},{"L":{"f":225,"i":110780155},"flags":15,"cn0":170,"P":1375608172,"D":{"f":4,"i":-1639},"lock":15,"sid":{"sat":33,"code":20}}],"payload":"OFsvEAAAAAAyCEPCOFNRrpuMBmmA9mWuDw8fFOq7CkJoh1EF3u38Sc4PDwwUbB3+UftemgbhmfkEqg8PIRQ=","header":{"n_obs":67,"t":{"ns_residual":0,"wn":2098,"tow":271539000}},"crc":40369} +{"length":9,"l2ca_bias":0,"preamble":85,"l2p_bias":0,"sender":22963,"msg_type":117,"payload":"/wAAAAAAAAAA","l1ca_bias":0,"mask":255,"crc":49809,"l1p_bias":0} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"Mgg4Wy8QAAAAAAE=","wn":2098,"tow":271539000,"crc":18473} +{"length":16,"flags":17,"ns":999999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EThbLxDkBwMZAxkU/smaOw==","day":25,"tow":271539000,"year":2020,"crc":17174,"minutes":25,"month":3,"seconds":20} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-18.15157658926175,"preamble":85,"sender":22963,"msg_type":522,"payload":"OFsvELhkM+5l6kJAnkPlHVaSXsDsty25zSYywAECWwQPBg==","lat":37.83123567113347,"tow":271539000,"h_accuracy":513,"crc":42062,"lon":-122.28650615109515} +{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"OFsvEPr///8NAAAAGwAAAPEAywIPAg==","n":-6,"d":27,"tow":271539000,"h_accuracy":241,"crc":29834,"e":13} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"OFsvEJsAhwBMAEgAcgAG","tow":271539000,"crc":40865,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"OFsvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271539000,"h_accuracy":0,"crc":21623,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"OFsvEP//","tow":271539000,"crc":47300} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":4,"flags":2147616000,"preamble":85,"sender":22963,"msg_type":65535,"payload":"AAUCgA==","crc":40942} +{"length":24,"z":3890655.0240602265,"preamble":85,"sender":22963,"msg_type":72,"payload":"UO0a3iqORMHK1UJhIkRQwc9nFIPvrk1B","crc":2168,"x":-2694229.735196747,"y":-4264073.519704292} +{"cpu_vint":988,"length":10,"fe_temperature":5641,"preamble":85,"sender":22963,"cpu_vaux":1780,"msg_type":181,"payload":"7BbcA/QGURUJFg==","dev_vin":5868,"crc":34043,"cpu_temperature":5457} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgicWy8QAAAAAAE=","wn":2098,"tow":271539100,"crc":52360} +{"length":16,"flags":17,"ns":99999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EZxbLxDkBwMZAxkV/uD1BQ==","day":25,"tow":271539100,"year":2020,"crc":28461,"minutes":25,"month":3,"seconds":21} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-18.15265498260549,"preamble":85,"sender":22963,"msg_type":522,"payload":"nFsvEF2VaO5l6kJAtOn7HVaSXsCu3J1lFCcywAECWwQPBg==","lat":37.831235695902,"tow":271539100,"h_accuracy":513,"crc":34851,"lon":-122.28650617218847} +{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"nFsvEPv///8GAAAAAQAAAPEAywIPAg==","n":-5,"d":1,"tow":271539100,"h_accuracy":241,"crc":38237,"e":6} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"nFsvEJsAhwBMAEgAcgAG","tow":271539100,"crc":52501,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"nFsvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271539100,"h_accuracy":0,"crc":8974,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"nFsvEP//","tow":271539100,"crc":24397} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MggAXC8QAAAAAAE=","wn":2098,"tow":271539200,"crc":21196} +{"length":16,"flags":17,"ns":199999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EQBcLxDkBwMZAxkV/sHrCw==","day":25,"tow":271539200,"year":2020,"crc":51456,"minutes":25,"month":3,"seconds":21} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-18.154764893629537,"preamble":85,"sender":22963,"msg_type":522,"payload":"AFwvEH/Gw+5l6kJAIosdHlaSXsAxtQysnicywAECWwQPBg==","lat":37.83123573836655,"tow":271539200,"h_accuracy":513,"crc":37031,"lon":-122.28650620350939} +{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"AFwvEAAAAAD9//////////EAywIPAg==","n":0,"d":-1,"tow":271539200,"h_accuracy":241,"crc":53918,"e":-3} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"AFwvEJsAhwBMAEgAcgAG","tow":271539200,"crc":7036,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"AFwvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271539200,"h_accuracy":0,"crc":54463,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"AFwvEP//","tow":271539200,"crc":64990} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MghkXC8QAAAAAAE=","wn":2098,"tow":271539300,"crc":13830} +{"length":16,"flags":17,"ns":299999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EWRcLxDkBwMZAxkV/qLhEQ==","day":25,"tow":271539300,"year":2020,"crc":31524,"minutes":25,"month":3,"seconds":21} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-18.1552871263024,"preamble":85,"sender":22963,"msg_type":522,"payload":"ZFwvELNYN+9l6kJAw5QtHlaSXsBp9ajlwCcywAECWwQPBg==","lat":37.83123579218354,"tow":271539300,"h_accuracy":513,"crc":24775,"lon":-122.28650621844558} +{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"ZFwvEA8AAAABAAAA9v////EAywIPAg==","n":15,"d":-10,"tow":271539300,"h_accuracy":241,"crc":20140,"e":1} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"ZFwvEJsAhwBMAEgAcgAG","tow":271539300,"crc":14291,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"ZFwvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271539300,"h_accuracy":0,"crc":52233,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"ZFwvEP//","tow":271539300,"crc":42087} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":237,"states":[{"cn0":213,"mesid":{"sat":5,"code":0}},{"cn0":179,"mesid":{"sat":21,"code":0}},{"cn0":186,"mesid":{"sat":2,"code":0}},{"cn0":165,"mesid":{"sat":31,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":217,"mesid":{"sat":25,"code":0}},{"cn0":206,"mesid":{"sat":12,"code":0}},{"cn0":211,"mesid":{"sat":29,"code":0}},{"cn0":205,"mesid":{"sat":18,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":204,"mesid":{"sat":131,"code":2}},{"cn0":203,"mesid":{"sat":25,"code":1}},{"cn0":188,"mesid":{"sat":12,"code":1}},{"cn0":149,"mesid":{"sat":31,"code":1}},{"cn0":196,"mesid":{"sat":18,"code":1}},{"cn0":194,"mesid":{"sat":29,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":193,"mesid":{"sat":5,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":212,"mesid":{"sat":100,"code":3}},{"cn0":176,"mesid":{"sat":98,"code":3}},{"cn0":174,"mesid":{"sat":102,"code":3}},{"cn0":206,"mesid":{"sat":101,"code":3}},{"cn0":206,"mesid":{"sat":93,"code":3}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":180,"mesid":{"sat":106,"code":3}},{"cn0":204,"mesid":{"sat":104,"code":3}},{"cn0":173,"mesid":{"sat":98,"code":4}},{"cn0":205,"mesid":{"sat":102,"code":4}},{"cn0":74,"mesid":{"sat":93,"code":4}},{"cn0":199,"mesid":{"sat":100,"code":4}},{"cn0":195,"mesid":{"sat":101,"code":4}},{"cn0":189,"mesid":{"sat":104,"code":4}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":172,"mesid":{"sat":106,"code":4}},{"cn0":201,"mesid":{"sat":35,"code":12}},{"cn0":171,"mesid":{"sat":26,"code":12}},{"cn0":162,"mesid":{"sat":34,"code":12}},{"cn0":188,"mesid":{"sat":24,"code":12}},{"cn0":159,"mesid":{"sat":25,"code":12}},{"cn0":184,"mesid":{"sat":12,"code":12}},{"cn0":185,"mesid":{"sat":19,"code":12}},{"cn0":193,"mesid":{"sat":22,"code":12}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":209,"mesid":{"sat":12,"code":13}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":194,"mesid":{"sat":12,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":191,"mesid":{"sat":25,"code":14}},{"cn0":189,"mesid":{"sat":11,"code":14}},{"cn0":203,"mesid":{"sat":24,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":158,"mesid":{"sat":31,"code":14}},{"cn0":151,"mesid":{"sat":33,"code":14}},{"cn0":201,"mesid":{"sat":25,"code":20}},{"cn0":215,"mesid":{"sat":24,"code":20}},{"cn0":194,"mesid":{"sat":11,"code":20}},{"cn0":174,"mesid":{"sat":31,"code":20}},{"cn0":206,"mesid":{"sat":12,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":171,"mesid":{"sat":33,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}}],"preamble":85,"sender":22963,"msg_type":97,"payload":"BQDVFQCzAgC6HwClAAAAAAAAGQDZDADOHQDTEgDNAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwLMGQHLDAG8HwGVEgHEHQHCAAAABQHBAAAAAAAAAAAAAAAAZAPUYgOwZgOuZQPOXQPOAAAAagO0aAPMYgStZgTNXQRKZATHZQTDaAS9AAAAagSsIwzJGgyrIgyiGAy8GQyfDAy4Ewy5FgzBAAAADA3RAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADA7CAAAAGQ6/Cw69GA7LAAAAHw6eIQ6XGRTJGBTXCxTCHxSuDBTOAAAAIRSrAAAA","crc":12908} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgjIXC8QAAAAAAE=","wn":2098,"tow":271539400,"crc":39768} +{"length":16,"flags":17,"ns":399999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EchcLxDkBwMZAxkV/oPXFw==","day":25,"tow":271539400,"year":2020,"crc":28886,"minutes":25,"month":3,"seconds":21} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-18.160654102096757,"preamble":85,"sender":22963,"msg_type":522,"payload":"yFwvEIQChO9l6kJAFqZRHlaSXsBMeZKgICkywAECWwQPBg==","lat":37.83123582788269,"tow":271539400,"h_accuracy":513,"crc":13997,"lon":-122.28650625203622} +{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"yFwvEP/////1////KAAAAPEAywIPAg==","n":-1,"d":40,"tow":271539400,"h_accuracy":241,"crc":33913,"e":-11} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"yFwvEJsAhwBMAEgAcgAG","tow":271539400,"crc":16930,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"yFwvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271539400,"h_accuracy":0,"crc":58835,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"yFwvEP//","tow":271539400,"crc":20140} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":9,"l2ca_bias":0,"preamble":85,"l2p_bias":0,"sender":22963,"msg_type":117,"payload":"/wAAAAAAAAAA","l1ca_bias":0,"mask":255,"crc":49809,"l1p_bias":0} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MggsXS8QAAAAAAE=","wn":2098,"tow":271539500,"crc":2035} +{"length":16,"flags":17,"ns":499999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"ESxdLxDkBwMZAxkV/mTNHQ==","day":25,"tow":271539500,"year":2020,"crc":7001,"minutes":25,"month":3,"seconds":21} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-18.161189679937095,"preamble":85,"sender":22963,"msg_type":522,"payload":"LF0vELCdxu9l6kJAn9dsHlaSXsBUyBO6QykywAECWwQPBg==","lat":37.831235858898594,"tow":271539500,"h_accuracy":513,"crc":25541,"lon":-122.28650627736214} +{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"LF0vEAMAAAD8////7/////EAywIPAg==","n":3,"d":-17,"tow":271539500,"h_accuracy":241,"crc":31650,"e":-4} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"LF0vEJsAhwBMAEgAcgAG","tow":271539500,"crc":16894,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"LF0vEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271539500,"h_accuracy":0,"crc":37382,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"LF0vEP//","tow":271539500,"crc":26980} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgiQXS8QAAAAAAE=","wn":2098,"tow":271539600,"crc":63827} +{"length":16,"flags":17,"ns":599999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EZBdLxDkBwMZAxkV/kXDIw==","day":25,"tow":271539600,"year":2020,"crc":25926,"minutes":25,"month":3,"seconds":21} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-18.164036797038335,"preamble":85,"sender":22963,"msg_type":522,"payload":"kF0vED4n8+9l6kJA7nB7HlaSXsDInsZQ/ikywAECWwQPBg==","lat":37.8312358796379,"tow":271539600,"h_accuracy":513,"crc":60119,"lon":-122.28650629095839} +{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"kF0vEAAAAAAMAAAACQAAAPEAywIPAg==","n":0,"d":9,"tow":271539600,"h_accuracy":241,"crc":14381,"e":12} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"kF0vEJsAhwBMAEgAcgAG","tow":271539600,"crc":31365,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"kF0vEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271539600,"h_accuracy":0,"crc":1690,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"kF0vEP//","tow":271539600,"crc":39211} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"Mgj0XS8QAAAAAAE=","wn":2098,"tow":271539700,"crc":40345} +{"length":16,"flags":17,"ns":699999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EfRdLxDkBwMZAxkV/ia5KQ==","day":25,"tow":271539700,"year":2020,"crc":52490,"minutes":25,"month":3,"seconds":21} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-18.16683470068235,"preamble":85,"sender":22963,"msg_type":522,"payload":"9F0vEGYINPBl6kJAWDKaHlaSXsDGRM+ttSoywAECWwQPBg==","lat":37.83123590984978,"tow":271539700,"h_accuracy":513,"crc":6413,"lon":-122.2865063196017} +{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"9F0vEAEAAAACAAAADgAAAPEAywIPAg==","n":1,"d":14,"tow":271539700,"h_accuracy":241,"crc":11356,"e":2} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"9F0vEJsAhwBMAEgAcgAG","tow":271539700,"crc":22058,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"9F0vEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271539700,"h_accuracy":0,"crc":7724,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"9F0vEP//","tow":271539700,"crc":49298} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"message_type":4,"length":34,"data":[151,255,127,255,253,127,240,1,127,255,251,255,223,252,127,247,255,127,247,255,238,94,94,170,175,255,240],"preamble":85,"sender":22963,"msg_type":30583,"payload":"gwISXS8QBJf/f//9f/ABf//7/9/8f/f/f/f/7l5eqq//8A==","tow":271539474,"crc":42194,"sid":{"sat":131,"code":2}} +{"length":51,"text":"GLO L2OF ME 1 [+1325ms] low CN0 too long, dropping","preamble":85,"sender":22963,"msg_type":1025,"payload":"BkdMTyBMMk9GIE1FIDEgWysxMzI1bXNdIGxvdyBDTjAgdG9vIGxvbmcsIGRyb3BwaW5n","crc":56805,"level":6} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MghYXi8QAAAAAAE=","wn":2098,"tow":271539800,"crc":63666} +{"length":16,"flags":17,"ns":799999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EVheLxDkBwMZAxkV/gevLw==","day":25,"tow":271539800,"year":2020,"crc":19901,"minutes":25,"month":3,"seconds":21} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-18.165176701103274,"preamble":85,"sender":22963,"msg_type":522,"payload":"WF4vEHDPgvBl6kJAzL3CHlaSXsC7TDEFSSoywAECWwQPBg==","lat":37.83123594653341,"tow":271539800,"h_accuracy":513,"crc":12970,"lon":-122.28650635736193} +{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"WF4vEP7////9////GgAAAPEAywIPAg==","n":-2,"d":26,"tow":271539800,"h_accuracy":241,"crc":20524,"e":-3} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"WF4vEJsAhwBMAEgAcgAG","tow":271539800,"crc":44664,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"WF4vEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271539800,"h_accuracy":0,"crc":22989,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"WF4vEP//","tow":271539800,"crc":50315} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":237,"states":[{"cn0":213,"mesid":{"sat":5,"code":0}},{"cn0":180,"mesid":{"sat":21,"code":0}},{"cn0":186,"mesid":{"sat":2,"code":0}},{"cn0":166,"mesid":{"sat":31,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":217,"mesid":{"sat":25,"code":0}},{"cn0":207,"mesid":{"sat":12,"code":0}},{"cn0":212,"mesid":{"sat":29,"code":0}},{"cn0":206,"mesid":{"sat":18,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":205,"mesid":{"sat":131,"code":2}},{"cn0":204,"mesid":{"sat":25,"code":1}},{"cn0":188,"mesid":{"sat":12,"code":1}},{"cn0":149,"mesid":{"sat":31,"code":1}},{"cn0":196,"mesid":{"sat":18,"code":1}},{"cn0":194,"mesid":{"sat":29,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":193,"mesid":{"sat":5,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":212,"mesid":{"sat":11,"code":3}},{"cn0":176,"mesid":{"sat":9,"code":3}},{"cn0":174,"mesid":{"sat":20,"code":3}},{"cn0":206,"mesid":{"sat":5,"code":3}},{"cn0":206,"mesid":{"sat":10,"code":3}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":180,"mesid":{"sat":4,"code":3}},{"cn0":204,"mesid":{"sat":21,"code":3}},{"cn0":174,"mesid":{"sat":9,"code":4}},{"cn0":205,"mesid":{"sat":20,"code":4}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":200,"mesid":{"sat":11,"code":4}},{"cn0":195,"mesid":{"sat":5,"code":4}},{"cn0":189,"mesid":{"sat":0,"code":4}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":172,"mesid":{"sat":4,"code":4}},{"cn0":201,"mesid":{"sat":35,"code":12}},{"cn0":171,"mesid":{"sat":26,"code":12}},{"cn0":161,"mesid":{"sat":34,"code":12}},{"cn0":188,"mesid":{"sat":24,"code":12}},{"cn0":159,"mesid":{"sat":25,"code":12}},{"cn0":184,"mesid":{"sat":12,"code":12}},{"cn0":185,"mesid":{"sat":19,"code":12}},{"cn0":193,"mesid":{"sat":22,"code":12}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":208,"mesid":{"sat":12,"code":13}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":194,"mesid":{"sat":12,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":191,"mesid":{"sat":25,"code":14}},{"cn0":188,"mesid":{"sat":11,"code":14}},{"cn0":203,"mesid":{"sat":24,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":159,"mesid":{"sat":31,"code":14}},{"cn0":151,"mesid":{"sat":33,"code":14}},{"cn0":201,"mesid":{"sat":25,"code":20}},{"cn0":215,"mesid":{"sat":24,"code":20}},{"cn0":194,"mesid":{"sat":11,"code":20}},{"cn0":174,"mesid":{"sat":31,"code":20}},{"cn0":206,"mesid":{"sat":12,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":170,"mesid":{"sat":33,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}}],"preamble":85,"sender":22963,"msg_type":97,"payload":"BQDVFQC0AgC6HwCmAAAAAAAAGQDZDADPHQDUEgDOAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwLNGQHMDAG8HwGVEgHEHQHCAAAABQHBAAAAAAAAAAAAAAAACwPUCQOwFAOuBQPOCgPOAAAABAO0FQPMCQSuFATNAAAACwTIBQTDAAS9AAAABASsIwzJGgyrIgyhGAy8GQyfDAy4Ewy5FgzBAAAADA3QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADA7CAAAAGQ6/Cw68GA7LAAAAHw6fIQ6XGRTJGBTXCxTCHxSuDBTOAAAAIRSqAAAA","crc":44094} +{"length":128,"preamble":85,"sender":22963,"msg_type":151,"payload":"AgAaHQUAKzUMAFEtFQB9GRkAbUYaAKEBHQChNx8AlQ4EAxUWBQMyIQkDXw4KA3EpCwOYJQwDqgMTAyIHFAMMMRUDlSUMDJQpEwwjIBQMDwIWDEMkGAyCIxkMnQ4aDGcVIgyOESMMIi0LDosyDA4PPBgObDYZDpcpHw5VESEOIA8=","crc":34187,"azel":[{"el":29,"az":26,"sid":{"sat":2,"code":0}},{"el":53,"az":43,"sid":{"sat":5,"code":0}},{"el":45,"az":81,"sid":{"sat":12,"code":0}},{"el":25,"az":125,"sid":{"sat":21,"code":0}},{"el":70,"az":109,"sid":{"sat":25,"code":0}},{"el":1,"az":161,"sid":{"sat":26,"code":0}},{"el":55,"az":161,"sid":{"sat":29,"code":0}},{"el":14,"az":149,"sid":{"sat":31,"code":0}},{"el":22,"az":21,"sid":{"sat":4,"code":3}},{"el":33,"az":50,"sid":{"sat":5,"code":3}},{"el":14,"az":95,"sid":{"sat":9,"code":3}},{"el":41,"az":113,"sid":{"sat":10,"code":3}},{"el":37,"az":152,"sid":{"sat":11,"code":3}},{"el":3,"az":170,"sid":{"sat":12,"code":3}},{"el":7,"az":34,"sid":{"sat":19,"code":3}},{"el":49,"az":12,"sid":{"sat":20,"code":3}},{"el":37,"az":149,"sid":{"sat":21,"code":3}},{"el":41,"az":148,"sid":{"sat":12,"code":12}},{"el":32,"az":35,"sid":{"sat":19,"code":12}},{"el":2,"az":15,"sid":{"sat":20,"code":12}},{"el":36,"az":67,"sid":{"sat":22,"code":12}},{"el":35,"az":130,"sid":{"sat":24,"code":12}},{"el":14,"az":157,"sid":{"sat":25,"code":12}},{"el":21,"az":103,"sid":{"sat":26,"code":12}},{"el":17,"az":142,"sid":{"sat":34,"code":12}},{"el":45,"az":34,"sid":{"sat":35,"code":12}},{"el":50,"az":139,"sid":{"sat":11,"code":14}},{"el":60,"az":15,"sid":{"sat":12,"code":14}},{"el":54,"az":108,"sid":{"sat":24,"code":14}},{"el":41,"az":151,"sid":{"sat":25,"code":14}},{"el":17,"az":85,"sid":{"sat":31,"code":14}},{"el":15,"az":32,"sid":{"sat":33,"code":14}}]} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"Mgi8Xi8QAAAAAAE=","wn":2098,"tow":271539900,"crc":9162} +{"length":16,"flags":17,"ns":899999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EbxeLxDkBwMZAxkV/uikNQ==","day":25,"tow":271539900,"year":2020,"crc":54913,"minutes":25,"month":3,"seconds":21} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-18.15577642358396,"preamble":85,"sender":22963,"msg_type":522,"payload":"vF4vENjH5PBl6kJAgPvgHlaSXsDsx7T24CcywAECWwQPBg==","lat":37.831235992154404,"tow":271539900,"h_accuracy":513,"crc":11985,"lon":-122.28650638552608} +{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"vF4vEAMAAAACAAAA3/////EAywIPAg==","n":3,"d":-33,"tow":271539900,"h_accuracy":241,"crc":59683,"e":2} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"vF4vEJsAhwBMAEgAcgAG","tow":271539900,"crc":54981,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"vF4vEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271539900,"h_accuracy":0,"crc":64494,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"vF4vEP//","tow":271539900,"crc":18706} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":249,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":90,"i":110568983},"flags":15,"cn0":213,"P":1052028787,"D":{"f":32,"i":-200},"lock":15,"sid":{"sat":5,"code":0}},{"L":{"f":208,"i":121770463},"flags":15,"cn0":180,"P":1158607447,"D":{"f":160,"i":2167},"lock":15,"sid":{"sat":21,"code":0}},{"L":{"f":19,"i":123400298},"flags":15,"cn0":186,"P":1174114390,"D":{"f":175,"i":-2480},"lock":15,"sid":{"sat":2,"code":0}},{"L":{"f":231,"i":128748410},"flags":15,"cn0":166,"P":1225000396,"D":{"f":68,"i":-409},"lock":15,"sid":{"sat":31,"code":0}},{"L":{"f":9,"i":107851645},"flags":15,"cn0":218,"P":1026174213,"D":{"f":26,"i":-1143},"lock":15,"sid":{"sat":25,"code":0}},{"L":{"f":235,"i":114173032},"flags":15,"cn0":207,"P":1086320189,"D":{"f":140,"i":-2978},"lock":15,"sid":{"sat":12,"code":0}},{"L":{"f":43,"i":110723849},"flags":15,"cn0":212,"P":1053502311,"D":{"f":116,"i":1479},"lock":15,"sid":{"sat":29,"code":0}},{"L":{"f":98,"i":84040263},"flags":15,"cn0":204,"P":1026174260,"D":{"f":209,"i":-890},"lock":15,"sid":{"sat":25,"code":1}},{"L":{"f":74,"i":88966031},"flags":15,"cn0":188,"P":1086320139,"D":{"f":229,"i":-2321},"lock":15,"sid":{"sat":12,"code":1}},{"L":{"f":115,"i":100323439},"flags":15,"cn0":149,"P":1225000251,"D":{"f":74,"i":-317},"lock":15,"sid":{"sat":31,"code":1}},{"L":{"f":225,"i":86278325},"flags":15,"cn0":194,"P":1053502224,"D":{"f":238,"i":1152},"lock":15,"sid":{"sat":29,"code":1}},{"L":{"f":165,"i":86157678},"flags":15,"cn0":193,"P":1052028692,"D":{"f":161,"i":-156},"lock":15,"sid":{"sat":5,"code":1}},{"L":{"f":217,"i":112907526},"flags":15,"cn0":212,"P":1056454867,"D":{"f":165,"i":1144},"lock":15,"sid":{"sat":11,"code":3}},{"L":{"f":219,"i":123447712},"flags":15,"cn0":175,"P":1155889261,"D":{"f":238,"i":-4409},"lock":15,"sid":{"sat":9,"code":3}}],"payload":"IF8vEAAAAAAyCEBzr7Q+FyaXBlo4/yDVDw8FAFfyDkXfEUIH0HcIoLQPDxUAVpD7RWrwWgcTUPavug8PAgDMBQRJeousB+dn/kSmDw8fAAUtKj19r20GCYn7GtoPDxkAPe6/QGgkzgbrXvSMzw8PDABnK8s+CYOZBivHBXTUDw8dADQtKj1HWgIFYob80cwPDxkBC+6/QI+DTQVK7/blvA8PDAE7BQRJb9D6BXPD/kqVDw8fARAryz61gCQF4YAE7sIPDx0BFK+0Pm6pIgWlZP+hwQ8PBQHTOPg+BtW6Btl4BKXUDw8LA2145USgqVsH28fu7q8PDwkD","header":{"n_obs":64,"t":{"ns_residual":0,"wn":2098,"tow":271540000}},"crc":9807} +{"length":249,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":7,"i":109801812},"flags":15,"cn0":174,"P":1026674341,"D":{"f":43,"i":-1216},"lock":15,"sid":{"sat":20,"code":3}},{"L":{"f":194,"i":114803823},"flags":15,"cn0":206,"P":1073821113,"D":{"f":128,"i":2180},"lock":15,"sid":{"sat":5,"code":3}},{"L":{"f":171,"i":111682188},"flags":15,"cn0":206,"P":1047564346,"D":{"f":188,"i":-3060},"lock":15,"sid":{"sat":10,"code":3}},{"L":{"f":0,"i":120472667},"flags":15,"cn0":180,"P":1124870716,"D":{"f":246,"i":-1338},"lock":15,"sid":{"sat":4,"code":3}},{"L":{"f":15,"i":113378094},"flags":15,"cn0":204,"P":1059369928,"D":{"f":196,"i":1617},"lock":15,"sid":{"sat":21,"code":3}},{"L":{"f":108,"i":96014897},"flags":15,"cn0":174,"P":1155889414,"D":{"f":133,"i":-3429},"lock":15,"sid":{"sat":9,"code":4}},{"L":{"f":23,"i":85401445},"flags":15,"cn0":205,"P":1026674656,"D":{"f":22,"i":-944},"lock":15,"sid":{"sat":20,"code":4}},{"L":{"f":169,"i":87816975},"flags":15,"cn0":199,"P":1056455194,"D":{"f":21,"i":890},"lock":15,"sid":{"sat":11,"code":4}},{"L":{"f":184,"i":89291866},"flags":15,"cn0":195,"P":1073821435,"D":{"f":86,"i":1696},"lock":15,"sid":{"sat":5,"code":4}},{"L":{"f":113,"i":93700953},"flags":15,"cn0":172,"P":1124870898,"D":{"f":71,"i":-1040},"lock":15,"sid":{"sat":4,"code":4}},{"L":{"f":28,"i":121618546},"flags":15,"cn0":201,"P":1167777880,"D":{"f":131,"i":-1503},"lock":15,"sid":{"sat":35,"code":12}},{"L":{"f":89,"i":129289329},"flags":15,"cn0":172,"P":1241432853,"D":{"f":78,"i":-3011},"lock":15,"sid":{"sat":26,"code":12}},{"L":{"f":4,"i":132888136},"flags":15,"cn0":161,"P":1275988281,"D":{"f":118,"i":2247},"lock":15,"sid":{"sat":34,"code":12}},{"L":{"f":108,"i":125184960},"flags":15,"cn0":189,"P":1202022804,"D":{"f":156,"i":-1315},"lock":15,"sid":{"sat":24,"code":12}}],"payload":"IF8vEAAAAAAyCEGlzjE9VHGLBgdA+yuuDw8UA7k1AUBvxNcGwoQIgM4PDwUDOpBwPowiqAarDPS8zg8PCgM8KgxDW0QuBwDG+va0Dw8EA8izJD8uA8IGD1EGxMwPDxUDBnnlRDESuQVsm/KFrg8PCQTgzzE9ZR8XBRdQ/BbNDw8UBBo6+D4P+zsFqXoDFccPDwsE+zYBQFp8UgW4oAZWww8PBQTyKgxDWcOVBXHw+0esDw8EBFjgmkVywD8HHCH6g8kPDyMMFcP+SXHMtAdZPfROrA8PGgw5CQ5MSLbrBwTHCHahDw8iDJRppUfAK3YHbN36nL0PDxgM","header":{"n_obs":65,"t":{"ns_residual":0,"wn":2098,"tow":271540000}},"crc":58953} +{"length":249,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":107,"i":134638192},"flags":15,"cn0":159,"P":1292792509,"D":{"f":85,"i":1312},"lock":15,"sid":{"sat":25,"code":12}},{"L":{"f":230,"i":121058486},"flags":15,"cn0":184,"P":1162400452,"D":{"f":186,"i":1608},"lock":15,"sid":{"sat":12,"code":12}},{"L":{"f":243,"i":124522548},"flags":15,"cn0":185,"P":1195662276,"D":{"f":38,"i":-304},"lock":15,"sid":{"sat":19,"code":12}},{"L":{"f":11,"i":124643023},"flags":15,"cn0":193,"P":1196819105,"D":{"f":239,"i":2379},"lock":15,"sid":{"sat":22,"code":12}},{"L":{"f":189,"i":93610109},"flags":15,"cn0":208,"P":1162400383,"D":{"f":198,"i":1244},"lock":15,"sid":{"sat":12,"code":13}},{"L":{"f":90,"i":116452606},"flags":15,"cn0":193,"P":1108009673,"D":{"f":66,"i":-1030},"lock":15,"sid":{"sat":12,"code":14}},{"L":{"f":26,"i":132446852},"flags":15,"cn0":190,"P":1260189821,"D":{"f":132,"i":1076},"lock":15,"sid":{"sat":25,"code":14}},{"L":{"f":226,"i":125395540},"flags":15,"cn0":188,"P":1193098840,"D":{"f":115,"i":1042},"lock":15,"sid":{"sat":11,"code":14}},{"L":{"f":101,"i":118459123},"flags":15,"cn0":202,"P":1127100942,"D":{"f":111,"i":-1755},"lock":15,"sid":{"sat":24,"code":14}},{"L":{"f":177,"i":143403469},"flags":15,"cn0":158,"P":1364438604,"D":{"f":255,"i":-3175},"lock":15,"sid":{"sat":31,"code":14}},{"L":{"f":163,"i":144579539},"flags":15,"cn0":151,"P":1375628552,"D":{"f":234,"i":-2143},"lock":15,"sid":{"sat":33,"code":14}},{"L":{"f":183,"i":101485248},"flags":15,"cn0":201,"P":1260189791,"D":{"f":58,"i":826},"lock":15,"sid":{"sat":25,"code":20}},{"L":{"f":211,"i":90767443},"flags":15,"cn0":215,"P":1127101501,"D":{"f":141,"i":-1345},"lock":15,"sid":{"sat":24,"code":20}},{"L":{"f":105,"i":96082275},"flags":15,"cn0":194,"P":1193098651,"D":{"f":31,"i":798},"lock":15,"sid":{"sat":11,"code":20}}],"payload":"IF8vEAAAAAAyCEK9cg5NcGoGCGsgBVWfDw8ZDMTSSEW2NDcH5kgGurgPDwwMxFtERzQQbAfz0P4muQ8PEwyhAlZHz+ZtBwtLCe/BDw8WDH/SSEV9YJQFvdwExtAPDwwNyeIKQv7s8AZa+vtCwQ8PDA59+BxLhPrkBxo0BIS+Dw8ZDlg+HUdUYnkH4hIEc7wPDwsODjIuQ/OKDwdlJflvyg8PGA5MrlNRzSmMCLGZ8/+eDw8fDght/lHTG54Io6H36pcPDyEOX/gcS8CKDAa3OgM6yQ8PGRQ9NC5DUwBpBdO/+o3XDw8YFJs9HUdjGboFaR4DH8IPDwsU","header":{"n_obs":66,"t":{"ns_residual":0,"wn":2098,"tow":271540000}},"crc":13114} +{"length":62,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":49,"i":109880622},"flags":15,"cn0":174,"P":1364438715,"D":{"f":214,"i":-2431},"lock":15,"sid":{"sat":31,"code":20}},{"L":{"f":197,"i":89229949},"flags":15,"cn0":206,"P":1108009518,"D":{"f":130,"i":-790},"lock":15,"sid":{"sat":12,"code":20}},{"L":{"f":172,"i":110781795},"flags":15,"cn0":169,"P":1375628531,"D":{"f":122,"i":-1640},"lock":15,"sid":{"sat":33,"code":20}}],"payload":"IF8vEAAAAAAyCEO7rlNRLqWMBjGB9tauDw8fFC7iCkJ9ilEFxer8gs4PDwwU82z+UWNlmgasmPl6qQ8PIRQ=","header":{"n_obs":67,"t":{"ns_residual":0,"wn":2098,"tow":271540000}},"crc":3383} +{"length":9,"l2ca_bias":0,"preamble":85,"l2p_bias":0,"sender":22963,"msg_type":117,"payload":"/wAAAAAAAAAA","l1ca_bias":0,"mask":255,"crc":49809,"l1p_bias":0} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgggXy8QAAAAAAE=","wn":2098,"tow":271540000,"crc":15685} +{"length":16,"flags":17,"ns":999999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"ESBfLxDkBwMZAxkV/smaOw==","day":25,"tow":271540000,"year":2020,"crc":32045,"minutes":25,"month":3,"seconds":21} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-18.14855627817673,"preamble":85,"sender":22963,"msg_type":522,"payload":"IF8vEB1NSfFl6kJAbbsCH1aSXsBxYsTIByYywAECWwQPBg==","lat":37.83123603896295,"tow":271540000,"h_accuracy":513,"crc":58016,"lon":-122.28650641695795} +{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"IF8vEAMAAAD9//////////EAywIPAg==","n":3,"d":-1,"tow":271540000,"h_accuracy":241,"crc":54906,"e":-3} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"IF8vEJsAhwBMAEgAcgAG","tow":271540000,"crc":3019,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"IF8vEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271540000,"h_accuracy":0,"crc":53289,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"IF8vEP//","tow":271540000,"crc":9732} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":4,"flags":2147616000,"preamble":85,"sender":22963,"msg_type":65535,"payload":"AAUCgA==","crc":40942} +{"length":24,"z":3890655.0240602265,"preamble":85,"sender":22963,"msg_type":72,"payload":"UO0a3iqORMHK1UJhIkRQwc9nFIPvrk1B","crc":2168,"x":-2694229.735196747,"y":-4264073.519704292} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"bWFpbgAAAAAAAAAAAAAAAAAAAAAAAAx1AAA=","name":"main\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":47991,"stack_free":29964,"cpu":0} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"aWRsZQAAAAAAAAAAAAAAAAAAAAATAHwAAAA=","name":"idle\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":36916,"stack_free":124,"cpu":19} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"cnBtc2cAAAAAAAAAAAAAAAAAAAABAOQNAAA=","name":"rpmsg\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":18957,"stack_free":3556,"cpu":1} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"U0JQAAAAAAAAAAAAAAAAAAAAAAAAAPz/AAA=","name":"SBP\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":51784,"stack_free":65532,"cpu":0} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"TkFQAAAAAAAAAAAAAAAAAAAAAAAAAASAAAA=","name":"NAP\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":33651,"stack_free":32772,"cpu":0} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"bWFuYWdlIFBWAAAAAAAAAAAAAAAAACwEAAA=","name":"manage PV\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":61814,"stack_free":1068,"cpu":0} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"SU1VAAAAAAAAAAAAAAAAAAAAAAAAAPQHAAA=","name":"IMU\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":14252,"stack_free":2036,"cpu":0} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"SU1VIGF1eAAAAAAAAAAAAAAAAAAAAEwIAAA=","name":"IMU aux\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":18976,"stack_free":2124,"cpu":0} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"bmRiAAAAAAAAAAAAAAAAAAAAAAAAAFAMAAA=","name":"ndb\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":26120,"stack_free":3152,"cpu":0} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"TkFQIFRyYWNraW5nAAAAAAAAAAApAdR3AAA=","name":"NAP Tracking\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":25570,"stack_free":30676,"cpu":297} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"ZGVjb2RlAAAAAAAAAAAAAAAAAAAIANQGAAA=","name":"decode\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":40082,"stack_free":1748,"cpu":8} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"bWFuYWdlIGFjcQAAAAAAAAAAAAD/AaR3AAA=","name":"manage acq\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":5520,"stack_free":30628,"cpu":511} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"c3lzdGVtIG1vbml0b3IAAAAAAAAAACwGAAA=","name":"system monitor\u0000\u0000\u0000\u0000\u0000\u0000","crc":58531,"stack_free":1580,"cpu":0} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"V2F0Y2hkb2cAAAAAAAAAAAAAAAAAAOQDAAA=","name":"Watchdog\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":44438,"stack_free":996,"cpu":0} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"c3RhcmxpbmcAAAAAAAAAAAAAAACXAPz/AAA=","name":"starling\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":46399,"stack_free":65532,"cpu":151} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"bWVfY2FsY19wdnQAAAAAAAAAAAAJAIwjAAA=","name":"me_calc_pvt\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":57561,"stack_free":9100,"cpu":9} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"UFBTAAAAAAAAAAAAAAAAAAAAAAAAAEgHAAA=","name":"PPS\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":38576,"stack_free":1864,"cpu":0} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"c3BlY3RydW0gYW5hbHl6ZXIAAAAAANQPAAA=","name":"spectrum analyzer\u0000\u0000\u0000","crc":50933,"stack_free":4052,"cpu":0} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgiEXy8QAAAAAAE=","wn":2098,"tow":271540100,"crc":47588} +{"length":16,"flags":17,"ns":99999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EYRfLxDkBwMZAxkW/uD1BQ==","day":25,"tow":271540100,"year":2020,"crc":5525,"minutes":25,"month":3,"seconds":22} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-18.13948043003888,"preamble":85,"sender":22963,"msg_type":522,"payload":"hF8vEJjikfFl6kJA+QoiH1aSXsDyck39tCMywAECWwQPBg==","lat":37.831236072762465,"tow":271540100,"h_accuracy":513,"crc":11167,"lon":-122.28650644611834} +{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"hF8vEAAAAAD4////9f////EAywIPAg==","n":0,"d":-11,"tow":271540100,"h_accuracy":241,"crc":45940,"e":-8} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"hF8vEJsAhwBMAEgAcgAG","tow":271540100,"crc":22911,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"hF8vEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271540100,"h_accuracy":0,"crc":42832,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"hF8vEP//","tow":271540100,"crc":49549} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgjoXy8QAAAAAAE=","wn":2098,"tow":271540200,"crc":62673} +{"length":16,"flags":17,"ns":199999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EehfLxDkBwMZAxkW/sHrCw==","day":25,"tow":271540200,"year":2020,"crc":28219,"minutes":25,"month":3,"seconds":22} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-18.134096061449373,"preamble":85,"sender":22963,"msg_type":522,"payload":"6F8vELBO2PFl6kJArsY8H1aSXsCNcpYeVCIywAECWwQPBg==","lat":37.83123610555538,"tow":271540200,"h_accuracy":513,"crc":57578,"lon":-122.2865064710156} +{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"6F8vEP7///8DAAAADQAAAPEAywIPAg==","n":-2,"d":13,"tow":271540200,"h_accuracy":241,"crc":13882,"e":3} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"6F8vEJsAhwBMAEgAcgAG","tow":271540200,"crc":21141,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"6F8vEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271540200,"h_accuracy":0,"crc":57669,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"6F8vEP//","tow":271540200,"crc":38262} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MghMYC8QAAAAAAE=","wn":2098,"tow":271540300,"crc":61294} +{"length":16,"flags":17,"ns":299999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EUxgLxDkBwMZAxkW/qLhEQ==","day":25,"tow":271540300,"year":2020,"crc":25169,"minutes":25,"month":3,"seconds":22} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-18.131937683444,"preamble":85,"sender":22963,"msg_type":522,"payload":"TGAvEJGFNvJl6kJAkw1PH1aSXsCCgAOrxiEywAECWwQPBg==","lat":37.83123614942736,"tow":271540300,"h_accuracy":513,"crc":3155,"lon":-122.28650648803732} +{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"TGAvEAcAAAACAAAADQAAAPEAywIPAg==","n":7,"d":13,"tow":271540300,"h_accuracy":241,"crc":20711,"e":2} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"TGAvEJsAhwBMAEgAcgAG","tow":271540300,"crc":49268,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"TGAvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271540300,"h_accuracy":0,"crc":54204,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"TGAvEP//","tow":271540300,"crc":7144} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":237,"states":[{"cn0":213,"mesid":{"sat":5,"code":0}},{"cn0":180,"mesid":{"sat":21,"code":0}},{"cn0":186,"mesid":{"sat":2,"code":0}},{"cn0":165,"mesid":{"sat":31,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":217,"mesid":{"sat":25,"code":0}},{"cn0":207,"mesid":{"sat":12,"code":0}},{"cn0":212,"mesid":{"sat":29,"code":0}},{"cn0":206,"mesid":{"sat":18,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":204,"mesid":{"sat":131,"code":2}},{"cn0":204,"mesid":{"sat":25,"code":1}},{"cn0":188,"mesid":{"sat":12,"code":1}},{"cn0":149,"mesid":{"sat":31,"code":1}},{"cn0":196,"mesid":{"sat":18,"code":1}},{"cn0":194,"mesid":{"sat":29,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":193,"mesid":{"sat":5,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":212,"mesid":{"sat":100,"code":3}},{"cn0":176,"mesid":{"sat":98,"code":3}},{"cn0":174,"mesid":{"sat":102,"code":3}},{"cn0":206,"mesid":{"sat":101,"code":3}},{"cn0":206,"mesid":{"sat":93,"code":3}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":180,"mesid":{"sat":106,"code":3}},{"cn0":203,"mesid":{"sat":104,"code":3}},{"cn0":174,"mesid":{"sat":98,"code":4}},{"cn0":205,"mesid":{"sat":102,"code":4}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":199,"mesid":{"sat":100,"code":4}},{"cn0":195,"mesid":{"sat":101,"code":4}},{"cn0":188,"mesid":{"sat":104,"code":4}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":173,"mesid":{"sat":106,"code":4}},{"cn0":200,"mesid":{"sat":35,"code":12}},{"cn0":171,"mesid":{"sat":26,"code":12}},{"cn0":161,"mesid":{"sat":34,"code":12}},{"cn0":188,"mesid":{"sat":24,"code":12}},{"cn0":159,"mesid":{"sat":25,"code":12}},{"cn0":185,"mesid":{"sat":12,"code":12}},{"cn0":185,"mesid":{"sat":19,"code":12}},{"cn0":193,"mesid":{"sat":22,"code":12}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":208,"mesid":{"sat":12,"code":13}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":193,"mesid":{"sat":12,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":190,"mesid":{"sat":25,"code":14}},{"cn0":187,"mesid":{"sat":11,"code":14}},{"cn0":202,"mesid":{"sat":24,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":157,"mesid":{"sat":31,"code":14}},{"cn0":150,"mesid":{"sat":33,"code":14}},{"cn0":201,"mesid":{"sat":25,"code":20}},{"cn0":215,"mesid":{"sat":24,"code":20}},{"cn0":194,"mesid":{"sat":11,"code":20}},{"cn0":174,"mesid":{"sat":31,"code":20}},{"cn0":206,"mesid":{"sat":12,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":170,"mesid":{"sat":33,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}}],"preamble":85,"sender":22963,"msg_type":97,"payload":"BQDVFQC0AgC6HwClAAAAAAAAGQDZDADPHQDUEgDOAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwLMGQHMDAG8HwGVEgHEHQHCAAAABQHBAAAAAAAAAAAAAAAAZAPUYgOwZgOuZQPOXQPOAAAAagO0aAPLYgSuZgTNAAAAZATHZQTDaAS8AAAAagStIwzIGgyrIgyhGAy8GQyfDAy5Ewy5FgzBAAAADA3QAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADA7BAAAAGQ6+Cw67GA7KAAAAHw6dIQ6WGRTJGBTXCxTCHxSuDBTOAAAAIRSqAAAA","crc":20823} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgiwYC8QAAAAAAE=","wn":2098,"tow":271540400,"crc":19991} +{"length":16,"flags":17,"ns":399999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EbBgLxDkBwMZAxkW/oPXFw==","day":25,"tow":271540400,"year":2020,"crc":3360,"minutes":25,"month":3,"seconds":22} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-18.13249202129878,"preamble":85,"sender":22963,"msg_type":522,"payload":"sGAvECjWivJl6kJA8QdbH1aSXsCOdUL/6iEywAECWwQPBg==","lat":37.8312361886895,"tow":271540400,"h_accuracy":513,"crc":63590,"lon":-122.2865064991927} +{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"sGAvEAkAAAD9////EAAAAPEAywIPAg==","n":9,"d":16,"tow":271540400,"h_accuracy":241,"crc":53652,"e":-3} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"sGAvEJsAhwBMAEgAcgAG","tow":271540400,"crc":53510,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"sGAvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271540400,"h_accuracy":0,"crc":37498,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"sGAvEP//","tow":271540400,"crc":33207} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":9,"l2ca_bias":0,"preamble":85,"l2p_bias":0,"sender":22963,"msg_type":117,"payload":"/wAAAAAAAAAA","l1ca_bias":0,"mask":255,"crc":49809,"l1p_bias":0} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MggUYS8QAAAAAAE=","wn":2098,"tow":271540500,"crc":36197} +{"length":16,"flags":17,"ns":499999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"ERRhLxDkBwMZAxkW/mTNHQ==","day":25,"tow":271540500,"year":2020,"crc":19622,"minutes":25,"month":3,"seconds":22} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-18.13026054052216,"preamble":85,"sender":22963,"msg_type":522,"payload":"FGEvEPcP1/Jl6kJArCxlH1aSXsCAgDnBWCEywAECWwQPBg==","lat":37.83123622418491,"tow":271540500,"h_accuracy":513,"crc":43792,"lon":-122.28650650863955} +{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"FGEvEAAAAAACAAAAEwAAAPEAywIPAg==","n":0,"d":19,"tow":271540500,"h_accuracy":241,"crc":60953,"e":2} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"FGEvEJsAhwBMAEgAcgAG","tow":271540500,"crc":63699,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"FGEvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271540500,"h_accuracy":0,"crc":12533,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"FGEvEP//","tow":271540500,"crc":52335} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"Mgh4YS8QAAAAAAE=","wn":2098,"tow":271540600,"crc":49232} +{"length":16,"flags":17,"ns":599999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EXhhLxDkBwMZAxkW/kXDIw==","day":25,"tow":271540600,"year":2020,"crc":552,"minutes":25,"month":3,"seconds":22} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-18.126025964251095,"preamble":85,"sender":22963,"msg_type":522,"payload":"eGEvEAEELvNl6kJAB2VwH1aSXsDD59I8QyAywAECWwQPBg==","lat":37.83123626467569,"tow":271540600,"h_accuracy":513,"crc":10529,"lon":-122.28650651908912} +{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"eGEvEAgAAAAEAAAA9v////EAywIPAg==","n":8,"d":-10,"tow":271540600,"h_accuracy":241,"crc":33364,"e":4} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"eGEvEJsAhwBMAEgAcgAG","tow":271540600,"crc":62265,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"eGEvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271540600,"h_accuracy":0,"crc":30432,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"eGEvEP//","tow":271540600,"crc":39060} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"message_type":2,"length":34,"data":[23,255,255,247,255,0,47,255,0,7,255,127,255,254,127,247,255,255,224,2,229,231,85,238,110,229,112],"preamble":85,"sender":22963,"msg_type":30583,"payload":"gwL+YC8QAhf///f/AC//AAf/f//+f/f//+AC5edV7m7lcA==","tow":271540478,"crc":49929,"sid":{"sat":131,"code":2}} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgjcYS8QAAAAAAE=","wn":2098,"tow":271540700,"crc":17649} +{"length":16,"flags":17,"ns":699999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EdxhLxDkBwMZAxkW/ia5KQ==","day":25,"tow":271540700,"year":2020,"crc":54399,"minutes":25,"month":3,"seconds":22} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-18.116786942666565,"preamble":85,"sender":22963,"msg_type":522,"payload":"3GEvEA4yh/Nl6kJAeCafH1aSXsBMWsO/5R0ywAECWwQPBg==","lat":37.83123630620331,"tow":271540700,"h_accuracy":513,"crc":32561,"lon":-122.28650656263369} +{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"3GEvEPj////4////2v////EAywIPAg==","n":-8,"d":-38,"tow":271540700,"h_accuracy":241,"crc":42357,"e":-8} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"3GEvEJsAhwBMAEgAcgAG","tow":271540700,"crc":41357,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"3GEvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271540700,"h_accuracy":0,"crc":409,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"3GEvEP//","tow":271540700,"crc":32541} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MghAYi8QAAAAAAE=","wn":2098,"tow":271540800,"crc":54744} +{"length":16,"flags":17,"ns":799999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EUBiLxDkBwMZAxkW/gevLw==","day":25,"tow":271540800,"year":2020,"crc":34646,"minutes":25,"month":3,"seconds":22} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-18.114852141525972,"preamble":85,"sender":22963,"msg_type":522,"payload":"QGIvEInWBPRl6kJAAk/NH1aSXsDIui/zZh0ywAECWwQPBg==","lat":37.83123636471016,"tow":271540800,"h_accuracy":513,"crc":33523,"lon":-122.28650660562201} +{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"QGIvEAEAAAD9////EgAAAPEAywIPAg==","n":1,"d":18,"tow":271540800,"h_accuracy":241,"crc":64920,"e":-3} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"QGIvEJsAhwBMAEgAcgAG","tow":271540800,"crc":35393,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"QGIvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271540800,"h_accuracy":0,"crc":37267,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"QGIvEP//","tow":271540800,"crc":21640} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":237,"states":[{"cn0":212,"mesid":{"sat":5,"code":0}},{"cn0":178,"mesid":{"sat":21,"code":0}},{"cn0":185,"mesid":{"sat":2,"code":0}},{"cn0":164,"mesid":{"sat":31,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":216,"mesid":{"sat":25,"code":0}},{"cn0":206,"mesid":{"sat":12,"code":0}},{"cn0":210,"mesid":{"sat":29,"code":0}},{"cn0":205,"mesid":{"sat":18,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":203,"mesid":{"sat":131,"code":2}},{"cn0":204,"mesid":{"sat":25,"code":1}},{"cn0":188,"mesid":{"sat":12,"code":1}},{"cn0":148,"mesid":{"sat":31,"code":1}},{"cn0":196,"mesid":{"sat":18,"code":1}},{"cn0":194,"mesid":{"sat":29,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":193,"mesid":{"sat":5,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":212,"mesid":{"sat":11,"code":3}},{"cn0":175,"mesid":{"sat":9,"code":3}},{"cn0":175,"mesid":{"sat":20,"code":3}},{"cn0":206,"mesid":{"sat":5,"code":3}},{"cn0":206,"mesid":{"sat":10,"code":3}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":180,"mesid":{"sat":4,"code":3}},{"cn0":204,"mesid":{"sat":21,"code":3}},{"cn0":174,"mesid":{"sat":9,"code":4}},{"cn0":205,"mesid":{"sat":20,"code":4}},{"cn0":78,"mesid":{"sat":10,"code":4}},{"cn0":199,"mesid":{"sat":11,"code":4}},{"cn0":195,"mesid":{"sat":5,"code":4}},{"cn0":188,"mesid":{"sat":0,"code":4}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":172,"mesid":{"sat":4,"code":4}},{"cn0":200,"mesid":{"sat":35,"code":12}},{"cn0":170,"mesid":{"sat":26,"code":12}},{"cn0":161,"mesid":{"sat":34,"code":12}},{"cn0":188,"mesid":{"sat":24,"code":12}},{"cn0":159,"mesid":{"sat":25,"code":12}},{"cn0":184,"mesid":{"sat":12,"code":12}},{"cn0":185,"mesid":{"sat":19,"code":12}},{"cn0":193,"mesid":{"sat":22,"code":12}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":209,"mesid":{"sat":12,"code":13}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":194,"mesid":{"sat":12,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":191,"mesid":{"sat":25,"code":14}},{"cn0":188,"mesid":{"sat":11,"code":14}},{"cn0":203,"mesid":{"sat":24,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":157,"mesid":{"sat":31,"code":14}},{"cn0":151,"mesid":{"sat":33,"code":14}},{"cn0":201,"mesid":{"sat":25,"code":20}},{"cn0":215,"mesid":{"sat":24,"code":20}},{"cn0":194,"mesid":{"sat":11,"code":20}},{"cn0":174,"mesid":{"sat":31,"code":20}},{"cn0":206,"mesid":{"sat":12,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":170,"mesid":{"sat":33,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}}],"preamble":85,"sender":22963,"msg_type":97,"payload":"BQDUFQCyAgC5HwCkAAAAAAAAGQDYDADOHQDSEgDNAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwLLGQHMDAG8HwGUEgHEHQHCAAAABQHBAAAAAAAAAAAAAAAACwPUCQOvFAOvBQPOCgPOAAAABAO0FQPMCQSuFATNCgROCwTHBQTDAAS8AAAABASsIwzIGgyqIgyhGAy8GQyfDAy4Ewy5FgzBAAAADA3RAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADA7CAAAAGQ6/Cw68GA7LAAAAHw6dIQ6XGRTJGBTXCxTCHxSuDBTOAAAAIRSqAAAA","crc":45120} +{"length":128,"preamble":85,"sender":22963,"msg_type":151,"payload":"AgAaHQUAKzUMAFEtFQB9GRkAbUYaAKEBHQChNx8AlQ4EAxUWBQMyIQkDXw4KA3EpCwOYJQwDqgMTAyIHFAMMMRUDlSUMDJQpEwwjIBQMDwIWDEMkGAyCIxkMnQ4aDGcVIgyOESMMIi0LDosyDA4PPBgObDYZDpcpHw5VESEOIA8=","crc":34187,"azel":[{"el":29,"az":26,"sid":{"sat":2,"code":0}},{"el":53,"az":43,"sid":{"sat":5,"code":0}},{"el":45,"az":81,"sid":{"sat":12,"code":0}},{"el":25,"az":125,"sid":{"sat":21,"code":0}},{"el":70,"az":109,"sid":{"sat":25,"code":0}},{"el":1,"az":161,"sid":{"sat":26,"code":0}},{"el":55,"az":161,"sid":{"sat":29,"code":0}},{"el":14,"az":149,"sid":{"sat":31,"code":0}},{"el":22,"az":21,"sid":{"sat":4,"code":3}},{"el":33,"az":50,"sid":{"sat":5,"code":3}},{"el":14,"az":95,"sid":{"sat":9,"code":3}},{"el":41,"az":113,"sid":{"sat":10,"code":3}},{"el":37,"az":152,"sid":{"sat":11,"code":3}},{"el":3,"az":170,"sid":{"sat":12,"code":3}},{"el":7,"az":34,"sid":{"sat":19,"code":3}},{"el":49,"az":12,"sid":{"sat":20,"code":3}},{"el":37,"az":149,"sid":{"sat":21,"code":3}},{"el":41,"az":148,"sid":{"sat":12,"code":12}},{"el":32,"az":35,"sid":{"sat":19,"code":12}},{"el":2,"az":15,"sid":{"sat":20,"code":12}},{"el":36,"az":67,"sid":{"sat":22,"code":12}},{"el":35,"az":130,"sid":{"sat":24,"code":12}},{"el":14,"az":157,"sid":{"sat":25,"code":12}},{"el":21,"az":103,"sid":{"sat":26,"code":12}},{"el":17,"az":142,"sid":{"sat":34,"code":12}},{"el":45,"az":34,"sid":{"sat":35,"code":12}},{"el":50,"az":139,"sid":{"sat":11,"code":14}},{"el":60,"az":15,"sid":{"sat":12,"code":14}},{"el":54,"az":108,"sid":{"sat":24,"code":14}},{"el":41,"az":151,"sid":{"sat":25,"code":14}},{"el":17,"az":85,"sid":{"sat":31,"code":14}},{"el":15,"az":32,"sid":{"sat":33,"code":14}}]} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgikYi8QAAAAAAE=","wn":2098,"tow":271540900,"crc":3744} +{"length":16,"flags":17,"ns":899999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EaRiLxDkBwMZAxkW/uikNQ==","day":25,"tow":271540900,"year":2020,"crc":7274,"minutes":25,"month":3,"seconds":22} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-18.109939681051554,"preamble":85,"sender":22963,"msg_type":522,"payload":"pGIvEKzTdfRl6kJAZgb2H1aSXsArpsYBJRwywAECWwQPBg==","lat":37.831236417324675,"tow":271540900,"h_accuracy":513,"crc":11338,"lon":-122.28650664354208} +{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"pGIvEAIAAAABAAAA+f////EAywIPAg==","n":2,"d":-7,"tow":271540900,"h_accuracy":241,"crc":5725,"e":1} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"pGIvEJsAhwBMAEgAcgAG","tow":271540900,"crc":62204,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"pGIvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271540900,"h_accuracy":0,"crc":13232,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"pGIvEP//","tow":271540900,"crc":55569} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":249,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":44,"i":110569183},"flags":15,"cn0":211,"P":1052030684,"D":{"f":48,"i":-201},"lock":15,"sid":{"sat":5,"code":0}},{"L":{"f":53,"i":121768296},"flags":15,"cn0":178,"P":1158586821,"D":{"f":63,"i":2167},"lock":15,"sid":{"sat":21,"code":0}},{"L":{"f":74,"i":123402777},"flags":15,"cn0":185,"P":1174137992,"D":{"f":236,"i":-2480},"lock":15,"sid":{"sat":2,"code":0}},{"L":{"f":33,"i":128748819},"flags":15,"cn0":164,"P":1225004283,"D":{"f":67,"i":-409},"lock":15,"sid":{"sat":31,"code":0}},{"L":{"f":223,"i":107852786},"flags":15,"cn0":216,"P":1026185078,"D":{"f":149,"i":-1143},"lock":15,"sid":{"sat":25,"code":0}},{"L":{"f":133,"i":114176009},"flags":15,"cn0":206,"P":1086348510,"D":{"f":205,"i":-2976},"lock":15,"sid":{"sat":12,"code":0}},{"L":{"f":131,"i":110722369},"flags":15,"cn0":211,"P":1053488235,"D":{"f":195,"i":1479},"lock":15,"sid":{"sat":29,"code":0}},{"L":{"f":32,"i":84041153},"flags":15,"cn0":204,"P":1026185124,"D":{"f":24,"i":-890},"lock":15,"sid":{"sat":25,"code":1}},{"L":{"f":185,"i":88968350},"flags":15,"cn0":188,"P":1086348468,"D":{"f":167,"i":-2320},"lock":15,"sid":{"sat":12,"code":1}},{"L":{"f":145,"i":100323757},"flags":15,"cn0":148,"P":1225004130,"D":{"f":237,"i":-321},"lock":15,"sid":{"sat":31,"code":1}},{"L":{"f":230,"i":86277172},"flags":15,"cn0":194,"P":1053488145,"D":{"f":43,"i":1152},"lock":15,"sid":{"sat":29,"code":1}},{"L":{"f":87,"i":86157834},"flags":15,"cn0":193,"P":1052030587,"D":{"f":235,"i":-157},"lock":15,"sid":{"sat":5,"code":1}},{"L":{"f":163,"i":112906381},"flags":15,"cn0":212,"P":1056444158,"D":{"f":226,"i":1144},"lock":15,"sid":{"sat":11,"code":3}},{"L":{"f":27,"i":123452121},"flags":15,"cn0":175,"P":1155930549,"D":{"f":52,"i":-4409},"lock":15,"sid":{"sat":9,"code":3}}],"payload":"CGMvEAAAAAAyCEDctrQ+3yaXBiw3/zDTDw8FAMWhDkVoCUIHNXcIP7IPDxUAiOz7RRn6WgdKUPbsuQ8PAgD7FARJE42sByFn/kOkDw8fAHZXKj3ys20G34n7ldgPDxkA3lzAQAkwzgaFYPTNzg8PDABr9Mo+QX2ZBoPHBcPTDw8dAKRXKj3BXQIFIIb8GMwPDxkBtFzAQJ6MTQW58PanvA8PDAFiFARJrdH6BZG//u2UDw8fARH0yj40fCQF5oAEK8IPDx0Be7a0PgqqIgVXY//rwQ8PBQH+Dvg+jdC6BqN4BOLUDw8LA7UZ5kTZulsHG8fuNK8PDwkD","header":{"n_obs":64,"t":{"ns_residual":0,"wn":2098,"tow":271541000}},"crc":59430} +{"length":249,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":226,"i":109803025},"flags":15,"cn0":174,"P":1026685685,"D":{"f":161,"i":-1214},"lock":15,"sid":{"sat":20,"code":3}},{"L":{"f":16,"i":114801642},"flags":15,"cn0":206,"P":1073800699,"D":{"f":69,"i":2181},"lock":15,"sid":{"sat":5,"code":3}},{"L":{"f":186,"i":111685246},"flags":15,"cn0":206,"P":1047593045,"D":{"f":50,"i":-3059},"lock":15,"sid":{"sat":10,"code":3}},{"L":{"f":170,"i":120474002},"flags":15,"cn0":180,"P":1124883205,"D":{"f":20,"i":-1336},"lock":15,"sid":{"sat":4,"code":3}},{"L":{"f":122,"i":113376475},"flags":15,"cn0":204,"P":1059354822,"D":{"f":36,"i":1619},"lock":15,"sid":{"sat":21,"code":3}},{"L":{"f":19,"i":96018326},"flags":15,"cn0":174,"P":1155930682,"D":{"f":166,"i":-3428},"lock":15,"sid":{"sat":9,"code":4}},{"L":{"f":50,"i":85402389},"flags":15,"cn0":205,"P":1026686013,"D":{"f":117,"i":-945},"lock":15,"sid":{"sat":20,"code":4}},{"L":{"f":242,"i":87816084},"flags":15,"cn0":199,"P":1056444471,"D":{"f":164,"i":890},"lock":15,"sid":{"sat":11,"code":4}},{"L":{"f":217,"i":89290169},"flags":15,"cn0":195,"P":1073801003,"D":{"f":57,"i":1696},"lock":15,"sid":{"sat":5,"code":4}},{"L":{"f":77,"i":93701992},"flags":15,"cn0":172,"P":1124883366,"D":{"f":173,"i":-1040},"lock":15,"sid":{"sat":4,"code":4}},{"L":{"f":239,"i":121620047},"flags":15,"cn0":200,"P":1167792304,"D":{"f":220,"i":-1504},"lock":15,"sid":{"sat":35,"code":12}},{"L":{"f":112,"i":129292338},"flags":15,"cn0":171,"P":1241461744,"D":{"f":84,"i":-3009},"lock":15,"sid":{"sat":26,"code":12}},{"L":{"f":158,"i":132885887},"flags":15,"cn0":160,"P":1275966691,"D":{"f":26,"i":2246},"lock":15,"sid":{"sat":34,"code":12}},{"L":{"f":198,"i":125186273},"flags":15,"cn0":188,"P":1202035412,"D":{"f":14,"i":-1315},"lock":15,"sid":{"sat":24,"code":12}}],"payload":"CGMvEAAAAAAyCEH1+jE9EXaLBuJC+6GuDw8UA/vlAEDqu9cGEIUIRc4PDwUDVQBxPn4uqAa6DfQyzg8PCgMFWwxDkkkuB6rI+hS0Dw8EA8Z4JD/b/MEGelMGJMwPDxUDOhrmRJYfuQUTnPKmrg8PCQQ9/DE9FSMXBTJP/HXNDw8UBDcQ+D6U9zsF8noDpMcPDwsEK+cAQLl1UgXZoAY5ww8PBQSmWwxDaMeVBU3w+62sDw8EBLAYm0VPxj8H7yD63MgPDyMM8DP/STLYtAdwP/RUqw8PGgzjtA1Mf63rB57GCBqgDw8iDNSapUfhMHYHxt36DrwPDxgM","header":{"n_obs":65,"t":{"ns_residual":0,"wn":2098,"tow":271541000}},"crc":40103} +{"length":249,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":232,"i":134636878},"flags":15,"cn0":159,"P":1292779889,"D":{"f":214,"i":1313},"lock":15,"sid":{"sat":25,"code":12}},{"L":{"f":219,"i":121056876},"flags":15,"cn0":184,"P":1162384993,"D":{"f":126,"i":1609},"lock":15,"sid":{"sat":12,"code":12}},{"L":{"f":125,"i":124522851},"flags":15,"cn0":185,"P":1195665175,"D":{"f":20,"i":-302},"lock":15,"sid":{"sat":19,"code":12}},{"L":{"f":18,"i":124640643},"flags":15,"cn0":193,"P":1196796251,"D":{"f":87,"i":2379},"lock":15,"sid":{"sat":22,"code":12}},{"L":{"f":189,"i":93608864},"flags":15,"cn0":209,"P":1162384924,"D":{"f":25,"i":1244},"lock":15,"sid":{"sat":12,"code":13}},{"L":{"f":70,"i":116453635},"flags":15,"cn0":194,"P":1108019464,"D":{"f":173,"i":-1030},"lock":15,"sid":{"sat":12,"code":14}},{"L":{"f":98,"i":132445774},"flags":15,"cn0":191,"P":1260179554,"D":{"f":195,"i":1075},"lock":15,"sid":{"sat":25,"code":14}},{"L":{"f":0,"i":125394497},"flags":15,"cn0":188,"P":1193088911,"D":{"f":233,"i":1044},"lock":15,"sid":{"sat":11,"code":14}},{"L":{"f":253,"i":118460876},"flags":15,"cn0":203,"P":1127117625,"D":{"f":80,"i":-1755},"lock":15,"sid":{"sat":24,"code":14}},{"L":{"f":167,"i":143406642},"flags":15,"cn0":158,"P":1364468793,"D":{"f":114,"i":-3174},"lock":15,"sid":{"sat":31,"code":14}},{"L":{"f":234,"i":144581678},"flags":15,"cn0":152,"P":1375648881,"D":{"f":94,"i":-2140},"lock":15,"sid":{"sat":33,"code":14}},{"L":{"f":241,"i":101484422},"flags":15,"cn0":201,"P":1260179535,"D":{"f":132,"i":825},"lock":15,"sid":{"sat":25,"code":20}},{"L":{"f":122,"i":90768787},"flags":15,"cn0":215,"P":1127118184,"D":{"f":43,"i":-1345},"lock":15,"sid":{"sat":24,"code":20}},{"L":{"f":139,"i":96081475},"flags":15,"cn0":194,"P":1193088719,"D":{"f":12,"i":800},"lock":15,"sid":{"sat":11,"code":20}}],"payload":"CGMvEAAAAAAyCEJxQQ5NTmUGCOghBdafDw8ZDGGWSEVsLjcH20kGfrgPDwwMF2dER2MRbAd90v4UuQ8PEwxbqVVHg91tBxJLCVfBDw8WDByWSEWgW5QFvdwEGdEPDwwNCAkLQgPx8AZG+vutwg8PDA5i0BxLTvbkB2IzBMO/Dw8ZDo8XHUdBXnkHABQE6bwPDwsOOXMuQ8yRDwf9JflQyw8PGA45JFRRMjaMCKea83KeDw8fDnG8/lEuJJ4I6qT3XpgPDyEOT9AcS4aHDAbxOQOEyQ8PGRRodS5DkwVpBXq/+ivXDw8YFM8WHUdDFroFiyADDMIPDwsU","header":{"n_obs":66,"t":{"ns_residual":0,"wn":2098,"tow":271541000}},"crc":22695} +{"length":62,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":102,"i":109883053},"flags":15,"cn0":174,"P":1364468906,"D":{"f":168,"i":-2430},"lock":15,"sid":{"sat":31,"code":20}},{"L":{"f":38,"i":89230738},"flags":15,"cn0":206,"P":1108019309,"D":{"f":93,"i":-789},"lock":15,"sid":{"sat":12,"code":20}},{"L":{"f":211,"i":110783434},"flags":15,"cn0":170,"P":1375648883,"D":{"f":41,"i":-1640},"lock":15,"sid":{"sat":33,"code":20}}],"payload":"CGMvEAAAAAAyCEOqJFRRra6MBmaC9qiuDw8fFG0IC0KSjVEFJuv8Xc4PDwwUc7z+UcprmgbTmPkpqg8PIRQ=","header":{"n_obs":67,"t":{"ns_residual":0,"wn":2098,"tow":271541000}},"crc":35994} +{"length":9,"l2ca_bias":0,"preamble":85,"l2p_bias":0,"sender":22963,"msg_type":117,"payload":"/wAAAAAAAAAA","l1ca_bias":0,"mask":255,"crc":49809,"l1p_bias":0} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MggIYy8QAAAAAAE=","wn":2098,"tow":271541000,"crc":58413} +{"length":16,"flags":17,"ns":999999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EQhjLxDkBwMZAxkW/smaOw==","day":25,"tow":271541000,"year":2020,"crc":25688,"minutes":25,"month":3,"seconds":22} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-18.105173363228303,"preamble":85,"sender":22963,"msg_type":522,"payload":"CGMvEHT0+PRl6kJA7+cRIFaSXsDUeTuk7BoywAECWwQPBg==","lat":37.83123647838593,"tow":271541000,"h_accuracy":513,"crc":10329,"lon":-122.28650666950828} +{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"CGMvEAYAAAAIAAAAAQAAAPEAywIPAg==","n":6,"d":1,"tow":271541000,"h_accuracy":241,"crc":17953,"e":8} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"CGMvEJsAhwBMAEgAcgAG","tow":271541000,"crc":64620,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"CGMvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271541000,"h_accuracy":0,"crc":53148,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"CGMvEP//","tow":271541000,"crc":39307} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":4,"flags":2147616000,"preamble":85,"sender":22963,"msg_type":65535,"payload":"AAUCgA==","crc":40942} +{"length":24,"z":3890655.0240602265,"preamble":85,"sender":22963,"msg_type":72,"payload":"UO0a3iqORMHK1UJhIkRQwc9nFIPvrk1B","crc":2168,"x":-2694229.735196747,"y":-4264073.519704292} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MghsYy8QAAAAAAE=","wn":2098,"tow":271541100,"crc":32999} +{"length":16,"flags":17,"ns":99999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EWxjLxDkBwMZAxkX/uD1BQ==","day":25,"tow":271541100,"year":2020,"crc":13944,"minutes":25,"month":3,"seconds":23} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-18.104423658497996,"preamble":85,"sender":22963,"msg_type":522,"payload":"bGMvEJgVWfVl6kJA50cpIFaSXsB1LUaCuxoywAECWwQPBg==","lat":37.8312365231497,"tow":271541100,"h_accuracy":513,"crc":7943,"lon":-122.28650669127784} +{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"bGMvEPf///8IAAAAHgAAAPEAywIPAg==","n":-9,"d":30,"tow":271541100,"h_accuracy":241,"crc":17050,"e":8} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"bGMvEJsAhwBMAEgAcgAG","tow":271541100,"crc":53443,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"bGMvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271541100,"h_accuracy":0,"crc":55082,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"bGMvEP//","tow":271541100,"crc":49202} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgjQYy8QAAAAAAE=","wn":2098,"tow":271541200,"crc":32327} +{"length":16,"flags":17,"ns":199999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EdBjLxDkBwMZAxkX/sHrCw==","day":25,"tow":271541200,"year":2020,"crc":32071,"minutes":25,"month":3,"seconds":23} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-18.099200179488015,"preamble":85,"sender":22963,"msg_type":522,"payload":"0GMvEDQs0/Vl6kJANdRKIFaSXsCKqNYuZRkywAECWwQPBg==","lat":37.8312365800015,"tow":271541200,"h_accuracy":513,"crc":55873,"lon":-122.2865067225219} +{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"0GMvEAMAAAD2////BQAAAPEAywIPAg==","n":3,"d":5,"tow":271541200,"h_accuracy":241,"crc":12634,"e":-10} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"0GMvEJsAhwBMAEgAcgAG","tow":271541200,"crc":60344,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"0GMvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271541200,"h_accuracy":0,"crc":17334,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"0GMvEP//","tow":271541200,"crc":12413} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"Mgg0ZC8QAAAAAAE=","wn":2098,"tow":271541300,"crc":25127} +{"length":16,"flags":17,"ns":299999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"ETRkLxDkBwMZAxkX/qLhEQ==","day":25,"tow":271541300,"year":2020,"crc":60279,"minutes":25,"month":3,"seconds":23} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-18.086894012895296,"preamble":85,"sender":22963,"msg_type":522,"payload":"NGQvEOPkUfZl6kJAyGFdIFaSXsB/mp+vPhYywAECWwQPBg==","lat":37.83123663901076,"tow":271541300,"h_accuracy":513,"crc":12054,"lon":-122.28650673980076} +{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"NGQvEAkAAAD9////2f////EAywIPAg==","n":9,"d":-39,"tow":271541300,"h_accuracy":241,"crc":42456,"e":-3} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"NGQvEJsAhwBMAEgAcgAG","tow":271541300,"crc":58115,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"NGQvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271541300,"h_accuracy":0,"crc":59413,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"NGQvEP//","tow":271541300,"crc":55856} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":237,"states":[{"cn0":211,"mesid":{"sat":5,"code":0}},{"cn0":178,"mesid":{"sat":21,"code":0}},{"cn0":184,"mesid":{"sat":2,"code":0}},{"cn0":164,"mesid":{"sat":31,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":215,"mesid":{"sat":25,"code":0}},{"cn0":205,"mesid":{"sat":12,"code":0}},{"cn0":210,"mesid":{"sat":29,"code":0}},{"cn0":204,"mesid":{"sat":18,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":203,"mesid":{"sat":131,"code":2}},{"cn0":205,"mesid":{"sat":25,"code":1}},{"cn0":189,"mesid":{"sat":12,"code":1}},{"cn0":149,"mesid":{"sat":31,"code":1}},{"cn0":197,"mesid":{"sat":18,"code":1}},{"cn0":194,"mesid":{"sat":29,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":193,"mesid":{"sat":5,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":212,"mesid":{"sat":100,"code":3}},{"cn0":175,"mesid":{"sat":98,"code":3}},{"cn0":174,"mesid":{"sat":102,"code":3}},{"cn0":206,"mesid":{"sat":101,"code":3}},{"cn0":206,"mesid":{"sat":93,"code":3}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":181,"mesid":{"sat":106,"code":3}},{"cn0":204,"mesid":{"sat":104,"code":3}},{"cn0":174,"mesid":{"sat":98,"code":4}},{"cn0":205,"mesid":{"sat":102,"code":4}},{"cn0":67,"mesid":{"sat":93,"code":4}},{"cn0":199,"mesid":{"sat":100,"code":4}},{"cn0":194,"mesid":{"sat":101,"code":4}},{"cn0":188,"mesid":{"sat":104,"code":4}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":172,"mesid":{"sat":106,"code":4}},{"cn0":200,"mesid":{"sat":35,"code":12}},{"cn0":171,"mesid":{"sat":26,"code":12}},{"cn0":161,"mesid":{"sat":34,"code":12}},{"cn0":188,"mesid":{"sat":24,"code":12}},{"cn0":159,"mesid":{"sat":25,"code":12}},{"cn0":184,"mesid":{"sat":12,"code":12}},{"cn0":185,"mesid":{"sat":19,"code":12}},{"cn0":193,"mesid":{"sat":22,"code":12}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":211,"mesid":{"sat":12,"code":13}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":194,"mesid":{"sat":12,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":191,"mesid":{"sat":25,"code":14}},{"cn0":188,"mesid":{"sat":11,"code":14}},{"cn0":203,"mesid":{"sat":24,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":159,"mesid":{"sat":31,"code":14}},{"cn0":152,"mesid":{"sat":33,"code":14}},{"cn0":201,"mesid":{"sat":25,"code":20}},{"cn0":215,"mesid":{"sat":24,"code":20}},{"cn0":194,"mesid":{"sat":11,"code":20}},{"cn0":174,"mesid":{"sat":31,"code":20}},{"cn0":206,"mesid":{"sat":12,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":170,"mesid":{"sat":33,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}}],"preamble":85,"sender":22963,"msg_type":97,"payload":"BQDTFQCyAgC4HwCkAAAAAAAAGQDXDADNHQDSEgDMAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwLLGQHNDAG9HwGVEgHFHQHCAAAABQHBAAAAAAAAAAAAAAAAZAPUYgOvZgOuZQPOXQPOAAAAagO1aAPMYgSuZgTNXQRDZATHZQTCaAS8AAAAagSsIwzIGgyrIgyhGAy8GQyfDAy4Ewy5FgzBAAAADA3TAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADA7CAAAAGQ6/Cw68GA7LAAAAHw6fIQ6YGRTJGBTXCxTCHxSuDBTOAAAAIRSqAAAA","crc":38} +{"length":51,"text":"GLO L2OF ME 1 [+1276ms] low CN0 too long, dropping","preamble":85,"sender":22963,"msg_type":1025,"payload":"BkdMTyBMMk9GIE1FIDEgWysxMjc2bXNdIGxvdyBDTjAgdG9vIGxvbmcsIGRyb3BwaW5n","crc":65052,"level":6} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgiYZC8QAAAAAAE=","wn":2098,"tow":271541400,"crc":53113} +{"length":16,"flags":17,"ns":399999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EZhkLxDkBwMZAxkX/oPXFw==","day":25,"tow":271541400,"year":2020,"crc":57477,"minutes":25,"month":3,"seconds":23} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-18.07828484220943,"preamble":85,"sender":22963,"msg_type":522,"payload":"mGQvEPcOs/Zl6kJA58lyIFaSXsDhD7V5ChQywAECWwQPBg==","lat":37.831236684256446,"tow":271541400,"h_accuracy":513,"crc":63209,"lon":-122.28650675973732} +{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"mGQvEP/////8////+f////EAywIPAg==","n":-1,"d":-7,"tow":271541400,"h_accuracy":241,"crc":57489,"e":-4} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"mGQvEJsAhwBMAEgAcgAG","tow":271541400,"crc":38642,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"mGQvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271541400,"h_accuracy":0,"crc":49615,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"mGQvEP//","tow":271541400,"crc":12539} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":9,"l2ca_bias":0,"preamble":85,"l2p_bias":0,"sender":22963,"msg_type":117,"payload":"/wAAAAAAAAAA","l1ca_bias":0,"mask":255,"crc":49809,"l1p_bias":0} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"Mgj8ZC8QAAAAAAE=","wn":2098,"tow":271541500,"crc":43955} +{"length":16,"flags":17,"ns":499999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EfxkLxDkBwMZAxkX/mTNHQ==","day":25,"tow":271541500,"year":2020,"crc":42105,"minutes":25,"month":3,"seconds":23} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-18.075898823869387,"preamble":85,"sender":22963,"msg_type":522,"payload":"/GQvEJwk/fZl6kJAVyqIIFaSXsDqUvYabhMywAECWwQPBg==","lat":37.83123671875475,"tow":271541500,"h_accuracy":513,"crc":4004,"lon":-122.28650677964593} +{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"/GQvEP7///8IAAAANQAAAPEAywIPAg==","n":-2,"d":53,"tow":271541500,"h_accuracy":241,"crc":36638,"e":8} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"/GQvEJsAhwBMAEgAcgAG","tow":271541500,"crc":47709,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"/GQvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271541500,"h_accuracy":0,"crc":55673,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"/GQvEP//","tow":271541500,"crc":26946} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MghgZS8QAAAAAAE=","wn":2098,"tow":271541600,"crc":46396} +{"length":16,"flags":17,"ns":599999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EWBlLxDkBwMZAxkX/kXDIw==","day":25,"tow":271541600,"year":2020,"crc":15379,"minutes":25,"month":3,"seconds":23} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-18.06344534698641,"preamble":85,"sender":22963,"msg_type":522,"payload":"YGUvEKaSUPdl6kJArRGjIFaSXsDXY0r0PRAywAECWwQPBg==","lat":37.8312367576048,"tow":271541600,"h_accuracy":513,"crc":2512,"lon":-122.28650680470192} +{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"YGUvEAUAAAD6////5/////EAywIPAg==","n":5,"d":-25,"tow":271541600,"h_accuracy":241,"crc":23250,"e":-6} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"YGUvEJsAhwBMAEgAcgAG","tow":271541600,"crc":26451,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"YGUvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271541600,"h_accuracy":0,"crc":62142,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"YGUvEP//","tow":271541600,"crc":1620} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"message_type":28,"length":34,"data":[73,48,9,227,120,32,67,116,91,175,87,231,108,142,151,194,218,26,16,8,124,210,207,245,10,114,48],"preamble":85,"sender":22963,"msg_type":30583,"payload":"gwLiZC8QHEkwCeN4IEN0W69X52yOl8LaGhAIfNLP9QpyMA==","tow":271541474,"crc":22659,"sid":{"sat":131,"code":2}} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgjEZS8QAAAAAAE=","wn":2098,"tow":271541700,"crc":12701} +{"length":16,"flags":17,"ns":699999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EcRlLxDkBwMZAxkX/ia5KQ==","day":25,"tow":271541700,"year":2020,"crc":59972,"minutes":25,"month":3,"seconds":23} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-18.051809421077184,"preamble":85,"sender":22963,"msg_type":522,"payload":"xGUvED+Xl/dl6kJAM3OzIFaSXsC1JtlhQw0ywAECWwQPBg==","lat":37.83123679067511,"tow":271541700,"h_accuracy":513,"crc":62711,"lon":-122.28650681995786} +{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"xGUvEAIAAAAAAAAA/f////EAywIPAg==","n":2,"d":-3,"tow":271541700,"h_accuracy":241,"crc":30334,"e":0} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"xGUvEJsAhwBMAEgAcgAG","tow":271541700,"crc":13799,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"xGUvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271541700,"h_accuracy":0,"crc":34247,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"xGUvEP//","tow":271541700,"crc":57821} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MggoZi8QAAAAAAE=","wn":2098,"tow":271541800,"crc":2927} +{"length":16,"flags":17,"ns":799999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EShmLxDkBwMZAxkX/gevLw==","day":25,"tow":271541800,"year":2020,"crc":16634,"minutes":25,"month":3,"seconds":23} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-18.039453457659555,"preamble":85,"sender":22963,"msg_type":522,"payload":"KGYvEEfg2fdl6kJAGe29IFaSXsCmXC6fGQoywAECWwQPBg==","lat":37.8312368215416,"tow":271541800,"h_accuracy":513,"crc":21063,"lon":-122.28650682971455} +{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"KGYvEP3////5////CAAAAPEAywIPAg==","n":-3,"d":8,"tow":271541800,"h_accuracy":241,"crc":43350,"e":-7} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"KGYvEJsAhwBMAEgAcgAG","tow":271541800,"crc":59324,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"KGYvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271541800,"h_accuracy":0,"crc":6012,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"KGYvEP//","tow":271541800,"crc":36820} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":237,"states":[{"cn0":212,"mesid":{"sat":5,"code":0}},{"cn0":179,"mesid":{"sat":21,"code":0}},{"cn0":185,"mesid":{"sat":2,"code":0}},{"cn0":165,"mesid":{"sat":31,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":216,"mesid":{"sat":25,"code":0}},{"cn0":206,"mesid":{"sat":12,"code":0}},{"cn0":210,"mesid":{"sat":29,"code":0}},{"cn0":205,"mesid":{"sat":18,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":202,"mesid":{"sat":131,"code":2}},{"cn0":204,"mesid":{"sat":25,"code":1}},{"cn0":189,"mesid":{"sat":12,"code":1}},{"cn0":149,"mesid":{"sat":31,"code":1}},{"cn0":197,"mesid":{"sat":18,"code":1}},{"cn0":194,"mesid":{"sat":29,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":193,"mesid":{"sat":5,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":212,"mesid":{"sat":11,"code":3}},{"cn0":175,"mesid":{"sat":9,"code":3}},{"cn0":173,"mesid":{"sat":20,"code":3}},{"cn0":207,"mesid":{"sat":5,"code":3}},{"cn0":206,"mesid":{"sat":10,"code":3}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":181,"mesid":{"sat":4,"code":3}},{"cn0":204,"mesid":{"sat":21,"code":3}},{"cn0":173,"mesid":{"sat":9,"code":4}},{"cn0":205,"mesid":{"sat":20,"code":4}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":199,"mesid":{"sat":11,"code":4}},{"cn0":194,"mesid":{"sat":5,"code":4}},{"cn0":188,"mesid":{"sat":0,"code":4}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":172,"mesid":{"sat":4,"code":4}},{"cn0":201,"mesid":{"sat":35,"code":12}},{"cn0":172,"mesid":{"sat":26,"code":12}},{"cn0":161,"mesid":{"sat":34,"code":12}},{"cn0":188,"mesid":{"sat":24,"code":12}},{"cn0":159,"mesid":{"sat":25,"code":12}},{"cn0":184,"mesid":{"sat":12,"code":12}},{"cn0":185,"mesid":{"sat":19,"code":12}},{"cn0":193,"mesid":{"sat":22,"code":12}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":212,"mesid":{"sat":12,"code":13}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":194,"mesid":{"sat":12,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":191,"mesid":{"sat":25,"code":14}},{"cn0":189,"mesid":{"sat":11,"code":14}},{"cn0":203,"mesid":{"sat":24,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":159,"mesid":{"sat":31,"code":14}},{"cn0":150,"mesid":{"sat":33,"code":14}},{"cn0":201,"mesid":{"sat":25,"code":20}},{"cn0":215,"mesid":{"sat":24,"code":20}},{"cn0":194,"mesid":{"sat":11,"code":20}},{"cn0":174,"mesid":{"sat":31,"code":20}},{"cn0":206,"mesid":{"sat":12,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":169,"mesid":{"sat":33,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}}],"preamble":85,"sender":22963,"msg_type":97,"payload":"BQDUFQCzAgC5HwClAAAAAAAAGQDYDADOHQDSEgDNAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwLKGQHMDAG9HwGVEgHFHQHCAAAABQHBAAAAAAAAAAAAAAAACwPUCQOvFAOtBQPPCgPOAAAABAO1FQPMCQStFATNAAAACwTHBQTCAAS8AAAABASsIwzJGgysIgyhGAy8GQyfDAy4Ewy5FgzBAAAADA3UAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADA7CAAAAGQ6/Cw69GA7LAAAAHw6fIQ6WGRTJGBTXCxTCHxSuDBTOAAAAIRSpAAAA","crc":53710} +{"length":128,"preamble":85,"sender":22963,"msg_type":151,"payload":"AgAaHQUAKzUMAFEtFQB9GRkAbUYaAKEBHQChNx8AlQ4EAxUWBQMyIQkDXw4KA3EpCwOYJQwDqgMTAyIHFAMMMRUDlSUMDJQpEwwjIBQMDwIWDEMkGAyCIxkMnQ4aDGcVIgyOESMMIi0LDosyDA4PPBgObDYZDpcpHw5VESEOIA8=","crc":34187,"azel":[{"el":29,"az":26,"sid":{"sat":2,"code":0}},{"el":53,"az":43,"sid":{"sat":5,"code":0}},{"el":45,"az":81,"sid":{"sat":12,"code":0}},{"el":25,"az":125,"sid":{"sat":21,"code":0}},{"el":70,"az":109,"sid":{"sat":25,"code":0}},{"el":1,"az":161,"sid":{"sat":26,"code":0}},{"el":55,"az":161,"sid":{"sat":29,"code":0}},{"el":14,"az":149,"sid":{"sat":31,"code":0}},{"el":22,"az":21,"sid":{"sat":4,"code":3}},{"el":33,"az":50,"sid":{"sat":5,"code":3}},{"el":14,"az":95,"sid":{"sat":9,"code":3}},{"el":41,"az":113,"sid":{"sat":10,"code":3}},{"el":37,"az":152,"sid":{"sat":11,"code":3}},{"el":3,"az":170,"sid":{"sat":12,"code":3}},{"el":7,"az":34,"sid":{"sat":19,"code":3}},{"el":49,"az":12,"sid":{"sat":20,"code":3}},{"el":37,"az":149,"sid":{"sat":21,"code":3}},{"el":41,"az":148,"sid":{"sat":12,"code":12}},{"el":32,"az":35,"sid":{"sat":19,"code":12}},{"el":2,"az":15,"sid":{"sat":20,"code":12}},{"el":36,"az":67,"sid":{"sat":22,"code":12}},{"el":35,"az":130,"sid":{"sat":24,"code":12}},{"el":14,"az":157,"sid":{"sat":25,"code":12}},{"el":21,"az":103,"sid":{"sat":26,"code":12}},{"el":17,"az":142,"sid":{"sat":34,"code":12}},{"el":45,"az":34,"sid":{"sat":35,"code":12}},{"el":50,"az":139,"sid":{"sat":11,"code":14}},{"el":60,"az":15,"sid":{"sat":12,"code":14}},{"el":54,"az":108,"sid":{"sat":24,"code":14}},{"el":41,"az":151,"sid":{"sat":25,"code":14}},{"el":17,"az":85,"sid":{"sat":31,"code":14}},{"el":15,"az":32,"sid":{"sat":33,"code":14}}]} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgiMZi8QAAAAAAE=","wn":2098,"tow":271541900,"crc":36814} +{"length":16,"flags":17,"ns":899999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EYxmLxDkBwMZAxkX/uikNQ==","day":25,"tow":271541900,"year":2020,"crc":61903,"minutes":25,"month":3,"seconds":23} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-18.029342816718177,"preamble":85,"sender":22963,"msg_type":522,"payload":"jGYvEC9zFPhl6kJAHTOeIFaSXsBWLcYCgwcywAECWwQPBg==","lat":37.83123684881718,"tow":271541900,"h_accuracy":513,"crc":11529,"lon":-122.28650680016695} +{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"jGYvEAEAAAAUAAAABgAAAPEAywIPAg==","n":1,"d":6,"tow":271541900,"h_accuracy":241,"crc":54702,"e":20} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"jGYvEJsAhwBMAEgAcgAG","tow":271541900,"crc":46344,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"jGYvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271541900,"h_accuracy":0,"crc":24581,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"jGYvEP//","tow":271541900,"crc":26717} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":249,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":106,"i":110569383},"flags":15,"cn0":211,"P":1052032582,"D":{"f":21,"i":-201},"lock":15,"sid":{"sat":5,"code":0}},{"L":{"f":155,"i":121766128},"flags":15,"cn0":178,"P":1158566203,"D":{"f":239,"i":2166},"lock":15,"sid":{"sat":21,"code":0}},{"L":{"f":70,"i":123405256},"flags":15,"cn0":185,"P":1174161576,"D":{"f":214,"i":-2480},"lock":15,"sid":{"sat":2,"code":0}},{"L":{"f":161,"i":128749227},"flags":15,"cn0":165,"P":1225008177,"D":{"f":161,"i":-410},"lock":15,"sid":{"sat":31,"code":0}},{"L":{"f":18,"i":107853929},"flags":15,"cn0":216,"P":1026195941,"D":{"f":147,"i":-1144},"lock":15,"sid":{"sat":25,"code":0}},{"L":{"f":67,"i":114178986},"flags":15,"cn0":206,"P":1086376834,"D":{"f":119,"i":-2978},"lock":15,"sid":{"sat":12,"code":0}},{"L":{"f":210,"i":110720889},"flags":15,"cn0":211,"P":1053474157,"D":{"f":253,"i":1477},"lock":15,"sid":{"sat":29,"code":0}},{"L":{"f":39,"i":84042043},"flags":15,"cn0":204,"P":1026195994,"D":{"f":188,"i":-892},"lock":15,"sid":{"sat":25,"code":1}},{"L":{"f":69,"i":88970670},"flags":15,"cn0":189,"P":1086376787,"D":{"f":79,"i":-2320},"lock":15,"sid":{"sat":12,"code":1}},{"L":{"f":226,"i":100324075},"flags":15,"cn0":150,"P":1225008038,"D":{"f":162,"i":-318},"lock":15,"sid":{"sat":31,"code":1}},{"L":{"f":226,"i":86276019},"flags":15,"cn0":194,"P":1053474072,"D":{"f":206,"i":1151},"lock":15,"sid":{"sat":29,"code":1}},{"L":{"f":100,"i":86157990},"flags":15,"cn0":193,"P":1052032487,"D":{"f":59,"i":-157},"lock":15,"sid":{"sat":5,"code":1}},{"L":{"f":8,"i":112905237},"flags":15,"cn0":212,"P":1056433454,"D":{"f":249,"i":1142},"lock":15,"sid":{"sat":11,"code":3}},{"L":{"f":41,"i":123456529},"flags":15,"cn0":175,"P":1155971812,"D":{"f":45,"i":-4409},"lock":15,"sid":{"sat":9,"code":3}}],"payload":"8GYvEAAAAAAyCEBGvrQ+pyeXBmo3/xXTDw8FADtRDkXwAEIHm3YI77IPDxUAqEj8RcgDWwdGUPbWuQ8PAgAxJARJq46sB6Fm/qGlDw8fAOWBKj1puG0GEoj7k9gPDxkAgsvAQKo7zgZDXvR3zg8PDABtvco+eXeZBtLFBf3TDw8dABqCKj07YQIFJ4T8vMwPDxkBU8vAQK6VTQVF8PZPvQ8PDAGmIwRJ69L6BeLC/qKWDw8fARi9yj6zdyQF4n8EzsIPDx0B5720PqaqIgVkY/87wQ8PBQEu5fc+Fcy6Bgh2BPnUDw8LA+S65kQRzFsHKcfuLa8PDwkD","header":{"n_obs":64,"t":{"ns_residual":0,"wn":2098,"tow":271542000}},"crc":1160} +{"length":249,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":170,"i":109804239},"flags":15,"cn0":174,"P":1026697037,"D":{"f":62,"i":-1215},"lock":15,"sid":{"sat":20,"code":3}},{"L":{"f":204,"i":114799460},"flags":15,"cn0":207,"P":1073780295,"D":{"f":230,"i":2179},"lock":15,"sid":{"sat":5,"code":3}},{"L":{"f":30,"i":111688305},"flags":15,"cn0":206,"P":1047621712,"D":{"f":219,"i":-3061},"lock":15,"sid":{"sat":10,"code":3}},{"L":{"f":217,"i":120475338},"flags":15,"cn0":180,"P":1124895658,"D":{"f":221,"i":-1339},"lock":15,"sid":{"sat":4,"code":3}},{"L":{"f":209,"i":113374856},"flags":15,"cn0":204,"P":1059339686,"D":{"f":98,"i":1617},"lock":15,"sid":{"sat":21,"code":3}},{"L":{"f":140,"i":96021754},"flags":15,"cn0":173,"P":1155971895,"D":{"f":129,"i":-3430},"lock":15,"sid":{"sat":9,"code":4}},{"L":{"f":63,"i":85403333},"flags":15,"cn0":205,"P":1026697355,"D":{"f":214,"i":-946},"lock":15,"sid":{"sat":20,"code":4}},{"L":{"f":178,"i":87815194},"flags":15,"cn0":199,"P":1056433741,"D":{"f":22,"i":889},"lock":15,"sid":{"sat":11,"code":4}},{"L":{"f":80,"i":89288473},"flags":15,"cn0":194,"P":1073780610,"D":{"f":167,"i":1696},"lock":15,"sid":{"sat":5,"code":4}},{"L":{"f":141,"i":93703031},"flags":15,"cn0":172,"P":1124895856,"D":{"f":48,"i":-1040},"lock":15,"sid":{"sat":4,"code":4}},{"L":{"f":168,"i":121621549},"flags":15,"cn0":201,"P":1167806732,"D":{"f":191,"i":-1504},"lock":15,"sid":{"sat":35,"code":12}},{"L":{"f":86,"i":129295347},"flags":15,"cn0":171,"P":1241490638,"D":{"f":107,"i":-3011},"lock":15,"sid":{"sat":26,"code":12}},{"L":{"f":248,"i":132883638},"flags":15,"cn0":160,"P":1275945105,"D":{"f":206,"i":2246},"lock":15,"sid":{"sat":34,"code":12}},{"L":{"f":83,"i":125187587},"flags":15,"cn0":188,"P":1202048032,"D":{"f":179,"i":-1315},"lock":15,"sid":{"sat":24,"code":12}}],"payload":"8GYvEAAAAAAyCEFNJzI9z3qLBqpB+z6uDw8UA0eWAEBks9cGzIMI5s8PDwUDUHBxPnE6qAYeC/Tbzg8PCgOqiwxDyk4uB9nF+t20Dw8EA6Y9JD+I9sEG0VEGYswPDxUDN7vmRPosuQWMmvKBrQ8PCQSLKDI9xSYXBT9O/NbNDw8UBE3m9z4a9DsFsnkDFscPDwsEgpcAQBlvUgVQoAanwg8PBQRwjAxDd8uVBY3w+zCsDw8EBAxRm0UtzD8HqCD6v8kPDyMMzqT/SfPjtAdWPfRrqw8PGgyRYA1MtqTrB/jGCM6gDw8iDCDMpUcDNnYHU936s7wPDxgM","header":{"n_obs":65,"t":{"ns_residual":0,"wn":2098,"tow":271542000}},"crc":48163} +{"length":249,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":160,"i":134635565},"flags":15,"cn0":159,"P":1292767261,"D":{"f":189,"i":1311},"lock":15,"sid":{"sat":25,"code":12}},{"L":{"f":165,"i":121055266},"flags":15,"cn0":184,"P":1162369534,"D":{"f":41,"i":1608},"lock":15,"sid":{"sat":12,"code":12}},{"L":{"f":80,"i":124523154},"flags":15,"cn0":185,"P":1195668089,"D":{"f":118,"i":-303},"lock":15,"sid":{"sat":19,"code":12}},{"L":{"f":41,"i":124638263},"flags":15,"cn0":193,"P":1196773403,"D":{"f":252,"i":2378},"lock":15,"sid":{"sat":22,"code":12}},{"L":{"f":162,"i":93607619},"flags":15,"cn0":212,"P":1162369461,"D":{"f":207,"i":1244},"lock":15,"sid":{"sat":12,"code":13}},{"L":{"f":13,"i":116454664},"flags":15,"cn0":195,"P":1108029261,"D":{"f":85,"i":-1030},"lock":15,"sid":{"sat":12,"code":14}},{"L":{"f":218,"i":132444696},"flags":15,"cn0":191,"P":1260169306,"D":{"f":107,"i":1076},"lock":15,"sid":{"sat":25,"code":14}},{"L":{"f":5,"i":125393453},"flags":15,"cn0":189,"P":1193078971,"D":{"f":180,"i":1041},"lock":15,"sid":{"sat":11,"code":14}},{"L":{"f":182,"i":118462630},"flags":15,"cn0":203,"P":1127134310,"D":{"f":149,"i":-1755},"lock":15,"sid":{"sat":24,"code":14}},{"L":{"f":98,"i":143409815},"flags":15,"cn0":158,"P":1364498983,"D":{"f":213,"i":-3175},"lock":15,"sid":{"sat":31,"code":14}},{"L":{"f":217,"i":144583817},"flags":15,"cn0":151,"P":1375669252,"D":{"f":1,"i":-2142},"lock":15,"sid":{"sat":33,"code":14}},{"L":{"f":76,"i":101483597},"flags":15,"cn0":201,"P":1260169284,"D":{"f":49,"i":825},"lock":15,"sid":{"sat":25,"code":20}},{"L":{"f":61,"i":90770131},"flags":15,"cn0":215,"P":1127134870,"D":{"f":172,"i":-1346},"lock":15,"sid":{"sat":24,"code":20}},{"L":{"f":157,"i":96080675},"flags":15,"cn0":193,"P":1193078788,"D":{"f":62,"i":800},"lock":15,"sid":{"sat":11,"code":20}}],"payload":"8GYvEAAAAAAyCEIdEA5NLWAGCKAfBb2fDw8ZDP5ZSEUiKDcHpUgGKbgPDwwMeXJER5ISbAdQ0f52uQ8PEwwbUFVHN9RtBylKCfzBDw8WDLVZSEXDVpQFotwEz9QPDwwNTS8LQgj18AYN+vtVww8PDA5aqBxLGPLkB9o0BGu/Dw8ZDrvwHEctWnkHBREEtL0PDwsOZrQuQ6aYDwe2JfmVyw8PGA4nmlRRl0KMCGKZ89WeDw8fDgQM/1GJLJ4I2aL3AZcPDyEORKgcS02EDAZMOQMxyQ8PGRSWti5D0wppBT2++qzXDw8YFATwHEcjE7oFnSADPsEPDwsU","header":{"n_obs":66,"t":{"ns_residual":0,"wn":2098,"tow":271542000}},"crc":25095} +{"length":62,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":117,"i":109885484},"flags":15,"cn0":174,"P":1364499086,"D":{"f":77,"i":-2433},"lock":15,"sid":{"sat":31,"code":20}},{"L":{"f":112,"i":89231526},"flags":15,"cn0":206,"P":1108029097,"D":{"f":197,"i":-789},"lock":15,"sid":{"sat":12,"code":20}},{"L":{"f":202,"i":110785073},"flags":15,"cn0":170,"P":1375669236,"D":{"f":216,"i":-1642},"lock":15,"sid":{"sat":33,"code":20}}],"payload":"8GYvEAAAAAAyCEOOmlRRLLiMBnV/9k2uDw8fFKkuC0KmkFEFcOv8xc4PDwwU9Av/UTFymgbKlvnYqg8PIRQ=","header":{"n_obs":67,"t":{"ns_residual":0,"wn":2098,"tow":271542000}},"crc":35991} +{"length":9,"l2ca_bias":0,"preamble":85,"l2p_bias":0,"sender":22963,"msg_type":117,"payload":"/wAAAAAAAAAA","l1ca_bias":0,"mask":255,"crc":49809,"l1p_bias":0} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgjwZi8QAAAAAAE=","wn":2098,"tow":271542000,"crc":37125} +{"length":16,"flags":17,"ns":999999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EfBmLxDkBwMZAxkX/smaOw==","day":25,"tow":271542000,"year":2020,"crc":49677,"minutes":25,"month":3,"seconds":23} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-18.020074549446463,"preamble":85,"sender":22963,"msg_type":522,"payload":"8GYvEAz5Svhl6kJAb1+lIFaSXsDAWg2bIwUywAECWwQPBg==","lat":37.83123687420638,"tow":271542000,"h_accuracy":513,"crc":14336,"lon":-122.28650680684744} +{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"8GYvEAIAAAD2////AQAAAPEAywIPAg==","n":2,"d":1,"tow":271542000,"h_accuracy":241,"crc":46270,"e":-10} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"8GYvEJsAhwBMAEgAcgAG","tow":271542000,"crc":61544,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"8GYvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271542000,"h_accuracy":0,"crc":39766,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"8GYvEP//","tow":271542000,"crc":9762} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":4,"flags":2147616000,"preamble":85,"sender":22963,"msg_type":65535,"payload":"AAUCgA==","crc":40942} +{"length":24,"z":3890655.0240602265,"preamble":85,"sender":22963,"msg_type":72,"payload":"UO0a3iqORMHK1UJhIkRQwc9nFIPvrk1B","crc":2168,"x":-2694229.735196747,"y":-4264073.519704292} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"bWFpbgAAAAAAAAAAAAAAAAAAAAAAAAx1AAA=","name":"main\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":47991,"stack_free":29964,"cpu":0} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"aWRsZQAAAAAAAAAAAAAAAAAAAABeAXwAAAA=","name":"idle\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":7734,"stack_free":124,"cpu":350} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"cnBtc2cAAAAAAAAAAAAAAAAAAAABANQNAAA=","name":"rpmsg\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":26340,"stack_free":3540,"cpu":1} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"U0JQAAAAAAAAAAAAAAAAAAAAAAAAAPz/AAA=","name":"SBP\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":51784,"stack_free":65532,"cpu":0} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"TkFQAAAAAAAAAAAAAAAAAAAAAAAAAASAAAA=","name":"NAP\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":33651,"stack_free":32772,"cpu":0} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"bWFuYWdlIFBWAAAAAAAAAAAAAAAAACwEAAA=","name":"manage PV\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":61814,"stack_free":1068,"cpu":0} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"SU1VAAAAAAAAAAAAAAAAAAAAAAAAAPQHAAA=","name":"IMU\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":14252,"stack_free":2036,"cpu":0} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"SU1VIGF1eAAAAAAAAAAAAAAAAAAAAEwIAAA=","name":"IMU aux\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":18976,"stack_free":2124,"cpu":0} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"bmRiAAAAAAAAAAAAAAAAAAAAAAAAAFAMAAA=","name":"ndb\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":26120,"stack_free":3152,"cpu":0} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"TkFQIFRyYWNraW5nAAAAAAAAAAAdAdR3AAA=","name":"NAP Tracking\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":19151,"stack_free":30676,"cpu":285} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"ZGVjb2RlAAAAAAAAAAAAAAAAAAAHANQGAAA=","name":"decode\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":22929,"stack_free":1748,"cpu":7} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"bWFuYWdlIGFjcQAAAAAAAAAAAADEAKR3AAA=","name":"manage acq\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":21487,"stack_free":30628,"cpu":196} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"c3lzdGVtIG1vbml0b3IAAAAAAAAAACwGAAA=","name":"system monitor\u0000\u0000\u0000\u0000\u0000\u0000","crc":58531,"stack_free":1580,"cpu":0} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"V2F0Y2hkb2cAAAAAAAAAAAAAAAAAAOQDAAA=","name":"Watchdog\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":44438,"stack_free":996,"cpu":0} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"c3RhcmxpbmcAAAAAAAAAAAAAAACVAPz/AAA=","name":"starling\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":15999,"stack_free":65532,"cpu":149} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"bWVfY2FsY19wdnQAAAAAAAAAAAAJAIwjAAA=","name":"me_calc_pvt\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":57561,"stack_free":9100,"cpu":9} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"UFBTAAAAAAAAAAAAAAAAAAAAAAAAAEgHAAA=","name":"PPS\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":38576,"stack_free":1864,"cpu":0} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"c3BlY3RydW0gYW5hbHl6ZXIAAAAAANQPAAA=","name":"spectrum analyzer\u0000\u0000\u0000","crc":50933,"stack_free":4052,"cpu":0} +{"cpu_vint":989,"length":10,"fe_temperature":5641,"preamble":85,"sender":22963,"cpu_vaux":1779,"msg_type":181,"payload":"7RbdA/MGWhUJFg==","dev_vin":5869,"crc":31283,"cpu_temperature":5466} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MghUZy8QAAAAAAE=","wn":2098,"tow":271542100,"crc":21111} +{"length":16,"flags":17,"ns":99999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EVRnLxDkBwMZAxkY/uD1BQ==","day":25,"tow":271542100,"year":2020,"crc":23295,"minutes":25,"month":3,"seconds":24} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-18.010393183950505,"preamble":85,"sender":22963,"msg_type":522,"payload":"VGcvEH8KdPhl6kJAAlOeIFaSXsAyK7EgqQIywAECWwQPBg==","lat":37.831236893330235,"tow":271542100,"h_accuracy":513,"crc":33091,"lon":-122.28650680028298} +{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"VGcvEP3///8AAAAA8f////EAywIPAg==","n":-3,"d":-15,"tow":271542100,"h_accuracy":241,"crc":703,"e":0} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"VGcvEJsAhwBMAEgAcgAG","tow":271542100,"crc":55741,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"VGcvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271542100,"h_accuracy":0,"crc":14809,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"VGcvEP//","tow":271542100,"crc":27642} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"Mgi4Zy8QAAAAAAE=","wn":2098,"tow":271542200,"crc":41200} +{"length":16,"flags":17,"ns":199999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EbhnLxDkBwMZAxkY/sHrCw==","day":25,"tow":271542200,"year":2020,"crc":30019,"minutes":25,"month":3,"seconds":24} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-18.00390578033495,"preamble":85,"sender":22963,"msg_type":522,"payload":"uGcvEKRgnPhl6kJAXFeUIFaSXsDRzR74/wAywAECWwQPBg==","lat":37.83123691211338,"tow":271542200,"h_accuracy":513,"crc":13088,"lon":-122.28650679098558} +{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"uGcvEAEAAAD5////BwAAAPEAywIPAg==","n":1,"d":7,"tow":271542200,"h_accuracy":241,"crc":529,"e":-7} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"uGcvEJsAhwBMAEgAcgAG","tow":271542200,"crc":34373,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"uGcvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271542200,"h_accuracy":0,"crc":50521,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"uGcvEP//","tow":271542200,"crc":60193} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MggcaC8QAAAAAAE=","wn":2098,"tow":271542300,"crc":64915} +{"length":16,"flags":17,"ns":299999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"ERxoLxDkBwMZAxkY/qLhEQ==","day":25,"tow":271542300,"year":2020,"crc":8721,"minutes":25,"month":3,"seconds":24} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.998618987962608,"preamble":85,"sender":22963,"msg_type":522,"payload":"HGgvEAdTuPhl6kJAwQKMIFaSXsDKdnZ+pf8xwAECWwQPBg==","lat":37.831236925127136,"tow":271542300,"h_accuracy":513,"crc":6604,"lon":-122.28650678322721} +{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"HGgvEPX///8GAAAAEQAAAPEAywIPAg==","n":-11,"d":17,"tow":271542300,"h_accuracy":241,"crc":42904,"e":6} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"HGgvEJsAhwBMAEgAcgAG","tow":271542300,"crc":20380,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"HGgvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271542300,"h_accuracy":0,"crc":29910,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"HGgvEP//","tow":271542300,"crc":26961} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":237,"states":[{"cn0":212,"mesid":{"sat":5,"code":0}},{"cn0":178,"mesid":{"sat":21,"code":0}},{"cn0":185,"mesid":{"sat":2,"code":0}},{"cn0":164,"mesid":{"sat":31,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":216,"mesid":{"sat":25,"code":0}},{"cn0":206,"mesid":{"sat":12,"code":0}},{"cn0":211,"mesid":{"sat":29,"code":0}},{"cn0":205,"mesid":{"sat":18,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":203,"mesid":{"sat":131,"code":2}},{"cn0":204,"mesid":{"sat":25,"code":1}},{"cn0":189,"mesid":{"sat":12,"code":1}},{"cn0":150,"mesid":{"sat":31,"code":1}},{"cn0":197,"mesid":{"sat":18,"code":1}},{"cn0":194,"mesid":{"sat":29,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":193,"mesid":{"sat":5,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":212,"mesid":{"sat":100,"code":3}},{"cn0":174,"mesid":{"sat":98,"code":3}},{"cn0":174,"mesid":{"sat":102,"code":3}},{"cn0":207,"mesid":{"sat":101,"code":3}},{"cn0":206,"mesid":{"sat":93,"code":3}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":180,"mesid":{"sat":106,"code":3}},{"cn0":204,"mesid":{"sat":104,"code":3}},{"cn0":173,"mesid":{"sat":98,"code":4}},{"cn0":205,"mesid":{"sat":102,"code":4}},{"cn0":68,"mesid":{"sat":93,"code":4}},{"cn0":199,"mesid":{"sat":100,"code":4}},{"cn0":194,"mesid":{"sat":101,"code":4}},{"cn0":188,"mesid":{"sat":104,"code":4}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":173,"mesid":{"sat":106,"code":4}},{"cn0":201,"mesid":{"sat":35,"code":12}},{"cn0":171,"mesid":{"sat":26,"code":12}},{"cn0":160,"mesid":{"sat":34,"code":12}},{"cn0":188,"mesid":{"sat":24,"code":12}},{"cn0":158,"mesid":{"sat":25,"code":12}},{"cn0":185,"mesid":{"sat":12,"code":12}},{"cn0":185,"mesid":{"sat":19,"code":12}},{"cn0":193,"mesid":{"sat":22,"code":12}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":212,"mesid":{"sat":12,"code":13}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":195,"mesid":{"sat":12,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":191,"mesid":{"sat":25,"code":14}},{"cn0":188,"mesid":{"sat":11,"code":14}},{"cn0":203,"mesid":{"sat":24,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":159,"mesid":{"sat":31,"code":14}},{"cn0":152,"mesid":{"sat":33,"code":14}},{"cn0":201,"mesid":{"sat":25,"code":20}},{"cn0":215,"mesid":{"sat":24,"code":20}},{"cn0":194,"mesid":{"sat":11,"code":20}},{"cn0":174,"mesid":{"sat":31,"code":20}},{"cn0":206,"mesid":{"sat":12,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":171,"mesid":{"sat":33,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}}],"preamble":85,"sender":22963,"msg_type":97,"payload":"BQDUFQCyAgC5HwCkAAAAAAAAGQDYDADOHQDTEgDNAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwLLGQHMDAG9HwGWEgHFHQHCAAAABQHBAAAAAAAAAAAAAAAAZAPUYgOuZgOuZQPPXQPOAAAAagO0aAPMYgStZgTNXQREZATHZQTCaAS8AAAAagStIwzJGgyrIgygGAy8GQyeDAy5Ewy5FgzBAAAADA3UAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADA7DAAAAGQ6/Cw68GA7LAAAAHw6fIQ6YGRTJGBTXCxTCHxSuDBTOAAAAIRSrAAAA","crc":16617} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgiAaC8QAAAAAAE=","wn":2098,"tow":271542400,"crc":42191} +{"length":16,"flags":17,"ns":399999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EYBoLxDkBwMZAxkY/oPXFw==","day":25,"tow":271542400,"year":2020,"crc":64125,"minutes":25,"month":3,"seconds":24} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.989061078510613,"preamble":85,"sender":22963,"msg_type":522,"payload":"gGgvEBJI/fhl6kJANxWFIFaSXsAX81kbM/0xwAECWwQPBg==","lat":37.831236957237834,"tow":271542400,"h_accuracy":513,"crc":33173,"lon":-122.28650677677511} +{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"gGgvEBIAAAD4////4v////EAywIPAg==","n":18,"d":-30,"tow":271542400,"h_accuracy":241,"crc":5139,"e":-8} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"gGgvEJsAhwBMAEgAcgAG","tow":271542400,"crc":59891,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"gGgvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271542400,"h_accuracy":0,"crc":35559,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"gGgvEP//","tow":271542400,"crc":44054} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":9,"l2ca_bias":0,"preamble":85,"l2p_bias":0,"sender":22963,"msg_type":117,"payload":"/wAAAAAAAAAA","l1ca_bias":0,"mask":255,"crc":49809,"l1p_bias":0} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgjkaC8QAAAAAAE=","wn":2098,"tow":271542500,"crc":49157} +{"length":16,"flags":17,"ns":499999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EeRoLxDkBwMZAxkY/mTNHQ==","day":25,"tow":271542500,"year":2020,"crc":48769,"minutes":25,"month":3,"seconds":24} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.982549511271365,"preamble":85,"sender":22963,"msg_type":522,"payload":"5GgvEOlTEPll6kJAww9mIFaSXsB+nGFdiPsxwAECWwQPBg==","lat":37.831236966106935,"tow":271542500,"h_accuracy":513,"crc":50824,"lon":-122.28650674788427} +{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"5GgvEPr///8KAAAACgAAAPEAywIPAg==","n":-6,"d":10,"tow":271542500,"h_accuracy":241,"crc":14713,"e":10} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"5GgvEJsAhwBMAEgAcgAG","tow":271542500,"crc":50524,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"5GgvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271542500,"h_accuracy":0,"crc":37457,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"5GgvEP//","tow":271542500,"crc":62895} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MghIaS8QAAAAAAE=","wn":2098,"tow":271542600,"crc":10888} +{"length":16,"flags":17,"ns":599999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EUhpLxDkBwMZAxkY/kXDIw==","day":25,"tow":271542600,"year":2020,"crc":62837,"minutes":25,"month":3,"seconds":24} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.972786462736657,"preamble":85,"sender":22963,"msg_type":522,"payload":"SGkvEB+MS/ll6kJAx2NTIFaSXsAKcpuICPkxwAECWwQPBg==","lat":37.8312369936832,"tow":271542600,"h_accuracy":513,"crc":11089,"lon":-122.28650673049479} +{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"SGkvEAAAAAAAAAAACQAAAPEAywIPAg==","n":0,"d":9,"tow":271542600,"h_accuracy":241,"crc":17924,"e":0} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"SGkvEJsAhwBMAEgAcgAG","tow":271542600,"crc":52172,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"SGkvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271542600,"h_accuracy":0,"crc":28285,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"SGkvEP//","tow":271542600,"crc":46389} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":51,"text":"GLO L2OF ME 1 [+1283ms] low CN0 too long, dropping","preamble":85,"sender":22963,"msg_type":1025,"payload":"BkdMTyBMMk9GIE1FIDEgWysxMjgzbXNdIGxvdyBDTjAgdG9vIGxvbmcsIGRyb3BwaW5n","crc":7250,"level":6} +{"message_type":63,"length":34,"data":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"preamble":85,"sender":22963,"msg_type":30583,"payload":"gwLHaC8QPwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA==","tow":271542471,"crc":22878,"sid":{"sat":131,"code":2}} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgisaS8QAAAAAAE=","wn":2098,"tow":271542700,"crc":61936} +{"length":16,"flags":17,"ns":699999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EaxpLxDkBwMZAxkY/ia5KQ==","day":25,"tow":271542700,"year":2020,"crc":2347,"minutes":25,"month":3,"seconds":24} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.96239638427391,"preamble":85,"sender":22963,"msg_type":522,"payload":"rGkvEA68d/ll6kJAVfk6IFaSXsC+PgScX/YxwAECWwQPBg==","lat":37.831237014259486,"tow":271542700,"h_accuracy":513,"crc":4100,"lon":-122.2865067077558} +{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"rGkvEPb///8FAAAA+f////EAywIPAg==","n":-10,"d":-7,"tow":271542700,"h_accuracy":241,"crc":51882,"e":5} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"rGkvEJsAhwBMAEgAcgAG","tow":271542700,"crc":45937,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"rGkvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271542700,"h_accuracy":0,"crc":52318,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"rGkvEP//","tow":271542700,"crc":14508} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MggQai8QAAAAAAE=","wn":2098,"tow":271542800,"crc":50981} +{"length":16,"flags":17,"ns":799999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"ERBqLxDkBwMZAxkY/gevLw==","day":25,"tow":271542800,"year":2020,"crc":50966,"minutes":25,"month":3,"seconds":24} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.95044029398317,"preamble":85,"sender":22963,"msg_type":522,"payload":"EGovEOGhuvll6kJABG1BIFaSXsBWdRsOUPMxwAECWwQPBg==","lat":37.83123704541118,"tow":271542800,"h_accuracy":513,"crc":21640,"lon":-122.2865067137646} +{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"EGovEAIAAADu/////f////EAywIPAg==","n":2,"d":-3,"tow":271542800,"h_accuracy":241,"crc":21829,"e":-18} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"EGovEJsAhwBMAEgAcgAG","tow":271542800,"crc":1449,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"EGovEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271542800,"h_accuracy":0,"crc":14073,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"EGovEP//","tow":271542800,"crc":9777} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":237,"states":[{"cn0":212,"mesid":{"sat":5,"code":0}},{"cn0":178,"mesid":{"sat":21,"code":0}},{"cn0":185,"mesid":{"sat":2,"code":0}},{"cn0":165,"mesid":{"sat":31,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":216,"mesid":{"sat":25,"code":0}},{"cn0":206,"mesid":{"sat":12,"code":0}},{"cn0":211,"mesid":{"sat":29,"code":0}},{"cn0":205,"mesid":{"sat":18,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":204,"mesid":{"sat":131,"code":2}},{"cn0":204,"mesid":{"sat":25,"code":1}},{"cn0":188,"mesid":{"sat":12,"code":1}},{"cn0":150,"mesid":{"sat":31,"code":1}},{"cn0":197,"mesid":{"sat":18,"code":1}},{"cn0":194,"mesid":{"sat":29,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":193,"mesid":{"sat":5,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":212,"mesid":{"sat":11,"code":3}},{"cn0":174,"mesid":{"sat":9,"code":3}},{"cn0":174,"mesid":{"sat":20,"code":3}},{"cn0":207,"mesid":{"sat":5,"code":3}},{"cn0":206,"mesid":{"sat":10,"code":3}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":181,"mesid":{"sat":4,"code":3}},{"cn0":204,"mesid":{"sat":21,"code":3}},{"cn0":174,"mesid":{"sat":9,"code":4}},{"cn0":205,"mesid":{"sat":20,"code":4}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":199,"mesid":{"sat":11,"code":4}},{"cn0":194,"mesid":{"sat":5,"code":4}},{"cn0":187,"mesid":{"sat":0,"code":4}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":172,"mesid":{"sat":4,"code":4}},{"cn0":201,"mesid":{"sat":35,"code":12}},{"cn0":172,"mesid":{"sat":26,"code":12}},{"cn0":161,"mesid":{"sat":34,"code":12}},{"cn0":188,"mesid":{"sat":24,"code":12}},{"cn0":159,"mesid":{"sat":25,"code":12}},{"cn0":185,"mesid":{"sat":12,"code":12}},{"cn0":185,"mesid":{"sat":19,"code":12}},{"cn0":193,"mesid":{"sat":22,"code":12}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":212,"mesid":{"sat":12,"code":13}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":195,"mesid":{"sat":12,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":191,"mesid":{"sat":25,"code":14}},{"cn0":188,"mesid":{"sat":11,"code":14}},{"cn0":203,"mesid":{"sat":24,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":160,"mesid":{"sat":31,"code":14}},{"cn0":152,"mesid":{"sat":33,"code":14}},{"cn0":201,"mesid":{"sat":25,"code":20}},{"cn0":215,"mesid":{"sat":24,"code":20}},{"cn0":194,"mesid":{"sat":11,"code":20}},{"cn0":174,"mesid":{"sat":31,"code":20}},{"cn0":206,"mesid":{"sat":12,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":170,"mesid":{"sat":33,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}}],"preamble":85,"sender":22963,"msg_type":97,"payload":"BQDUFQCyAgC5HwClAAAAAAAAGQDYDADOHQDTEgDNAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwLMGQHMDAG8HwGWEgHFHQHCAAAABQHBAAAAAAAAAAAAAAAACwPUCQOuFAOuBQPPCgPOAAAABAO1FQPMCQSuFATNAAAACwTHBQTCAAS7AAAABASsIwzJGgysIgyhGAy8GQyfDAy5Ewy5FgzBAAAADA3UAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADA7DAAAAGQ6/Cw68GA7LAAAAHw6gIQ6YGRTJGBTXCxTCHxSuDBTOAAAAIRSqAAAA","crc":62294} +{"length":128,"preamble":85,"sender":22963,"msg_type":151,"payload":"AgAaHQUAKzUMAFEtFQB9GRkAbUYaAKEBHQChNx8AlQ4EAxUWBQMyIQkDXw4KA3EpCwOYJQwDqgMTAyIHFAMMMRUDlSUMDJQpEwwjIBQMDwIWDEMkGAyCIxkMnQ4aDGcVIgyOESMMIi0LDosyDA4PPBgObDYZDpcpHw5VESEOIA8=","crc":34187,"azel":[{"el":29,"az":26,"sid":{"sat":2,"code":0}},{"el":53,"az":43,"sid":{"sat":5,"code":0}},{"el":45,"az":81,"sid":{"sat":12,"code":0}},{"el":25,"az":125,"sid":{"sat":21,"code":0}},{"el":70,"az":109,"sid":{"sat":25,"code":0}},{"el":1,"az":161,"sid":{"sat":26,"code":0}},{"el":55,"az":161,"sid":{"sat":29,"code":0}},{"el":14,"az":149,"sid":{"sat":31,"code":0}},{"el":22,"az":21,"sid":{"sat":4,"code":3}},{"el":33,"az":50,"sid":{"sat":5,"code":3}},{"el":14,"az":95,"sid":{"sat":9,"code":3}},{"el":41,"az":113,"sid":{"sat":10,"code":3}},{"el":37,"az":152,"sid":{"sat":11,"code":3}},{"el":3,"az":170,"sid":{"sat":12,"code":3}},{"el":7,"az":34,"sid":{"sat":19,"code":3}},{"el":49,"az":12,"sid":{"sat":20,"code":3}},{"el":37,"az":149,"sid":{"sat":21,"code":3}},{"el":41,"az":148,"sid":{"sat":12,"code":12}},{"el":32,"az":35,"sid":{"sat":19,"code":12}},{"el":2,"az":15,"sid":{"sat":20,"code":12}},{"el":36,"az":67,"sid":{"sat":22,"code":12}},{"el":35,"az":130,"sid":{"sat":24,"code":12}},{"el":14,"az":157,"sid":{"sat":25,"code":12}},{"el":21,"az":103,"sid":{"sat":26,"code":12}},{"el":17,"az":142,"sid":{"sat":34,"code":12}},{"el":45,"az":34,"sid":{"sat":35,"code":12}},{"el":50,"az":139,"sid":{"sat":11,"code":14}},{"el":60,"az":15,"sid":{"sat":12,"code":14}},{"el":54,"az":108,"sid":{"sat":24,"code":14}},{"el":41,"az":151,"sid":{"sat":25,"code":14}},{"el":17,"az":85,"sid":{"sat":31,"code":14}},{"el":15,"az":32,"sid":{"sat":33,"code":14}}]} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"Mgh0ai8QAAAAAAE=","wn":2098,"tow":271542900,"crc":41967} +{"length":16,"flags":17,"ns":899999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EXRqLxDkBwMZAxkY/uikNQ==","day":25,"tow":271542900,"year":2020,"crc":2104,"minutes":25,"month":3,"seconds":24} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.938962086413994,"preamble":85,"sender":22963,"msg_type":522,"payload":"dGovEMwJB/pl6kJAq8IwIFaSXsAAVb3RX/AxwAECWwQPBg==","lat":37.83123708099046,"tow":271542900,"h_accuracy":513,"crc":30746,"lon":-122.28650669824371} +{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"dGovEAYAAAAAAAAAFAAAAPEAywIPAg==","n":6,"d":20,"tow":271542900,"h_accuracy":241,"crc":6783,"e":0} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"dGovEJsAhwBMAEgAcgAG","tow":271542900,"crc":10502,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"dGovEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271542900,"h_accuracy":0,"crc":11855,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"dGovEP//","tow":271542900,"crc":32648} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":249,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":133,"i":110569584},"flags":15,"cn0":212,"P":1052034492,"D":{"f":202,"i":-202},"lock":15,"sid":{"sat":5,"code":0}},{"L":{"f":114,"i":121763961},"flags":15,"cn0":178,"P":1158545580,"D":{"f":102,"i":2167},"lock":15,"sid":{"sat":21,"code":0}},{"L":{"f":122,"i":123407735},"flags":15,"cn0":185,"P":1174185167,"D":{"f":49,"i":-2479},"lock":15,"sid":{"sat":2,"code":0}},{"L":{"f":214,"i":128749636},"flags":15,"cn0":164,"P":1225012085,"D":{"f":19,"i":-409},"lock":15,"sid":{"sat":31,"code":0}},{"L":{"f":14,"i":107855072},"flags":15,"cn0":216,"P":1026206815,"D":{"f":77,"i":-1144},"lock":15,"sid":{"sat":25,"code":0}},{"L":{"f":145,"i":114181963},"flags":15,"cn0":206,"P":1086405168,"D":{"f":69,"i":-2977},"lock":15,"sid":{"sat":12,"code":0}},{"L":{"f":127,"i":110719410},"flags":15,"cn0":211,"P":1053460083,"D":{"f":28,"i":1479},"lock":15,"sid":{"sat":29,"code":0}},{"L":{"f":201,"i":84042933},"flags":15,"cn0":204,"P":1026206872,"D":{"f":240,"i":-891},"lock":15,"sid":{"sat":25,"code":1}},{"L":{"f":62,"i":88972990},"flags":15,"cn0":188,"P":1086405123,"D":{"f":56,"i":-2320},"lock":15,"sid":{"sat":12,"code":1}},{"L":{"f":186,"i":100324394},"flags":15,"cn0":150,"P":1225011942,"D":{"f":217,"i":-318},"lock":15,"sid":{"sat":31,"code":1}},{"L":{"f":44,"i":86274867},"flags":15,"cn0":194,"P":1053459995,"D":{"f":160,"i":1152},"lock":15,"sid":{"sat":29,"code":1}},{"L":{"f":21,"i":86158147},"flags":15,"cn0":193,"P":1052034395,"D":{"f":85,"i":-157},"lock":15,"sid":{"sat":5,"code":1}},{"L":{"f":124,"i":112904093},"flags":15,"cn0":213,"P":1056422764,"D":{"f":122,"i":1143},"lock":15,"sid":{"sat":11,"code":3}},{"L":{"f":112,"i":123460937},"flags":15,"cn0":175,"P":1156013085,"D":{"f":24,"i":-4408},"lock":15,"sid":{"sat":9,"code":3}}],"payload":"2GovEAAAAAAyCEC8xbQ+cCiXBoU2/8rUDw8FAKwADkV5+EEHcncIZrIPDxUAz6T8RXcNWwd6UfYxuQ8PAgB1MwRJRJCsB9Zn/hOkDw8fAF+sKj3gvG0GDoj7TdgPDxkAMDrBQEtHzgaRX/RFzg8PDABzhso+snGZBn/HBRzTDw8dAJisKj21ZAIFyYX88MwPDxkBAzrBQL6eTQU+8PY4vA8PDAHmMgRJKtT6BbrC/tmWDw8fARuGyj4zcyQFLIAEoMIPDx0BW8W0PkOrIgUVY/9VwQ8PBQFsu/c+nce6Bnx3BHrVDw8LAx1c50RJ3VsHcMjuGK8PDwkD","header":{"n_obs":64,"t":{"ns_residual":0,"wn":2098,"tow":271543000}},"crc":59026} +{"length":249,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":206,"i":109805453},"flags":15,"cn0":174,"P":1026708383,"D":{"f":10,"i":-1213},"lock":15,"sid":{"sat":20,"code":3}},{"L":{"f":97,"i":114797280},"flags":15,"cn0":207,"P":1073759913,"D":{"f":254,"i":2179},"lock":15,"sid":{"sat":5,"code":3}},{"L":{"f":66,"i":111691364},"flags":15,"cn0":206,"P":1047650415,"D":{"f":163,"i":-3060},"lock":15,"sid":{"sat":10,"code":3}},{"L":{"f":2,"i":120476676},"flags":15,"cn0":181,"P":1124908149,"D":{"f":137,"i":-1338},"lock":15,"sid":{"sat":4,"code":3}},{"L":{"f":129,"i":113373238},"flags":15,"cn0":204,"P":1059324579,"D":{"f":65,"i":1618},"lock":15,"sid":{"sat":21,"code":3}},{"L":{"f":55,"i":96025183},"flags":15,"cn0":174,"P":1156013218,"D":{"f":116,"i":-3427},"lock":15,"sid":{"sat":9,"code":4}},{"L":{"f":146,"i":85404277},"flags":15,"cn0":205,"P":1026708701,"D":{"f":244,"i":-945},"lock":15,"sid":{"sat":20,"code":4}},{"L":{"f":68,"i":87814305},"flags":15,"cn0":199,"P":1056423054,"D":{"f":121,"i":889},"lock":15,"sid":{"sat":11,"code":4}},{"L":{"f":111,"i":89286777},"flags":15,"cn0":194,"P":1073760204,"D":{"f":225,"i":1695},"lock":15,"sid":{"sat":5,"code":4}},{"L":{"f":147,"i":93704071},"flags":15,"cn0":172,"P":1124908332,"D":{"f":80,"i":-1040},"lock":15,"sid":{"sat":4,"code":4}},{"L":{"f":169,"i":121623051},"flags":15,"cn0":201,"P":1167821153,"D":{"f":119,"i":-1503},"lock":15,"sid":{"sat":35,"code":12}},{"L":{"f":121,"i":129298356},"flags":15,"cn0":172,"P":1241519540,"D":{"f":33,"i":-3008},"lock":15,"sid":{"sat":26,"code":12}},{"L":{"f":136,"i":132881390},"flags":15,"cn0":162,"P":1275923508,"D":{"f":183,"i":2248},"lock":15,"sid":{"sat":34,"code":12}},{"L":{"f":126,"i":125188901},"flags":15,"cn0":188,"P":1202060654,"D":{"f":172,"i":-1315},"lock":15,"sid":{"sat":24,"code":12}}],"payload":"2GovEAAAAAAyCEGfUzI9jX+LBs5D+wquDw8UA6lGAEDgqtcGYYMI/s8PDwUDb+BxPmRGqAZCDPSjzg8PCgN1vAxDBFQuBwLG+om1Dw8EA6MCJD828MEGgVIGQcwPDxUDolznRF86uQU3nfJ0rg8PCQTdVDI9dSoXBZJP/PTNDw8UBI689z6h8DsFRHkDeccPDwsEzEcAQHloUgVvnwbhwg8PBQQsvQxDh8+VBZPw+1CsDw8EBGGJm0UL0j8HqSH6d8kPDyMMtBUASrTvtAd5QPQhrA8PGgw0DA1M7pvrB4jICLeiDw8iDG79pUclO3YHft36rLwPDxgM","header":{"n_obs":65,"t":{"ns_residual":0,"wn":2098,"tow":271543000}},"crc":6262} +{"length":249,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":254,"i":134634252},"flags":15,"cn0":159,"P":1292754648,"D":{"f":195,"i":1311},"lock":15,"sid":{"sat":25,"code":12}},{"L":{"f":180,"i":121053656},"flags":15,"cn0":185,"P":1162354077,"D":{"f":29,"i":1610},"lock":15,"sid":{"sat":12,"code":12}},{"L":{"f":213,"i":124523457},"flags":15,"cn0":184,"P":1195671012,"D":{"f":199,"i":-305},"lock":15,"sid":{"sat":19,"code":12}},{"L":{"f":188,"i":124635883},"flags":15,"cn0":193,"P":1196750548,"D":{"f":42,"i":2379},"lock":15,"sid":{"sat":22,"code":12}},{"L":{"f":183,"i":93606374},"flags":15,"cn0":212,"P":1162354002,"D":{"f":182,"i":1244},"lock":15,"sid":{"sat":12,"code":13}},{"L":{"f":24,"i":116455693},"flags":15,"cn0":195,"P":1108039043,"D":{"f":181,"i":-1029},"lock":15,"sid":{"sat":12,"code":14}},{"L":{"f":237,"i":132443619},"flags":15,"cn0":191,"P":1260159063,"D":{"f":27,"i":1075},"lock":15,"sid":{"sat":25,"code":14}},{"L":{"f":86,"i":125392409},"flags":15,"cn0":188,"P":1193069036,"D":{"f":38,"i":1043},"lock":15,"sid":{"sat":11,"code":14}},{"L":{"f":255,"i":118464384},"flags":15,"cn0":203,"P":1127151008,"D":{"f":203,"i":-1756},"lock":15,"sid":{"sat":24,"code":14}},{"L":{"f":80,"i":143412988},"flags":15,"cn0":160,"P":1364529192,"D":{"f":23,"i":-3172},"lock":15,"sid":{"sat":31,"code":14}},{"L":{"f":246,"i":144585956},"flags":15,"cn0":153,"P":1375689584,"D":{"f":211,"i":-2138},"lock":15,"sid":{"sat":33,"code":14}},{"L":{"f":31,"i":101482772},"flags":15,"cn0":201,"P":1260159038,"D":{"f":209,"i":824},"lock":15,"sid":{"sat":25,"code":20}},{"L":{"f":111,"i":90771475},"flags":15,"cn0":215,"P":1127151563,"D":{"f":228,"i":-1345},"lock":15,"sid":{"sat":24,"code":20}},{"L":{"f":232,"i":96079875},"flags":15,"cn0":194,"P":1193068859,"D":{"f":163,"i":800},"lock":15,"sid":{"sat":11,"code":20}}],"payload":"2GovEAAAAAAyCELY3g1NDFsGCP4fBcOfDw8ZDJ0dSEXYITcHtEoGHbkPDwwM5H1ER8ETbAfVz/7HuA8PEwzU9lRH68ptB7xLCSrBDw8WDFIdSEXmUZQFt9wEttQPDwwNg1ULQg358AYY+/u1ww8PDA5XgBxL4+3kB+0zBBu/Dw8ZDuzJHEcZVnkHVhMEJrwPDwsOoPUuQ4CfDwf/JPnLyw8PGA4oEFVR/E6MCFCc8xegDw8fDnBb/1HkNJ4I9qb305kPDyEOPoAcSxSBDAYfOAPRyQ8PGRTL9y5DExBpBW+/+uTXDw8YFDvJHEcDELoF6CADo8IPDwsU","header":{"n_obs":66,"t":{"ns_residual":0,"wn":2098,"tow":271543000}},"crc":64552} +{"length":62,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":177,"i":109887915},"flags":15,"cn0":175,"P":1364529284,"D":{"f":45,"i":-2431},"lock":15,"sid":{"sat":31,"code":20}},{"L":{"f":237,"i":89232314},"flags":15,"cn0":206,"P":1108038889,"D":{"f":228,"i":-790},"lock":15,"sid":{"sat":12,"code":20}},{"L":{"f":210,"i":110786712},"flags":15,"cn0":170,"P":1375689595,"D":{"f":134,"i":-1639},"lock":15,"sid":{"sat":33,"code":20}}],"payload":"2GovEAAAAAAyCEOEEFVRq8GMBrGB9i2vDw8fFOlUC0K6k1EF7er85M4PDwwUe1v/UZh4mgbSmfmGqg8PIRQ=","header":{"n_obs":67,"t":{"ns_residual":0,"wn":2098,"tow":271543000}},"crc":46456} +{"length":9,"l2ca_bias":0,"preamble":85,"l2p_bias":0,"sender":22963,"msg_type":117,"payload":"/wAAAAAAAAAA","l1ca_bias":0,"mask":255,"crc":49809,"l1p_bias":0} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgjYai8QAAAAAAE=","wn":2098,"tow":271543000,"crc":3761} +{"length":16,"flags":17,"ns":999999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EdhqLxDkBwMZAxkY/smaOw==","day":25,"tow":271543000,"year":2020,"crc":2923,"minutes":25,"month":3,"seconds":24} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.922487538665806,"preamble":85,"sender":22963,"msg_type":522,"payload":"2GovEKYnXvpl6kJAPlMfIFaSXsCEibEkKOwxwAECWwQPBg==","lat":37.831237121557294,"tow":271543000,"h_accuracy":513,"crc":56305,"lon":-122.28650668200586} +{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"2GovEPz////+////2v////EAywIPAg==","n":-4,"d":-38,"tow":271543000,"h_accuracy":241,"crc":22713,"e":-2} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"2GovEJsAhwBMAEgAcgAG","tow":271543000,"crc":23799,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"2GovEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271543000,"h_accuracy":0,"crc":1941,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"2GovEP//","tow":271543000,"crc":38211} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":4,"flags":2147616000,"preamble":85,"sender":22963,"msg_type":65535,"payload":"AAUCgA==","crc":40942} +{"length":24,"z":3890655.0240602265,"preamble":85,"sender":22963,"msg_type":72,"payload":"UO0a3iqORMHK1UJhIkRQwc9nFIPvrk1B","crc":2168,"x":-2694229.735196747,"y":-4264073.519704292} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"Mgg8ay8QAAAAAAE=","wn":2098,"tow":271543100,"crc":37402} +{"length":16,"flags":17,"ns":99999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"ETxrLxDkBwMZAxkZ/uD1BQ==","day":25,"tow":271543100,"year":2020,"crc":30264,"minutes":25,"month":3,"seconds":25} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.914156806581662,"preamble":85,"sender":22963,"msg_type":522,"payload":"PGsvEKRnuPpl6kJAalgEIFaSXsAdrzMuBuoxwAECWwQPBg==","lat":37.83123716358321,"tow":271543100,"h_accuracy":513,"crc":61097,"lon":-122.28650665687897} +{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"PGsvEAQAAAAKAAAAGgAAAPEAywIPAg==","n":4,"d":26,"tow":271543100,"h_accuracy":241,"crc":36974,"e":10} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"PGsvEJsAhwBMAEgAcgAG","tow":271543100,"crc":24363,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"PGsvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271543100,"h_accuracy":0,"crc":28736,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"PGsvEP//","tow":271543100,"crc":45707} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"Mgigay8QAAAAAAE=","wn":2098,"tow":271543200,"crc":52038} +{"length":16,"flags":17,"ns":199999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EaBrLxDkBwMZAxkZ/sHrCw==","day":25,"tow":271543200,"year":2020,"crc":40979,"minutes":25,"month":3,"seconds":25} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.902988052050933,"preamble":85,"sender":22963,"msg_type":522,"payload":"oGsvEMfX/Ppl6kJACyP4H1aSXsDNPJg5KucxwAECWwQPBg==","lat":37.831237195452154,"tow":271543200,"h_accuracy":513,"crc":58071,"lon":-122.28650664550894} +{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"oGsvEPz/////////+P////EAywIPAg==","n":-4,"d":-8,"tow":271543200,"h_accuracy":241,"crc":19899,"e":-1} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"oGsvEJsAhwBMAEgAcgAG","tow":271543200,"crc":63812,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"oGsvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271543200,"h_accuracy":0,"crc":36465,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"oGsvEP//","tow":271543200,"crc":30668} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":139,"af0":-2.3224857e-5,"w":-1.3463657413316004,"dn":4.863774024282281e-9,"c_us":7.007271e-6,"c_uc":3.5446137e-6,"ecc":2.4803906213492155e-2,"sqrta":5153.536083221436,"preamble":85,"toc":{"wn":2098,"tow":273600},"sender":22963,"msg_type":138,"omegadot":-7.992475775839984e-9,"payload":"FQDALAQAMggAAABAQDgAAAEAAAAwsgCwk0IAcGpDAOBtNgAg6zYAgAQ1AABmtKhKIq7G4zQ+zoPVH/LR/D8AAAD4MWaZPwAAwDyJIbRATXV4Dg49AcAnH2j36ClBvpWVt822ivW/nz9Vvld47j/jWw9tDf79PQDTwrcAALQsAAAAAMAsBAAyCCEhAA==","inc":0.9521902768556066,"inc_dot":4.364467511876155e-10,"tgd":-1.0244548e-8,"iode":33,"crc":59056,"common":{"health_bits":0,"fit_interval":14400,"valid":1,"sid":{"sat":21,"code":0},"toe":{"wn":2098,"tow":273600},"ura":2},"c_rs":73.84375,"m0":1.8012562984006197,"af2":0,"c_rc":234.4375,"af1":5.1159077e-12,"c_is":-2.1420419e-7,"c_ic":4.9360096e-7,"omega0":-2.154811966944783,"iodc":33} +{"length":139,"af0":-3.162166e-5,"w":0.12302202292105374,"dn":4.687338103589416e-9,"c_us":6.943941e-6,"c_uc":4.4591725e-6,"ecc":9.5325744478032e-3,"sqrta":5153.545351028442,"preamble":85,"toc":{"wn":2098,"tow":273584},"sender":22963,"msg_type":138,"omegadot":-8.187483898711045e-9,"payload":"HwCwLAQAMggAAABAQDgAAAEAAABosgBwr0IAuHZDAKCVNgAA6TYAALyzAADwMmzcL2LIITQ+jRvCTcbTA0AAAAB80IWDPwAAIJyLIbRAgzPjXdBF8T/3kXvrHZVBvmQ5Ig1ffr8/craUyTun7j8RGcu37Wv8PYChBLgAADCsAAAAALAsBAAyCCgoAA==","inc":0.9579142510535361,"inc_dot":4.135886561990661e-10,"tgd":-1.3504177e-8,"iode":40,"crc":15733,"common":{"health_bits":0,"fit_interval":14400,"valid":1,"sid":{"sat":31,"code":0},"toe":{"wn":2098,"tow":273584},"ura":2},"c_rs":87.71875,"m0":2.478405578123278,"af2":0,"c_rc":246.71875,"af1":-2.5011104e-12,"c_is":2.7939677e-8,"c_ic":-8.754432e-8,"omega0":1.0795444171410231,"iodc":40} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MggEbC8QAAAAAAE=","wn":2098,"tow":271543300,"crc":35071} +{"length":16,"flags":17,"ns":299999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EQRsLxDkBwMZAxkZ/qLhEQ==","day":25,"tow":271543300,"year":2020,"crc":7210,"minutes":25,"month":3,"seconds":25} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.892007415708008,"preamble":85,"sender":22963,"msg_type":522,"payload":"BGwvEH8XRPtl6kJAe8DsH1aSXsBgQRaZWuQxwAECWwQPBg==","lat":37.83123722863001,"tow":271543300,"h_accuracy":513,"crc":44033,"lon":-122.28650663490582} +{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"BGwvEP3///8CAAAA9v////EAywIPAg==","n":-3,"d":-10,"tow":271543300,"h_accuracy":241,"crc":8662,"e":2} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"BGwvEJsAhwBMAEgAcgAG","tow":271543300,"crc":56310,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"BGwvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271543300,"h_accuracy":0,"crc":61576,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"BGwvEP//","tow":271543300,"crc":63377} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":237,"states":[{"cn0":212,"mesid":{"sat":5,"code":0}},{"cn0":179,"mesid":{"sat":21,"code":0}},{"cn0":185,"mesid":{"sat":2,"code":0}},{"cn0":165,"mesid":{"sat":31,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":216,"mesid":{"sat":25,"code":0}},{"cn0":206,"mesid":{"sat":12,"code":0}},{"cn0":211,"mesid":{"sat":29,"code":0}},{"cn0":205,"mesid":{"sat":18,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":203,"mesid":{"sat":131,"code":2}},{"cn0":205,"mesid":{"sat":25,"code":1}},{"cn0":189,"mesid":{"sat":12,"code":1}},{"cn0":151,"mesid":{"sat":31,"code":1}},{"cn0":197,"mesid":{"sat":18,"code":1}},{"cn0":194,"mesid":{"sat":29,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":193,"mesid":{"sat":5,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":213,"mesid":{"sat":100,"code":3}},{"cn0":175,"mesid":{"sat":98,"code":3}},{"cn0":174,"mesid":{"sat":102,"code":3}},{"cn0":207,"mesid":{"sat":101,"code":3}},{"cn0":206,"mesid":{"sat":93,"code":3}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":181,"mesid":{"sat":106,"code":3}},{"cn0":204,"mesid":{"sat":104,"code":3}},{"cn0":174,"mesid":{"sat":98,"code":4}},{"cn0":206,"mesid":{"sat":102,"code":4}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":199,"mesid":{"sat":100,"code":4}},{"cn0":194,"mesid":{"sat":101,"code":4}},{"cn0":187,"mesid":{"sat":104,"code":4}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":172,"mesid":{"sat":106,"code":4}},{"cn0":201,"mesid":{"sat":35,"code":12}},{"cn0":172,"mesid":{"sat":26,"code":12}},{"cn0":163,"mesid":{"sat":34,"code":12}},{"cn0":188,"mesid":{"sat":24,"code":12}},{"cn0":159,"mesid":{"sat":25,"code":12}},{"cn0":185,"mesid":{"sat":12,"code":12}},{"cn0":184,"mesid":{"sat":19,"code":12}},{"cn0":193,"mesid":{"sat":22,"code":12}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":211,"mesid":{"sat":12,"code":13}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":194,"mesid":{"sat":12,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":191,"mesid":{"sat":25,"code":14}},{"cn0":188,"mesid":{"sat":11,"code":14}},{"cn0":203,"mesid":{"sat":24,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":159,"mesid":{"sat":31,"code":14}},{"cn0":153,"mesid":{"sat":33,"code":14}},{"cn0":201,"mesid":{"sat":25,"code":20}},{"cn0":215,"mesid":{"sat":24,"code":20}},{"cn0":194,"mesid":{"sat":11,"code":20}},{"cn0":174,"mesid":{"sat":31,"code":20}},{"cn0":206,"mesid":{"sat":12,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":170,"mesid":{"sat":33,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}}],"preamble":85,"sender":22963,"msg_type":97,"payload":"BQDUFQCzAgC5HwClAAAAAAAAGQDYDADOHQDTEgDNAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwLLGQHNDAG9HwGXEgHFHQHCAAAABQHBAAAAAAAAAAAAAAAAZAPVYgOvZgOuZQPPXQPOAAAAagO1aAPMYgSuZgTOAAAAZATHZQTCaAS7AAAAagSsIwzJGgysIgyjGAy8GQyfDAy5Ewy4FgzBAAAADA3TAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADA7CAAAAGQ6/Cw68GA7LAAAAHw6fIQ6ZGRTJGBTXCxTCHxSuDBTOAAAAIRSqAAAA","crc":64563} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MghobC8QAAAAAAE=","wn":2098,"tow":271543400,"crc":50634} +{"length":16,"flags":17,"ns":399999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EWhsLxDkBwMZAxkZ/oPXFw==","day":25,"tow":271543400,"year":2020,"crc":27075,"minutes":25,"month":3,"seconds":25} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.880114643473444,"preamble":85,"sender":22963,"msg_type":522,"payload":"aGwvEJl/o/tl6kJABkX2H1aSXsD7cnoxT+ExwAECWwQPBg==","lat":37.83123727305719,"tow":271543400,"h_accuracy":513,"crc":38202,"lon":-122.28650664376991} +{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"aGwvEAYAAAD4/////v////EAywIPAg==","n":6,"d":-2,"tow":271543400,"h_accuracy":241,"crc":23001,"e":-8} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"aGwvEJsAhwBMAEgAcgAG","tow":271543400,"crc":53276,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"aGwvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271543400,"h_accuracy":0,"crc":46749,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"aGwvEP//","tow":271543400,"crc":41834} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":9,"l2ca_bias":0,"preamble":85,"l2p_bias":0,"sender":22963,"msg_type":117,"payload":"/wAAAAAAAAAA","l1ca_bias":0,"mask":255,"crc":49809,"l1p_bias":0} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgjMbC8QAAAAAAE=","wn":2098,"tow":271543500,"crc":16747} +{"length":16,"flags":17,"ns":499999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EcxsLxDkBwMZAxkZ/mTNHQ==","day":25,"tow":271543500,"year":2020,"crc":21284,"minutes":25,"month":3,"seconds":25} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.8727636947281,"preamble":85,"sender":22963,"msg_type":522,"payload":"zGwvEOF64ftl6kJAsfH4H1aSXsBK/gVxbd8xwAECWwQPBg==","lat":37.83123730191961,"tow":271543500,"h_accuracy":513,"crc":31394,"lon":-122.28650664626072} +{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"zGwvEPb/////////CgAAAPEAywIPAg==","n":-10,"d":10,"tow":271543500,"h_accuracy":241,"crc":23358,"e":-1} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"zGwvEJsAhwBMAEgAcgAG","tow":271543500,"crc":33448,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"zGwvEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271543500,"h_accuracy":0,"crc":49636,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"zGwvEP//","tow":271543500,"crc":17635} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MggwbS8QAAAAAAE=","wn":2098,"tow":271543600,"crc":42945} +{"length":16,"flags":17,"ns":599999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"ETBtLxDkBwMZAxkZ/kXDIw==","day":25,"tow":271543600,"year":2020,"crc":31827,"minutes":25,"month":3,"seconds":25} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.864227986692867,"preamble":85,"sender":22963,"msg_type":522,"payload":"MG0vEONATPxl6kJA3doDIFaSXsBAIpsLPt0xwAECWwQPBg==","lat":37.83123735163988,"tow":271543600,"h_accuracy":513,"crc":34088,"lon":-122.28650665642222} +{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"MG0vEAMAAAAAAAAAGAAAAPEAywIPAg==","n":3,"d":24,"tow":271543600,"h_accuracy":241,"crc":34316,"e":0} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"MG0vEJsAhwBMAEgAcgAG","tow":271543600,"crc":59579,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"MG0vEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271543600,"h_accuracy":0,"crc":21972,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"MG0vEP//","tow":271543600,"crc":29933} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgiUbS8QAAAAAAE=","wn":2098,"tow":271543700,"crc":9056} +{"length":16,"flags":17,"ns":699999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EZRtLxDkBwMZAxkZ/ia5KQ==","day":25,"tow":271543700,"year":2020,"crc":43524,"minutes":25,"month":3,"seconds":25} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.854212623848383,"preamble":85,"sender":22963,"msg_type":522,"payload":"lG0vEJYJ1/xl6kJACoQUIFaSXsBYQrOtrdoxwAECWwQPBg==","lat":37.831237416266205,"tow":271543700,"h_accuracy":513,"crc":35563,"lon":-122.28650667193884} +{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"lG0vEAoAAAD6////6/////EAywIPAg==","n":10,"d":-21,"tow":271543700,"h_accuracy":241,"crc":27653,"e":-6} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"lG0vEJsAhwBMAEgAcgAG","tow":271543700,"crc":47631,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"lG0vEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271543700,"h_accuracy":0,"crc":8877,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"lG0vEP//","tow":271543700,"crc":37732} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"message_type":25,"length":34,"data":[146,124,2,0,127,246,0,64,0,32,0,3,5,108,27,255,0,12,2,64,64,0,0,0,0,193,80],"preamble":85,"sender":22963,"msg_type":30583,"payload":"gwK/bC8QGZJ8AgB/9gBAACAAAwVsG/8ADAJAQAAAAADBUA==","tow":271543487,"crc":26227,"sid":{"sat":131,"code":2}} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"Mgj4bS8QAAAAAAE=","wn":2098,"tow":271543800,"crc":28245} +{"length":16,"flags":17,"ns":799999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EfhtLxDkBwMZAxkZ/gevLw==","day":25,"tow":271543800,"year":2020,"crc":55563,"minutes":25,"month":3,"seconds":25} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.848061804842963,"preamble":85,"sender":22963,"msg_type":522,"payload":"+G0vEAYALP1l6kJAwzgPIFaSXsCKyRSUGtkxwAECWwQPBg==","lat":37.83123745583002,"tow":271543800,"h_accuracy":513,"crc":10184,"lon":-122.28650666700837} +{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"+G0vEPz///8GAAAA/P////EAywIPAg==","n":-4,"d":-4,"tow":271543800,"h_accuracy":241,"crc":11443,"e":6} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"+G0vEJsAhwBMAEgAcgAG","tow":271543800,"crc":45541,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"+G0vEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271543800,"h_accuracy":0,"crc":25784,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"+G0vEP//","tow":271543800,"crc":51103} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":237,"states":[{"cn0":213,"mesid":{"sat":5,"code":0}},{"cn0":180,"mesid":{"sat":21,"code":0}},{"cn0":186,"mesid":{"sat":2,"code":0}},{"cn0":167,"mesid":{"sat":31,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":217,"mesid":{"sat":25,"code":0}},{"cn0":208,"mesid":{"sat":12,"code":0}},{"cn0":212,"mesid":{"sat":29,"code":0}},{"cn0":206,"mesid":{"sat":18,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":204,"mesid":{"sat":131,"code":2}},{"cn0":205,"mesid":{"sat":25,"code":1}},{"cn0":189,"mesid":{"sat":12,"code":1}},{"cn0":150,"mesid":{"sat":31,"code":1}},{"cn0":197,"mesid":{"sat":18,"code":1}},{"cn0":194,"mesid":{"sat":29,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":193,"mesid":{"sat":5,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":213,"mesid":{"sat":11,"code":3}},{"cn0":175,"mesid":{"sat":9,"code":3}},{"cn0":174,"mesid":{"sat":20,"code":3}},{"cn0":207,"mesid":{"sat":5,"code":3}},{"cn0":207,"mesid":{"sat":10,"code":3}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":181,"mesid":{"sat":4,"code":3}},{"cn0":204,"mesid":{"sat":21,"code":3}},{"cn0":174,"mesid":{"sat":9,"code":4}},{"cn0":206,"mesid":{"sat":20,"code":4}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":199,"mesid":{"sat":11,"code":4}},{"cn0":195,"mesid":{"sat":5,"code":4}},{"cn0":187,"mesid":{"sat":0,"code":4}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":172,"mesid":{"sat":4,"code":4}},{"cn0":201,"mesid":{"sat":35,"code":12}},{"cn0":172,"mesid":{"sat":26,"code":12}},{"cn0":162,"mesid":{"sat":34,"code":12}},{"cn0":188,"mesid":{"sat":24,"code":12}},{"cn0":159,"mesid":{"sat":25,"code":12}},{"cn0":185,"mesid":{"sat":12,"code":12}},{"cn0":184,"mesid":{"sat":19,"code":12}},{"cn0":193,"mesid":{"sat":22,"code":12}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":210,"mesid":{"sat":12,"code":13}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":194,"mesid":{"sat":12,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":191,"mesid":{"sat":25,"code":14}},{"cn0":188,"mesid":{"sat":11,"code":14}},{"cn0":203,"mesid":{"sat":24,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":159,"mesid":{"sat":31,"code":14}},{"cn0":152,"mesid":{"sat":33,"code":14}},{"cn0":201,"mesid":{"sat":25,"code":20}},{"cn0":215,"mesid":{"sat":24,"code":20}},{"cn0":194,"mesid":{"sat":11,"code":20}},{"cn0":175,"mesid":{"sat":31,"code":20}},{"cn0":206,"mesid":{"sat":12,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":170,"mesid":{"sat":33,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}}],"preamble":85,"sender":22963,"msg_type":97,"payload":"BQDVFQC0AgC6HwCnAAAAAAAAGQDZDADQHQDUEgDOAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwLMGQHNDAG9HwGWEgHFHQHCAAAABQHBAAAAAAAAAAAAAAAACwPVCQOvFAOuBQPPCgPPAAAABAO1FQPMCQSuFATOAAAACwTHBQTDAAS7AAAABASsIwzJGgysIgyiGAy8GQyfDAy5Ewy4FgzBAAAADA3SAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADA7CAAAAGQ6/Cw68GA7LAAAAHw6fIQ6YGRTJGBTXCxTCHxSvDBTOAAAAIRSqAAAA","crc":14472} +{"length":128,"preamble":85,"sender":22963,"msg_type":151,"payload":"AgAaHQUAKzUMAFEtFQB9GRkAbUYaAKEBHQChNx8AlQ4EAxUWBQMyIQkDXw4KA3EpCwOYJQwDqgMTAyIHFAMMMRUDlSUMDJQpEwwjIBQMDwIWDEMkGAyCIxkMnQ4aDGcVIgyOESMMIi0LDosyDA4PPBgObDYZDpcpHw5VESEOIA8=","crc":34187,"azel":[{"el":29,"az":26,"sid":{"sat":2,"code":0}},{"el":53,"az":43,"sid":{"sat":5,"code":0}},{"el":45,"az":81,"sid":{"sat":12,"code":0}},{"el":25,"az":125,"sid":{"sat":21,"code":0}},{"el":70,"az":109,"sid":{"sat":25,"code":0}},{"el":1,"az":161,"sid":{"sat":26,"code":0}},{"el":55,"az":161,"sid":{"sat":29,"code":0}},{"el":14,"az":149,"sid":{"sat":31,"code":0}},{"el":22,"az":21,"sid":{"sat":4,"code":3}},{"el":33,"az":50,"sid":{"sat":5,"code":3}},{"el":14,"az":95,"sid":{"sat":9,"code":3}},{"el":41,"az":113,"sid":{"sat":10,"code":3}},{"el":37,"az":152,"sid":{"sat":11,"code":3}},{"el":3,"az":170,"sid":{"sat":12,"code":3}},{"el":7,"az":34,"sid":{"sat":19,"code":3}},{"el":49,"az":12,"sid":{"sat":20,"code":3}},{"el":37,"az":149,"sid":{"sat":21,"code":3}},{"el":41,"az":148,"sid":{"sat":12,"code":12}},{"el":32,"az":35,"sid":{"sat":19,"code":12}},{"el":2,"az":15,"sid":{"sat":20,"code":12}},{"el":36,"az":67,"sid":{"sat":22,"code":12}},{"el":35,"az":130,"sid":{"sat":24,"code":12}},{"el":14,"az":157,"sid":{"sat":25,"code":12}},{"el":21,"az":103,"sid":{"sat":26,"code":12}},{"el":17,"az":142,"sid":{"sat":34,"code":12}},{"el":45,"az":34,"sid":{"sat":35,"code":12}},{"el":50,"az":139,"sid":{"sat":11,"code":14}},{"el":60,"az":15,"sid":{"sat":12,"code":14}},{"el":54,"az":108,"sid":{"sat":24,"code":14}},{"el":41,"az":151,"sid":{"sat":25,"code":14}},{"el":17,"az":85,"sid":{"sat":31,"code":14}},{"el":15,"az":32,"sid":{"sat":33,"code":14}}]} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"Mghcbi8QAAAAAAE=","wn":2098,"tow":271543900,"crc":8833} +{"length":16,"flags":17,"ns":899999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EVxuLxDkBwMZAxkZ/uikNQ==","day":25,"tow":271543900,"year":2020,"crc":58781,"minutes":25,"month":3,"seconds":25} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.83812936136607,"preamble":85,"sender":22963,"msg_type":522,"payload":"XG4vEOvKfP1l6kJAVPkfIFaSXsB44lSlj9YxwAECWwQPBg==","lat":37.83123749345199,"tow":271543900,"h_accuracy":513,"crc":59023,"lon":-122.28650668261008} +{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"XG4vEP////8AAAAA+f////EAywIPAg==","n":-1,"d":-7,"tow":271543900,"h_accuracy":241,"crc":64660,"e":0} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"XG4vEJsAhwBMAEgAcgAG","tow":271543900,"crc":28402,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"XG4vEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271543900,"h_accuracy":0,"crc":32250,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"XG4vEP//","tow":271543900,"crc":52932} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":249,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":255,"i":110569786},"flags":15,"cn0":213,"P":1052036416,"D":{"f":177,"i":-204},"lock":15,"sid":{"sat":5,"code":0}},{"L":{"f":59,"i":121761795},"flags":15,"cn0":180,"P":1158524963,"D":{"f":219,"i":2164},"lock":15,"sid":{"sat":21,"code":0}},{"L":{"f":94,"i":123410215},"flags":15,"cn0":187,"P":1174208752,"D":{"f":91,"i":-2481},"lock":15,"sid":{"sat":2,"code":0}},{"L":{"f":67,"i":128750047},"flags":15,"cn0":168,"P":1225016003,"D":{"f":173,"i":-412},"lock":15,"sid":{"sat":31,"code":0}},{"L":{"f":91,"i":107856216},"flags":15,"cn0":217,"P":1026217705,"D":{"f":50,"i":-1145},"lock":15,"sid":{"sat":25,"code":0}},{"L":{"f":243,"i":114184941},"flags":15,"cn0":208,"P":1086433510,"D":{"f":156,"i":-2979},"lock":15,"sid":{"sat":12,"code":0}},{"L":{"f":15,"i":110717932},"flags":15,"cn0":212,"P":1053446015,"D":{"f":75,"i":1478},"lock":15,"sid":{"sat":29,"code":0}},{"L":{"f":114,"i":84043825},"flags":15,"cn0":205,"P":1026217756,"D":{"f":28,"i":-892},"lock":15,"sid":{"sat":25,"code":1}},{"L":{"f":16,"i":88975311},"flags":15,"cn0":189,"P":1086433457,"D":{"f":156,"i":-2321},"lock":15,"sid":{"sat":12,"code":1}},{"L":{"f":139,"i":100324714},"flags":15,"cn0":151,"P":1225015816,"D":{"f":189,"i":-320},"lock":15,"sid":{"sat":31,"code":1}},{"L":{"f":37,"i":86273715},"flags":15,"cn0":195,"P":1053445924,"D":{"f":237,"i":1151},"lock":15,"sid":{"sat":29,"code":1}},{"L":{"f":223,"i":86158304},"flags":15,"cn0":193,"P":1052036325,"D":{"f":237,"i":-158},"lock":15,"sid":{"sat":5,"code":1}},{"L":{"f":130,"i":112902951},"flags":15,"cn0":213,"P":1056412075,"D":{"f":46,"i":1141},"lock":15,"sid":{"sat":11,"code":3}},{"L":{"f":109,"i":123465346},"flags":15,"cn0":175,"P":1156054345,"D":{"f":68,"i":-4409},"lock":15,"sid":{"sat":9,"code":3}}],"payload":"wG4vEAAAAAAyCEBAzbQ+OimXBv80/7HVDw8FACOwDUUD8EEHO3QI27QPDxUA8AD9RScXWwdeT/Zbuw8PAgDDQgRJ35GsB0Nk/q2oDw8fAOnWKj1YwW0GW4f7MtkPDxkA5qjBQO1SzgbzXfSc0A8PDAB/T8o+7GuZBg/GBUvUDw8dABzXKj0xaAIFcoT8HM0PDxkBsajBQM+nTQUQ7/acvQ8PDAEIQgRJatX6BYvA/r2XDw8fASRPyj6zbiQFJX8E7cMPDx0B5cy0PuCrIgXfYv/twQ8PBQGrkfc+J8O6BoJ1BC7VDw8LA0n950SC7lsHbcfuRK8PDwkD","header":{"n_obs":64,"t":{"ns_residual":0,"wn":2098,"tow":271544000}},"crc":53528} +{"length":249,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":212,"i":109806668},"flags":15,"cn0":174,"P":1026719769,"D":{"f":226,"i":-1216},"lock":15,"sid":{"sat":20,"code":3}},{"L":{"f":87,"i":114795101},"flags":15,"cn0":207,"P":1073739535,"D":{"f":242,"i":2178},"lock":15,"sid":{"sat":5,"code":3}},{"L":{"f":175,"i":111694424},"flags":15,"cn0":207,"P":1047679124,"D":{"f":201,"i":-3061},"lock":15,"sid":{"sat":10,"code":3}},{"L":{"f":184,"i":120478014},"flags":15,"cn0":181,"P":1124920655,"D":{"f":200,"i":-1340},"lock":15,"sid":{"sat":4,"code":3}},{"L":{"f":19,"i":113371621},"flags":15,"cn0":204,"P":1059309462,"D":{"f":223,"i":1616},"lock":15,"sid":{"sat":21,"code":3}},{"L":{"f":110,"i":96028612},"flags":15,"cn0":173,"P":1156054530,"D":{"f":158,"i":-3430},"lock":15,"sid":{"sat":9,"code":4}},{"L":{"f":151,"i":85405222},"flags":15,"cn0":206,"P":1026720066,"D":{"f":7,"i":-945},"lock":15,"sid":{"sat":20,"code":4}},{"L":{"f":15,"i":87813417},"flags":15,"cn0":199,"P":1056412360,"D":{"f":140,"i":887},"lock":15,"sid":{"sat":11,"code":4}},{"L":{"f":160,"i":89285082},"flags":15,"cn0":195,"P":1073739840,"D":{"f":253,"i":1694},"lock":15,"sid":{"sat":5,"code":4}},{"L":{"f":198,"i":93705112},"flags":15,"cn0":172,"P":1124920848,"D":{"f":107,"i":-1042},"lock":15,"sid":{"sat":4,"code":4}},{"L":{"f":122,"i":121624554},"flags":15,"cn0":201,"P":1167835579,"D":{"f":71,"i":-1503},"lock":15,"sid":{"sat":35,"code":12}},{"L":{"f":88,"i":129301366},"flags":15,"cn0":172,"P":1241548442,"D":{"f":197,"i":-3012},"lock":15,"sid":{"sat":26,"code":12}},{"L":{"f":203,"i":132879142},"flags":15,"cn0":162,"P":1275901931,"D":{"f":120,"i":2248},"lock":15,"sid":{"sat":34,"code":12}},{"L":{"f":205,"i":125190216},"flags":15,"cn0":188,"P":1202073274,"D":{"f":48,"i":-1316},"lock":15,"sid":{"sat":24,"code":12}}],"payload":"wG4vEAAAAAAyCEEZgDI9TISLBtRA++KuDw8UAw/3/z9dotcGV4II8s8PDwUDlFByPlhSqAavC/TJzw8PCgNP7QxDPlkuB7jE+si1Dw8EA5bHIz/l6cEGE1AG38wPDxUDAv7nRMRHuQVumvKerQ8PCQRCgTI9Ji4XBZdP/AfODw8UBMiS9z4p7TsFD3cDjMcPDwsEQPj/P9phUgWgngb9ww8PBQQQ7gxDmNOVBcbu+2usDw8EBLvBm0Xq1z8HeiH6R8kPDyMMmoYASnb7tAdYPPTFrA8PGgzrtwxMJpPrB8vICHiiDw8iDLoupkdIQHYHzdz6MLwPDxgM","header":{"n_obs":65,"t":{"ns_residual":0,"wn":2098,"tow":271544000}},"crc":30205} +{"length":249,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":131,"i":134632941},"flags":15,"cn0":159,"P":1292742061,"D":{"f":234,"i":1309},"lock":15,"sid":{"sat":25,"code":12}},{"L":{"f":135,"i":121052047},"flags":15,"cn0":185,"P":1162338627,"D":{"f":46,"i":1609},"lock":15,"sid":{"sat":12,"code":12}},{"L":{"f":151,"i":124523762},"flags":15,"cn0":185,"P":1195673942,"D":{"f":225,"i":-307},"lock":15,"sid":{"sat":19,"code":12}},{"L":{"f":83,"i":124633505},"flags":15,"cn0":193,"P":1196727721,"D":{"f":209,"i":2377},"lock":15,"sid":{"sat":22,"code":12}},{"L":{"f":103,"i":93605130},"flags":15,"cn0":210,"P":1162338547,"D":{"f":108,"i":1243},"lock":15,"sid":{"sat":12,"code":13}},{"L":{"f":238,"i":116456722},"flags":15,"cn0":194,"P":1108048836,"D":{"f":134,"i":-1030},"lock":15,"sid":{"sat":12,"code":14}},{"L":{"f":33,"i":132442544},"flags":15,"cn0":191,"P":1260148821,"D":{"f":86,"i":1075},"lock":15,"sid":{"sat":25,"code":14}},{"L":{"f":138,"i":125391366},"flags":15,"cn0":188,"P":1193059118,"D":{"f":206,"i":1042},"lock":15,"sid":{"sat":11,"code":14}},{"L":{"f":94,"i":118466140},"flags":15,"cn0":203,"P":1127167706,"D":{"f":163,"i":-1757},"lock":15,"sid":{"sat":24,"code":14}},{"L":{"f":3,"i":143416162},"flags":15,"cn0":159,"P":1364559379,"D":{"f":247,"i":-3175},"lock":15,"sid":{"sat":31,"code":14}},{"L":{"f":169,"i":144588096},"flags":15,"cn0":152,"P":1375709979,"D":{"f":221,"i":-2139},"lock":15,"sid":{"sat":33,"code":14}},{"L":{"f":207,"i":101481947},"flags":15,"cn0":201,"P":1260148804,"D":{"f":185,"i":823},"lock":15,"sid":{"sat":25,"code":20}},{"L":{"f":116,"i":90772820},"flags":15,"cn0":215,"P":1127168265,"D":{"f":169,"i":-1347},"lock":15,"sid":{"sat":24,"code":20}},{"L":{"f":228,"i":96079076},"flags":15,"cn0":194,"P":1193058931,"D":{"f":119,"i":798},"lock":15,"sid":{"sat":11,"code":20}}],"payload":"wG4vEAAAAAAyCEKtrQ1N7VUGCIMdBeqfDw8ZDEPhR0WPGzcHh0kGLrkPDwwMVolER/IUbAeXzf7huQ8PEwypnVRHocFtB1NJCdHBDw8WDPPgR0UKTZQFZ9sEbNIPDwwNxHsLQhL98Abu+vuGwg8PDA5VWBxLsOnkByEzBFa/Dw8ZDi6jHEcGUnkHihIEzrwPDwsO2jYvQ1ymDwdeI/mjyw8PGA4ThlVRYluMCAOZ8/efDw8fDhur/1FAPZ4IqaX33ZgPDyEORFgcS9t9DAbPNwO5yQ8PGRQJOS9DVBVpBXS9+qnXDw8YFHOiHEfkDLoF5B4Dd8IPDwsU","header":{"n_obs":66,"t":{"ns_residual":0,"wn":2098,"tow":271544000}},"crc":54459} +{"length":62,"preamble":85,"sender":22963,"msg_type":74,"obs":[{"L":{"f":114,"i":109890347},"flags":15,"cn0":175,"P":1364559488,"D":{"f":207,"i":-2433},"lock":15,"sid":{"sat":31,"code":20}},{"L":{"f":6,"i":89233104},"flags":15,"cn0":206,"P":1108048686,"D":{"f":186,"i":-790},"lock":15,"sid":{"sat":12,"code":20}},{"L":{"f":83,"i":110788352},"flags":15,"cn0":170,"P":1375709953,"D":{"f":124,"i":-1641},"lock":15,"sid":{"sat":33,"code":20}}],"payload":"wG4vEAAAAAAyCEOAhlVRK8uMBnJ/9s+vDw8fFC57C0LQllEFBur8us4PDwwUAav/UQB/mgZTl/l8qg8PIRQ=","header":{"n_obs":67,"t":{"ns_residual":0,"wn":2098,"tow":271544000}},"crc":28052} +{"length":9,"l2ca_bias":0,"preamble":85,"l2p_bias":0,"sender":22963,"msg_type":117,"payload":"/wAAAAAAAAAA","l1ca_bias":0,"mask":255,"crc":49809,"l1p_bias":0} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgjAbi8QAAAAAAE=","wn":2098,"tow":271544000,"crc":31709} +{"length":16,"flags":17,"ns":999999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EcBuLxDkBwMZAxkZ/smaOw==","day":25,"tow":271544000,"year":2020,"crc":13648,"minutes":25,"month":3,"seconds":25} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.83428068125403,"preamble":85,"sender":22963,"msg_type":522,"payload":"wG4vELJa0/1l6kJAyPAhIFaSXsCwqzFrk9UxwAECWwQPBg==","lat":37.83123753376039,"tow":271544000,"h_accuracy":513,"crc":64869,"lon":-122.28650668444163} +{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"wG4vEPz///8BAAAAFAAAAPEAywIPAg==","n":-4,"d":20,"tow":271544000,"h_accuracy":241,"crc":58285,"e":1} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"wG4vEJsAhwBMAEgAcgAG","tow":271544000,"crc":51357,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"wG4vEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271544000,"h_accuracy":0,"crc":33739,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"wG4vEP//","tow":271544000,"crc":2947} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":4,"flags":2147616000,"preamble":85,"sender":22963,"msg_type":65535,"payload":"AAUCgA==","crc":40942} +{"length":24,"z":3890655.0240602265,"preamble":85,"sender":22963,"msg_type":72,"payload":"UO0a3iqORMHK1UJhIkRQwc9nFIPvrk1B","crc":2168,"x":-2694229.735196747,"y":-4264073.519704292} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"bWFpbgAAAAAAAAAAAAAAAAAAAAAAAAx1AAA=","name":"main\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":47991,"stack_free":29964,"cpu":0} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"aWRsZQAAAAAAAAAAAAAAAAAAAABIAXwAAAA=","name":"idle\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":35155,"stack_free":124,"cpu":328} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"cnBtc2cAAAAAAAAAAAAAAAAAAAABAOQNAAA=","name":"rpmsg\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":18957,"stack_free":3556,"cpu":1} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"U0JQAAAAAAAAAAAAAAAAAAAAAAAAAPz/AAA=","name":"SBP\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":51784,"stack_free":65532,"cpu":0} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"TkFQAAAAAAAAAAAAAAAAAAAAAAAAAASAAAA=","name":"NAP\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":33651,"stack_free":32772,"cpu":0} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"bWFuYWdlIFBWAAAAAAAAAAAAAAAAACwEAAA=","name":"manage PV\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":61814,"stack_free":1068,"cpu":0} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"SU1VAAAAAAAAAAAAAAAAAAAAAAAAAPQHAAA=","name":"IMU\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":14252,"stack_free":2036,"cpu":0} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"SU1VIGF1eAAAAAAAAAAAAAAAAAAAAEwIAAA=","name":"IMU aux\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":18976,"stack_free":2124,"cpu":0} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"bmRiAAAAAAAAAAAAAAAAAAAAAAAAAFAMAAA=","name":"ndb\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":26120,"stack_free":3152,"cpu":0} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"TkFQIFRyYWNraW5nAAAAAAAAAAAoAdR3AAA=","name":"NAP Tracking\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":9794,"stack_free":30676,"cpu":296} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"ZGVjb2RlAAAAAAAAAAAAAAAAAAAJANQGAAA=","name":"decode\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":55602,"stack_free":1748,"cpu":9} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"bWFuYWdlIGFjcQAAAAAAAAAAAADJAKR3AAA=","name":"manage acq\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":7596,"stack_free":30628,"cpu":201} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"c3lzdGVtIG1vbml0b3IAAAAAAAAAACwGAAA=","name":"system monitor\u0000\u0000\u0000\u0000\u0000\u0000","crc":58531,"stack_free":1580,"cpu":0} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"V2F0Y2hkb2cAAAAAAAAAAAAAAAAAAOQDAAA=","name":"Watchdog\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":44438,"stack_free":996,"cpu":0} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"c3RhcmxpbmcAAAAAAAAAAAAAAACXAPz/AAA=","name":"starling\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":46399,"stack_free":65532,"cpu":151} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"bWVfY2FsY19wdnQAAAAAAAAAAAAJAIwjAAA=","name":"me_calc_pvt\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":57561,"stack_free":9100,"cpu":9} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"UFBTAAAAAAAAAAAAAAAAAAAAAAAAAEgHAAA=","name":"PPS\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000","crc":38576,"stack_free":1864,"cpu":0} +{"length":26,"preamble":85,"sender":22963,"msg_type":23,"payload":"c3BlY3RydW0gYW5hbHl6ZXIAAAAAANQPAAA=","name":"spectrum analyzer\u0000\u0000\u0000","crc":50933,"stack_free":4052,"cpu":0} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"Mggkby8QAAAAAAE=","wn":2098,"tow":271544100,"crc":59254} +{"length":16,"flags":17,"ns":99999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"ESRvLxDkBwMZAxka/uD1BQ==","day":25,"tow":271544100,"year":2020,"crc":3200,"minutes":25,"month":3,"seconds":26} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.825152849474104,"preamble":85,"sender":22963,"msg_type":522,"payload":"JG8vEAU+Ff5l6kJA7mYfIFaSXsBHsZY3PdMxwAECWwQPBg==","lat":37.83123756444187,"tow":271544100,"h_accuracy":513,"crc":22461,"lon":-122.28650668207749} +{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"JG8vEPr///8FAAAA+v////EAywIPAg==","n":-6,"d":-6,"tow":271544100,"h_accuracy":241,"crc":17133,"e":5} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"JG8vEJsAhwBMAEgAcgAG","tow":271544100,"crc":52033,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"JG8vEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271544100,"h_accuracy":0,"crc":62494,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"JG8vEP//","tow":271544100,"crc":11339} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"MgiIby8QAAAAAAE=","wn":2098,"tow":271544200,"crc":18984} +{"length":16,"flags":17,"ns":199999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EYhvLxDkBwMZAxka/sHrCw==","day":25,"tow":271544200,"year":2020,"crc":2357,"minutes":25,"month":3,"seconds":26} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.81769737800995,"preamble":85,"sender":22963,"msg_type":522,"payload":"iG8vENyteP5l6kJAm+EyIFaSXsDjk4idVNExwAECWwQPBg==","lat":37.831237610745774,"tow":271544200,"h_accuracy":513,"crc":5270,"lon":-122.28650670021891} +{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"iG8vEAQAAADy////7f////EAywIPAg==","n":4,"d":-19,"tow":271544200,"h_accuracy":241,"crc":64051,"e":-14} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"iG8vEJsAhwBMAEgAcgAG","tow":271544200,"crc":48816,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"iG8vEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271544200,"h_accuracy":0,"crc":56772,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"iG8vEP//","tow":271544200,"crc":50816} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":11,"flags":1,"preamble":85,"sender":22963,"ns_residual":0,"msg_type":258,"payload":"Mgjsby8QAAAAAAE=","wn":2098,"tow":271544300,"crc":12002} +{"length":16,"flags":17,"ns":299999998,"preamble":85,"sender":22963,"hours":3,"msg_type":259,"payload":"EexvLxDkBwMZAxka/qLhEQ==","day":25,"tow":271544300,"year":2020,"crc":47889,"minutes":25,"month":3,"seconds":26} +{"v_accuracy":1115,"length":34,"n_sats":15,"flags":6,"height":-17.812581352039217,"preamble":85,"sender":22963,"msg_type":522,"payload":"7G8vEJpq6P5l6kJA6PY2IFaSXsAQWdxUBdAxwAECWwQPBg==","lat":37.8312376627775,"tow":271544300,"h_accuracy":513,"crc":23694,"lon":-122.28650670402169} +{"v_accuracy":715,"length":22,"n_sats":15,"flags":2,"preamble":85,"sender":22963,"msg_type":526,"payload":"7G8vEA4AAAD6////BAAAAPEAywIPAg==","n":14,"d":4,"tow":271544300,"h_accuracy":241,"crc":16364,"e":-6} +{"length":15,"gdop":155,"flags":6,"tdop":76,"preamble":85,"sender":22963,"hdop":72,"msg_type":520,"payload":"7G8vEJsAhwBMAEgAcgAG","tow":271544300,"crc":37407,"vdop":114,"pdop":135} +{"v_accuracy":0,"length":22,"n_sats":0,"flags":0,"preamble":85,"sender":22963,"msg_type":524,"payload":"7G8vEAAAAAAAAAAAAAAAAAAAAAAAAA==","n":0,"d":0,"tow":271544300,"h_accuracy":0,"crc":50546,"e":0} +{"length":6,"preamble":85,"sender":22963,"age":65535,"msg_type":528,"payload":"7G8vEP//","tow":271544300,"crc":40761} +{"length":4,"num_signals":0,"flags":0,"latency":0,"preamble":85,"sender":22963,"msg_type":65282,"payload":"AAAAAA==","crc":51630,"source":""} +{"length":237,"states":[{"cn0":214,"mesid":{"sat":5,"code":0}},{"cn0":181,"mesid":{"sat":21,"code":0}},{"cn0":187,"mesid":{"sat":2,"code":0}},{"cn0":168,"mesid":{"sat":31,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":218,"mesid":{"sat":25,"code":0}},{"cn0":208,"mesid":{"sat":12,"code":0}},{"cn0":213,"mesid":{"sat":29,"code":0}},{"cn0":207,"mesid":{"sat":18,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":206,"mesid":{"sat":131,"code":2}},{"cn0":205,"mesid":{"sat":25,"code":1}},{"cn0":189,"mesid":{"sat":12,"code":1}},{"cn0":150,"mesid":{"sat":31,"code":1}},{"cn0":197,"mesid":{"sat":18,"code":1}},{"cn0":194,"mesid":{"sat":29,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":193,"mesid":{"sat":5,"code":1}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":213,"mesid":{"sat":100,"code":3}},{"cn0":175,"mesid":{"sat":98,"code":3}},{"cn0":174,"mesid":{"sat":102,"code":3}},{"cn0":208,"mesid":{"sat":101,"code":3}},{"cn0":207,"mesid":{"sat":93,"code":3}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":181,"mesid":{"sat":106,"code":3}},{"cn0":204,"mesid":{"sat":104,"code":3}},{"cn0":174,"mesid":{"sat":98,"code":4}},{"cn0":206,"mesid":{"sat":102,"code":4}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":199,"mesid":{"sat":100,"code":4}},{"cn0":195,"mesid":{"sat":101,"code":4}},{"cn0":187,"mesid":{"sat":104,"code":4}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":172,"mesid":{"sat":106,"code":4}},{"cn0":201,"mesid":{"sat":35,"code":12}},{"cn0":172,"mesid":{"sat":26,"code":12}},{"cn0":162,"mesid":{"sat":34,"code":12}},{"cn0":188,"mesid":{"sat":24,"code":12}},{"cn0":159,"mesid":{"sat":25,"code":12}},{"cn0":185,"mesid":{"sat":12,"code":12}},{"cn0":185,"mesid":{"sat":19,"code":12}},{"cn0":193,"mesid":{"sat":22,"code":12}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":210,"mesid":{"sat":12,"code":13}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":194,"mesid":{"sat":12,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":191,"mesid":{"sat":25,"code":14}},{"cn0":188,"mesid":{"sat":11,"code":14}},{"cn0":203,"mesid":{"sat":24,"code":14}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":159,"mesid":{"sat":31,"code":14}},{"cn0":152,"mesid":{"sat":33,"code":14}},{"cn0":201,"mesid":{"sat":25,"code":20}},{"cn0":215,"mesid":{"sat":24,"code":20}},{"cn0":194,"mesid":{"sat":11,"code":20}},{"cn0":175,"mesid":{"sat":31,"code":20}},{"cn0":206,"mesid":{"sat":12,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}},{"cn0":171,"mesid":{"sat":33,"code":20}},{"cn0":0,"mesid":{"sat":0,"code":0}}],"preamble":85,"sender":22963,"msg_type":97,"payload":"BQDWFQC1AgC7HwCoAAAAAAAAGQDaDADQHQDVEgDPAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwLOGQHNDAG9HwGWEgHFHQHCAAAABQHBAAAAAAAAAAAAAAAAZAPVYgOvZgOuZQPQXQPPAAAAagO1aAPMYgSuZgTOAAAAZATHZQTDaAS7AAAAagSsIwzJGgysIgyiGAy8GQyfDAy5Ewy5FgzBAAAADA3SAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADA7CAAAAGQ6/Cw68GA7LAAAAHw6fIQ6YGRTJGBTXCxTCHxSvDBTOAAAAIRSrAAAA","crc":54351}