From e1047da555ff96009dfe8763440f6c27c3757c29 Mon Sep 17 00:00:00 2001 From: net-tech Date: Tue, 17 Oct 2023 23:26:53 +0200 Subject: [PATCH 1/3] refactor: seperate into functions --- src/lib.rs | 125 ++++++++++++++++++++++++++++++++++++++++++++++++++++ src/main.rs | 117 +++++------------------------------------------- 2 files changed, 136 insertions(+), 106 deletions(-) create mode 100644 src/lib.rs diff --git a/src/lib.rs b/src/lib.rs new file mode 100644 index 0000000..dd44d91 --- /dev/null +++ b/src/lib.rs @@ -0,0 +1,125 @@ +use anyhow::anyhow; +use anyhow::{Context, Result}; +use chrono::{DateTime, Duration as ChronoDuration, Utc}; +use regex::Regex; +use std::env; + +pub fn parse_arguments() -> Result> { + let log_domains = ["logs.beemo.gg", "archive.ayu.dev"]; + + let args: Vec = env::args().collect(); + + if args.len() < 2 { + panic!("Please provide a Beemo log link directly when running the command.") + } + + let url = &args + .get(1) + .with_context(|| "Please provide a Beemo log link directly when running the command.")?; + + if !log_domains.iter().any(|&domain| url.contains(domain)) { + panic!("Invalid log URL. Beemo logs use the logs.beemo.gg or archive.ayu.dev domains.") + } + + Ok(args) +} + +pub fn fetch_log(url: &str) -> Result { + let text = reqwest::blocking::get(url) + .with_context(|| format!("Could not read text from URL `{}`", url))? + .text() + .with_context(|| format!("Could not read text from URL `{}`", url))?; + + Ok(text) +} + +pub fn parse_join_dates(text: &str) -> Result<(Vec, Vec, usize)> { + let log_date_re = + Regex::new(r"\d\d\d\d/\d\d/\d\d(?m)").with_context(|| "Error compiling regex")?; + let join_date_re = Regex::new(r"\d\d:\d\d:\d\d\.\d\d\d[+,-]\d\d\d\d(?mi)") + .with_context(|| "Error compiling regex")?; + + let log_date = log_date_re + .find(&text) + .map(|m| m.as_str()) + .ok_or_else(|| anyhow!("No log date found in the log."))?; + + let matches: Vec<&str> = join_date_re.find_iter(&text).map(|m| m.as_str()).collect(); + + if log_date.is_empty() || matches.is_empty() { + panic!("No join dates found in log."); + }; + + let mut parsed_join_dates: Vec> = vec![]; + let mut join_difference: Vec = vec![]; + let mut zero_difference_indexes: Vec = vec![]; + + for (idx, join_date) in matches.iter().enumerate() { + // Add the date to add a valid DateTime. + let mut date: DateTime = DateTime::parse_from_str( + &format!("{}T{}", log_date, join_date), + "%Y/%m/%dT%H:%M:%S%.3f%z", + ) + .with_context(|| format!("Could not parse date `{}T{}`", log_date, join_date))? + // Convert to UTC. + .try_into() + .with_context(|| format!("Could not parse date `{}T{}`", log_date, join_date))?; + + // We always want the time to be in UTC. Older Beemo logs had a timezone offset; https://stackoverflow.com/a/44710935/12586914. + if join_date.ends_with("-0700") { + date = date + ChronoDuration::hours(7); + } + + parsed_join_dates.push(date); + + if idx == 0 { + continue; + } + + let difference = ChronoDuration::milliseconds( + date.timestamp_millis() + - parsed_join_dates + .get(idx - 1) + .unwrap_or(&Utc::now()) + .timestamp_millis(), + ); + + if difference.num_milliseconds() < 0 { + continue; + } + + join_difference.push(difference); + + if difference.num_milliseconds() == 0 { + zero_difference_indexes.push( + idx.try_into() + .with_context(|| "Unable to convert index to usize")?, + ); + }; + } + + Ok((join_difference, zero_difference_indexes, matches.len())) +} + +#[cfg(test)] +mod tests { + use super::*; + + #[test] + fn test_parse_valid_join_dates() { + let text = "2022/01/01\n00:00:00.000+0000\n00:00:00.000+0000\n00:00:00.000+0000\n"; + let (join_difference, zero_difference_indexes, match_amount) = parse_join_dates(&text).unwrap(); + assert_eq!(join_difference.len(), 2); + assert_eq!(zero_difference_indexes.len(), 2); + assert_eq!(match_amount, 3); + } + + #[test] + #[should_panic(expected = "No join dates found in log.")] + fn test_parse_invalid_join_dates() { + let text = "2022/01/01\n"; + parse_join_dates(&text).unwrap(); + } +} + + diff --git a/src/main.rs b/src/main.rs index 082fc6d..31df864 100644 --- a/src/main.rs +++ b/src/main.rs @@ -1,103 +1,14 @@ -use std::env; -use std::time::Instant; - -use anyhow::{Context, Result}; -use chrono::{DateTime, Duration as ChronoDuration, Utc}; +use anyhow::Context; use humantime::format_duration; -use regex::Regex; - -fn main() -> Result<()> { - let log_domains = ["logs.beemo.gg", "archive.ayu.dev"]; - let log_date_re = - Regex::new(r"\d\d\d\d/\d\d/\d\d(?m)").with_context(|| "Error compiling regex")?; - let join_date_re = Regex::new(r"\d\d:\d\d:\d\d\.\d\d\d[+,-]\d\d\d\d(?mi)") - .with_context(|| "Error compiling regex")?; - - let args: Vec = env::args().collect(); - - if args.len() < 2 { - eprintln!("Please provide a Beemo log link directly when running the command."); - std::process::exit(1); - } - - let url = &args - .get(1) - .with_context(|| "Please provide a Beemo log link directly when running the command.")?; - - if !log_domains.iter().any(|&domain| url.contains(domain)) { - eprintln!("Invalid log URL. Beemo logs use the logs.beemo.gg or archive.ayu.dev domains."); - std::process::exit(1); - } - - let mut parsed_join_dates: Vec> = vec![]; - let mut join_difference: Vec = vec![]; - let mut zero_difference_indexes: Vec = vec![]; - - println!("Fetching log..."); - - let text = reqwest::blocking::get(*url) - .with_context(|| format!("Could not read text from URL `{}`", url))? - .text() - .with_context(|| format!("Could not read text from URL `{}`", url))?; - - println!("Analysis in progress..."); - - let start_time = Instant::now(); +use beemo_join_time_diff::*; +use chrono::Duration as ChronoDuration; - let log_date = log_date_re - .find(&text) - .map(|m| m.as_str()) - .unwrap_or("1970/01/01"); - - let matches: Vec<&str> = join_date_re.find_iter(&text).map(|m| m.as_str()).collect(); - - if log_date.is_empty() || matches.is_empty() { - eprintln!("No join dates found in log."); - std::process::exit(1); - }; - - for (idx, join_date) in matches.iter().enumerate() { - // Add the date to add a valid DateTime. - let mut date: DateTime = DateTime::parse_from_str( - &format!("{}T{}", log_date, join_date), - "%Y/%m/%dT%H:%M:%S%.3f%z", - ) - .with_context(|| format!("Could not parse date `{}T{}`", log_date, join_date))? - // Convert to UTC. - .try_into() - .with_context(|| format!("Could not parse date `{}T{}`", log_date, join_date))?; - - // We always want the time to be in UTC. Older Beemo logs had a timezone offset; https://stackoverflow.com/a/44710935/12586914. - if join_date.ends_with("-0700") { - date = date + ChronoDuration::hours(7); - } - - parsed_join_dates.push(date); - - if idx == 0 { - continue; - } - let difference = ChronoDuration::milliseconds( - date.timestamp_millis() - - parsed_join_dates - .get(idx - 1) - .unwrap_or(&Utc::now()) - .timestamp_millis(), - ); - - if difference.num_milliseconds() < 0 { - continue; - } - - join_difference.push(difference); - - if difference.num_milliseconds() == 0 { - zero_difference_indexes.push( - idx.try_into() - .with_context(|| "Unable to convert index to usize")?, - ); - }; - } +fn main() -> Result<(), anyhow::Error> { + let text = + fetch_log(&parse_arguments()?.get(1).with_context(|| { + "Please provide a Beemo log link directly when running the command." + })?)?; + let (join_difference, zero_difference_indexes, match_amount) = parse_join_dates(&text)?; let average_join_difference = join_difference.iter().sum::() / join_difference @@ -110,14 +21,8 @@ fn main() -> Result<()> { .with_context(|| "Error converting ChronoDuration to Std Duration")?, ); - let zero_diff_occurrence = zero_difference_indexes.len() as f64 / matches.len() as f64 * 100.0; - - let end_time = Instant::now(); - println!( - "Analysis completed in {} milliseconds.", - end_time.duration_since(start_time).as_millis() - ); + let zero_diff_occurrence = zero_difference_indexes.len() as f64 / match_amount as f64 * 100.0; - println!("Analyzed {} joins. Average time between each join is {}. There were {} occurrences of two joins happening at the same time (0 ms apart). This accounts for {:.2}% of all joins.", matches.len(), human_average_join_difference, zero_difference_indexes.len(), zero_diff_occurrence); + println!("Analyzed {} joins. Average time between each join is {}. There were {} occurrences of two joins happening at the same time (0 ms apart). This accounts for {:.2}% of all joins.", match_amount, human_average_join_difference, zero_difference_indexes.len(), zero_diff_occurrence); Ok(()) } From 25376b4ed68ab2984d9a7e573a21fb52a386a667 Mon Sep 17 00:00:00 2001 From: net-tech Date: Tue, 17 Oct 2023 23:27:32 +0200 Subject: [PATCH 2/3] deps: add criterion and codspeed; use proper name style --- Cargo.lock | 446 +++++++++++++++++++++++++++++++++++++---------------- Cargo.toml | 15 +- 2 files changed, 329 insertions(+), 132 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index bba54b9..1ea7d42 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -41,6 +41,18 @@ dependencies = [ "libc", ] +[[package]] +name = "anes" +version = "0.1.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4b46cbb362ab8752921c97e041f5e366ee6297bd428a31275b9fcf1e380f7299" + +[[package]] +name = "anstyle" +version = "1.0.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7079075b41f533b8c61d2a4d073c4676e1f8b249ff94a393b0595db304e0dd87" + [[package]] name = "anyhow" version = "1.0.75" @@ -75,13 +87,15 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "9ba43ea6f343b788c8764558649e08df62f86c6ef251fdaeb1ffd010a9ae50a2" [[package]] -name = "beemo-join-time-diff" -version = "4.0.0" +name = "beemo_join_time_diff" +version = "4.1.0" dependencies = [ "anyhow", + "beemo_join_time_diff", "chrono", + "codspeed-criterion-compat", + "criterion", "humantime", - "indicatif", "regex", "reqwest", ] @@ -110,6 +124,12 @@ version = "1.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a2bd12c1caf447e69cd4528f47f94d203fd2582878ecb9e9465484c4148a8223" +[[package]] +name = "cast" +version = "0.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "37b2a672a2cb129a2e41c10b1224bb368f9f37a2b16b612598138befd7b37eb5" + [[package]] name = "cc" version = "1.0.83" @@ -136,20 +156,92 @@ dependencies = [ "js-sys", "num-traits", "wasm-bindgen", - "windows-targets 0.48.5", + "windows-targets", ] [[package]] -name = "console" -version = "0.15.7" +name = "ciborium" +version = "0.2.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c926e00cc70edefdc64d3a5ff31cc65bb97a3460097762bd23afb4d8145fccf8" +checksum = "effd91f6c78e5a4ace8a5d3c0b6bfaec9e2baaef55f3efc00e45fb2e477ee926" dependencies = [ - "encode_unicode", - "lazy_static", + "ciborium-io", + "ciborium-ll", + "serde", +] + +[[package]] +name = "ciborium-io" +version = "0.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cdf919175532b369853f5d5e20b26b43112613fd6fe7aee757e35f7a44642656" + +[[package]] +name = "ciborium-ll" +version = "0.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "defaa24ecc093c77630e6c15e17c51f5e187bf35ee514f4e2d67baaa96dae22b" +dependencies = [ + "ciborium-io", + "half", +] + +[[package]] +name = "clap" +version = "4.4.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d04704f56c2cde07f43e8e2c154b43f216dc5c92fc98ada720177362f953b956" +dependencies = [ + "clap_builder", +] + +[[package]] +name = "clap_builder" +version = "4.4.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0e231faeaca65ebd1ea3c737966bf858971cd38c3849107aa3ea7de90a804e45" +dependencies = [ + "anstyle", + "clap_lex", +] + +[[package]] +name = "clap_lex" +version = "0.5.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cd7cc57abe963c6d3b9d8be5b06ba7c8957a930305ca90304f24ef040aa6f961" + +[[package]] +name = "codspeed" +version = "2.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9b3238416c10f19985b52a937c5b3efc3ed7efe8f7ae263d2aab29a09bca9f57" +dependencies = [ + "colored", "libc", - "unicode-width", - "windows-sys 0.45.0", + "serde_json", +] + +[[package]] +name = "codspeed-criterion-compat" +version = "2.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "fecc18f65b942d2b033545bb3bd8430a23eecbbe53fad3b1342fb0e5514bca7b" +dependencies = [ + "codspeed", + "colored", + "criterion", +] + +[[package]] +name = "colored" +version = "2.0.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2674ec482fbc38012cf31e6c42ba0177b431a0cb6f15fe40efa5aab1bda516f6" +dependencies = [ + "is-terminal", + "lazy_static", + "windows-sys", ] [[package]] @@ -169,10 +261,79 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e496a50fda8aacccc86d7529e2c1e0892dbd0f898a6b5645b5561b89c3210efa" [[package]] -name = "encode_unicode" -version = "0.3.6" +name = "criterion" +version = "0.5.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f2b12d017a929603d80db1831cd3a24082f8137ce19c69e6447f54f5fc8d692f" +dependencies = [ + "anes", + "cast", + "ciborium", + "clap", + "criterion-plot", + "is-terminal", + "itertools", + "num-traits", + "once_cell", + "oorandom", + "plotters", + "rayon", + "regex", + "serde", + "serde_derive", + "serde_json", + "tinytemplate", + "walkdir", +] + +[[package]] +name = "criterion-plot" +version = "0.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6b50826342786a51a89e2da3a28f1c32b06e387201bc2d19791f622c673706b1" +dependencies = [ + "cast", + "itertools", +] + +[[package]] +name = "crossbeam-deque" +version = "0.8.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ce6fd6f855243022dcecf8702fef0c297d4338e226845fe067f6341ad9fa0cef" +dependencies = [ + "cfg-if", + "crossbeam-epoch", + "crossbeam-utils", +] + +[[package]] +name = "crossbeam-epoch" +version = "0.9.15" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ae211234986c545741a7dc064309f67ee1e5ad243d0e48335adc0484d960bcc7" +dependencies = [ + "autocfg", + "cfg-if", + "crossbeam-utils", + "memoffset", + "scopeguard", +] + +[[package]] +name = "crossbeam-utils" +version = "0.8.16" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a357d28ed41a50f9c765dbfe56cbc04a64e53e5fc58ba79fbc34c10ef3df831f" +checksum = "5a22b2d63d4d1dc0b7f1b6b2747dd0088008a9be28b6ddf0b1e7d335e3037294" +dependencies = [ + "cfg-if", +] + +[[package]] +name = "either" +version = "1.9.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a26ae43d7bcc3b814de94796a5e736d4029efb0ee900c12e2d54c993ad1a1e07" [[package]] name = "encoding_rs" @@ -191,7 +352,7 @@ checksum = "136526188508e25c6fef639d7927dfb3e0e3084488bf202267829cf7fc23dbdd" dependencies = [ "errno-dragonfly", "libc", - "windows-sys 0.48.0", + "windows-sys", ] [[package]] @@ -313,6 +474,12 @@ dependencies = [ "tracing", ] +[[package]] +name = "half" +version = "1.8.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "eabb4a44450da02c90444cf74558da904edde8fb4e9035a9a6a4e15445af0bd7" + [[package]] name = "hashbrown" version = "0.12.3" @@ -446,32 +613,30 @@ dependencies = [ ] [[package]] -name = "indicatif" -version = "0.17.7" +name = "ipnet" +version = "2.8.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fb28741c9db9a713d93deb3bb9515c20788cef5815265bee4980e87bde7e0f25" -dependencies = [ - "console", - "instant", - "number_prefix", - "portable-atomic", - "unicode-width", -] +checksum = "28b29a3cd74f0f4598934efe3aeba42bae0eb4680554128851ebbecb02af14e6" [[package]] -name = "instant" -version = "0.1.12" +name = "is-terminal" +version = "0.4.9" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7a5bbe824c507c5da5956355e86a746d82e0e1464f65d862cc5e71da70e94b2c" +checksum = "cb0889898416213fab133e1d33a0e5858a48177452750691bde3666d0fdbaf8b" dependencies = [ - "cfg-if", + "hermit-abi", + "rustix", + "windows-sys", ] [[package]] -name = "ipnet" -version = "2.8.0" +name = "itertools" +version = "0.10.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "28b29a3cd74f0f4598934efe3aeba42bae0eb4680554128851ebbecb02af14e6" +checksum = "b0fd2260e829bddf4cb6ea802289de2f86d6a7a690192fbe91b3f46e0f2c8473" +dependencies = [ + "either", +] [[package]] name = "itoa" @@ -518,6 +683,15 @@ version = "2.6.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "8f232d6ef707e1956a43342693d2a31e72989554d58299d7a88738cc95b0d35c" +[[package]] +name = "memoffset" +version = "0.9.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5a634b1c61a95585bd15607c6ab0c4e5b226e695ff2800ba0cdccddf208c406c" +dependencies = [ + "autocfg", +] + [[package]] name = "mime" version = "0.3.17" @@ -541,7 +715,7 @@ checksum = "927a765cd3fc26206e66b296465fa9d3e5ab003e651c1b3c060e7956d96b19d2" dependencies = [ "libc", "wasi", - "windows-sys 0.48.0", + "windows-sys", ] [[package]] @@ -581,12 +755,6 @@ dependencies = [ "libc", ] -[[package]] -name = "number_prefix" -version = "0.4.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "830b246a0e5f20af87141b25c173cd1b609bd7779a4617d6ec582abaf90870f3" - [[package]] name = "object" version = "0.32.1" @@ -602,6 +770,12 @@ version = "1.18.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "dd8b5dd2ae5ed71462c540258bedcb51965123ad7e7ccf4b9a8cafaa4a63576d" +[[package]] +name = "oorandom" +version = "11.1.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0ab1bc2a289d34bd04a330323ac98a1b4bc82c9d9fcb1e66b63caa84da26b575" + [[package]] name = "openssl" version = "0.10.57" @@ -671,10 +845,32 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "26072860ba924cbfa98ea39c8c19b4dd6a4a25423dbdf219c1eca91aa0cf6964" [[package]] -name = "portable-atomic" -version = "1.4.3" +name = "plotters" +version = "0.3.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "31114a898e107c51bb1609ffaf55a0e011cf6a4d7f1170d0015a165082c0338b" +checksum = "d2c224ba00d7cadd4d5c660deaf2098e5e80e07846537c51f9cfa4be50c1fd45" +dependencies = [ + "num-traits", + "plotters-backend", + "plotters-svg", + "wasm-bindgen", + "web-sys", +] + +[[package]] +name = "plotters-backend" +version = "0.3.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9e76628b4d3a7581389a35d5b6e2139607ad7c75b17aed325f210aa91f4a9609" + +[[package]] +name = "plotters-svg" +version = "0.3.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "38f6d39893cca0701371e3c27294f09797214b86f1fb951b89ade8ec04e2abab" +dependencies = [ + "plotters-backend", +] [[package]] name = "proc-macro2" @@ -694,6 +890,26 @@ dependencies = [ "proc-macro2", ] +[[package]] +name = "rayon" +version = "1.8.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9c27db03db7734835b3f53954b534c91069375ce6ccaa2e065441e07d9b6cdb1" +dependencies = [ + "either", + "rayon-core", +] + +[[package]] +name = "rayon-core" +version = "1.12.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5ce3fb6ad83f861aac485e76e1985cd109d9a3713802152be56c3b1f0e0658ed" +dependencies = [ + "crossbeam-deque", + "crossbeam-utils", +] + [[package]] name = "redox_syscall" version = "0.3.5" @@ -786,7 +1002,7 @@ dependencies = [ "errno", "libc", "linux-raw-sys", - "windows-sys 0.48.0", + "windows-sys", ] [[package]] @@ -795,15 +1011,30 @@ version = "1.0.15" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "1ad4cc8da4ef723ed60bced201181d83791ad433213d8c24efffda1eec85d741" +[[package]] +name = "same-file" +version = "1.0.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502" +dependencies = [ + "winapi-util", +] + [[package]] name = "schannel" version = "0.1.22" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "0c3733bf4cf7ea0880754e19cb5a462007c4a8c1914bff372ccc95b464f1df88" dependencies = [ - "windows-sys 0.48.0", + "windows-sys", ] +[[package]] +name = "scopeguard" +version = "1.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49" + [[package]] name = "security-framework" version = "2.9.2" @@ -896,7 +1127,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "4031e820eb552adee9295814c0ced9e5cf38ddf1e8b7d566d6de8e2538ea989e" dependencies = [ "libc", - "windows-sys 0.48.0", + "windows-sys", ] [[package]] @@ -941,7 +1172,17 @@ dependencies = [ "fastrand", "redox_syscall", "rustix", - "windows-sys 0.48.0", + "windows-sys", +] + +[[package]] +name = "tinytemplate" +version = "1.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "be4d6b5f19ff7664e8c98d03e2139cb510db9b0a60b55f8e8709b689d939b6bc" +dependencies = [ + "serde", + "serde_json", ] [[package]] @@ -972,7 +1213,7 @@ dependencies = [ "num_cpus", "pin-project-lite", "socket2 0.5.4", - "windows-sys 0.48.0", + "windows-sys", ] [[package]] @@ -1052,12 +1293,6 @@ dependencies = [ "tinyvec", ] -[[package]] -name = "unicode-width" -version = "0.1.11" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e51733f11c9c4f72aa0c160008246859e340b00807569a0da0e7a1079b27ba85" - [[package]] name = "url" version = "2.4.1" @@ -1075,6 +1310,16 @@ version = "0.2.15" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426" +[[package]] +name = "walkdir" +version = "2.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d71d857dc86794ca4c280d616f7da00d2dbfd8cd788846559a6813e6aa4b54ee" +dependencies = [ + "same-file", + "winapi-util", +] + [[package]] name = "want" version = "0.3.1" @@ -1182,6 +1427,15 @@ version = "0.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6" +[[package]] +name = "winapi-util" +version = "0.1.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f29e6f9198ba0d26b4c9f07dbe6f9ed633e1f3d5b8b414090084349e46a52596" +dependencies = [ + "winapi", +] + [[package]] name = "winapi-x86_64-pc-windows-gnu" version = "0.4.0" @@ -1194,16 +1448,7 @@ version = "0.48.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e686886bc078bc1b0b600cac0147aadb815089b6e4da64016cbd754b6342700f" dependencies = [ - "windows-targets 0.48.5", -] - -[[package]] -name = "windows-sys" -version = "0.45.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "75283be5efb2831d37ea142365f009c02ec203cd29a3ebecbc093d52315b66d0" -dependencies = [ - "windows-targets 0.42.2", + "windows-targets", ] [[package]] @@ -1212,22 +1457,7 @@ version = "0.48.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9" dependencies = [ - "windows-targets 0.48.5", -] - -[[package]] -name = "windows-targets" -version = "0.42.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8e5180c00cd44c9b1c88adb3693291f1cd93605ded80c250a75d472756b4d071" -dependencies = [ - "windows_aarch64_gnullvm 0.42.2", - "windows_aarch64_msvc 0.42.2", - "windows_i686_gnu 0.42.2", - "windows_i686_msvc 0.42.2", - "windows_x86_64_gnu 0.42.2", - "windows_x86_64_gnullvm 0.42.2", - "windows_x86_64_msvc 0.42.2", + "windows-targets", ] [[package]] @@ -1236,93 +1466,51 @@ version = "0.48.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c" dependencies = [ - "windows_aarch64_gnullvm 0.48.5", - "windows_aarch64_msvc 0.48.5", - "windows_i686_gnu 0.48.5", - "windows_i686_msvc 0.48.5", - "windows_x86_64_gnu 0.48.5", - "windows_x86_64_gnullvm 0.48.5", - "windows_x86_64_msvc 0.48.5", + "windows_aarch64_gnullvm", + "windows_aarch64_msvc", + "windows_i686_gnu", + "windows_i686_msvc", + "windows_x86_64_gnu", + "windows_x86_64_gnullvm", + "windows_x86_64_msvc", ] -[[package]] -name = "windows_aarch64_gnullvm" -version = "0.42.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "597a5118570b68bc08d8d59125332c54f1ba9d9adeedeef5b99b02ba2b0698f8" - [[package]] name = "windows_aarch64_gnullvm" version = "0.48.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8" -[[package]] -name = "windows_aarch64_msvc" -version = "0.42.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e08e8864a60f06ef0d0ff4ba04124db8b0fb3be5776a5cd47641e942e58c4d43" - [[package]] name = "windows_aarch64_msvc" version = "0.48.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc" -[[package]] -name = "windows_i686_gnu" -version = "0.42.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c61d927d8da41da96a81f029489353e68739737d3beca43145c8afec9a31a84f" - [[package]] name = "windows_i686_gnu" version = "0.48.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e" -[[package]] -name = "windows_i686_msvc" -version = "0.42.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "44d840b6ec649f480a41c8d80f9c65108b92d89345dd94027bfe06ac444d1060" - [[package]] name = "windows_i686_msvc" version = "0.48.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406" -[[package]] -name = "windows_x86_64_gnu" -version = "0.42.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8de912b8b8feb55c064867cf047dda097f92d51efad5b491dfb98f6bbb70cb36" - [[package]] name = "windows_x86_64_gnu" version = "0.48.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e" -[[package]] -name = "windows_x86_64_gnullvm" -version = "0.42.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "26d41b46a36d453748aedef1486d5c7a85db22e56aff34643984ea85514e94a3" - [[package]] name = "windows_x86_64_gnullvm" version = "0.48.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc" -[[package]] -name = "windows_x86_64_msvc" -version = "0.42.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9aec5da331524158c6d1a4ac0ab1541149c0b9505fde06423b02f5ef0106b9f0" - [[package]] name = "windows_x86_64_msvc" version = "0.48.5" @@ -1336,5 +1524,5 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "524e57b2c537c0f9b1e69f1965311ec12182b4122e45035b1508cd24d2adadb1" dependencies = [ "cfg-if", - "windows-sys 0.48.0", + "windows-sys", ] diff --git a/Cargo.toml b/Cargo.toml index 1288313..cbd2909 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] -name = "beemo-join-time-diff" -version = "4.0.0" +name = "beemo_join_time_diff" +version = "4.1.0" edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html @@ -8,7 +8,16 @@ edition = "2021" [dependencies] anyhow = "1.0.75" chrono = "0.4.31" +criterion = "0.5.1" humantime = "2.1.0" -indicatif = "0.17.6" regex = "1.9.6" reqwest = { version = "0.11.22", features = ["blocking"] } + +[dev-dependencies] +criterion = "0.5.1" +beemo_join_time_diff = { path = "." } +codspeed-criterion-compat = "2.2.0" + +[[bench]] +name = "parsing" +harness = false From cc33ede2c8ce861f0ca75fb3ad7c1f2b838282d8 Mon Sep 17 00:00:00 2001 From: net-tech Date: Tue, 17 Oct 2023 23:27:53 +0200 Subject: [PATCH 3/3] feat: add benchmarks --- .github/workflows/codspeed.yml | 30 + benches/log_data.txt | 27044 +++++++++++++++++++++++++++++++ benches/parsing.rs | 14 + 3 files changed, 27088 insertions(+) create mode 100644 .github/workflows/codspeed.yml create mode 100644 benches/log_data.txt create mode 100644 benches/parsing.rs diff --git a/.github/workflows/codspeed.yml b/.github/workflows/codspeed.yml new file mode 100644 index 0000000..aacf4c0 --- /dev/null +++ b/.github/workflows/codspeed.yml @@ -0,0 +1,30 @@ +name: codspeed-benchmarks + +on: + push: + branches: + - "master" + pull_request: + workflow_dispatch: + +jobs: + benchmarks: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + + - name: Setup rust toolchain, cache and cargo-codspeed binary + uses: moonrepo/setup-rust@v0 + with: + channel: stable + cache-target: release + bins: cargo-codspeed + + - name: Build the benchmark target(s) + run: cargo codspeed build + + - name: Run the benchmarks + uses: CodSpeedHQ/action@v1 + with: + run: cargo codspeed run + token: ${{ secrets.CODSPEED_TOKEN }} \ No newline at end of file diff --git a/benches/log_data.txt b/benches/log_data.txt new file mode 100644 index 0000000..86b28d2 --- /dev/null +++ b/benches/log_data.txt @@ -0,0 +1,27044 @@ +Userbot raid detected against server 697474023914733575 on 2021/07/31 +Raid size: 13,518 accounts + + Joined at: ID: Username: + +09:46:56.506-0700 871071437736267808 XMS-OrQ | motion#0333 +09:46:56.543-0700 871071437690142733 PRJJilI | motion#6444 +09:46:57.065-0700 871071438516416544 XvscaMA | motion#9222 +09:46:57.657-0700 871071441544704010 Rk6VkWc | motion#5667 +09:46:57.690-0700 871071439883743294 qZAl04c | motion#3623 +09:46:57.781-0700 871071441246900314 Jf7SRps | motion#8699 +09:46:57.834-0700 871071441938939924 dTY9Rr8 | motion#0770 +09:46:57.877-0700 871071441829912606 NyUKAGM | motion#8106 +09:46:57.888-0700 871071440680677456 UpQvFoU | motion#8612 +09:46:57.957-0700 871071443235004468 w7u3Xws | motion#9503 +09:46:58.067-0700 871071443029467206 dghfc2I | motion#0963 +09:46:58.081-0700 871071441523732480 Yz6gZfo | motion#4284 +09:46:58.104-0700 871071440164757536 s4hnctg | motion#7756 +09:46:58.347-0700 871071440802312222 G5VQzic | motion#8268 +09:46:58.434-0700 871071444044488818 STTllCc | motion#1339 +09:46:58.475-0700 871071439334305793 JQQYRIQ | motion#9832 +09:46:58.489-0700 871071442232569877 MddYMaE | motion#5993 +09:46:58.592-0700 871071442521960460 OBW2q_0 | motion#2216 +09:46:58.776-0700 871071441796341790 _fa8D_k | motion#7656 +09:46:58.854-0700 871071442442289274 d_x9KmA | motion#1434 +09:46:58.865-0700 871071443377614849 IcrUkyI | motion#0037 +09:46:58.876-0700 871071443042041886 9YvDsSk | motion#5008 +09:46:58.939-0700 871071443293716500 Latj6hE | motion#0566 +09:46:58.940-0700 871071442861703269 AGvURDA | motion#0896 +09:46:59.111-0700 871071440743575583 hcpKMmg | motion#7357 +09:46:59.144-0700 871071442836533340 aWas9cM | motion#9222 +09:46:59.233-0700 871071443587317810 rEXz4gI | motion#1901 +09:46:59.489-0700 871071446481379378 Ay_qg04 | motion#7165 +09:46:59.544-0700 871071443406950460 BkqdQBU | motion#3302 +09:46:59.617-0700 871071437820133446 8mV220Y | motion#1930 +09:46:59.644-0700 871071444736544838 O1fE9pw | motion#1563 +09:46:59.646-0700 871071445642518589 lPhnnNk | motion#2798 +09:46:59.682-0700 871071446674317312 NSV8ZVI | motion#7022 +09:46:59.698-0700 871071451267076107 pgTqTC0 | motion#3674 +09:46:59.710-0700 871071449262202921 rGfharA | motion#1131 +09:46:59.747-0700 871071447789998112 yoenM00 | motion#7672 +09:46:59.750-0700 871071446288453632 5k_PaHc | motion#6912 +09:46:59.912-0700 871071450172391445 r5Ix2UA | motion#8523 +09:46:59.923-0700 871071446867263508 -XzW7-0 | motion#2819 +09:47:00.023-0700 871071446808555550 GGoOeEE | motion#4637 +09:47:00.097-0700 871071451904610354 j3MMnmg | motion#7442 +09:47:00.188-0700 871071448956022824 AgjUgV0 | motion#7541 +09:47:00.270-0700 871071451992719471 dtdFFec | motion#5837 +09:47:00.308-0700 871071445411827774 KqzdaX0 | motion#1014 +09:47:00.345-0700 871071440101863474 08rCYg0 | motion#8775 +09:47:00.361-0700 871071449241251870 UfF8rAM | motion#4873 +09:47:00.377-0700 871071447995531324 QNtf3tw | motion#7473 +09:47:00.546-0700 871071450541461595 5npRaNY | motion#3416 +09:47:00.711-0700 871071449929113681 SjeLgOY | motion#1141 +09:47:00.748-0700 871071441259479130 zoXYquI | motion#7163 +09:47:00.760-0700 871071453007728681 uOsVfNY | motion#5413 +09:47:00.799-0700 871071452135325756 i1tQncs | motion#7750 +09:47:00.835-0700 871071440873611374 IvgJRtQ | motion#3841 +09:47:01.007-0700 871071450608582687 X7ZhCnA | motion#4955 +09:47:01.110-0700 871071449832624168 l-VSt2Q | motion#6309 +09:47:01.166-0700 871071442178027641 kWyEM5A | motion#4205 +09:47:01.228-0700 871071452844150846 lXonRzQ | motion#8607 +09:47:01.261-0700 871071456711311381 sIYZtQs | motion#9977 +09:47:01.273-0700 871071441301438524 iES9nHI | motion#0185 +09:47:01.306-0700 871071453544607746 JL2SEyY | motion#7215 +09:47:01.383-0700 871071452961595442 TKPI8WA | motion#6927 +09:47:01.384-0700 871071452823158825 OV_9Pzg | motion#7897 +09:47:01.553-0700 871071455515906128 x7lVjrg | motion#1221 +09:47:01.562-0700 871071455977279488 tD7MZQw | motion#6804 +09:47:01.591-0700 871071452525379584 TwxpH7w | motion#7600 +09:47:01.619-0700 871071453859180637 g5BUqVY | motion#6033 +09:47:01.652-0700 871071456107311184 M3zSZ1o | motion#6891 +09:47:01.761-0700 871071456971345960 WeWwTpk | motion#1121 +09:47:01.790-0700 871071455536898118 V348DTc | motion#0781 +09:47:01.828-0700 871071459517267968 z8xqSXU | motion#1878 +09:47:01.906-0700 871071458233839687 DTYNHo4 | motion#1089 +09:47:01.938-0700 871071453905293322 fgGL_2c | motion#4834 +09:47:02.041-0700 871071453892735068 ULiSut8 | motion#8189 +09:47:02.044-0700 871071456778387476 pM4473g | motion#4024 +09:47:02.049-0700 871071456187011165 n46BpFY | motion#4535 +09:47:02.081-0700 871071456237355008 -C9MCc4 | motion#9033 +09:47:02.084-0700 871071457638252604 6el-iq0 | motion#3797 +09:47:02.091-0700 871071456820334602 UoyqB4M | motion#4909 +09:47:02.104-0700 871071456379940894 1NGbDxc | motion#7124 +09:47:02.127-0700 871071452814798880 GyDbs_E | motion#6123 +09:47:02.193-0700 871071456379940904 jvY4z64 | motion#0126 +09:47:02.224-0700 871071456019226704 a77UoKI | motion#8156 +09:47:02.231-0700 871071455637557328 lTZ6BtM | motion#8196 +09:47:02.404-0700 871071444631711794 adFqzK0 | motion#7968 +09:47:02.406-0700 871071458221252608 MuBwtZk | motion#0628 +09:47:02.472-0700 871071455553662997 6QqbbjM | motion#3471 +09:47:02.477-0700 871071457977974836 iKSNXhE | motion#6150 +09:47:02.527-0700 871071444304543745 qI1IoDQ | motion#0394 +09:47:02.634-0700 871071458133151774 RZXrfOI | motion#9598 +09:47:02.640-0700 871071460016390164 uJgLvW0 | motion#8656 +09:47:02.663-0700 871071459320156250 2JdC3mc | motion#2180 +09:47:02.981-0700 871071459987042354 xdNPHM4 | motion#4690 +09:47:03.070-0700 871071462432313344 Q9UYpSo | motion#2817 +09:47:03.101-0700 871071465569669150 wL8iHio | motion#6231 +09:47:03.138-0700 871071463292162128 CC9K6AI | motion#8182 +09:47:03.186-0700 871071465653534841 eyAXUlI | motion#9672 +09:47:03.210-0700 871071460121260091 EFpau6Q | motion#6508 +09:47:03.235-0700 871071462939832383 4LDFDxs | motion#7268 +09:47:03.236-0700 871071457483046953 CMnlEn4 | motion#1197 +09:47:03.259-0700 871071459206897766 CwxoURg | motion#6336 +09:47:03.402-0700 871071451036409887 aUecoAs | motion#2223 +09:47:03.506-0700 871071452147896321 Zzg3QTc | motion#1003 +09:47:03.536-0700 871071448838582272 YPr7CtY | motion#7996 +09:47:03.555-0700 871071462847553576 iSESPUc | motion#2038 +09:47:03.716-0700 871071459202711622 i9K3BV0 | motion#6433 +09:47:03.805-0700 871071461408899113 jWiNFYo | motion#1270 +09:47:03.824-0700 871071459601182830 WeuyVBA | motion#4076 +09:47:03.879-0700 871071457822769262 3dbWoxg | motion#9554 +09:47:03.971-0700 871071464265228298 xK6fboY | motion#0754 +09:47:04.142-0700 871071459676663828 Bimwy4M | motion#2670 +09:47:04.217-0700 871071455478169621 R292ovo | motion#0052 +09:47:04.250-0700 871071455318769724 4tduHUc | motion#1036 +09:47:04.362-0700 871071468535046176 OeM4glc | motion#4039 +09:47:04.369-0700 871071453980790815 h5-L-P0 | motion#9636 +09:47:04.475-0700 871071470703501382 ZTLCpp4 | motion#9013 +09:47:04.493-0700 871071469701038122 gPMevFc | motion#8887 +09:47:04.495-0700 871071463417987102 81eWcrQ | motion#3485 +09:47:04.651-0700 871071454932926504 gzI29bQ | motion#9696 +09:47:04.788-0700 871071472477696002 0MOCh98 | motion#6585 +09:47:04.840-0700 871071456027619338 OMcWmgI | motion#2095 +09:47:04.840-0700 871071455440437269 Q9o10KA | motion#4939 +09:47:04.848-0700 871071468161740870 zSdPtso | motion#8304 +09:47:04.853-0700 871071462767857764 ILgFpJg | motion#8376 +09:47:04.855-0700 871071468669239316 bgLLwks | motion#4486 +09:47:04.914-0700 871071471064191026 zEmFfjI | motion#6301 +09:47:04.965-0700 871071467377393666 aadKqE0 | motion#7276 +09:47:05.030-0700 871071469063536651 iNiIRdA | motion#9312 +09:47:05.050-0700 871071468866400377 s47eODU | motion#8511 +09:47:05.083-0700 871071455885004840 PLdUWbM | motion#6224 +09:47:05.096-0700 871071468690214912 eukr2Mo | motion#8842 +09:47:05.233-0700 871071455629176942 DqP0stc | motion#9749 +09:47:05.240-0700 871071468400824320 E7Qni38 | motion#6139 +09:47:05.324-0700 871071472662224898 yYBotyk | motion#1351 +09:47:05.385-0700 871071469210333204 XKuI1vc | motion#2783 +09:47:05.405-0700 871071474579030106 5BQ4IsI | motion#3242 +09:47:05.418-0700 871071457537556532 S79jzmc | motion#2973 +09:47:05.426-0700 871071474851643392 dl5KT4I | motion#3414 +09:47:05.444-0700 871071468417589269 Dg_azP4 | motion#1206 +09:47:05.541-0700 871071471739473930 0kB8EPU | motion#8793 +09:47:05.654-0700 871071456807759984 SdfOeiY | motion#1248 +09:47:05.657-0700 871071476005109760 d5kFHCs | motion#5610 +09:47:05.670-0700 871071471089352754 auzKrw4 | motion#7209 +09:47:05.690-0700 871071456241528832 gk_GmYQ | motion#4078 +09:47:05.704-0700 871071473593376779 4PBfgxE | motion#5322 +09:47:05.889-0700 871071475375947796 1qaeGCo | motion#4093 +09:47:06.111-0700 871071473794682880 DvoncEs | motion#7808 +09:47:06.136-0700 871071473182318603 --j2DZo | motion#6759 +09:47:06.154-0700 871071471655583814 GO_1MOM | motion#7636 +09:47:06.229-0700 871071473148755978 c8dpBTg | motion#2206 +09:47:06.247-0700 871071474075729931 BUp8tWM | motion#1008 +09:47:06.431-0700 871071475237548044 Ygjt-SM | motion#8454 +09:47:06.506-0700 871071466769244231 OWCw83Y | motion#4182 +09:47:06.598-0700 871071472364437606 z0eY_ac | motion#6820 +09:47:06.700-0700 871071476567113768 DXZRJCE | motion#1113 +09:47:06.747-0700 871071476726530078 db_1SSA | motion#3060 +09:47:06.783-0700 871071472083406911 nLgzqxo | motion#7905 +09:47:06.808-0700 871071476709728328 rXO_R9Y | motion#2554 +09:47:06.831-0700 871071476718112858 mkw-jm0 | motion#7723 +09:47:06.904-0700 871071480283283466 OagBg2U | motion#3998 +09:47:06.946-0700 871071478190325800 C0uGSdk | motion#1347 +09:47:07.205-0700 871071481965187082 e-Z8j30 | motion#1387 +09:47:07.395-0700 871071478483923046 sgRzSZ0 | motion#5072 +09:47:07.413-0700 871071467784241162 ClQsHZs | motion#3694 +09:47:07.438-0700 871071479662542868 DJ5CsfY | motion#1247 +09:47:07.613-0700 871071479113076817 e5vxKec | motion#4175 +09:47:07.631-0700 871071482908930108 _GnUHAU | motion#0032 +09:47:07.661-0700 871071478471360544 9PatKQc | motion#7432 +09:47:07.744-0700 871071479729639495 dQr5i9Q | motion#1941 +09:47:07.764-0700 871071481180864553 RPg9h_I | motion#1540 +09:47:07.863-0700 871071481419956224 TfRCCvQ | motion#4556 +09:47:07.928-0700 871071464021971005 t1jhf7E | motion#8137 +09:47:08.001-0700 871071471533961236 iAVJIds | motion#3148 +09:47:08.081-0700 871071482866978826 tdZiAHc | motion#1265 +09:47:08.096-0700 871071483953291315 mWtM6vs | motion#7027 +09:47:08.360-0700 871071481617088522 PNbZPh0 | motion#6959 +09:47:08.487-0700 871071485287075871 WfGSZAY | motion#4837 +09:47:08.540-0700 871071483378675782 ClCWnOI | motion#7349 +09:47:08.598-0700 871071481092792382 1_qLDLM | motion#2391 +09:47:08.811-0700 871071484314009621 cGTGnMU | motion#5211 +09:47:08.945-0700 871071485488410675 PfKwR10 | motion#4224 +09:47:09.012-0700 871071466836357180 fL4pLuw | motion#5289 +09:47:09.140-0700 871071478853009488 NatRcBI | motion#7635 +09:47:09.274-0700 871071485253546066 dAeQBDE | motion#5580 +09:47:09.397-0700 871071483328335882 Wrgv9ws | motion#5290 +09:47:09.435-0700 871071481742893057 DbLMWLY | motion#2478 +09:47:09.504-0700 871071486260158535 WGndkGo | motion#8928 +09:47:09.522-0700 871071487921115157 cmOodpE | motion#0631 +09:47:09.543-0700 871071487690440724 icW1CUc | motion#0993 +09:47:09.650-0700 871071485584875531 0ds34E8 | motion#3705 +09:47:09.676-0700 871071473819877436 GurjlJk | motion#6247 +09:47:09.833-0700 871071486943821844 jcfP3VA | motion#6703 +09:47:09.865-0700 871071489145864242 gE7wx8o | motion#9643 +09:47:09.918-0700 871071487250018345 -XHUchQ | motion#3466 +09:47:09.950-0700 871071479356330034 YhilECg | motion#9556 +09:47:10.011-0700 871071488185364550 3MQI7Sc | motion#8493 +09:47:10.298-0700 871071493939929119 GYPFoC8 | motion#2937 +09:47:10.342-0700 871071491993767996 FrKeuRg | motion#4085 +09:47:10.363-0700 871071489946947606 -sWkr04 | motion#7869 +09:47:10.367-0700 871071490630635540 7sBBBRQ | motion#3410 +09:47:10.481-0700 871071484142059542 XFERQ78 | motion#6092 +09:47:10.514-0700 871071491662413854 BV1Sbhw | motion#0884 +09:47:10.601-0700 871071482262986832 9F3L-90 | motion#3363 +09:47:10.646-0700 871071487107403838 rVJ2-oI | motion#5988 +09:47:10.676-0700 871071480702709761 0WAVTQo | motion#3036 +09:47:10.733-0700 871071489397522493 5A7NqE0 | motion#7895 +09:47:10.757-0700 871071488294416424 HZ5S5Xw | motion#7627 +09:47:10.768-0700 871071466739888148 yG9jrU8 | motion#6396 +09:47:10.816-0700 871071495806410772 muCQwvA | motion#0865 +09:47:10.856-0700 871071478060318722 vIiZ3Qg | motion#7176 +09:47:10.900-0700 871071477074640996 OyIdLFk | motion#7388 +09:47:11.223-0700 871071482996989973 KMFsEjc | motion#2465 +09:47:11.248-0700 871071497970659359 hiCJgSQ | motion#4205 +09:47:11.398-0700 871071481508028426 y3zr3X4 | motion#1012 +09:47:11.448-0700 871071486373417051 DGQTSN0 | motion#6103 +09:47:11.469-0700 871071496943054898 MNY9_a4 | motion#6318 +09:47:11.475-0700 871071499434459136 kOtnIfs | motion#1868 +09:47:11.492-0700 871071499522551848 Q6jm1TU | motion#1990 +09:47:11.649-0700 871071483756150794 CcEXYHk | motion#1093 +09:47:11.699-0700 871071490198605836 7dm0kE4 | motion#8579 +09:47:12.245-0700 871071496628477982 l5RByAs | motion#9352 +09:47:12.266-0700 871071499249934447 MXAYMQE | motion#1332 +09:47:12.298-0700 871071498637549628 09dI7ak | motion#0527 +09:47:12.326-0700 871071497765146665 a3SVNLE | motion#9011 +09:47:12.415-0700 871071500680171561 IV6hq90 | motion#4642 +09:47:12.463-0700 871071499937783818 xSKb4i8 | motion#1316 +09:47:12.482-0700 871071486335680544 euv9614 | motion#1018 +09:47:12.557-0700 871071486918684813 f-LzxxA | motion#2108 +09:47:12.610-0700 871071504371187763 TE27x2E | motion#9234 +09:47:12.631-0700 871071502060101672 NptTE3k | motion#8018 +09:47:12.749-0700 871071494992719933 tF8ZYdQ | motion#5584 +09:47:12.752-0700 871071486704750622 zVREt9k | motion#8736 +09:47:12.825-0700 871071501317726208 _p-Ntto | motion#9594 +09:47:12.851-0700 871071492786491402 MsnTmkE | motion#6764 +09:47:12.887-0700 871071503880450069 P9p6tMQ | motion#1042 +09:47:12.984-0700 871071504383762472 TUC6_4o | motion#0445 +09:47:13.057-0700 871071500394958910 5emA_6Y | motion#0678 +09:47:13.072-0700 871071502248861756 MxJhFpw | motion#8946 +09:47:13.108-0700 871071500688564314 RU0bix8 | motion#0437 +09:47:13.151-0700 871071504014663720 qEhnG_s | motion#5955 +09:47:13.189-0700 871071487900147713 1qKUAFU | motion#6651 +09:47:13.213-0700 871071502324346890 NY4adOs | motion#0223 +09:47:13.230-0700 871071480400711720 vB_VRV8 | motion#2120 +09:47:13.266-0700 871071499858112573 5CWpjKw | motion#6326 +09:47:13.301-0700 871071506388647986 AEn4kIM | motion#5537 +09:47:13.394-0700 871071503096103023 xNhcEDg | motion#2986 +09:47:13.425-0700 871071490810978315 OGyCvK8 | motion#9955 +09:47:13.575-0700 871071504534736906 axJHEH4 | motion#9603 +09:47:13.584-0700 871071506443149353 3aeZvRo | motion#6432 +09:47:13.657-0700 871071506841612348 23dJqn0 | motion#9009 +09:47:13.662-0700 871071502538256396 wWWq8Js | motion#1265 +09:47:13.679-0700 871071506942279680 4xWhAow | motion#1958 +09:47:13.702-0700 871071505914679316 4zOpv_8 | motion#8792 +09:47:13.703-0700 871071504526372865 zhr32jw | motion#0119 +09:47:13.746-0700 871071500873117746 wRuL0PI | motion#2637 +09:47:13.808-0700 871071504606036050 sGrxd0g | motion#8929 +09:47:13.816-0700 871071507873431613 S0czHtI | motion#1750 +09:47:13.828-0700 871071494841696296 vbN1MuI | motion#1220 +09:47:13.874-0700 871071505453289513 mlfBCYo | motion#8231 +09:47:13.945-0700 871071504190799952 Z1vl0Gk | motion#2618 +09:47:14.045-0700 871071507277840465 6JiRqjM | motion#5548 +09:47:14.049-0700 871071506405416990 JSamTuI | motion#4516 +09:47:14.054-0700 871071509710508053 JP_mcDU | motion#9795 +09:47:14.136-0700 871071493159784500 V6SyX-k | motion#8587 +09:47:14.137-0700 871071496083226704 0ZkjJ6A | motion#1418 +09:47:14.144-0700 871071493080104970 h7hKvHU | motion#8018 +09:47:14.385-0700 871071507902779393 0K3M5-0 | motion#0256 +09:47:14.401-0700 871071512197746768 ee2xrVQ | motion#3598 +09:47:14.591-0700 871071492971069513 9a5Sr4g | motion#0761 +09:47:14.717-0700 871071509555343401 HXsD880 | motion#3525 +09:47:14.717-0700 871071511551836171 MX7Uai8 | motion#7284 +09:47:14.718-0700 871071507751784468 ey-xSIQ | motion#1645 +09:47:14.727-0700 871071508523540490 NqFMSYE | motion#2260 +09:47:14.740-0700 871071505239400478 4SpusWk | motion#0525 +09:47:14.745-0700 871071512109666354 FAowok4 | motion#6294 +09:47:14.817-0700 871071509072977942 SOC7LE0 | motion#1075 +09:47:14.894-0700 871071512411652107 QQl6BQQ | motion#3653 +09:47:14.946-0700 871071513502171217 nBtnibg | motion#4009 +09:47:14.977-0700 871071511493083146 lU3TomQ | motion#3424 +09:47:14.989-0700 871071508917788712 kITzieQ | motion#6537 +09:47:15.025-0700 871071514722717817 ImxMyDk | motion#6893 +09:47:15.048-0700 871071511803490304 HtJTl4w | motion#5191 +09:47:15.093-0700 871071513342787644 1N2ZOek | motion#2686 +09:47:15.132-0700 871071514215198791 UpJAQwg | motion#6759 +09:47:15.203-0700 871071513263079454 Dwi74y4 | motion#0101 +09:47:15.241-0700 871071513103695912 WStgz5g | motion#4435 +09:47:15.286-0700 871071512818499584 7cZU7Rk | motion#6146 +09:47:15.503-0700 871071512579424267 nwIXndk | motion#2279 +09:47:15.510-0700 871071503888842762 KRXIGu4 | motion#1404 +09:47:15.539-0700 871071514483634187 hf_MutM | motion#3290 +09:47:15.557-0700 871071507311370280 -0cP_n0 | motion#4846 +09:47:15.563-0700 871071515607703612 -ghaVK4 | motion#2532 +09:47:15.568-0700 871071512252276736 EJAwyr4 | motion#4010 +09:47:15.572-0700 871071514722697256 b22ocBA | motion#4858 +09:47:15.592-0700 871071514848534580 ZxLC5LI | motion#0298 +09:47:15.619-0700 871071511891546132 CF2cj2A | motion#2500 +09:47:15.634-0700 871071506510278686 HOXxnYg | motion#6908 +09:47:15.682-0700 871071483043123310 slnk_Ew | motion#1801 +09:47:15.714-0700 871071509286879253 UqD9AUY | motion#7195 +09:47:15.791-0700 871071514051620884 CaATD3U | motion#8957 +09:47:15.794-0700 871071511224660001 zjvDEL4 | motion#2303 +09:47:15.890-0700 871071515553193994 pTvrqR0 | motion#3035 +09:47:15.912-0700 871071518438858852 KkSDcko | motion#2570 +09:47:15.951-0700 871071514731085855 BlnUDv4 | motion#9153 +09:47:16.024-0700 871071519214813214 ZwPYQT4 | motion#4285 +09:47:16.082-0700 871071512327766056 9jQmvMM | motion#8262 +09:47:16.088-0700 871071516593360926 CpyduwM | motion#1101 +09:47:16.151-0700 871071514978553906 mEx0Yxw | motion#1547 +09:47:16.182-0700 871071519449686016 anFLEK4 | motion#4395 +09:47:16.265-0700 871071511107231856 Lqs_jco | motion#2489 +09:47:16.297-0700 871071515251204166 fAU8SFw | motion#3327 +09:47:16.299-0700 871071471257145394 TfmB4as | motion#0831 +09:47:16.372-0700 871071513997090826 PsQdCw0 | motion#3557 +09:47:16.471-0700 871071490911637544 j9eEzpg | motion#4056 +09:47:16.479-0700 871071515565756446 AYKuMNU | motion#9148 +09:47:16.634-0700 871071516966670337 lDYbWIU | motion#1825 +09:47:16.635-0700 871071517243502612 Bz9pGLw | motion#6072 +09:47:16.644-0700 871071502722805761 HVgl2FA | motion#4189 +09:47:16.648-0700 871071506044706876 5tf9RRE | motion#2324 +09:47:16.656-0700 871071515683196928 VNplg_s | motion#1238 +09:47:16.663-0700 871071517281247306 t7JMf90 | motion#0410 +09:47:16.698-0700 871071504505405510 LA3ifew | motion#6262 +09:47:16.707-0700 871071497316360252 xbb827c | motion#2387 +09:47:16.787-0700 871071509148491797 u212Sn8 | motion#2101 +09:47:16.837-0700 871071516387835935 oz6Ws4s | motion#3057 +09:47:16.861-0700 871071504190828574 NUe8oIE | motion#8210 +09:47:16.891-0700 871071520032710676 AIK15EA | motion#2836 +09:47:16.927-0700 871071518350774292 F1bkk7k | motion#7473 +09:47:17.196-0700 871071518438858782 Y-C8ftM | motion#6537 +09:47:17.234-0700 871071518497574943 AB_cKcU | motion#7149 +09:47:17.242-0700 871071519474843658 cQjJb3s | motion#4975 +09:47:17.290-0700 871071517465776178 69o_Xkw | motion#0079 +09:47:17.362-0700 871071520649273356 xqRibi4 | motion#5447 +09:47:17.390-0700 871071523866279956 -MhFZDE | motion#1376 +09:47:17.529-0700 871071523937603625 WGECSgg | motion#5112 +09:47:17.555-0700 871071521546838066 FGC7tRU | motion#2296 +09:47:17.557-0700 871071520024297472 Q3DtL5A | motion#3239 +09:47:17.561-0700 871071511539224647 f5P4DB8 | motion#2614 +09:47:17.692-0700 871071525988610188 A5L-HNY | motion#7200 +09:47:17.900-0700 871071526861041704 oz9eAxA | motion#8963 +09:47:17.984-0700 871071525896355852 pqAPuKg | motion#5198 +09:47:17.998-0700 871071525032321065 mRT9dnw | motion#7652 +09:47:18.025-0700 871071525938274374 h3BhahA | motion#7018 +09:47:18.094-0700 871071521915945052 laLP8kQ | motion#3678 +09:47:18.148-0700 871071527825731634 3FLJG5o | motion#3894 +09:47:18.160-0700 871071522972901377 OfgLLaM | motion#7010 +09:47:18.196-0700 871071517553885274 63LRVR0 | motion#2186 +09:47:18.301-0700 871071525703413841 8xlLPEs | motion#8144 +09:47:18.306-0700 871071527800557590 RrDxx5k | motion#6410 +09:47:18.441-0700 871071514752073759 gwTBMp8 | motion#8538 +09:47:18.475-0700 871071519785254922 68J9LjE | motion#7120 +09:47:18.517-0700 871071527276277770 sOFhFQ4 | motion#8556 +09:47:18.530-0700 871071526949118004 CmFYEV4 | motion#9616 +09:47:18.552-0700 871071510515830786 BQan7AM | motion#8043 +09:47:18.577-0700 871071519063805952 UJfiFSQ | motion#8823 +09:47:18.589-0700 871071495156277248 wzGVquw | motion#0787 +09:47:18.634-0700 871071525728563290 18k6jBY | motion#5532 +09:47:18.785-0700 871071510327091340 p7u_0yM | motion#2808 +09:47:18.795-0700 871071529419542568 1oVE_VA | motion#1650 +09:47:18.806-0700 871071518044614686 tsBzNmw | motion#4284 +09:47:18.877-0700 871071530585579550 MGN1cxA | motion#8947 +09:47:18.913-0700 871071518178811934 hT5GiAw | motion#7527 +09:47:18.949-0700 871071529599905833 uDfIbuM | motion#2664 +09:47:19.031-0700 871071532217159790 MK1DUiI | motion#7466 +09:47:19.050-0700 871071529092407336 dw9tZbo | motion#4278 +09:47:19.072-0700 871071514122944532 qOrFnl4 | motion#4529 +09:47:19.118-0700 871071528299683860 pvo2Vxs | motion#6524 +09:47:19.132-0700 871071527901233164 VrH4Rls | motion#9011 +09:47:19.168-0700 871071527225925652 E2q0-bU | motion#4899 +09:47:19.195-0700 871071530346491965 WpPCYBw | motion#5879 +09:47:19.230-0700 871071528782024794 eaQKdu8 | motion#4407 +09:47:19.231-0700 871071527498547210 aPBXOns | motion#4362 +09:47:19.281-0700 871071531290206258 eGM7w0I | motion#7090 +09:47:19.292-0700 871071528953970739 u9Px_I4 | motion#7380 +09:47:19.305-0700 871071531323756554 SdRRaws | motion#3037 +09:47:19.327-0700 871071527460798466 bp2cAmI | motion#6961 +09:47:19.334-0700 871071526139613294 23nbfKQ | motion#1453 +09:47:19.378-0700 871071527855075338 Qhi8dGc | motion#2370 +09:47:19.389-0700 871071528505184288 l-iYsSk | motion#0380 +09:47:19.435-0700 871071530895966208 Ryvv4oo | motion#1921 +09:47:19.441-0700 871071528991731754 h5l96qo | motion#5876 +09:47:19.581-0700 871071516702433290 S6jJ0ow | motion#8153 +09:47:19.582-0700 871071529532797010 CWP-UYk | motion#6776 +09:47:19.595-0700 871071531957104671 Ihz8YFM | motion#8508 +09:47:19.694-0700 871071533311881277 QjLaZIA | motion#9730 +09:47:19.708-0700 871071531562840104 TZVCt7c | motion#6608 +09:47:19.715-0700 871071529054646292 LwLFeE0 | motion#6321 +09:47:19.737-0700 871071530719805460 lWr6JTg | motion#0864 +09:47:19.756-0700 871071529272737803 KhukC0s | motion#4013 +09:47:19.772-0700 871071519051227197 _ci35vA | motion#2430 +09:47:19.880-0700 871071517461585960 j1RfnS4 | motion#2627 +09:47:19.905-0700 871071519785242654 mt_Iny4 | motion#1063 +09:47:19.933-0700 871071535228665867 AukovuA | motion#0960 +09:47:19.953-0700 871071532326219797 zA3E-XI | motion#9663 +09:47:20.181-0700 871071532309438544 phZog5g | motion#9122 +09:47:20.208-0700 871071531445387354 sxGiCZM | motion#1197 +09:47:20.227-0700 871071534167502868 -OuAP-A | motion#0195 +09:47:20.242-0700 871071531441209374 cezVXsQ | motion#4410 +09:47:20.302-0700 871071535983644673 YxN7cts | motion#5639 +09:47:20.332-0700 871071520947073024 KuGcWvc | motion#5170 +09:47:20.400-0700 871071532410101780 Ojwd0Mk | motion#0881 +09:47:20.491-0700 871071534377226260 FdtUQQU | motion#3813 +09:47:20.522-0700 871071537736847380 fyh8lJc | motion#8129 +09:47:20.584-0700 871071534171713587 9YhLG9o | motion#2607 +09:47:20.593-0700 871071537795575829 WIHtWh0 | motion#5973 +09:47:20.623-0700 871071537103536159 OI-52wM | motion#2485 +09:47:20.681-0700 871071533462876171 DVkoBv4 | motion#3215 +09:47:20.689-0700 871071534599532565 K95QfgA | motion#1591 +09:47:20.861-0700 871071531164397619 Q_hpZak | motion#0980 +09:47:20.905-0700 871071534343659540 iT1Ue8o | motion#4994 +09:47:21.011-0700 871071534477881364 ASiLInM | motion#6335 +09:47:21.149-0700 871071537506172928 TNHdd6A | motion#3256 +09:47:21.266-0700 871071541213954138 u7FHeyI | motion#0998 +09:47:21.285-0700 871071538739286057 1wZycCY | motion#1403 +09:47:21.285-0700 871071537413902376 58RQeds | motion#4917 +09:47:21.294-0700 871071534373040178 acXOyFw | motion#6026 +09:47:21.345-0700 871071538969993266 yChmZIQ | motion#8388 +09:47:21.396-0700 871071535367094303 3AP5GKY | motion#0985 +09:47:21.441-0700 871071535685853224 mTGae2E | motion#8394 +09:47:21.461-0700 871071537439076382 p1B5qbI | motion#1065 +09:47:21.468-0700 871071535635529808 yRYAedk | motion#5170 +09:47:21.533-0700 871071536390492222 X4dkklQ | motion#8669 +09:47:21.674-0700 871071542652588043 5qopuFg | motion#9196 +09:47:21.731-0700 871071533395759135 u0xoL3M | motion#1672 +09:47:21.732-0700 871071541331394591 65FCtCY | motion#3815 +09:47:21.769-0700 871071535794909194 2sHNelU | motion#9183 +09:47:21.771-0700 871071537585864714 Ao1kDsw | motion#8478 +09:47:21.784-0700 871071539716579348 FNv86HY | motion#7395 +09:47:21.793-0700 871071540903542855 ObDflqY | motion#8687 +09:47:21.801-0700 871071542816165908 olseayE | motion#7974 +09:47:21.871-0700 871071540140208178 xz2nZeI | motion#0626 +09:47:21.941-0700 871071536818323517 HunC22M | motion#4881 +09:47:21.978-0700 871071543524986910 4SnQVn4 | motion#5147 +09:47:22.031-0700 871071537338409071 _u_7HHw | motion#4861 +09:47:22.061-0700 871071541096497213 1ZAlwAo | motion#1918 +09:47:22.067-0700 871071522754822205 wS1i5Ws | motion#4292 +09:47:22.112-0700 871071540932931594 xdGwH9I | motion#1968 +09:47:22.171-0700 871071535186718750 Gf-zrhI | motion#3780 +09:47:22.209-0700 871071539796262963 HzF-WHs | motion#5913 +09:47:22.219-0700 871071529033674783 fDEGfes | motion#0043 +09:47:22.244-0700 871071539355856946 dR3CfMo | motion#3437 +09:47:22.317-0700 871071540517687317 -sN43D4 | motion#5416 +09:47:22.344-0700 871071539674632245 cYtSuRA | motion#3257 +09:47:22.388-0700 871071541675298816 AuHxo3g | motion#2757 +09:47:22.479-0700 871071542577070120 w8jpLDk | motion#2512 +09:47:22.481-0700 871071529159524414 AHW_yeQ | motion#0051 +09:47:22.492-0700 871071541952131122 uiCFuB8 | motion#4007 +09:47:22.535-0700 871071531625771060 QKsEsak | motion#1274 +09:47:22.541-0700 871071539976618004 gsX2RMk | motion#9988 +09:47:22.549-0700 871071546360360991 4gNNH4w | motion#5825 +09:47:22.582-0700 871071530958880909 b864TMI | motion#7364 +09:47:22.621-0700 871071540886798376 oaIGe28 | motion#5911 +09:47:22.686-0700 871071541843087390 cWPgFDM | motion#6993 +09:47:22.710-0700 871071542556098560 oxiVzYQ | motion#3251 +09:47:22.718-0700 871071542581293156 B_TQss8 | motion#8411 +09:47:22.780-0700 871071546922389504 jsod-HY | motion#5256 +09:47:22.822-0700 871071531286036531 WAlDvs4 | motion#7938 +09:47:22.826-0700 871071540790300703 o94oH7M | motion#1175 +09:47:22.837-0700 871071546662346793 0loVnxo | motion#1244 +09:47:22.846-0700 871071544800055337 eMF31pQ | motion#8756 +09:47:22.974-0700 871071547786428446 R9wmz60 | motion#0065 +09:47:22.976-0700 871071544821026877 dNmpfp0 | motion#8544 +09:47:23.124-0700 871071542719705138 bagiAao | motion#5324 +09:47:23.133-0700 871071546356138044 Xu_H-BA | motion#6468 +09:47:23.254-0700 871071547400523826 HdHtzi0 | motion#7798 +09:47:23.268-0700 871071545378877470 qWXzujo | motion#6824 +09:47:23.417-0700 871071546565853224 QZJ4pUs | motion#6486 +09:47:23.429-0700 871071544426766367 -8aJEYs | motion#4624 +09:47:23.433-0700 871071532997304330 fK6Cx2s | motion#1903 +09:47:23.446-0700 871071542732267561 emQ_0jw | motion#1039 +09:47:23.477-0700 871071546326777876 C3o7k_E | motion#7761 +09:47:23.496-0700 871071531776741488 54kPNyQ | motion#6191 +09:47:23.704-0700 871071537254498384 kn4XW0E | motion#1534 +09:47:23.712-0700 871071544972034078 wMnD7ZU | motion#9841 +09:47:23.835-0700 871071549019533342 RRFMYjY | motion#4756 +09:47:23.874-0700 871071534867939368 zWbCk-4 | motion#2909 +09:47:23.930-0700 871071548423934063 5l3cuUU | motion#9277 +09:47:24.024-0700 871071547845140530 GMRfL1s | motion#2530 +09:47:24.152-0700 871071552240771082 8EMBdDs | motion#0988 +09:47:24.332-0700 871071548340064277 ijD7Kik | motion#2168 +09:47:24.366-0700 871071541780172860 SBseZBo | motion#1815 +09:47:24.621-0700 871071554090463313 SyFYZ1A | motion#9439 +09:47:24.623-0700 871071554845438013 7rY-LLs | motion#8904 +09:47:24.816-0700 871071551817142337 vjL4-MU | motion#1454 +09:47:24.839-0700 871071549082447943 bbI-RfU | motion#9485 +09:47:25.011-0700 871071554463727656 6NVFvDs | motion#5342 +09:47:25.087-0700 871071555017400351 EbwiuL4 | motion#8693 +09:47:25.116-0700 871071552685346898 LQia3No | motion#7699 +09:47:25.386-0700 871071555327782973 t9LxhRU | motion#9642 +09:47:25.520-0700 871071541620772964 -qoi-uw | motion#6121 +09:47:25.576-0700 871071556778983484 Il2cMVs | motion#4725 +09:47:25.630-0700 871071555537481748 TyqrFls | motion#8952 +09:47:25.655-0700 871071540488314931 X7XU0iw | motion#1546 +09:47:25.863-0700 871071542971355137 inAR3lg | motion#9749 +09:47:25.983-0700 871071554593755176 U5VvXg0 | motion#0941 +09:47:26.049-0700 871071559572410399 vKGjC9g | motion#4501 +09:47:26.130-0700 871071555159990322 mgcP0Mg | motion#0180 +09:47:26.131-0700 871071551242514503 Sakdagg | motion#7478 +09:47:26.177-0700 871071557462667264 MQvvr3Y | motion#6537 +09:47:26.193-0700 871071559421423646 MSRRTSw | motion#0298 +09:47:26.220-0700 871071560604213249 HXryaVk | motion#1588 +09:47:26.261-0700 871071547312463912 KvSyxG8 | motion#2342 +09:47:26.561-0700 871071557416534036 Qxh74y0 | motion#9573 +09:47:26.611-0700 871071556628021270 rl53D1o | motion#4062 +09:47:26.649-0700 871071561896054855 _k2u-Xc | motion#2860 +09:47:26.656-0700 871071560600002610 8dszfro | motion#3107 +09:47:26.670-0700 871071557060030504 N2wsIkQ | motion#8895 +09:47:26.778-0700 871071559891173437 RrYjLhs | motion#3151 +09:47:26.794-0700 871071559295594497 h3VCu9k | motion#4270 +09:47:26.824-0700 871071562571333654 KMBSkuw | motion#9345 +09:47:26.897-0700 871071541239111740 X7mfTy8 | motion#6402 +09:47:26.899-0700 871071556590239767 4DoMb9E | motion#6906 +09:47:26.981-0700 871071560595808256 ez3xIys | motion#8306 +09:47:26.998-0700 871071547908046849 0u6K9OE | motion#5641 +09:47:27.194-0700 871071550667886612 n42YVY0 | motion#1033 +09:47:27.279-0700 871071558431555614 V1SANzk | motion#6875 +09:47:27.383-0700 871071551993307156 QtpeBQQ | motion#1983 +09:47:27.402-0700 871071542317043734 MgMiEow | motion#4762 +09:47:27.414-0700 871071547933216788 yVNb0lo | motion#0297 +09:47:27.454-0700 871071549950681169 i7nNFO4 | motion#2817 +09:47:27.465-0700 871071566727876708 3mOjPAo | motion#9974 +09:47:27.482-0700 871071556015640607 eLjcOb8 | motion#0361 +09:47:27.532-0700 871071544598732871 qPYbyBE | motion#2735 +09:47:27.831-0700 871071565628993546 Y6YtKLs | motion#5824 +09:47:28.014-0700 871071565280849981 ngGcjbg | motion#1259 +09:47:28.040-0700 871071562202243122 BFIoF5U | motion#8609 +09:47:28.065-0700 871071570288840724 Ju0lsA4 | motion#1016 +09:47:28.065-0700 871071564915941406 V9lltjM | motion#1298 +09:47:28.195-0700 871071567017312258 h7IWobY | motion#3821 +09:47:28.305-0700 871071568296542258 EOZwp3U | motion#5041 +09:47:28.309-0700 871071566115516506 UwF_buM | motion#8136 +09:47:28.328-0700 871071566761439253 n3Xfhas | motion#3332 +09:47:28.470-0700 871071556003070012 tU90UOM | motion#9651 +09:47:28.495-0700 871071554014953523 S8oeAxo | motion#5265 +09:47:28.518-0700 871071568292368445 7HYgbhQ | motion#2410 +09:47:28.565-0700 871071565905788958 0Hb3SCI | motion#2335 +09:47:28.582-0700 871071570301452328 N2oY2B4 | motion#0034 +09:47:28.617-0700 871071566568493107 _0AYQuw | motion#6264 +09:47:28.668-0700 871071567789035575 mmKyWPM | motion#4465 +09:47:28.710-0700 871071553180274688 Y7A2B0I | motion#8423 +09:47:28.765-0700 871071550290399262 9TCm_gQ | motion#4179 +09:47:28.811-0700 871071568577568768 YQlVq6o | motion#3101 +09:47:28.865-0700 871071573732384778 eLSwxOQ | motion#0058 +09:47:29.052-0700 871071572117553153 MsY-dVA | motion#1137 +09:47:29.055-0700 871071557630460034 IPSqooo | motion#2685 +09:47:29.271-0700 871071574927761528 k-KvtiE | motion#2518 +09:47:29.300-0700 871071569848443010 KvjgIFM | motion#8338 +09:47:29.343-0700 871071566518177822 58RWg5o | motion#5163 +09:47:29.554-0700 871071569538056322 SXi-XA4 | motion#3872 +09:47:29.799-0700 871071558381232208 xP5HIN4 | motion#0861 +09:47:29.915-0700 871071558062448651 fn3Jyiw | motion#8118 +09:47:29.932-0700 871071571320668172 cq7MXTQ | motion#0662 +09:47:30.209-0700 871071573711396906 bO3VDPs | motion#6701 +09:47:30.227-0700 871071569139621898 7v-zFt0 | motion#0026 +09:47:30.244-0700 871071566899871844 gLc2hqA | motion#1483 +09:47:30.349-0700 871071568980246549 TS1p6G8 | motion#8838 +09:47:30.436-0700 871071571165466654 uZW74PU | motion#2831 +09:47:30.503-0700 871071560717463572 0gHYkxQ | motion#0141 +09:47:30.580-0700 871071576139903106 OdduCGc | motion#9216 +09:47:30.614-0700 871071560994271232 GAnNPtE | motion#2138 +09:47:30.715-0700 871071573459755038 b_kdxVQ | motion#8379 +09:47:30.725-0700 871071578669088849 rVw8vzY | motion#4591 +09:47:30.789-0700 871071576358027324 0Vco920 | motion#1421 +09:47:30.932-0700 871071569080901632 m6gpsPg | motion#3527 +09:47:30.936-0700 871071576764842015 -V2VVw0 | motion#8413 +09:47:30.976-0700 871071562835570729 bx5n6BQ | motion#6276 +09:47:30.978-0700 871071564307763252 G9g_NkE | motion#1909 +09:47:31.006-0700 871071569357729862 DLv94kc | motion#0603 +09:47:31.061-0700 871071578136391711 Isqj-GA | motion#1326 +09:47:31.138-0700 871071572071415829 j7heZto | motion#2150 +09:47:31.313-0700 871071580619419669 tTDrGy8 | motion#5944 +09:47:31.355-0700 871071575410089984 k-B997w | motion#3791 +09:47:31.358-0700 871071578870386748 NfviYjU | motion#7179 +09:47:31.470-0700 871071564647497779 b6rzVkM | motion#8219 +09:47:31.526-0700 871071576643219456 M0VUgTQ | motion#8875 +09:47:32.029-0700 871071576097964092 WRSUIDE | motion#7927 +09:47:32.076-0700 871071573598154834 6dPc2sY | motion#8331 +09:47:32.105-0700 871071567977799810 9pJ4c-4 | motion#7138 +09:47:32.123-0700 871071585010860122 iIYJmvM | motion#2597 +09:47:32.137-0700 871071581135315016 M5rYmDg | motion#7779 +09:47:32.354-0700 871071587720380506 yW5xYhM | motion#2622 +09:47:32.375-0700 871071581865115719 4ClovhQ | motion#3913 +09:47:32.611-0700 871071574252486677 K33UaDs | motion#3960 +09:47:32.675-0700 871071578367094904 II4BZsk | motion#9141 +09:47:32.707-0700 871071584989900800 cfPYqyg | motion#4089 +09:47:32.720-0700 871071572557983774 WGiAODs | motion#1297 +09:47:32.778-0700 871071571400347789 Np9DkEc | motion#6415 +09:47:32.843-0700 871071588026581002 _jqai4Y | motion#8313 +09:47:32.994-0700 871071572323090432 Y3gnxac | motion#4518 +09:47:33.004-0700 871071585811963904 XCOIMS8 | motion#9384 +09:47:33.061-0700 871071586256584785 YTJQfGk | motion#5382 +09:47:33.070-0700 871071583177941034 sMzFCYs | motion#7933 +09:47:33.158-0700 871071579956731965 3T0agiQ | motion#2168 +09:47:33.217-0700 871071591340077107 WgiUhSY | motion#6768 +09:47:33.231-0700 871071588030775307 c6P66kQ | motion#5844 +09:47:33.347-0700 871071575833714688 oM0PJy8 | motion#5205 +09:47:33.481-0700 871071577301745806 YHGC_Oc | motion#8241 +09:47:33.572-0700 871071587414196256 d5D5pkk | motion#3008 +09:47:33.669-0700 871071585891659877 jX9zfiA | motion#9427 +09:47:33.704-0700 871071585405108294 FrYmBSc | motion#7846 +09:47:33.721-0700 871071589645578241 k0QemgU | motion#1103 +09:47:33.832-0700 871071593957326858 6zsTvNA | motion#0849 +09:47:34.291-0700 871071591637852172 CRFEsoA | motion#2523 +09:47:34.301-0700 871071591344250922 JfjwMM8 | motion#7280 +09:47:34.350-0700 871071592237629440 Eg3BOzY | motion#8784 +09:47:34.383-0700 871071591646249001 jndoYRw | motion#7287 +09:47:34.417-0700 871071588043350056 9zx_BQE | motion#2570 +09:47:34.447-0700 871071592640311326 eQoh4Ls | motion#6295 +09:47:34.629-0700 871071593210708019 vbVYK68 | motion#0149 +09:47:34.665-0700 871071587116400700 A6e6940 | motion#9745 +09:47:34.741-0700 871071594120872027 PPprU0U | motion#1324 +09:47:34.860-0700 871071587519041639 ckXQ96E | motion#3183 +09:47:34.955-0700 871071595077173248 7erbR5E | motion#3244 +09:47:35.085-0700 871071598021599244 K-L8Ugo | motion#0792 +09:47:35.188-0700 871071595328864256 ZX5qOso | motion#9415 +09:47:35.370-0700 871071587217080371 JiEJkZc | motion#5225 +09:47:35.449-0700 871071591428141067 e1QUx_w | motion#9246 +09:47:35.478-0700 871071600341053461 z614a-U | motion#3948 +09:47:35.583-0700 871071585669378089 eKMreI4 | motion#3137 +09:47:35.597-0700 871071595869908992 zZ-yOUY | motion#4827 +09:47:35.695-0700 871071597019144232 I0v0QT4 | motion#7181 +09:47:35.744-0700 871071601322516521 B3Zf54E | motion#9665 +09:47:35.757-0700 871071597841248297 YXmko74 | motion#7891 +09:47:35.903-0700 871071602429820939 IsQNOUs | motion#5058 +09:47:35.932-0700 871071599674142771 wZPkDz0 | motion#3673 +09:47:35.957-0700 871071586134949889 bFbyPBE | motion#7475 +09:47:36.026-0700 871071573308735558 9apHIiY | motion#6664 +09:47:36.069-0700 871071602123603989 WHr1LPE | motion#0946 +09:47:36.070-0700 871071599598637097 1I_dadM | motion#8596 +09:47:36.131-0700 871071599774814238 i0CKEak | motion#8838 +09:47:36.284-0700 871071600085192725 DICMSzE | motion#9201 +09:47:36.313-0700 871071600697548871 tMKo-N8 | motion#0256 +09:47:36.446-0700 871071604602466324 oqYlalk | motion#3798 +09:47:36.525-0700 871071602538840074 PCRA5AE | motion#1763 +09:47:36.595-0700 871071601725149185 otvRDLA | motion#2728 +09:47:36.781-0700 871071592875188245 NVI4Lr4 | motion#3097 +09:47:36.817-0700 871071595962187787 6Jd2OWI | motion#6376 +09:47:36.885-0700 871071602886995988 pvFqy8Q | motion#2575 +09:47:37.192-0700 871071605416161300 EMSdCmE | motion#4863 +09:47:37.235-0700 871071605105782845 oOcWvQ4 | motion#0779 +09:47:37.337-0700 871071603688104048 JTj5kcQ | motion#8942 +09:47:37.351-0700 871071605617471538 OklgR20 | motion#6870 +09:47:37.361-0700 871071584239120416 xdmIFvQ | motion#3968 +09:47:37.416-0700 871071603310624810 TVuFaRY | motion#2696 +09:47:37.499-0700 871071601951666177 FCo5NP8 | motion#9806 +09:47:37.676-0700 871071603419648101 aHPVTEM | motion#8336 +09:47:37.702-0700 871071606871572500 RPrW_Ns | motion#4072 +09:47:37.749-0700 871071609065185292 AVHJRy8 | motion#1537 +09:47:37.755-0700 871071606867386450 p7UpaBI | motion#9481 +09:47:37.770-0700 871071604896067674 COYIRl0 | motion#3270 +09:47:37.822-0700 871071600693362728 QRp8jjA | motion#3416 +09:47:37.945-0700 871071590551531582 4gNqSOE | motion#9114 +09:47:37.979-0700 871071608461226084 RmP64_E | motion#5562 +09:47:38.131-0700 871071607219716117 vkhN4w4 | motion#5519 +09:47:38.157-0700 871071609220399114 z4NVu44 | motion#7734 +09:47:38.389-0700 871071608494780457 pJkBbsA | motion#4904 +09:47:38.443-0700 871071609543360532 Cc3wyLE | motion#9656 +09:47:38.554-0700 871071597849636935 F0tPyko | motion#1930 +09:47:38.776-0700 871071612751982602 OqHghmY | motion#8128 +09:47:39.073-0700 871071612517109821 _P2r62c | motion#7692 +09:47:39.409-0700 871071611783114752 TqU_DQE | motion#9830 +09:47:39.457-0700 871071615843176488 Cc37h2s | motion#9735 +09:47:39.505-0700 871071610562576444 2S_s-Fc | motion#1276 +09:47:39.522-0700 871071613402120222 HM69Vuk | motion#8184 +09:47:39.524-0700 871071612944936980 bY9th5c | motion#8871 +09:47:39.587-0700 871071613523755119 PgcNjRc | motion#1181 +09:47:39.643-0700 871071613431463976 HpVlGn4 | motion#0256 +09:47:39.821-0700 871071618791796797 N8-mpeY | motion#4849 +09:47:39.905-0700 871071615281135616 V-uefxs | motion#0628 +09:47:39.912-0700 871071606888345621 aE_Sz0I | motion#7039 +09:47:39.918-0700 871071613179809822 DsgPB8I | motion#2275 +09:47:40.033-0700 871071615557980171 Kg_cDtc | motion#5808 +09:47:40.071-0700 871071611283980329 hLjkGQQ | motion#6966 +09:47:40.109-0700 871071616585576549 4Q7lrUY | motion#1428 +09:47:40.129-0700 871071618577887352 goZbEpU | motion#2142 +09:47:40.132-0700 871071614555541614 TkeUZv0 | motion#5795 +09:47:40.214-0700 871071617705455669 DCeyJ2M | motion#2339 +09:47:40.226-0700 871071613804769360 oRzB5rs | motion#8920 +09:47:40.291-0700 871071612609364028 9CnKt34 | motion#2589 +09:47:40.313-0700 871071617814511637 jxh0dGg | motion#1429 +09:47:40.412-0700 871071617353138216 OM7SSTc | motion#1199 +09:47:40.922-0700 871071623325843558 QHZBPVo | motion#4920 +09:47:40.946-0700 871071616560398368 8qSIxCQ | motion#1282 +09:47:40.972-0700 871071619655798814 TfVlZyU | motion#3419 +09:47:40.972-0700 871071619882287107 mP0EROE | motion#1383 +09:47:41.158-0700 871071620435947540 ndN1EpI | motion#0543 +09:47:41.190-0700 871071621123829801 puHsjVo | motion#7062 +09:47:41.352-0700 871071620884734012 OUmKHO0 | motion#1067 +09:47:41.355-0700 871071623254532126 FVcXc9c | motion#0229 +09:47:41.803-0700 871071623145484369 yKMoJ6s | motion#8288 +09:47:41.852-0700 871071623871074365 9pHdITM | motion#3573 +09:47:41.857-0700 871071623166427216 HTQT5P0 | motion#8194 +09:47:41.926-0700 871071622709248031 JH-urrs | motion#9156 +09:47:42.020-0700 871071623896264794 ZOKU4IE | motion#0721 +09:47:42.061-0700 871071625834029086 luyuzgA | motion#2258 +09:47:42.104-0700 871071624844173312 jNAsGdc | motion#0861 +09:47:42.126-0700 871071626106646528 HL4n1bg | motion#7624 +09:47:42.209-0700 871071628312862721 R8zIVrE | motion#2386 +09:47:42.263-0700 871071625905307669 GUnHDNA | motion#9029 +09:47:42.334-0700 871071629436936222 M49nsSI | motion#2776 +09:47:42.549-0700 871071629462077500 w468lbA | motion#2709 +09:47:42.643-0700 871071627385917471 CC91u18 | motion#2915 +09:47:42.659-0700 871071626861617212 Qx5IS-o | motion#6347 +09:47:42.673-0700 871071625926307851 DhQpytE | motion#6799 +09:47:42.734-0700 871071628124094464 zTuACIs | motion#8088 +09:47:42.792-0700 871071607106469908 qJq5s1g | motion#5744 +09:47:43.071-0700 871071624911269918 0cQIyW0 | motion#3306 +09:47:43.092-0700 871071632838520923 E_AWVH0 | motion#2568 +09:47:43.420-0700 871071629088813057 7-a7Clg | motion#8042 +09:47:43.431-0700 871071620834422854 Rp7EYAk | motion#5039 +09:47:43.444-0700 871071622830891068 O0RIBR4 | motion#6321 +09:47:43.588-0700 871071617512517632 Ll2OmrI | motion#9319 +09:47:43.684-0700 871071629059448853 lUZASAM | motion#1582 +09:47:43.738-0700 871071620012331048 TSOuQE0 | motion#4551 +09:47:43.782-0700 871071629919272971 qXiIzIQ | motion#6772 +09:47:43.848-0700 871071631328567327 T8APAxc | motion#0196 +09:47:43.885-0700 871071635057307659 YpWwaKk | motion#7365 +09:47:44.024-0700 871071636298801205 tkblaSQ | motion#4776 +09:47:44.046-0700 871071627889233930 S7WY4oU | motion#5008 +09:47:44.068-0700 871071631190147153 keZnGao | motion#9984 +09:47:44.251-0700 871071635992625223 a5JJVxI | motion#1065 +09:47:44.362-0700 871071635405434880 UusJYDw | motion#8842 +09:47:44.511-0700 871071634260389909 HETZApU | motion#4325 +09:47:44.603-0700 871071635569012816 FWIOeyE | motion#5654 +09:47:44.625-0700 871071624022073374 1t74UQI | motion#4986 +09:47:44.632-0700 871071636621762590 kSBtgr8 | motion#4194 +09:47:44.646-0700 871071637473202247 lbn0RM4 | motion#1684 +09:47:44.660-0700 871071632041603073 RiHiUDo | motion#2426 +09:47:44.748-0700 871071636353323018 ZPW9Hg8 | motion#9422 +09:47:44.795-0700 871071636747587635 5EexiUc | motion#8977 +09:47:44.804-0700 871071639780098088 9MRtJ3g | motion#5108 +09:47:44.853-0700 871071634855956560 0qG3lC0 | motion#4081 +09:47:44.859-0700 871071625884336168 LuO_siw | motion#3722 +09:47:44.865-0700 871071636126847047 TVHoBz8 | motion#6724 +09:47:44.879-0700 871071638580527126 i-7S_2c | motion#8801 +09:47:44.890-0700 871071636906967101 8EaXvms | motion#7722 +09:47:45.098-0700 871071637485809775 m40qn-M | motion#1474 +09:47:45.147-0700 871071635833249825 -ERl9iE | motion#9843 +09:47:45.206-0700 871071618124881920 KUkgdvM | motion#9365 +09:47:45.255-0700 871071637259304981 v0d_cUc | motion#4199 +09:47:45.319-0700 871071640669257778 NVF5RjA | motion#8054 +09:47:45.325-0700 871071637791981578 uVjZTp0 | motion#1955 +09:47:45.335-0700 871071636999241768 sNClbO0 | motion#9170 +09:47:45.340-0700 871071625741729892 sUfEZ94 | motion#3367 +09:47:45.349-0700 871071636449792030 GXjAlb4 | motion#3097 +09:47:45.393-0700 871071641852059688 1adDW38 | motion#2706 +09:47:45.396-0700 871071638622437448 4RhTP2k | motion#1007 +09:47:45.409-0700 871071640199495720 px3ytvI | motion#3697 +09:47:45.710-0700 871071639591321610 igQpJUw | motion#6698 +09:47:45.858-0700 871071639301922827 ZRL04_0 | motion#8755 +09:47:45.861-0700 871071643315888169 -LPmsN4 | motion#0981 +09:47:45.877-0700 871071631748001853 4tRBw6E | motion#6744 +09:47:45.939-0700 871071640413437984 BQPfPws | motion#2510 +09:47:45.977-0700 871071641726226533 DbMLrQQ | motion#8313 +09:47:46.003-0700 871071644402216980 qUdoP7s | motion#6743 +09:47:46.031-0700 871071642191802379 Qo3Kemk | motion#3302 +09:47:46.176-0700 871071641575231579 UcrZkRM | motion#8987 +09:47:46.277-0700 871071638911873064 1PXb2GY | motion#3891 +09:47:46.363-0700 871071642372157511 Gy9N2eA | motion#3807 +09:47:46.425-0700 871071646516129912 7INlJv8 | motion#6362 +09:47:46.437-0700 871071645480140800 w4jDurI | motion#9559 +09:47:46.497-0700 871071629407567872 56Gs-XY | motion#7794 +09:47:46.589-0700 871071643924070422 JTaTdDc | motion#6571 +09:47:46.602-0700 871071641260662894 Y7HS7jw | motion#6157 +09:47:46.709-0700 871071637817159720 lWMfiF0 | motion#7537 +09:47:46.750-0700 871071647053013014 -wS9dQY | motion#8043 +09:47:46.751-0700 871071645069082684 Y7ZsmLM | motion#4689 +09:47:46.783-0700 871071631617957929 wvRqPwA | motion#4967 +09:47:46.859-0700 871071631357927495 ltvARh8 | motion#4563 +09:47:46.860-0700 871071644033105951 G2gitG0 | motion#1546 +09:47:46.928-0700 871071646440648784 L7pq94Y | motion#1036 +09:47:46.930-0700 871071632544915497 J55qwxw | motion#4572 +09:47:47.036-0700 871071640761565216 5Tjph2A | motion#8454 +09:47:47.080-0700 871071646058950677 8aw1Npg | motion#4178 +09:47:47.124-0700 871071644750327850 qvnTY5M | motion#4672 +09:47:47.146-0700 871071631248863242 8Vv8-pY | motion#3884 +09:47:47.165-0700 871071647241764864 ZHwvCl4 | motion#2211 +09:47:47.254-0700 871071646700671058 ASloHOk | motion#9597 +09:47:47.333-0700 871071632905633884 KKhh0co | motion#9535 +09:47:47.345-0700 871071646885232670 I3p_Kt4 | motion#5878 +09:47:47.397-0700 871071646562263041 dlyfCiE | motion#2109 +09:47:47.402-0700 871071643378806795 e90pJmQ | motion#5339 +09:47:47.421-0700 871071634524610670 8BLXHb0 | motion#3067 +09:47:47.516-0700 871071647497601066 CEIbIJw | motion#8263 +09:47:47.540-0700 871071647833141279 KenU57o | motion#8109 +09:47:47.619-0700 871071638303674378 meAxZMA | motion#2002 +09:47:47.644-0700 871071633220206613 UzC2fxM | motion#3129 +09:47:47.655-0700 871071649846403124 na1ahKA | motion#6345 +09:47:47.695-0700 871071647950573630 04DOVxo | motion#5532 +09:47:47.783-0700 871071649280180224 I4xNpQ8 | motion#8488 +09:47:47.800-0700 871071636219129866 5iOMROQ | motion#7170 +09:47:47.807-0700 871071645140406335 QB_2K-A | motion#8732 +09:47:47.820-0700 871071632192598026 SIKJftg | motion#2328 +09:47:47.829-0700 871071636458209331 U1wXFd8 | motion#3774 +09:47:47.831-0700 871071647996723201 eDHGAis | motion#0111 +09:47:47.843-0700 871071648902684782 ua5qofM | motion#9536 +09:47:48.008-0700 871071649628323851 Kt8V9cs | motion#8721 +09:47:48.011-0700 871071652228767764 Uo-I__M | motion#5521 +09:47:48.043-0700 871071648760082472 Vx4ow2g | motion#2562 +09:47:48.063-0700 871071649309532260 5rxY4Ls | motion#6993 +09:47:48.080-0700 871071653864566884 xUudv7E | motion#1856 +09:47:48.091-0700 871071635912933406 X1-JUcE | motion#8967 +09:47:48.165-0700 871071650462978069 HcRIEIs | motion#6826 +09:47:48.199-0700 871071653109571616 r0JF98I | motion#9929 +09:47:48.354-0700 871071650228097035 ZGpx9_k | motion#5331 +09:47:48.369-0700 871071651184377866 ZQU3Z8I | motion#8519 +09:47:48.382-0700 871071650500710420 kK8a9g0 | motion#2856 +09:47:48.397-0700 871071644767105044 zdhQNG0 | motion#7308 +09:47:48.424-0700 871071651255709716 HLoBKTc | motion#8845 +09:47:48.432-0700 871071647078182972 cH-J03M | motion#2111 +09:47:48.487-0700 871071650907553812 35cYZHs | motion#0403 +09:47:48.519-0700 871071649464713227 pBNb5Bs | motion#2233 +09:47:48.534-0700 871071650601394236 12puN5I | motion#4240 +09:47:48.537-0700 871071654799896587 7cTu6Dw | motion#5681 +09:47:48.553-0700 871071639306133535 PX8SM_o | motion#6555 +09:47:48.629-0700 871071656481796176 gifiEPg | motion#2956 +09:47:48.630-0700 871071649758322738 Ea9khBI | motion#9123 +09:47:48.631-0700 871071655248662558 GsAs4bA | motion#8952 +09:47:48.701-0700 871071656095940669 Yo4fR2M | motion#9663 +09:47:48.770-0700 871071640321130556 9ke_QIs | motion#9435 +09:47:48.883-0700 871071641046757427 h-_HB-Q | motion#1622 +09:47:49.024-0700 871071638534385745 vf1bl3Q | motion#7090 +09:47:49.032-0700 871071639708770345 b2Loagc | motion#1921 +09:47:49.054-0700 871071654799884409 n8rTN-M | motion#2432 +09:47:49.090-0700 871071652040036362 Kefp7Hk | motion#9757 +09:47:49.101-0700 871071652060999741 pMIYieU | motion#6515 +09:47:49.101-0700 871071654346903572 QDby8fk | motion#6655 +09:47:49.143-0700 871071653881319504 RsQtOXo | motion#2091 +09:47:49.152-0700 871071651792584765 tmiE7mU | motion#4171 +09:47:49.177-0700 871071649905127475 cd72VAQ | motion#3828 +09:47:49.180-0700 871071639830421566 zQYZLrM | motion#5509 +09:47:49.206-0700 871071655689068554 HmU943w | motion#7251 +09:47:49.209-0700 871071645308174367 d8i6q24 | motion#2915 +09:47:49.229-0700 871071654158143568 4-XdDGk | motion#1655 +09:47:49.229-0700 871071654141370500 AOrkOxc | motion#5198 +09:47:49.241-0700 871071653189287956 PILviAg | motion#3305 +09:47:49.307-0700 871071640971280394 9G5ZEYo | motion#1899 +09:47:49.367-0700 871071640711208971 ZK9fe_I | motion#6408 +09:47:49.381-0700 871071654661455872 h6Bl2xQ | motion#4339 +09:47:49.391-0700 871071653457703013 EBqHJCQ | motion#6084 +09:47:49.417-0700 871071657526177842 S7WDSmg | motion#3603 +09:47:49.443-0700 871071659241660518 rj7UY-o | motion#3672 +09:47:49.465-0700 871071658922889246 Ss3Mp-E | motion#6717 +09:47:49.500-0700 871071649913528322 0BLxG9o | motion#6485 +09:47:49.551-0700 871071653973614602 HFvXGDA | motion#1511 +09:47:49.556-0700 871071656544722995 Dn0PMgI | motion#9864 +09:47:49.556-0700 871071641495547964 k9r9tZQ | motion#0134 +09:47:49.580-0700 871071655408066621 5AaFulU | motion#5472 +09:47:49.592-0700 871071656309837915 UO1lCYw | motion#3617 +09:47:49.629-0700 871071658994184233 Z_lCamM | motion#2876 +09:47:49.662-0700 871071647837323294 3CUERrI | motion#7438 +09:47:49.672-0700 871071657542946868 G367Nss | motion#9942 +09:47:49.693-0700 871071657068990525 HvELud4 | motion#9479 +09:47:49.696-0700 871071657974960148 YMTtJn8 | motion#8479 +09:47:49.697-0700 871071637284454461 n_BDngo | motion#1215 +09:47:49.774-0700 871071655504531506 m7OAiRw | motion#1501 +09:47:49.788-0700 871071659619143840 Hlaoosw | motion#7589 +09:47:49.837-0700 871071656108498954 4SB3QH4 | motion#8880 +09:47:49.893-0700 871071657278701578 jR7gx5U | motion#3938 +09:47:49.903-0700 871071656590852106 O5U113s | motion#0941 +09:47:49.907-0700 871071640790896690 HRng9pg | motion#0337 +09:47:49.918-0700 871071642154070056 c7fU3BY | motion#7212 +09:47:49.932-0700 871071642250539038 L4DAa5k | motion#4109 +09:47:49.975-0700 871071655458377778 64FiRtw | motion#9836 +09:47:49.984-0700 871071657895284787 pvyIJFk | motion#8855 +09:47:50.037-0700 871071659057086497 gacDDwg | motion#3760 +09:47:50.100-0700 871071655189950474 vcwlC_g | motion#9745 +09:47:50.141-0700 871071658130165840 lb27tJM | motion#8806 +09:47:50.160-0700 871071658990006273 w52rIiw | motion#2496 +09:47:50.190-0700 871071661921820673 YsQdd1M | motion#0422 +09:47:50.193-0700 871071652354592798 ysWBLXs | motion#9708 +09:47:50.210-0700 871071658360840225 aW6xrIA | motion#8427 +09:47:50.226-0700 871071662102155264 qu7HMuw | motion#5548 +09:47:50.301-0700 871071656406298694 o6JTuuk | motion#9064 +09:47:50.307-0700 871071658193059850 s5Utqm4 | motion#0907 +09:47:50.312-0700 871071647468257291 pMtvr0I | motion#6855 +09:47:50.332-0700 871071662420946954 tdymzho | motion#5798 +09:47:50.347-0700 871071659677859890 CCcqxjQ | motion#4683 +09:47:50.354-0700 871071659304554516 77qx7Ec | motion#6868 +09:47:50.381-0700 871071659786907679 AyCmw8A | motion#5653 +09:47:50.384-0700 871071660877438986 dxDnwnw | motion#9522 +09:47:50.444-0700 871071657870106665 nYZvcFA | motion#0241 +09:47:50.495-0700 871071658759307324 BFqeYlg | motion#6098 +09:47:50.523-0700 871071662056042576 2-M-S1U | motion#6177 +09:47:50.537-0700 871071659870801951 TSfZtWA | motion#0145 +09:47:50.549-0700 871071646897803355 Oy4epjE | motion#7399 +09:47:50.561-0700 871071645765369897 uHd-ON4 | motion#3576 +09:47:50.572-0700 871071656746041364 dCfxE7I | motion#6002 +09:47:50.772-0700 871071658188890174 qD0TlQk | motion#1732 +09:47:50.779-0700 871071652602060879 aD6cNCw | motion#1114 +09:47:50.804-0700 871071658650267658 vj4KsqM | motion#2034 +09:47:50.805-0700 871071659971473438 yK5hlsQ | motion#7953 +09:47:50.900-0700 871071647761825822 bDhOtBU | motion#7724 +09:47:50.914-0700 871071661879861268 5GiKW3o | motion#4361 +09:47:50.926-0700 871071650920161290 pvDtr2Y | motion#8811 +09:47:50.937-0700 871071663247224832 5eQ-kGc | motion#7270 +09:47:50.991-0700 871071651264081951 iKVEYBw | motion#8842 +09:47:51.028-0700 871071662861332540 rHK66ws | motion#6741 +09:47:51.150-0700 871071662072823848 sJtyON4 | motion#4659 +09:47:51.155-0700 871071661749854278 7S281V4 | motion#9456 +09:47:51.188-0700 871071662429335695 efA7jME | motion#6971 +09:47:51.189-0700 871071662609666068 CiAMKLM | motion#9367 +09:47:51.211-0700 871071664572629043 JLHh_3c | motion#0033 +09:47:51.260-0700 871071624370192405 t-FzjxY | motion#0059 +09:47:51.269-0700 871071650437808228 ZQUZ990 | motion#6640 +09:47:51.309-0700 871071662513221692 WZCSMQk | motion#4824 +09:47:51.314-0700 871071654061703208 UtNutEE | motion#2268 +09:47:51.325-0700 871071663884763146 9C6jupE | motion#7256 +09:47:51.335-0700 871071661212958720 LHoVStM | motion#8406 +09:47:51.355-0700 871071662043443232 GmJb9Mo | motion#9415 +09:47:51.360-0700 871071664677474376 ETaop80 | motion#2683 +09:47:51.388-0700 871071662236377108 ek4Fmh4 | motion#4693 +09:47:51.462-0700 871071666078380083 cE3Ue4A | motion#2057 +09:47:51.533-0700 871071661531746364 HqNnsEk | motion#4441 +09:47:51.544-0700 871071663943471105 bQ1e-no | motion#5028 +09:47:51.654-0700 871071662865522728 Z3mBwpE | motion#3637 +09:47:51.654-0700 871071663846989855 NaPCXJc | motion#0926 +09:47:51.690-0700 871071661837910016 932YIfw | motion#5622 +09:47:51.724-0700 871071664660693044 ZCEhfy8 | motion#8559 +09:47:51.805-0700 871071664782344193 wsRPDAo | motion#3599 +09:47:51.822-0700 871071663301734450 DtTMxKM | motion#2739 +09:47:51.823-0700 871071669219893279 y97uI4A | motion#1060 +09:47:51.865-0700 871071666531356692 rrqJUlo | motion#4463 +09:47:51.871-0700 871071656062365776 8Vl3GTY | motion#4014 +09:47:51.905-0700 871071665524719696 NuS2izo | motion#8687 +09:47:51.911-0700 871071669203140630 bU_sZH8 | motion#7869 +09:47:51.920-0700 871071663503073340 wrfTNXc | motion#7812 +09:47:51.942-0700 871071664367083580 aR950es | motion#9579 +09:47:51.979-0700 871071653751308298 8crk8Dg | motion#3317 +09:47:52.068-0700 871071662743908412 _VK3hh4 | motion#9625 +09:47:52.076-0700 871071667269562428 hvryp0o | motion#8481 +09:47:52.112-0700 871071665298239498 gE3c95Y | motion#1669 +09:47:52.148-0700 871071655106080798 WMiRF94 | motion#3141 +09:47:52.159-0700 871071666023837696 JigIfoc | motion#6387 +09:47:52.175-0700 871071654594367598 SjIroMg | motion#0201 +09:47:52.243-0700 871071666065784872 o-9PA2c | motion#3071 +09:47:52.370-0700 871071654783090688 GCe_4sY | motion#1860 +09:47:52.418-0700 871071668536213504 d2p25z0 | motion#6890 +09:47:52.477-0700 871071669614178354 EW-Vrpg | motion#6235 +09:47:52.554-0700 871071665906413618 Dm-rIZA | motion#9518 +09:47:52.559-0700 871071671497392148 L0zx2dw | motion#7002 +09:47:52.572-0700 871071667902877787 6OpdejA | motion#7273 +09:47:52.583-0700 871071657383587883 ueDiXEo | motion#0580 +09:47:52.631-0700 871071667634454548 TUWBMtI | motion#5482 +09:47:52.667-0700 871071657018675200 6LyOzQI | motion#2445 +09:47:52.712-0700 871071669131804723 RHYofLo | motion#9151 +09:47:52.722-0700 871071667001110590 ki0KToM | motion#2806 +09:47:52.727-0700 871071659669467246 IUPnFdc | motion#9891 +09:47:52.727-0700 871071665315012609 eOgoK1I | motion#3858 +09:47:52.756-0700 871071666581688371 D11HYlM | motion#3049 +09:47:52.843-0700 871071664580993044 NL9ziyo | motion#6190 +09:47:52.942-0700 871071668406210571 LJwTxRc | motion#0610 +09:47:52.959-0700 871071671145087058 BYbE_bU | motion#7673 +09:47:53.013-0700 871071669937127425 Fo9kBXo | motion#5595 +09:47:53.116-0700 871071670775971860 EABgPV0 | motion#9691 +09:47:53.117-0700 871071667701563423 1vOfo9Y | motion#4842 +09:47:53.134-0700 871071650605588570 owxTXLY | motion#0713 +09:47:53.208-0700 871071669744197702 enapDHw | motion#1615 +09:47:53.230-0700 871071669383471114 ysb-UIU | motion#5616 +09:47:53.271-0700 871071669177950258 zmhapoA | motion#5603 +09:47:53.532-0700 871071672692797440 Tct3s3U | motion#6687 +09:47:53.597-0700 871071658365042759 zNFGTOc | motion#7255 +09:47:53.740-0700 871071667298902088 1kF-6R8 | motion#8184 +09:47:53.787-0700 871071669895192597 pJdV3Mk | motion#3307 +09:47:53.824-0700 871071657765273671 7hCSj4A | motion#4958 +09:47:53.840-0700 871071658897723472 K98owE8 | motion#6798 +09:47:53.848-0700 871071673502281760 wA0ZrPs | motion#6757 +09:47:53.862-0700 871071672264978452 6gZWOXA | motion#2217 +09:47:53.978-0700 871071671837134908 0e-gafY | motion#7463 +09:47:54.058-0700 871071674894807101 Vnonj-U | motion#3821 +09:47:54.061-0700 871071668523655179 g27JcsA | motion#9070 +09:47:54.092-0700 871071659484921886 KQJdBh0 | motion#0581 +09:47:54.157-0700 871071670834692126 nnDJZXU | motion#9842 +09:47:54.163-0700 871071673191907418 SNGlCsY | motion#4049 +09:47:54.182-0700 871071676991934564 82mxM6I | motion#3472 +09:47:54.189-0700 871071670075555860 SvskMGM | motion#6843 +09:47:54.227-0700 871071673745559612 0U5jjHk | motion#0707 +09:47:54.232-0700 871071671673565275 4_sWzGM | motion#8529 +09:47:54.240-0700 871071671547752529 FUw0NXA | motion#4187 +09:47:54.263-0700 871071667391189042 GN1eVMU | motion#5385 +09:47:54.270-0700 871071673963675698 g8eikAc | motion#1917 +09:47:54.382-0700 871071674894794803 fOAdt30 | motion#9200 +09:47:54.419-0700 871071668972437527 EgctqHU | motion#0922 +09:47:54.472-0700 871071675062562816 px8i1hk | motion#6119 +09:47:54.516-0700 871071674836090922 2_J8F1A | motion#0545 +09:47:54.521-0700 871071679001010197 xKEkYBI | motion#0312 +09:47:54.528-0700 871071676283113493 dcbZJog | motion#1994 +09:47:54.669-0700 871071678384467978 H9n3tL8 | motion#1559 +09:47:54.682-0700 871071673279995954 22BnBTo | motion#7746 +09:47:54.738-0700 871071664593596426 hZhF4Ok | motion#5655 +09:47:54.748-0700 871071664677470218 A1UA5QI | motion#2743 +09:47:54.770-0700 871071677243613216 aMrWpFU | motion#0765 +09:47:54.791-0700 871071664828465182 BSL-TZ0 | motion#8077 +09:47:54.843-0700 871071667424727061 C7MVmM8 | motion#6245 +09:47:54.894-0700 871071677319086101 xgQFZWI | motion#9782 +09:47:54.899-0700 871071674089488454 dx4CuVU | motion#9635 +09:47:54.907-0700 871071672453701662 2onoFSc | motion#1398 +09:47:54.912-0700 871071678841630780 zywAxQs | motion#4778 +09:47:54.925-0700 871071660810322010 BLO0na8 | motion#2188 +09:47:54.949-0700 871071676551557130 TuVMH9U | motion#8313 +09:47:54.989-0700 871071658029494292 QmCuODI | motion#6628 +09:47:54.993-0700 871071673212866600 OBrydqE | motion#8432 +09:47:55.018-0700 871071676950016070 cd0ILbI | motion#0969 +09:47:55.031-0700 871071677033893889 1w7_MBM | motion#3850 +09:47:55.097-0700 871071679827296357 7kc8Lhc | motion#5435 +09:47:55.351-0700 871071674592804925 ACwMW1Y | motion#3948 +09:47:55.428-0700 871071679579820062 pUqP7xs | motion#9182 +09:47:55.446-0700 871071679101681724 9NIL1Us | motion#9034 +09:47:55.471-0700 871071669349937223 D2NDVmA | motion#8404 +09:47:55.473-0700 871071677797240872 G3iEyR4 | motion#4145 +09:47:55.506-0700 871071677264588812 dhNktVU | motion#1279 +09:47:55.507-0700 871071664513904651 1FU-4Vs | motion#6399 +09:47:55.533-0700 871071670876651532 BN5MxmQ | motion#3521 +09:47:55.590-0700 871071666015465492 U3rBXms | motion#6772 +09:47:55.639-0700 871071681844756571 -8qwhyc | motion#0987 +09:47:55.676-0700 871071682092216330 bPKUxbA | motion#8031 +09:47:55.690-0700 871071683304382537 tfWvzFI | motion#1857 +09:47:55.737-0700 871071681546948638 WFYEREU | motion#3940 +09:47:55.746-0700 871071676065001472 nVIv4rw | motion#3336 +09:47:55.839-0700 871071681718939688 lhq5Sqk | motion#9108 +09:47:55.845-0700 871071682410991646 YBIUalU | motion#9486 +09:47:55.862-0700 871071678657089587 5yxBvb4 | motion#1489 +09:47:55.905-0700 871071679844061237 7_frMbM | motion#1432 +09:47:56.001-0700 871071682167701574 BMVpI-A | motion#5210 +09:47:56.029-0700 871071681354035260 dUMOU3o | motion#8645 +09:47:56.074-0700 871071686110351420 qDaR4cw | motion#2850 +09:47:56.124-0700 871071672785055815 RkPOz4M | motion#0563 +09:47:56.147-0700 871071677688217600 3XAWHIw | motion#5396 +09:47:56.173-0700 871071679609200640 VXhy5Dc | motion#3640 +09:47:56.184-0700 871071679231713411 fE4NxBs | motion#5718 +09:47:56.237-0700 871071683782516756 EiSopC8 | motion#0979 +09:47:56.238-0700 871071687574184008 fWVOKxY | motion#2151 +09:47:56.260-0700 871071682536808508 rBpnXik | motion#1468 +09:47:56.267-0700 871071680632590426 9WrmtK0 | motion#4668 +09:47:56.277-0700 871071668150370394 7Rr5Uz8 | motion#2350 +09:47:56.277-0700 871071674949324880 4lWKfEY | motion#1458 +09:47:56.297-0700 871071685779009583 yrEFkT8 | motion#4176 +09:47:56.303-0700 871071676652220466 UiiYM9Y | motion#2430 +09:47:56.318-0700 871071684717850645 HCFd_wg | motion#1032 +09:47:56.319-0700 871071667215028255 Zu5b8qs | motion#8217 +09:47:56.332-0700 871071667806437536 9b2LBjs | motion#3945 +09:47:56.338-0700 871071678686453810 s8tHltI | motion#6727 +09:47:56.473-0700 871071679584018443 00D4y3I | motion#5040 +09:47:56.509-0700 871071685883887727 DBKV77c | motion#6880 +09:47:56.531-0700 871071654812450876 RXJxYDk | motion#0647 +09:47:56.533-0700 871071671379963984 R0upr3g | motion#7584 +09:47:56.571-0700 871071685355397142 KbGmX1A | motion#0030 +09:47:56.613-0700 871071648034488360 hjvPZtg | motion#0415 +09:47:56.615-0700 871071683300163584 VFfry7k | motion#3526 +09:47:56.633-0700 871071682440364082 qgaEsY0 | motion#7970 +09:47:56.636-0700 871071678988423208 vwpJ0fM | motion#2811 +09:47:56.643-0700 871071688471764992 nVwAp4g | motion#3336 +09:47:56.656-0700 871071686915653652 qjlhPXk | motion#7692 +09:47:56.664-0700 871071688157175888 rSdrYfI | motion#6573 +09:47:56.685-0700 871071685716111401 9-8wWS8 | motion#2171 +09:47:56.715-0700 871071688102641706 _9RlfWg | motion#3977 +09:47:56.757-0700 871071682901717113 7PztvKs | motion#9105 +09:47:56.760-0700 871071685896466432 PQ8ORM4 | motion#9596 +09:47:56.783-0700 871071683606356008 BgZvJi8 | motion#1489 +09:47:56.876-0700 871071672826986537 w-QkF-s | motion#8152 +09:47:56.885-0700 871071665067536405 XeoG28o | motion#5585 +09:47:57.044-0700 871071674655707157 8khoYMs | motion#1375 +09:47:57.051-0700 871071688249446421 N9j_lMI | motion#0434 +09:47:57.062-0700 871071684575236166 eIv1dUg | motion#7265 +09:47:57.093-0700 871071683107233816 Z8RSvpQ | motion#2049 +09:47:57.138-0700 871071688010371132 Ue6A2co | motion#1874 +09:47:57.153-0700 871071682608123925 Vq_h-_Q | motion#8682 +09:47:57.164-0700 871071674806718494 exs9bBE | motion#3181 +09:47:57.211-0700 871071685279887420 h-xtngA | motion#9931 +09:47:57.228-0700 871071673925894165 fuIFOTQ | motion#7284 +09:47:57.239-0700 871071685456052275 BsVw_Sg | motion#3760 +09:47:57.411-0700 871071686080987238 WJpJHnE | motion#0926 +09:47:57.470-0700 871071688413028382 37gnxHU | motion#6242 +09:47:57.505-0700 871071689646153789 SzvqqPw | motion#5426 +09:47:57.520-0700 871071690015264779 KnuPTp0 | motion#9058 +09:47:57.538-0700 871071692238237706 Hagvqh8 | motion#8688 +09:47:57.668-0700 871071679886032966 oG1WWVQ | motion#3669 +09:47:57.884-0700 871071689918791740 x7l9Mrg | motion#1033 +09:47:57.891-0700 871071689168011274 4GU1gns | motion#8468 +09:47:57.901-0700 871071693148389457 ixdO39Y | motion#2275 +09:47:57.910-0700 871071692145954846 mj9Z2EM | motion#3233 +09:47:57.926-0700 871071687888760922 IHB_u8Y | motion#0990 +09:47:57.947-0700 871071692854792242 vEOlCuo | motion#3857 +09:47:58.038-0700 871071690963181638 EYK3uHU | motion#0095 +09:47:58.143-0700 871071689755226143 J7AsqGk | motion#2051 +09:47:58.181-0700 871071696130568264 TQPSIvw | motion#8538 +09:47:58.184-0700 871071695761465445 FPKOocA | motion#3169 +09:47:58.257-0700 871071695316852756 dj3PtW0 | motion#3538 +09:47:58.277-0700 871071689105096764 zl5ioZ0 | motion#0252 +09:47:58.281-0700 871071691625877514 HkASGkQ | motion#6218 +09:47:58.476-0700 871071681265934366 Ebeg-QE | motion#3789 +09:47:58.525-0700 871071690803806229 JFAKNNY | motion#5509 +09:47:58.532-0700 871071681492447262 2XQwIp0 | motion#2855 +09:47:58.559-0700 871071680955564092 CpV92P8 | motion#9030 +09:47:58.622-0700 871071682939478057 5tzHjBw | motion#0198 +09:47:58.679-0700 871071694687719464 2p4vPyc | motion#7408 +09:47:58.769-0700 871071691810418750 fAkscS0 | motion#2602 +09:47:58.773-0700 871071683971264532 QFmxSyc | motion#4552 +09:47:58.810-0700 871071681408548968 gU1_RpE | motion#0133 +09:47:58.816-0700 871071694540902461 RRVonbY | motion#1268 +09:47:58.818-0700 871071694062747688 8IaaC_Q | motion#6866 +09:47:58.929-0700 871071682746515557 A1_5O9A | motion#4588 +09:47:58.947-0700 871071699024625664 7NMp5BI | motion#6528 +09:47:58.975-0700 871071695891472415 XQe19yc | motion#2930 +09:47:59.012-0700 871071696550002750 ECHXf54 | motion#4311 +09:47:59.061-0700 871071682222256189 opHrCvo | motion#8596 +09:47:59.086-0700 871071696965238844 kGZ19F8 | motion#1669 +09:47:59.088-0700 871071682037678090 1EgWrIw | motion#6889 +09:47:59.164-0700 871071693500710942 LhcooMs | motion#6896 +09:47:59.179-0700 871071695585304577 gJHvFOI | motion#9005 +09:47:59.253-0700 871071695778226246 r4nXRNI | motion#2146 +09:47:59.322-0700 871071698357723207 HZ4AyIc | motion#7821 +09:47:59.361-0700 871071698282242068 aDQdKXg | motion#2826 +09:47:59.395-0700 871071696373833738 Ho82B24 | motion#1741 +09:47:59.396-0700 871071695941799996 SXE7e4U | motion#6365 +09:47:59.402-0700 871071698500333589 k6JjYwI | motion#2446 +09:47:59.422-0700 871071692481503242 _rqpdGA | motion#2205 +09:47:59.463-0700 871071683111419975 JyDeUY8 | motion#3839 +09:47:59.472-0700 871071698374496317 2yIJL2U | motion#8684 +09:47:59.473-0700 871071697556619274 1HdjGgU | motion#8829 +09:47:59.481-0700 871071700333248562 vpPNro4 | motion#9905 +09:47:59.508-0700 871071697795686410 cV8mX-E | motion#0502 +09:47:59.522-0700 871071681052024882 IvGq6W0 | motion#8882 +09:47:59.609-0700 871071690480844880 IFrR3dg | motion#8864 +09:47:59.660-0700 871071695404953660 hAx3IRo | motion#3304 +09:47:59.673-0700 871071701851570176 QMF5Cr8 | motion#8640 +09:47:59.683-0700 871071698668109827 vMzSeoU | motion#5137 +09:47:59.718-0700 871071697460138074 mr7FLCs | motion#6192 +09:47:59.832-0700 871071699293061130 7vEPnPc | motion#6525 +09:47:59.844-0700 871071700194820150 Ue2k67Y | motion#0089 +09:47:59.921-0700 871071689356742657 50kw924 | motion#9683 +09:47:59.967-0700 871071699322433537 N5hDCBU | motion#8348 +09:47:59.976-0700 871071700199018557 cSPLgu0 | motion#7606 +09:47:59.990-0700 871071698705850388 j74Ukh8 | motion#5915 +09:48:00.020-0700 871071697879597056 6XSyAdQ | motion#1637 +09:48:00.066-0700 871071702375870464 wgpwhig | motion#3163 +09:48:00.087-0700 871071698575851540 wwud7Yw | motion#7864 +09:48:00.131-0700 871071699775393842 jXsmIPk | motion#2297 +09:48:00.131-0700 871071686722740255 9Sw1uj0 | motion#6963 +09:48:00.133-0700 871071699666366484 F39gshk | motion#8500 +09:48:00.137-0700 871071700953989192 6Huc4JU | motion#1458 +09:48:00.150-0700 871071703156015184 D-RX_2g | motion#8632 +09:48:00.161-0700 871071700723335218 qEi4AIg | motion#4516 +09:48:00.163-0700 871071698349350953 8JjI4As | motion#4711 +09:48:00.205-0700 871071699846721577 3v6wc78 | motion#6271 +09:48:00.209-0700 871071700937224192 LajNOgc | motion#9991 +09:48:00.328-0700 871071689805529170 o8i6_Hc | motion#0196 +09:48:00.359-0700 871071699741868042 sqOAEH8 | motion#3417 +09:48:00.385-0700 871071700995932200 gcIxofk | motion#4284 +09:48:00.426-0700 871071688182341672 0Th2o94 | motion#4371 +09:48:00.426-0700 871071702648512595 HQ6Wl_o | motion#6049 +09:48:00.428-0700 871071702505889913 HHAKdaQ | motion#0175 +09:48:00.499-0700 871071689113473104 nwqjebY | motion#9132 +09:48:00.669-0700 871071702229078017 3AgPfRQ | motion#5629 +09:48:00.692-0700 871071693576237096 OcQ0hPM | motion#4214 +09:48:00.700-0700 871071700823990324 NgFN5rs | motion#5897 +09:48:00.713-0700 871071702078066698 JQpYt_0 | motion#7846 +09:48:00.754-0700 871071702933708801 oQSj0p8 | motion#4616 +09:48:00.887-0700 871071705274155058 1r7nxuw | motion#1074 +09:48:00.893-0700 871071706251395113 1gSRj04 | motion#7640 +09:48:00.915-0700 871071702719811654 mCQ1gyI | motion#3759 +09:48:00.925-0700 871071703105695807 D0H8YdQ | motion#3038 +09:48:00.949-0700 871071701251797012 uqbam9E | motion#4408 +09:48:00.950-0700 871071699569897483 QOf1AhQ | motion#3658 +09:48:00.967-0700 871071705227993088 awOI9Nw | motion#2494 +09:48:00.975-0700 871071706020708382 LTM6oac | motion#5498 +09:48:01.071-0700 871071705169293405 KNkFfMg | motion#9384 +09:48:01.114-0700 871071704074559569 HHzc2tM | motion#2745 +09:48:01.148-0700 871071704154247239 ip-8830 | motion#9497 +09:48:01.171-0700 871071703122472982 bOGoTME | motion#8998 +09:48:01.180-0700 871071705689374740 J1R_zAQ | motion#1962 +09:48:01.250-0700 871071708340158485 ITIDI30 | motion#2824 +09:48:01.282-0700 871071702132617246 DdYV9cY | motion#3915 +09:48:01.295-0700 871071708193378364 CaidHmQ | motion#4430 +09:48:01.299-0700 871071705886511114 v7Ez6gg | motion#1462 +09:48:01.338-0700 871071708554072074 CKcA2UI | motion#0320 +09:48:01.404-0700 871071706222067742 3fkCpvQ | motion#2723 +09:48:01.452-0700 871071704296878140 gFSpes8 | motion#5712 +09:48:01.457-0700 871071709506187304 4vzqb2U | motion#2273 +09:48:01.474-0700 871071708763803719 1AZW8-g | motion#9903 +09:48:01.492-0700 871071708772204604 lHDMawg | motion#2532 +09:48:01.565-0700 871071709367787540 1VI-rjQ | motion#8579 +09:48:01.583-0700 871071707312570369 8QBedrc | motion#0571 +09:48:01.663-0700 871071707790708786 BZ5fSQ4 | motion#8649 +09:48:01.782-0700 871071703114063992 xjxkz3g | motion#1715 +09:48:01.786-0700 871071671535140864 gZFH4gU | motion#6132 +09:48:01.843-0700 871071706230444042 Suaxeoc | motion#2615 +09:48:01.853-0700 871071706385629255 8mto_UA | motion#7795 +09:48:01.877-0700 871071711708192788 huev-Mo | motion#5059 +09:48:01.878-0700 871071695744667750 Kcd-uLg | motion#4920 +09:48:01.885-0700 871071708398882856 vYV0tIA | motion#4059 +09:48:01.942-0700 871071695866302516 wk5_OCA | motion#2043 +09:48:01.961-0700 871071707165753364 n8wfW5I | motion#8564 +09:48:02.063-0700 871071711397830696 -gZDcQo | motion#1534 +09:48:02.063-0700 871071709682335755 NRYZtvM | motion#6545 +09:48:02.121-0700 871071707669073930 Wxn_VHs | motion#2756 +09:48:02.129-0700 871071706205270046 EzD_pI8 | motion#0777 +09:48:02.200-0700 871071709967560745 HS4sr1U | motion#2337 +09:48:02.261-0700 871071708612812820 c44_DMU | motion#7209 +09:48:02.275-0700 871071694570262548 h8KZw2I | motion#6031 +09:48:02.328-0700 871071709514592287 Pob952E | motion#5609 +09:48:02.447-0700 871071705924259911 asdDfZk | motion#8754 +09:48:02.449-0700 871071699687321631 p-VYd1I | motion#8438 +09:48:02.541-0700 871071709401350164 5ztRJ6g | motion#6712 +09:48:02.547-0700 871071711674646631 TmXGt34 | motion#9081 +09:48:02.550-0700 871071710718345317 QvJuv30 | motion#8274 +09:48:02.612-0700 871071708705083412 XyMKXeI | motion#4561 +09:48:02.657-0700 871071714287697930 YuhOzXQ | motion#5686 +09:48:02.719-0700 871071709569105981 4chtiSc | motion#7488 +09:48:02.739-0700 871071709585866802 EgQABt0 | motion#3147 +09:48:02.740-0700 871071712261849089 Vdrc9WA | motion#7395 +09:48:02.752-0700 871071709938200606 lUGZg80 | motion#0425 +09:48:02.752-0700 871071696373841941 UQZQYes | motion#9624 +09:48:02.766-0700 871071714782621757 Ilfmq1Y | motion#8150 +09:48:02.788-0700 871071710177296464 PAIYGzc | motion#9657 +09:48:02.860-0700 871071713662758932 8Zv7D7I | motion#7377 +09:48:02.869-0700 871071711204888656 SSm8Zaw | motion#2972 +09:48:02.910-0700 871071709246144533 ZqyfPzM | motion#5742 +09:48:02.928-0700 871071711573971034 NdO7p6Y | motion#3668 +09:48:02.981-0700 871071710504419418 So2OKL4 | motion#3590 +09:48:03.142-0700 871071710781255730 885Qiu4 | motion#9642 +09:48:03.154-0700 871071707773960222 nqnucgs | motion#4581 +09:48:03.242-0700 871071706272366603 oKf3hZ8 | motion#3839 +09:48:03.347-0700 871071715374014524 oKZgZxU | motion#2976 +09:48:03.550-0700 871071712458969119 mVc5N0Q | motion#9046 +09:48:03.808-0700 871071717643132958 Q8WLhQI | motion#0239 +09:48:03.844-0700 871071717131444275 nQGZXN8 | motion#2908 +09:48:03.851-0700 871071718351994880 5-gHoHA | motion#0980 +09:48:03.923-0700 871071716594552892 IoA7r2Y | motion#8035 +09:48:03.938-0700 871071717802516523 J4Oq_2g | motion#7926 +09:48:03.987-0700 871071717118865488 NgQvSNw | motion#3827 +09:48:04.023-0700 871071720717549629 9Zx6BNA | motion#4187 +09:48:04.027-0700 871071718821744731 GJfgQ_s | motion#6844 +09:48:04.111-0700 871071716678463518 UjIvY58 | motion#5012 +09:48:04.162-0700 871071720721764404 hFNPbRI | motion#8988 +09:48:04.176-0700 871071690904444989 9wDBGNM | motion#1860 +09:48:04.195-0700 871071717550878781 dHiO1dk | motion#9831 +09:48:04.200-0700 871071703852257300 cb_cp_k | motion#0044 +09:48:04.242-0700 871071703734820895 DUlJdpE | motion#4674 +09:48:04.286-0700 871071703885811732 qgJdlKc | motion#8017 +09:48:04.299-0700 871071716607139900 IR_KS-w | motion#9478 +09:48:04.377-0700 871071716586160139 FClW1Ok | motion#1287 +09:48:04.483-0700 871071706763120680 t-45b4I | motion#5688 +09:48:04.559-0700 871071705202827345 PE3aW2Y | motion#6536 +09:48:04.568-0700 871071715147530291 wu-EwOs | motion#8262 +09:48:04.608-0700 871071715252383825 J4hjX4I | motion#0119 +09:48:04.618-0700 871071708533121075 UyNTmB0 | motion#4376 +09:48:04.698-0700 871071720746921994 qk-sCl8 | motion#5508 +09:48:04.736-0700 871071719723507752 Mu3qX2I | motion#3185 +09:48:04.813-0700 871071721346719754 4nLiOj0 | motion#5097 +09:48:04.838-0700 871071719186628649 TBA7gRY | motion#0312 +09:48:04.864-0700 871071719908048947 6tckkYI | motion#9738 +09:48:04.886-0700 871071722240090182 X16riRY | motion#3932 +09:48:04.897-0700 871071723259297802 Eeha6j8 | motion#2306 +09:48:04.921-0700 871071720298119169 _WdMAlU | motion#3135 +09:48:04.932-0700 871071720440758302 bW5Iq2U | motion#4724 +09:48:05.047-0700 871071723628429334 jM_Fe30 | motion#7713 +09:48:05.237-0700 871071723250933780 0IP7NvE | motion#6363 +09:48:05.459-0700 871071723640983632 io3hKcE | motion#7580 +09:48:05.460-0700 871071710743527486 CpE5usw | motion#9792 +09:48:05.488-0700 871071721061511179 ctkRWV0 | motion#6500 +09:48:05.519-0700 871071726597992449 fYGmtsY | motion#0652 +09:48:05.567-0700 871071711158763592 x5uXPEY | motion#7094 +09:48:05.592-0700 871071721338339368 El3lXZQ | motion#2544 +09:48:05.652-0700 871071666904633364 QR5c9bw | motion#1255 +09:48:05.667-0700 871071701134348309 XF3nVzE | motion#8245 +09:48:05.687-0700 871071727424249876 mdXJYMQ | motion#9542 +09:48:05.719-0700 871071721996816434 JAHxl6c | motion#4193 +09:48:05.780-0700 871071716745568296 Lowub1s | motion#0710 +09:48:05.785-0700 871071723653570670 _0x1DRM | motion#7702 +09:48:05.877-0700 871071726149181450 SQG1Aj0 | motion#4351 +09:48:05.884-0700 871071713465630820 vjDJ-NM | motion#4479 +09:48:05.921-0700 871071722386882631 4T-LDsg | motion#0571 +09:48:05.942-0700 871071726941929502 BbCXPl8 | motion#7513 +09:48:05.958-0700 871071724739891281 P8SSY3g | motion#9642 +09:48:05.958-0700 871071720990191696 BTqHAjo | motion#9786 +09:48:06.020-0700 871071728514768976 yc2CAXo | motion#9901 +09:48:06.102-0700 871071725855596605 EQFQMwU | motion#7750 +09:48:06.273-0700 871071725268390029 -nsuGLQ | motion#5048 +09:48:06.284-0700 871071715952820304 gfgNgGU | motion#7792 +09:48:06.355-0700 871071724312072222 _sCda_k | motion#1537 +09:48:06.359-0700 871071729676603392 IOo0NKs | motion#4563 +09:48:06.369-0700 871071729533980692 oPKrtJg | motion#2742 +09:48:06.457-0700 871071729819205633 6QIEz1k | motion#4034 +09:48:06.481-0700 871071727193575434 lScysZw | motion#7841 +09:48:06.585-0700 871071715323682866 gfijVw4 | motion#7203 +09:48:06.610-0700 871071719228575804 DslEnm0 | motion#3972 +09:48:06.744-0700 871071731442405406 Q3XlQz0 | motion#4300 +09:48:06.771-0700 871071729970200627 wClSl50 | motion#2851 +09:48:06.801-0700 871071726124007445 XJm_1ps | motion#7505 +09:48:06.802-0700 871071716615540797 _atrPW4 | motion#0222 +09:48:06.949-0700 871071727105482784 KY_-mow | motion#6723 +09:48:07.019-0700 871071731694047273 BF2yrLM | motion#5177 +09:48:07.020-0700 871071729294925825 A1FXJts | motion#8862 +09:48:07.023-0700 871071709074169918 RR196P4 | motion#2590 +09:48:07.049-0700 871071733275316244 BOzQgNw | motion#6524 +09:48:07.108-0700 871071732864266302 4Cl9sPk | motion#9531 +09:48:07.124-0700 871071729714352138 syti29g | motion#6875 +09:48:07.150-0700 871071716510687272 M-cJT90 | motion#4494 +09:48:07.369-0700 871071719417327637 I4JplOI | motion#5681 +09:48:07.429-0700 871071726266646600 UwWwX5s | motion#7900 +09:48:07.429-0700 871071727227125820 0I-MQXQ | motion#0584 +09:48:07.430-0700 871071733283692594 ZNkSYmw | motion#5983 +09:48:07.447-0700 871071730007937054 bDnwPsE | motion#4729 +09:48:07.472-0700 871071717882212472 XiUiQ70 | motion#1593 +09:48:07.534-0700 871071731090096218 KHPKaQU | motion#1156 +09:48:07.685-0700 871071734072246312 7C7LvSc | motion#3033 +09:48:07.903-0700 871071717605388360 vrKWdlE | motion#8640 +09:48:07.995-0700 871071720499466240 0QqGMUA | motion#6830 +09:48:08.063-0700 871071732822310922 VVZeVW0 | motion#3446 +09:48:08.315-0700 871071732516159549 stglpcc | motion#0655 +09:48:08.612-0700 871071733321441281 tLthOrc | motion#5003 +09:48:08.710-0700 871071732600041532 lWTzhMc | motion#9947 +09:48:08.735-0700 871071732503547904 IluTD4w | motion#5639 +09:48:08.781-0700 871071732402909204 -EmMb70 | motion#0282 +09:48:08.882-0700 871071735997415435 dmKH7BI | motion#5220 +09:48:09.068-0700 871071733040414730 0ch-lpo | motion#4892 +09:48:09.167-0700 871071735397646417 yirUzvE | motion#0818 +09:48:09.233-0700 871071736727216199 gKEM-Ls | motion#0029 +09:48:09.233-0700 871071716024143902 GjKoxQY | motion#3002 +09:48:09.280-0700 871071732356763662 niH9H5Q | motion#9670 +09:48:09.340-0700 871071719694143489 hlGMl9A | motion#9920 +09:48:09.346-0700 871071740162347098 z1a1hRw | motion#6718 +09:48:09.385-0700 871071737050181672 r9YWCWs | motion#4168 +09:48:09.410-0700 871071738715312260 jlkkkeI | motion#1628 +09:48:09.475-0700 871071740263026728 _n5QNTA | motion#1149 +09:48:09.742-0700 871071739675824179 eWH5JBQ | motion#9032 +09:48:09.759-0700 871071738702729236 yHuuU94 | motion#0340 +09:48:09.770-0700 871071740741165096 50dgibw | motion#7190 +09:48:09.786-0700 871071702291996712 H2lCeqA | motion#2065 +09:48:09.837-0700 871071737872273408 jO4P6iI | motion#5975 +09:48:09.931-0700 871071733862506576 mKoDO9Y | motion#9225 +09:48:09.997-0700 871071735846412348 X7-a3w8 | motion#5749 +09:48:10.013-0700 871071734445506570 4rl7T8k | motion#5732 +09:48:10.059-0700 871071731098484757 cCp2hHA | motion#0993 +09:48:10.084-0700 871071727675908186 FNhby50 | motion#4114 +09:48:10.167-0700 871071728888053760 st6ln8E | motion#8219 +09:48:10.237-0700 871071728246353961 QaFd-_k | motion#0846 +09:48:10.288-0700 871071739709362196 XS50QlM | motion#5064 +09:48:10.404-0700 871071720923099187 W5dvOyQ | motion#4032 +09:48:10.423-0700 871071726170165249 UzLTqVY | motion#5683 +09:48:10.441-0700 871071733090771054 5ox7iBY | motion#7420 +09:48:10.493-0700 871071734797848616 fxbx7WY | motion#2145 +09:48:10.610-0700 871071735884165190 FZjYi2w | motion#7101 +09:48:10.628-0700 871071746046955521 H1qj5TE | motion#4511 +09:48:10.971-0700 871071744583172287 S-ub2UE | motion#5375 +09:48:10.992-0700 871071746143440947 tPOGyII | motion#8824 +09:48:11.011-0700 871071743815585862 rzwZPCA | motion#2638 +09:48:11.164-0700 871071745740787752 DMo2IPk | motion#5141 +09:48:11.243-0700 871071744516034601 Qpu4w6k | motion#8807 +09:48:11.303-0700 871071746999062548 VxpgxuQ | motion#8253 +09:48:11.316-0700 871071747183607858 yao5WY4 | motion#9616 +09:48:11.528-0700 871071745715626045 LWAoB50 | motion#2437 +09:48:11.627-0700 871071752195821649 N1uheYM | motion#2641 +09:48:11.747-0700 871071748894896169 raWu0Cc | motion#1716 +09:48:11.799-0700 871071744851574795 G0lMVUA | motion#3966 +09:48:11.864-0700 871071750996250634 TvgXnYg | motion#3072 +09:48:11.897-0700 871071748467064864 Wwi7YD0 | motion#8422 +09:48:11.927-0700 871071746730655776 jEQ7Aj8 | motion#0823 +09:48:12.231-0700 871071754292977734 SKgW9mo | motion#1991 +09:48:12.255-0700 871071753789644830 msO3SRE | motion#0074 +09:48:12.276-0700 871071713054560269 T9wEzaY | motion#3328 +09:48:12.313-0700 871071736555262022 nDTw92s | motion#4671 +09:48:12.464-0700 871071742221746236 cQYuwI8 | motion#3416 +09:48:12.519-0700 871071755068903454 RK9fp6A | motion#8077 +09:48:13.174-0700 871071757539377193 xtspuVY | motion#9629 +09:48:13.289-0700 871071751428243526 -dFYA6o | motion#7710 +09:48:13.380-0700 871071754779516958 IcFGEUM | motion#6291 +09:48:13.559-0700 871071752464269332 X0qHaAU | motion#3832 +09:48:13.633-0700 871071748240592937 Dw2h61c | motion#4269 +09:48:13.714-0700 871071752199999488 bs13PaE | motion#1281 +09:48:13.759-0700 871071755094065222 4glWKNU | motion#8577 +09:48:13.906-0700 871071754364289127 m2zUECY | motion#5793 +09:48:13.965-0700 871071744868360253 ckR3Fk8 | motion#2686 +09:48:13.987-0700 871071761251323986 vv4-sF4 | motion#2488 +09:48:14.031-0700 871071743131934770 JEcswuM | motion#6379 +09:48:14.038-0700 871071740942516264 7KcqRJE | motion#0258 +09:48:14.090-0700 871071744629293087 lhSyGus | motion#8718 +09:48:14.189-0700 871071759619751976 1RG0X1s | motion#1489 +09:48:14.196-0700 871071740984426526 kWXzu7M | motion#1022 +09:48:14.217-0700 871071756499185745 uawRrVU | motion#0521 +09:48:14.233-0700 871071762354413608 XCkU5ss | motion#8550 +09:48:14.278-0700 871071747313639504 0gAtQMM | motion#7629 +09:48:14.319-0700 871071756801146890 0WVEH6E | motion#1565 +09:48:14.503-0700 871071758428536872 yW70-ww | motion#0888 +09:48:14.505-0700 871071753277947934 h-gNoeY | motion#4755 +09:48:14.545-0700 871071761767231509 PW_AbB0 | motion#2644 +09:48:14.547-0700 871071759795896330 APHjwnk | motion#5515 +09:48:14.550-0700 871071762161500220 -9FbmPc | motion#3503 +09:48:14.550-0700 871071755278647377 KB1K4sE | motion#1612 +09:48:14.701-0700 871071760378888253 9meNDjc | motion#1624 +09:48:14.736-0700 871071765391097927 AzLFxSk | motion#3319 +09:48:14.772-0700 871071762320863302 jjqw_g4 | motion#3220 +09:48:14.831-0700 871071760181772308 GX-Nt7o | motion#1828 +09:48:14.868-0700 871071760999669821 m_mHhzU | motion#8229 +09:48:14.987-0700 871071763180716052 nIvEkO4 | motion#9115 +09:48:15.172-0700 871071760316002315 ReVm4-Y | motion#5205 +09:48:15.266-0700 871071761570078750 l2N4_lw | motion#8048 +09:48:15.530-0700 871071763352678440 7-LESes | motion#3891 +09:48:15.600-0700 871071766917832794 _Ik635Q | motion#0235 +09:48:15.648-0700 871071763142942780 sFnIQs0 | motion#5870 +09:48:15.652-0700 871071742351794217 01jyl0U | motion#9199 +09:48:15.699-0700 871071767635046420 0oQIFK4 | motion#7885 +09:48:15.717-0700 871071767714750495 r_kGrZM | motion#4040 +09:48:15.720-0700 871071757551947786 ANDV5nQ | motion#5722 +09:48:15.889-0700 871071764703223848 zcTuT04 | motion#1232 +09:48:16.065-0700 871071766603239424 W0x-d2Y | motion#0195 +09:48:16.115-0700 871071767387603015 i54Ln10 | motion#1842 +09:48:16.133-0700 871071762035638273 VM1fOmc | motion#7355 +09:48:16.135-0700 871071766628401212 S-c-LmE | motion#2877 +09:48:16.208-0700 871071767484047370 53FTqa8 | motion#5827 +09:48:16.270-0700 871071750228672543 tcDI_sE | motion#3262 +09:48:16.392-0700 871071765449801819 02AM7lM | motion#5905 +09:48:16.442-0700 871071752334221342 ppAC9TQ | motion#0342 +09:48:16.475-0700 871071764346716193 4h43FIs | motion#7805 +09:48:16.520-0700 871071768713003010 FDV0ZKE | motion#9841 +09:48:16.560-0700 871071767425343488 XbHabcc | motion#6223 +09:48:16.958-0700 871071749259808779 kPLE40Q | motion#2987 +09:48:17.030-0700 871071771351216139 x4HoPVo | motion#5139 +09:48:17.091-0700 871071769795112995 -XkoMTA | motion#4499 +09:48:17.213-0700 871071759430983690 pWky5Z4 | motion#4190 +09:48:17.271-0700 871071769044332604 LPXS4qg | motion#2993 +09:48:17.275-0700 871071773410619402 A65aSBc | motion#2002 +09:48:17.480-0700 871071773599363092 c1JNISU | motion#7035 +09:48:17.576-0700 871071773611921501 vhIpqpg | motion#1501 +09:48:17.680-0700 871071774538862642 nyJm5u8 | motion#8522 +09:48:17.707-0700 871071772164894760 crjLPrg | motion#6549 +09:48:17.842-0700 871071760580218900 wChdI80 | motion#7003 +09:48:17.879-0700 871071771208593418 ZA_xxYg | motion#4007 +09:48:17.974-0700 871071764241870928 HhrOGds | motion#5736 +09:48:17.980-0700 871071764870995988 wTWLV9M | motion#5395 +09:48:17.982-0700 871071773242818600 DSEPd2E | motion#1577 +09:48:17.991-0700 871071773599359046 _kz7TYM | motion#0091 +09:48:18.100-0700 871071773997809695 BqrCp94 | motion#5748 +09:48:18.131-0700 871071779232313365 qjl1ays | motion#2531 +09:48:18.316-0700 871071764283813988 4sQYZv0 | motion#0731 +09:48:18.371-0700 871071765638565899 b3xp-Uk | motion#1322 +09:48:18.435-0700 871071770021617664 lvUqSWo | motion#5479 +09:48:18.444-0700 871071765324005376 EmwIA6U | motion#9377 +09:48:18.465-0700 871071772357824532 GhA69oE | motion#5481 +09:48:18.485-0700 871071774270455808 mHH2xvw | motion#6162 +09:48:18.542-0700 871071778401845329 tpeBbBM | motion#0902 +09:48:18.690-0700 871071746864844802 J4x4rcI | motion#6735 +09:48:18.709-0700 871071781547556914 0jI99JU | motion#4813 +09:48:18.883-0700 871071758864773153 zgFHywQ | motion#8408 +09:48:18.909-0700 871071782319296552 LfCy8VU | motion#3976 +09:48:18.951-0700 871071781228798012 YUPnyI0 | motion#9503 +09:48:19.043-0700 871071781337833483 dLkycdE | motion#6920 +09:48:19.147-0700 871071768280965130 uLA3hsE | motion#4490 +09:48:19.151-0700 871071783883788340 nFk7HfE | motion#9459 +09:48:19.153-0700 871071781593681941 St-UGWI | motion#2576 +09:48:19.195-0700 871071778158575636 tHtGng0 | motion#6100 +09:48:19.374-0700 871071767484063855 HHI17yE | motion#5170 +09:48:19.444-0700 871071780733865984 H8Y7P8E | motion#5838 +09:48:19.491-0700 871071781111337031 KIQLQVA | motion#7713 +09:48:19.656-0700 871071786681385031 eO2FIgM | motion#7407 +09:48:19.777-0700 871071779546890330 meodeFY | motion#5748 +09:48:19.796-0700 871071764204122234 aUEEDhI | motion#6741 +09:48:19.823-0700 871071776069783553 qHoH0Gg | motion#3121 +09:48:19.849-0700 871071781061017682 XiyaPsY | motion#4458 +09:48:19.854-0700 871071780633194507 W1i6EjM | motion#8109 +09:48:19.903-0700 871071783183335544 c4T9wcE | motion#2094 +09:48:19.979-0700 871071785972547594 QaaIzWo | motion#3312 +09:48:20.037-0700 871071774647943210 H85eKYU | motion#7810 +09:48:20.086-0700 871071781732110386 qCe8sj0 | motion#0131 +09:48:20.208-0700 871071771728703509 w9gGwcU | motion#5402 +09:48:20.253-0700 871071784177385472 wV0OZp0 | motion#1973 +09:48:20.377-0700 871071785293082644 r9euoUY | motion#2062 +09:48:20.409-0700 871071784844267530 0vNqGLg | motion#2281 +09:48:20.410-0700 871071775692324874 zBv7xC8 | motion#4434 +09:48:20.541-0700 871071771510579230 5LNzbB8 | motion#7346 +09:48:20.550-0700 871071786488430602 9UFyNBY | motion#6620 +09:48:20.643-0700 871071787910299711 ftuOEzg | motion#4531 +09:48:20.743-0700 871071786224189460 fH45jCE | motion#6836 +09:48:20.806-0700 871071786056437799 ySKyyQ8 | motion#7897 +09:48:20.832-0700 871071785855111189 s5ryDu0 | motion#1199 +09:48:20.835-0700 871071786568126554 Cx4PLy0 | motion#1400 +09:48:20.903-0700 871071773242839071 N1nIEWM | motion#2254 +09:48:20.978-0700 871071785418911775 fXaFihE | motion#5666 +09:48:21.004-0700 871071789709672448 0QJY9tM | motion#0527 +09:48:21.110-0700 871071774043959326 oGz4_iY | motion#2249 +09:48:21.135-0700 871071787352481863 hOrND-A | motion#0951 +09:48:21.153-0700 871071789701296239 Dp0JNlc | motion#0370 +09:48:21.224-0700 871071775591657492 p2juWnM | motion#5131 +09:48:21.299-0700 871071789936160780 UfNTkNU | motion#4329 +09:48:21.307-0700 871071775801364551 B5lmBCg | motion#9681 +09:48:21.331-0700 871071786169683989 oDQnluI | motion#8108 +09:48:21.337-0700 871071775402905600 JhdH9kY | motion#7046 +09:48:21.469-0700 871071790888288298 ykWp8kI | motion#6619 +09:48:21.555-0700 871071794382131210 3HTMz1U | motion#5330 +09:48:21.593-0700 871071790808563792 mcH_R7o | motion#0254 +09:48:21.636-0700 871071793010601984 0ZxGjiU | motion#3089 +09:48:21.683-0700 871071791211216917 0PgS4IA | motion#9698 +09:48:21.866-0700 871071776522764330 VDVFBMA | motion#4474 +09:48:21.892-0700 871071787566379059 -7JReBg | motion#7659 +09:48:22.106-0700 871071791337054228 ChpROVs | motion#9348 +09:48:22.148-0700 871071796378632192 gtiwtd0 | motion#1826 +09:48:22.203-0700 871071791660007424 gTaTBGc | motion#9096 +09:48:22.380-0700 871071794570874930 m1aH2sk | motion#1146 +09:48:22.595-0700 871071794445033563 Z-hMrMk | motion#7621 +09:48:22.648-0700 871071794344370206 UoPY6NY | motion#7586 +09:48:22.707-0700 871071790363983913 oDMmnb8 | motion#1398 +09:48:22.855-0700 871071797288767509 _vPRSus | motion#2701 +09:48:22.958-0700 871071793299988481 u2mv7D0 | motion#4281 +09:48:22.999-0700 871071783598575666 24Mw4WA | motion#5171 +09:48:23.079-0700 871071787352461412 _-y35-Y | motion#5523 +09:48:23.096-0700 871071797716607007 4DdA530 | motion#4238 +09:48:23.185-0700 871071787054673970 FG86FY8 | motion#7574 +09:48:23.252-0700 871071797443964948 KvfCQ1Y | motion#6196 +09:48:23.272-0700 871071800363204649 U0vAGrY | motion#5823 +09:48:23.312-0700 871071773649690685 _h459t0 | motion#3263 +09:48:23.394-0700 871071796554776626 Jp1KuH8 | motion#8033 +09:48:23.420-0700 871071796907098192 gtUxU34 | motion#9468 +09:48:23.467-0700 871071801873137684 VrZnGHs | motion#7198 +09:48:23.523-0700 871071799817932851 9TSug2M | motion#3648 +09:48:23.530-0700 871071794558279700 grWE1Pk | motion#6732 +09:48:23.609-0700 871071770902421585 J67_8e0 | motion#8530 +09:48:23.623-0700 871071801546010635 ZPmVBBc | motion#6275 +09:48:23.668-0700 871071800669401139 _r2VewI | motion#1060 +09:48:23.776-0700 871071799071375420 7xbMxiw | motion#7060 +09:48:23.808-0700 871071793425834054 EGtBtus | motion#9365 +09:48:23.946-0700 871071800656801862 NJcxUGg | motion#5269 +09:48:24.013-0700 871071803202740226 oTUxOqo | motion#7925 +09:48:24.208-0700 871071799906021397 O6tVuc4 | motion#7974 +09:48:24.373-0700 871071799377543178 dTDZxGs | motion#3412 +09:48:24.461-0700 871071790418493440 lMrs4ME | motion#8414 +09:48:24.673-0700 871071802099658842 XijppqI | motion#6369 +09:48:24.692-0700 871071804771405894 VvdHH6Q | motion#5050 +09:48:24.706-0700 871071793027371078 fqE7B_o | motion#4387 +09:48:24.721-0700 871071805505409024 Jct2uW0 | motion#3337 +09:48:24.775-0700 871071789365731389 REX5dGY | motion#8688 +09:48:24.843-0700 871071807648702535 zH7F_ac | motion#4186 +09:48:24.868-0700 871071805543161898 -1sV6NA | motion#0168 +09:48:24.934-0700 871071804649775104 DRwPmOU | motion#6374 +09:48:25.021-0700 871071807778750464 VSQLb0k | motion#6402 +09:48:25.042-0700 871071790875705404 e7PVEj4 | motion#9285 +09:48:25.136-0700 871071806096805889 A_M-24Y | motion#1738 +09:48:25.207-0700 871071805127938090 2CAnX50 | motion#1229 +09:48:25.277-0700 871071802514866207 6Z-lH2k | motion#3159 +09:48:25.298-0700 871071805648035931 WEIJtg0 | motion#4147 +09:48:25.533-0700 871071809741680724 79tycDE | motion#0426 +09:48:25.555-0700 871071792788279337 5mXUuZg | motion#6572 +09:48:25.649-0700 871071765856653373 1-41HQQ | motion#6043 +09:48:25.743-0700 871071807652917270 8glKRME | motion#6687 +09:48:25.873-0700 871071808118489169 X_0kdCc | motion#9745 +09:48:25.878-0700 871071791538372679 02dB7Rc | motion#4395 +09:48:25.916-0700 871071800346439680 vuoIoKQ | motion#1162 +09:48:26.068-0700 871071811566194708 cNnhV-s | motion#1800 +09:48:26.084-0700 871071805509611561 L2KLyWw | motion#5802 +09:48:26.117-0700 871071809850728489 1TGMPqM | motion#8087 +09:48:26.179-0700 871071809603260416 LRW4SPE | motion#9417 +09:48:26.571-0700 871071800417714206 dNWCnJg | motion#6577 +09:48:26.649-0700 871071798685483019 w5pC4Ws | motion#2069 +09:48:26.821-0700 871071814376382534 ArOtWhY | motion#5976 +09:48:26.909-0700 871071805769662536 hVIBIAQ | motion#8139 +09:48:26.928-0700 871071808420446269 Z9Oqez8 | motion#2285 +09:48:26.943-0700 871071812946112562 P45MWmg | motion#5768 +09:48:26.957-0700 871071812325367818 kgiapq0 | motion#3971 +09:48:26.972-0700 871071810081390712 QhquN_0 | motion#2876 +09:48:27.040-0700 871071810354049105 eypx2Ok | motion#9786 +09:48:27.076-0700 871071811297746965 qB7Cuic | motion#7982 +09:48:27.398-0700 871071813755621457 Bhxh7Ic | motion#4201 +09:48:27.787-0700 871071804528148490 Vi35uHU | motion#0716 +09:48:27.821-0700 871071818356752384 N6ncBqA | motion#3625 +09:48:27.848-0700 871071812124016720 WYd330k | motion#9822 +09:48:27.875-0700 871071815303323669 45kdd2g | motion#3455 +09:48:28.272-0700 871071800946225192 uJQ6n_o | motion#8944 +09:48:28.370-0700 871071820827222067 0kAGlM8 | motion#3874 +09:48:28.452-0700 871071811385843722 SPpvFlY | motion#7915 +09:48:28.504-0700 871071813847887932 U4HzOqk | motion#9924 +09:48:28.616-0700 871071818562285599 IK9Wu7c | motion#3853 +09:48:28.628-0700 871071795996942377 tFyfg8o | motion#4333 +09:48:28.690-0700 871071808735031318 dwnVPEE | motion#2281 +09:48:28.723-0700 871071820982407218 RrJ2icU | motion#8660 +09:48:29.138-0700 871071813680132146 TJldQKo | motion#9162 +09:48:29.206-0700 871071811457146890 brcRlAI | motion#6597 +09:48:29.234-0700 871071818621026314 ftI-WiE | motion#4757 +09:48:29.261-0700 871071806293966878 H9jmyAs | motion#2407 +09:48:29.293-0700 871071806751113226 JafKaEU | motion#9963 +09:48:29.309-0700 871071810081411143 xjVJ9ng | motion#2547 +09:48:29.604-0700 871071825097007104 2OD2LxM | motion#6381 +09:48:29.605-0700 871071826590183434 8de8X1g | motion#1481 +09:48:29.727-0700 871071822551068712 btrXFdY | motion#6421 +09:48:29.760-0700 871071811180326952 z7Jxn3M | motion#8956 +09:48:29.789-0700 871071815802433546 wfkgKy4 | motion#4196 +09:48:29.827-0700 871071810052042782 TzyhEHY | motion#8943 +09:48:29.845-0700 871071810408550441 wcEpk90 | motion#4992 +09:48:29.865-0700 871071819766042674 vfoM77Q | motion#5495 +09:48:30.261-0700 871071825520644156 SYoeQBk | motion#2800 +09:48:30.282-0700 871071814007291964 3wJEL_E | motion#7421 +09:48:30.284-0700 871071826451779654 _fZh6xc | motion#7141 +09:48:30.316-0700 871071823998091276 5WwhJhw | motion#7821 +09:48:30.334-0700 871071821540245555 -jcHBdg | motion#1145 +09:48:30.481-0700 871071820198076426 -eiYXdM | motion#5879 +09:48:30.502-0700 871071827122876526 uzgXb3Q | motion#8488 +09:48:30.602-0700 871071824404955166 pXfAdhU | motion#5864 +09:48:30.662-0700 871071828150472734 c6_7di0 | motion#3019 +09:48:30.695-0700 871071832143458305 G-Y9Kpw | motion#4303 +09:48:30.697-0700 871071827693297674 j49ZuS8 | motion#2691 +09:48:30.724-0700 871071827580043354 Nslr-v8 | motion#4453 +09:48:30.744-0700 871071827303211069 AKWcq1g | motion#5041 +09:48:30.793-0700 871071830818058302 KhnD-yU | motion#6264 +09:48:30.976-0700 871071824140709899 oK7-wFM | motion#4225 +09:48:31.015-0700 871071826644729926 mS9IVKA | motion#5513 +09:48:31.016-0700 871071829375201290 1SPOc0Y | motion#2963 +09:48:31.086-0700 871071820156121108 LmpmpcM | motion#7798 +09:48:31.188-0700 871071831635951686 Yizn9Os | motion#3279 +09:48:31.226-0700 871071827378700308 Lo5EdEE | motion#0338 +09:48:31.267-0700 871071832512557057 bD3A2ns | motion#2405 +09:48:31.299-0700 871071823964536842 8ZRT4C8 | motion#0488 +09:48:31.327-0700 871071835087855656 87iUt_I | motion#8478 +09:48:31.351-0700 871071819023650847 As48Xvs | motion#8843 +09:48:31.375-0700 871071829400379393 -aejAjg | motion#2625 +09:48:31.387-0700 871071817916375080 t5-PPW8 | motion#9836 +09:48:31.391-0700 871071829740122172 DcJyG-0 | motion#1163 +09:48:31.485-0700 871071830256001096 70AmhLs | motion#8518 +09:48:31.486-0700 871071821645099060 bCG0J0k | motion#5606 +09:48:31.498-0700 871071832478994502 J5wtfoE | motion#8452 +09:48:31.503-0700 871071830646079499 p5QVUDs | motion#0363 +09:48:31.549-0700 871071835679260722 v-LPciM | motion#2691 +09:48:31.654-0700 871071812262457384 AAEracU | motion#7275 +09:48:31.720-0700 871071831489122375 bcDvO4s | motion#6719 +09:48:31.730-0700 871071834865537094 85hKah8 | motion#7306 +09:48:31.753-0700 871071833712132097 rXuryUM | motion#4249 +09:48:31.894-0700 871071834685194270 HeEIxeQ | motion#0625 +09:48:32.181-0700 871071833401745490 ShP4a8g | motion#7326 +09:48:32.203-0700 871071836736217088 psEZu84 | motion#5749 +09:48:32.257-0700 871071834337071174 eYxAvAU | motion#4355 +09:48:32.310-0700 871071832655147018 g0XLex4 | motion#1151 +09:48:32.312-0700 871071835716997230 9I9hVOY | motion#6021 +09:48:32.434-0700 871071822932758558 Vxf_bcA | motion#1695 +09:48:32.460-0700 871071838724321391 k75HSoE | motion#1888 +09:48:32.693-0700 871071836664901712 bP0SEMY | motion#8375 +09:48:32.697-0700 871071838778843177 MytENFw | motion#6512 +09:48:32.801-0700 871071827471007816 8_IPvE4 | motion#2102 +09:48:33.087-0700 871071836983668777 vySmPRQ | motion#3023 +09:48:33.113-0700 871071837222736002 Vb2kFvw | motion#8170 +09:48:33.199-0700 871071837021421598 bMQiqWA | motion#3563 +09:48:33.317-0700 871071839722549338 Rei4OWo | motion#0861 +09:48:33.343-0700 871071840104247349 g91DnTY | motion#7748 +09:48:33.392-0700 871071826002985000 gUdQwkU | motion#3357 +09:48:33.423-0700 871071838044844032 m4c-nMo | motion#5663 +09:48:33.441-0700 871071826804088853 XR1i9hc | motion#4635 +09:48:33.504-0700 871071834945224725 v_eixEw | motion#8732 +09:48:33.567-0700 871071832479002714 JqYuX0o | motion#0236 +09:48:33.570-0700 871071827563257896 v_K0QuY | motion#3523 +09:48:33.625-0700 871071839651233822 V-PZGMs | motion#6481 +09:48:33.664-0700 871071832554479648 Cfakh7M | motion#5295 +09:48:33.724-0700 871071827605221467 tYS-yWE | motion#0497 +09:48:33.740-0700 871071841328971898 d4swXAo | motion#2519 +09:48:33.767-0700 871071839768690699 Na3piZs | motion#1135 +09:48:33.833-0700 871071840276209664 MuOCcbY | motion#8608 +09:48:33.835-0700 871071831556251738 QeOZ7Zg | motion#0765 +09:48:33.841-0700 871071840490094643 UluS2PI | motion#4409 +09:48:33.855-0700 871071843128344616 YkiNmTU | motion#0365 +09:48:33.885-0700 871071838216785990 kkf8w4k | motion#8272 +09:48:33.936-0700 871071835226247228 -r9Nz8I | motion#9464 +09:48:33.953-0700 871071839722565632 e80nTbc | motion#7388 +09:48:34.132-0700 871071839030493266 iGBDeS0 | motion#8077 +09:48:34.140-0700 871071842109116456 fsIEL7U | motion#7812 +09:48:34.220-0700 871071839147941919 wVPJEaU | motion#3606 +09:48:34.238-0700 871071835461124116 TOXamBo | motion#0897 +09:48:34.356-0700 871071841471582248 cl3YxYY | motion#5586 +09:48:34.399-0700 871071846697693244 n-BJJZo | motion#7309 +09:48:34.436-0700 871071846416662619 BA1AHEU | motion#1089 +09:48:34.440-0700 871071844134961252 ok1kvJU | motion#2341 +09:48:34.465-0700 871071834282549248 Ooe8nKg | motion#7959 +09:48:34.496-0700 871071844088815667 o71OLjA | motion#6533 +09:48:34.516-0700 871071842624995368 wfYkXNA | motion#8204 +09:48:34.519-0700 871071831166177280 AcZ4hNI | motion#2087 +09:48:34.539-0700 871071829685583932 9xbalJY | motion#8037 +09:48:34.581-0700 871071828641218561 MV3pBsk | motion#7441 +09:48:34.763-0700 871071847456862278 beHi56E | motion#4540 +09:48:34.806-0700 871071834462896158 R0ePePA | motion#7361 +09:48:35.046-0700 871071846034968647 d5ogUrw | motion#6382 +09:48:35.197-0700 871071848744493147 1I9z87U | motion#5822 +09:48:35.237-0700 871071847037411368 iXIKnd0 | motion#2030 +09:48:35.309-0700 871071812736409611 VhH677w | motion#4589 +09:48:35.424-0700 871071850829062186 9P7NxcE | motion#8561 +09:48:35.436-0700 871071848379584542 99zVzyY | motion#9642 +09:48:35.555-0700 871071826145607820 DBoNglQ | motion#8838 +09:48:35.606-0700 871071831384277035 -6ut8gM | motion#6919 +09:48:35.660-0700 871071849101025291 fNvYvWQ | motion#9602 +09:48:35.856-0700 871071849507876865 s3afzZ8 | motion#9422 +09:48:35.869-0700 871071840662085723 nyyO2Qs | motion#9635 +09:48:35.951-0700 871071848287326268 C1ETJwc | motion#0729 +09:48:36.073-0700 871071838652997642 LzwWu1s | motion#7551 +09:48:36.109-0700 871071848727724032 LC-e3mI | motion#4856 +09:48:36.147-0700 871071854880759919 6tsfDbw | motion#1058 +09:48:36.176-0700 871071853395996692 s5flQ0E | motion#5972 +09:48:36.192-0700 871071841022803988 E8YmaoM | motion#8398 +09:48:36.242-0700 871071834819399750 qnMMMX0 | motion#5818 +09:48:36.245-0700 871071851793752155 wBoDFHk | motion#6760 +09:48:36.337-0700 871071852364177438 V6ACCy8 | motion#1947 +09:48:36.589-0700 871071851785379901 08zbApQ | motion#2088 +09:48:36.599-0700 871071836987867156 5FAGwdk | motion#3969 +09:48:36.644-0700 871071839378632846 1N71kzk | motion#8064 +09:48:36.777-0700 871071855392473178 g1_u9bA | motion#4379 +09:48:36.895-0700 871071844168507412 aNcab5s | motion#1650 +09:48:36.960-0700 871071856009023529 iwB1pe8 | motion#4565 +09:48:37.035-0700 871071851600838698 Yv9x2Xw | motion#5002 +09:48:37.041-0700 871071854457131048 CRrGjMs | motion#9276 +09:48:37.131-0700 871071854356467772 M7gTy7Q | motion#9724 +09:48:37.149-0700 871071857594474507 z-P1IOk | motion#5160 +09:48:37.158-0700 871071855111458856 4Rtplx0 | motion#1127 +09:48:37.161-0700 871071856285851658 QF6llBA | motion#6667 +09:48:37.186-0700 871071854431985665 Ql8RAcQ | motion#9984 +09:48:37.224-0700 871071856277479485 dYLXZUg | motion#2448 +09:48:37.318-0700 871071832697106512 K7MEUl0 | motion#5005 +09:48:37.416-0700 871071844055285840 Yj8D84Y | motion#9293 +09:48:37.507-0700 871071842239135765 uCTYTMU | motion#7757 +09:48:37.781-0700 871071852808769547 T5X-Xgw | motion#4401 +09:48:37.864-0700 871071847230373969 AdI6rvY | motion#2085 +09:48:37.868-0700 871071858504663040 syu6mKI | motion#9516 +09:48:37.901-0700 871071852162875483 _bBnVus | motion#7766 +09:48:37.943-0700 871071847771414578 yKU10Jk | motion#7630 +09:48:37.947-0700 871071858542403615 K5VZ_os | motion#2291 +09:48:37.976-0700 871071862300487761 KC8RLQA | motion#7527 +09:48:38.071-0700 871071860853469254 U3Lvgzg | motion#2759 +09:48:38.298-0700 871071852070580245 S7cuY_g | motion#3977 +09:48:38.316-0700 871071854847197294 mIbBO6o | motion#7332 +09:48:38.406-0700 871071848564150363 2ehTdNE | motion#8178 +09:48:38.408-0700 871071846425055299 Z26oR1s | motion#8999 +09:48:38.441-0700 871071864158572555 1S7-A-E | motion#6017 +09:48:38.441-0700 871071851252686858 k01aaQE | motion#4885 +09:48:38.446-0700 871071844072046655 zhPfhN4 | motion#0889 +09:48:38.486-0700 871071848467664896 lFUANv8 | motion#9259 +09:48:38.525-0700 871071849583366226 Yg2d3Lc | motion#1285 +09:48:38.585-0700 871071865433636894 kgo2C-c | motion#9156 +09:48:38.611-0700 871071865551065168 5Va7KXE | motion#1457 +09:48:38.626-0700 871071862740897862 JKGEpTU | motion#0365 +09:48:38.730-0700 871071859708411925 tDdfqIA | motion#1519 +09:48:38.813-0700 871071861495185449 3hoQ-CM | motion#1925 +09:48:38.912-0700 871071858806640651 56JQ3uM | motion#5814 +09:48:38.918-0700 871071863764307969 vzTMdZI | motion#0329 +09:48:38.946-0700 871071866608058418 zZt_la0 | motion#9561 +09:48:38.968-0700 871071866029219872 A_SFIrU | motion#0724 +09:48:39.161-0700 871071848236986408 8Zk4jns | motion#9235 +09:48:39.501-0700 871071850225090590 WLlju0o | motion#2122 +09:48:39.539-0700 871071863911088159 OKJIXiA | motion#9443 +09:48:39.576-0700 871071864770928670 Ww7GZHQ | motion#7360 +09:48:39.594-0700 871071852183822426 lv7sKH4 | motion#7969 +09:48:39.724-0700 871071859528052786 acLkSwY | motion#3269 +09:48:39.925-0700 871071867350450276 KNwMzuQ | motion#3409 +09:48:40.019-0700 871071867644031016 NuLq0XY | motion#1633 +09:48:40.443-0700 871071872199049296 UHEAQr4 | motion#0133 +09:48:40.496-0700 871071858680811561 H9ecRfQ | motion#0107 +09:48:40.587-0700 871071868508049419 ToRehVc | motion#4859 +09:48:40.602-0700 871071872136134716 EpGs9ds | motion#8256 +09:48:40.623-0700 871071873990012988 VVkdqRY | motion#5093 +09:48:40.717-0700 871071869061705778 6beFXJU | motion#7831 +09:48:40.732-0700 871071873151172649 pnkGA8M | motion#0212 +09:48:40.747-0700 871071858777288745 1HAI35o | motion#9060 +09:48:40.794-0700 871071869795704862 -UQw4Ko | motion#9415 +09:48:40.821-0700 871071870856876062 otpI_Go | motion#6973 +09:48:40.839-0700 871071868298350633 NGCJ3D0 | motion#4306 +09:48:40.949-0700 871071866624819261 ow7GlJ0 | motion#6944 +09:48:41.009-0700 871071874350723152 K1ZlLoQ | motion#7756 +09:48:41.041-0700 871071873834835999 WoixSRk | motion#7856 +09:48:41.065-0700 871071872375218246 VIUUxgQ | motion#3432 +09:48:41.122-0700 871071871888658462 5UT0AX8 | motion#5848 +09:48:41.221-0700 871071861134467093 uFM7jWM | motion#4196 +09:48:41.229-0700 871071872169689089 y5y6hUY | motion#6275 +09:48:41.318-0700 871071870135463946 XRveAhQ | motion#4637 +09:48:41.385-0700 871071876607258655 czb4umE | motion#4133 +09:48:41.419-0700 871071870911414322 tlgodoY | motion#3330 +09:48:41.538-0700 871071874031968267 0fjrOow | motion#3514 +09:48:41.549-0700 871071872161312818 GUeF7po | motion#5292 +09:48:41.557-0700 871071859733573684 0Rw03Uc | motion#4752 +09:48:41.558-0700 871071862350823476 dnknFoM | motion#5246 +09:48:41.559-0700 871071867107176478 Law8TlY | motion#6480 +09:48:41.585-0700 871071876959596574 g29HVnc | motion#1159 +09:48:41.744-0700 871071862048841759 y36UfCY | motion#2732 +09:48:41.936-0700 871071865089691720 sfeHaTw | motion#8413 +09:48:41.969-0700 871071875885838386 adlARWk | motion#3408 +09:48:42.009-0700 871071852557107200 W_Y24Rw | motion#7729 +09:48:42.108-0700 871071871209197578 XZi4Sr8 | motion#1628 +09:48:42.225-0700 871071878339510392 KcHuym0 | motion#9546 +09:48:42.263-0700 871071876120739840 5QlUVd0 | motion#4634 +09:48:42.356-0700 871071879451017316 yttu7k0 | motion#1212 +09:48:42.379-0700 871071880650575883 lvQ5uac | motion#5962 +09:48:42.425-0700 871071865941135390 aMt3SUI | motion#8561 +09:48:42.429-0700 871071879161610280 UzL-7KM | motion#4963 +09:48:42.539-0700 871071879023173632 sMLlnSQ | motion#7356 +09:48:42.744-0700 871071881254551593 FPWhoRE | motion#0894 +09:48:42.958-0700 871071867358806096 bDF6olU | motion#5348 +09:48:42.984-0700 871071878989639680 kDbKO3Q | motion#5522 +09:48:43.057-0700 871071877362245683 wu3nGOw | motion#0439 +09:48:43.084-0700 871071883242635284 rtz-rHs | motion#0125 +09:48:43.251-0700 871071883003576391 Ngy1PSI | motion#9453 +09:48:43.277-0700 871071882097598494 uC9gHV4 | motion#9125 +09:48:43.298-0700 871071882663821403 FbGgEYA | motion#0142 +09:48:43.306-0700 871071879744593930 otU3Vj4 | motion#2948 +09:48:43.420-0700 871071877991383081 BM5lEBc | motion#6672 +09:48:43.729-0700 871071883469131806 hcoFbfo | motion#0636 +09:48:43.751-0700 871071882655461397 iz-r2ag | motion#9616 +09:48:43.766-0700 871071884211548242 DDQtQag | motion#0231 +09:48:43.813-0700 871071883959877652 CNnwL00 | motion#0037 +09:48:43.842-0700 871071885260095488 yq8k54M | motion#4904 +09:48:44.131-0700 871071886539391086 uZA4EE4 | motion#8628 +09:48:44.132-0700 871071873960669224 vPmoM6g | motion#5820 +09:48:44.157-0700 871071867744698408 eNl-NoE | motion#3037 +09:48:44.177-0700 871071874027761714 GfHuHkY | motion#1809 +09:48:44.209-0700 871071884526092338 XPG8xCA | motion#3292 +09:48:44.397-0700 871071874837254166 YNvGDqo | motion#9959 +09:48:44.454-0700 871071887332114464 GsppMuI | motion#7476 +09:48:44.488-0700 871071885050388480 5SekVgc | motion#1913 +09:48:44.504-0700 871071887814438985 AI7F-Vw | motion#8508 +09:48:44.518-0700 871071885520175126 GujrLJo | motion#7283 +09:48:44.694-0700 871071886715539517 _rQeFZE | motion#9429 +09:48:44.749-0700 871071889370529822 -U0J2uA | motion#9103 +09:48:44.757-0700 871071880612814888 kFo9FYk | motion#4328 +09:48:44.811-0700 871071890511392819 jcy87Rg | motion#0929 +09:48:44.814-0700 871071887713767435 77XKExo | motion#3175 +09:48:44.843-0700 871071890763038760 GKA9A4w | motion#3043 +09:48:44.898-0700 871071867111346277 h1CYIZU | motion#4520 +09:48:44.927-0700 871071875973918770 pt6kJDw | motion#3756 +09:48:44.974-0700 871071887084634153 uq2DXgA | motion#8509 +09:48:44.978-0700 871071887017533441 bV19YeM | motion#5638 +09:48:45.008-0700 871071876506587196 wmFXStg | motion#0167 +09:48:45.051-0700 871071862334033950 ZIgv3bM | motion#2223 +09:48:45.191-0700 871071870903009300 8I9AcJ0 | motion#5180 +09:48:45.239-0700 871071886254174258 Kd_E_TU | motion#6123 +09:48:45.240-0700 871071872220012684 Kuj0Xi4 | motion#2313 +09:48:45.327-0700 871071890381344778 whs5thw | motion#9709 +09:48:45.417-0700 871071891606085672 HiC1yBM | motion#9756 +09:48:45.494-0700 871071890964369438 KLRIjfE | motion#9395 +09:48:45.662-0700 871071886019285103 sDtFrUA | motion#7743 +09:48:45.671-0700 871071890213568583 CQsv2C0 | motion#3996 +09:48:45.727-0700 871071889802539028 PTPAZwA | motion#8745 +09:48:45.780-0700 871071895313866762 57BKe9Q | motion#2411 +09:48:45.895-0700 871071896236621896 2-bICh0 | motion#1973 +09:48:45.910-0700 871071894953160714 OxcnjsY | motion#1469 +09:48:46.038-0700 871071877374816286 92AW8rE | motion#7326 +09:48:46.042-0700 871071887625711657 l5n26fE | motion#3126 +09:48:46.052-0700 871071890473619506 zoqY2nI | motion#8693 +09:48:46.172-0700 871071884337373204 Lq0g6xE | motion#5896 +09:48:46.176-0700 871071894273658901 5_I3tbI | motion#1135 +09:48:46.217-0700 871071896546992178 BEiPXgg | motion#0682 +09:48:46.250-0700 871071896362426408 YhUM4pg | motion#5405 +09:48:46.283-0700 871071891903889418 -5wUGv0 | motion#4601 +09:48:46.469-0700 871071897276784722 2cbIDKE | motion#5065 +09:48:46.503-0700 871071885314654248 acb8OeY | motion#4359 +09:48:46.553-0700 871071896068821044 L1xNQHg | motion#8915 +09:48:46.722-0700 871071893594202112 A8rj7Q8 | motion#2694 +09:48:46.768-0700 871071891736133632 gFBj-dk | motion#0437 +09:48:46.772-0700 871071894990889072 3EzR040 | motion#8319 +09:48:46.869-0700 871071894944763984 d5PxBwo | motion#4625 +09:48:46.921-0700 871071896093990952 pA2o78A | motion#5304 +09:48:47.125-0700 871071885373345803 9yRu0Tc | motion#3213 +09:48:47.218-0700 871071884127649913 uRtRW7U | motion#9093 +09:48:47.228-0700 871071899462041650 A9YOq4E | motion#2775 +09:48:47.259-0700 871071886128328784 _cyz0OM | motion#5876 +09:48:47.260-0700 871071896953839616 3nBPsEc | motion#9537 +09:48:47.342-0700 871071895443873813 0Lh1UFU | motion#1477 +09:48:47.408-0700 871071897566208030 y9xmaI0 | motion#4471 +09:48:47.424-0700 871071882013736971 2TUzqG8 | motion#3792 +09:48:47.582-0700 871071900057628683 a4y6tMI | motion#4619 +09:48:47.589-0700 871071902385463327 RiezpjU | motion#4657 +09:48:47.603-0700 871071887751512145 qaDJrkI | motion#5913 +09:48:47.624-0700 871071902070865982 WFFqNug | motion#4847 +09:48:47.662-0700 871071901873754142 H5mddsc | motion#8447 +09:48:47.684-0700 871071901252997191 fSf_u5Y | motion#3153 +09:48:47.785-0700 871071902448357407 rzyV1qM | motion#1569 +09:48:47.886-0700 871071901647261786 wkFCdXs | motion#9928 +09:48:47.893-0700 871071896035291216 Jr5BQSM | motion#0556 +09:48:48.226-0700 871071899474612304 YA2kAR4 | motion#7177 +09:48:48.236-0700 871071903245275136 s8teSL4 | motion#3719 +09:48:48.306-0700 871071902725197865 tB0gJJk | motion#0010 +09:48:48.720-0700 871071896521809921 AeegvP8 | motion#7971 +09:48:48.738-0700 871071896580530217 gyiIYTw | motion#1062 +09:48:48.816-0700 871071888951115816 9hG5OGk | motion#5605 +09:48:48.821-0700 871071899965341786 xCmilT4 | motion#2622 +09:48:48.842-0700 871071886619054121 JdzhOIU | motion#9402 +09:48:48.882-0700 871071903647924296 DgnT5Rg | motion#8580 +09:48:48.898-0700 871071899189391361 rGVBhNE | motion#4267 +09:48:48.936-0700 871071905715720232 7_eAve8 | motion#5185 +09:48:48.948-0700 871071887571173456 _MY6QJM | motion#0626 +09:48:49.038-0700 871071906537816146 DzaZh_w | motion#4648 +09:48:49.042-0700 871071906701389854 NZwYJQE | motion#1824 +09:48:49.045-0700 871071907020148756 HB3YL8c | motion#2517 +09:48:49.072-0700 871071905040457788 D3rvk7Y | motion#3187 +09:48:49.101-0700 871071900695134289 tsUTM7g | motion#3611 +09:48:49.139-0700 871071902486110238 VtsxIAo | motion#4562 +09:48:49.145-0700 871071903383715840 7HeHcJY | motion#2386 +09:48:49.174-0700 871071897327112243 apEpcpg | motion#1601 +09:48:49.182-0700 871071906256805929 U9x0O-Y | motion#9443 +09:48:49.259-0700 871071903597604865 MnFZBqk | motion#7759 +09:48:49.279-0700 871071895225782292 VnvGgQs | motion#3804 +09:48:49.497-0700 871071905170485268 2ZVKWWo | motion#8884 +09:48:49.653-0700 871071904595869716 8Pjxz3E | motion#5216 +09:48:49.654-0700 871071906399399956 T12UkWE | motion#2206 +09:48:49.687-0700 871071907154386965 H_WRkWw | motion#6773 +09:48:49.761-0700 871071908685312020 9Hfn2P0 | motion#2514 +09:48:49.812-0700 871071905560543303 bVlPFCM | motion#0732 +09:48:49.858-0700 871071908500746351 UPmg_yM | motion#6672 +09:48:49.861-0700 871071907271803050 Y1rokoY | motion#2783 +09:48:49.963-0700 871071907410231357 csxfY2E | motion#6546 +09:48:49.979-0700 871071904553914378 f-P_wHo | motion#4342 +09:48:50.002-0700 871071911575183430 7pZKNLo | motion#6508 +09:48:50.121-0700 871071910602104893 5_pDgdc | motion#7488 +09:48:50.133-0700 871071906479112222 WYbJCto | motion#0599 +09:48:50.161-0700 871071895527772243 2__wpxc | motion#7054 +09:48:50.212-0700 871071907070496789 3vlU2FQ | motion#9377 +09:48:50.290-0700 871071910191054868 CX5cqOU | motion#0077 +09:48:50.424-0700 871071909478027275 kJpxziE | motion#5766 +09:48:50.482-0700 871071912330166282 AkF0nvc | motion#0574 +09:48:50.513-0700 871071898560266270 Gk6NYdE | motion#8038 +09:48:50.537-0700 871071906843996170 CBqS8Wo | motion#7009 +09:48:50.640-0700 871071910547578950 Xe9eJAs | motion#3041 +09:48:50.643-0700 871071916448952422 n8chjEQ | motion#7695 +09:48:50.707-0700 871071909117308980 wzMBbd0 | motion#1221 +09:48:50.764-0700 871071899923398666 E6huxuE | motion#3474 +09:48:50.810-0700 871071905434710087 OAFveoQ | motion#3840 +09:48:50.955-0700 871071908022611979 aZGzn5g | motion#2425 +09:48:51.111-0700 871071912481140776 YUhkxxs | motion#1937 +09:48:51.134-0700 871071908622368788 f6085is | motion#1388 +09:48:51.138-0700 871071914641207307 ihrmpWU | motion#2021 +09:48:51.167-0700 871071915354259499 gwbpt6g | motion#8841 +09:48:51.241-0700 871071910543368302 PCfegio | motion#2466 +09:48:51.252-0700 871071894097494126 0EzFFdo | motion#8572 +09:48:51.265-0700 871071913642950666 Z1Yqk78 | motion#2593 +09:48:51.328-0700 871071912627957831 4J0FSEA | motion#1606 +09:48:51.367-0700 871071913559068692 VJyEcT8 | motion#5272 +09:48:51.394-0700 871071915589140500 VWide70 | motion#0694 +09:48:51.410-0700 871071915127742535 PeoJcU8 | motion#5620 +09:48:51.437-0700 871071909964554240 q8RAcXc | motion#9962 +09:48:51.440-0700 871071913034788957 gSOQ9QU | motion#8679 +09:48:51.513-0700 871071902981046323 YhYuA1o | motion#1466 +09:48:51.527-0700 871071911973642332 Bz-EV_U | motion#2235 +09:48:51.598-0700 871071906055483443 GA1nTCQ | motion#1442 +09:48:51.648-0700 871071907947102248 P1gexMQ | motion#1088 +09:48:51.727-0700 871071909012451328 OsCiJ24 | motion#5409 +09:48:51.747-0700 871071915513630730 dKdNw2I | motion#3587 +09:48:51.756-0700 871071914234359859 4RMBFkw | motion#4577 +09:48:51.781-0700 871071916054683718 1qC5AJE | motion#5425 +09:48:51.858-0700 871071915467489291 qIBK8y0 | motion#2704 +09:48:51.922-0700 871071920550977586 im0j828 | motion#8786 +09:48:51.947-0700 871071921222078465 TbKLbQ4 | motion#3325 +09:48:51.994-0700 871071905820594176 HOemDCc | motion#6999 +09:48:52.023-0700 871071916826431528 slrmvnk | motion#7663 +09:48:52.072-0700 871071906302926888 5lARssk | motion#7097 +09:48:52.138-0700 871071922182586449 1g3qHPI | motion#5573 +09:48:52.232-0700 871071920643244112 w1rGzkE | motion#6760 +09:48:52.380-0700 871071922211934219 u18PbWo | motion#7237 +09:48:52.439-0700 871071901852762162 onEuJ8I | motion#9428 +09:48:52.451-0700 871071919284301875 PaOX6Gs | motion#3937 +09:48:52.462-0700 871071918776787007 GMlnikc | motion#0248 +09:48:52.645-0700 871071918873251841 Cwvad_s | motion#8999 +09:48:52.723-0700 871071922664931399 bw-Gz0A | motion#2322 +09:48:52.727-0700 871071919322042390 mrzHsxg | motion#6450 +09:48:52.736-0700 871071922086100992 qk2Eb2I | motion#9883 +09:48:52.757-0700 871071892189093938 pvgYAA0 | motion#3764 +09:48:52.763-0700 871071920005722112 FbTz98M | motion#6260 +09:48:52.771-0700 871071921360502854 oqYJ04I | motion#8428 +09:48:52.845-0700 871071925382811708 nKGUctk | motion#8092 +09:48:52.873-0700 871071918290255892 tVHsJ2g | motion#1594 +09:48:52.952-0700 871071922086092822 uarKynY | motion#5131 +09:48:53.060-0700 871071921360474142 eGA80sI | motion#1618 +09:48:53.295-0700 871071911327707167 j8sq6PA | motion#8945 +09:48:53.296-0700 871071923721871411 Ne82YNw | motion#9364 +09:48:53.373-0700 871071922119671859 iG-abCI | motion#5183 +09:48:53.486-0700 871071923658969098 ocCPzyU | motion#5232 +09:48:53.675-0700 871071922115448902 CtyQzgQ | motion#7055 +09:48:53.703-0700 871071928436289567 QOGXEHU | motion#0627 +09:48:53.771-0700 871071927479963669 sk9uWbk | motion#6055 +09:48:53.778-0700 871071925340880956 DACPIIw | motion#3887 +09:48:53.793-0700 871071923625422849 550JGLo | motion#2555 +09:48:53.871-0700 871071923684122664 X-RIN6g | motion#7597 +09:48:53.910-0700 871071914569908256 a7SM44M | motion#6105 +09:48:53.963-0700 871071922543271936 jTUB7oU | motion#1858 +09:48:53.992-0700 871071923273105438 feL1RQI | motion#0092 +09:48:54.183-0700 871071905506013236 nDaUxIk | motion#0689 +09:48:54.241-0700 871071922144825385 zqGpPUM | motion#5416 +09:48:54.315-0700 871071924766261258 NVyknbQ | motion#9867 +09:48:54.351-0700 871071916520267776 IW-L3F8 | motion#4835 +09:48:54.427-0700 871071926662078514 Vve3dts | motion#3319 +09:48:54.443-0700 871071926246862909 yF5V3d8 | motion#3415 +09:48:54.600-0700 871071931913359440 yWv15Pc | motion#5045 +09:48:54.738-0700 871071929329676358 y9NHU74 | motion#5420 +09:48:54.770-0700 871071926108450826 DbSZMU0 | motion#2092 +09:48:54.890-0700 871071915522015313 sWJDhpY | motion#4275 +09:48:54.894-0700 871071927740031037 8svJaRs | motion#3614 +09:48:55.020-0700 871071916486701076 HKL9OzI | motion#0298 +09:48:55.033-0700 871071925554806814 PWpnyjA | motion#5411 +09:48:55.066-0700 871071930420178984 qse6HCE | motion#1109 +09:48:55.146-0700 871071934119550986 rv4kvMg | motion#0605 +09:48:55.331-0700 871071929526792194 2R4WxUs | motion#0549 +09:48:55.361-0700 871071928717283379 OQmce5M | motion#4015 +09:48:55.425-0700 871071912514682891 qqlw-xg | motion#4576 +09:48:55.444-0700 871071933544927252 cK_lncI | motion#9247 +09:48:55.477-0700 871071934337667132 An3KzOM | motion#7198 +09:48:55.527-0700 871071934392188928 moz0O-I | motion#8650 +09:48:55.571-0700 871071933393952868 FfglMoc | motion#3474 +09:48:55.589-0700 871071932060151829 xTBiI2I | motion#0977 +09:48:55.598-0700 871071923327615006 8EHYEtc | motion#6626 +09:48:55.599-0700 871071932500570112 gD3atpk | motion#8671 +09:48:55.622-0700 871071936283832340 25UKWKY | motion#5589 +09:48:55.802-0700 871071935264620587 uWJw3JQ | motion#3860 +09:48:55.806-0700 871071932039180289 Uw3MY1U | motion#5348 +09:48:55.823-0700 871071927278661633 6tOIsfM | motion#6755 +09:48:55.828-0700 871071924216819784 i-LpZYw | motion#9153 +09:48:55.846-0700 871071932462792726 -0RS7ig | motion#7299 +09:48:55.981-0700 871071936032153621 09d4fes | motion#7446 +09:48:55.987-0700 871071934392189009 Qdp_7tQ | motion#0468 +09:48:55.998-0700 871071934589317211 NZrnL44 | motion#2437 +09:48:56.060-0700 871071934459285545 bLCMTSI | motion#9022 +09:48:56.070-0700 871071924200030248 dLvvZi0 | motion#0925 +09:48:56.107-0700 871071935218470922 YSwR5iE | motion#8802 +09:48:56.148-0700 871071935906336858 SS7qNTk | motion#6016 +09:48:56.149-0700 871071935390416966 X4FTw7k | motion#4893 +09:48:56.193-0700 871071937219153931 DMH7YOE | motion#2865 +09:48:56.263-0700 871071935730180097 D79ZWog | motion#3893 +09:48:56.273-0700 871071937068138587 e7PDjak | motion#1219 +09:48:56.313-0700 871071936720015461 0Kvp6uk | motion#9394 +09:48:56.331-0700 871071936225087510 ak1YmPE | motion#0362 +09:48:56.478-0700 871071924581707898 Jzym96Y | motion#2986 +09:48:56.526-0700 871071937571467334 ReTSh0k | motion#5573 +09:48:56.528-0700 871071938439688194 mrP2tho | motion#3605 +09:48:56.672-0700 871071939127558175 UBjPJEM | motion#4715 +09:48:56.696-0700 871071936896188486 Emi3EtE | motion#4953 +09:48:56.706-0700 871071921821863936 V9t7FRk | motion#6405 +09:48:56.713-0700 871071936480952352 c-aDpJk | motion#3234 +09:48:56.791-0700 871071936300589076 GlebBvA | motion#3912 +09:48:56.946-0700 871071927119265812 7Q_DpYE | motion#2788 +09:48:56.988-0700 871071939270152232 o4DMLnc | motion#4992 +09:48:57.002-0700 871071936967487530 3T7sjsg | motion#0749 +09:48:57.010-0700 871071938603282442 1AEnNw8 | motion#8424 +09:48:57.011-0700 871071941593792572 8v0Nx7g | motion#8794 +09:48:57.015-0700 871071936095084574 HeRV0MQ | motion#9433 +09:48:57.082-0700 871071939714773042 UCtOWcw | motion#7428 +09:48:57.083-0700 871071943011467334 DjctKyk | motion#8625 +09:48:57.086-0700 871071939400196136 GCvqbt0 | motion#2664 +09:48:57.092-0700 871071942600454164 TGdJw3I | motion#5984 +09:48:57.131-0700 871071942503964682 TIFgBAU | motion#4589 +09:48:57.141-0700 871071926326550558 gLRMpfM | motion#1113 +09:48:57.164-0700 871071928977358849 WsTZcVI | motion#1869 +09:48:57.317-0700 871071938389348384 z9_AvdQ | motion#3006 +09:48:57.348-0700 871071929291915326 7Ffhuqg | motion#5668 +09:48:57.427-0700 871071940683632730 a2gtyyo | motion#1573 +09:48:57.500-0700 871071930080432218 Ny7g8HI | motion#9922 +09:48:57.603-0700 871071942579462154 Q3tx9G0 | motion#3905 +09:48:57.616-0700 871071939463114782 hns9488 | motion#1619 +09:48:57.650-0700 871071941312802857 bzqfKO0 | motion#5972 +09:48:57.657-0700 871071943229599765 g-U6_vA | motion#8476 +09:48:57.673-0700 871071941186977834 C1d_yXA | motion#2913 +09:48:57.739-0700 871071927689678858 9mXsJfI | motion#9743 +09:48:57.785-0700 871071931099676702 JkADmyU | motion#7024 +09:48:57.867-0700 871071939110776902 _FKcFfc | motion#8015 +09:48:57.901-0700 871071943426715658 B_qufs4 | motion#5792 +09:48:57.919-0700 871071942935986186 vHCKjyA | motion#4127 +09:48:58.036-0700 871071945079287809 yqgCu_g | motion#5708 +09:48:58.053-0700 871071928796975194 IpwmNBg | motion#4651 +09:48:58.089-0700 871071931124842567 1TeGFm8 | motion#7536 +09:48:58.194-0700 871071944513032212 4GpKvvk | motion#4464 +09:48:58.210-0700 871071930831216650 IRWoMZc | motion#0806 +09:48:58.227-0700 871071947474210847 FcLzM1Q | motion#9693 +09:48:58.240-0700 871071944273985606 zwah4nM | motion#7036 +09:48:58.296-0700 871071945918132295 u7IWFb4 | motion#3146 +09:48:58.303-0700 871071944064237589 f8vROsY | motion#1340 +09:48:58.307-0700 871071945121226772 sjmenkU | motion#5570 +09:48:58.310-0700 871071944794071120 -QCkIqk | motion#0889 +09:48:58.412-0700 871071942923386920 JPlkTFc | motion#9191 +09:48:58.462-0700 871071941958713345 4ATZKAY | motion#2799 +09:48:58.532-0700 871071945226080266 9Usmc80 | motion#1837 +09:48:58.557-0700 871071945012178994 cqPgD7w | motion#4099 +09:48:58.619-0700 871071949856575549 -3DZm6k | motion#3100 +09:48:58.689-0700 871071949529448448 tYlBHbo | motion#6918 +09:48:58.744-0700 871071945427402762 6UFOxCU | motion#3388 +09:48:58.889-0700 871071938389352559 5Sz7cDY | motion#5144 +09:48:58.914-0700 871071946626973728 tgGMVLM | motion#1432 +09:48:58.950-0700 871071950049517568 fZCdabI | motion#4845 +09:48:58.953-0700 871071937986711562 iYmwW_k | motion#8071 +09:48:59.001-0700 871071947897839718 QIDUZGE | motion#2896 +09:48:59.042-0700 871071936380297246 Q_sBlxk | motion#6465 +09:48:59.130-0700 871071945033146379 NuaQQxc | motion#0843 +09:48:59.159-0700 871071932311797871 ARpOCYg | motion#1178 +09:48:59.174-0700 871071935507865620 uXBS3Zk | motion#7375 +09:48:59.369-0700 871071945716805724 EeHMx60 | motion#1507 +09:48:59.435-0700 871071934929043516 NpJwgGs | motion#4539 +09:48:59.439-0700 871071952587063316 Ppaxu5A | motion#9343 +09:48:59.480-0700 871071948300496929 cX2dZTM | motion#5874 +09:48:59.488-0700 871071950523473940 ChOPuJo | motion#4354 +09:48:59.567-0700 871071949995003945 5ndy_iM | motion#5538 +09:48:59.617-0700 871071938049613855 6do6GKI | motion#0019 +09:48:59.634-0700 871071954164154379 R4OMMzo | motion#7356 +09:48:59.643-0700 871071936900399145 QxCi0uI | motion#8590 +09:48:59.796-0700 871071947348406353 -znhCVc | motion#4353 +09:48:59.810-0700 871071950481526815 hMXjQfc | motion#2529 +09:48:59.856-0700 871071941002412112 7rjbXLE | motion#5624 +09:49:00.040-0700 871071949219037195 r5YSidk | motion#3017 +09:49:00.144-0700 871071950028570655 IObxaP4 | motion#8801 +09:49:00.187-0700 871071949009346570 nzV4R3E | motion#4373 +09:49:00.291-0700 871071947507777548 aX3OjcY | motion#8118 +09:49:00.303-0700 871071953589530674 ClQirjw | motion#8661 +09:49:00.325-0700 871071952339619840 PQkCl18 | motion#6370 +09:49:00.335-0700 871071952297660437 HvCubqs | motion#6493 +09:49:00.371-0700 871071956244504586 Z-Hrq5w | motion#1653 +09:49:00.573-0700 871071952285089813 Ky6d8rE | motion#6598 +09:49:00.604-0700 871071955409862736 7_bx9WU | motion#0333 +09:49:00.615-0700 871071954344509440 4mO5Hdc | motion#1768 +09:49:00.622-0700 871071954499686430 cU5RMtQ | motion#7582 +09:49:00.712-0700 871071957905457192 Kk1E7DM | motion#4893 +09:49:00.750-0700 871071957200797706 tCv9v3A | motion#8384 +09:49:00.858-0700 871071943275716619 kOM-8bY | motion#4119 +09:49:00.867-0700 871071958723358730 EXaIoF4 | motion#3523 +09:49:00.916-0700 871071955963486289 P3k0qHA | motion#4950 +09:49:00.946-0700 871071949743341608 tutkj2E | motion#8086 +09:49:00.952-0700 871071954843619398 pYIpOJY | motion#4525 +09:49:00.975-0700 871071956840112158 AHRwZyI | motion#6918 +09:49:01.008-0700 871071956613627904 xDpqEYY | motion#1691 +09:49:01.044-0700 871071954763927592 gxbWI9Q | motion#5255 +09:49:01.070-0700 871071944513032233 glH47ZM | motion#3836 +09:49:01.136-0700 871071954373836820 2ceNCIA | motion#9311 +09:49:01.190-0700 871071956059963402 --4f9fY | motion#7168 +09:49:01.274-0700 871071955791511602 4ojAMic | motion#2759 +09:49:01.286-0700 871071958291333120 W04vMqU | motion#8959 +09:49:01.312-0700 871071957683142656 yZReFg0 | motion#6477 +09:49:01.433-0700 871071949005131816 9clBo1M | motion#5585 +09:49:01.452-0700 871071954935894076 zVtmvlI | motion#3226 +09:49:01.494-0700 871071958211649536 amQpHzU | motion#9780 +09:49:01.686-0700 871071962418532382 aDzo7-A | motion#9863 +09:49:01.776-0700 871071962141687899 RI4Bepg | motion#1240 +09:49:01.883-0700 871071959448977530 rf36vEE | motion#9640 +09:49:01.895-0700 871071959096651858 5p7CFl4 | motion#9076 +09:49:01.915-0700 871071960078106644 jouFEp4 | motion#7939 +09:49:01.921-0700 871071961424470046 mNIdPw4 | motion#2281 +09:49:01.955-0700 871071945662279750 Z1wmpfM | motion#2962 +09:49:01.975-0700 871071958199054377 UDnJchY | motion#6721 +09:49:01.997-0700 871071960048746496 e-9S1R0 | motion#4084 +09:49:02.055-0700 871071948560560128 7RUrkpk | motion#7124 +09:49:02.083-0700 871071960535273533 gHf8H5k | motion#9701 +09:49:02.098-0700 871071953887318037 PBmUj9Q | motion#6334 +09:49:02.215-0700 871071963941064784 87KYyBo | motion#3483 +09:49:02.218-0700 871071960602390568 O6J5JRE | motion#0219 +09:49:02.231-0700 871071958463295539 _doVbE0 | motion#0940 +09:49:02.302-0700 871071961600643102 0GFNSPk | motion#9555 +09:49:02.364-0700 871071961218953226 tIVmQq0 | motion#9413 +09:49:02.427-0700 871071952570294334 7Dt8_AY | motion#9569 +09:49:02.429-0700 871071945909739550 UH0bIuo | motion#4590 +09:49:02.446-0700 871071960342331392 dI6iGXI | motion#1879 +09:49:02.518-0700 871071962087166062 gZEiCjw | motion#9663 +09:49:02.532-0700 871071943791624212 pCOU9KY | motion#3635 +09:49:02.550-0700 871071961642577970 xrj9BdE | motion#4537 +09:49:02.671-0700 871071965874642955 M8GvtNQ | motion#7626 +09:49:02.752-0700 871071958966624266 faxLRms | motion#5349 +09:49:02.929-0700 871071961659363348 A1vgb0U | motion#5818 +09:49:02.934-0700 871071963819409408 byEr8TI | motion#5470 +09:49:02.985-0700 871071960950521887 F482P4Q | motion#0519 +09:49:03.166-0700 871071963886534686 9HjVh5Q | motion#5343 +09:49:03.269-0700 871071961793585262 6kuAlzg | motion#0461 +09:49:03.275-0700 871071961042796614 sy0i6O4 | motion#4370 +09:49:03.297-0700 871071967543984198 htJEqYQ | motion#0495 +09:49:03.339-0700 871071967627857980 NP4HBx4 | motion#9219 +09:49:03.359-0700 871071962707943494 vv9_Z7Y | motion#4675 +09:49:03.428-0700 871071961374150656 Alpfbp4 | motion#5720 +09:49:03.438-0700 871071965509726278 ozpsIDk | motion#5656 +09:49:03.463-0700 871071964893167656 S6w33JY | motion#6870 +09:49:03.505-0700 871071962900869120 JTzG-1I | motion#2337 +09:49:03.516-0700 871071965530705920 dZynlkg | motion#4107 +09:49:03.521-0700 871071965320986685 pgLJy2w | motion#5726 +09:49:03.571-0700 871071964272427060 Ci_to2c | motion#6938 +09:49:03.623-0700 871071966197596160 VD3kQFQ | motion#9227 +09:49:03.670-0700 871071948837384202 DjjRL8k | motion#2406 +09:49:03.928-0700 871071966461829140 Q-aNyuA | motion#4184 +09:49:04.025-0700 871071957246947379 stp-suI | motion#5606 +09:49:04.043-0700 871071968085041223 hNsicbg | motion#9023 +09:49:04.057-0700 871071959138574448 zXs8Up0 | motion#9810 +09:49:04.170-0700 871071965165813761 TCkNp7k | motion#6204 +09:49:04.270-0700 871071968647077928 QAoko_8 | motion#1621 +09:49:04.282-0700 871071959742558310 tlXkiJg | motion#7561 +09:49:04.304-0700 871071967514599444 -4xoPfg | motion#1195 +09:49:04.325-0700 871071938641018990 __eO5M0 | motion#4429 +09:49:04.326-0700 871071965769777242 r9nusG4 | motion#4057 +09:49:04.382-0700 871071971801194546 ME7YOg4 | motion#0773 +09:49:04.387-0700 871071965622972486 SppBvfg | motion#7497 +09:49:04.452-0700 871071973013327902 aneWaXo | motion#2134 +09:49:04.456-0700 871071956840087553 3BeGglk | motion#8885 +09:49:04.459-0700 871071967346843668 vJN0oU0 | motion#0928 +09:49:04.477-0700 871071973592166451 0tZFtww | motion#6055 +09:49:04.513-0700 871071959121805312 ILvoqU4 | motion#4960 +09:49:04.579-0700 871071970433826846 afVh9sY | motion#9431 +09:49:04.752-0700 871071970400284712 VaVSyKA | motion#3033 +09:49:04.757-0700 871071971293687818 XM9St7M | motion#1603 +09:49:04.818-0700 871071958362636328 RyeCnp4 | motion#3286 +09:49:04.824-0700 871071968798076928 bUjwdfU | motion#2980 +09:49:04.951-0700 871071963244802069 Mt1y9vA | motion#7717 +09:49:04.953-0700 871071968777076798 ij72IXI | motion#4565 +09:49:04.967-0700 871071966814154753 fpRjvWw | motion#1556 +09:49:05.031-0700 871071968106020915 yJWakOo | motion#6933 +09:49:05.041-0700 871071971935420486 6H5dWww | motion#8017 +09:49:05.049-0700 871071966159843345 t9ejHmA | motion#3059 +09:49:05.054-0700 871071961629991022 io5OFUc | motion#5368 +09:49:05.062-0700 871071953128157285 F0FUxK4 | motion#5299 +09:49:05.089-0700 871071963035082792 YSkc_nM | motion#4800 +09:49:05.178-0700 871071966461849630 _fuTMPo | motion#2373 +09:49:05.250-0700 871071975609630740 PxaYPN0 | motion#0190 +09:49:05.384-0700 871071973445369866 FZh7_9w | motion#5267 +09:49:05.452-0700 871071973877358593 pYI_8rw | motion#8808 +09:49:05.473-0700 871071958199070804 oXFYEzU | motion#5489 +09:49:05.517-0700 871071962405937182 PQbOO10 | motion#9795 +09:49:05.591-0700 871071973072076820 O3I7SY4 | motion#4322 +09:49:05.655-0700 871071968638664714 50HXSZU | motion#3847 +09:49:05.665-0700 871071956445823037 whBFPRw | motion#0588 +09:49:05.667-0700 871071970417049630 5StiKVA | motion#6959 +09:49:05.702-0700 871071971817975808 fMxLX7U | motion#9228 +09:49:05.721-0700 871071957544742973 cW6flSM | motion#3335 +09:49:05.769-0700 871071976695943209 YIe8yIs | motion#4096 +09:49:05.799-0700 871071972744888333 EHAjXf8 | motion#6599 +09:49:05.818-0700 871071959243456572 8Cwz-IA | motion#3303 +09:49:05.845-0700 871071974531678268 1mbd-8I | motion#7182 +09:49:05.849-0700 871071971121692714 TczG-vk | motion#7679 +09:49:05.905-0700 871071971448856586 rJAyF3A | motion#8050 +09:49:05.915-0700 871071976565919775 jKhn0s4 | motion#9166 +09:49:05.960-0700 871071976532377641 0rO6gKA | motion#3655 +09:49:05.963-0700 871071976616239154 618J-bQ | motion#0384 +09:49:05.981-0700 871071975014006815 SPQ0DYc | motion#8744 +09:49:06.012-0700 871071976263942194 uq6StXQ | motion#4636 +09:49:06.225-0700 871071952851312652 FXtjZrE | motion#3971 +09:49:06.235-0700 871071977375408178 K4-mZlE | motion#8499 +09:49:06.255-0700 871071961466429471 z270ST8 | motion#9595 +09:49:06.472-0700 871071978411409509 H96ezfU | motion#3130 +09:49:06.614-0700 871071971847319582 Hkn_Uys | motion#1966 +09:49:06.647-0700 871071978386243604 Kf-VE7I | motion#1591 +09:49:06.666-0700 871071952876478464 Ms7sgvE | motion#0991 +09:49:06.826-0700 871071981020262471 rp9gC1Q | motion#4319 +09:49:06.855-0700 871071977497059369 Pj1D9ZA | motion#8505 +09:49:06.859-0700 871071971536961616 ABeWFuA | motion#3320 +09:49:06.862-0700 871071975299248180 HufKMTg | motion#7155 +09:49:06.928-0700 871071964201103362 MNbR8FY | motion#7286 +09:49:07.033-0700 871071965438410823 Mge0FFs | motion#4286 +09:49:07.073-0700 871071966482821232 vzo4rbQ | motion#4655 +09:49:07.126-0700 871071974883999754 5tyS26s | motion#4579 +09:49:07.162-0700 871071974284197988 z1udXKI | motion#9733 +09:49:07.391-0700 871071980059762698 kXxGD4A | motion#7440 +09:49:07.438-0700 871071980177215498 866h2jc | motion#2406 +09:49:07.443-0700 871071983247446016 Um_qo4s | motion#3766 +09:49:07.453-0700 871071983037730826 TSsFnig | motion#2736 +09:49:07.459-0700 871071974661709924 nipHAAQ | motion#3132 +09:49:07.523-0700 871071970425462834 jHrxaHc | motion#0365 +09:49:07.524-0700 871071981888475177 tUVIVVc | motion#0953 +09:49:07.646-0700 871071981112537149 _xvVbVE | motion#0707 +09:49:07.689-0700 871071977341845585 ufBXv_I | motion#5905 +09:49:07.733-0700 871071983863988265 ePiULD8 | motion#2909 +09:49:07.777-0700 871071984518324285 soUnHU0 | motion#7516 +09:49:07.831-0700 871071967892107295 2XHpqfo | motion#3232 +09:49:07.981-0700 871071983830458419 FABgemA | motion#5939 +09:49:08.058-0700 871071971864105020 _RqHoUE | motion#6307 +09:49:08.070-0700 871071984774160405 i77e8wk | motion#0359 +09:49:08.093-0700 871071979032178759 MxqiHzY | motion#6613 +09:49:08.183-0700 871071971515957339 4XFCroE | motion#5454 +09:49:08.194-0700 871071982085615698 qxHxtf0 | motion#8175 +09:49:08.204-0700 871071972153511996 LwHR98I | motion#3277 +09:49:08.207-0700 871071973608919070 _dLs_SY | motion#2998 +09:49:08.207-0700 871071974875627561 p7RFmqo | motion#7592 +09:49:08.219-0700 871071983276802069 -JUPqP0 | motion#7414 +09:49:08.232-0700 871071982517628929 Iyma5IQ | motion#3028 +09:49:08.312-0700 871071983402647562 odZv3BU | motion#6714 +09:49:08.315-0700 871071987827605524 8QQR6TY | motion#7324 +09:49:08.343-0700 871071984732213339 jEQhCNw | motion#4902 +09:49:08.417-0700 871071986426736670 iQKD9dM | motion#8111 +09:49:08.449-0700 871071979350929429 mykfEvU | motion#8171 +09:49:08.592-0700 871071973315338260 C1uT_4I | motion#9621 +09:49:08.629-0700 871071989098479646 cfxBeI8 | motion#2900 +09:49:08.664-0700 871071987798278166 cdUcrfQ | motion#4390 +09:49:08.768-0700 871071987282378813 zUKOM88 | motion#8867 +09:49:08.975-0700 871071987932491777 vSrYr7E | motion#2637 +09:49:09.026-0700 871071989228519436 MwsJMNs | motion#6689 +09:49:09.028-0700 871071988607754301 yJ9D7U8 | motion#6684 +09:49:09.097-0700 871071990335819796 ePPZLqU | motion#2952 +09:49:09.123-0700 871071977371226142 T5J6fIk | motion#1929 +09:49:09.132-0700 871071987559182366 r9Prg64 | motion#7104 +09:49:09.165-0700 871071974384873472 hrYvz8E | motion#7895 +09:49:09.185-0700 871071987227828264 EqiBdiM | motion#6331 +09:49:09.200-0700 871071987592744960 VklibHA | motion#1998 +09:49:09.229-0700 871071988083478579 C11_568 | motion#9503 +09:49:09.250-0700 871071988217688084 Tv6Zs4w | motion#9933 +09:49:09.352-0700 871071989832507453 -AsLnK4 | motion#0605 +09:49:09.393-0700 871071989022982154 st7MRz4 | motion#1150 +09:49:09.404-0700 871071993183752212 QlOCpEo | motion#9823 +09:49:09.428-0700 871071989782163478 lM-16Xc | motion#5974 +09:49:09.446-0700 871071989417267232 K-X7WNY | motion#6105 +09:49:09.552-0700 871071990637789245 T3ucejY | motion#4997 +09:49:09.636-0700 871071991644426340 UYw-DY4 | motion#0142 +09:49:09.685-0700 871071979506122772 6zybSjw | motion#2569 +09:49:09.708-0700 871071926284603422 UPMPs3A | motion#9706 +09:49:09.722-0700 871071979732627467 iv7g9ms | motion#1803 +09:49:09.725-0700 871071977505435698 tjj_S3o | motion#9033 +09:49:09.820-0700 871071990205804584 krDoPNA | motion#9006 +09:49:09.924-0700 871071996434337863 M9YnrL4 | motion#5216 +09:49:10.152-0700 871071991099191327 b2kSqXk | motion#6887 +09:49:10.218-0700 871071980227559434 ijNgQgY | motion#7932 +09:49:10.229-0700 871071996442710087 gMpcOMg | motion#9903 +09:49:10.258-0700 871071980638601286 3rfoWFU | motion#8263 +09:49:10.267-0700 871071988964286558 vHK8aQY | motion#5488 +09:49:10.329-0700 871071995050213396 O9Zuobc | motion#2416 +09:49:10.330-0700 871071993804496906 -kK-AM0 | motion#4779 +09:49:10.336-0700 871071998141427793 KXmHeZ4 | motion#8514 +09:49:10.349-0700 871071984891617370 6D5EdRw | motion#7958 +09:49:10.373-0700 871071983109017660 ITjm8Z0 | motion#1604 +09:49:10.388-0700 871071992651083807 F8uUk1A | motion#3061 +09:49:10.397-0700 871071963571949639 FVigeYM | motion#9840 +09:49:10.440-0700 871071996958617600 iFGY9V0 | motion#7566 +09:49:10.514-0700 871071995352195124 augS3K0 | motion#3966 +09:49:10.548-0700 871071973113999371 rJTuUA0 | motion#4520 +09:49:10.560-0700 871071993179541505 hcNKxV4 | motion#5649 +09:49:10.594-0700 871071994781782087 KbrI3U8 | motion#9718 +09:49:10.605-0700 871071984774164521 u2RKqy4 | motion#1212 +09:49:10.661-0700 871071989652148226 6Q3YJ58 | motion#9312 +09:49:10.745-0700 871071992877563934 YROeUZY | motion#8374 +09:49:10.751-0700 871071996761473064 HuZhpIE | motion#6920 +09:49:10.762-0700 871071962674368594 _k908fE | motion#7392 +09:49:10.871-0700 871072000049832017 p3KfVEg | motion#4331 +09:49:10.917-0700 871071995394150430 byT7a70 | motion#4204 +09:49:10.944-0700 871071992638488586 ffWVYOU | motion#1646 +09:49:10.993-0700 871071999013830696 dtUOxoM | motion#8556 +09:49:11.087-0700 871071999676538970 Vjegt44 | motion#3324 +09:49:11.096-0700 871071985785004112 8ASSvDk | motion#5368 +09:49:11.112-0700 871071988238671974 Ya2B6to | motion#4767 +09:49:11.149-0700 871072000574107728 wk5znI8 | motion#9628 +09:49:11.200-0700 871071959281193040 rBJcYkc | motion#6412 +09:49:11.328-0700 871071993884201012 DeGPJaI | motion#2744 +09:49:11.536-0700 871071979116060774 qnzpKSE | motion#7433 +09:49:11.542-0700 871071993305370634 em3Xgck | motion#2921 +09:49:11.555-0700 871071990411325461 JJgWUw4 | motion#6423 +09:49:11.608-0700 871071999865262191 xwYQQpg | motion#8960 +09:49:11.652-0700 871072000762843157 s3X1TW4 | motion#5359 +09:49:11.739-0700 871071997197705317 B2_eg74 | motion#5450 +09:49:11.773-0700 871072002960679032 1ug_FK8 | motion#1086 +09:49:11.816-0700 871071997428396073 Nm5PcEM | motion#8937 +09:49:11.836-0700 871071985797566525 krPtVZY | motion#4827 +09:49:11.878-0700 871071998728613959 WSp5oyA | motion#3303 +09:49:11.918-0700 871071999991103518 sf_IO7s | motion#9600 +09:49:11.944-0700 871072004864880740 yXpqtCQ | motion#4793 +09:49:11.952-0700 871072000892870676 Oqnu7TU | motion#8719 +09:49:12.166-0700 871071994597212160 AmzDEtY | motion#6593 +09:49:12.174-0700 871072005275926588 ZdYnKEY | motion#6392 +09:49:12.190-0700 871072001563963452 xtje1Fo | motion#8693 +09:49:12.211-0700 871072001589141544 BMoUZIY | motion#5113 +09:49:12.301-0700 871072000913866772 Wd1_6G4 | motion#6616 +09:49:12.505-0700 871072005171060766 fUk_3Ns | motion#8294 +09:49:12.530-0700 871072003891814432 31hzSvM | motion#5786 +09:49:12.565-0700 871072004583854100 64McbPY | motion#0044 +09:49:12.594-0700 871072002180530246 XgYSWpw | motion#2171 +09:49:12.611-0700 871072001660440666 chngceA | motion#2371 +09:49:12.615-0700 871071993255034891 xYRM-XM | motion#7518 +09:49:12.655-0700 871071991770255430 OqOftTc | motion#7064 +09:49:12.661-0700 871071992743337984 ryq0IDQ | motion#2894 +09:49:12.695-0700 871072003258470400 h0mxY-s | motion#2133 +09:49:12.735-0700 871072001467486289 hm7oyUY | motion#0021 +09:49:12.764-0700 871071981422927904 gnwYmoA | motion#8129 +09:49:12.787-0700 871071993800319028 ff2JRqk | motion#9908 +09:49:12.831-0700 871072005020078102 lDwD2Eo | motion#8926 +09:49:12.853-0700 871071832936169514 x_84xUA | motion#3696 +09:49:12.891-0700 871071994022604822 2Otv78c | motion#7893 +09:49:12.893-0700 871072007184351273 n1HCTa0 | motion#0889 +09:49:13.004-0700 871072004780982362 DbTzzhM | motion#3326 +09:49:13.096-0700 871072006467096616 3OWyTeI | motion#6933 +09:49:13.128-0700 871072006634897428 E3ENcuI | motion#6515 +09:49:13.211-0700 871071985625600010 xdl0jV0 | motion#8708 +09:49:13.222-0700 871071990470017054 uh05Ogw | motion#9891 +09:49:13.308-0700 871072008274853898 rQAS4jw | motion#4426 +09:49:13.321-0700 871072005389164615 jPZ0Ao8 | motion#0314 +09:49:13.381-0700 871072005129125898 LeGhqtg | motion#2671 +09:49:13.403-0700 871072011001163816 JnuT_cs | motion#5021 +09:49:13.438-0700 871072005313675316 1SGaIRk | motion#9014 +09:49:13.455-0700 871072009587675208 GYOFUU0 | motion#0156 +09:49:13.499-0700 871071995545124995 -MY-blU | motion#7863 +09:49:13.501-0700 871072008841068544 rdcccOo | motion#0895 +09:49:13.516-0700 871072006987206686 dVv-k1s | motion#1206 +09:49:13.584-0700 871072008614576168 VrGpZAY | motion#6631 +09:49:13.662-0700 871071995176030240 qxQz-s4 | motion#7422 +09:49:13.689-0700 871072011554803802 9FYaHdU | motion#0245 +09:49:13.739-0700 871072006655868959 tuKkKQ8 | motion#4588 +09:49:13.741-0700 871072008555888731 omddtP0 | motion#0891 +09:49:13.767-0700 871072008736243712 WI9ClCM | motion#6187 +09:49:13.780-0700 871072004051185704 xrECvsc | motion#6440 +09:49:13.843-0700 871072006353846322 DA-KpE0 | motion#3171 +09:49:13.929-0700 871071997189304350 yJz3pgU | motion#7262 +09:49:13.972-0700 871071999852683304 cMr_Jc8 | motion#7363 +09:49:13.976-0700 871071998476967986 EJ9oOcI | motion#9397 +09:49:14.038-0700 871072010774671360 JJRtnbg | motion#5689 +09:49:14.047-0700 871072013031186523 sY3Ftnw | motion#9949 +09:49:14.090-0700 871071998015578123 9WcP44M | motion#0646 +09:49:14.101-0700 871071997478731838 vDHBRCQ | motion#7171 +09:49:14.103-0700 871072011257000016 cBGOVoE | motion#0226 +09:49:14.144-0700 871072013207343104 Y-e1rE0 | motion#1154 +09:49:14.235-0700 871072006420987965 2PDQhWk | motion#3288 +09:49:14.303-0700 871072014738288640 9AkFgNE | motion#1644 +09:49:14.387-0700 871071998992863242 JOCqXsA | motion#6659 +09:49:14.416-0700 871072008732033056 aMsb8Xw | motion#7093 +09:49:14.491-0700 871072010694979614 OUQ8KKk | motion#8684 +09:49:14.502-0700 871071975584456726 Tb9f_4A | motion#7982 +09:49:14.528-0700 871072010418131014 PKKYi9g | motion#5898 +09:49:14.592-0700 871072013375127552 HOjuV_E | motion#4296 +09:49:14.603-0700 871072000066600980 ZVgXYEk | motion#8432 +09:49:14.625-0700 871072002528641024 hpjDNX8 | motion#1652 +09:49:14.704-0700 871072013622587512 ZYbrMjs | motion#4696 +09:49:14.752-0700 871072016193687562 8L0Tuqw | motion#2562 +09:49:14.859-0700 871072013270274079 stm-yzs | motion#6525 +09:49:14.925-0700 871072000284708945 L0lq1ns | motion#4427 +09:49:14.932-0700 871072014562111518 0ryfSls | motion#2243 +09:49:15.048-0700 871072013211566100 LnaEYkw | motion#6279 +09:49:15.256-0700 871072015967195156 -lRb_o4 | motion#1658 +09:49:15.267-0700 871072014000062485 NBq6ASY | motion#6522 +09:49:15.580-0700 871072016990625844 8uuPEQE | motion#8943 +09:49:15.588-0700 871072014796980254 OrmhI94 | motion#7854 +09:49:15.622-0700 871072015908503624 Zi63UGY | motion#1835 +09:49:15.623-0700 871072015069630504 DYyGn_Q | motion#0080 +09:49:15.791-0700 871072017091297291 VkGQszY | motion#4063 +09:49:15.835-0700 871072018655748146 STlK5Es | motion#0028 +09:49:15.873-0700 871072018739654688 dtt2JVU | motion#1158 +09:49:15.895-0700 871072018211147786 eXmquoY | motion#3068 +09:49:15.931-0700 871072017762357268 Q7N0VaE | motion#7999 +09:49:15.935-0700 871072022296420412 32W0qhA | motion#7058 +09:49:15.949-0700 871072014658576396 FDuyVuk | motion#0429 +09:49:16.053-0700 871072017116438558 Fdg_5OA | motion#8783 +09:49:16.108-0700 871072022111879278 WBSGzGA | motion#6512 +09:49:16.130-0700 871072018764820490 3h-cZOA | motion#5062 +09:49:16.146-0700 871072019138109482 P74K1mE | motion#0645 +09:49:16.171-0700 871072023177207828 Q8YrWUI | motion#7883 +09:49:16.271-0700 871072023735042048 OwZ244U | motion#3677 +09:49:16.440-0700 871072022610989126 9bZ1saQ | motion#1594 +09:49:16.448-0700 871072023307239485 87_kjE8 | motion#0580 +09:49:16.458-0700 871072024204824627 0ctu-3o | motion#1185 +09:49:16.481-0700 871072022757797929 mJyF92w | motion#6601 +09:49:16.489-0700 871072011965857932 L0OGBtU | motion#2691 +09:49:16.690-0700 871072021457567785 0G3AdE0 | motion#5939 +09:49:16.697-0700 871072011093434448 79ABlfw | motion#9107 +09:49:16.794-0700 871072023324016650 PC6SGcQ | motion#3835 +09:49:16.946-0700 871072021130403870 DvDgS6U | motion#1531 +09:49:16.981-0700 871072023047192596 XGWBz3Q | motion#9605 +09:49:16.991-0700 871072026486509568 hHNLaRs | motion#1093 +09:49:17.192-0700 871072023722487871 weNPa0w | motion#7839 +09:49:17.230-0700 871071997675851827 HOeaYg8 | motion#2315 +09:49:17.238-0700 871072024959778856 EZ_Xang | motion#8016 +09:49:17.393-0700 871072024339046421 yXo7KlM | motion#6019 +09:49:17.410-0700 871072026553638922 vdfW1ko | motion#7687 +09:49:17.417-0700 871072012603359293 DtP_LuY | motion#3687 +09:49:17.460-0700 871072025018499102 h_KTSnY | motion#4651 +09:49:17.635-0700 871072023571464243 38Tbtg4 | motion#9167 +09:49:17.690-0700 871072024188055623 NWrgsE4 | motion#6541 +09:49:17.697-0700 871072023156256790 b7aXDpk | motion#5014 +09:49:17.733-0700 871072022275448882 Gulxljk | motion#1336 +09:49:17.799-0700 871072026826264576 LG7Xf78 | motion#0515 +09:49:17.834-0700 871072015392595988 As89omc | motion#3444 +09:49:17.908-0700 871072027262459904 KctraVg | motion#0164 +09:49:18.022-0700 871072028717899797 WJ_W1Qo | motion#9295 +09:49:18.092-0700 871072026473938965 uYAIRyQ | motion#0237 +09:49:18.160-0700 871072022971711559 PEJ7KUY | motion#3095 +09:49:18.272-0700 871072027677716500 jaRu0ek | motion#7893 +09:49:18.305-0700 871072024045449306 I5Ua5pQ | motion#6271 +09:49:18.417-0700 871071986493825104 A20Kvtc | motion#5509 +09:49:18.471-0700 871072029779066931 QMrjvLU | motion#4392 +09:49:18.491-0700 871072029892280370 BkOttKg | motion#8517 +09:49:18.588-0700 871072016113991690 iyF-C8I | motion#9796 +09:49:18.641-0700 871072029825200179 zruern8 | motion#5167 +09:49:18.726-0700 871072021893750814 RQwB_z8 | motion#3510 +09:49:18.729-0700 871072030345293865 qzJ-t3s | motion#5494 +09:49:18.731-0700 871072020576743465 HT1WLeA | motion#9930 +09:49:18.767-0700 871072010975973376 dm_lrkA | motion#1479 +09:49:19.013-0700 871072030957645854 qHLl_Jw | motion#8904 +09:49:19.055-0700 871072033784623137 n9_Fcag | motion#4799 +09:49:19.106-0700 871072018647384104 AaEWS-8 | motion#9293 +09:49:19.109-0700 871072031196725349 vKlPX8k | motion#1173 +09:49:19.151-0700 871072033394548796 oADbNXE | motion#6744 +09:49:19.213-0700 871072035181326367 VKd7Zd8 | motion#1910 +09:49:19.216-0700 871072033222582323 7UWpulU | motion#0223 +09:49:19.241-0700 871072030458544209 1WHeD1c | motion#2973 +09:49:19.242-0700 871072032446644224 UoBCSMA | motion#2655 +09:49:19.281-0700 871072029292527636 zqXfrh0 | motion#8708 +09:49:19.443-0700 871072036368318585 6B8I3W0 | motion#8144 +09:49:19.483-0700 871071958396182621 pxQM5EI | motion#3996 +09:49:19.648-0700 871072037421068328 EqPLjO8 | motion#5563 +09:49:19.725-0700 871072033734287360 yu4a7nI | motion#4147 +09:49:19.753-0700 871072036636725289 ucsy1tc | motion#7040 +09:49:19.773-0700 871072037609811968 k0nPs8Q | motion#4152 +09:49:19.837-0700 871072031611961344 ZYWYnSs | motion#7750 +09:49:19.938-0700 871072033809764352 cZMGukg | motion#4155 +09:49:19.949-0700 871072036485738636 utL1Ay4 | motion#9155 +09:49:19.963-0700 871072034824794113 FYFjusU | motion#1044 +09:49:20.052-0700 871072036913549313 2MjxjTQ | motion#2240 +09:49:20.149-0700 871072035252617228 EkWfaig | motion#4537 +09:49:20.151-0700 871072036720607293 eh_Olb8 | motion#6832 +09:49:20.260-0700 871072036917764164 k-D6jmY | motion#7349 +09:49:20.287-0700 871072024250970132 -8FO6Wc | motion#3016 +09:49:20.358-0700 871072038431907950 Vvd_lrs | motion#9135 +09:49:20.361-0700 871072019024863282 1XO_Too | motion#5602 +09:49:20.382-0700 871071989140422706 M1MOlus | motion#7596 +09:49:20.416-0700 871072037530128404 HIta8uI | motion#1267 +09:49:20.422-0700 871072030215258163 qCtx6Y0 | motion#1996 +09:49:20.462-0700 871072037110702151 _ufgUbw | motion#1930 +09:49:20.478-0700 871072036116643880 O6_wBGM | motion#3760 +09:49:20.488-0700 871072037005824051 INWabdU | motion#6179 +09:49:20.518-0700 871072041640538122 ThSnGNI | motion#3740 +09:49:20.536-0700 871072040696823898 liI4NEE | motion#1573 +09:49:20.547-0700 871072037442060309 oH6_VA0 | motion#4061 +09:49:20.740-0700 871072040965271573 v76ESYI | motion#3307 +09:49:20.881-0700 871072026088071240 v85R8Ew | motion#3633 +09:49:20.948-0700 871072039916695664 Zbx9Xdc | motion#5486 +09:49:20.964-0700 871072039174287370 t6cPvRY | motion#4786 +09:49:21.064-0700 871072027740622849 7YIHYGw | motion#5050 +09:49:21.212-0700 871072039170105394 e4SJBMA | motion#9667 +09:49:21.250-0700 871072028545916958 GYdHJNY | motion#5352 +09:49:21.282-0700 871072040440959017 i9j6I5A | motion#3266 +09:49:21.298-0700 871072037832130580 Cyoo8Mw | motion#7725 +09:49:21.371-0700 871072039748898836 sMZWjV8 | motion#3716 +09:49:21.372-0700 871072045146980362 J3t8-C8 | motion#1072 +09:49:21.377-0700 871072027245674506 raywJas | motion#7803 +09:49:21.402-0700 871072039174287461 wsjN8w0 | motion#4195 +09:49:21.405-0700 871072041120436316 jmdMxgg | motion#9650 +09:49:21.422-0700 871072038276710441 zw0ZngI | motion#9186 +09:49:21.440-0700 871072039803441183 YpUL2z4 | motion#0525 +09:49:21.507-0700 871072043737702441 SFAztG4 | motion#8785 +09:49:21.508-0700 871072040801681478 VL0PjT8 | motion#8166 +09:49:21.522-0700 871072044001939477 sNyLFfE | motion#9553 +09:49:21.551-0700 871072042261295145 bP1cqlw | motion#1874 +09:49:21.642-0700 871072041502138388 Kb3AjHk | motion#2678 +09:49:21.686-0700 871072044027084811 N-IihCI | motion#7112 +09:49:21.856-0700 871072044777877544 ie8KseE | motion#5500 +09:49:21.863-0700 871072045209890887 Fz7D_mw | motion#9132 +09:49:21.882-0700 871072027765788673 Rh_jim8 | motion#1340 +09:49:21.907-0700 871072043439894549 Aurw0Q8 | motion#9152 +09:49:22.017-0700 871072046417846374 Jeq582U | motion#8345 +09:49:22.037-0700 871072028206182442 fk_uOkA | motion#2354 +09:49:22.063-0700 871072043846746192 KA7NE-A | motion#6975 +09:49:22.089-0700 871072045969063948 6Nfmiy4 | motion#4433 +09:49:22.139-0700 871072045625135114 FG7NOnM | motion#8354 +09:49:22.140-0700 871072042999513128 etmf3fE | motion#4542 +09:49:22.163-0700 871072041552474173 SfX4pnI | motion#7139 +09:49:22.167-0700 871072030051688459 GOMm5KI | motion#0325 +09:49:22.180-0700 871072044077445173 iX7Vxzg | motion#5755 +09:49:22.207-0700 871072011051470878 S7pSmSA | motion#3026 +09:49:22.212-0700 871072043699953694 yMZBffU | motion#7950 +09:49:22.256-0700 871072043062399057 QEpcW8A | motion#4457 +09:49:22.284-0700 871072043066597447 jcoVvm4 | motion#2316 +09:49:22.397-0700 871072043154690058 NE1N3Gs | motion#0248 +09:49:22.441-0700 871072042932404285 BmLkBJg | motion#0679 +09:49:22.441-0700 871072045012762634 NlHeKuU | motion#3239 +09:49:22.470-0700 871072042852696094 C0VrBNg | motion#2657 +09:49:22.488-0700 871072048561127464 3Uwuikw | motion#2067 +09:49:22.529-0700 871072045373485076 YaGEGeM | motion#0813 +09:49:22.544-0700 871072047256715394 2cwWG_s | motion#2018 +09:49:22.604-0700 871072048317857813 r1TU_F0 | motion#1448 +09:49:22.774-0700 871072047256723547 qGhW1hY | motion#4265 +09:49:22.802-0700 871072045520281620 7ctL5fs | motion#5603 +09:49:22.836-0700 871072046447210527 g3m3WI8 | motion#0973 +09:49:22.850-0700 871072044836605994 6ld5oQ0 | motion#9077 +09:49:22.868-0700 871072049085415425 VLPCSac | motion#8123 +09:49:22.896-0700 871072046027784233 cJAzysk | motion#3437 +09:49:23.057-0700 871072051388096523 89cMnNY | motion#4901 +09:49:23.085-0700 871072038285086820 grZh70g | motion#8363 +09:49:23.184-0700 871072050930913280 lQ-jDzY | motion#2802 +09:49:23.262-0700 871072046233296926 xQg3qHs | motion#2799 +09:49:23.310-0700 871072043272122498 3t1aOuA | motion#6941 +09:49:23.311-0700 871072048431124490 -a1OUF8 | motion#3443 +09:49:23.327-0700 871072045948108810 DF7JZME | motion#7213 +09:49:23.516-0700 871072049542627359 BCYMub0 | motion#9052 +09:49:23.516-0700 871072049383219220 w4c2Mik | motion#9370 +09:49:23.534-0700 871072047369957397 UoRGIxM | motion#8328 +09:49:23.637-0700 871072046275231745 uL4_EN0 | motion#1264 +09:49:23.747-0700 871072051501338746 hKdS-jU | motion#0200 +09:49:24.065-0700 871072052105322586 2G6aL4k | motion#1983 +09:49:24.074-0700 871072049039290448 ElJi_3Y | motion#2532 +09:49:24.125-0700 871072050775740476 TiFnIQ4 | motion#0589 +09:49:24.447-0700 871072038683545620 rL6yDyg | motion#6192 +09:49:24.476-0700 871072054227648583 446jveM | motion#9703 +09:49:24.619-0700 871072051715264522 NVCs5w0 | motion#2357 +09:49:24.646-0700 871072048712151060 Y4y19qM | motion#5002 +09:49:24.656-0700 871072054009544704 yEifY3E | motion#4663 +09:49:24.670-0700 871072049689395261 56vann8 | motion#9070 +09:49:24.693-0700 871072054777110539 CxycClY | motion#0542 +09:49:24.695-0700 871072054915526726 1k9s3n8 | motion#8404 +09:49:24.725-0700 871072055263641630 F2ItA9w | motion#0125 +09:49:24.738-0700 871072052973543484 3L0S6_w | motion#9804 +09:49:24.741-0700 871072052126294016 1dGivSo | motion#0346 +09:49:24.747-0700 871072048456290335 KwOgepE | motion#8400 +09:49:24.846-0700 871072051383914527 P_ivmXI | motion#2170 +09:49:24.856-0700 871072048988954675 QJd_o4Y | motion#9841 +09:49:24.893-0700 871072049748119643 srlArpQ | motion#1838 +09:49:24.948-0700 871072056727457792 7ixe1Dk | motion#6394 +09:49:24.995-0700 871072055037157406 CHluv1g | motion#6453 +09:49:24.998-0700 871072056773595197 9mL6EXE | motion#5949 +09:49:25.001-0700 871072055976661042 6bRLue4 | motion#1172 +09:49:25.055-0700 871072051769770037 mPs8yT4 | motion#0443 +09:49:25.117-0700 871072056534515722 PAl7EGc | motion#3229 +09:49:25.257-0700 871072057541148683 Vrigfzk | motion#6362 +09:49:25.407-0700 871072060330364968 DTHG3uk | motion#5392 +09:49:25.639-0700 871072044605898753 9A_iLnE | motion#9151 +09:49:25.675-0700 871072048942841897 n6oqqrI | motion#5091 +09:49:25.691-0700 871072054810669096 MAnUdj8 | motion#8769 +09:49:25.713-0700 871072056756801537 iPfSVgk | motion#0562 +09:49:25.756-0700 871072060959490108 4KFIG2k | motion#6602 +09:49:25.767-0700 871072055234281563 RSzq_20 | motion#2959 +09:49:25.882-0700 871072045130219610 A8HY-RY | motion#2782 +09:49:25.886-0700 871072049924276295 IyWsxqU | motion#6563 +09:49:25.917-0700 871072056245112832 Tc03k-c | motion#2400 +09:49:25.957-0700 871072043913850880 JQt1lP4 | motion#9094 +09:49:25.972-0700 871072054764535878 pFTlH_k | motion#4286 +09:49:25.973-0700 871072050721214465 RdNaoTg | motion#5818 +09:49:26.046-0700 871072044853366794 UqAjHv0 | motion#6164 +09:49:26.049-0700 871072047713878016 i_GfyJA | motion#4559 +09:49:26.082-0700 871072052038225981 ZWE-av8 | motion#6955 +09:49:26.107-0700 871072048401760347 B4ay3e8 | motion#7366 +09:49:26.121-0700 871072059520868394 DHh96b8 | motion#3443 +09:49:26.149-0700 871072057956401162 K5FlcGo | motion#2209 +09:49:26.183-0700 871072054659657748 TZ26los | motion#6367 +09:49:26.192-0700 871072055708254238 3YSCLaI | motion#7338 +09:49:26.199-0700 871072052671565914 y9B3ync | motion#0633 +09:49:26.213-0700 871072053644644392 wDBn6JQ | motion#3357 +09:49:26.230-0700 871072062821773333 wS4zLDc | motion#3846 +09:49:26.270-0700 871072048611487856 91i-2E0 | motion#4244 +09:49:26.270-0700 871072056140263444 XPPtWPs | motion#0283 +09:49:26.277-0700 871072056152846376 j7BRTR4 | motion#0900 +09:49:26.302-0700 871072063853584404 0g_ePes | motion#9853 +09:49:26.318-0700 871072060112244786 DM7-Xfg | motion#6068 +09:49:26.371-0700 871072043871920179 Fr8Po8o | motion#7257 +09:49:26.377-0700 871072064335908874 KI-EQGw | motion#6764 +09:49:26.421-0700 871072058015100969 UefChGc | motion#9809 +09:49:26.432-0700 871072055263637584 VXcwQHM | motion#4713 +09:49:26.442-0700 871072035323908096 wlF_uQI | motion#3221 +09:49:26.452-0700 871072061899026482 8qwjdjo | motion#1229 +09:49:26.458-0700 871072051522318376 RG5Y2Y8 | motion#9958 +09:49:26.496-0700 871072045130215426 XQEIaEs | motion#0525 +09:49:26.506-0700 871072060179370044 e_hoqy8 | motion#3475 +09:49:26.524-0700 871072059285995560 QO50UKE | motion#0840 +09:49:26.531-0700 871072046250074142 MlTegvU | motion#4706 +09:49:26.533-0700 871072060842065971 UmPEQXQ | motion#7365 +09:49:26.540-0700 871072063555768390 6a78HfI | motion#5828 +09:49:26.558-0700 871072032387891272 PzVSgyM | motion#4097 +09:49:26.565-0700 871072057776037909 8FKI61M | motion#1511 +09:49:26.589-0700 871072049198686238 X-AZVFo | motion#4527 +09:49:26.601-0700 871072062100373555 fyUqs4s | motion#1905 +09:49:26.607-0700 871072059353079878 IjJwvhg | motion#4689 +09:49:26.633-0700 871072067280306226 YsnJtFQ | motion#7593 +09:49:26.664-0700 871072062255558696 OxUT7O8 | motion#3100 +09:49:26.694-0700 871072062591107122 A0rlwdA | motion#4541 +09:49:26.698-0700 871072063165714533 feyu7Qg | motion#0340 +09:49:26.749-0700 871072055838261260 1j8BsCU | motion#3226 +09:49:26.754-0700 871072056526123028 XDPYtZo | motion#8636 +09:49:26.766-0700 871072049009922069 _l5WFuQ | motion#1665 +09:49:26.788-0700 871072065002815489 aGALvYc | motion#7348 +09:49:26.815-0700 871072060439408661 1DuS3HE | motion#9472 +09:49:26.850-0700 871072051920764958 WLd8-vA | motion#5474 +09:49:26.862-0700 871072057222365214 m9fgAM8 | motion#1833 +09:49:26.864-0700 871072056173805568 FXFuemk | motion#2004 +09:49:26.881-0700 871072063329304576 j7G7CKw | motion#9720 +09:49:26.907-0700 871072047684534293 INTvV4g | motion#8234 +09:49:26.915-0700 871072061739638814 t65Udtk | motion#9484 +09:49:27.089-0700 871072048888287242 X77kS-g | motion#1897 +09:49:27.132-0700 871072058338050128 E4ggN2I | motion#9470 +09:49:27.151-0700 871072059957059624 jJ0OjhY | motion#6031 +09:49:27.165-0700 871072056819716166 0_Yl77I | motion#9401 +09:49:27.186-0700 871072060732997642 eI9a5ds | motion#3648 +09:49:27.202-0700 871072062700150816 uCcrCbU | motion#9740 +09:49:27.287-0700 871072068207280248 LoxQvD0 | motion#2814 +09:49:27.297-0700 871072064927326259 Gv59EMQ | motion#6063 +09:49:27.323-0700 871072059260821515 GVMalcc | motion#9265 +09:49:27.335-0700 871072059134976020 QY065ME | motion#0749 +09:49:27.347-0700 871072066953158738 uvcNwFg | motion#5768 +09:49:27.367-0700 871072067641028700 WakMFLg | motion#6201 +09:49:27.372-0700 871072045021143101 6uCRQKA | motion#0785 +09:49:27.389-0700 871072063962636288 _k-mWTo | motion#5298 +09:49:27.398-0700 871072054101835806 NluQcNs | motion#7539 +09:49:27.402-0700 871072063006310421 n_Eo7Zs | motion#4785 +09:49:27.404-0700 871072048384970823 jggFSZ0 | motion#8258 +09:49:27.448-0700 871072065304801290 b8RaHrU | motion#5301 +09:49:27.492-0700 871072065770360932 hitRfTQ | motion#0656 +09:49:27.543-0700 871072064008757268 qMJSXIk | motion#4103 +09:49:27.548-0700 871072060783353856 s-VUm3g | motion#3345 +09:49:27.550-0700 871072064323342406 iMQXWA8 | motion#2538 +09:49:27.553-0700 871072065552273490 Jw0HF6s | motion#4806 +09:49:27.637-0700 871072064193306634 QXOv4KA | motion#5426 +09:49:27.640-0700 871072065850052619 c9I6_Gg | motion#7121 +09:49:27.683-0700 871072064386256946 vsUHHJE | motion#3744 +09:49:27.695-0700 871072060405870592 6L7Xv3Y | motion#4345 +09:49:27.698-0700 871072044895322132 3OJN4LI | motion#3228 +09:49:27.701-0700 871072053397188688 QNEXgPw | motion#6606 +09:49:27.751-0700 871072063845175316 sYJvNqw | motion#7105 +09:49:27.762-0700 871072065984282696 aiHrpvY | motion#7328 +09:49:27.770-0700 871072068270174209 y7F5Hk0 | motion#8824 +09:49:27.771-0700 871072045180518421 -Nwbaok | motion#2772 +09:49:27.784-0700 871072068429574144 tbVXdbg | motion#0923 +09:49:27.805-0700 871072053535592458 4iZkABY | motion#2379 +09:49:27.826-0700 871072069440397343 U_m8wFU | motion#0362 +09:49:27.839-0700 871072064038125638 JjAWl9k | motion#1654 +09:49:27.850-0700 871072068328890438 vH3q6CY | motion#5419 +09:49:27.905-0700 871072068500869151 yACnPgU | motion#5186 +09:49:27.958-0700 871072056610009130 fqyc1wM | motion#4029 +09:49:27.969-0700 871072064327536660 jgdVopg | motion#6196 +09:49:28.026-0700 871072062163279912 uJolgu8 | motion#6456 +09:49:28.026-0700 871072047512571935 Xf2rYFo | motion#3801 +09:49:28.039-0700 871072067360002088 JXNXuxo | motion#5472 +09:49:28.049-0700 871072068861579364 lkC8TSw | motion#2246 +09:49:28.058-0700 871072067288698900 jEJMR8o | motion#0171 +09:49:28.069-0700 871072055678885889 qbV01qo | motion#7176 +09:49:28.156-0700 871072063824211969 aNDuWbE | motion#0489 +09:49:28.167-0700 871072066265296967 XG4bFvM | motion#9410 +09:49:28.169-0700 871072068375052298 Kl7MYcw | motion#6389 +09:49:28.247-0700 871072062414917702 6ogkS7g | motion#5059 +09:49:28.293-0700 871072070447026226 EwufVus | motion#0459 +09:49:28.338-0700 871072066974138378 bFN6OjM | motion#5790 +09:49:28.368-0700 871072071113900092 KOe674M | motion#4256 +09:49:28.371-0700 871072067016089680 jfIwnJg | motion#3078 +09:49:28.392-0700 871072074033160242 cnoDHmY | motion#2725 +09:49:28.447-0700 871072065271259187 ezbXdUY | motion#0890 +09:49:28.455-0700 871072072707760128 JbcGJi4 | motion#9035 +09:49:28.479-0700 871072068073050142 QyHzlgI | motion#4346 +09:49:28.483-0700 871072068022730792 meYOneA | motion#0229 +09:49:28.489-0700 871072070472196156 jOyJ7AI | motion#8986 +09:49:28.520-0700 871072067141910559 yQzHxno | motion#5169 +09:49:28.554-0700 871072062154895411 ZMrn6kk | motion#2156 +09:49:28.557-0700 871072070778380328 rhC7gjc | motion#7042 +09:49:28.584-0700 871072065925554207 GL8GwIU | motion#2563 +09:49:28.641-0700 871072070925185074 N12NQXA | motion#9550 +09:49:28.653-0700 871072072409972766 I88A-h4 | motion#5731 +09:49:28.706-0700 871072062268112939 8vQ69K8 | motion#6469 +09:49:28.710-0700 871072070300205087 9Ml0eLU | motion#3113 +09:49:28.718-0700 871072067632631848 fQ-eYCI | motion#8056 +09:49:28.728-0700 871072070895816804 T47Pj7Q | motion#1062 +09:49:28.962-0700 871072041216934008 hga1K_k | motion#9507 +09:49:29.061-0700 871072072372199424 8XXaUpU | motion#8983 +09:49:29.070-0700 871072068953845770 -17IcQA | motion#8735 +09:49:29.079-0700 871072070992269342 4UUSXYA | motion#0942 +09:49:29.128-0700 871072072766468168 7sJ-yq8 | motion#8745 +09:49:29.143-0700 871072068995805264 e3yodmU | motion#5572 +09:49:29.172-0700 871072068400205824 Cxgil7o | motion#6270 +09:49:29.185-0700 871072075564060702 QD1Rxnw | motion#8683 +09:49:29.198-0700 871072074054131732 lp6JVLs | motion#7090 +09:49:29.203-0700 871072066818961468 delhE4Q | motion#7846 +09:49:29.222-0700 871072071797604403 M40TC4A | motion#5692 +09:49:29.231-0700 871072050717007992 cDRfZTw | motion#5548 +09:49:29.253-0700 871072073987006515 2x0tw_E | motion#8727 +09:49:29.352-0700 871072076675559424 deIRjlk | motion#0556 +09:49:29.393-0700 871072065556463616 B9LaL4I | motion#1556 +09:49:29.458-0700 871072076298092594 xl6SOKc | motion#9993 +09:49:29.497-0700 871072075601834044 dYSy4UU | motion#3106 +09:49:29.507-0700 871072062280708136 0MmEecM | motion#4101 +09:49:29.558-0700 871072074372890665 TiNGLps | motion#7724 +09:49:29.570-0700 871072070623199243 2rM_CZI | motion#8376 +09:49:29.593-0700 871072073760518154 6J3DbHE | motion#9647 +09:49:29.620-0700 871072071172620318 57zk-Io | motion#5205 +09:49:29.711-0700 871072076029644820 F31jYw4 | motion#3094 +09:49:29.757-0700 871072061697708042 UNOfwIo | motion#4559 +09:49:29.782-0700 871072079708045382 UTI5qWM | motion#5209 +09:49:29.788-0700 871072071755636797 gqfhATM | motion#7907 +09:49:29.833-0700 871072073810837564 x47-2Uo | motion#6089 +09:49:29.970-0700 871072075320786996 DQueKqk | motion#9130 +09:49:29.992-0700 871072077422157865 G1kDK3Q | motion#8431 +09:49:30.023-0700 871072074565845123 39tVm0k | motion#5483 +09:49:30.028-0700 871072073685016578 etkNbeQ | motion#7385 +09:49:30.032-0700 871072076994314261 YtYkFec | motion#0220 +09:49:30.056-0700 871072075425648671 P-rhyhw | motion#5673 +09:49:30.060-0700 871072067162894368 HJmEdew | motion#6639 +09:49:30.075-0700 871072064679845888 jSeI2Xo | motion#3795 +09:49:30.076-0700 871072063580930088 S-qQoaY | motion#2893 +09:49:30.095-0700 871072076860121129 0npFLyA | motion#6197 +09:49:30.097-0700 871072076272918599 2XweEBM | motion#0982 +09:49:30.101-0700 871072079859048488 _JMglmc | motion#7156 +09:49:30.161-0700 871072073143951474 a0xbRuk | motion#5493 +09:49:30.182-0700 871072077745119232 WiA2Sig | motion#1307 +09:49:30.238-0700 871072080844697630 CO3f4wQ | motion#2664 +09:49:30.274-0700 871072063681626143 pyxna_4 | motion#5037 +09:49:30.417-0700 871072077929664565 YQoNJrs | motion#8626 +09:49:30.430-0700 871072079653515275 CHgjWe4 | motion#3779 +09:49:30.445-0700 871072047420280913 LYSNcsg | motion#0068 +09:49:30.447-0700 871072064579199026 em0rR0E | motion#5427 +09:49:30.461-0700 871072075824111726 I2XKhHU | motion#4217 +09:49:30.563-0700 871072077485064293 gv7la60 | motion#9329 +09:49:30.569-0700 871072079263461376 -SKRPkY | motion#4911 +09:49:30.570-0700 871072079796121630 Uq9YezM | motion#0995 +09:49:30.590-0700 871072078613340160 0w_MF54 | motion#6511 +09:49:30.710-0700 871072064675655732 VIe-3g8 | motion#2425 +09:49:30.717-0700 871072080509149215 kE3zyKU | motion#9027 +09:49:30.723-0700 871072083453566976 Ap3xBnM | motion#2442 +09:49:30.742-0700 871072065741000705 RgjZXmY | motion#8800 +09:49:30.752-0700 871072079049539695 Wn7AuUE | motion#3125 +09:49:30.867-0700 871072081704550430 KF462U8 | motion#0586 +09:49:30.925-0700 871072068232429619 4pvkMAk | motion#8412 +09:49:31.000-0700 871072081142493185 twmX3KM | motion#3913 +09:49:31.010-0700 871072083097034784 iSUG4oU | motion#1350 +09:49:31.036-0700 871072080135880755 brMSPrs | motion#3749 +09:49:31.158-0700 871072080483987496 VZSMQac | motion#8923 +09:49:31.209-0700 871072083399049266 QGEGCJA | motion#7483 +09:49:31.225-0700 871072079624142849 goGaSds | motion#6655 +09:49:31.278-0700 871072079250878516 LGpScf4 | motion#6494 +09:49:31.316-0700 871072080492372028 GuvVzwI | motion#7776 +09:49:31.347-0700 871072082400776262 QjQbipE | motion#9077 +09:49:31.375-0700 871072067829768242 tSMiiYc | motion#5404 +09:49:31.392-0700 871072083617148928 TQIozaE | motion#2529 +09:49:31.459-0700 871072087551389696 FNBQp5A | motion#9817 +09:49:31.467-0700 871072082576945242 sBGGj9I | motion#1914 +09:49:31.477-0700 871072081951989792 i6DQ3jg | motion#7703 +09:49:31.478-0700 871072085643001908 WHhIw34 | motion#2745 +09:49:31.534-0700 871072087320690708 -o0FRSw | motion#3947 +09:49:31.548-0700 871072067867533324 4lv1i1c | motion#6594 +09:49:31.720-0700 871072087261990912 S5kFT4c | motion#2665 +09:49:31.723-0700 871072087203258429 HZavDUs | motion#7323 +09:49:31.732-0700 871072087530418176 pGH9ZC0 | motion#6350 +09:49:31.750-0700 871072087433949224 0_J51_Q | motion#0291 +09:49:31.753-0700 871072088121835520 Z1tpv_4 | motion#2705 +09:49:31.773-0700 871072087513636915 3pAyz90 | motion#3178 +09:49:31.817-0700 871072087131967500 Fp3EsSU | motion#0862 +09:49:31.819-0700 871072085039013909 3hWs1Bg | motion#6412 +09:49:32.050-0700 871072081670979604 pyoyRxM | motion#5853 +09:49:32.069-0700 871072086477660210 4x7C2Oo | motion#3099 +09:49:32.078-0700 871072085605240882 9TRd8WQ | motion#5741 +09:49:32.095-0700 871072086494425168 O7FVuPI | motion#2718 +09:49:32.103-0700 871072075098521620 nEd7htw | motion#8024 +09:49:32.129-0700 871072071470436382 UBPmVQU | motion#5642 +09:49:32.180-0700 871072085424885821 6Dqw0qU | motion#8202 +09:49:32.189-0700 871072088922914816 2mXWSug | motion#4676 +09:49:32.195-0700 871072086364405782 LYWbNls | motion#6188 +09:49:32.207-0700 871072075631190056 J7vspso | motion#7216 +09:49:32.265-0700 871072088436404286 kDaK0BA | motion#0529 +09:49:32.279-0700 871072072435138632 nzT1w7w | motion#4262 +09:49:32.291-0700 871072090458034186 pB_pLzY | motion#7812 +09:49:32.294-0700 871072088084066364 GHCtgOs | motion#3762 +09:49:32.305-0700 871072087635279903 K_cjM84 | motion#9842 +09:49:32.307-0700 871072085802352641 9HVrlbQ | motion#3110 +09:49:32.326-0700 871072075505365052 5PUTdEg | motion#0837 +09:49:32.386-0700 871072084984492072 otrD67o | motion#3346 +09:49:32.477-0700 871072091112341574 G4kRYQM | motion#6526 +09:49:32.507-0700 871072087446536242 Ds9G6NA | motion#3597 +09:49:32.552-0700 871072087626874880 G2P9AuM | motion#8313 +09:49:32.563-0700 871072089711460404 4_LkfYg | motion#5944 +09:49:32.572-0700 871072087761100831 Yq0gUd0 | motion#7996 +09:49:32.589-0700 871072074758778971 -fdhP_A | motion#2281 +09:49:32.643-0700 871072085810753546 Hk1pgh0 | motion#2382 +09:49:32.647-0700 871072089296228392 ip3jjIY | motion#5159 +09:49:32.792-0700 871072087505268756 ZxQ-HX0 | motion#2391 +09:49:32.793-0700 871072092039295066 z9B1BN8 | motion#8991 +09:49:32.906-0700 871072088860028948 NywCLd0 | motion#8830 +09:49:33.108-0700 871072090583883846 UrMMRmg | motion#6087 +09:49:33.165-0700 871072075652149298 DbI_r5E | motion#2450 +09:49:33.180-0700 871072091322089552 Z37OEFw | motion#0432 +09:49:33.186-0700 871072093603758112 TYMbHio | motion#1416 +09:49:33.230-0700 871072088130215976 txIWK4k | motion#8284 +09:49:33.250-0700 871072081201217538 VzfPQ5g | motion#8402 +09:49:33.406-0700 871072088696447006 w_SCtXY | motion#4136 +09:49:33.467-0700 871072094526505003 4--eiXc | motion#0610 +09:49:33.467-0700 871072090508386405 fhw-KVI | motion#0211 +09:49:33.586-0700 871072095436669018 DT6d4jI | motion#0215 +09:49:33.600-0700 871072092479684658 NCCIBEU | motion#0515 +09:49:33.621-0700 871072091468873778 FeEQIbA | motion#0447 +09:49:33.810-0700 871072077434720326 3RCuNkk | motion#6765 +09:49:33.817-0700 871072092051886110 fI2cnwU | motion#6562 +09:49:33.834-0700 871072079892602880 DaWAylc | motion#5487 +09:49:33.851-0700 871072095235371048 TgpL-s8 | motion#4659 +09:49:33.859-0700 871072090781016195 KLi_ozU | motion#5820 +09:49:33.890-0700 871072076813983804 wvVmQbc | motion#4486 +09:49:33.979-0700 871072091842166804 AesUBjo | motion#0263 +09:49:34.000-0700 871072073148166194 2E9Wn6c | motion#9185 +09:49:34.005-0700 871072092706181170 pnWoCJo | motion#0391 +09:49:34.049-0700 871072094107091004 0dk3G5Q | motion#8212 +09:49:34.127-0700 871072095516364850 -PxbrEw | motion#2512 +09:49:34.167-0700 871072092257390682 _z3UbO8 | motion#6814 +09:49:34.193-0700 871072085974347786 0WZe-Dk | motion#8330 +09:49:34.220-0700 871072079053725777 cCsB_l8 | motion#5721 +09:49:34.242-0700 871072095122108456 6pi8ZPg | motion#8317 +09:49:34.243-0700 871072098540462121 9bb5BUw | motion#8568 +09:49:34.330-0700 871072094014824518 T8Dz1Rs | motion#7604 +09:49:34.365-0700 871072093884805140 Srwc3h8 | motion#3494 +09:49:34.447-0700 871072098750189597 qNvDUNQ | motion#1461 +09:49:34.498-0700 871072083650703370 BZ5IMjA | motion#6139 +09:49:34.524-0700 871072086683185194 ySJY390 | motion#1727 +09:49:34.564-0700 871072098779557980 Cbl7Ki8 | motion#2283 +09:49:34.575-0700 871072098406240256 OoOcYQY | motion#1326 +09:49:34.630-0700 871072094228725790 8PZ0WeM | motion#3873 +09:49:34.633-0700 871072083130580993 t7Qb9mw | motion#8034 +09:49:34.642-0700 871072092957863977 PdKhbe8 | motion#8819 +09:49:34.654-0700 871072094253879356 AoVTlHQ | motion#1931 +09:49:34.662-0700 871072069880807494 jNgwBz0 | motion#4900 +09:49:34.749-0700 871072086469275748 ZW0bRQ4 | motion#2533 +09:49:34.754-0700 871072097756131380 blEHJFY | motion#7407 +09:49:34.769-0700 871072094744617020 WdLGMhk | motion#0673 +09:49:34.781-0700 871072097022132294 7ltKcWg | motion#1384 +09:49:34.810-0700 871072090785185832 XMS0OUg | motion#0357 +09:49:34.922-0700 871072098456584302 cyLVoVo | motion#4147 +09:49:34.949-0700 871072084795731968 bnyHwaA | motion#1321 +09:49:34.990-0700 871072100675366963 1PZJsAo | motion#8901 +09:49:34.999-0700 871072097953276005 jaoauDk | motion#9212 +09:49:35.044-0700 871072102260801576 iLv3RDo | motion#3357 +09:49:35.102-0700 871072089191370752 5sDveus | motion#7958 +09:49:35.124-0700 871072085127102485 JlWJMzo | motion#0116 +09:49:35.130-0700 871072086444109844 YxrkrRM | motion#6062 +09:49:35.134-0700 871072101640056892 udw977M | motion#8916 +09:49:35.155-0700 871072101736546354 fqL2WVo | motion#6285 +09:49:35.184-0700 871072097454133268 iZTsnIQ | motion#0571 +09:49:35.314-0700 871072099618414632 tW2vqIs | motion#9673 +09:49:35.380-0700 871072098540482661 c5HbtvU | motion#7155 +09:49:35.411-0700 871072090936193024 piN-KlA | motion#3344 +09:49:35.518-0700 871072097273790495 7TH81go | motion#5101 +09:49:35.588-0700 871072101124145172 MwYVsa4 | motion#7900 +09:49:35.589-0700 871072098364297226 mQXcW7I | motion#5451 +09:49:35.630-0700 871072098838249612 p9Aeng0 | motion#0354 +09:49:35.654-0700 871072099811336263 yze1H5E | motion#0529 +09:49:35.658-0700 871072100360781844 uJj1c1Q | motion#8706 +09:49:35.824-0700 871072092622299156 kN98u4k | motion#8684 +09:49:35.842-0700 871072105423339581 m5x1anI | motion#6337 +09:49:35.877-0700 871072101107384370 q-Bdt3o | motion#7265 +09:49:35.884-0700 871072098011983902 yj6Gyv0 | motion#9239 +09:49:35.911-0700 871072104987103252 AdtzQSo | motion#2069 +09:49:35.973-0700 871072099555508284 kuyJNyU | motion#2201 +09:49:36.016-0700 871072099819720755 tCVvKh8 | motion#8808 +09:49:36.087-0700 871072104035016704 s9YRs2c | motion#7346 +09:49:36.164-0700 871072102139195452 yQOuyDg | motion#5926 +09:49:36.172-0700 871072092777512981 IjV58H4 | motion#4427 +09:49:36.213-0700 871072106853597194 kTmse80 | motion#5852 +09:49:36.289-0700 871072104806764624 8KBq9Pg | motion#7390 +09:49:36.303-0700 871072105217818654 lPLlT8c | motion#9560 +09:49:36.328-0700 871072104999682118 Z55RrX4 | motion#2827 +09:49:36.339-0700 871072103804338218 hipji-k | motion#5997 +09:49:36.371-0700 871072068240822344 xHAbxEs | motion#6790 +09:49:36.453-0700 871072099807150160 ubK_Z6c | motion#4336 +09:49:36.522-0700 871072104496398398 yDLL3s4 | motion#7669 +09:49:36.527-0700 871072106916499527 M_RIGGA | motion#8929 +09:49:36.538-0700 871072108841668668 J0Xueog | motion#9191 +09:49:36.648-0700 871072101690404895 jmcE-D8 | motion#7490 +09:49:36.674-0700 871072093897392198 oM9lceE | motion#0651 +09:49:36.706-0700 871072088209891350 Yk9BiGQ | motion#2503 +09:49:36.715-0700 871072107780517888 Us__oX4 | motion#2303 +09:49:36.752-0700 871072105381392464 8w5wRgM | motion#0708 +09:49:36.756-0700 871072097277968414 JXMNON4 | motion#1467 +09:49:36.767-0700 871072103590404127 vQtD60Y | motion#9706 +09:49:36.938-0700 871072105662390322 rutWQek | motion#2062 +09:49:36.953-0700 871072104567701524 Mnu1cUU | motion#1840 +09:49:36.958-0700 871072105649819738 0knPA8U | motion#2845 +09:49:36.970-0700 871072105037439078 FObB7uA | motion#1122 +09:49:37.000-0700 871072100050407535 dnr5xx8 | motion#2800 +09:49:37.033-0700 871072094815940648 0pprCvI | motion#6753 +09:49:37.075-0700 871072105310064650 hP1Kw50 | motion#7113 +09:49:37.143-0700 871072106228629565 iEMuDuQ | motion#9069 +09:49:37.164-0700 871072109869281432 1qzzwFQ | motion#5364 +09:49:37.164-0700 871072110322266213 Soe19xA | motion#5474 +09:49:37.178-0700 871072071852113920 jEZfApo | motion#3466 +09:49:37.202-0700 871072095222788146 6t7THLs | motion#1716 +09:49:37.230-0700 871072104005648406 sB09y_I | motion#9060 +09:49:37.232-0700 871072089979899925 IRw09YU | motion#9423 +09:49:37.235-0700 871072093700247595 dphRVBw | motion#1016 +09:49:37.274-0700 871072101132546048 bQvFtik | motion#6145 +09:49:37.314-0700 871072097647083521 TsYZiio | motion#6416 +09:49:37.322-0700 871072093633146901 QN0N5I0 | motion#8995 +09:49:37.374-0700 871072105997934618 3oz1Prw | motion#7758 +09:49:37.399-0700 871072097634508810 J9wbjSk | motion#3662 +09:49:37.416-0700 871072110343233558 xwOkGe4 | motion#2956 +09:49:37.437-0700 871072107843436544 J0yfqGk | motion#6120 +09:49:37.507-0700 871072107528847360 mU_MzF4 | motion#9944 +09:49:37.599-0700 871072107520491591 uWO-asQ | motion#2971 +09:49:37.655-0700 871072111970648084 hZWCTJw | motion#7732 +09:49:37.671-0700 871072095608664065 devR1pY | motion#3956 +09:49:37.678-0700 871072105318465577 6Es636Y | motion#8151 +09:49:37.823-0700 871072109395316756 3HIkBrw | motion#1750 +09:49:37.893-0700 871072111718985778 quYom7k | motion#4965 +09:49:37.895-0700 871072113644142684 yAw1mVE | motion#6792 +09:49:37.951-0700 871072111626711040 rBjdkYw | motion#6001 +09:49:37.967-0700 871072089484972052 kmctHb4 | motion#7295 +09:49:37.997-0700 871072114810159105 aciKFlg | motion#9956 +09:49:38.006-0700 871072098607571005 YHKuwfE | motion#9227 +09:49:38.021-0700 871072095218565131 CypdbEE | motion#2076 +09:49:38.027-0700 871072108048969770 KTPQhiE | motion#0645 +09:49:38.048-0700 871072098527879198 4BGoGT8 | motion#2115 +09:49:38.094-0700 871072095453466684 eOVx_UQ | motion#6709 +09:49:38.262-0700 871072112268443658 OIcRbic | motion#2428 +09:49:38.318-0700 871072109957349376 j1U4wfo | motion#8795 +09:49:38.338-0700 871072099056357388 5B3wkzU | motion#9420 +09:49:38.406-0700 871072111056273438 me7BRDQ | motion#3416 +09:49:38.413-0700 871072100214014023 6GRAXx4 | motion#4292 +09:49:38.459-0700 871072098733400084 tOD1axM | motion#0270 +09:49:38.479-0700 871072112574627860 SX2hV-A | motion#6446 +09:49:38.527-0700 871072111924510772 mHAsDXg | motion#9548 +09:49:38.543-0700 871072111198896148 beEEPaw | motion#3506 +09:49:38.582-0700 871072115544162345 tt2-7fI | motion#6378 +09:49:38.650-0700 871072116471107605 VyG0MVs | motion#5943 +09:49:38.671-0700 871072116173312040 cu4UkYE | motion#8437 +09:49:38.700-0700 871072101350670346 YCv0NVw | motion#3996 +09:49:38.806-0700 871072114294292530 M94PTzs | motion#7636 +09:49:38.862-0700 871072115489665044 yNlf998 | motion#3251 +09:49:38.870-0700 871072116861202463 79HYI9Y | motion#5662 +09:49:38.878-0700 871072112461352960 YKbCJsg | motion#5258 +09:49:38.915-0700 871072115288338453 RfyLHDw | motion#0516 +09:49:38.946-0700 871072101715558450 T9MnRrQ | motion#0285 +09:49:38.961-0700 871072112620736552 GrwxhhM | motion#5518 +09:49:38.984-0700 871072117007990784 elaMW-c | motion#1065 +09:49:38.999-0700 871072114306846751 qbuFsW0 | motion#1879 +09:49:39.000-0700 871072100021063702 t6RUZU0 | motion#3445 +09:49:39.015-0700 871072112977252373 q4go_LY | motion#7736 +09:49:39.017-0700 871072111228223528 oJVBRBA | motion#0096 +09:49:39.049-0700 871072102231466026 E_sSL4o | motion#4905 +09:49:39.057-0700 871072111421194301 TKg6Uyk | motion#1917 +09:49:39.092-0700 871072114814369863 Z8DdWbA | motion#9663 +09:49:39.179-0700 871072104756416652 QZp6_-Q | motion#6530 +09:49:39.270-0700 871072116626325614 6Ouxye8 | motion#1541 +09:49:39.282-0700 871072106702573599 1sDZ7Eo | motion#5734 +09:49:39.519-0700 871072107365285908 o9qa040 | motion#7775 +09:49:39.532-0700 871072114839552131 uE8s0yI | motion#1063 +09:49:39.599-0700 871072116940869683 9qeaLms | motion#5507 +09:49:39.632-0700 871072116571766814 OXF1ReI | motion#4435 +09:49:39.643-0700 871072116013944872 llLMO2U | motion#8688 +09:49:39.654-0700 871072119193223189 SmtvDRg | motion#6175 +09:49:39.655-0700 871072118006235156 WSf9I3c | motion#2403 +09:49:39.673-0700 871072107709222974 4tBVZH8 | motion#5276 +09:49:39.721-0700 871072106866180107 R3XUleE | motion#9125 +09:49:39.728-0700 871072117356105819 _LsNGyo | motion#1548 +09:49:39.765-0700 871072117368717372 R6luK_8 | motion#5632 +09:49:39.781-0700 871072102747340800 yw0EAVk | motion#7279 +09:49:39.788-0700 871072116554997812 SxXLnpw | motion#5451 +09:49:39.870-0700 871072119084159017 fDKr-HE | motion#0959 +09:49:39.880-0700 871072118731837520 bbdznvY | motion#1817 +09:49:39.963-0700 871072117410639972 NsD7Yic | motion#4402 +09:49:39.978-0700 871072117309968425 JBmmi4M | motion#5173 +09:49:40.051-0700 871072120459886653 vzW5b4k | motion#8606 +09:49:40.064-0700 871072121714004020 b2pj0AE | motion#5228 +09:49:40.099-0700 871072109802160148 Ah7JDXc | motion#2771 +09:49:40.173-0700 871072112201322557 FkhiUOk | motion#0926 +09:49:40.185-0700 871072118476009524 lk1ViaI | motion#7713 +09:49:40.237-0700 871072107260440657 U3aDfI4 | motion#6305 +09:49:40.250-0700 871072054147965060 Q5kVVuQ | motion#7179 +09:49:40.349-0700 871072125178495026 ocMMSLE | motion#3371 +09:49:40.383-0700 871072120002732054 jIx4Du4 | motion#9976 +09:49:40.386-0700 871072122687070269 eNJv6a0 | motion#0865 +09:49:40.496-0700 871072120401170442 HNNcfSo | motion#7828 +09:49:40.542-0700 871072118635393064 Fo-ALr4 | motion#2896 +09:49:40.566-0700 871072110397767752 XJuqe9E | motion#7199 +09:49:40.570-0700 871072122171174963 _ZDYvOc | motion#3399 +09:49:40.598-0700 871072107331731506 ptg-4VI | motion#9253 +09:49:40.653-0700 871072119797215274 rfdolKE | motion#0991 +09:49:40.808-0700 871072106274758716 CX3Eul4 | motion#0956 +09:49:40.849-0700 871072121869185075 vss1qJc | motion#3483 +09:49:40.925-0700 871072121412005928 gFoIx50 | motion#3916 +09:49:40.938-0700 871072122812891197 VhyGqUM | motion#1653 +09:49:41.148-0700 871072113870651422 3Ce_--o | motion#6155 +09:49:41.163-0700 871072112113254430 -Cxn3kE | motion#6038 +09:49:41.164-0700 871072121466535936 dLhNyow | motion#7978 +09:49:41.225-0700 871072111966449674 w3b8lPQ | motion#6199 +09:49:41.357-0700 871072125514022913 H_pzHUg | motion#4080 +09:49:41.390-0700 871072124654215218 Xp9UAiQ | motion#6203 +09:49:41.482-0700 871072112457166981 MkQocY4 | motion#6568 +09:49:41.490-0700 871072117058338836 SBm0PIs | motion#5045 +09:49:41.502-0700 871072125010726953 xqdg1AQ | motion#5871 +09:49:41.613-0700 871072128143867984 FTZxBgk | motion#1217 +09:49:41.637-0700 871072125061054515 8q5EWaA | motion#0895 +09:49:41.661-0700 871072129150484480 GhQf46E | motion#8190 +09:49:41.728-0700 871072123316228106 m5qU1jA | motion#6456 +09:49:41.746-0700 871072130433970186 SMpqplY | motion#3281 +09:49:41.776-0700 871072127720255499 SyV-ddQ | motion#4959 +09:49:41.820-0700 871072125346283550 woq1Y7s | motion#1509 +09:49:41.820-0700 871072126025760798 71MrEIo | motion#4494 +09:49:41.875-0700 871072124964593674 lggwpgg | motion#7664 +09:49:42.067-0700 871072131193122867 5NZTIXE | motion#5269 +09:49:42.197-0700 871072131688067122 zxo-l70 | motion#5050 +09:49:42.199-0700 871072128492011560 59D-4N0 | motion#0055 +09:49:42.276-0700 871072128039006220 LHtgIn8 | motion#9129 +09:49:42.412-0700 871072128458457118 yfoR16Q | motion#0760 +09:49:42.509-0700 871072125950246923 iYKIsgU | motion#2838 +09:49:42.584-0700 871072128928215151 ydso_UM | motion#6494 +09:49:42.623-0700 871072118459224154 W75p0po | motion#8405 +09:49:42.669-0700 871072130035494962 jlqV1vU | motion#7943 +09:49:42.705-0700 871072129897086996 k2imWeQ | motion#8141 +09:49:42.815-0700 871072126139002881 LSMAfpo | motion#1820 +09:49:42.927-0700 871072129154711622 _pHej80 | motion#7142 +09:49:42.945-0700 871072132573040721 1axfdwU | motion#6985 +09:49:42.950-0700 871072114562707536 Fx0qnpo | motion#6339 +09:49:42.976-0700 871072133952979014 FoSE4cw | motion#4894 +09:49:43.030-0700 871072130161324062 uC7VthI | motion#3359 +09:49:43.035-0700 871072121667858443 E3QKoHU | motion#0240 +09:49:43.037-0700 871072129251168278 2Mix-3U | motion#8973 +09:49:43.077-0700 871072117746188330 VaexW2c | motion#2905 +09:49:43.183-0700 871072118178205726 Mm8Bbgw | motion#5845 +09:49:43.244-0700 871072135165132851 2AVzbAM | motion#1016 +09:49:43.280-0700 871072132220739614 aFKOqps | motion#3493 +09:49:43.292-0700 871072119516176395 VhmzBZw | motion#9040 +09:49:43.316-0700 871072131058905119 HXt7enU | motion#4999 +09:49:43.330-0700 871072134116540446 cAFxAvA | motion#5132 +09:49:43.333-0700 871072133554511993 5z7vxrA | motion#4881 +09:49:43.450-0700 871072058891706422 SYQ8JXE | motion#8970 +09:49:43.512-0700 871072132656930897 b8wTdqo | motion#9042 +09:49:43.522-0700 871072133709709332 6qV1Qxo | motion#6803 +09:49:43.544-0700 871072120271159316 gd8-oY0 | motion#0603 +09:49:43.656-0700 871072121252618241 inhaVgU | motion#8539 +09:49:43.666-0700 871072135576186950 -DkiYBM | motion#1567 +09:49:43.667-0700 871072138474442824 PT91mu4 | motion#2193 +09:49:43.694-0700 871072137060950027 etU6irY | motion#0745 +09:49:43.719-0700 871072135710392370 ljhlN3Q | motion#6967 +09:49:43.724-0700 871072124406739024 RmxcDFY | motion#6356 +09:49:43.826-0700 871072133239943238 76olQSM | motion#8921 +09:49:43.885-0700 871072134603092071 JgzMHSY | motion#0591 +09:49:43.902-0700 871072123848904795 KfNSWms | motion#2166 +09:49:44.081-0700 871072133801971803 NgssMko | motion#9506 +09:49:44.099-0700 871072138067574786 zBGddKc | motion#2769 +09:49:44.159-0700 871072140319928390 bZbokA4 | motion#2189 +09:49:44.253-0700 871072140525461544 NZPliAQ | motion#0948 +09:49:44.333-0700 871072112109060206 HQiy-4s | motion#7174 +09:49:44.373-0700 871072125681819728 JV_-XX8 | motion#3054 +09:49:44.379-0700 871072123198783519 9dNlkoo | motion#9132 +09:49:44.399-0700 871072131591581716 iONPS5I | motion#6691 +09:49:44.438-0700 871072135899152424 Z4OePzM | motion#5348 +09:49:44.520-0700 871072138726113290 XQUZ36k | motion#7483 +09:49:44.539-0700 871072140911345724 9QasG1U | motion#2932 +09:49:44.545-0700 871072139262959657 KZ37o3s | motion#5567 +09:49:44.648-0700 871072106400608288 QO4OWNE | motion#3085 +09:49:44.703-0700 871072139216834570 YpPEnKY | motion#5744 +09:49:44.746-0700 871072137891422248 8UVTRsg | motion#3979 +09:49:44.809-0700 871072139527217173 sQcXnCs | motion#7495 +09:49:44.928-0700 871072138034044988 PmUbm2Q | motion#8235 +09:49:44.947-0700 871072138747084881 lRFeqpo | motion#1051 +09:49:44.970-0700 871072141687275551 V2z5h6M | motion#1268 +09:49:45.072-0700 871072136880586853 udg1MOU | motion#6084 +09:49:45.118-0700 871072140072456293 RDsXJEI | motion#1627 +09:49:45.125-0700 871072144262594670 fnVZS30 | motion#6200 +09:49:45.126-0700 871072129456697464 OnvwlUs | motion#2329 +09:49:45.176-0700 871072128496205854 kzRo-EA | motion#0286 +09:49:45.237-0700 871072141414637568 1zGfEMQ | motion#6687 +09:49:45.254-0700 871072131050520586 xTdMO1o | motion#6777 +09:49:45.297-0700 871072145122422835 UR_UGsk | motion#8459 +09:49:45.351-0700 871072144543584316 Xw66P7A | motion#3066 +09:49:45.383-0700 871072128928198776 9EtuqGE | motion#9122 +09:49:45.460-0700 871072143864115280 6nYnBsc | motion#8048 +09:49:45.486-0700 871072142110892052 kt7k3ik | motion#2820 +09:49:45.512-0700 871072143239184414 aSBxDow | motion#5080 +09:49:45.571-0700 871072143440490526 VbpZGqM | motion#3023 +09:49:45.652-0700 871072144698798120 fRxPFK8 | motion#3201 +09:49:45.677-0700 871072143943815218 DJYp73A | motion#2208 +09:49:45.735-0700 871072145604755606 heh2ZwE | motion#8306 +09:49:45.913-0700 871072147483803668 kGFXbT8 | motion#6324 +09:49:46.200-0700 871072148654002186 Dh7aKr4 | motion#0340 +09:49:46.300-0700 871072145030127647 WY1CADk | motion#8326 +09:49:46.305-0700 871072144988184616 lab-DHY | motion#7597 +09:49:46.344-0700 871072146212941874 7grIEvg | motion#5433 +09:49:46.482-0700 871072146900795483 XuImcQk | motion#2007 +09:49:46.486-0700 871072145491525693 ZiqAlto | motion#8065 +09:49:46.494-0700 871072149513850900 HbnmmFQ | motion#5618 +09:49:46.515-0700 871072149568389160 qb9QpHY | motion#8985 +09:49:46.598-0700 871072146678505512 En8gXbk | motion#0190 +09:49:46.747-0700 871072151594221608 nTYllTc | motion#2844 +09:49:46.934-0700 871072135391621120 aETRx4o | motion#7158 +09:49:46.947-0700 871072146468798474 nALtOiQ | motion#7421 +09:49:47.268-0700 871072148897267713 L6QgLEc | motion#8124 +09:49:47.286-0700 871072151141253151 oUEH2YY | motion#5750 +09:49:47.459-0700 871072150461751337 9XILJQc | motion#3800 +09:49:47.476-0700 871072151313219694 RIxg9G4 | motion#2999 +09:49:47.483-0700 871072145961283604 RABFMRA | motion#7857 +09:49:47.582-0700 871072151552266350 g5LIkUo | motion#0768 +09:49:47.588-0700 871072139275542608 ygGqWnw | motion#2821 +09:49:47.607-0700 871072151548096572 6tmTovk | motion#1645 +09:49:47.713-0700 871072154203078667 xAQgbbA | motion#1552 +09:49:47.746-0700 871072152563105822 QiCi3Lc | motion#4030 +09:49:47.774-0700 871072152449863702 dJrHF28 | motion#1267 +09:49:47.826-0700 871072154425389107 1w3Qzwk | motion#6185 +09:49:47.862-0700 871072140269604964 oZY2K_4 | motion#0492 +09:49:47.866-0700 871072150814064732 HsIlsZ0 | motion#1524 +09:49:47.885-0700 871072152915431424 NOWAN5A | motion#1289 +09:49:47.890-0700 871072151862669313 C9qhUco | motion#1828 +09:49:47.899-0700 871072152777031680 MmZC-dw | motion#9390 +09:49:47.908-0700 871072151313190923 G_ezOw8 | motion#6774 +09:49:47.919-0700 871072142794588221 XuMNQ-s | motion#4147 +09:49:47.971-0700 871072152848302120 mOigwVc | motion#3870 +09:49:47.997-0700 871072155838844988 KVjolEM | motion#6529 +09:49:48.066-0700 871072156845473793 CcXS5A0 | motion#0078 +09:49:48.133-0700 871072152617635881 eZt7X4Y | motion#3144 +09:49:48.148-0700 871072139036471326 LHXXMB4 | motion#4202 +09:49:48.223-0700 871072157264920576 kJEsTGs | motion#0116 +09:49:48.267-0700 871072137002237982 qu4USII | motion#1989 +09:49:48.278-0700 871072151912980480 VHN5RP8 | motion#6956 +09:49:48.286-0700 871072153838178354 BOdCNtc | motion#9299 +09:49:48.370-0700 871072150998622248 1VrqPYI | motion#1611 +09:49:48.376-0700 871072152835747881 JYH_N10 | motion#6761 +09:49:48.453-0700 871072152156258314 CsCov5A | motion#6612 +09:49:48.466-0700 871072140710014997 QVfBV6E | motion#1362 +09:49:48.574-0700 871072150193340486 Wr0HrTQ | motion#4717 +09:49:48.754-0700 871072155541073951 V2BAw5E | motion#9258 +09:49:48.867-0700 871072156228931635 7zhin-Q | motion#2095 +09:49:48.927-0700 871072149622906970 Q5Wlbb4 | motion#5460 +09:49:48.954-0700 871072151720050758 0-TbWwk | motion#8285 +09:49:49.015-0700 871072136817700864 3wFCIm8 | motion#3878 +09:49:49.047-0700 871072151585845328 oVwIxZU | motion#5628 +09:49:49.051-0700 871072155901784094 DTQ6FFg | motion#4870 +09:49:49.178-0700 871072159110402078 esKQ37s | motion#0198 +09:49:49.358-0700 871072154081443870 wZxiJO0 | motion#7261 +09:49:49.415-0700 871072146359713823 rTXEdDE | motion#9255 +09:49:49.513-0700 871072127833497640 fr2MGQI | motion#7114 +09:49:49.542-0700 871072159848599562 ggxiHD0 | motion#0084 +09:49:49.557-0700 871072154035318844 tvo8JzE | motion#2016 +09:49:49.631-0700 871072161366937600 Nhmwsio | motion#7364 +09:49:49.646-0700 871072159894765579 S8sI0W8 | motion#5565 +09:49:49.712-0700 871072147827732511 pbCboOs | motion#9323 +09:49:49.899-0700 871072150755348540 h1mgcdg | motion#4421 +09:49:49.995-0700 871072162537156611 T2Xecqs | motion#5368 +09:49:50.076-0700 871072149283168306 9NuAatw | motion#4732 +09:49:50.189-0700 871072163740934214 0r-2-bo | motion#3064 +09:49:50.198-0700 871072163980009502 MOOZEEQ | motion#9653 +09:49:50.235-0700 871072149018906716 5j8vw44 | motion#0179 +09:49:50.282-0700 871072152294653952 u8l_hJg | motion#9312 +09:49:50.432-0700 871072162394566716 OUCCORU | motion#1496 +09:49:50.448-0700 871072166395908136 OPBYKiQ | motion#0298 +09:49:50.498-0700 871072164441374771 Ghy_X0s | motion#9552 +09:49:50.549-0700 871072166706290698 67-S4Us | motion#9200 +09:49:50.631-0700 871072166907613204 h6WlCxk | motion#6042 +09:49:50.650-0700 871072166374948895 SytMSNY | motion#3533 +09:49:50.651-0700 871072163522826320 32h2SHs | motion#3441 +09:49:50.726-0700 871072165376712747 zvpFgss | motion#9117 +09:49:50.766-0700 871072164172935178 qtoPHw0 | motion#0226 +09:49:50.825-0700 871072164386852945 LZhLSsU | motion#9426 +09:49:50.872-0700 871072164894376016 tO443k0 | motion#3612 +09:49:50.960-0700 871072167989743637 rCCZxPQ | motion#6410 +09:49:51.021-0700 871072168321097739 xOeCL9o | motion#5215 +09:49:51.036-0700 871072153909473311 8-kvK7s | motion#7051 +09:49:51.119-0700 871072152923807754 dTaU-yA | motion#6525 +09:49:51.146-0700 871072154802868235 5byUclI | motion#5196 +09:49:51.219-0700 871072166974730290 _ltDL6s | motion#3513 +09:49:51.356-0700 871072152277889096 vUWzhIU | motion#5087 +09:49:51.358-0700 871072165007622214 JIcpUf0 | motion#6485 +09:49:51.409-0700 871072166974734387 mMp04xc | motion#4667 +09:49:51.417-0700 871072162755256412 SMCJpDI | motion#8881 +09:49:51.429-0700 871072168971223120 kcq3Qcw | motion#2539 +09:49:51.430-0700 871072164923707392 DmColv4 | motion#1278 +09:49:51.447-0700 871072157529153557 PXBrW5k | motion#4977 +09:49:51.452-0700 871072166957944882 KR7xUOU | motion#8361 +09:49:51.457-0700 871072170925764708 P7szcis | motion#6093 +09:49:51.541-0700 871072167662587914 Zarl_I8 | motion#4549 +09:49:51.744-0700 871072156082114671 bw1Vjgc | motion#1710 +09:49:51.753-0700 871072170325987338 3fHwQY4 | motion#3813 +09:49:51.771-0700 871072167574503475 qlmmWpI | motion#8696 +09:49:51.782-0700 871072157357187142 CLk8KJM | motion#7243 +09:49:51.836-0700 871072172964204544 eniMpe4 | motion#0127 +09:49:51.877-0700 871072167939420220 Rcb2AQo | motion#8192 +09:49:51.904-0700 871072170648948806 LGcO7_k | motion#6006 +09:49:51.909-0700 871072170305024110 NWOuzK4 | motion#0294 +09:49:51.986-0700 871072155952091137 Z7Oma68 | motion#8465 +09:49:52.007-0700 871072169348694117 hXE5CC4 | motion#4114 +09:49:52.038-0700 871072172234375260 bUd7se0 | motion#6777 +09:49:52.109-0700 871072163480875078 QXaBZwU | motion#2807 +09:49:52.292-0700 871072170758004776 wgMS23k | motion#3730 +09:49:52.346-0700 871072158137327616 jxYoCqg | motion#9370 +09:49:52.359-0700 871072173454934096 JzenLIs | motion#9618 +09:49:52.361-0700 871072158036660335 OXzdgLI | motion#3470 +09:49:52.391-0700 871072164252627064 8_dZMaY | motion#7729 +09:49:52.421-0700 871072168748937246 35xgtns | motion#1354 +09:49:52.468-0700 871072170208546867 vSinyRc | motion#9622 +09:49:52.469-0700 871072159173333044 69i8Rmo | motion#9927 +09:49:52.484-0700 871072170300813352 YyQQf3s | motion#0969 +09:49:52.531-0700 871072174415429702 luSCVm0 | motion#1777 +09:49:52.615-0700 871072173127782420 L84phjE | motion#3890 +09:49:52.702-0700 871072175812149268 Tqe6XOw | motion#0166 +09:49:52.731-0700 871072170728628277 Yl00Eb0 | motion#2260 +09:49:52.749-0700 871072160704233503 5iL4eAA | motion#5849 +09:49:52.751-0700 871072170938335282 w1rB6Ps | motion#0192 +09:49:52.777-0700 871072166987321344 Soz9dVY | motion#5757 +09:49:52.820-0700 871072171949170698 gm4XQ9A | motion#2430 +09:49:52.843-0700 871072173874376764 kTNxMaQ | motion#0897 +09:49:52.873-0700 871072173228429383 wPmhto4 | motion#2120 +09:49:53.169-0700 871072176755851274 U6ctTiY | motion#3594 +09:49:53.231-0700 871072173643685958 j0xSp0E | motion#3800 +09:49:53.271-0700 871072171840118825 D7w4cs4 | motion#2790 +09:49:53.289-0700 871072173622702100 hT4jBSs | motion#9891 +09:49:53.426-0700 871072153150320710 IsNIXkc | motion#4684 +09:49:53.529-0700 871072177544392784 7r9HzjA | motion#5287 +09:49:53.758-0700 871072164604956693 bpvIXmU | motion#0267 +09:49:53.873-0700 871072174952284201 jjBYZlo | motion#7051 +09:49:54.039-0700 871072164047110194 f8_l52U | motion#3686 +09:49:54.040-0700 871072180648153098 YyA7bJU | motion#8979 +09:49:54.155-0700 871072181671563334 XfQZpO4 | motion#5857 +09:49:54.165-0700 871072178718797834 -wE1SJU | motion#3921 +09:49:54.205-0700 871072165825490994 edktq2k | motion#6471 +09:49:54.254-0700 871072178911711292 6iLZIqc | motion#4111 +09:49:54.466-0700 871072179930935336 croIsRk | motion#8662 +09:49:54.607-0700 871072180790771713 4O8gFS0 | motion#7552 +09:49:54.650-0700 871072177686982696 3Nm8IGE | motion#4846 +09:49:54.668-0700 871072181000478741 o_Svx6A | motion#0697 +09:49:54.669-0700 871072178886565978 qUgbH2M | motion#6401 +09:49:54.680-0700 871072164680454154 OXjgcc0 | motion#6055 +09:49:54.716-0700 871072179364724797 II1B5aw | motion#1267 +09:49:54.720-0700 871072176684531793 ZAhdy3c | motion#1352 +09:49:54.790-0700 871072165624176710 FfDkC_U | motion#3551 +09:49:54.843-0700 871072181017280562 Kj2AMtg | motion#3329 +09:49:54.885-0700 871072182250401812 CtIPdbo | motion#6194 +09:49:54.952-0700 871072170019815485 L1rK5uE | motion#8053 +09:49:54.976-0700 871072181965180939 jLGI3Ac | motion#3221 +09:49:55.000-0700 871072179884793856 jhRB8iU | motion#0650 +09:49:55.002-0700 871072167960387645 a1VCH3U | motion#9135 +09:49:55.010-0700 871072168023298118 IhlJypY | motion#8320 +09:49:55.109-0700 871072177410166785 2rof3s0 | motion#4123 +09:49:55.124-0700 871072181851934760 HufY5v8 | motion#1329 +09:49:55.137-0700 871072182682415105 TQr_vTk | motion#6851 +09:49:55.174-0700 871072179712843806 P_BL5Ec | motion#5998 +09:49:55.181-0700 871072168975413269 rEr6b2w | motion#9428 +09:49:55.226-0700 871072181541543956 CSzKezY | motion#2476 +09:49:55.236-0700 871072178915909662 BpmmKTU | motion#5325 +09:49:55.253-0700 871072171181608970 p1pJdX0 | motion#2446 +09:49:55.342-0700 871072182447525929 kvVzRPs | motion#1633 +09:49:55.404-0700 871072183114420225 2FmrYA0 | motion#6525 +09:49:55.410-0700 871072181638037556 Ebvzuw8 | motion#3966 +09:49:55.444-0700 871072181025644564 _UrPZlc | motion#2401 +09:49:55.486-0700 871072183366082670 drtj8og | motion#2965 +09:49:55.538-0700 871072182430740480 tcVixck | motion#7364 +09:49:55.590-0700 871072183143768104 m5do-qA | motion#3777 +09:49:55.604-0700 871072170174971944 Z0ejfbE | motion#2150 +09:49:55.620-0700 871072185249308722 gbHCqg4 | motion#1669 +09:49:55.833-0700 871072182611083284 _sLfltA | motion#9422 +09:49:55.890-0700 871072186125938768 YyaXHA8 | motion#9391 +09:49:55.934-0700 871072186612482069 BZIo4ks | motion#1268 +09:49:55.960-0700 871072182988582993 aPCzrcs | motion#9346 +09:49:56.006-0700 871072183361867858 qiYF6iA | motion#7508 +09:49:56.010-0700 871072186616672316 u2AGCIM | motion#1015 +09:49:56.029-0700 871072185740062741 0ZclcIw | motion#7646 +09:49:56.049-0700 871072187564572742 -i-MxZs | motion#1409 +09:49:56.211-0700 871072184985063494 ZKNX-Tg | motion#7980 +09:49:56.217-0700 871072184385290330 xFsYRb8 | motion#3616 +09:49:56.229-0700 871072188726394905 kvyVHGU | motion#2781 +09:49:56.255-0700 871072164504272896 7gt_568 | motion#8346 +09:49:56.295-0700 871072189720428595 MHuK1Zk | motion#3359 +09:49:56.317-0700 871072186478239805 7e9hQ1w | motion#7395 +09:49:56.358-0700 871072176021860362 MWzmY0s | motion#1832 +09:49:56.572-0700 871072187598123038 BSzQsPI | motion#0842 +09:49:56.702-0700 871072189078712321 WQuf2BY | motion#3038 +09:49:56.734-0700 871072188512469053 Q_VcLfg | motion#2618 +09:49:56.782-0700 871072179679264798 tGyidbA | motion#3697 +09:49:56.788-0700 871072190488006667 4c7X9zI | motion#7370 +09:49:56.882-0700 871072176680366111 G4062Co | motion#7277 +09:49:56.922-0700 871072175560462366 UqjBIc4 | motion#9701 +09:49:56.963-0700 871072187992395796 X_rMLPo | motion#2650 +09:49:56.968-0700 871072188558639187 gYad0Mo | motion#9541 +09:49:57.143-0700 871072190748045402 qX7wtB8 | motion#8278 +09:49:57.249-0700 871072189984690196 ZQwRAXU | motion#8967 +09:49:57.256-0700 871072193977675816 JdsX5D8 | motion#5197 +09:49:57.269-0700 871072169814274058 2TuBqNY | motion#7651 +09:49:57.271-0700 871072193575022642 2dtY3s8 | motion#5640 +09:49:57.298-0700 871072191020679198 aEJQiN0 | motion#4892 +09:49:57.412-0700 871072192601931797 G99IiOU | motion#0269 +09:49:57.422-0700 871072193587597372 MFwYQII | motion#7231 +09:49:57.503-0700 871072195470831668 r40RJkc | motion#3223 +09:49:57.540-0700 871072194967519262 xYCUAMU | motion#9076 +09:49:57.584-0700 871072191523991592 jttLDSU | motion#3169 +09:49:57.616-0700 871072193847656530 Hs88Hzs | motion#9760 +09:49:57.687-0700 871072192627101716 vLXy1v4 | motion#6040 +09:49:57.716-0700 871072190324412456 VQVhiLk | motion#1465 +09:49:57.792-0700 871072178970447942 MBGw93o | motion#4277 +09:49:57.871-0700 871072182967607316 zLjmTLQ | motion#3566 +09:49:57.954-0700 871072197286981713 x3Q1C4k | motion#2777 +09:49:58.044-0700 871072193998643221 _i9XAMY | motion#1408 +09:49:58.055-0700 871072195240153118 XAqEPPw | motion#2793 +09:49:58.082-0700 871072194254471199 s_6BPeQ | motion#9930 +09:49:58.086-0700 871072198121644112 WiuzVvc | motion#9035 +09:49:58.093-0700 871072179935129620 -UKZdEg | motion#4302 +09:49:58.136-0700 871072195231752242 PDqFjQk | motion#7027 +09:49:58.155-0700 871072193289810020 mMG54J8 | motion#1256 +09:49:58.162-0700 871072194795536384 b5KZscs | motion#5045 +09:49:58.320-0700 871072191314292736 NqalcAI | motion#1442 +09:49:58.342-0700 871072194636156939 _IMHoHQ | motion#1981 +09:49:58.351-0700 871072195454054400 nLz0uaY | motion#6616 +09:49:58.351-0700 871072195928031303 kvw0w5c | motion#1024 +09:49:58.361-0700 871072194220937276 CK_BVag | motion#2741 +09:49:58.363-0700 871072193491107890 4L7-Ag0 | motion#7915 +09:49:58.383-0700 871072184712441936 gLOZeMw | motion#9305 +09:49:58.400-0700 871072190970351688 v7EmObM | motion#9842 +09:49:58.412-0700 871072197760909362 eZ5hHyw | motion#0794 +09:49:58.412-0700 871072195793809428 GMjcsoc | motion#0209 +09:49:58.450-0700 871072195948982362 XP7ZwGU | motion#5172 +09:49:58.503-0700 871072200025853973 pDVIQzE | motion#6916 +09:49:58.506-0700 871072187858161734 1NrDYRE | motion#1928 +09:49:58.512-0700 871072188818686002 U39ExGU | motion#7079 +09:49:58.709-0700 871072198247460864 exynHz8 | motion#8572 +09:49:58.730-0700 871072197815463956 IGexXgk | motion#2545 +09:49:58.822-0700 871072198788538449 stV4J0U | motion#1839 +09:49:58.840-0700 871072188076273664 0ASKrmU | motion#9025 +09:49:58.853-0700 871072196511014953 ifd3JFY | motion#7980 +09:49:58.859-0700 871072196070608918 Mq_mrbE | motion#9501 +09:49:58.877-0700 871072196095799396 RHrAsYo | motion#6103 +09:49:58.886-0700 871072199686098974 JYCtfwc | motion#6461 +09:49:58.895-0700 871072188839645205 VjgIYfs | motion#1861 +09:49:59.000-0700 871072199103103047 ee2qA2I | motion#6368 +09:49:59.022-0700 871072202034917448 6j58YYo | motion#0113 +09:49:59.024-0700 871072183512870932 RP9tOJU | motion#7705 +09:49:59.043-0700 871072199719665675 wVb4NSI | motion#3649 +09:49:59.050-0700 871072195705712720 y3B1L28 | motion#7395 +09:49:59.078-0700 871072198914347059 2EDI4wc | motion#0781 +09:49:59.081-0700 871072187652640778 FKsn1tw | motion#1609 +09:49:59.135-0700 871072200634023987 vB-HlIg | motion#5619 +09:49:59.199-0700 871072200504012810 t9su5Ms | motion#6600 +09:49:59.269-0700 871072200856318003 2TWj8f0 | motion#6968 +09:49:59.284-0700 871072200491417651 yNXGFZs | motion#8591 +09:49:59.307-0700 871072201061826571 eyPIQzo | motion#3941 +09:49:59.341-0700 871072197899333673 sbuM1cI | motion#4098 +09:49:59.409-0700 871072199493156914 j5pU0AU | motion#8135 +09:49:59.461-0700 871072191293304832 76Zp0Bc | motion#7166 +09:49:59.513-0700 871072192148942848 JLaeOPU | motion#4563 +09:49:59.517-0700 871072200797605959 0FeTHe4 | motion#2040 +09:49:59.529-0700 871072174897762397 r7sTV2k | motion#3116 +09:49:59.554-0700 871072195185618964 7RrLCh4 | motion#2349 +09:49:59.570-0700 871072203414835261 kyTMdmk | motion#1634 +09:49:59.572-0700 871072190756438066 QkUaFjw | motion#8233 +09:49:59.754-0700 871072202697609286 ACHNc8I | motion#8038 +09:49:59.872-0700 871072205793017966 qqN6di0 | motion#0553 +09:49:59.897-0700 871072201519034409 3huWOCU | motion#8116 +09:49:59.900-0700 871072189603008522 pDHeAz0 | motion#2481 +09:49:59.919-0700 871072202433376306 OUQsTEg | motion#0521 +09:49:59.942-0700 871072204211781643 9Ki3Uac | motion#1592 +09:50:00.059-0700 871072204450832474 u4ISpzg | motion#1307 +09:50:00.103-0700 871072202458562610 0sWGZHI | motion#9174 +09:50:00.116-0700 871072207437193237 fKBPBgM | motion#9617 +09:50:00.131-0700 871072169982050325 lQT0-Mg | motion#3837 +09:50:00.146-0700 871072190035001364 flq93WE | motion#1821 +09:50:00.166-0700 871072189795934218 W4b80Uo | motion#8206 +09:50:00.187-0700 871072199296028692 6FB-TbM | motion#8074 +09:50:00.228-0700 871072205855936572 ERVrlAc | motion#0834 +09:50:00.261-0700 871072190307635222 5w48rfo | motion#5328 +09:50:00.401-0700 871072208632573972 zebk8eM | motion#7589 +09:50:00.407-0700 871072208204726294 2BJAGmg | motion#5749 +09:50:00.492-0700 871072207080677467 Nj4j9OA | motion#2018 +09:50:00.554-0700 871072188227256331 E-ES9x0 | motion#8661 +09:50:00.557-0700 871072208884203551 YhwNiBU | motion#9555 +09:50:00.563-0700 871072166014255155 PNooSHE | motion#2854 +09:50:00.568-0700 871072204501176370 fQNnwMg | motion#1062 +09:50:00.587-0700 871072205411348551 bAdwdco | motion#5188 +09:50:00.592-0700 871072194162216990 9qGhexE | motion#4950 +09:50:00.607-0700 871072205075787836 8kC1fww | motion#3473 +09:50:00.687-0700 871072200831172669 mH8iYkI | motion#8106 +09:50:00.736-0700 871072208410279947 SHGvOfk | motion#7811 +09:50:00.875-0700 871072174499332096 JEop_Zs | motion#1302 +09:50:00.923-0700 871072193579188244 24jTF5o | motion#8640 +09:50:00.933-0700 871072194459992134 WGmQQXE | motion#8378 +09:50:00.988-0700 871072192832606269 aE9iFOQ | motion#1417 +09:50:01.162-0700 871072207563018240 sWlr_QU | motion#0307 +09:50:01.176-0700 871072207764324412 8lar2ms | motion#4441 +09:50:01.207-0700 871072210012471296 JNKt7PE | motion#7566 +09:50:01.350-0700 871072197052104713 PDGplIk | motion#2119 +09:50:01.452-0700 871072212310978570 7LSRtWY | motion#1250 +09:50:01.452-0700 871072203993673728 jWRFDBQ | motion#4261 +09:50:01.527-0700 871072195793780786 rxQm62U | motion#6925 +09:50:01.610-0700 871072196896882758 cdHRPUQ | motion#7791 +09:50:01.684-0700 871072168551796779 lXmwrpU | motion#2681 +09:50:01.687-0700 871072211191078972 89-Khz4 | motion#3338 +09:50:01.706-0700 871072213778968626 JNIQHv0 | motion#0591 +09:50:01.787-0700 871072210582900776 KERyQYQ | motion#2923 +09:50:01.900-0700 871072206178893865 -bxB9gc | motion#4392 +09:50:01.918-0700 871072208305401856 8SjkKsA | motion#5649 +09:50:01.955-0700 871072206657048576 ti3SdVY | motion#1838 +09:50:02.036-0700 871072211400814642 55vWvLo | motion#6499 +09:50:02.049-0700 871072205000298546 aFrEFhY | motion#2917 +09:50:02.089-0700 871072200982134814 xVfDYHM | motion#9894 +09:50:02.101-0700 871072198352310303 pzZc5kQ | motion#7078 +09:50:02.145-0700 871072209869864960 Zpt6v8o | motion#4901 +09:50:02.165-0700 871072211048488981 VsglGSM | motion#6286 +09:50:02.171-0700 871072206858383382 imF2fbw | motion#4454 +09:50:02.217-0700 871072211014914089 nY7gzRc | motion#6771 +09:50:02.228-0700 871072195877670953 pdEaQJo | motion#0924 +09:50:02.250-0700 871072205365215233 9OxzG58 | motion#2065 +09:50:02.387-0700 871072199296053279 -SBWthA | motion#5816 +09:50:02.401-0700 871072213380522015 osDhRHo | motion#9519 +09:50:02.446-0700 871072213527326740 a0uEIWQ | motion#5785 +09:50:02.485-0700 871072200009056276 S72OaqY | motion#6934 +09:50:02.494-0700 871072212029935697 bA5uCVY | motion#7993 +09:50:02.499-0700 871072200193634335 sxPvhK4 | motion#2206 +09:50:02.508-0700 871072210725519400 efmFNgc | motion#3870 +09:50:02.554-0700 871072212357091348 x8ncsNg | motion#4556 +09:50:02.557-0700 871072200625647696 5xDuFvo | motion#6181 +09:50:02.576-0700 871072212529061919 R_36Jiw | motion#0158 +09:50:02.692-0700 871072215305703434 sOJ0SYs | motion#1343 +09:50:02.796-0700 871072214080966706 ankGD-U | motion#1279 +09:50:02.807-0700 871072217608380467 Jbc6uGo | motion#7971 +09:50:02.874-0700 871072200684355584 w_uukyg | motion#2636 +09:50:02.893-0700 871072203435819018 Ds6-YsE | motion#6606 +09:50:02.954-0700 871072214060003349 BGPStOU | motion#5685 +09:50:03.097-0700 871072214999498832 j6ivrCQ | motion#5775 +09:50:03.120-0700 871072217436397610 GFMrckE | motion#6410 +09:50:03.142-0700 871072219680346142 NiwLdIw | motion#1088 +09:50:03.275-0700 871072213154013235 Z6MELx0 | motion#5581 +09:50:03.306-0700 871072219294498856 TcM8m8g | motion#2712 +09:50:03.385-0700 871072203481952276 n0C2e0o | motion#3550 +09:50:03.425-0700 871072219365781584 gwbIXlI | motion#6242 +09:50:03.433-0700 871072204421492818 bSc74A8 | motion#9977 +09:50:03.451-0700 871072203716853791 J4XYApM | motion#2666 +09:50:03.607-0700 871072218795360337 I0kmx-c | motion#4094 +09:50:03.614-0700 871072218354966579 Fcr6ETk | motion#7664 +09:50:03.698-0700 871072214580080710 lLbzHM4 | motion#2137 +09:50:03.759-0700 871072210490654780 riH2mN8 | motion#9118 +09:50:03.761-0700 871072217964892161 QRLu5JE | motion#0719 +09:50:03.838-0700 871072221995622400 hWoGk8U | motion#6365 +09:50:04.016-0700 871072223824334889 WidJhhY | motion#0648 +09:50:04.149-0700 871072220691169400 t6i2eaU | motion#3777 +09:50:04.171-0700 871072216064860221 zRI51U8 | motion#6396 +09:50:04.173-0700 871072219437076550 9bT9Lso | motion#7515 +09:50:04.214-0700 871072218724073493 pGGQ9FM | motion#7543 +09:50:04.356-0700 871072220817018890 55IViuc | motion#9042 +09:50:04.370-0700 871072225523023892 ycvwzKw | motion#0887 +09:50:04.426-0700 871072222998036510 WsEEy0M | motion#8750 +09:50:04.427-0700 871072220309487647 fDy67VY | motion#9692 +09:50:04.437-0700 871072224206016533 CcYyzXE | motion#1918 +09:50:04.449-0700 871072225862754334 6_dgsbA | motion#0500 +09:50:04.456-0700 871072208167010324 GCQPoIE | motion#6163 +09:50:04.506-0700 871072220980584459 zJSZA4Q | motion#3650 +09:50:04.523-0700 871072190794203176 IGYdV3k | motion#7324 +09:50:04.524-0700 871072219462238210 oTJoZa8 | motion#7884 +09:50:04.622-0700 871072224231194654 F4HGzX0 | motion#8269 +09:50:04.649-0700 871072215859331122 7Xwgryw | motion#3876 +09:50:04.653-0700 871072226571603968 m6qHzW0 | motion#1585 +09:50:04.807-0700 871072223555891270 CuzgPhE | motion#7088 +09:50:04.889-0700 871072223316836414 1kWkI34 | motion#3874 +09:50:04.938-0700 871072223904006195 1iJBVWw | motion#4808 +09:50:04.972-0700 871072223748816906 n9gV3yw | motion#5201 +09:50:04.989-0700 871072221525839902 SuK6s10 | motion#0441 +09:50:05.081-0700 871072223660744754 uHQy41k | motion#1616 +09:50:05.114-0700 871072223664955393 44zhq1w | motion#5462 +09:50:05.136-0700 871072226982645760 r2NSGnY | motion#8232 +09:50:05.140-0700 871072227821494304 yr5MezA | motion#9066 +09:50:05.161-0700 871072224759656489 fRx7RiE | motion#4422 +09:50:05.196-0700 871072227188179004 9Tin1es | motion#5798 +09:50:05.336-0700 871072225980207114 04DurcM | motion#9860 +09:50:05.373-0700 871072224763846706 HtjrE28 | motion#6071 +09:50:05.421-0700 871072215062421535 haajZQ0 | motion#6744 +09:50:05.438-0700 871072224537354300 xO19Jlg | motion#0878 +09:50:05.473-0700 871072217503526962 GYc-kbc | motion#4403 +09:50:05.484-0700 871072224940003338 2IdtzLA | motion#7821 +09:50:05.490-0700 871072224088571914 rpdMS14 | motion#0615 +09:50:05.591-0700 871072219365789707 SGwxNBs | motion#3524 +09:50:05.602-0700 871072225053245532 o4QpUB0 | motion#7983 +09:50:05.631-0700 871072213971918918 u6FrsUU | motion#2562 +09:50:05.677-0700 871072213778968586 --Af7OU | motion#4602 +09:50:05.724-0700 871072229067210772 cl3Ynqo | motion#0631 +09:50:05.772-0700 871072228266098739 oOSD1EY | motion#5472 +09:50:05.788-0700 871072225845973013 9LdqBs4 | motion#6299 +09:50:05.801-0700 871072223950176296 3wN0whg | motion#8884 +09:50:05.856-0700 871072228874260561 TGKWttA | motion#2375 +09:50:05.888-0700 871072228794564628 v1HXmqY | motion#6619 +09:50:05.905-0700 871072224784810064 4l9-OoI | motion#1647 +09:50:05.925-0700 871072225661452288 Om1wrwI | motion#5445 +09:50:05.934-0700 871072227762770000 GcAhrOg | motion#3508 +09:50:05.934-0700 871072229797007421 f1mwFEo | motion#8395 +09:50:05.938-0700 871072225523028038 _--acFQ | motion#4115 +09:50:05.939-0700 871072228651991091 yBBlzuw | motion#5644 +09:50:05.951-0700 871072224130527272 a7HKKXs | motion#4956 +09:50:05.993-0700 871072227179778119 gie4PxM | motion#7427 +09:50:06.030-0700 871072226965860414 RH_b5nI | motion#1766 +09:50:06.060-0700 871072231772545055 grDoLu4 | motion#3885 +09:50:06.103-0700 871072229335646208 Ntoiv6k | motion#4185 +09:50:06.133-0700 871072230174519346 tIHTvzg | motion#6322 +09:50:06.214-0700 871072226449948722 15wM7vI | motion#9007 +09:50:06.265-0700 871072215775445083 AIbYSXY | motion#5395 +09:50:06.289-0700 871072231021772810 6z8A1sE | motion#8650 +09:50:06.300-0700 871072227888623618 LKWVzZU | motion#4216 +09:50:06.355-0700 871072218120060968 6dT7BRQ | motion#9641 +09:50:06.491-0700 871072218925367356 934W6u8 | motion#1185 +09:50:06.545-0700 871072216907911199 vENS17c | motion#1828 +09:50:06.579-0700 871072230715588618 Z1KF7D0 | motion#6076 +09:50:06.620-0700 871072233626423318 xPusRIY | motion#6255 +09:50:06.642-0700 871072235035689001 h3GZVjg | motion#2884 +09:50:06.901-0700 871072229666996224 Sr2M5W0 | motion#2034 +09:50:06.920-0700 871072227238506546 ZoIqFAk | motion#3046 +09:50:06.949-0700 871072234079416330 kRr-QO0 | motion#1762 +09:50:06.987-0700 871072220007526421 6JPf5SM | motion#3024 +09:50:07.003-0700 871072195932213278 dxIZflo | motion#7095 +09:50:07.033-0700 871072219390967879 HKpWyFQ | motion#4887 +09:50:07.066-0700 871072230824624168 YpAiNhc | motion#4317 +09:50:07.298-0700 871072234339438632 _wjWBk8 | motion#0358 +09:50:07.325-0700 871072222045958155 BVHh8gM | motion#2735 +09:50:07.522-0700 871072223199375390 jIMmbik | motion#7168 +09:50:07.527-0700 871072221207068682 KSmG6yQ | motion#5971 +09:50:07.663-0700 871072236038135838 NaI3fwQ | motion#3669 +09:50:07.758-0700 871072238835744811 T24Vv_o | motion#0144 +09:50:07.775-0700 871072233240559687 3vQHt1Y | motion#3902 +09:50:07.793-0700 871072220544368740 SItd2lI | motion#4768 +09:50:07.830-0700 871072236424036442 xvF4fVo | motion#4176 +09:50:07.879-0700 871072225053257778 tGDCOZg | motion#2367 +09:50:07.918-0700 871072237158011011 Nf44bKQ | motion#3374 +09:50:08.313-0700 871072222788337694 ZhEMgrI | motion#6982 +09:50:08.342-0700 871072236864417803 7-NMoss | motion#0042 +09:50:08.355-0700 871072236642136066 YLfXMg4 | motion#3484 +09:50:08.439-0700 871072234238799892 SZHvjto | motion#8474 +09:50:08.464-0700 871072239389392896 Z1CVoss | motion#2217 +09:50:08.469-0700 871072233282469909 jn5dB3s | motion#2832 +09:50:08.473-0700 871072242413477899 mKwFhMk | motion#0626 +09:50:08.479-0700 871072240265998427 -VB1DVk | motion#7774 +09:50:08.483-0700 871072238542159912 VtA70Nw | motion#2174 +09:50:08.604-0700 871072225481076796 42u-6yo | motion#8482 +09:50:08.626-0700 871072235773898804 1gXrzh8 | motion#7009 +09:50:08.679-0700 871072236726005800 FhGUs2U | motion#6754 +09:50:08.684-0700 871072239154511912 aw1IjtQ | motion#4859 +09:50:08.843-0700 871072228341612595 JMvy4GA | motion#1981 +09:50:08.848-0700 871072237309001729 W7l7WmE | motion#7414 +09:50:08.851-0700 871072243017482273 y59N0Ks | motion#1348 +09:50:08.915-0700 871072243373973504 y-XAa5s | motion#6092 +09:50:08.922-0700 871072239494246451 -GGAUpI | motion#9977 +09:50:08.959-0700 871072239976579083 FpfGYTo | motion#2673 +09:50:08.970-0700 871072237036380181 SaKH76c | motion#6194 +09:50:09.017-0700 871072244057669653 wX24bGM | motion#6435 +09:50:09.040-0700 871072227976679504 B99k1kA | motion#0618 +09:50:09.046-0700 871072243445268490 xAHkpJo | motion#7476 +09:50:09.053-0700 871072236948291664 j-g30ZQ | motion#5720 +09:50:09.075-0700 871072228228349973 hH4bW7E | motion#1423 +09:50:09.089-0700 871072238714114059 g4Lqf1U | motion#4844 +09:50:09.138-0700 871072240110805002 dmH0ea8 | motion#6716 +09:50:09.159-0700 871072241868242954 1y1lbIU | motion#8020 +09:50:09.205-0700 871072244087017543 o0YJEmI | motion#6525 +09:50:09.205-0700 871072242975506452 QbJ3B5U | motion#6662 +09:50:09.207-0700 871072241822105650 xSywM4w | motion#0865 +09:50:09.277-0700 871072243034255412 XguRkOU | motion#2979 +09:50:09.305-0700 871072238403731527 IB9apJQ | motion#0813 +09:50:09.318-0700 871072230128386149 pFQScNk | motion#1209 +09:50:09.387-0700 871072242266677298 759qez8 | motion#1159 +09:50:09.399-0700 871072233844535317 y1v8pMU | motion#4832 +09:50:09.420-0700 871072239972413512 OfhHxCk | motion#1432 +09:50:09.473-0700 871072234280734720 mGMvc0E | motion#1128 +09:50:09.502-0700 871072243961176155 WIvdn1M | motion#4364 +09:50:09.623-0700 871072246448410664 u3GHTdE | motion#5623 +09:50:09.678-0700 871072243512406026 cD3Izo8 | motion#1180 +09:50:09.685-0700 871072229264334910 LT9BVLc | motion#1604 +09:50:09.733-0700 871072243449462844 Dso5sJI | motion#1288 +09:50:09.747-0700 871072241914368080 qttF5yU | motion#6544 +09:50:09.755-0700 871072244133142578 mw52Lfs | motion#1244 +09:50:09.836-0700 871072242753237014 JB3qCDg | motion#2169 +09:50:09.836-0700 871072232191955015 lRS6mc8 | motion#9636 +09:50:09.994-0700 871072230669439056 tNWEulo | motion#9132 +09:50:10.114-0700 871072247496990770 yuLLa2I | motion#0928 +09:50:10.194-0700 871072245735370772 3QqzoeA | motion#8891 +09:50:10.204-0700 871072246486163456 mPhCdkM | motion#7410 +09:50:10.252-0700 871072234763071568 XgGZP7s | motion#0886 +09:50:10.316-0700 871072243155877908 BFJT_aY | motion#6949 +09:50:10.323-0700 871072232355528744 fVhQZz8 | motion#0951 +09:50:10.326-0700 871072248109367397 ijuqr_o | motion#7440 +09:50:10.478-0700 871072248100962394 S0fJU9M | motion#3409 +09:50:10.596-0700 871072246070919238 4mhSBOo | motion#7352 +09:50:10.684-0700 871072193667297292 lEjycXc | motion#3797 +09:50:10.687-0700 871072246846877746 8VYxFaY | motion#0785 +09:50:10.718-0700 871072250038747176 mzyPUo0 | motion#1762 +09:50:10.728-0700 871072246859431937 xvUgYDk | motion#8202 +09:50:10.738-0700 871072247312437249 Hl6yE-Y | motion#5768 +09:50:10.739-0700 871072250156167178 GtT_8To | motion#2926 +09:50:10.846-0700 871072248134516796 TujGRmE | motion#9980 +09:50:10.864-0700 871072246020591688 dh4LlMI | motion#1492 +09:50:10.891-0700 871072249141141524 oYYjeY8 | motion#5658 +09:50:10.955-0700 871072235186688061 GAoczaE | motion#3133 +09:50:11.012-0700 871072249791266839 O33nD0k | motion#1905 +09:50:11.017-0700 871072252962156554 Wmb0aus | motion#3158 +09:50:11.081-0700 871072249476689942 8OWY4c8 | motion#5760 +09:50:11.100-0700 871072244170887198 3aKe7NQ | motion#0942 +09:50:11.110-0700 871072253821976606 -3tbqjo | motion#4628 +09:50:11.140-0700 871072246075101184 T00QKxA | motion#9688 +09:50:11.174-0700 871072251422838795 6Txwchw | motion#1915 +09:50:11.192-0700 871072234398163004 2iBWRYE | motion#9265 +09:50:11.219-0700 871072236990267422 yBfvutg | motion#4268 +09:50:11.266-0700 871072248696557578 FLQDGS0 | motion#3672 +09:50:11.363-0700 871072251234123836 kBkHRs0 | motion#3849 +09:50:11.449-0700 871072253700374569 FznWkTQ | motion#9077 +09:50:11.467-0700 871072254807638027 kVlhaGA | motion#0106 +09:50:11.510-0700 871072231319547944 FWVmEDc | motion#2664 +09:50:11.512-0700 871072253318676551 j1icX0k | motion#3658 +09:50:11.599-0700 871072238089166918 r5BfS5M | motion#0163 +09:50:11.623-0700 871072253733929031 b8flFxY | motion#3688 +09:50:11.714-0700 871072251854864414 9miGEu0 | motion#0399 +09:50:11.756-0700 871072253058633750 4pWJzf8 | motion#7746 +09:50:11.789-0700 871072251712266271 3x9ux1U | motion#6341 +09:50:11.820-0700 871072252588859412 KliilfE | motion#9234 +09:50:11.858-0700 871072241792724993 Iq1m2js | motion#9990 +09:50:11.876-0700 871072252114927727 oOLplXg | motion#5178 +09:50:11.908-0700 871072244032495716 uKwoYCA | motion#6008 +09:50:12.040-0700 871072252836347944 lFPn1pY | motion#2543 +09:50:12.082-0700 871072241054539816 ANmvfGo | motion#0013 +09:50:12.113-0700 871072238932209704 NiTj9QE | motion#5369 +09:50:12.136-0700 871072251393486868 ErP9FYE | motion#5968 +09:50:12.259-0700 871072251934556211 BiKjHXE | motion#3991 +09:50:12.289-0700 871072254405001307 dcEnroM | motion#1702 +09:50:12.364-0700 871072241796915220 yqclrqc | motion#5277 +09:50:12.397-0700 871072253125734401 e8grj-A | motion#7990 +09:50:12.446-0700 871072253784236042 _ch3DOg | motion#2633 +09:50:12.467-0700 871072257429094471 QnjvYIU | motion#8325 +09:50:12.544-0700 871072258402181150 8ttIQrQ | motion#4398 +09:50:12.743-0700 871072257441677332 K5Up68E | motion#1678 +09:50:12.750-0700 871072242065354792 FhHKphQ | motion#3649 +09:50:12.764-0700 871072257911447633 udyXZh8 | motion#3237 +09:50:12.852-0700 871072255554248705 pbRWxpE | motion#8855 +09:50:12.951-0700 871072256019824660 eIOgtIw | motion#1687 +09:50:12.981-0700 871072245701820486 znlgOgc | motion#8683 +09:50:12.983-0700 871072255684268032 kbED2rI | motion#9207 +09:50:13.010-0700 871072258762895380 OYQiJdc | motion#3680 +09:50:13.013-0700 871072257542344724 HlBApco | motion#1802 +09:50:13.061-0700 871072258028888105 jKNmvoY | motion#5953 +09:50:13.159-0700 871072255881383976 nh8wc7g | motion#0465 +09:50:13.210-0700 871072251221516378 px0LaIY | motion#7788 +09:50:13.338-0700 871072256808329216 Fq2b2oo | motion#5517 +09:50:13.379-0700 871072258276356096 VjqvIVU | motion#9781 +09:50:13.529-0700 871072257248747551 cciV638 | motion#8348 +09:50:13.551-0700 871072261304639499 UVRYY0g | motion#3824 +09:50:13.721-0700 871072245076856833 fICaI0I | motion#4489 +09:50:13.729-0700 871072253679386726 7audkAo | motion#3497 +09:50:13.746-0700 871072258892918856 N0bvsNk | motion#1906 +09:50:13.757-0700 871072262550331423 bjuS7EQ | motion#0187 +09:50:14.059-0700 871072259194880030 sXjc6mQ | motion#9873 +09:50:14.114-0700 871072259991806074 Qi8vQLQ | motion#5871 +09:50:14.240-0700 871072243344621658 ERvm6d4 | motion#4166 +09:50:14.316-0700 871072265163378709 _0738Vg | motion#3793 +09:50:14.336-0700 871072257961787402 LpvW19E | motion#6245 +09:50:14.369-0700 871072267692539914 EmB_UFE | motion#5570 +09:50:14.470-0700 871072261996675142 Pi5eETg | motion#2283 +09:50:14.505-0700 871072250521063436 xL6FHu0 | motion#5628 +09:50:14.540-0700 871072262969757786 7_FE_Kg | motion#9766 +09:50:14.546-0700 871072263531819058 IiR8YTM | motion#2930 +09:50:14.608-0700 871072242975522896 ZVhzCks | motion#5593 +09:50:14.649-0700 871072263783481424 2mSaQc4 | motion#0774 +09:50:14.706-0700 871072255537467403 an-vqW0 | motion#8143 +09:50:14.736-0700 871072268346875955 4Z_3zXE | motion#1075 +09:50:14.786-0700 871072251976511538 ybRe8KU | motion#2923 +09:50:14.814-0700 871072263301124137 SXNot7M | motion#6424 +09:50:14.848-0700 871072265419231294 Qw259_I | motion#9856 +09:50:14.863-0700 871072266258104351 _1ATM6E | motion#3090 +09:50:14.890-0700 871072250919542814 fJ7Zsbs | motion#2712 +09:50:14.906-0700 871072265616375889 9DxaT4o | motion#9910 +09:50:14.993-0700 871072264873984021 dICM674 | motion#2820 +09:50:15.041-0700 871072263607287919 Lf-P1og | motion#9871 +09:50:15.053-0700 871072264706224138 zbjlS08 | motion#8879 +09:50:15.102-0700 871072267600281710 w2_HUMI | motion#8300 +09:50:15.145-0700 871072264584593498 -7u7JgI | motion#2916 +09:50:15.165-0700 871072249787080714 nnGNcRs | motion#1484 +09:50:15.192-0700 871072269349322803 v6wO50I | motion#7264 +09:50:15.234-0700 871072266702700606 bHKWZH8 | motion#0292 +09:50:15.237-0700 871072265477947454 ayP6ucc | motion#0273 +09:50:15.312-0700 871072270372720690 kEzaYdo | motion#7736 +09:50:15.400-0700 871072265087905862 6z8cUYs | motion#0607 +09:50:15.412-0700 871072251221528596 8TOpHUk | motion#6065 +09:50:15.434-0700 871072236327550976 SeQbpiw | motion#2606 +09:50:15.448-0700 871072263548571678 fOC3nhQ | motion#3075 +09:50:15.498-0700 871072252463030283 S8WJLDY | motion#1402 +09:50:15.523-0700 871072269114437695 ryTentE | motion#8914 +09:50:15.538-0700 871072252370751569 VD_h3eA | motion#1412 +09:50:15.539-0700 871072264215466014 wtv8egk | motion#0442 +09:50:15.561-0700 871072254371442760 eH2g89M | motion#4175 +09:50:15.568-0700 871072252932808704 ZQVb_Zg | motion#6346 +09:50:15.596-0700 871072255369703435 HesZDdM | motion#8341 +09:50:15.647-0700 871072256023994428 99ELJ0o | motion#5684 +09:50:15.770-0700 871072266048381029 LdjxTak | motion#3313 +09:50:15.778-0700 871072271995920394 sE37Au4 | motion#3789 +09:50:15.819-0700 871072272063016960 EQ9iqg4 | motion#4860 +09:50:15.850-0700 871072267554148353 M_penXU | motion#6174 +09:50:15.900-0700 871072268992794634 PN8CRqA | motion#0621 +09:50:15.939-0700 871072266274877520 F79NO3E | motion#1227 +09:50:15.948-0700 871072258788040714 kQ_KyCs | motion#7787 +09:50:15.973-0700 871072260885217331 uAZf9eM | motion#2862 +09:50:16.013-0700 871072268590149702 bWoCAtg | motion#2022 +09:50:16.047-0700 871072263649230890 HuDDgjY | motion#7430 +09:50:16.059-0700 871072257819156530 yaHA2og | motion#0119 +09:50:16.067-0700 871072268749520897 1aN4mms | motion#2228 +09:50:16.085-0700 871072261170421780 8JQFpvc | motion#5053 +09:50:16.101-0700 871072271157039134 L2FGpy0 | motion#5498 +09:50:16.107-0700 871072265540862023 Ph4u_4U | motion#1753 +09:50:16.110-0700 871072254958645320 F0_djJQ | motion#4389 +09:50:16.160-0700 871072270066528297 K1mDsg4 | motion#7536 +09:50:16.175-0700 871072266459443230 5gmBZBI | motion#8935 +09:50:16.198-0700 871072270418845777 7x16P0I | motion#4781 +09:50:16.205-0700 871072269370269767 5_5jdOY | motion#2969 +09:50:16.413-0700 871072272432107572 wrqN4TA | motion#4059 +09:50:16.424-0700 871072271899426866 E18ft40 | motion#2348 +09:50:16.547-0700 871072272448913418 Qrvuu0M | motion#5081 +09:50:16.552-0700 871072260935540756 Zactd1g | motion#2177 +09:50:16.553-0700 871072272973197382 YC2w_Is | motion#1711 +09:50:16.595-0700 871072265775751188 hTJ4-pQ | motion#5886 +09:50:16.816-0700 871072271958175795 h3AJhKM | motion#1665 +09:50:16.849-0700 871072273514242128 naZ4PjA | motion#9187 +09:50:16.892-0700 871072256187588628 VW0O1D0 | motion#2302 +09:50:16.898-0700 871072259987611719 71GrZ_o | motion#9309 +09:50:16.969-0700 871072272646041710 0xjrpj0 | motion#9171 +09:50:17.020-0700 871072272738295869 PtO8XtQ | motion#5785 +09:50:17.052-0700 871072275728855041 zGfV1fw | motion#5565 +09:50:17.074-0700 871072274738999337 ltz2Wqo | motion#6859 +09:50:17.107-0700 871072278320910416 1a-4Xvg | motion#2297 +09:50:17.130-0700 871072276118896691 hr87n3E | motion#6091 +09:50:17.150-0700 871072277637267527 FHaosOA | motion#5405 +09:50:17.181-0700 871072274248249384 miT1Gtw | motion#3677 +09:50:17.202-0700 871072273371648001 APY9_sE | motion#3834 +09:50:17.340-0700 871072264299368458 nhoFqzc | motion#1072 +09:50:17.484-0700 871072277071036437 gnwEngM | motion#8759 +09:50:17.519-0700 871072276517359616 yKXvxSA | motion#9786 +09:50:17.528-0700 871072261300441099 kbiO2Go | motion#8857 +09:50:17.591-0700 871072280917213224 4TAEfNQ | motion#0731 +09:50:17.593-0700 871072280053174282 QfkY1Og | motion#9968 +09:50:17.622-0700 871072255562633286 -P9NTeI | motion#9102 +09:50:17.673-0700 871072281122730025 cXYxo1k | motion#8685 +09:50:17.761-0700 871072264865591296 tuEYiB8 | motion#7686 +09:50:17.858-0700 871072271085756486 wbab1AE | motion#0156 +09:50:17.862-0700 871072275527520266 rUHn5Ck | motion#2693 +09:50:17.871-0700 871072280283848714 lt2x4uw | motion#1766 +09:50:17.987-0700 871072274390847518 fkLQml4 | motion#6127 +09:50:18.017-0700 871072267684171917 EHatt_k | motion#1720 +09:50:18.030-0700 871072279696646216 cnTVLRA | motion#5637 +09:50:18.096-0700 871072276764823684 k9qQg4U | motion#7923 +09:50:18.116-0700 871072265956130907 vHU7G8U | motion#7672 +09:50:18.303-0700 871072277863731232 0q-f0Do | motion#4265 +09:50:18.351-0700 871072275280068628 jYLOYQA | motion#4386 +09:50:18.399-0700 871072279944122399 HGZZJqk | motion#4869 +09:50:18.401-0700 871072265620582440 02ip4yc | motion#6877 +09:50:18.427-0700 871072284390084648 hAsOOfM | motion#0549 +09:50:18.436-0700 871072271480000603 bw_wOqc | motion#9053 +09:50:18.447-0700 871072280044765194 dQsT2yc | motion#6925 +09:50:18.534-0700 871072262932017223 pIsHKrY | motion#1282 +09:50:18.720-0700 871072284939522148 wQhOOOY | motion#3045 +09:50:18.754-0700 871072282695565412 9tYi9fo | motion#7495 +09:50:18.759-0700 871072277700165633 FDYfYuE | motion#7566 +09:50:18.772-0700 871072281206603787 dh-oG4w | motion#6123 +09:50:18.789-0700 871072281319866388 yHkq9U8 | motion#1525 +09:50:18.806-0700 871072282011922443 agLyZ8k | motion#3565 +09:50:18.806-0700 871072279231082506 qRiLvqo | motion#0033 +09:50:18.810-0700 871072269005385738 ICsAxME | motion#4388 +09:50:18.821-0700 871072280015425587 TmQWhME | motion#1339 +09:50:18.838-0700 871072283328929812 QLb2IiM | motion#4488 +09:50:18.875-0700 871072285132468267 hBjuAWo | motion#3406 +09:50:18.899-0700 871072283085639720 kN_zD6g | motion#7820 +09:50:18.972-0700 871072275686899774 coA9c9g | motion#6184 +09:50:18.986-0700 871072282842374145 cSuFMl4 | motion#2261 +09:50:19.038-0700 871072279801524254 3rwHzp8 | motion#3292 +09:50:19.139-0700 871072269974261871 Vpfx-t0 | motion#8924 +09:50:19.141-0700 871072273522638858 j-zlJPY | motion#9382 +09:50:19.192-0700 871072274608967711 gDrsPU8 | motion#2296 +09:50:19.201-0700 871072281739288636 pTgfwhI | motion#8049 +09:50:19.220-0700 871072287229632522 JToaymI | motion#3670 +09:50:19.303-0700 871072284062916639 K5agnnY | motion#4672 +09:50:19.363-0700 871072274940301373 A26tQB8 | motion#2443 +09:50:19.371-0700 871072280761995394 5vYfEak | motion#6939 +09:50:19.402-0700 871072270464983040 HJOpwqE | motion#1672 +09:50:19.488-0700 871072281869316176 BK03F2w | motion#8532 +09:50:19.511-0700 871072285887438878 UYZu7NE | motion#1776 +09:50:19.520-0700 871072273912709150 EXfcaCg | motion#9417 +09:50:19.613-0700 871072283286978631 Wmji7CU | motion#2772 +09:50:19.676-0700 871072288529846273 zVGtwsI | motion#9858 +09:50:19.752-0700 871072272704741406 HyXEBoY | motion#7896 +09:50:19.835-0700 871072286382358559 I_zUM6M | motion#5164 +09:50:19.866-0700 871072285841322004 B8Y1f7Y | motion#5949 +09:50:19.913-0700 871072287829401631 ODSLbf4 | motion#5891 +09:50:19.918-0700 871072287758114907 OLyKwf4 | motion#3727 +09:50:19.922-0700 871072272012701737 MntasUc | motion#8602 +09:50:19.933-0700 871072280048975873 Y6Iq3Kk | motion#8445 +09:50:19.934-0700 871072274277617734 _PBLfFM | motion#9638 +09:50:19.940-0700 871072290006265946 5NnkPxk | motion#3609 +09:50:19.956-0700 871072286436900884 Z5mID5g | motion#8569 +09:50:19.981-0700 871072266836934706 N3dSbF8 | motion#2446 +09:50:20.012-0700 871072278383829054 z1JqQTU | motion#2801 +09:50:20.031-0700 871072278828445706 0O1TlfM | motion#6475 +09:50:20.164-0700 871072282645233704 e_A_PKo | motion#5557 +09:50:20.187-0700 871072267503800400 zN0cZms | motion#3297 +09:50:20.434-0700 871072274575400970 hS8EtVY | motion#5600 +09:50:20.469-0700 871072278874587156 8juk76U | motion#7592 +09:50:20.492-0700 871072289020596276 XpqudKU | motion#2272 +09:50:20.515-0700 871072290203385866 Zl4Dw-Y | motion#5223 +09:50:20.568-0700 871072275275858030 WuTJys0 | motion#7356 +09:50:20.581-0700 871072289150599208 qyaFhls | motion#1827 +09:50:20.597-0700 871072288735367198 vZMUUag | motion#2429 +09:50:20.601-0700 871072276727074847 IBDHJGE | motion#1175 +09:50:20.621-0700 871072275686895617 BbMpJlk | motion#9689 +09:50:20.672-0700 871072292707377152 4_W72PY | motion#2749 +09:50:20.694-0700 871072293181341706 rD_Bduc | motion#0159 +09:50:20.742-0700 871072284763381793 3RbLdjo | motion#5561 +09:50:20.805-0700 871072278530650192 RLUTSH0 | motion#3311 +09:50:20.822-0700 871072289968492544 hC7PyYU | motion#3588 +09:50:20.849-0700 871072289049939998 yNxy4E0 | motion#7115 +09:50:20.882-0700 871072290014625862 RtHlhBE | motion#1236 +09:50:21.027-0700 871072278971047976 Z0tuRsY | motion#8063 +09:50:21.097-0700 871072292522844221 i7jB6ro | motion#3173 +09:50:21.115-0700 871072290895454238 S7ViSbo | motion#9236 +09:50:21.119-0700 871072280690700390 sFyhWcA | motion#8493 +09:50:21.223-0700 871072293261029386 Rp3SYkw | motion#0472 +09:50:21.247-0700 871072292027912242 5B6Bcbo | motion#0707 +09:50:21.260-0700 871072293407817790 udlHPpU | motion#5604 +09:50:21.273-0700 871072289641336882 zieS22c | motion#2322 +09:50:21.505-0700 871072281265340449 Ugv6e2w | motion#1255 +09:50:21.560-0700 871072294372519956 4xrW8UY | motion#0606 +09:50:21.572-0700 871072293881778177 D8n1U4c | motion#9824 +09:50:21.613-0700 871072296884928592 E12brRk | motion#6065 +09:50:21.652-0700 871072293269418015 Et75ZwQ | motion#0944 +09:50:21.761-0700 871072283601547324 9MV7U3o | motion#5607 +09:50:21.816-0700 871072294225711104 q1LWTYM | motion#7732 +09:50:21.830-0700 871072297568567337 EV7l2l4 | motion#5030 +09:50:21.836-0700 871072294674501632 BTQk4OA | motion#1633 +09:50:21.850-0700 871072288592785478 I3G4e1Y | motion#8542 +09:50:21.915-0700 871072290652160010 6NK1wB4 | motion#5664 +09:50:21.957-0700 871072293583998996 mhhWuS0 | motion#6650 +09:50:21.962-0700 871072295706320946 LyqgbIw | motion#7181 +09:50:22.006-0700 871072296008298506 NjNGJ4A | motion#9652 +09:50:22.022-0700 871072283588964443 YhmnTXM | motion#1163 +09:50:22.040-0700 871072294968107019 myyc270 | motion#5152 +09:50:22.040-0700 871072294469005314 CycQyPM | motion#4545 +09:50:22.057-0700 871072289897209916 7Om2A3A | motion#6588 +09:50:22.100-0700 871072285493182474 P6fNEwY | motion#4086 +09:50:22.150-0700 871072297597952041 C3LpIUQ | motion#1816 +09:50:22.208-0700 871072296301916170 FHWOLO4 | motion#8034 +09:50:22.227-0700 871072292342485002 wOi2nck | motion#0167 +09:50:22.291-0700 871072293118410774 RNxxZwQ | motion#6037 +09:50:22.297-0700 871072296197038090 5WyPzQQ | motion#8020 +09:50:22.298-0700 871072291545555054 BLXl3_4 | motion#1571 +09:50:22.341-0700 871072296671002624 KdkGJho | motion#2840 +09:50:22.369-0700 871072288810864661 OiYjxRk | motion#2305 +09:50:22.388-0700 871072298428428380 FsGLgvY | motion#4159 +09:50:22.436-0700 871072295974735902 SkmiN9c | motion#0616 +09:50:22.439-0700 871072297283366913 5cvhnwE | motion#5546 +09:50:22.479-0700 871072282603307028 y46BXqo | motion#1531 +09:50:22.489-0700 871072300647198771 MBU0JAw | motion#9708 +09:50:22.725-0700 871072283119210557 4Due-qk | motion#3033 +09:50:22.737-0700 871072301691568179 QaWeT74 | motion#9756 +09:50:22.802-0700 871072297014927411 Ln0It9I | motion#0191 +09:50:22.832-0700 871072287762317363 9oaQsp8 | motion#1685 +09:50:22.843-0700 871072294171213824 RqyGchw | motion#5745 +09:50:22.854-0700 871072300387139594 BKG5Bg8 | motion#3899 +09:50:23.137-0700 871072301272145990 GfK80n4 | motion#7550 +09:50:23.202-0700 871072289922355230 mPrzegw | motion#6057 +09:50:23.209-0700 871072299187576862 bAwaUTQ | motion#0805 +09:50:23.264-0700 871072298705223740 oq-NMdY | motion#1184 +09:50:23.298-0700 871072299594416178 NRkHWvQ | motion#0826 +09:50:23.361-0700 871072300588482681 3l-RXmY | motion#5946 +09:50:23.381-0700 871072287049265202 y6LwEkA | motion#7212 +09:50:23.434-0700 871072301246988318 JHB9FO4 | motion#6441 +09:50:23.499-0700 871072277230391347 TrxMXVU | motion#1810 +09:50:23.537-0700 871072301435740180 aJh61Tc | motion#5574 +09:50:23.607-0700 871072283333103656 OUvZ-6Y | motion#7459 +09:50:23.638-0700 871072302056493157 wgCckyI | motion#2702 +09:50:23.738-0700 871072290710884402 KmAF0oA | motion#1857 +09:50:23.781-0700 871072302379442216 KFAH-n0 | motion#4129 +09:50:23.795-0700 871072303436398603 gx1mXag | motion#8770 +09:50:23.840-0700 871072302660485220 qN9nals | motion#9114 +09:50:23.865-0700 871072306234023937 _e6sEL0 | motion#6589 +09:50:23.893-0700 871072305311285328 h6046Q0 | motion#8468 +09:50:23.916-0700 871072291667210280 KOMDX2U | motion#2438 +09:50:24.048-0700 871072293781123102 7sAisDk | motion#0771 +09:50:24.056-0700 871072303620980767 SOI77Fg | motion#5771 +09:50:24.069-0700 871072292631904298 dSRPyH0 | motion#5911 +09:50:24.126-0700 871072304765993080 3HSwFkQ | motion#7765 +09:50:24.265-0700 871072296037675038 VzY2vAo | motion#6272 +09:50:24.278-0700 871072300609458236 UolUjnc | motion#4592 +09:50:24.428-0700 871072309253906482 o8oeIr4 | motion#9293 +09:50:24.454-0700 871072305382567989 3eRZ1qs | motion#3888 +09:50:24.489-0700 871072292778672180 rnC8tIM | motion#6854 +09:50:24.497-0700 871072294540283964 YzdOqvs | motion#2771 +09:50:24.506-0700 871072309400698930 7Qg5fHI | motion#6596 +09:50:24.540-0700 871072303188951052 --DSJUE | motion#6359 +09:50:24.629-0700 871072302551416893 sejFYZY | motion#3812 +09:50:24.770-0700 871072310919037011 rO4C9SA | motion#4160 +09:50:24.836-0700 871072295454646312 vE0PQdA | motion#3558 +09:50:24.848-0700 871072309811765268 RL0FzmE | motion#9044 +09:50:24.855-0700 871072311418187786 WJm3uYY | motion#1062 +09:50:24.868-0700 871072310659006505 2uS1Cro | motion#4932 +09:50:24.889-0700 871072302467538955 3RU7ynY | motion#2931 +09:50:24.901-0700 871072292770308136 c8tRZNY | motion#5101 +09:50:24.902-0700 871072306934464532 ORHajPk | motion#8914 +09:50:24.953-0700 871072310554153031 75l93V4 | motion#9901 +09:50:25.020-0700 871072306615693322 jDrqbE0 | motion#3450 +09:50:25.035-0700 871072308138246184 hPUqIB8 | motion#9807 +09:50:25.061-0700 871072305982345328 lTaXZ7w | motion#5296 +09:50:25.116-0700 871072309908234250 _xwR_Zw | motion#7364 +09:50:25.142-0700 871072292816424962 F0d4aQM | motion#7328 +09:50:25.156-0700 871072309501382746 kNBFbTY | motion#1114 +09:50:25.230-0700 871072307362271284 s6klvVg | motion#2259 +09:50:25.246-0700 871072312328339516 uiLHVoo | motion#8906 +09:50:25.329-0700 871072277167489084 PWrsegg | motion#6215 +09:50:25.348-0700 871072309677555744 AXnVV9U | motion#5126 +09:50:25.400-0700 871072310025674834 sBlgVAk | motion#9255 +09:50:25.425-0700 871072297488879676 FV_kku8 | motion#3608 +09:50:25.531-0700 871072307534233611 Wxp45yQ | motion#7653 +09:50:25.535-0700 871072308503138305 u4GFUmg | motion#0180 +09:50:25.636-0700 871072313498550332 M0bfaXo | motion#6550 +09:50:25.681-0700 871072309916622958 dsowI7U | motion#8517 +09:50:25.777-0700 871072308188557312 QR6soIw | motion#7195 +09:50:25.892-0700 871072311137153034 BOrfqWA | motion#1862 +09:50:25.899-0700 871072312470958080 MZ8rfNw | motion#1033 +09:50:25.935-0700 871072300353617930 rLhDZuY | motion#7989 +09:50:25.976-0700 871072312953303040 9Jpshco | motion#7870 +09:50:26.041-0700 871072301213429761 jGwSdoA | motion#2935 +09:50:26.047-0700 871072302043897857 GJOY1V4 | motion#1727 +09:50:26.222-0700 871072313720856619 W7-XixY | motion#7896 +09:50:26.236-0700 871072311883747358 UkYTsDU | motion#0572 +09:50:26.275-0700 871072316489101364 XvG-R64 | motion#8358 +09:50:26.455-0700 871072311137157141 6Dm2PH0 | motion#4586 +09:50:26.457-0700 871072315570544662 SNdVfM0 | motion#2954 +09:50:26.466-0700 871072300047417475 vo9giY0 | motion#9234 +09:50:26.480-0700 871072312231874620 ykryhnM | motion#6248 +09:50:26.555-0700 871072313871855616 XuuRZIs | motion#6043 +09:50:26.568-0700 871072313595027507 wMH3ads | motion#9230 +09:50:26.581-0700 871072312613539891 B4rGg3U | motion#9875 +09:50:26.601-0700 871072302723395614 kuxdp2w | motion#6652 +09:50:26.646-0700 871072296004091996 VZHaZNo | motion#0441 +09:50:26.669-0700 871072313473376297 CByWZ80 | motion#2692 +09:50:26.805-0700 871072317583786044 _y19vOI | motion#7455 +09:50:26.843-0700 871072301737709669 fpjJgcI | motion#8694 +09:50:26.918-0700 871072302341693440 ytjxTak | motion#2673 +09:50:27.066-0700 871072316954664972 1I5VxAg | motion#6938 +09:50:27.127-0700 871072317722202132 7_6f1Ww | motion#9900 +09:50:27.172-0700 871072302425591868 NmdR5NI | motion#1461 +09:50:27.184-0700 871072306301128734 oJFHciw | motion#7739 +09:50:27.197-0700 871072318150049872 Ci8qgbQ | motion#2453 +09:50:27.242-0700 871072314526150716 T9_gvXs | motion#3467 +09:50:27.261-0700 871072303235084358 a_kMwXU | motion#1481 +09:50:27.288-0700 871072320461082645 3idS1u8 | motion#8378 +09:50:27.360-0700 871072308490555402 8aKPyck | motion#3386 +09:50:27.361-0700 871072319131508766 EQtrYWs | motion#3056 +09:50:27.436-0700 871072317378285630 WE3RK4A | motion#3480 +09:50:27.438-0700 871072307437772851 x3DGaLA | motion#2618 +09:50:27.451-0700 871072315759288381 Cji6iVs | motion#2583 +09:50:27.467-0700 871072312659701770 TQ_Wsxs | motion#6605 +09:50:27.547-0700 871072319458652160 a2ytm0A | motion#0309 +09:50:27.648-0700 871072319303458857 MTlO-lo | motion#5861 +09:50:27.660-0700 871072314752634892 s1n0J_Y | motion#9738 +09:50:27.749-0700 871072307341299722 nNzli1o | motion#4862 +09:50:27.793-0700 871072323376132126 RMgedwo | motion#3683 +09:50:27.926-0700 871072319655772220 FvHWets | motion#4912 +09:50:27.933-0700 871072322193342484 Uz4oiPA | motion#0532 +09:50:28.016-0700 871072322528878602 aojqwp0 | motion#0155 +09:50:28.028-0700 871072318049353729 QEkKq8E | motion#2944 +09:50:28.048-0700 871072320515625020 P2Q6TuY | motion#7181 +09:50:28.058-0700 871072320142319626 jeykAKM | motion#4654 +09:50:28.071-0700 871072322461782066 E9LvRGw | motion#3379 +09:50:28.156-0700 871072309086142474 iH5NNOU | motion#2495 +09:50:28.163-0700 871072307685257246 3xxkRP0 | motion#9959 +09:50:28.276-0700 871072320096198707 ptjwaLI | motion#0326 +09:50:28.277-0700 871072311401402368 EsTgpIw | motion#5194 +09:50:28.277-0700 871072305353203733 t58ciJo | motion#3407 +09:50:28.297-0700 871072322734415903 e0eWXlQ | motion#8707 +09:50:28.369-0700 871072321069273149 UyYSTx4 | motion#9890 +09:50:28.420-0700 871072325020307526 rO9aBmg | motion#7298 +09:50:28.434-0700 871072325091598387 N9Ztz2Q | motion#5090 +09:50:28.490-0700 871072319634825277 0pVHKMg | motion#8562 +09:50:28.509-0700 871072309102932019 68oUNiU | motion#2600 +09:50:28.542-0700 871072320834379807 7AkVS-Y | motion#0921 +09:50:28.583-0700 871072321010552892 PqIHC6o | motion#6199 +09:50:28.655-0700 871072323862683668 ZA5lmu4 | motion#7038 +09:50:28.700-0700 871072310491230248 PyytPic | motion#9101 +09:50:28.730-0700 871072322159804447 E6oy00w | motion#3128 +09:50:28.757-0700 871072327201329162 KnRY96k | motion#5654 +09:50:28.762-0700 871072326635106314 -0gLTLI | motion#6320 +09:50:28.891-0700 871072323501973604 7o6_X9k | motion#6442 +09:50:28.901-0700 871072314022854676 7X1Ebwo | motion#5602 +09:50:29.016-0700 871072325670404186 7ZOU77A | motion#8593 +09:50:29.078-0700 871072324554752044 NhDUVLk | motion#1339 +09:50:29.085-0700 871072325250973746 ndx1dVw | motion#4663 +09:50:29.249-0700 871072308729634836 0rBrS9g | motion#5557 +09:50:29.249-0700 871072328472199229 24E9qug | motion#6309 +09:50:29.254-0700 871072293592395827 omOe-Y4 | motion#8897 +09:50:29.344-0700 871072316736540772 JMnvI_Q | motion#4084 +09:50:29.391-0700 871072319571914843 fPNs0KI | motion#5295 +09:50:29.526-0700 871072329764069386 pipjLZg | motion#7338 +09:50:29.559-0700 871072314228350996 2KOuDxs | motion#3632 +09:50:29.603-0700 871072325888516167 iomu6no | motion#5357 +09:50:29.667-0700 871072329315274823 VkIv7mA | motion#0272 +09:50:29.681-0700 871072313238503424 uDm4NNk | motion#0775 +09:50:29.697-0700 871072327624962138 _pU6KO0 | motion#0575 +09:50:29.724-0700 871072327536881706 -X585VI | motion#4118 +09:50:29.782-0700 871072315222417468 WF2BBRc | motion#0585 +09:50:29.795-0700 871072326228267079 -9tIKB0 | motion#1075 +09:50:29.807-0700 871072312668061717 MbQv-EE | motion#3795 +09:50:29.814-0700 871072326534463571 Cwz0u0I | motion#8658 +09:50:29.844-0700 871072315042037820 vuef7fU | motion#1150 +09:50:29.936-0700 871072329743089694 yo3W5mo | motion#0010 +09:50:29.984-0700 871072329348816896 gG-R_4o | motion#0590 +09:50:30.016-0700 871072332230303794 G2Hk9SM | motion#6114 +09:50:30.017-0700 871072328539320380 Q3uB9JE | motion#4637 +09:50:30.045-0700 871072329696952360 ujj7a-0 | motion#4663 +09:50:30.064-0700 871072328501575720 RJeD7mI | motion#7453 +09:50:30.076-0700 871072332968513567 NlNYdNw | motion#4119 +09:50:30.166-0700 871072327390097420 UzR8R-k | motion#0225 +09:50:30.172-0700 871072330405777499 00RncuQ | motion#4289 +09:50:30.196-0700 871072333417304064 BoNbkoU | motion#3099 +09:50:30.198-0700 871072313922191391 bM98r7c | motion#8945 +09:50:30.307-0700 871072333887066183 D2kUzhw | motion#9431 +09:50:30.338-0700 871072325276147755 W3OIFeg | motion#2550 +09:50:30.369-0700 871072327931158618 EYkDyEM | motion#4910 +09:50:30.426-0700 871072321958445056 DjpW1qo | motion#2619 +09:50:30.443-0700 871072333169836052 usuhH50 | motion#3653 +09:50:30.451-0700 871072330745511976 lkLW-NY | motion#1537 +09:50:30.500-0700 871072329218805811 0hjQ_8s | motion#3153 +09:50:30.515-0700 871072315985756160 wiy5bNU | motion#3492 +09:50:30.543-0700 871072334155485194 HX9fP2o | motion#6674 +09:50:30.610-0700 871072332343562290 i3VL_jg | motion#4833 +09:50:30.655-0700 871072331496296448 6KxC0rU | motion#8811 +09:50:30.678-0700 871072335489294346 OjCfGck | motion#8646 +09:50:30.687-0700 871072331496312842 VMIAWUk | motion#7702 +09:50:30.738-0700 871072331898974238 fMwf658 | motion#8223 +09:50:30.821-0700 871072336340734042 dZ7aOKg | motion#9560 +09:50:30.845-0700 871072329504022528 2e3HS7g | motion#7239 +09:50:30.896-0700 871072334780432404 2v8pflA | motion#6158 +09:50:30.973-0700 871072318208749669 QdoWjeI | motion#4361 +09:50:31.053-0700 871072331689238590 EYSGkVY | motion#5626 +09:50:31.077-0700 871072332549087233 vVzaTiw | motion#7876 +09:50:31.086-0700 871072320666619915 ERYKsSM | motion#6569 +09:50:31.100-0700 871072322902183947 T_V6pyU | motion#7480 +09:50:31.123-0700 871072337305423893 lYtzm7I | motion#4148 +09:50:31.175-0700 871072334272942100 U9spWUE | motion#3887 +09:50:31.246-0700 871072334532980746 sgqpqIg | motion#2844 +09:50:31.274-0700 871072336944713728 WjkjXfs | motion#7942 +09:50:31.324-0700 871072338265923644 Gvv2ppU | motion#0527 +09:50:31.353-0700 871072337116672001 HgxHIR0 | motion#4364 +09:50:31.463-0700 871072334369423362 rCS0Fsw | motion#6877 +09:50:31.648-0700 871072311967625256 17Mys-A | motion#3133 +09:50:31.651-0700 871072324852531250 M4ORh0c | motion#2912 +09:50:31.690-0700 871072334545567815 aUx9M8s | motion#8590 +09:50:31.742-0700 871072330456129597 p9EJTxY | motion#2671 +09:50:31.743-0700 871072324714127391 OqmLIt4 | motion#0641 +09:50:31.753-0700 871072325087399987 Oi82Ebo | motion#1467 +09:50:31.778-0700 871072335627698236 RkCxOE8 | motion#0182 +09:50:31.795-0700 871072324554752040 IdGt1QQ | motion#4717 +09:50:31.805-0700 871072321610326066 7rhGq9c | motion#0068 +09:50:31.837-0700 871072336479125564 4RI_Pcg | motion#8062 +09:50:31.845-0700 871072340014940210 I2zUN2o | motion#4990 +09:50:31.885-0700 871072338244939776 tQbsu5k | motion#1781 +09:50:31.894-0700 871072333815775252 YrB9q5c | motion#0119 +09:50:31.896-0700 871072336089071626 dACU_4E | motion#2575 +09:50:31.925-0700 871072336256860200 Geh9N0o | motion#6482 +09:50:31.944-0700 871072337213128744 _UBbBd8 | motion#2558 +09:50:32.005-0700 871072339553579018 -LqdChs | motion#6771 +09:50:32.038-0700 871072335409606706 X3rtEok | motion#8026 +09:50:32.046-0700 871072338131709974 kUofc9Q | motion#3428 +09:50:32.154-0700 871072334340063343 _1R4mbw | motion#9689 +09:50:32.186-0700 871072340266602538 FE7sRA8 | motion#3935 +09:50:32.248-0700 871072340828631071 rIxg1RU | motion#6218 +09:50:32.291-0700 871072337875853342 V2a7ack | motion#2300 +09:50:32.385-0700 871072329206210620 H17SfAw | motion#9787 +09:50:32.460-0700 871072339129942048 9t_fjIM | motion#9370 +09:50:32.549-0700 871072325968212028 CvvWsgw | motion#3896 +09:50:32.606-0700 871072335938068510 TNh-2R8 | motion#4042 +09:50:32.617-0700 871072341415829544 F3NLb5w | motion#2894 +09:50:32.631-0700 871072336961499176 NN1D_zM | motion#3950 +09:50:32.674-0700 871072342925774879 EWY9Eqk | motion#7051 +09:50:32.883-0700 871072329906659329 mhRpFSo | motion#4217 +09:50:32.940-0700 871072345018761296 Kg8UeNY | motion#3294 +09:50:32.979-0700 871072342678331503 ekuDYYA | motion#6513 +09:50:32.996-0700 871072338374950913 yT-VTZI | motion#9008 +09:50:33.014-0700 871072328648372394 PK0EX48 | motion#3525 +09:50:33.034-0700 871072339121537096 KbtoxIs | motion#3401 +09:50:33.069-0700 871072341952708610 iSj0lvs | motion#4006 +09:50:33.108-0700 871072339389988925 AGkhcFw | motion#0132 +09:50:33.166-0700 871072341856227368 EKp6XVI | motion#1860 +09:50:33.197-0700 871072342346985592 qqgjGEM | motion#2987 +09:50:33.282-0700 871072332041560074 LefxzJo | motion#9010 +09:50:33.314-0700 871072343819190282 M_H0CWM | motion#8206 +09:50:33.350-0700 871072346927161354 36n23lc | motion#4894 +09:50:33.437-0700 871072331643109397 FEkoYtQ | motion#3833 +09:50:33.482-0700 871072330632278056 FUFBerE | motion#7867 +09:50:33.507-0700 871072330837819453 tdw9eDc | motion#6924 +09:50:33.518-0700 871072343412326471 Fop6Z6g | motion#3276 +09:50:33.613-0700 871072331290775633 LZ04gmk | motion#2968 +09:50:33.623-0700 871072347623424071 i8JGg8k | motion#8855 +09:50:33.648-0700 871072333358567496 UPIQGHY | motion#3018 +09:50:33.661-0700 871072339926851645 5U0Dhkw | motion#0605 +09:50:33.681-0700 871072347929583656 L2zFFdo | motion#5903 +09:50:33.695-0700 871072343856910376 4WtnZ3E | motion#5940 +09:50:33.801-0700 871072346746798100 zoajqVA | motion#4300 +09:50:33.824-0700 871072336525271060 aWIDljQ | motion#9994 +09:50:33.838-0700 871072345547210772 R03m3uY | motion#8647 +09:50:33.911-0700 871072345886978118 bLPfJh4 | motion#3451 +09:50:34.055-0700 871072345777913977 8jnjc9s | motion#2438 +09:50:34.136-0700 871072332943335455 EKiio1c | motion#6153 +09:50:34.327-0700 871072345488510977 i_T1SJQ | motion#1083 +09:50:34.349-0700 871072348315451412 BtdJcrQ | motion#8691 +09:50:34.364-0700 871072342904803429 61t51JU | motion#0499 +09:50:34.389-0700 871072331836051526 ZNmP35o | motion#3191 +09:50:34.457-0700 871072347594047519 8A7JQ7k | motion#1762 +09:50:34.584-0700 871072348055408681 xYDW9nY | motion#3150 +09:50:34.606-0700 871072349833801739 R3Itm_8 | motion#9147 +09:50:34.612-0700 871072346813890601 C1-w9MA | motion#7660 +09:50:34.640-0700 871072350613938217 eaqLD5M | motion#1892 +09:50:34.660-0700 871072349032685628 AM8kBi0 | motion#5306 +09:50:34.712-0700 871072346750996542 HPVumeM | motion#6905 +09:50:34.740-0700 871072334763687977 uz42Dag | motion#4768 +09:50:34.746-0700 871072348638445649 GKlXkIg | motion#1352 +09:50:34.779-0700 871072344033087498 yt2HTs4 | motion#5715 +09:50:34.797-0700 871072351930949722 mmclxDA | motion#5581 +09:50:34.805-0700 871072339293503568 Rgf49TE | motion#4088 +09:50:34.846-0700 871072336340738081 3z3NSMg | motion#8283 +09:50:34.860-0700 871072351687696454 RFA2wJI | motion#2946 +09:50:34.903-0700 871072349334679552 V9FseLo | motion#1936 +09:50:34.913-0700 871072353285709835 CcWVxb0 | motion#8798 +09:50:34.937-0700 871072350987223220 KJiDA-o | motion#4189 +09:50:34.953-0700 871072348000890890 Pu3hgdA | motion#9311 +09:50:35.096-0700 871072352706912307 7ZyYuLM | motion#7619 +09:50:35.099-0700 871072351020810261 v2Py1BM | motion#8502 +09:50:35.102-0700 871072349112373280 Wwb9H98 | motion#9591 +09:50:35.122-0700 871072338580484157 qBd1vPE | motion#0861 +09:50:35.139-0700 871072349636685915 9mZccv0 | motion#1293 +09:50:35.141-0700 871072352396513350 rST-bMg | motion#0961 +09:50:35.143-0700 871072350077071422 _VsbkC8 | motion#0634 +09:50:35.159-0700 871072338987335690 rjhHLMc | motion#3388 +09:50:35.177-0700 871072336831471686 uQLt33Y | motion#7896 +09:50:35.401-0700 871072355378679838 YT6WgKg | motion#3188 +09:50:35.413-0700 871072353277337631 R8I_xhc | motion#0631 +09:50:35.423-0700 871072317424406548 l9zHNlY | motion#4361 +09:50:35.459-0700 871072349963833415 H8IXnrw | motion#7671 +09:50:35.475-0700 871072335183093781 AmxeHNk | motion#1498 +09:50:35.580-0700 871072355374493726 1VgcOaU | motion#3541 +09:50:35.603-0700 871072350869811300 n0nA_jk | motion#8140 +09:50:35.642-0700 871072345517862983 kT7mMCI | motion#1045 +09:50:35.660-0700 871072344658034689 vF4JpSs | motion#5480 +09:50:35.672-0700 871072339624886302 YyDhxMU | motion#7843 +09:50:35.675-0700 871072348059619338 7KDO_rA | motion#2932 +09:50:35.702-0700 871072352308453446 8zuv6lM | motion#4482 +09:50:35.753-0700 871072331483713567 pDse_SU | motion#3217 +09:50:35.757-0700 871072340329508906 xmqfySw | motion#6159 +09:50:35.760-0700 871072352203575336 7hFM1FE | motion#9436 +09:50:35.761-0700 871072353059225600 8W4sSUg | motion#6194 +09:50:35.786-0700 871072353080193074 FYewyZc | motion#8313 +09:50:35.845-0700 871072338551124070 Xcxtwi0 | motion#8957 +09:50:35.932-0700 871072349997387846 48aNvJQ | motion#7641 +09:50:35.940-0700 871072357031243817 Fq_0CYM | motion#1884 +09:50:35.947-0700 871072345182318622 AFs-I0Q | motion#5738 +09:50:35.977-0700 871072356217536532 RM589vY | motion#7853 +09:50:36.027-0700 871072354292338699 r85x6OA | motion#9079 +09:50:36.046-0700 871072354325893130 3HOf0Yc | motion#7462 +09:50:36.119-0700 871072357446484108 nOsJC6M | motion#9579 +09:50:36.133-0700 871072354795659264 A82iURk | motion#2716 +09:50:36.208-0700 871072357396127844 5iKe0GQ | motion#6558 +09:50:36.239-0700 871072355147997214 aPCc9L4 | motion#0137 +09:50:36.315-0700 871072354434945134 j0QRwJM | motion#1277 +09:50:36.379-0700 871072356725035058 w82TXZQ | motion#9515 +09:50:36.447-0700 871072349435346965 cFnXPXQ | motion#0987 +09:50:36.520-0700 871072355030552596 B90G6OA | motion#0062 +09:50:36.553-0700 871072343680749578 X73CdaE | motion#5490 +09:50:36.726-0700 871072357769433128 y5vteuM | motion#3349 +09:50:36.762-0700 871072358948040705 l8Mg_OE | motion#4150 +09:50:36.765-0700 871072353663201322 kFtUx7M | motion#6264 +09:50:36.796-0700 871072358293700628 2KdAZcI | motion#3498 +09:50:36.819-0700 871072359577190400 2d1-Q14 | motion#9866 +09:50:36.826-0700 871072348659417099 sqreiHg | motion#7551 +09:50:36.904-0700 871072357366792242 0TRrF20 | motion#2342 +09:50:36.966-0700 871072360718016612 dx7iyhk | motion#5739 +09:50:37.018-0700 871072359744938065 SR2-odo | motion#7184 +09:50:37.025-0700 871072361334579250 ARQuoOY | motion#6658 +09:50:37.025-0700 871072361741443083 xRD5t1w | motion#0246 +09:50:37.133-0700 871072344200839200 NfEMuPA | motion#5099 +09:50:37.139-0700 871072359287779399 xv0qbrs | motion#8880 +09:50:37.205-0700 871072357823938590 kcrOcRs | motion#2807 +09:50:37.279-0700 871072359833038979 nlOCgxs | motion#8097 +09:50:37.314-0700 871072359912734830 QDymsL4 | motion#6567 +09:50:37.339-0700 871072362798391336 Hei7-iM | motion#3589 +09:50:37.456-0700 871072359786893382 PQ9-qyA | motion#9182 +09:50:37.463-0700 871072360004993024 fvI9UKY | motion#9884 +09:50:37.537-0700 871072361993084998 jQeBXjg | motion#3448 +09:50:37.542-0700 871072362815176806 yGixJkg | motion#0325 +09:50:37.546-0700 871072360889995384 HhZ5v-E | motion#6525 +09:50:37.566-0700 871072357823959132 qlPiTfw | motion#8131 +09:50:37.579-0700 871072348168654881 m53_ulM | motion#7058 +09:50:37.610-0700 871072359719796816 KZn89v4 | motion#7488 +09:50:37.768-0700 871072362567720960 W7QjHBU | motion#4456 +09:50:37.870-0700 871072363255562261 52g7O_c | motion#3957 +09:50:37.985-0700 871072362450259969 -fuzLSM | motion#7698 +09:50:38.034-0700 871072350299381820 13qFCTE | motion#7801 +09:50:38.069-0700 871072363746320434 FTpSgeQ | motion#6474 +09:50:38.116-0700 871072360445378602 roRNqeo | motion#7464 +09:50:38.205-0700 871072339968802887 40s7RmM | motion#1312 +09:50:38.243-0700 871072361888223284 V0HKV80 | motion#8636 +09:50:38.321-0700 871072350328725564 SYEEdS8 | motion#5455 +09:50:38.423-0700 871072352283287572 PQIABuY | motion#0820 +09:50:38.483-0700 871072364107030548 B4u6xXI | motion#8481 +09:50:38.552-0700 871072365461774377 IjYTRoI | motion#7948 +09:50:38.652-0700 871072365340151848 ekAJ2tw | motion#5898 +09:50:38.699-0700 871072310029873153 bLAINgA | motion#3935 +09:50:38.718-0700 871072347505963028 EHZUKTk | motion#7794 +09:50:38.759-0700 871072354040680508 bzePkOs | motion#7545 +09:50:38.795-0700 871072368263594064 LCK08A4 | motion#3914 +09:50:38.809-0700 871072365864452106 M7SwWxA | motion#1971 +09:50:38.836-0700 871072366057357322 TZXxZB0 | motion#7954 +09:50:38.896-0700 871072353197645856 lJ2sEnQ | motion#9511 +09:50:38.897-0700 871072356225937469 K34ZF2Y | motion#0525 +09:50:39.198-0700 871072358079819858 uXqOaPg | motion#6718 +09:50:39.249-0700 871072356460814406 iJGXT4I | motion#9621 +09:50:39.266-0700 871072365122048060 QEJMTf8 | motion#1457 +09:50:39.462-0700 871072356309798923 1hbGXto | motion#1555 +09:50:39.595-0700 871072370155196457 wHAYjkY | motion#0780 +09:50:39.598-0700 871072354451738695 pjpGL6E | motion#9002 +09:50:39.649-0700 871072357614231564 3Gjy4g0 | motion#2542 +09:50:39.718-0700 871072370759188511 bJwbHkQ | motion#9776 +09:50:39.851-0700 871072353851944990 Wk03Lpg | motion#7749 +09:50:39.869-0700 871072368150331433 mTdkSbA | motion#0767 +09:50:39.884-0700 871072349758312519 LzXocy8 | motion#7239 +09:50:39.902-0700 871072372223004673 9u5-Dig | motion#6187 +09:50:39.915-0700 871072367290482709 F-ZNyy4 | motion#2946 +09:50:39.926-0700 871072369349906493 it02_Gg | motion#1141 +09:50:39.941-0700 871072367013687296 U39_bDc | motion#9548 +09:50:39.989-0700 871072340186898512 DvZrvyo | motion#4613 +09:50:40.012-0700 871072345681453098 VHiQ6LQ | motion#3400 +09:50:40.087-0700 871072370142634094 NU4cOrI | motion#8868 +09:50:40.088-0700 871072362903257139 YWOpofo | motion#8995 +09:50:40.154-0700 871072373007323136 DnZPwMM | motion#1640 +09:50:40.191-0700 871072359342309457 h1GOiQk | motion#0902 +09:50:40.305-0700 871072370645954590 ydXlaVY | motion#6057 +09:50:40.395-0700 871072374383083541 9eHVsG8 | motion#1380 +09:50:40.447-0700 871072371535118387 UHp0U7c | motion#1825 +09:50:40.469-0700 871072373569364070 Oc7zmWc | motion#9083 +09:50:40.488-0700 871072372705349702 wAP8MTE | motion#8784 +09:50:40.499-0700 871072368905318471 Tf-miPg | motion#7019 +09:50:40.519-0700 871072369832230972 r_MLYr0 | motion#8279 +09:50:40.684-0700 871072369253437550 jd4To-I | motion#5340 +09:50:40.791-0700 871072373238018078 QUm4rKs | motion#6503 +09:50:40.816-0700 871072372717916243 DoZrPGo | motion#8227 +09:50:40.829-0700 871072372944437249 TaPQqLY | motion#8227 +09:50:40.865-0700 871072368611688508 qFWiwa8 | motion#7821 +09:50:40.894-0700 871072376916439092 2PgyGgI | motion#2618 +09:50:40.909-0700 871072363742134323 KGY767I | motion#4687 +09:50:40.916-0700 871072375448404009 RweHX28 | motion#3273 +09:50:40.964-0700 871072360751587329 l1f5AXs | motion#7571 +09:50:40.978-0700 871072374563434537 fVLZK0Q | motion#6846 +09:50:41.014-0700 871072332083494933 Hgn_Mgc | motion#3326 +09:50:41.048-0700 871072370780160050 sxc8xGc | motion#6272 +09:50:41.084-0700 871072372923465738 1hKj6yU | motion#4610 +09:50:41.091-0700 871072360655114281 h1_Spa4 | motion#7982 +09:50:41.121-0700 871072377679786005 aQ-D37Y | motion#8120 +09:50:41.132-0700 871072372218798151 SPkB0Qk | motion#9692 +09:50:41.307-0700 871072374550827028 HFSshi4 | motion#4361 +09:50:41.334-0700 871072334394568705 uDGQFLA | motion#5551 +09:50:41.358-0700 871072374089478194 2zN0eEY | motion#8794 +09:50:41.391-0700 871072376073367582 rQ_4wrY | motion#1399 +09:50:41.555-0700 871072363863760936 omcgNho | motion#7228 +09:50:41.617-0700 871072363414962176 E9ibYm0 | motion#2230 +09:50:41.631-0700 871072374479523842 7Pu4Xsg | motion#1239 +09:50:41.637-0700 871072373842014208 6575qOw | motion#1051 +09:50:41.687-0700 871072376887074827 SVuXj9Y | motion#1682 +09:50:41.734-0700 871072375637155951 eRMWrNU | motion#7244 +09:50:41.881-0700 871072377512009810 ZQ4WJuM | motion#1562 +09:50:41.882-0700 871072377931456522 9V2maaA | motion#6868 +09:50:41.954-0700 871072382863953981 nesHW5U | motion#5665 +09:50:42.050-0700 871072382033477632 oMXlJ68 | motion#6375 +09:50:42.091-0700 871072382918479942 KWglUqo | motion#4906 +09:50:42.115-0700 871072381052010496 w09Fhrc | motion#7112 +09:50:42.121-0700 871072381131694121 WI0osPY | motion#6622 +09:50:42.158-0700 871072378799669290 g20UGPk | motion#6264 +09:50:42.216-0700 871072376895451166 w-4GJ28 | motion#7225 +09:50:42.250-0700 871072376148852797 -kzVM18 | motion#8944 +09:50:42.252-0700 871072373837803593 2varnMU | motion#5099 +09:50:42.269-0700 871072379911147580 JtF8Rqk | motion#7878 +09:50:42.318-0700 871072383446966294 kjApf0c | motion#3751 +09:50:42.412-0700 871072370813698138 yFQvMTY | motion#7267 +09:50:42.491-0700 871072379906965554 ZE4zV1U | motion#9352 +09:50:42.677-0700 871072379529469972 iJgwd7E | motion#8375 +09:50:42.777-0700 871072380359946301 mgk_eBc | motion#0025 +09:50:42.798-0700 871072380531912705 SNy1xeA | motion#4800 +09:50:42.842-0700 871072379974066257 3I3Mf4U | motion#5968 +09:50:42.870-0700 871072379181367327 ot8wZ70 | motion#7231 +09:50:42.886-0700 871072372936024075 uQtBPp0 | motion#7768 +09:50:42.971-0700 871072379470749718 aU3IxlE | motion#5158 +09:50:43.049-0700 871072376371179590 AIqyWNY | motion#8835 +09:50:43.064-0700 871072379365908490 QczW9Is | motion#9980 +09:50:43.109-0700 871072386622058560 7_yfyMI | motion#8590 +09:50:43.118-0700 871072377440718879 Y4R7xy8 | motion#5514 +09:50:43.147-0700 871072368536195113 1abBiY0 | motion#6107 +09:50:43.167-0700 871072368943063080 TG5WlrE | motion#7977 +09:50:43.221-0700 871072384638136410 TNlv0Z0 | motion#0054 +09:50:43.326-0700 871072380775174254 WE4nV48 | motion#8029 +09:50:43.393-0700 871072382629052466 YPoBoDE | motion#0889 +09:50:43.420-0700 871072384818507788 4E3VIJQ | motion#7172 +09:50:43.470-0700 871072384642322472 xAEer40 | motion#9270 +09:50:43.546-0700 871072381978955796 cWLc5Ho | motion#4510 +09:50:43.606-0700 871072384256475136 qA_eI_w | motion#4880 +09:50:43.608-0700 871072386366193684 wWi0Pe8 | motion#2460 +09:50:43.633-0700 871072369278603324 ExxNJ7c | motion#8756 +09:50:43.656-0700 871072382431944784 v0AU7Ww | motion#9599 +09:50:43.686-0700 871072386965987389 cef4zbQ | motion#2647 +09:50:43.705-0700 871072385808363540 AMqPMnc | motion#2151 +09:50:43.769-0700 871072370213941303 ATS5EIE | motion#1937 +09:50:43.779-0700 871072388052291605 puRnu8o | motion#3836 +09:50:43.877-0700 871072371535138857 32j5TmE | motion#9043 +09:50:43.963-0700 871072387968413716 G1Y3CIM | motion#0423 +09:50:43.980-0700 871072374269829181 tTGXpgY | motion#0356 +09:50:44.037-0700 871072384822685797 UnVPOW4 | motion#0396 +09:50:44.037-0700 871072368628465735 rh87B6M | motion#5229 +09:50:44.076-0700 871072382520000542 VvZvNxQ | motion#3554 +09:50:44.114-0700 871072387511226388 Gs7Q-9U | motion#5616 +09:50:44.151-0700 871072372206239815 xvkRe6A | motion#5030 +09:50:44.228-0700 871072388824064111 lyG97TU | motion#7784 +09:50:44.242-0700 871072389302202390 IugZFaY | motion#9624 +09:50:44.325-0700 871072388014559263 _QLPw8I | motion#2731 +09:50:44.326-0700 871072387226017852 fpu4eT0 | motion#7291 +09:50:44.343-0700 871072384336142407 Q0_qTeA | motion#6932 +09:50:44.349-0700 871072383023349770 z2oAW24 | motion#2171 +09:50:44.392-0700 871072389524500512 SlrSLG8 | motion#7444 +09:50:44.403-0700 871072389599993946 O4YBhBY | motion#5056 +09:50:44.417-0700 871072387964235846 gwi4sAo | motion#8813 +09:50:44.437-0700 871072389012807700 g37f5Ks | motion#7269 +09:50:44.472-0700 871072375788146739 GJdyh2g | motion#7811 +09:50:44.475-0700 871072390090735646 U4C31UM | motion#1293 +09:50:44.634-0700 871072388702412830 3oKBXF0 | motion#3700 +09:50:44.690-0700 871072392083017738 2fsPQxI | motion#3138 +09:50:44.831-0700 871072394301812747 phxBZzw | motion#7827 +09:50:44.867-0700 871072373787467806 oKxxRug | motion#7359 +09:50:45.024-0700 871072380208939019 epkoutY | motion#5297 +09:50:45.033-0700 871072394909982721 F-_eIaM | motion#6670 +09:50:45.058-0700 871072393597157436 DXuBeeg | motion#9192 +09:50:45.074-0700 871072385925808150 7C2EyQA | motion#3561 +09:50:45.117-0700 871072387326677042 CO0Naq0 | motion#4299 +09:50:45.130-0700 871072394897403955 51Pxnpo | motion#4583 +09:50:45.157-0700 871072389226709083 86jP-7o | motion#8171 +09:50:45.161-0700 871072383358873642 hP_oCdw | motion#5971 +09:50:45.194-0700 871072382423539742 kylxb_M | motion#7358 +09:50:45.237-0700 871072390342385674 sGMN5h0 | motion#8987 +09:50:45.264-0700 871072390036213811 jqIF-58 | motion#6174 +09:50:45.280-0700 871072396868739092 09LINXI | motion#9924 +09:50:45.296-0700 871072395555930112 23enxg4 | motion#3078 +09:50:45.301-0700 871072379839844433 piIk4oM | motion#1499 +09:50:45.369-0700 871072395492995142 wpB6_co | motion#5127 +09:50:45.411-0700 871072392141758546 XTOHHl4 | motion#1109 +09:50:45.420-0700 871072397531447366 asvyI-w | motion#9552 +09:50:45.470-0700 871072395023224853 mwUuErU | motion#8748 +09:50:45.601-0700 871072386831769660 GNVrBNE | motion#6991 +09:50:45.615-0700 871072391919448094 7tQFQGk | motion#2294 +09:50:45.703-0700 871072395828535336 YELiKH8 | motion#7956 +09:50:45.734-0700 871072389100892280 C0uQqPI | motion#6812 +09:50:45.808-0700 871072398689042462 q_ujfdo | motion#2351 +09:50:45.829-0700 871072395761430609 Y7TgLJw | motion#2110 +09:50:45.834-0700 871072390879277067 _27GiBU | motion#8780 +09:50:45.888-0700 871072396533190747 SKNuXEY | motion#4224 +09:50:45.896-0700 871072390371737610 -Y5kSBg | motion#9213 +09:50:45.896-0700 871072394733830234 Zb0yR04 | motion#8311 +09:50:45.902-0700 871072395073560608 3hhQ_mc | motion#8147 +09:50:45.996-0700 871072393932718160 K322rHE | motion#6045 +09:50:46.087-0700 871072398542266368 Sf72mzI | motion#0792 +09:50:46.141-0700 871072394654138428 olDqrX0 | motion#1356 +09:50:46.205-0700 871072396067602482 b0nkwPA | motion#8713 +09:50:46.220-0700 871072398034739260 672UiDY | motion#8582 +09:50:46.221-0700 871072399318192180 Rt7qL1M | motion#8061 +09:50:46.249-0700 871072394310221924 93UMr2Y | motion#0582 +09:50:46.260-0700 871072383698604034 965STtY | motion#9198 +09:50:46.336-0700 871072383635697674 4TUbQIw | motion#6138 +09:50:46.420-0700 871072394469589022 LFkwLd4 | motion#2820 +09:50:46.422-0700 871072398928146494 WENkGAs | motion#2442 +09:50:46.428-0700 871072391986573342 JWx4nCM | motion#6587 +09:50:46.444-0700 871072394255679518 Hz49h6E | motion#3636 +09:50:46.472-0700 871072377067438182 Dm5F-O8 | motion#0815 +09:50:46.505-0700 871072397074235423 1MofAqY | motion#9473 +09:50:46.529-0700 871072395488792616 gatkkwA | motion#4419 +09:50:46.532-0700 871072396566741052 Uvt0qyA | motion#2600 +09:50:46.543-0700 871072398806482984 K9OWmBc | motion#7342 +09:50:46.571-0700 871072398097674330 M33nxTQ | motion#9381 +09:50:46.747-0700 871072384701071380 Kw5UjYI | motion#9798 +09:50:46.839-0700 871072400438067240 sL_tF-Q | motion#3416 +09:50:46.854-0700 871072389428035695 jVz5Sgs | motion#2773 +09:50:46.900-0700 871072402380062780 4M4D0fk | motion#7526 +09:50:46.957-0700 871072400840753192 os4xxi4 | motion#0342 +09:50:46.993-0700 871072400538734623 XhZt2m8 | motion#6644 +09:50:47.008-0700 871072403063726090 I8Uezlc | motion#4813 +09:50:47.048-0700 871072399754424331 3IN6EtE | motion#9196 +09:50:47.172-0700 871072400161251328 4vV4hZ8 | motion#4384 +09:50:47.215-0700 871072393890775090 56cGYAg | motion#0378 +09:50:47.276-0700 871072384063508500 i3_mUPQ | motion#4434 +09:50:47.330-0700 871072392892526682 habAhMk | motion#6149 +09:50:47.388-0700 871072402015133696 R5Q13iU | motion#0930 +09:50:47.424-0700 871072401994158080 EeA4cwY | motion#8611 +09:50:47.470-0700 871072391634247710 lva5et0 | motion#4038 +09:50:47.503-0700 871072399511154739 oOC0j9A | motion#9241 +09:50:47.521-0700 871072403172769894 fUCVkco | motion#3329 +09:50:47.551-0700 871072405567725618 iQOHtP8 | motion#1688 +09:50:47.621-0700 871072386995351603 TnYDbhM | motion#2652 +09:50:47.639-0700 871072396394778664 A_B9vZQ | motion#7407 +09:50:47.672-0700 871072401478262784 Z9wLD6k | motion#0542 +09:50:47.687-0700 871072402283569152 INeu8EI | motion#1062 +09:50:47.716-0700 871072403902566470 NtGFx-I | motion#5892 +09:50:47.742-0700 871072394247290880 zRIdk00 | motion#3874 +09:50:47.754-0700 871072404921798697 SpLQGSE | motion#4597 +09:50:47.787-0700 871072399729254470 CdI5Tno | motion#8163 +09:50:47.788-0700 871072403789344820 q6a-drA | motion#0869 +09:50:47.793-0700 871072404699500574 teppWfQ | motion#3005 +09:50:47.978-0700 871072402539425812 1KzJLPk | motion#1247 +09:50:48.015-0700 871072391638442064 p_tao1o | motion#4024 +09:50:48.213-0700 871072393559416832 bTiChoM | motion#4016 +09:50:48.223-0700 871072404896616479 8SILQpg | motion#8931 +09:50:48.256-0700 871072390162026526 leqzzWw | motion#0528 +09:50:48.292-0700 871072404389117982 d0utonc | motion#4818 +09:50:48.316-0700 871072402858197022 Zgx3-kE | motion#6277 +09:50:48.334-0700 871072391609081876 hnZviWA | motion#3812 +09:50:48.334-0700 871072402883354684 HXiNOAs | motion#3806 +09:50:48.353-0700 871072409145458749 QwMNI4A | motion#2078 +09:50:48.452-0700 871072409141260338 Y9F_P6o | motion#6826 +09:50:48.491-0700 871072400794591232 5CIQj4U | motion#1011 +09:50:48.588-0700 871072406360449094 DF7g28U | motion#6944 +09:50:48.623-0700 871072387062460477 SbfSIXY | motion#7079 +09:50:48.672-0700 871072388748574730 yWSR074 | motion#7372 +09:50:48.684-0700 871072386013888543 PIHeUEc | motion#9088 +09:50:48.687-0700 871072403571240990 XXAjDNs | motion#2350 +09:50:48.740-0700 871072410303086622 FXG7kR4 | motion#5101 +09:50:48.794-0700 871072409350983680 QiXgWc8 | motion#3454 +09:50:48.807-0700 871072409506168872 PnD23eo | motion#1405 +09:50:48.849-0700 871072401696391228 6lIsG3c | motion#5423 +09:50:48.872-0700 871072393131589713 flx2Vb8 | motion#6477 +09:50:48.944-0700 871072408457601094 FgLqxlI | motion#6010 +09:50:49.010-0700 871072407622914089 2tYlP-8 | motion#5181 +09:50:49.023-0700 871072408075919422 14rMcI0 | motion#8804 +09:50:49.023-0700 871072410152103956 _N7wCV4 | motion#0501 +09:50:49.023-0700 871072408667303996 c8B5jOc | motion#4102 +09:50:49.073-0700 871072411712368772 BCPHhhA | motion#7801 +09:50:49.087-0700 871072409892061214 Epk91L4 | motion#2070 +09:50:49.110-0700 871072399133646919 iAHHeI4 | motion#4911 +09:50:49.195-0700 871072412123402271 5G5uNo8 | motion#2738 +09:50:49.325-0700 871072408071721041 9uIcD_I | motion#8597 +09:50:49.328-0700 871072393936916481 Aqcirjk | motion#3806 +09:50:49.342-0700 871072408134631464 8ToZvvQ | motion#8993 +09:50:49.357-0700 871072398345109555 NmHVDbY | motion#7968 +09:50:49.358-0700 871072407081852951 Ov0ICcI | motion#4218 +09:50:49.434-0700 871072402866577429 7rSIXmA | motion#3255 +09:50:49.438-0700 871072411083243530 s0oZgsE | motion#7281 +09:50:49.445-0700 871072407920709692 Zxx9960 | motion#6333 +09:50:49.548-0700 871072411548782604 7GzdKTY | motion#8410 +09:50:49.578-0700 871072388660494347 hBg5R1o | motion#2681 +09:50:49.595-0700 871072410076581969 5fkOZ34 | motion#7803 +09:50:49.645-0700 871072411678810123 GjcgqCA | motion#2325 +09:50:49.647-0700 871072411406200882 Ycbkfw0 | motion#7590 +09:50:49.654-0700 871072411796254760 LTZUTfc | motion#1421 +09:50:49.654-0700 871072414136668261 LoPjwoc | motion#3141 +09:50:49.700-0700 871072415432716378 LXtCBdQ | motion#4498 +09:50:49.707-0700 871072397661442120 EyjnZGE | motion#3944 +09:50:49.749-0700 871072414207967303 R75wPbk | motion#9397 +09:50:49.767-0700 871072412022759435 csm_l3k | motion#1312 +09:50:49.826-0700 871072410626060349 x2vhwLE | motion#1031 +09:50:49.830-0700 871072410890297384 luwKAaM | motion#2804 +09:50:49.937-0700 871072415348822036 J1MRV_0 | motion#0353 +09:50:49.970-0700 871072412299567164 hKj0eFc | motion#7730 +09:50:49.971-0700 871072399284662323 fWeI-Oo | motion#8004 +09:50:50.129-0700 871072414623236126 9q889uc | motion#8846 +09:50:50.190-0700 871072412962258944 zHsJIIM | motion#9393 +09:50:50.203-0700 871072412530245642 RrVf_T0 | motion#0585 +09:50:50.268-0700 871072414715490305 VSKg6tY | motion#0972 +09:50:50.307-0700 871072414077968405 QQoEnDA | motion#3396 +09:50:50.387-0700 871072401696362506 fl_Vmxw | motion#7643 +09:50:50.411-0700 871072408323383296 gOtJ0lc | motion#3473 +09:50:50.494-0700 871072413985681469 M4DX3_I | motion#0930 +09:50:50.523-0700 871072415822794754 -7hBmJ4 | motion#7452 +09:50:50.547-0700 871072416804270080 DimuIjA | motion#3945 +09:50:50.561-0700 871072414652575825 -Ynvjo0 | motion#2368 +09:50:50.565-0700 871072414434488370 rthqC_E | motion#5028 +09:50:50.592-0700 871072415038447616 BXeZx34 | motion#3010 +09:50:50.593-0700 871072415193636944 jyOx6yA | motion#9997 +09:50:50.597-0700 871072414858108929 OBKJGj8 | motion#0922 +09:50:50.671-0700 871072401973182474 r8XGYtI | motion#0969 +09:50:50.679-0700 871072417026543626 z2Z6nJI | motion#4581 +09:50:50.688-0700 871072395270688800 td39Jow | motion#6714 +09:50:50.725-0700 871072398298984489 N9LajpI | motion#2262 +09:50:50.746-0700 871072417940910150 v_de8tQ | motion#1313 +09:50:50.780-0700 871072418964320296 PjSVjxc | motion#3836 +09:50:50.906-0700 871072417441775653 pwjHCcQ | motion#2743 +09:50:50.933-0700 871072418607820901 y6TpLzM | motion#2115 +09:50:51.110-0700 871072416816857099 U7K7Xno | motion#8112 +09:50:51.164-0700 871072414577090600 2smxtH4 | motion#8230 +09:50:51.246-0700 871072401738321950 gtYmEj4 | motion#7861 +09:50:51.261-0700 871072406859554847 c8rhbPk | motion#0741 +09:50:51.345-0700 871072417806688346 wqdsaHs | motion#9826 +09:50:51.345-0700 871072403185344513 VugvEJU | motion#6098 +09:50:51.402-0700 871072416699400222 Kq9wir8 | motion#3141 +09:50:51.534-0700 871072419056599110 t53P804 | motion#8523 +09:50:51.650-0700 871072413406871583 dFuoqig | motion#4901 +09:50:51.659-0700 871072418947534918 C1fdpAg | motion#0144 +09:50:51.660-0700 871072416196071465 pxqgFTo | motion#9440 +09:50:51.677-0700 871072404917600296 bKwPZGw | motion#6246 +09:50:51.683-0700 871072405412515890 0e_Ni08 | motion#2623 +09:50:51.728-0700 871072421719982140 9hpU2bM | motion#2437 +09:50:51.737-0700 871072417978658846 Dc-50UI | motion#6526 +09:50:51.750-0700 871072418003824650 zL45I_g | motion#5033 +09:50:51.884-0700 871072407979425842 NYpOvj8 | motion#6206 +09:50:51.950-0700 871072406394011658 _7hdMDI | motion#8470 +09:50:52.009-0700 871072421732577310 u7xhgts | motion#9948 +09:50:52.040-0700 871072420851765258 1uijRzA | motion#1902 +09:50:52.051-0700 871072419962556486 OaYGqek | motion#4943 +09:50:52.129-0700 871072418217726002 rW_nG-4 | motion#4063 +09:50:52.171-0700 871072421640282154 -WfpyXk | motion#9913 +09:50:52.181-0700 871072408117862404 MsTDme4 | motion#4269 +09:50:52.228-0700 871072422034567179 OEDLflU | motion#2674 +09:50:52.238-0700 871072421724172328 yM8wO4g | motion#9941 +09:50:52.285-0700 871072418679095417 PK36ayc | motion#0497 +09:50:52.290-0700 871072422189752440 6RAjj38 | motion#1323 +09:50:52.371-0700 871072420730130452 ztjcTd4 | motion#2241 +09:50:52.429-0700 871072422009384970 6L4J314 | motion#6878 +09:50:52.527-0700 871072420944023562 obP6d4s | motion#7413 +09:50:52.568-0700 871072414048595999 dH9mNmA | motion#3787 +09:50:52.787-0700 871072425612283995 23ezoaM | motion#3355 +09:50:52.835-0700 871072425163489322 Vmz2rzo | motion#1093 +09:50:52.912-0700 871072420038062121 h9cmmv8 | motion#0486 +09:50:52.920-0700 871072422831476796 rsL9HfA | motion#6738 +09:50:52.955-0700 871072424916041778 tMRN7AY | motion#8673 +09:50:53.010-0700 871072413557858304 d8jt6SM | motion#6112 +09:50:53.066-0700 871072413633347594 WmtAqvE | motion#7658 +09:50:53.068-0700 871072422852456518 RHHIjwE | motion#5264 +09:50:53.092-0700 871072412752576592 jVMEe3I | motion#1024 +09:50:53.177-0700 871072427491336282 ouy4t8Q | motion#3594 +09:50:53.213-0700 871072425427738655 ta3bbU4 | motion#9688 +09:50:53.272-0700 871072427868827738 nRV6XKk | motion#0073 +09:50:53.306-0700 871072424903446598 Bs8iLg0 | motion#6855 +09:50:53.370-0700 871072430028910723 qg4My88 | motion#8137 +09:50:53.392-0700 871072426564419624 p-_5_Hw | motion#7329 +09:50:53.424-0700 871072416183517195 JVOwmjQ | motion#1948 +09:50:53.496-0700 871072430859354122 Chm6SPo | motion#9395 +09:50:53.570-0700 871072410831568946 I27-u2w | motion#0182 +09:50:53.682-0700 871072430217646081 T8tAWLo | motion#3234 +09:50:53.714-0700 871072431215886396 kjCNXuw | motion#0695 +09:50:53.716-0700 871072430695800832 d20oLbo | motion#5765 +09:50:53.858-0700 871072430041473064 eKqKqF0 | motion#0395 +09:50:53.899-0700 871072426065268859 rAQR1kA | motion#7205 +09:50:53.959-0700 871072430033092669 YcwPUiw | motion#3469 +09:50:54.026-0700 871072428959359017 PR0gYCI | motion#2179 +09:50:54.123-0700 871072432771989524 H8IARkM | motion#3592 +09:50:54.193-0700 871072433162055781 jT2Wlsg | motion#9622 +09:50:54.223-0700 871072425813635082 F-pyeMo | motion#3817 +09:50:54.227-0700 871072417861222411 zy-EW7s | motion#6388 +09:50:54.276-0700 871072431480131625 0DrmRYI | motion#9610 +09:50:54.335-0700 871072421829034035 UDdGhbc | motion#7867 +09:50:54.374-0700 871072428745424997 mCYiiJs | motion#1723 +09:50:54.407-0700 871072426899947560 6mU0Z74 | motion#8256 +09:50:54.421-0700 871072431190712371 y1rInRI | motion#0186 +09:50:54.457-0700 871072415470460979 J9I6Rjo | motion#4471 +09:50:54.471-0700 871072430926462976 whSS7c8 | motion#9158 +09:50:54.495-0700 871072420017078272 nj_2zio | motion#0907 +09:50:54.520-0700 871072420851765249 EVqz2YQ | motion#0876 +09:50:54.550-0700 871072434164486156 s7eQyCk | motion#2181 +09:50:54.560-0700 871072426539221012 HgvOn1Y | motion#8248 +09:50:54.705-0700 871072432776167455 RmsGtbU | motion#9921 +09:50:54.805-0700 871072432474181643 e8ADXcY | motion#2862 +09:50:54.845-0700 871072424140079104 _Z3S_Yc | motion#0472 +09:50:54.863-0700 871072433292050452 _zxerU4 | motion#9736 +09:50:54.929-0700 871072422491734066 Mjl-IiU | motion#9810 +09:50:55.001-0700 871072432839082085 uxWfDJc | motion#4533 +09:50:55.041-0700 871072433434669106 DRqBsLQ | motion#8540 +09:50:55.046-0700 871072419882872853 oGPsbk4 | motion#0041 +09:50:55.119-0700 871072422584016928 lUDndpw | motion#4272 +09:50:55.127-0700 871072434390986832 RAzI7OM | motion#9400 +09:50:55.137-0700 871072434843971626 VozhyGw | motion#7500 +09:50:55.154-0700 871072433090740244 gJ6W6O4 | motion#3280 +09:50:55.162-0700 871072434885902367 duPHBa0 | motion#9634 +09:50:55.280-0700 871072438400720896 nEKjOv4 | motion#0745 +09:50:55.283-0700 871072435707994162 a3SoPng | motion#3203 +09:50:55.330-0700 871072434583920693 On5INC4 | motion#4838 +09:50:55.365-0700 871072422105858048 RMBvGb4 | motion#8960 +09:50:55.398-0700 871072435900936253 1Mmor90 | motion#9530 +09:50:55.422-0700 871072433153638410 4Xm7by0 | motion#9660 +09:50:55.464-0700 871072438220357723 nbGZN5Y | motion#0928 +09:50:55.486-0700 871072418968526919 SwBYeww | motion#4329 +09:50:55.513-0700 871072438056796190 6XLFGE4 | motion#5999 +09:50:55.544-0700 871072437071151174 MYlKqBI | motion#5187 +09:50:55.573-0700 871072434562945086 OCvF9tE | motion#5923 +09:50:55.601-0700 871072436681056256 laeE95Y | motion#6496 +09:50:55.636-0700 871072435858997300 iB--7Ws | motion#2828 +09:50:55.837-0700 871072435515043901 Wz_X5nk | motion#2515 +09:50:55.886-0700 871072440510472212 VyHX23A | motion#0323 +09:50:55.936-0700 871072424605655071 N1zunBk | motion#4247 +09:50:56.080-0700 871072437113065494 kbL2j3Y | motion#9885 +09:50:56.128-0700 871072437897420852 bteoYeI | motion#8503 +09:50:56.329-0700 871072438723690538 Y33QWBQ | motion#3053 +09:50:56.338-0700 871072436932714506 e_mCynM | motion#3278 +09:50:56.378-0700 871072435921883166 JAnmGKk | motion#6970 +09:50:56.422-0700 871072425926856715 I4xfSI8 | motion#4634 +09:50:56.428-0700 871072440191713364 xGMxVuU | motion#9706 +09:50:56.460-0700 871072442787954748 4cVDzxk | motion#4214 +09:50:56.545-0700 871072429508804609 kxG_DPs | motion#0274 +09:50:56.573-0700 871072443354210344 Qi2PMzY | motion#3107 +09:50:56.758-0700 871072442595045376 Jyprcu0 | motion#4770 +09:50:56.771-0700 871072445224849428 Pxabo2A | motion#9800 +09:50:56.778-0700 871072431488499752 6YvHFrI | motion#1952 +09:50:56.883-0700 871072442544689152 97gsI9Y | motion#8454 +09:50:56.930-0700 871072427323564063 qWk9B1U | motion#6119 +09:50:57.025-0700 871072439742894170 k5MhJsQ | motion#4725 +09:50:57.033-0700 871072442381107230 6eM34t8 | motion#5059 +09:50:57.181-0700 871072427097063424 _qRcRsg | motion#4906 +09:50:57.195-0700 871072440816656405 yF8KZJQ | motion#8463 +09:50:57.209-0700 871072441940738168 PgRVQQk | motion#7672 +09:50:57.222-0700 871072441361891378 iu6WpQE | motion#3168 +09:50:57.261-0700 871072440573382717 on9G6cE | motion#5994 +09:50:57.343-0700 871072444629278812 MzRftb8 | motion#0016 +09:50:57.405-0700 871072444998385704 toEAlsY | motion#5554 +09:50:57.468-0700 871072444981596192 x_hWkRM | motion#3166 +09:50:57.488-0700 871072443475820596 0FA2mkA | motion#4003 +09:50:57.513-0700 871072430603526214 Gazg7wA | motion#6023 +09:50:57.525-0700 871072427545866300 2uBAk88 | motion#8204 +09:50:57.561-0700 871072431371083797 2gTbpI8 | motion#7390 +09:50:57.629-0700 871072445237428265 aos0hiU | motion#9566 +09:50:57.632-0700 871072436869820506 8thddqI | motion#2642 +09:50:57.870-0700 871072444461486140 QASt6Fs | motion#0357 +09:50:57.948-0700 871072432012800011 nx_l82I | motion#4197 +09:50:57.954-0700 871072445602357279 ENGcvFs | motion#6225 +09:50:57.958-0700 871072444520230942 xvUKSdU | motion#6971 +09:50:57.980-0700 871072446189555722 LBP-Klk | motion#2281 +09:50:57.995-0700 871072407442575360 fL2s-FY | motion#5189 +09:50:58.045-0700 871072436928528385 c6wRxYQ | motion#6382 +09:50:58.204-0700 871072448215392296 5WRmVZk | motion#8691 +09:50:58.241-0700 871072447573688360 foxbWpI | motion#2750 +09:50:58.310-0700 871072449553399848 6ICm1Tk | motion#7467 +09:50:58.343-0700 871072449758908426 71W2F5Y | motion#2682 +09:50:58.419-0700 871072447435255920 cXykaCw | motion#3781 +09:50:58.502-0700 871072448051826729 eoXtKm0 | motion#8771 +09:50:58.519-0700 871072447871475772 A3DC1TM | motion#3421 +09:50:58.544-0700 871072450186715206 rCXDWkI | motion#9899 +09:50:58.607-0700 871072448353812550 k-s7uGs | motion#3850 +09:50:58.622-0700 871072452816568352 usukXDg | motion#5291 +09:50:58.622-0700 871072447179390996 5dZqvzA | motion#9216 +09:50:58.663-0700 871072449364652063 u7D3J80 | motion#3552 +09:50:58.683-0700 871072436509098065 1JchHE0 | motion#0097 +09:50:58.687-0700 871072448311873556 058pk3o | motion#7114 +09:50:58.742-0700 871072451705049138 DTYl0oA | motion#3999 +09:50:58.774-0700 871072449398190090 MN2QSSc | motion#7085 +09:50:58.828-0700 871072449503051788 LIwrCP8 | motion#8472 +09:50:58.858-0700 871072450924912760 UhYveec | motion#3095 +09:50:58.902-0700 871072450274791484 8VYvKJI | motion#0814 +09:50:59.034-0700 871072450090270771 HxBvPSo | motion#4747 +09:50:59.156-0700 871072437016604774 5qmXTng | motion#8583 +09:50:59.246-0700 871072450719416391 JoE4hKI | motion#6595 +09:50:59.293-0700 871072455781928991 07QoD9w | motion#6286 +09:50:59.429-0700 871072451583414362 8hqAl_o | motion#9077 +09:50:59.512-0700 871072451918975066 nJxPCE8 | motion#3533 +09:50:59.548-0700 871072454364242031 gpsO1Tk | motion#4130 +09:50:59.574-0700 871072453512802354 ocEfXfw | motion#2945 +09:50:59.623-0700 871072450526453791 rzC6Ee4 | motion#4568 +09:50:59.633-0700 871072451923165194 T897DaY | motion#0645 +09:50:59.638-0700 871072449964441601 6WOagqI | motion#7086 +09:50:59.658-0700 871072447653347368 waLRFL0 | motion#3681 +09:50:59.748-0700 871072448399945768 4OPXyqw | motion#3503 +09:50:59.828-0700 871072454968234014 soUofUk | motion#7326 +09:50:59.951-0700 871072452640403547 P89kPAs | motion#7834 +09:51:00.099-0700 871072444125937744 X9GKo9E | motion#9795 +09:51:00.114-0700 871072452694933516 9eZ3xEA | motion#2975 +09:51:00.119-0700 871072454410371093 GfTUiHA | motion#3990 +09:51:00.245-0700 871072450593579108 ifRbN00 | motion#7769 +09:51:00.326-0700 871072425301901343 mOJwwOs | motion#9639 +09:51:00.483-0700 871072455702224907 04dlb4I | motion#7046 +09:51:00.499-0700 871072456440447006 JK-zrZc | motion#2372 +09:51:00.503-0700 871072460018167849 bzUREA0 | motion#9644 +09:51:00.552-0700 871072460118851625 TfeY-zE | motion#1378 +09:51:00.590-0700 871072456624996412 XXH4_ic | motion#7882 +09:51:00.638-0700 871072457472245850 m_TSFG4 | motion#4542 +09:51:00.677-0700 871072460160770048 igQzbHY | motion#6598 +09:51:00.734-0700 871072460798304307 fYjvRAQ | motion#3014 +09:51:00.833-0700 871072456000024626 H6oVZ4U | motion#9843 +09:51:00.870-0700 871072458957025330 AcV-XME | motion#9320 +09:51:00.903-0700 871072456364920832 7Q4-_JE | motion#4466 +09:51:00.941-0700 871072458411745340 P22Zbos | motion#8355 +09:51:01.055-0700 871072457828761661 9oscGG0 | motion#2357 +09:51:01.057-0700 871072460718608405 iamJWJI | motion#7210 +09:51:01.090-0700 871072458332073986 zVioWcY | motion#7388 +09:51:01.128-0700 871072461758791770 rh6oBUU | motion#0320 +09:51:01.162-0700 871072461997871185 1ZbzJsw | motion#7978 +09:51:01.227-0700 871072445736550451 CiDdADk | motion#9750 +09:51:01.251-0700 871072459661668412 -tY9Yk8 | motion#8554 +09:51:01.311-0700 871072460747972719 rMWJOFk | motion#9753 +09:51:01.322-0700 871072446302789633 2upCEvo | motion#0791 +09:51:01.356-0700 871072459623903253 j-HcD5U | motion#5146 +09:51:01.358-0700 871072458835386379 ZH2UKT0 | motion#6958 +09:51:01.382-0700 871072456251670539 SjyoaZg | motion#9400 +09:51:01.438-0700 871072463025483828 rCgXZRY | motion#5843 +09:51:01.451-0700 871072463872741417 3BhnR8E | motion#6972 +09:51:01.460-0700 871072461783990272 HpvoQkQ | motion#1150 +09:51:01.463-0700 871072448286720020 1RhnIes | motion#5247 +09:51:01.476-0700 871072464162148372 ejt71hQ | motion#8346 +09:51:01.545-0700 871072445220655195 lTw-wp0 | motion#5248 +09:51:01.574-0700 871072452820746330 2i_4Vss | motion#0667 +09:51:01.618-0700 871072462597668896 Q8AQ6p4 | motion#6684 +09:51:01.673-0700 871072460156571861 kwUOcL0 | motion#0155 +09:51:01.702-0700 871072460169154661 XvgMWZQ | motion#2529 +09:51:01.737-0700 871072464938090527 1VbBxjQ | motion#0186 +09:51:01.787-0700 871072460685078548 g4cXMI8 | motion#0336 +09:51:01.791-0700 871072461565857844 -vqwAY8 | motion#6279 +09:51:01.841-0700 871072460471156746 _76IaK4 | motion#7775 +09:51:01.893-0700 871072450279006278 Ai9SYIU | motion#7048 +09:51:01.894-0700 871072461909819442 IFXlCrU | motion#4727 +09:51:01.919-0700 871072462622826576 5fD2dho | motion#3427 +09:51:01.927-0700 871072463231012914 0EwypOw | motion#6288 +09:51:01.932-0700 871072464673861652 kZQQPL4 | motion#2454 +09:51:02.020-0700 871072462652178472 VtMsoyM | motion#6532 +09:51:02.025-0700 871072459615526912 -JNUD8k | motion#4417 +09:51:02.118-0700 871072466892632065 k5rDUwg | motion#3980 +09:51:02.129-0700 871072465743405176 iMKeHwI | motion#7014 +09:51:02.179-0700 871072462622838814 yEev2Cc | motion#4566 +09:51:02.226-0700 871072453672173598 LnVje1E | motion#5816 +09:51:02.248-0700 871072464422207589 UBBQhfg | motion#7618 +09:51:02.263-0700 871072463562371102 vVZCMIM | motion#8319 +09:51:02.313-0700 871072465948905512 MaUbxkw | motion#8797 +09:51:02.385-0700 871072452929789993 AQ704GY | motion#0204 +09:51:02.405-0700 871072467962200094 -CA6FOA | motion#1681 +09:51:02.411-0700 871072450115411999 tB5HrM0 | motion#0368 +09:51:02.429-0700 871072465810518026 ii0mTYA | motion#8579 +09:51:02.451-0700 871072463650455562 kB41ZxA | motion#2780 +09:51:02.453-0700 871072465059733564 b2Q7qfQ | motion#8318 +09:51:02.460-0700 871072464699019304 sBAClBs | motion#6810 +09:51:02.465-0700 871072467706339388 a7YJKBc | motion#8337 +09:51:02.469-0700 871072464833220628 bR70pxA | motion#2077 +09:51:02.470-0700 871072468058652684 Lw9htp8 | motion#4707 +09:51:02.526-0700 871072458130726912 dbD2dEg | motion#2442 +09:51:02.536-0700 871072460433424405 ZN_fDys | motion#2898 +09:51:02.548-0700 871072468138348664 csg4MMo | motion#7957 +09:51:02.557-0700 871072469035933718 cv80QrM | motion#5105 +09:51:02.611-0700 871072469543432212 lGX4EHE | motion#7346 +09:51:02.640-0700 871072461666529310 wqRN814 | motion#5616 +09:51:02.663-0700 871072452392943667 ONTDAvM | motion#2481 +09:51:02.737-0700 871072468851380265 wO4Er58 | motion#6649 +09:51:02.744-0700 871072463730143232 Zf9JzIg | motion#3415 +09:51:02.776-0700 871072466313805856 0-cnSCA | motion#6473 +09:51:02.778-0700 871072469535031327 -FkwaqE | motion#0301 +09:51:02.807-0700 871072453332459562 V4MARHk | motion#3623 +09:51:02.816-0700 871072466225750026 qwQcu94 | motion#1099 +09:51:02.832-0700 871072468599734292 is6ghUU | motion#7981 +09:51:02.945-0700 871072446747389982 GdvlLQs | motion#6056 +09:51:03.017-0700 871072469715415110 Gxm4wCM | motion#3822 +09:51:03.037-0700 871072466452242462 SjmbaK4 | motion#7213 +09:51:03.099-0700 871072454993399869 zqcRkJA | motion#0413 +09:51:03.174-0700 871072464866803793 dTFbmOw | motion#2987 +09:51:03.204-0700 871072465818877973 hz1gick | motion#6856 +09:51:03.229-0700 871072468410986496 qU4IdqQ | motion#1300 +09:51:03.235-0700 871072463033872424 AiXm2es | motion#9384 +09:51:03.246-0700 871072466766802995 3mVrSOo | motion#1194 +09:51:03.261-0700 871072470696886322 ujzg8R4 | motion#7815 +09:51:03.366-0700 871072456708853760 F6hMG48 | motion#4171 +09:51:03.614-0700 871072468293542000 upuEcfM | motion#2603 +09:51:03.616-0700 871072468591345694 2b-puxU | motion#9576 +09:51:03.648-0700 871072473062461450 TplRBBw | motion#2965 +09:51:03.758-0700 871072467236573206 Dxk6xq0 | motion#4121 +09:51:03.850-0700 871072462044004354 z7D3jfQ | motion#5416 +09:51:03.877-0700 871072469283373098 73p4eNk | motion#7153 +09:51:03.893-0700 871072470495559721 Cqjxq8k | motion#7606 +09:51:04.083-0700 871072474090061854 VD_lWWE | motion#3774 +09:51:04.196-0700 871072467177857104 UqFUXns | motion#3119 +09:51:04.249-0700 871072475977515020 wZhWx7Y | motion#7223 +09:51:04.254-0700 871072475885228082 8p69FZ4 | motion#7077 +09:51:04.359-0700 871072468155121806 z4Nhlr8 | motion#6064 +09:51:04.373-0700 871072469908332584 n8ZE5Hg | motion#1139 +09:51:04.418-0700 871072476166246521 i3FgUD0 | motion#0751 +09:51:04.427-0700 871072472190054512 k-xgFbM | motion#3060 +09:51:04.445-0700 871072461691695145 6IW109g | motion#2309 +09:51:04.482-0700 871072476292059146 c6FXiOM | motion#2691 +09:51:04.502-0700 871072472714330173 5xEVfHc | motion#7915 +09:51:04.505-0700 871072476518563841 8B8cEKI | motion#4445 +09:51:04.512-0700 871072460676665404 23lzZcY | motion#1661 +09:51:04.548-0700 871072470088683560 I3KcGvs | motion#1254 +09:51:04.578-0700 871072470868832306 7d9upPQ | motion#2358 +09:51:04.587-0700 871072472949211157 HmXRAys | motion#4502 +09:51:04.597-0700 871072460118835280 KZjNN-E | motion#3836 +09:51:04.599-0700 871072472093589524 RdsK3v8 | motion#4339 +09:51:04.648-0700 871072464128598056 Fm9Quzo | motion#6987 +09:51:04.684-0700 871072473364434975 l8tBGx0 | motion#6140 +09:51:04.688-0700 871072474064908289 RUenuzw | motion#2418 +09:51:04.695-0700 871072475138646106 OgWqk_k | motion#6507 +09:51:04.719-0700 871072471250501643 H-4w8a8 | motion#4471 +09:51:04.789-0700 871072474438176829 NJlYmNE | motion#9213 +09:51:04.916-0700 871072462517985342 6W-17qo | motion#9935 +09:51:04.917-0700 871072463939833866 nGhlhEE | motion#2356 +09:51:05.119-0700 871072471728664638 kEo6wHQ | motion#0734 +09:51:05.135-0700 871072468167708712 UHuqphk | motion#9565 +09:51:05.161-0700 871072475646144533 Ih3gNVo | motion#9716 +09:51:05.172-0700 871072465856647198 kSjM3lI | motion#9486 +09:51:05.192-0700 871072477093183528 2Ij7qlM | motion#9669 +09:51:05.232-0700 871072478443741274 Bz5CYIU | motion#4694 +09:51:05.274-0700 871072462727675934 Y7kp5Lg | motion#0204 +09:51:05.290-0700 871072479697842246 QZIN-1Q | motion#9155 +09:51:05.295-0700 871072479962095626 rFMhRLU | motion#2468 +09:51:05.320-0700 871072478099832832 E3O123s | motion#7636 +09:51:05.343-0700 871072480138240002 knzEqzQ | motion#0033 +09:51:05.583-0700 871072477860753468 mVSAFKg | motion#3665 +09:51:05.611-0700 871072480758992926 dk1-yVo | motion#9767 +09:51:05.616-0700 871072480171802624 uYVp_oQ | motion#0193 +09:51:05.640-0700 871072477315489913 Hqj318w | motion#6949 +09:51:05.768-0700 871072480482193428 NdIQvdY | motion#1186 +09:51:05.843-0700 871072466292846632 Cblqv8s | motion#1848 +09:51:05.864-0700 871072480914206775 _yR_ZQg | motion#9863 +09:51:05.868-0700 871072479655886939 4rqQuKw | motion#3332 +09:51:05.918-0700 871072479014178856 CBO1BY8 | motion#2549 +09:51:05.919-0700 871072478439546910 cm8BDGM | motion#1051 +09:51:06.018-0700 871072468197072949 6T0_b-M | motion#1115 +09:51:06.085-0700 871072477982392420 KCJjBE8 | motion#9152 +09:51:06.109-0700 871072482587709470 l-P7CAA | motion#7195 +09:51:06.280-0700 871072468842979349 _hXRZAk | motion#2741 +09:51:06.283-0700 871072479093866558 DxokalE | motion#2492 +09:51:06.290-0700 871072480687702067 DGciOlI | motion#7373 +09:51:06.389-0700 871072479593001032 KX0XJJw | motion#3140 +09:51:06.459-0700 871072468645847060 xq6RUDU | motion#2441 +09:51:06.477-0700 871072479802687589 0xDJg1s | motion#7292 +09:51:06.528-0700 871072477583900702 iWkNmaw | motion#3771 +09:51:06.539-0700 871072481530769459 PnlFH90 | motion#7411 +09:51:06.554-0700 871072472907255869 TCUDISQ | motion#0078 +09:51:06.596-0700 871072484160577617 VbV-dbU | motion#6399 +09:51:06.615-0700 871072471917408337 nQMURHo | motion#7874 +09:51:06.617-0700 871072480033378325 8albr-k | motion#6150 +09:51:06.685-0700 871072485599240272 tcmDZSw | motion#1540 +09:51:06.739-0700 871072481371373628 jEDkVxo | motion#3962 +09:51:06.753-0700 871072483657285652 Fk5YY9E | motion#0618 +09:51:06.780-0700 871072483019718717 aomIYLk | motion#5383 +09:51:06.895-0700 871072487197249626 -wY-uD4 | motion#6122 +09:51:06.913-0700 871072486022860901 -90zR_Y | motion#6533 +09:51:06.949-0700 871072483141386291 z5T30g0 | motion#4297 +09:51:06.998-0700 871072472089391104 YDOnGIA | motion#3559 +09:51:07.036-0700 871072467421122581 5L4tm9I | motion#4205 +09:51:07.093-0700 871072483757932615 44DEOTI | motion#6552 +09:51:07.097-0700 871072471548317736 XtYPlP0 | motion#4139 +09:51:07.152-0700 871072488203907122 ifupthI | motion#5230 +09:51:07.193-0700 871072484550639667 ZMXqHTs | motion#9597 +09:51:07.250-0700 871072488598171688 ppGtiM4 | motion#4450 +09:51:07.261-0700 871072488791093268 AdcrAoE | motion#0341 +09:51:07.270-0700 871072488862388224 XL2WpCk | motion#4541 +09:51:07.353-0700 871072488564609065 dKG6V7M | motion#0092 +09:51:07.434-0700 871072486823952404 zjFuPA0 | motion#8211 +09:51:07.454-0700 871072470633951242 d5WPPfE | motion#0758 +09:51:07.489-0700 871072485293064243 sxwIFzY | motion#2073 +09:51:07.515-0700 871072483376259152 feUVug4 | motion#1347 +09:51:07.557-0700 871072474484314183 65gUaMQ | motion#7420 +09:51:07.632-0700 871072489416048660 OvK2LMY | motion#1981 +09:51:07.668-0700 871072485003649045 8Gm5lv8 | motion#0857 +09:51:07.671-0700 871072487557984307 Dh2HWwU | motion#0559 +09:51:07.727-0700 871072485938974720 4oPWYVA | motion#2928 +09:51:07.734-0700 871072469677658122 rC6eGIg | motion#0321 +09:51:07.773-0700 871072470340341760 w2-VTxE | motion#9805 +09:51:07.812-0700 871072486559744032 MQ9xpFs | motion#8457 +09:51:07.862-0700 871072487708954735 K0jqsmc | motion#8152 +09:51:07.917-0700 871072474303987802 QMmwBFA | motion#7115 +09:51:07.973-0700 871072485079142440 XIyuHIY | motion#0680 +09:51:08.033-0700 871072487163723787 1mcZpjI | motion#5229 +09:51:08.057-0700 871072476950593536 Gl15bcU | motion#1132 +09:51:08.062-0700 871072475771965450 UGN1E1c | motion#1253 +09:51:08.072-0700 871072475830685728 rM_qv8E | motion#8732 +09:51:08.084-0700 871072488963076136 lXaRMvo | motion#6847 +09:51:08.104-0700 871072483015524372 QeiHvxM | motion#1267 +09:51:08.197-0700 871072489890017310 YaGPQKA | motion#0147 +09:51:08.207-0700 871072492041682974 wkbAT0c | motion#0184 +09:51:08.221-0700 871072485519527998 KToMU0Y | motion#4703 +09:51:08.313-0700 871072492519829546 ZnEx0KU | motion#6284 +09:51:08.325-0700 871072489567060039 iF5RVRY | motion#1923 +09:51:08.468-0700 871072490326204456 134THRU | motion#5922 +09:51:08.573-0700 871072489269252137 L2JKQKA | motion#8377 +09:51:08.592-0700 871072492410781746 cMvJNsU | motion#3437 +09:51:08.620-0700 871072488233267212 uvM-QHk | motion#4628 +09:51:08.632-0700 871072493165764689 ve-WhB0 | motion#2902 +09:51:08.643-0700 871072488669450300 PpaJ-ok | motion#3181 +09:51:08.645-0700 871072489315381309 bgSJJTY | motion#1454 +09:51:08.707-0700 871072488568791162 Ck-fJ7Y | motion#3516 +09:51:08.722-0700 871072494117851146 K7I3E0U | motion#1899 +09:51:08.730-0700 871072491035058207 XKbhPVI | motion#5058 +09:51:08.747-0700 871072486555521044 gTiv_0U | motion#8938 +09:51:08.753-0700 871072494407266305 gFyz0Jk | motion#5345 +09:51:08.771-0700 871072492003938315 sJEXB7o | motion#2853 +09:51:08.772-0700 871072492725354516 UTefv54 | motion#3266 +09:51:08.812-0700 871072493379682304 Wb2GxwU | motion#9862 +09:51:08.881-0700 871072491668406363 0rB0FwQ | motion#4541 +09:51:08.883-0700 871072491966181447 PnJqlzU | motion#8630 +09:51:08.886-0700 871072490712080444 0unB_GE | motion#0668 +09:51:08.933-0700 871072477961392158 Rh0bHy4 | motion#7295 +09:51:08.953-0700 871072494931546164 GPUrDss | motion#1371 +09:51:08.982-0700 871072493190914048 PdCer88 | motion#7365 +09:51:09.012-0700 871072495220953089 m8cCVvE | motion#4735 +09:51:09.056-0700 871072479362301972 DcuORZE | motion#3670 +09:51:09.058-0700 871072492406603806 MfduwII | motion#0587 +09:51:09.148-0700 871072491144118362 DaPKPCA | motion#3740 +09:51:09.154-0700 871072495074168902 7Z32W50 | motion#7149 +09:51:09.172-0700 871072493773926400 V_A_kyg | motion#7419 +09:51:09.182-0700 871072492557586482 JGglFrI | motion#3314 +09:51:09.195-0700 871072497959849994 geTrNG4 | motion#0257 +09:51:09.205-0700 871072493069279254 j0QOm7I | motion#2552 +09:51:09.237-0700 871072493664866354 v99U6HM | motion#2544 +09:51:09.239-0700 871072494046568459 s3NleAQ | motion#7431 +09:51:09.261-0700 871072490842116126 VA6HR5k | motion#2720 +09:51:09.288-0700 871072488484900864 Iqey04E | motion#1698 +09:51:09.310-0700 871072494298206238 LyPe3GQ | motion#3643 +09:51:09.339-0700 871072488740769902 LVVpdTs | motion#9059 +09:51:09.494-0700 871072491618066432 tAnwXTQ | motion#6946 +09:51:09.519-0700 871072491899076648 -d0-Vqc | motion#3519 +09:51:09.541-0700 871072479370690640 Nu1hz9E | motion#2259 +09:51:09.570-0700 871072483267194910 3V-F1RE | motion#6836 +09:51:09.708-0700 871072495690743868 bVWHXNw | motion#1884 +09:51:09.724-0700 871072498177962074 FEqs4Qk | motion#2503 +09:51:09.807-0700 871072495929815110 w0tqea0 | motion#6450 +09:51:09.867-0700 871072494826717246 _7V8U2s | motion#1344 +09:51:09.884-0700 871072494923178004 lUnwUKM | motion#9771 +09:51:09.899-0700 871072500090568734 rZaIvQ0 | motion#8704 +09:51:09.915-0700 871072496642830386 3SDVvgg | motion#6724 +09:51:10.014-0700 871072496403759145 bdV29T8 | motion#2669 +09:51:10.047-0700 871072498932916315 APBz6Ks | motion#3429 +09:51:10.134-0700 871072497422979073 whSI2sc | motion#8809 +09:51:10.148-0700 871072469065293915 jg1vuKs | motion#8677 +09:51:10.159-0700 871072485523734578 ngQvIBQ | motion#3729 +09:51:10.178-0700 871072497943060552 GZD2DNA | motion#7917 +09:51:10.183-0700 871072495950790716 Ahibcsw | motion#8001 +09:51:10.207-0700 871072495200002070 cA3TNOA | motion#7358 +09:51:10.232-0700 871072486836568134 OPg4yTk | motion#9599 +09:51:10.312-0700 871072501403361360 V3eSLWs | motion#0079 +09:51:10.327-0700 871072498341515265 vFQAclQ | motion#4192 +09:51:10.329-0700 871072484584226847 vjSUyEw | motion#4798 +09:51:10.352-0700 871072488891777035 Jo1E7Kg | motion#1021 +09:51:10.376-0700 871072485355978844 cXthdMc | motion#8049 +09:51:10.444-0700 871072500530950145 OpBMPxE | motion#8077 +09:51:10.456-0700 871072496558936094 NmJHsqY | motion#6039 +09:51:10.497-0700 871072498526093353 XFSnW_E | motion#1601 +09:51:10.557-0700 871072500342226955 yOBLn0E | motion#1747 +09:51:10.600-0700 871072486207414403 p3e_iZU | motion#3425 +09:51:10.603-0700 871072502875586640 BKkeD-c | motion#9059 +09:51:10.614-0700 871072485565661225 YxmcpRo | motion#6573 +09:51:10.661-0700 871072499289436160 9mL6qI4 | motion#9216 +09:51:10.687-0700 871072496827375646 jxsx_o8 | motion#3104 +09:51:10.688-0700 871072498391863306 sfTlP-I | motion#9776 +09:51:10.689-0700 871072499734020138 ZGWPcAg | motion#2975 +09:51:10.801-0700 871072491576119368 Wf94yZc | motion#6156 +09:51:10.802-0700 871072502904930354 GbUCH0E | motion#5557 +09:51:10.805-0700 871072500593885194 slKdP1I | motion#3834 +09:51:10.927-0700 871072488254226432 bJIJz-U | motion#9916 +09:51:10.931-0700 871072499327205428 ZLdqqdw | motion#8979 +09:51:11.064-0700 871072487163723827 Su-erGs | motion#2965 +09:51:11.082-0700 871072494268866580 86CdptA | motion#1608 +09:51:11.082-0700 871072501520801862 VpVVaEg | motion#2528 +09:51:11.236-0700 871072503433400331 m19JwaM | motion#6186 +09:51:11.251-0700 871072461389697094 vz1oDlc | motion#9623 +09:51:11.298-0700 871072488111603722 La5Fkn4 | motion#8926 +09:51:11.325-0700 871072489357316096 8FgCq68 | motion#7883 +09:51:11.368-0700 871072504028987473 WzIgAEU | motion#5992 +09:51:11.434-0700 871072485557297172 xFrriMU | motion#5164 +09:51:11.456-0700 871072506520412210 oaL3KLg | motion#2148 +09:51:11.467-0700 871072504469405828 nV6-g98 | motion#0443 +09:51:11.528-0700 871072504322609173 QhGR9lg | motion#2562 +09:51:11.615-0700 871072505216004096 NKopWes | motion#3956 +09:51:11.615-0700 871072503622156380 cM5qTTw | motion#1053 +09:51:11.640-0700 871072506100998164 e3DaOp0 | motion#7375 +09:51:11.647-0700 871072502317731870 Z8_JwHQ | motion#6693 +09:51:11.779-0700 871072507518656513 _u3Hddg | motion#8710 +09:51:11.781-0700 871072503626362950 KgPofC0 | motion#0792 +09:51:11.791-0700 871072492083642430 pXK36hM | motion#2062 +09:51:11.883-0700 871072508705648690 4evl6e0 | motion#7159 +09:51:11.935-0700 871072505077587979 zIWdwn0 | motion#5317 +09:51:12.061-0700 871072495418105856 lFPrbjM | motion#8955 +09:51:12.088-0700 871072506788847696 Jaj1UVw | motion#0990 +09:51:12.131-0700 871072505685762138 BXGMc0U | motion#2753 +09:51:12.195-0700 871072505207586966 Bw2l-OA | motion#9899 +09:51:12.252-0700 871072506444910592 A7lX7r4 | motion#5070 +09:51:12.438-0700 871072505643802624 nxP-OUc | motion#0177 +09:51:12.460-0700 871072505069187102 ki0H_ss | motion#7604 +09:51:12.560-0700 871072508537884672 nn8DX3M | motion#8869 +09:51:12.567-0700 871072507011162112 gxttsiA | motion#3070 +09:51:12.710-0700 871072508160397342 -WsV4V8 | motion#6773 +09:51:12.718-0700 871072509003444284 VtzpwIM | motion#0558 +09:51:12.808-0700 871072511029313556 1sU-NZs | motion#1618 +09:51:12.859-0700 871072511666819133 zAkMdK0 | motion#7335 +09:51:12.895-0700 871072493388054578 WDPWIl4 | motion#2344 +09:51:13.019-0700 871072497406189618 mpdLiWM | motion#8605 +09:51:13.131-0700 871072510806986843 Gc1Bd8c | motion#0933 +09:51:13.319-0700 871072490892443660 pbIl_mM | motion#1441 +09:51:13.383-0700 871072510198808577 wgtxJzc | motion#1183 +09:51:13.416-0700 871072509380919316 wkeClNE | motion#9593 +09:51:13.416-0700 871072511482282024 U8oDX8s | motion#9694 +09:51:13.474-0700 871072514300866584 7hTkYqQ | motion#8119 +09:51:13.516-0700 871072509859102731 U-2FYPc | motion#5569 +09:51:13.575-0700 871072511301926982 66i92ws | motion#9832 +09:51:13.643-0700 871072495426502666 aGDM3oM | motion#4832 +09:51:13.680-0700 871072498115035176 t2k1z4I | motion#1855 +09:51:13.689-0700 871072509871673395 cFuMsOU | motion#2419 +09:51:13.781-0700 871072513931755530 hyOyF9o | motion#8873 +09:51:13.825-0700 871072515580112926 Fdqq4QU | motion#5778 +09:51:13.854-0700 871072508013592588 3rtN98w | motion#5489 +09:51:13.888-0700 871072516968448000 RWSPt7E | motion#4050 +09:51:13.954-0700 871072515802423367 F_pKwDg | motion#7439 +09:51:14.005-0700 871072514497990666 vsU1T2M | motion#7037 +09:51:14.023-0700 871072514594443285 ZzYVcR8 | motion#8081 +09:51:14.051-0700 871072501554348104 KlZJPuE | motion#0830 +09:51:14.108-0700 871072516133781545 IPJQTKc | motion#5546 +09:51:14.155-0700 871072499025186866 Vi-yfU8 | motion#6172 +09:51:14.189-0700 871072502015741983 R83ejaw | motion#2612 +09:51:14.243-0700 871072510429499472 RsEkklo | motion#6507 +09:51:14.254-0700 871072514439278663 _dQvHOM | motion#1669 +09:51:14.304-0700 871072517899583569 6PfT4-8 | motion#9491 +09:51:14.426-0700 871072514531524709 RBQM_Bg | motion#8676 +09:51:14.435-0700 871072500702916649 B_KrgkY | motion#5130 +09:51:14.438-0700 871072500077957120 u75YoFw | motion#5423 +09:51:14.441-0700 871072516590944286 SvzkBoI | motion#5179 +09:51:14.555-0700 871072519015239780 UVoYJ_8 | motion#2531 +09:51:14.620-0700 871072516980998184 95Age_E | motion#5738 +09:51:14.648-0700 871072502850420816 uQt6GRc | motion#5755 +09:51:14.661-0700 871072518000226344 t5hAa0g | motion#0413 +09:51:14.667-0700 871072515345248276 shI0T_4 | motion#9908 +09:51:14.706-0700 871072503651532811 PILhrdE | motion#2320 +09:51:14.713-0700 871072504305840228 R6wEpAg | motion#6213 +09:51:14.714-0700 871072503525695519 ehThVXY | motion#0861 +09:51:14.715-0700 871072504704278549 4LwY6Nk | motion#1841 +09:51:14.751-0700 871072513155792998 coojEJE | motion#6337 +09:51:14.760-0700 871072503034941480 dPzSwzI | motion#0031 +09:51:14.848-0700 871072517664698418 bR5QWN0 | motion#8530 +09:51:14.867-0700 871072519904444426 rSmWH78 | motion#8345 +09:51:14.870-0700 871072516096016405 outkQJw | motion#6628 +09:51:14.891-0700 871072511599706122 li-IVK0 | motion#5944 +09:51:15.038-0700 871072518381916181 bX3BYao | motion#9339 +09:51:15.049-0700 871072505224380507 z_V9vNw | motion#1562 +09:51:15.170-0700 871072519006855208 Zx9AeAc | motion#8877 +09:51:15.184-0700 871072518553866270 zQLYpXU | motion#4002 +09:51:15.210-0700 871072517702430771 ehJgkoE | motion#5002 +09:51:15.250-0700 871072516146360332 JO-BEb0 | motion#6674 +09:51:15.279-0700 871072520260952085 rA6LlzQ | motion#5965 +09:51:15.355-0700 871072521527636018 cLgiJT4 | motion#9282 +09:51:15.394-0700 871072516737757215 wmE_64o | motion#0294 +09:51:15.436-0700 871072516993585212 Rxb3jII | motion#7960 +09:51:15.440-0700 871072505618657280 36G1k7I | motion#7680 +09:51:15.483-0700 871072506100990042 3M0tPVU | motion#1496 +09:51:15.493-0700 871072516955856976 OwPFjQ0 | motion#9320 +09:51:15.512-0700 871072522521686086 pKIEc7g | motion#8926 +09:51:15.530-0700 871072515882111056 MW0CfbM | motion#1615 +09:51:15.552-0700 871072509125074945 JuihWNM | motion#9101 +09:51:15.647-0700 871072516158939146 dSC-26A | motion#5229 +09:51:15.649-0700 871072520349052998 cXfUcdA | motion#8667 +09:51:15.686-0700 871072522496528424 UpZtDBg | motion#7451 +09:51:15.742-0700 871072523448635432 7wiVptA | motion#9495 +09:51:15.757-0700 871072508730810408 0nU7HIQ | motion#7034 +09:51:15.765-0700 871072521456353353 RCU8dq0 | motion#4007 +09:51:15.844-0700 871072522668474409 yirtoIY | motion#0750 +09:51:15.912-0700 871072520487436289 9Md6qpI | motion#3268 +09:51:15.915-0700 871072516649681016 9_6BkbY | motion#7375 +09:51:15.930-0700 871072522265829476 QdNkgUY | motion#9977 +09:51:15.933-0700 871072516645486642 5SDu9eQ | motion#0915 +09:51:15.973-0700 871072520487440404 7pXxIHQ | motion#2763 +09:51:15.974-0700 871072525038260224 eJToatA | motion#9373 +09:51:16.152-0700 871072522920140800 uOdCXLc | motion#5240 +09:51:16.232-0700 871072523402498130 VtOk3TQ | motion#7741 +09:51:16.239-0700 871072524723683348 FABsFiM | motion#5563 +09:51:16.362-0700 871072509913612398 ei9ukzw | motion#7835 +09:51:16.381-0700 871072524946002011 kbNLVng | motion#2043 +09:51:16.395-0700 871072523012407357 rkK3NcE | motion#9322 +09:51:16.438-0700 871072523788386324 7VCybH8 | motion#1537 +09:51:16.446-0700 871072524237160459 vYlWHjk | motion#0843 +09:51:16.472-0700 871072527135428668 WRgIHJ4 | motion#2453 +09:51:16.496-0700 871072520877527122 2QwLITQ | motion#9077 +09:51:16.498-0700 871072521636687922 owG_DNc | motion#1367 +09:51:16.554-0700 871072519778598943 pvoBSJg | motion#9176 +09:51:16.556-0700 871072523196977162 oofrBPE | motion#3506 +09:51:16.563-0700 871072526632120360 u65PV6c | motion#6017 +09:51:16.568-0700 871072524140691486 KwqrmMM | motion#2543 +09:51:16.587-0700 871072522546868225 9cq6hlc | motion#3474 +09:51:16.603-0700 871072520860741643 uTx0CuI | motion#5718 +09:51:16.642-0700 871072521863180328 kmeNVnw | motion#8624 +09:51:16.646-0700 871072512665071626 Fx-Pp8Y | motion#3414 +09:51:16.648-0700 871072519560507432 s5pifOA | motion#0933 +09:51:16.663-0700 871072506885337229 N-XKNvY | motion#8730 +09:51:16.671-0700 871072524887289856 Sy7aX4M | motion#9926 +09:51:16.686-0700 871072493199294465 saurYe4 | motion#3632 +09:51:16.692-0700 871072520747515964 oS9SC94 | motion#0771 +09:51:16.702-0700 871072523670929428 P0NVCkk | motion#8793 +09:51:16.797-0700 871072523884822580 ylKFk04 | motion#1803 +09:51:16.857-0700 871072528796368948 0KAPTKo | motion#4725 +09:51:16.861-0700 871072528171434004 3dtdcJk | motion#7972 +09:51:16.872-0700 871072512048513075 ORR-tjA | motion#9613 +09:51:16.902-0700 871072528553103372 BZLPKUI | motion#0576 +09:51:16.910-0700 871072524224577596 lVVhzN0 | motion#6077 +09:51:16.915-0700 871072523234730054 dQwlUaM | motion#7444 +09:51:16.948-0700 871072527458369546 3e0I6QM | motion#7944 +09:51:16.986-0700 871072525268967455 0Y6b1fs | motion#8218 +09:51:17.000-0700 871072524627222620 jS471pE | motion#0538 +09:51:17.010-0700 871072514242125825 G0SLfkA | motion#1129 +09:51:17.063-0700 871072525084413972 ZmP-NhM | motion#9170 +09:51:17.099-0700 871072521858973706 mKVcAxU | motion#3689 +09:51:17.144-0700 871072513231310969 FkIY0z8 | motion#4768 +09:51:17.170-0700 871072513814302820 cn3-V60 | motion#6139 +09:51:17.210-0700 871072528746025010 hSP_SlQ | motion#4188 +09:51:17.264-0700 871072526577586218 7XRuVag | motion#8948 +09:51:17.321-0700 871072513571057704 LLkYUcM | motion#9648 +09:51:17.346-0700 871072523494768650 gK-0RQk | motion#3565 +09:51:17.349-0700 871072513457803284 wy5m3sM | motion#0962 +09:51:17.360-0700 871072514988720209 16DeMpI | motion#2054 +09:51:17.360-0700 871072527479365673 EFz_1P8 | motion#5330 +09:51:17.475-0700 871072530939654234 fXSc_cs | motion#4548 +09:51:17.513-0700 871072510861508669 MTXrQpk | motion#2348 +09:51:17.627-0700 871072521590538282 yOQEvRY | motion#6015 +09:51:17.634-0700 871072511155130448 nSFhhjU | motion#8131 +09:51:17.638-0700 871072528116908052 _NbZlOo | motion#5314 +09:51:17.644-0700 871072532231508038 lyhas2M | motion#5675 +09:51:17.648-0700 871072527177363488 nlo7eQY | motion#4153 +09:51:17.651-0700 871072515714351184 plMt_aU | motion#3543 +09:51:17.750-0700 871072529182228520 mxUsQDw | motion#5033 +09:51:17.760-0700 871072513910796338 iU2L7VM | motion#6628 +09:51:17.818-0700 871072529765249054 MkzjMJM | motion#2658 +09:51:17.847-0700 871072528175607868 KCYCuvE | motion#4456 +09:51:17.851-0700 871072517069086800 _wLKMms | motion#0700 +09:51:17.906-0700 871072531002581082 6VnB70M | motion#4480 +09:51:17.911-0700 871072530956435506 _m1vDDc | motion#2398 +09:51:17.928-0700 871072532403470376 2vKdqDU | motion#9902 +09:51:17.941-0700 871072529903652885 p1CR_-w | motion#9690 +09:51:17.964-0700 871072530646044673 wbL2cxw | motion#7612 +09:51:18.020-0700 871072531925327933 ge3AhI8 | motion#2122 +09:51:18.147-0700 871072531518476318 TW0rSkY | motion#1638 +09:51:18.192-0700 871072532608974909 ffBTYTA | motion#9079 +09:51:18.242-0700 871072528112681012 m1kfROA | motion#4246 +09:51:18.259-0700 871072531661094932 ORFWTPo | motion#2921 +09:51:18.293-0700 871072532374114325 T0vegp0 | motion#5574 +09:51:18.341-0700 871072532399284284 FTLiJ2I | motion#5394 +09:51:18.353-0700 871072534773235722 9oEq6sg | motion#8108 +09:51:18.469-0700 871072521548599386 FB9R5Yk | motion#2741 +09:51:18.500-0700 871072531120025651 MnBABVg | motion#1043 +09:51:18.507-0700 871072535033286686 vL85LQ0 | motion#8343 +09:51:18.608-0700 871072527751999488 ernYa_s | motion#5363 +09:51:18.733-0700 871072532764168212 BVkD518 | motion#6857 +09:51:18.763-0700 871072531094839326 LBiUc5w | motion#4133 +09:51:18.783-0700 871072531463929856 qdS8oNI | motion#6158 +09:51:18.801-0700 871072529425506385 nOZPI1A | motion#4958 +09:51:18.808-0700 871072532961304587 J8BLhyE | motion#4885 +09:51:18.814-0700 871072532722245632 XIyOhSc | motion#8245 +09:51:18.833-0700 871072527072493568 Y7tb9M0 | motion#6113 +09:51:18.837-0700 871072536572596245 QINcZnw | motion#4542 +09:51:18.861-0700 871072522202923119 _nJIzAE | motion#0431 +09:51:18.880-0700 871072531820453959 lPwfZ10 | motion#0458 +09:51:18.889-0700 871072524476239882 zwYwU0Y | motion#3462 +09:51:18.901-0700 871072534685167686 cU9cYhg | motion#1926 +09:51:18.929-0700 871072538241953823 z9LXu9E | motion#1930 +09:51:18.957-0700 871072534097977344 gXpR4BE | motion#7342 +09:51:18.970-0700 871072519635992587 Qml9JNA | motion#8200 +09:51:19.014-0700 871072532965490709 NYdBNn0 | motion#5833 +09:51:19.021-0700 871072532999053343 3nYQpQw | motion#8216 +09:51:19.042-0700 871072530880938065 a45Sq5E | motion#2218 +09:51:19.084-0700 871072534978781254 rYv0XZ4 | motion#0842 +09:51:19.090-0700 871072533665964033 QCKQHes | motion#3190 +09:51:19.126-0700 871072536123822081 NanIIpo | motion#8490 +09:51:19.134-0700 871072529085784124 XE6Gk_A | motion#4808 +09:51:19.139-0700 871072525239607306 eTjW6hY | motion#5473 +09:51:19.237-0700 871072533393309736 J3rB3qE | motion#6909 +09:51:19.272-0700 871072533925994516 9IdKtMU | motion#7232 +09:51:19.294-0700 871072532214714418 iVnTV2E | motion#4243 +09:51:19.304-0700 871072523280863243 jS8L9YM | motion#4976 +09:51:19.501-0700 871072537197576232 WBt_LLY | motion#7763 +09:51:19.539-0700 871072532848058398 fkwWmwg | motion#6147 +09:51:19.556-0700 871072522072883200 AebWOSs | motion#8879 +09:51:19.575-0700 871072510010093619 nXd18pw | motion#9169 +09:51:19.636-0700 871072535758909491 dfFfb90 | motion#6736 +09:51:19.779-0700 871072539500220467 CQndj7c | motion#6413 +09:51:19.894-0700 871072534727098508 L2UPhYs | motion#3229 +09:51:19.955-0700 871072520407769189 Ybvu8oc | motion#2419 +09:51:19.957-0700 871072525247987713 j1XBKU8 | motion#6355 +09:51:20.020-0700 871072525277339678 vQtWiFw | motion#2649 +09:51:20.020-0700 871072542167801886 yQzcE5U | motion#9422 +09:51:20.174-0700 871072541714841641 ErqahJM | motion#3220 +09:51:20.189-0700 871072542448828426 V6sVKVg | motion#2235 +09:51:20.219-0700 871072525759709204 aKyPq38 | motion#5879 +09:51:20.221-0700 871072533414289488 meG3dUg | motion#2259 +09:51:20.230-0700 871072538325823558 x62Le94 | motion#5808 +09:51:20.271-0700 871072540699799572 aay7VCI | motion#8905 +09:51:20.280-0700 871072542008422470 jctGsM0 | motion#4561 +09:51:20.304-0700 871072508084887554 Vvhi3eQ | motion#6688 +09:51:20.305-0700 871072539139518496 ciORFaA | motion#1205 +09:51:20.371-0700 871072536190922772 HLB_zUs | motion#7810 +09:51:20.385-0700 871072538371981372 Hocl8qY | motion#6987 +09:51:20.461-0700 871072526699220993 KpGS-80 | motion#3015 +09:51:20.471-0700 871072540729147452 rmolRVI | motion#0514 +09:51:20.474-0700 871072527202545695 RepwNeI | motion#3056 +09:51:20.523-0700 871072539839963216 pzF4nxI | motion#9072 +09:51:20.532-0700 871072527663911013 IvIbWYA | motion#7881 +09:51:20.563-0700 871072540758528030 ZQP11t4 | motion#7145 +09:51:20.701-0700 871072529593298965 99Sq9yg | motion#7734 +09:51:20.735-0700 871072524853710878 y2Alpj8 | motion#4304 +09:51:20.812-0700 871072542759198830 OUGZ4fg | motion#4755 +09:51:20.824-0700 871072541882613832 GKhox6Q | motion#2115 +09:51:20.828-0700 871072545586180116 AoJ0tNQ | motion#6034 +09:51:20.850-0700 871072541274439710 HssLoaQ | motion#2046 +09:51:20.885-0700 871072536694259752 gPyEouo | motion#6813 +09:51:20.995-0700 871072541719015464 O69lHYw | motion#9298 +09:51:20.998-0700 871072542796959875 R4HX8dQ | motion#8076 +09:51:21.098-0700 871072544818610236 QAThd9I | motion#6556 +09:51:21.147-0700 871072542604017704 zxSdd4w | motion#9613 +09:51:21.155-0700 871072529681371156 sO6yQho | motion#1745 +09:51:21.175-0700 871072542310404136 HLAzb6I | motion#9291 +09:51:21.191-0700 871072546307596308 Zh1H7-E | motion#5927 +09:51:21.211-0700 871072531220684902 0RPc0ms | motion#7499 +09:51:21.256-0700 871072546588598312 C7K55sM | motion#4411 +09:51:21.266-0700 871072544143331370 AA8OXKw | motion#2357 +09:51:21.283-0700 871072522827857940 zkfbBkY | motion#3810 +09:51:21.349-0700 871072534328655892 xqWLSwI | motion#5726 +09:51:21.443-0700 871072542725660692 aULVJQI | motion#6302 +09:51:21.502-0700 871072545665847357 lJG6vwo | motion#9716 +09:51:21.675-0700 871072547209355294 i8CHmuQ | motion#2322 +09:51:21.706-0700 871072544818626570 NFswCxg | motion#8689 +09:51:21.786-0700 871072541752561695 _tVM_k4 | motion#0222 +09:51:21.807-0700 871072531682045964 kwAo7gM | motion#8074 +09:51:21.906-0700 871072543791022081 -2SDG68 | motion#2084 +09:51:22.024-0700 871072546081099776 u8ePZ9M | motion#6618 +09:51:22.041-0700 871072532902592583 MZEVeoo | motion#1709 +09:51:22.084-0700 871072542889213953 MCjJKvI | motion#9299 +09:51:22.134-0700 871072547091923005 6CS5STc | motion#4713 +09:51:22.137-0700 871072529152901121 luGtNTU | motion#3497 +09:51:22.140-0700 871072548010463293 rw-LuPU | motion#0154 +09:51:22.155-0700 871072547062571008 kU75qKs | motion#5276 +09:51:22.165-0700 871072547893018664 3xoZm5c | motion#4898 +09:51:22.175-0700 871072547930792039 iyP6GsI | motion#2096 +09:51:22.226-0700 871072544977977454 q1mwhTI | motion#1459 +09:51:22.228-0700 871072543203790948 8BqHl4o | motion#4414 +09:51:22.248-0700 871072548497022976 a-GwiCI | motion#7991 +09:51:22.290-0700 871072546798329856 OW-s3uY | motion#7606 +09:51:22.327-0700 871072549566558238 ehBgwXU | motion#6413 +09:51:22.409-0700 871072547473608764 f7yFfXs | motion#0794 +09:51:22.424-0700 871072551063937035 geFw9ns | motion#2846 +09:51:22.474-0700 871072552599060511 MdDL5vw | motion#2589 +09:51:22.500-0700 871072547310039121 IG8-UvA | motion#1951 +09:51:22.598-0700 871072547498766367 BVNMt98 | motion#7783 +09:51:22.641-0700 871072546039169045 8-qdhJI | motion#9432 +09:51:22.678-0700 871072550078255187 GSZf6j8 | motion#3131 +09:51:22.693-0700 871072534639034449 rey-5cc | motion#6072 +09:51:22.767-0700 871072549667217480 s6tUho4 | motion#5179 +09:51:22.790-0700 871072553530171422 wbBbjis | motion#4442 +09:51:22.817-0700 871072550912921630 svsfa4E | motion#6724 +09:51:22.966-0700 871072551399473244 bxfDxe8 | motion#4071 +09:51:22.975-0700 871072539655426098 e4g3p2I | motion#8441 +09:51:23.074-0700 871072551063912451 L26Atp8 | motion#5484 +09:51:23.096-0700 871072554239008768 dSyIEN8 | motion#8538 +09:51:23.195-0700 871072551235891240 qihXXqI | motion#4199 +09:51:23.222-0700 871072555556020234 DXdNUgQ | motion#8933 +09:51:23.267-0700 871072551655313408 BzKYE0w | motion#9750 +09:51:23.334-0700 871072545128976495 Otlc0ow | motion#7227 +09:51:23.356-0700 871072543774228500 SQB3zCc | motion#4313 +09:51:23.358-0700 871072556084506625 Ezna1Yo | motion#3388 +09:51:23.386-0700 871072550770331698 KLnSi1k | motion#9589 +09:51:23.386-0700 871072549520425001 2xRX68Y | motion#5406 +09:51:23.398-0700 871072526355288084 Hc-8Qng | motion#9619 +09:51:23.399-0700 871072534492233769 pyYnmv8 | motion#5893 +09:51:23.400-0700 871072549562359818 PkqWKtU | motion#3269 +09:51:23.422-0700 871072554754904115 7kLYsQE | motion#6624 +09:51:23.447-0700 871072553748299807 Z6DUDsY | motion#7029 +09:51:23.486-0700 871072542541115472 SlIpY_s | motion#2098 +09:51:23.611-0700 871072522622357556 4aHOj-E | motion#0840 +09:51:23.644-0700 871072557674147900 q2Bl1PE | motion#4048 +09:51:23.668-0700 871072541026971708 rZrg1cY | motion#9697 +09:51:23.712-0700 871072545779101696 AhCT0uA | motion#5633 +09:51:23.748-0700 871072551604977705 bGaNcMA | motion#8800 +09:51:23.787-0700 871072554675220570 9PGXeeQ | motion#1539 +09:51:23.806-0700 871072538107711488 OvwV87E | motion#0444 +09:51:23.880-0700 871072539596709929 SW9V1Zg | motion#8281 +09:51:23.952-0700 871072555182743572 6W5zgjY | motion#5693 +09:51:24.074-0700 871072558781452328 RKApgGs | motion#1999 +09:51:24.107-0700 871072541920358450 e-jS8Jw | motion#5260 +09:51:24.237-0700 871072558244577311 hi8vUr4 | motion#4731 +09:51:24.461-0700 871072538053181440 XFwNHSc | motion#6591 +09:51:24.469-0700 871072543660998657 CwppmyA | motion#2111 +09:51:24.478-0700 871072560568225792 Iu2VKrI | motion#1353 +09:51:24.505-0700 871072556143214642 3gxlWeQ | motion#1571 +09:51:24.521-0700 871072560534675478 L4TmkYo | motion#2039 +09:51:24.539-0700 871072553186259014 1ztchDA | motion#4163 +09:51:24.560-0700 871072555912536104 B046Uns | motion#5089 +09:51:24.639-0700 871072557837725696 oSK3L1Y | motion#9317 +09:51:24.649-0700 871072554184495154 bzC-2r8 | motion#4454 +09:51:24.752-0700 871072544730533910 zZcn-eQ | motion#0049 +09:51:24.785-0700 871072557489618955 md2w6e4 | motion#0908 +09:51:24.818-0700 871072546471182366 Ap5XrcE | motion#9142 +09:51:24.855-0700 871072560308178944 sBkJd04 | motion#4256 +09:51:24.907-0700 871072559737765939 XE-cW0g | motion#4572 +09:51:24.980-0700 871072558194258011 VaEi77I | motion#4979 +09:51:25.002-0700 871072546735390741 9hKnjDM | motion#0778 +09:51:25.043-0700 871072562908659763 Ta1tIhY | motion#7207 +09:51:25.045-0700 871072563923669012 NrixBjE | motion#9140 +09:51:25.046-0700 871072558169096192 Fqu6j7U | motion#0593 +09:51:25.058-0700 871072558533972089 rE2W1rI | motion#4588 +09:51:25.083-0700 871072560815685713 eCfTU0c | motion#2837 +09:51:25.093-0700 871072555086254131 6aibUq8 | motion#7171 +09:51:25.157-0700 871072560249458759 hDJpGzI | motion#5343 +09:51:25.189-0700 871072564284375052 mEMCGuE | motion#7011 +09:51:25.192-0700 871072562438864996 qNU8kxw | motion#3060 +09:51:25.192-0700 871072561973305426 Epz3Vws | motion#2044 +09:51:25.337-0700 871072561633579058 5VuxBF4 | motion#9103 +09:51:25.458-0700 871072562157850726 Dx4Y66A | motion#1941 +09:51:25.463-0700 871072563516817438 1JXrUtE | motion#8924 +09:51:25.513-0700 871072562141098024 APgzZ5A | motion#9940 +09:51:25.515-0700 871072560408838195 SL5qLvM | motion#1065 +09:51:25.580-0700 871072558236180561 bzc2E_w | motion#0896 +09:51:25.641-0700 871072565815312385 hGlac_0 | motion#5906 +09:51:25.806-0700 871072550971658280 kxthrCQ | motion#1981 +09:51:25.905-0700 871072566608035931 kZWREPo | motion#2435 +09:51:26.038-0700 871072560287199263 mOhtgFA | motion#7744 +09:51:26.069-0700 871072567157465129 X6z4Exw | motion#0379 +09:51:26.070-0700 871072547331002410 ckV0Wws | motion#5549 +09:51:26.086-0700 871072564628324373 ZIY_hc0 | motion#8993 +09:51:26.200-0700 871072563852353566 uEWPpuw | motion#8606 +09:51:26.203-0700 871072560673067038 m3dczDE | motion#8352 +09:51:26.354-0700 871072567132303380 lFyBCUY | motion#0322 +09:51:26.504-0700 871072567778238566 pGDllO8 | motion#1332 +09:51:26.643-0700 871072552682917919 DHeuing | motion#6797 +09:51:26.692-0700 871072565861429279 dFxyiWM | motion#3109 +09:51:26.718-0700 871072554868166686 RJ_a_qg | motion#2726 +09:51:26.747-0700 871072569070059530 uZIrgfI | motion#8503 +09:51:26.750-0700 871072560828252161 8etCBIQ | motion#8823 +09:51:26.793-0700 871072556902391818 UrDFi-Q | motion#6875 +09:51:26.813-0700 871072567815983134 N5qOtg8 | motion#5731 +09:51:26.848-0700 871072569942491217 RF-yfV4 | motion#1270 +09:51:26.913-0700 871072560949891112 TuwWf2g | motion#4846 +09:51:26.976-0700 871072556764004395 j-10t5g | motion#1153 +09:51:27.002-0700 871072566633189456 lDXgb4Y | motion#2521 +09:51:27.115-0700 871072568801624094 qYuxuxw | motion#8496 +09:51:27.126-0700 871072552053801040 H7KLSuI | motion#6931 +09:51:27.147-0700 871072548195020830 Djlh-Tk | motion#3790 +09:51:27.170-0700 871072553270149200 uGGjM3c | motion#6846 +09:51:27.178-0700 871072570093482034 zLkdVYo | motion#1390 +09:51:27.200-0700 871072565894971402 yLMA75s | motion#1457 +09:51:27.208-0700 871072557204377671 PdNZKWw | motion#8029 +09:51:27.241-0700 871072555618947123 KKLzcao | motion#6022 +09:51:27.275-0700 871072565924360212 Nz9qGbk | motion#6208 +09:51:27.398-0700 871072567295901706 knZyliE | motion#1828 +09:51:27.453-0700 871072569187524720 csgJaM0 | motion#8226 +09:51:27.490-0700 871072555342102528 0p5tWQQ | motion#2548 +09:51:27.533-0700 871072567962767401 TTep7Mc | motion#5295 +09:51:27.587-0700 871072568222834718 p9X2TKU | motion#2957 +09:51:27.633-0700 871072558320066650 wXxEYzw | motion#0945 +09:51:27.645-0700 871072565353922570 d9zC3hg | motion#1314 +09:51:27.900-0700 871072567702720562 GNhfcnM | motion#5097 +09:51:27.952-0700 871072569455964191 Zm0zf-8 | motion#9173 +09:51:28.024-0700 871072573067235339 iIGkidc | motion#7962 +09:51:28.033-0700 871072565492334642 esWCCug | motion#4180 +09:51:28.041-0700 871072569690828831 d4JSISU | motion#6140 +09:51:28.051-0700 871072560152989717 WAbTUSA | motion#2809 +09:51:28.084-0700 871072570731020308 -bNQwr8 | motion#9113 +09:51:28.118-0700 871072559662256128 71bLk3E | motion#7006 +09:51:28.120-0700 871072571746058311 DnrnDGQ | motion#5739 +09:51:28.123-0700 871072572094173224 iciIjM8 | motion#9502 +09:51:28.125-0700 871072558244569088 JK7TjXY | motion#1251 +09:51:28.332-0700 871072567975362620 -RL9JZM | motion#9184 +09:51:28.373-0700 871072559989395476 hsNL37Q | motion#9534 +09:51:28.460-0700 871072577269940225 bmhf7gw | motion#6602 +09:51:28.507-0700 871072559649660929 HLqrtm4 | motion#6525 +09:51:28.519-0700 871072572098379787 8CFR_CE | motion#8626 +09:51:28.547-0700 871072570357743627 nRTddeY | motion#1508 +09:51:28.607-0700 871072572505219083 hPveLnM | motion#1866 +09:51:28.635-0700 871072565190332416 t9MSnUc | motion#1933 +09:51:28.694-0700 871072564573765642 IWAvZts | motion#1046 +09:51:28.716-0700 871072573411176458 46oAUz0 | motion#8319 +09:51:28.718-0700 871072565848862810 fIi1Pyk | motion#4536 +09:51:28.757-0700 871072576162639872 97V1bEA | motion#0261 +09:51:28.776-0700 871072573818032199 d0JD4iA | motion#9339 +09:51:28.823-0700 871072574581403712 WV3ZgSc | motion#2123 +09:51:28.894-0700 871072576380764223 zCTeMME | motion#3809 +09:51:28.966-0700 871072579455164426 tl6nhe0 | motion#7041 +09:51:28.967-0700 871072575512530954 Py7qiHQ | motion#9288 +09:51:28.988-0700 871072560622751804 N_lAXpA | motion#6193 +09:51:28.990-0700 871072579287384144 BvwkwOU | motion#4421 +09:51:29.044-0700 871072580000415774 pZLFGD4 | motion#4211 +09:51:29.080-0700 871072557607043082 Of6ZzLU | motion#9227 +09:51:29.138-0700 871072579979448320 KRHre-I | motion#5889 +09:51:29.158-0700 871072575504125993 IUxYehY | motion#8255 +09:51:29.203-0700 871072579073474682 qpx5xVU | motion#4127 +09:51:29.204-0700 871072578259783760 oNTZq3U | motion#7272 +09:51:29.220-0700 871072579794915428 XM-i0Yw | motion#0886 +09:51:29.296-0700 871072574006784031 xHgp4ec | motion#3656 +09:51:29.300-0700 871072581262925865 EGRrWEg | motion#9694 +09:51:29.302-0700 871072580310794281 eAmAwgA | motion#8683 +09:51:29.305-0700 871072553794437180 8zKhW_A | motion#6872 +09:51:29.309-0700 871072562023657553 APTJgXs | motion#0835 +09:51:29.313-0700 871072562933809203 1RfxEZk | motion#0361 +09:51:29.316-0700 871072570278031401 ZSLcD5s | motion#2247 +09:51:29.341-0700 871072577123131422 njcr7Oo | motion#2592 +09:51:29.410-0700 871072575642537984 mIIeD-M | motion#8461 +09:51:29.452-0700 871072577739698257 FE-TyHA | motion#9906 +09:51:29.521-0700 871072563281924159 Tn-xcuk | motion#3529 +09:51:29.521-0700 871072564892536872 dJSlGbg | motion#7838 +09:51:29.524-0700 871072566167629915 0nV_tZg | motion#2865 +09:51:29.530-0700 871072575869046894 SRdzxI4 | motion#4298 +09:51:29.604-0700 871072565462986783 vxAazqg | motion#8170 +09:51:29.636-0700 871072577378975784 l6cb7Ho | motion#0112 +09:51:29.712-0700 871072579681673226 AcD1Bbo | motion#2037 +09:51:29.712-0700 871072580948357160 6zcAXh8 | motion#2241 +09:51:29.723-0700 871072581309038662 yksHGJg | motion#3299 +09:51:29.750-0700 871072576112328766 enIwqJ4 | motion#3769 +09:51:29.754-0700 871072576183611503 Mf-BD_U | motion#5243 +09:51:29.763-0700 871072566708682783 5WqxBro | motion#7265 +09:51:29.799-0700 871072579769729025 xaLumgU | motion#6442 +09:51:29.807-0700 871072579266416650 L6l6oC4 | motion#8385 +09:51:29.895-0700 871072578435960892 Z0Y2y0Y | motion#0393 +09:51:30.012-0700 871072577353830471 X7o_WQs | motion#0470 +09:51:30.047-0700 871072580243701811 GAvCjJ8 | motion#9613 +09:51:30.097-0700 871072584182140978 2r8cTKI | motion#5584 +09:51:30.097-0700 871072580533125130 Rzzefwg | motion#3138 +09:51:30.128-0700 871072580038180884 MjUCj7k | motion#4783 +09:51:30.128-0700 871072581879484447 RlVN5Rc | motion#6695 +09:51:30.142-0700 871072577555169320 UmDWNO4 | motion#3648 +09:51:30.144-0700 871072583846625300 GN6O5wo | motion#9805 +09:51:30.151-0700 871072583083249725 sER_gew | motion#3686 +09:51:30.153-0700 871072571351785482 aGshLZ4 | motion#5151 +09:51:30.162-0700 871072571456618526 M4N9gYA | motion#6427 +09:51:30.181-0700 871072574652686386 SQeP3T8 | motion#2353 +09:51:30.186-0700 871072585213964369 1Tgm7XE | motion#8817 +09:51:30.189-0700 871072582470877234 iMu1s5s | motion#1278 +09:51:30.194-0700 871072579161559110 Zi77Y30 | motion#7273 +09:51:30.240-0700 871072568096989224 X9Y6e9k | motion#0106 +09:51:30.258-0700 871072580679913532 jG_Nu9E | motion#5310 +09:51:30.265-0700 871072581468454953 gRW-llU | motion#0996 +09:51:30.271-0700 871072584601583636 Z2FJlwM | motion#4790 +09:51:30.348-0700 871072568981991424 ysnYg6s | motion#2794 +09:51:30.390-0700 871072568071819295 -z3xkLA | motion#1268 +09:51:30.404-0700 871072580226928781 ZQfRN3s | motion#4483 +09:51:30.539-0700 871072577706151976 r4hNbL4 | motion#3379 +09:51:30.569-0700 871072583930494998 OSU1ucQ | motion#7818 +09:51:30.600-0700 871072585419472986 JUfKdiQ | motion#8247 +09:51:30.683-0700 871072587185270885 ne08qBU | motion#0123 +09:51:30.698-0700 871072551663722540 kn2F_CM | motion#4265 +09:51:30.745-0700 871072582475055134 GYe4VGk | motion#0177 +09:51:30.807-0700 871072584635142234 zztzk7U | motion#4165 +09:51:30.812-0700 871072583670440016 LMWdRlU | motion#5333 +09:51:30.817-0700 871072583443947521 ZuZm_VA | motion#5823 +09:51:30.921-0700 871072583959838740 VLAyTio | motion#3613 +09:51:30.928-0700 871072572362596473 LNP1EWo | motion#2229 +09:51:30.956-0700 871072563458093086 qmRMNIY | motion#4413 +09:51:30.991-0700 871072581250322453 9VjII1E | motion#3889 +09:51:31.195-0700 871072588636491867 eJr4CAw | motion#6309 +09:51:31.420-0700 871072569992826920 Gx8clpk | motion#1879 +09:51:31.458-0700 871072583481712640 AAfFgig | motion#4771 +09:51:31.460-0700 871072590129676350 QUYYhF8 | motion#9482 +09:51:31.551-0700 871072583917903942 GSoZ52w | motion#6376 +09:51:31.600-0700 871072587839586334 mFP0-cc | motion#9650 +09:51:31.744-0700 871072588003151912 U6LtcgE | motion#6490 +09:51:31.762-0700 871072583427162112 2Q7t2Mo | motion#3274 +09:51:31.935-0700 871072588632297492 6PH8io0 | motion#4267 +09:51:31.941-0700 871072587269144576 Pr9d_7k | motion#5915 +09:51:31.971-0700 871072588028321793 Ww459pU | motion#9499 +09:51:32.070-0700 871072589722816542 ineAx8g | motion#3629 +09:51:32.116-0700 871072576116502549 kSJQf-0 | motion#9416 +09:51:32.223-0700 871072588896538636 vXAUZ1g | motion#9698 +09:51:32.224-0700 871072588766539806 3KLmfCI | motion#9903 +09:51:32.238-0700 871072592348459008 16f8AMI | motion#0104 +09:51:32.262-0700 871072591589310534 Ce05abM | motion#1109 +09:51:32.267-0700 871072590230331434 D6cmrrI | motion#2742 +09:51:32.383-0700 871072593074065458 FArW068 | motion#0880 +09:51:32.402-0700 871072584618369054 iyX8Hpc | motion#7056 +09:51:32.547-0700 871072592453316640 E21oBFE | motion#3122 +09:51:32.601-0700 871072593191518279 pFKx5Tc | motion#9053 +09:51:32.623-0700 871072590070964284 QD7Y_m8 | motion#3081 +09:51:32.669-0700 871072581661392896 PPxY7Go | motion#8201 +09:51:32.675-0700 871072594307219457 MESGVIo | motion#8911 +09:51:32.683-0700 871072594047172608 kCyVTI4 | motion#9095 +09:51:32.693-0700 871072590888841256 49xeolM | motion#8293 +09:51:32.706-0700 871072587269152888 kaxkdRk | motion#0625 +09:51:32.745-0700 871072592147136543 5zIB1Uw | motion#1669 +09:51:32.821-0700 871072572341645344 7_YilXs | motion#1396 +09:51:32.937-0700 871072591840960522 355d9aM | motion#4112 +09:51:32.943-0700 871072591845138502 8yumdAM | motion#2346 +09:51:32.948-0700 871072575445434420 JdFLQEo | motion#3337 +09:51:32.955-0700 871072590712692736 lpC7UY8 | motion#9386 +09:51:32.957-0700 871072579690041355 VG9CtWg | motion#9483 +09:51:32.995-0700 871072590188388423 -NyAWsk | motion#8591 +09:51:33.015-0700 871072588607152168 btW_M9U | motion#5310 +09:51:33.043-0700 871072591815786517 lxNvKcA | motion#4615 +09:51:33.074-0700 871072592444932186 WB3ixho | motion#3885 +09:51:33.089-0700 871072595225755649 jLvJoBw | motion#7319 +09:51:33.174-0700 871072591559942184 3esFM4Q | motion#0244 +09:51:33.209-0700 871072578251391067 7oFMJjU | motion#1660 +09:51:33.213-0700 871072592155537438 OBI66n8 | motion#7418 +09:51:33.229-0700 871072591547351050 MWz1Q1I | motion#1040 +09:51:33.387-0700 871072581942394940 KOdpik0 | motion#5391 +09:51:33.459-0700 871072590700118046 9hH5ssg | motion#4052 +09:51:33.469-0700 871072591270518805 HiUh8ng | motion#6069 +09:51:33.618-0700 871072592067448854 m7zMbeM | motion#0288 +09:51:33.660-0700 871072594957307954 PMIViDA | motion#1864 +09:51:33.665-0700 871072596370808912 -kKXLIs | motion#2716 +09:51:33.699-0700 871072594340769892 p9wSCus | motion#4406 +09:51:33.706-0700 871072582844174357 0FIkgY8 | motion#9550 +09:51:33.786-0700 871072593657094184 JqLqKBk | motion#7950 +09:51:33.837-0700 871072591161462834 TjfdYk8 | motion#5882 +09:51:33.858-0700 871072567547560026 ETgTgFk | motion#0019 +09:51:33.890-0700 871072595934605372 1KZn7Jg | motion#1613 +09:51:33.938-0700 871072598547644466 KHijWDk | motion#7615 +09:51:33.965-0700 871072595351584770 rKVcGYE | motion#4131 +09:51:33.967-0700 871072598736384040 3Gwtmwc | motion#3628 +09:51:34.188-0700 871072599600418876 2tY8a64 | motion#1081 +09:51:34.211-0700 871072596639219712 H9X5k2I | motion#0110 +09:51:34.251-0700 871072597553610773 a15leWw | motion#2566 +09:51:34.494-0700 871072593246027866 DBgAIFk | motion#8774 +09:51:34.501-0700 871072597343875202 g3Pfj0k | motion#9538 +09:51:34.537-0700 871072590616215564 pU-9M7k | motion#8807 +09:51:34.563-0700 871072589949304833 SbLqpbs | motion#3920 +09:51:34.582-0700 871072596505010226 Zw40BRw | motion#4706 +09:51:34.662-0700 871072600175030272 4quVQjU | motion#1851 +09:51:34.687-0700 871072602762936340 hp85uwI | motion#8606 +09:51:34.753-0700 871072602418982962 f1K2zs0 | motion#1087 +09:51:34.825-0700 871072598119813192 1KbC5y0 | motion#0043 +09:51:34.905-0700 871072590834319461 eZv2jYI | motion#7410 +09:51:35.043-0700 871072602750345266 iVfiI-E | motion#2308 +09:51:35.079-0700 871072602150567966 k74Doh4 | motion#0797 +09:51:35.159-0700 871072602792267826 CIsJCuA | motion#2494 +09:51:35.256-0700 871072603127824425 E2ipg_M | motion#2584 +09:51:35.392-0700 871072601714348042 m3mzlGI | motion#1092 +09:51:35.411-0700 871072600158269441 9TqjBMw | motion#0624 +09:51:35.615-0700 871072595007660114 elr2IJA | motion#0549 +09:51:35.641-0700 871072588531642369 fJuHF2A | motion#0525 +09:51:35.711-0700 871072603492741160 NoMNlAM | motion#0255 +09:51:35.726-0700 871072602217660426 7nFZ5SI | motion#5022 +09:51:35.737-0700 871072602402201681 ETVb7tI | motion#0655 +09:51:35.884-0700 871072604402901032 cjBG390 | motion#5396 +09:51:35.897-0700 871072602255421460 URvttk0 | motion#8022 +09:51:36.004-0700 871072591811608586 cxUodyE | motion#9223 +09:51:36.032-0700 871072607406026813 VKOcW5U | motion#3097 +09:51:36.166-0700 871072595905245256 fpbh-q4 | motion#4284 +09:51:36.176-0700 871072608307773521 O7P37uo | motion#1829 +09:51:36.205-0700 871072610652401704 hcs7bAo | motion#6787 +09:51:36.223-0700 871072608110649406 WXXnOqM | motion#6910 +09:51:36.234-0700 871072608467177482 X7Dj0oA | motion#4205 +09:51:36.317-0700 871072595783593985 62xVQBo | motion#0060 +09:51:36.336-0700 871072609066971148 Es-7GuI | motion#1549 +09:51:36.408-0700 871072596471459920 LRURAbQ | motion#4526 +09:51:36.477-0700 871072595745841222 Tidp90o | motion#0372 +09:51:36.602-0700 871072608114855946 z09npW0 | motion#7304 +09:51:36.623-0700 871072608261652581 GP113VU | motion#6702 +09:51:36.706-0700 871072598476324874 athelkA | motion#4957 +09:51:36.793-0700 871072608962089010 10SoFzE | motion#1529 +09:51:36.818-0700 871072606567141438 v5onDEQ | motion#6505 +09:51:36.836-0700 871072603366891542 44HvnxA | motion#8597 +09:51:36.843-0700 871072610304290927 oFMN8PY | motion#6625 +09:51:36.852-0700 871072610316853288 IXqNIXE | motion#7420 +09:51:36.954-0700 871072592096792637 leWXlUg | motion#5793 +09:51:36.976-0700 871072607120810014 zTLS_RI | motion#5645 +09:51:36.989-0700 871072610639839272 X9kVR10 | motion#9602 +09:51:37.058-0700 871072608253259806 OmSEBM8 | motion#2425 +09:51:37.085-0700 871072609347993601 b5QenQw | motion#2876 +09:51:37.092-0700 871072611952656414 NTjUAx4 | motion#3663 +09:51:37.113-0700 871072595322228788 DqHZyBc | motion#2823 +09:51:37.137-0700 871072611386409022 vHY4rs4 | motion#9076 +09:51:37.139-0700 871072614012035072 sQi1D94 | motion#2503 +09:51:37.141-0700 871072600909037658 Cip8nOc | motion#8084 +09:51:37.155-0700 871072590649774161 2d1Su7M | motion#7855 +09:51:37.242-0700 871072611554168905 rgSNSJ4 | motion#9222 +09:51:37.271-0700 871072607976456192 YgqobgQ | motion#0309 +09:51:37.335-0700 871072606982377492 gxXGTMI | motion#2357 +09:51:37.371-0700 871072598082068551 HEkYRrU | motion#5208 +09:51:37.416-0700 871072609041805333 ZuJsyDc | motion#7316 +09:51:37.467-0700 871072614175637645 eddAq9c | motion#0438 +09:51:37.477-0700 871072614192406548 _qN2J1U | motion#3168 +09:51:37.500-0700 871072612187533362 GkRa4-g | motion#9413 +09:51:37.540-0700 871072611843584051 RTxsReU | motion#3440 +09:51:37.551-0700 871072609729642538 TKDkzz0 | motion#7961 +09:51:37.560-0700 871072611252183090 nCZZAIE | motion#7973 +09:51:37.579-0700 871072610782425158 SIi3lvo | motion#2914 +09:51:37.590-0700 871072609419264050 0hB5T9g | motion#2152 +09:51:37.688-0700 871072598925119528 uxtvKPs | motion#4021 +09:51:37.742-0700 871072610191044618 -ibPils | motion#1998 +09:51:37.768-0700 871072613319966721 cE3i-0E | motion#8992 +09:51:37.836-0700 871072617195503657 xXXk8_s | motion#9629 +09:51:37.916-0700 871072616969039922 mBWoCXw | motion#6977 +09:51:37.933-0700 871072595783585813 7VjvTsI | motion#7953 +09:51:37.960-0700 871072614523731978 guW8Edc | motion#3058 +09:51:38.008-0700 871072615610073100 UBq_0CI | motion#9023 +09:51:38.049-0700 871072617455583292 dfD4E5M | motion#0732 +09:51:38.080-0700 871072602121207849 kbox_-o | motion#5608 +09:51:38.101-0700 871072614095917107 kjaTzSM | motion#6490 +09:51:38.204-0700 871072603182366720 mFylUf8 | motion#0652 +09:51:38.213-0700 871072618286055454 MYhI9eI | motion#4752 +09:51:38.277-0700 871072614980939846 eLouH9U | motion#9922 +09:51:38.317-0700 871072614527946853 Rg-9Qn0 | motion#7378 +09:51:38.334-0700 871072615106760714 7mkC6BI | motion#1095 +09:51:38.358-0700 871072618978111518 gg1hcLc | motion#5190 +09:51:38.411-0700 871072614465024010 kD51j0A | motion#1730 +09:51:38.447-0700 871072615089975296 IooCfhs | motion#7478 +09:51:38.474-0700 871072617325547541 HSmDhUc | motion#8284 +09:51:38.480-0700 871072618810310696 V7vIyss | motion#2248 +09:51:38.488-0700 871072614628618251 RUD2Ec0 | motion#5893 +09:51:38.499-0700 871072615073185833 epLAjZk | motion#1485 +09:51:38.507-0700 871072605245964340 jMC8ZSI | motion#3885 +09:51:38.538-0700 871072612695040040 IXD1lDA | motion#8297 +09:51:38.621-0700 871072616578973796 IxyYbpI | motion#9374 +09:51:38.739-0700 871072615995932702 KcTrd7E | motion#9053 +09:51:38.757-0700 871072604155445278 YbrQ1cw | motion#7662 +09:51:38.832-0700 871072606521008168 PM8SvAU | motion#1366 +09:51:38.889-0700 871072613923979284 GgyFWAs | motion#7250 +09:51:38.909-0700 871072618495758357 6OZUhEw | motion#0215 +09:51:39.064-0700 871072606445527120 jwNyuBU | motion#9408 +09:51:39.088-0700 871072598421819464 mLLPpjQ | motion#8816 +09:51:39.115-0700 871072621259816970 wAumJ3c | motion#2116 +09:51:39.191-0700 871072620412551239 Fkmuzm0 | motion#2248 +09:51:39.286-0700 871072618294427719 4z376T4 | motion#8894 +09:51:39.336-0700 871072613101891706 l_XeHNQ | motion#6440 +09:51:39.412-0700 871072607678648340 R6XTm7U | motion#7311 +09:51:39.458-0700 871072608471367730 Qvodxz4 | motion#6962 +09:51:39.495-0700 871072611789053972 EZjmQns | motion#8965 +09:51:39.572-0700 871072618965520405 HgN8sQc | motion#6191 +09:51:39.760-0700 871072619531751525 JyjUOoI | motion#5741 +09:51:39.786-0700 871072622400651284 DdjT-80 | motion#5745 +09:51:39.826-0700 871072624866902016 lrsQh9o | motion#6008 +09:51:39.859-0700 871072623893811221 Mx0MHLA | motion#1476 +09:51:39.934-0700 871072625366011924 FIQ7Zsc | motion#6711 +09:51:39.986-0700 871072620131528734 w1Nb83w | motion#9548 +09:51:40.054-0700 871072624162271232 joGeLEQ | motion#7901 +09:51:40.293-0700 871072622354505769 vbQOkWM | motion#3841 +09:51:40.298-0700 871072626733351013 1BVQcDs | motion#2011 +09:51:40.500-0700 871072625642860594 TT8Q7c8 | motion#6392 +09:51:40.513-0700 871072625512837160 Pf7iLNE | motion#4864 +09:51:40.516-0700 871072610383970325 yGMeoxo | motion#7912 +09:51:40.518-0700 871072628532723792 KG_knFc | motion#3231 +09:51:40.531-0700 871072628016816178 aqafWvo | motion#3954 +09:51:40.593-0700 871072608966299719 qfOAqFU | motion#3833 +09:51:40.604-0700 871072627874213948 ylIN7e4 | motion#0796 +09:51:40.629-0700 871072624174829578 DTH4iGM | motion#3142 +09:51:40.644-0700 871072626485915679 mzJ4BEY | motion#6001 +09:51:40.679-0700 871072624309047378 SbZ2czc | motion#6411 +09:51:40.689-0700 871072629208006757 8dx1lvg | motion#2266 +09:51:40.821-0700 871072627760980008 HIT6Qg8 | motion#6139 +09:51:40.878-0700 871072623906414643 JiGU0hM | motion#7051 +09:51:40.888-0700 871072628826329088 1GdJSpE | motion#2621 +09:51:40.946-0700 871072628222341200 Dpsq4W8 | motion#0139 +09:51:41.023-0700 871072627324751992 lExdS0U | motion#5232 +09:51:41.046-0700 871072629728100352 tnk2CFo | motion#4313 +09:51:41.053-0700 871072630529208420 7QJaJTc | motion#4616 +09:51:41.126-0700 871072626427195412 q0iF2Gs | motion#1483 +09:51:41.206-0700 871072626662047814 JqmceQA | motion#4430 +09:51:41.234-0700 871072615735889930 G5SxF6Y | motion#3367 +09:51:41.272-0700 871072619909247047 cX1Vfg4 | motion#6389 +09:51:41.306-0700 871072623210156082 ZOYgOlY | motion#3478 +09:51:41.396-0700 871072630474702849 W7kLcls | motion#1354 +09:51:41.414-0700 871072631221260288 pPNa9qc | motion#7891 +09:51:41.422-0700 871072629921050655 BnkEacA | motion#5393 +09:51:41.497-0700 871072627693850644 Wzq305g | motion#3161 +09:51:41.501-0700 871072628549500938 ZqwEF7k | motion#1516 +09:51:41.571-0700 871072617233285140 zZQXEYI | motion#7152 +09:51:41.577-0700 871072617916940348 GWSUfKk | motion#2195 +09:51:41.653-0700 871072633918222366 L1Lchac | motion#9632 +09:51:41.661-0700 871072629656805376 Djgigdo | motion#0512 +09:51:41.678-0700 871072630336258118 QOPyFp0 | motion#3936 +09:51:41.739-0700 871072614590869564 lfMkOAk | motion#6756 +09:51:41.744-0700 871072629031829544 g4lYAVs | motion#0663 +09:51:41.750-0700 871072632802517012 WgnkMII | motion#4914 +09:51:41.752-0700 871072633138085969 j3UrzN4 | motion#9024 +09:51:41.865-0700 871072627593207828 jwFNcrM | motion#6686 +09:51:41.869-0700 871072628855677011 NUZOsFI | motion#9243 +09:51:41.999-0700 871072613353545808 AhTsXXI | motion#7617 +09:51:42.181-0700 871072628545302568 1Ine4wU | motion#2326 +09:51:42.182-0700 871072622610378774 t7JYUbs | motion#2659 +09:51:42.186-0700 871072619200409631 TlhTv5Q | motion#5157 +09:51:42.305-0700 871072631728783400 jNfIqaI | motion#6821 +09:51:42.328-0700 871072632857042944 s31zG2s | motion#5314 +09:51:42.404-0700 871072625856749588 ZzGOSYE | motion#3166 +09:51:42.404-0700 871072635910504568 12GjlCw | motion#5289 +09:51:42.479-0700 871072633930805258 SJmUZEg | motion#1391 +09:51:42.481-0700 871072634090168370 nHEMcD0 | motion#1781 +09:51:42.500-0700 871072619158441994 y3L6L1w | motion#2778 +09:51:42.524-0700 871072632131436564 b4KURaU | motion#0695 +09:51:42.591-0700 871072633175822377 VWUBQ3o | motion#0328 +09:51:42.627-0700 871072623029784606 4f7_Yeg | motion#6828 +09:51:42.701-0700 871072622169976842 CS_9nF0 | motion#2770 +09:51:42.906-0700 871072635293937695 enOJ9WM | motion#4588 +09:51:42.950-0700 871072635533025321 F11f2EY | motion#6986 +09:51:43.004-0700 871072636640301106 oNs6fbU | motion#1802 +09:51:43.054-0700 871072632588623951 D7Btltg | motion#9342 +09:51:43.063-0700 871072622375489546 keFhonE | motion#2200 +09:51:43.068-0700 871072635356852245 fXIYPdY | motion#2376 +09:51:43.098-0700 871072636929712159 X9eJuT8 | motion#7803 +09:51:43.140-0700 871072637231714374 v9ABTJc | motion#3288 +09:51:43.171-0700 871072636845838347 WWfotsA | motion#7463 +09:51:43.178-0700 871072622199320636 w-p_0R0 | motion#6548 +09:51:43.218-0700 871072633914028103 vOPf5cQ | motion#1042 +09:51:43.284-0700 871072634463481906 Es4H8vA | motion#1194 +09:51:43.286-0700 871072636661289021 xShqaUU | motion#4048 +09:51:43.288-0700 871072635235217419 nbviZ90 | motion#6054 +09:51:43.302-0700 871072623335985232 XEjRn1s | motion#2118 +09:51:43.313-0700 871072634698342461 R9zCUqA | motion#7475 +09:51:43.320-0700 871072626980823050 5CieQBg | motion#4021 +09:51:43.338-0700 871072640364843048 ByR6Gk4 | motion#4575 +09:51:43.368-0700 871072637906993183 eOKPoaI | motion#5385 +09:51:43.614-0700 871072635562364958 Wonc0PM | motion#6670 +09:51:43.663-0700 871072637865041950 AZAs-Sw | motion#9313 +09:51:43.760-0700 871072639542755349 llj569Y | motion#3938 +09:51:43.853-0700 871072627123445860 YnVsTUs | motion#6256 +09:51:43.884-0700 871072633708482561 jrDETGA | motion#5828 +09:51:43.906-0700 871072639932842044 80gGd1E | motion#5100 +09:51:43.912-0700 871072626964062229 yQ3LqUc | motion#7305 +09:51:43.947-0700 871072640373239868 XbvCVf4 | motion#3861 +09:51:43.997-0700 871072638909419601 sXPzuig | motion#9887 +09:51:44.031-0700 871072639869935697 -wIZ7PI | motion#6291 +09:51:44.059-0700 871072641346338886 Sd_lnso | motion#1441 +09:51:44.208-0700 871072638242525185 aqcrK8w | motion#6437 +09:51:44.256-0700 871072629505794068 Eqn7TwI | motion#9266 +09:51:44.305-0700 871072639131721808 0w6f4tI | motion#0567 +09:51:44.343-0700 871072637542072331 btC0eW4 | motion#1707 +09:51:44.397-0700 871072639857344532 nX9iKIU | motion#9760 +09:51:44.423-0700 871072639060426782 gpqXyOc | motion#1163 +09:51:44.449-0700 871072640771706960 DWOUQCs | motion#6278 +09:51:44.456-0700 871072639798620201 1KL5n-g | motion#0207 +09:51:44.490-0700 871072644953415690 KhPI5pI | motion#0465 +09:51:44.617-0700 871072642684305408 gzfwAg0 | motion#9311 +09:51:44.636-0700 871072641954480178 Ec-F7pw | motion#4006 +09:51:44.650-0700 871072645473525840 eTZ831w | motion#7400 +09:51:44.708-0700 871072644391387176 qhlhhHU | motion#2266 +09:51:44.714-0700 871072643393146931 GSuE6ys | motion#4117 +09:51:44.778-0700 871072642810122240 Hu50XzE | motion#9313 +09:51:44.807-0700 871072633620402296 V3mAsGc | motion#1816 +09:51:44.817-0700 871072633171640370 _IKydZk | motion#6978 +09:51:44.851-0700 871072631808475166 HblVrlo | motion#0212 +09:51:44.870-0700 871072643019849768 dvpOImc | motion#9038 +09:51:44.899-0700 871072643053420604 kTMYuHk | motion#9628 +09:51:44.905-0700 871072646618578994 YATcqkE | motion#2996 +09:51:44.950-0700 871072639106580533 33NYg_Y | motion#2306 +09:51:44.950-0700 871072631330332673 jMrkePM | motion#9933 +09:51:45.027-0700 871072642583629895 Lw33q-I | motion#8675 +09:51:45.030-0700 871072630051049492 1UPQVoA | motion#4454 +09:51:45.125-0700 871072644181680159 yQJxQdQ | motion#9855 +09:51:45.151-0700 871072632093687868 l2Qy4qQ | motion#0500 +09:51:45.220-0700 871072632597016616 sn0HOkQ | motion#4877 +09:51:45.276-0700 871072631846232104 3hUREcc | motion#6069 +09:51:45.319-0700 871072632911581255 dYc4eaQ | motion#7722 +09:51:45.319-0700 871072642277453824 -m1y5LQ | motion#8530 +09:51:45.345-0700 871072643909054525 j5KKdiw | motion#8628 +09:51:45.514-0700 871072645062467664 WmGK_oI | motion#6864 +09:51:45.539-0700 871072627349934121 -equ1Bc | motion#1917 +09:51:45.544-0700 871072646710841374 DPj5DNw | motion#8736 +09:51:45.558-0700 871072648430514247 wvR231c | motion#5138 +09:51:45.563-0700 871072645062463538 UJUGn-o | motion#2212 +09:51:45.641-0700 871072648694751262 zWAmzIs | motion#8197 +09:51:45.659-0700 871072643145670686 Id6gdGE | motion#2434 +09:51:45.834-0700 871072647658766386 Qg0_I1s | motion#0695 +09:51:45.954-0700 871072635432366180 uRMLRYU | motion#1733 +09:51:45.995-0700 871072645175717889 iJfNa3E | motion#3055 +09:51:46.121-0700 871072632743813150 XHijzW8 | motion#3523 +09:51:46.127-0700 871072627882606643 VC8pnPA | motion#7112 +09:51:46.131-0700 871072632013983826 gqJAeyo | motion#2850 +09:51:46.152-0700 871072647860060222 GFARELQ | motion#8638 +09:51:46.216-0700 871072647516147793 sE7cdac | motion#5379 +09:51:46.244-0700 871072647683932171 aIO9hFU | motion#4032 +09:51:46.263-0700 871072643657379841 TeH8QG8 | motion#0400 +09:51:46.282-0700 871072649147727922 DKRsA6Y | motion#1442 +09:51:46.436-0700 871072653086179428 ZTTaFUs | motion#2520 +09:51:46.448-0700 871072649453895760 cqu6KFI | motion#9700 +09:51:46.462-0700 871072648183033856 xsDqX48 | motion#2684 +09:51:46.464-0700 871072650917711874 Dyi8j0E | motion#8162 +09:51:46.467-0700 871072648862531695 FS5h6WY | motion#8166 +09:51:46.474-0700 871072637403676773 kVgAPn8 | motion#2072 +09:51:46.483-0700 871072651609780234 RvOIEB8 | motion#0473 +09:51:46.558-0700 871072653316874271 sXrXSoI | motion#5550 +09:51:46.589-0700 871072647780392980 v8kBedI | motion#2350 +09:51:46.597-0700 871072637328162937 eRozwNY | motion#6555 +09:51:46.696-0700 871072647818137650 uAdPdy8 | motion#2552 +09:51:46.752-0700 871072650443771954 x3WBtaU | motion#9315 +09:51:46.860-0700 871072637743423578 RC0Mn1U | motion#1845 +09:51:46.946-0700 871072653388152853 B561LhQ | motion#9249 +09:51:46.987-0700 871072652264108062 GBEf8_I | motion#8299 +09:51:46.995-0700 871072652196999268 5E7x0ms | motion#0386 +09:51:47.025-0700 871072632123052073 KsnB8x8 | motion#4312 +09:51:47.111-0700 871072649156120626 YphTWtw | motion#3813 +09:51:47.158-0700 871072651039363083 PkpMHos | motion#5511 +09:51:47.247-0700 871072656177389609 5lRr37Q | motion#7356 +09:51:47.309-0700 871072655489523722 tzpaf20 | motion#6041 +09:51:47.329-0700 871072656500330526 jLT9xDQ | motion#6720 +09:51:47.377-0700 871072654830997544 7v-buH0 | motion#0801 +09:51:47.386-0700 871072652079546369 dG--Bm8 | motion#1779 +09:51:47.412-0700 871072655393030176 IGJlges | motion#8708 +09:51:47.413-0700 871072653404950589 T_N7aA4 | motion#7483 +09:51:47.416-0700 871072652180201472 tC8jwTQ | motion#7499 +09:51:47.440-0700 871072654013116427 OaxI2_U | motion#3130 +09:51:47.447-0700 871072654277373992 kkZ_sRs | motion#4826 +09:51:47.496-0700 871072656424833054 8gIFt-E | motion#9233 +09:51:47.506-0700 871072656429023272 EDdBToc | motion#2405 +09:51:47.530-0700 871072652326998056 kmRIVJE | motion#0262 +09:51:47.543-0700 871072637575630879 LLjz594 | motion#4957 +09:51:47.634-0700 871072654797467688 LiDFc8g | motion#7261 +09:51:47.688-0700 871072656164782101 yCsw680 | motion#5264 +09:51:47.762-0700 871072629564518470 sTYeXWk | motion#7124 +09:51:47.935-0700 871072656013787147 cCZ3w8Q | motion#3169 +09:51:47.943-0700 871072640046071850 REeWVdQ | motion#0937 +09:51:48.004-0700 871072655837630474 jjzWSzE | motion#2707 +09:51:48.048-0700 871072643992915968 fw5SKTU | motion#6618 +09:51:48.088-0700 871072655246258237 cW0dnuw | motion#4792 +09:51:48.108-0700 871072658513625088 KAmHbAI | motion#1629 +09:51:48.187-0700 871072657335001138 clemQwo | motion#7308 +09:51:48.226-0700 871072656810704906 E8tEnXw | motion#0408 +09:51:48.265-0700 871072657850896404 84Hj3jI | motion#3790 +09:51:48.270-0700 871072660426227742 t2AHrzY | motion#3073 +09:51:48.306-0700 871072655070072872 K2l7vt4 | motion#0659 +09:51:48.376-0700 871072656936534047 eh-ZT5s | motion#6254 +09:51:48.450-0700 871072659402801152 SEkyJ4k | motion#1803 +09:51:48.456-0700 871072643984543804 o_yL35w | motion#2986 +09:51:48.471-0700 871072656122847252 HpLIn7I | motion#6794 +09:51:48.629-0700 871072647742652426 t3wE33g | motion#7827 +09:51:48.634-0700 871072658903678976 wVyWzHU | motion#4284 +09:51:48.653-0700 871072647218335824 Xdo7X2I | motion#0778 +09:51:48.686-0700 871072659843215361 Htds-bw | motion#6348 +09:51:48.766-0700 871072662179414017 jHZocUg | motion#7717 +09:51:48.807-0700 871072658161291264 D_AH6ig | motion#5767 +09:51:48.837-0700 871072646975086642 dGOepi8 | motion#3052 +09:51:48.931-0700 871072646236868628 BNEHUSo | motion#1470 +09:51:49.005-0700 871072663664226386 yDVY5Rg | motion#0079 +09:51:49.015-0700 871072659113381918 n7idy6Y | motion#5728 +09:51:49.032-0700 871072661328003072 Z_OW2Uc | motion#0200 +09:51:49.033-0700 871072663488045086 ifg4b4o | motion#4169 +09:51:49.034-0700 871072659205664808 wTpvBqo | motion#1190 +09:51:49.038-0700 871072646115250226 na02T6E | motion#9805 +09:51:49.172-0700 871072640343891999 WnGJNGs | motion#9236 +09:51:49.229-0700 871072657754447883 sn0-E8A | motion#4768 +09:51:49.254-0700 871072648296300624 J9ecl44 | motion#2162 +09:51:49.262-0700 871072663504814090 RpB80KI | motion#7892 +09:51:49.287-0700 871072659251802183 tnOu5jQ | motion#7132 +09:51:49.413-0700 871072665446809611 gYALi6Y | motion#3442 +09:51:49.414-0700 871072662737268776 wDibcDA | motion#0441 +09:51:49.537-0700 871072665375473795 m5AvooY | motion#6936 +09:51:49.558-0700 871072657523753002 0DyB72A | motion#3538 +09:51:49.563-0700 871072650565386261 nPjv0IE | motion#4514 +09:51:49.606-0700 871072660455583834 Dbjotww | motion#6692 +09:51:49.632-0700 871072665107046411 Z7iXI3c | motion#9302 +09:51:49.677-0700 871072661298614303 8XhfcvY | motion#8550 +09:51:49.766-0700 871072660694638593 uJl7PT8 | motion#6571 +09:51:49.773-0700 871072661151809576 x76HiKI | motion#4990 +09:51:49.794-0700 871072663467069500 CgZ9CFM | motion#8576 +09:51:49.844-0700 871072664922513418 ridQxvM | motion#6804 +09:51:49.861-0700 871072662473043988 dT8ote8 | motion#6256 +09:51:49.885-0700 871072649227427850 1fpZGGw | motion#4488 +09:51:49.895-0700 871072668064022589 PMNYXco | motion#1105 +09:51:49.925-0700 871072654206058556 vEE9uJE | motion#8766 +09:51:49.959-0700 871072664163328061 v4l2nCk | motion#2712 +09:51:50.042-0700 871072662481432587 NyfOLg8 | motion#6578 +09:51:50.088-0700 871072648711516160 gmiibQ0 | motion#5430 +09:51:50.098-0700 871072663974600755 EiugCvE | motion#6423 +09:51:50.100-0700 871072664633081939 S-V5Ws4 | motion#5466 +09:51:50.131-0700 871072664536617031 L-SVCWw | motion#7730 +09:51:50.152-0700 871072661474799636 EqMFeXY | motion#0110 +09:51:50.161-0700 871072662531764235 WdREMSo | motion#1369 +09:51:50.181-0700 871072665492926514 KUGNnqc | motion#1789 +09:51:50.200-0700 871072663299313704 mXD4XRw | motion#8885 +09:51:50.221-0700 871072664175923210 7HpIuBo | motion#8247 +09:51:50.237-0700 871072666294034452 lP7GWoY | motion#7538 +09:51:50.245-0700 871072654642278400 MGGJDeY | motion#7439 +09:51:50.355-0700 871072665295810612 rdjiOus | motion#0723 +09:51:50.453-0700 871072659880968193 O1cAEWU | motion#8126 +09:51:50.459-0700 871072667187412992 5cIDSdY | motion#4577 +09:51:50.462-0700 871072664809242704 UtWr8YM | motion#0696 +09:51:50.465-0700 871072668496052224 -0-G8JA | motion#3879 +09:51:50.503-0700 871072665736187935 vUBsClM | motion#5537 +09:51:50.617-0700 871072669389447219 HMWr8C8 | motion#6523 +09:51:50.663-0700 871072664058478593 rVWeLYw | motion#9877 +09:51:50.668-0700 871072671033602110 rmwZyoU | motion#4249 +09:51:50.709-0700 871072668303097897 ZhujU08 | motion#4209 +09:51:50.712-0700 871072656076734545 tc0uO5o | motion#5784 +09:51:50.732-0700 871072666394722355 AlFiW4s | motion#8234 +09:51:50.763-0700 871072666570854471 M2VMRG4 | motion#7807 +09:51:50.776-0700 871072670903586826 DhFtr3M | motion#6228 +09:51:50.785-0700 871072666633764944 U0k55jc | motion#3162 +09:51:50.823-0700 871072672023449632 GXp1334 | motion#8845 +09:51:50.824-0700 871072654579339286 sqd3-Fo | motion#0715 +09:51:50.870-0700 871072668609282088 pZqv2og | motion#3483 +09:51:50.895-0700 871072668491870208 BzW7wBk | motion#1073 +09:51:51.013-0700 871072667468443669 W4bx8To | motion#7915 +09:51:51.068-0700 871072669146177607 7_PB4_k | motion#2651 +09:51:51.132-0700 871072665497120818 93a85M4 | motion#8256 +09:51:51.143-0700 871072668517007391 EnLb7Io | motion#9235 +09:51:51.158-0700 871072666881249340 MqGB9YY | motion#5737 +09:51:51.191-0700 871072669704011816 CdXLgZc | motion#0157 +09:51:51.198-0700 871072664763138118 JonIY5o | motion#4606 +09:51:51.282-0700 871072666222731275 07KXYuk | motion#4558 +09:51:51.318-0700 871072655866994688 1ebqJH4 | motion#0752 +09:51:51.367-0700 871072656051539968 mpPutWk | motion#6135 +09:51:51.402-0700 871072655623725086 -UymAkw | motion#8076 +09:51:51.440-0700 871072670584815667 mS1RKvE | motion#4402 +09:51:51.456-0700 871072661185388567 a0Mu6_U | motion#2704 +09:51:51.468-0700 871072667216777286 DuLDYe4 | motion#0191 +09:51:51.479-0700 871072674179342387 7IP5zEE | motion#3169 +09:51:51.594-0700 871072671163617310 fKTmaFY | motion#6395 +09:51:51.648-0700 871072671398527076 qFwGNPM | motion#8609 +09:51:51.697-0700 871072673818636338 OJZlom0 | motion#0375 +09:51:51.758-0700 871072671138447380 X1JSTGc | motion#0543 +09:51:51.789-0700 871072669234253905 ymxug5U | motion#4100 +09:51:51.875-0700 871072671947952228 fKylUjc | motion#8191 +09:51:51.881-0700 871072670559662091 YKNFte4 | motion#4937 +09:51:51.882-0700 871072674628128818 svOpVsY | motion#8049 +09:51:51.909-0700 871072670760972299 33u4AGw | motion#3907 +09:51:52.049-0700 871072675890618419 oGCvACM | motion#0106 +09:51:52.077-0700 871072672476430398 QJS2RxA | motion#2864 +09:51:52.082-0700 871072675081097256 OPI4A2k | motion#4013 +09:51:52.168-0700 871072667866923079 oDFLkkg | motion#1230 +09:51:52.192-0700 871072674057691207 ZZNxFJo | motion#5776 +09:51:52.275-0700 871072673810231306 P7gX_og | motion#1606 +09:51:52.439-0700 871072675915759646 dkMpWEw | motion#2969 +09:51:52.465-0700 871072673982197790 irXfxCw | motion#4831 +09:51:52.472-0700 871072670794547202 0SzB7AI | motion#6199 +09:51:52.506-0700 871072675391504414 htlGUms | motion#6439 +09:51:52.535-0700 871072676612030494 li3YFa8 | motion#0522 +09:51:52.618-0700 871072677618675752 GccI7H4 | motion#7482 +09:51:52.657-0700 871072676335206481 jIWvnXQ | motion#2830 +09:51:52.663-0700 871072673508245505 qWDkEKM | motion#8464 +09:51:52.670-0700 871072676180033596 DSZRO_Q | motion#6696 +09:51:52.679-0700 871072663504838686 npM3df0 | motion#8684 +09:51:52.734-0700 871072674867200061 t2PFy5I | motion#5866 +09:51:52.786-0700 871072678826639411 ucBh_b4 | motion#0645 +09:51:52.829-0700 871072676159029318 ixg_76w | motion#6866 +09:51:52.854-0700 871072676863705168 SLEXVY0 | motion#4999 +09:51:52.973-0700 871072678717575240 6OVM7WY | motion#5419 +09:51:53.030-0700 871072678117773372 j3-lwoo | motion#5577 +09:51:53.060-0700 871072678193283133 T-v5O7s | motion#3476 +09:51:53.134-0700 871072680047169577 4PwpbAI | motion#7788 +09:51:53.172-0700 871072679720022066 KwLbXfY | motion#0773 +09:51:53.211-0700 871072677153095750 GRr4K0U | motion#7314 +09:51:53.216-0700 871072675492139058 gyM6tOY | motion#4199 +09:51:53.255-0700 871072641618952245 yk5gAek | motion#0661 +09:51:53.298-0700 871072680848281650 B-HjE5M | motion#8082 +09:51:53.357-0700 871072677396357121 CNIPdWA | motion#8681 +09:51:53.362-0700 871072678994378892 A2ZBcZg | motion#0514 +09:51:53.379-0700 871072679925534740 AZsC77k | motion#2143 +09:51:53.419-0700 871072680407863346 o-Ybj7g | motion#0602 +09:51:53.468-0700 871072678189080597 FYS3MRo | motion#8468 +09:51:53.527-0700 871072678235222077 scmkHJ4 | motion#1304 +09:51:53.541-0700 871072679703248918 qWry_tw | motion#5522 +09:51:53.546-0700 871072680294637618 HkcTuYU | motion#0487 +09:51:53.555-0700 871072679258632223 HcDut8E | motion#4042 +09:51:53.566-0700 871072663592914984 yJEK-e8 | motion#4379 +09:51:53.574-0700 871072683150954547 _aAe9-c | motion#9237 +09:51:53.585-0700 871072664675049513 0ymFnvw | motion#6076 +09:51:53.610-0700 871072662217162863 KoderO4 | motion#3423 +09:51:53.646-0700 871072677580906497 opFVook | motion#9254 +09:51:53.698-0700 871072664280776774 SGM3b-M | motion#3616 +09:51:53.834-0700 871072667866898522 Fk45LOc | motion#1871 +09:51:53.894-0700 871072669498499102 MHrqdVQ | motion#5265 +09:51:53.920-0700 871072681641001020 bkmB49c | motion#8176 +09:51:53.994-0700 871072685361348608 T1Dfpig | motion#1612 +09:51:54.005-0700 871072680223313970 Zzqbn9o | motion#8365 +09:51:54.074-0700 871072681632628736 VN6DR0A | motion#8510 +09:51:54.162-0700 871072678684016691 Xy0_U18 | motion#9009 +09:51:54.162-0700 871072677627068437 K4bGCdw | motion#2054 +09:51:54.167-0700 871072680491765830 pMbbh_U | motion#9289 +09:51:54.196-0700 871072681531940914 MqiYqXE | motion#0045 +09:51:54.239-0700 871072681221566486 syrT_7Y | motion#4357 +09:51:54.284-0700 871072673214627850 R2wogyE | motion#1377 +09:51:54.288-0700 871072669855010926 aNU4WXw | motion#7344 +09:51:54.293-0700 871072682161078295 e_UFTaU | motion#8354 +09:51:54.324-0700 871072682282713139 pudDHB0 | motion#1542 +09:51:54.403-0700 871072682333048852 6WFx8RE | motion#9736 +09:51:54.482-0700 871072685554274364 1HBnZwg | motion#7595 +09:51:54.508-0700 871072682798620733 kigiM9s | motion#8013 +09:51:54.581-0700 871072683935277146 1bxn43k | motion#3343 +09:51:54.587-0700 871072681955569715 wjkpu2E | motion#4707 +09:51:54.599-0700 871072686594465812 IqCyEds | motion#3285 +09:51:54.610-0700 871072679564832828 37CDPeM | motion#6474 +09:51:54.624-0700 871072677706760254 Un2wTTA | motion#1890 +09:51:54.660-0700 871072684237275146 oknAFhg | motion#2956 +09:51:54.696-0700 871072683012538418 5n_TFaI | motion#3088 +09:51:54.745-0700 871072676310024274 7EAdyYY | motion#7110 +09:51:54.962-0700 871072689010401290 eGxdCP4 | motion#2493 +09:51:54.963-0700 871072684530860083 dWZbqck | motion#5848 +09:51:54.963-0700 871072683322908753 AUquyx8 | motion#7774 +09:51:55.005-0700 871072685113888778 HMyqUhw | motion#7002 +09:51:55.015-0700 871072684069490739 S-59pmU | motion#1204 +09:51:55.025-0700 871072685092904990 oiUNxZo | motion#2996 +09:51:55.034-0700 871072670819684423 jabTlJc | motion#3982 +09:51:55.152-0700 871072682404364340 xRD5Z5U | motion#2957 +09:51:55.160-0700 871072684031766608 1DtxwDA | motion#9574 +09:51:55.165-0700 871072672363212880 hoEFBjs | motion#2663 +09:51:55.175-0700 871072689354309642 ydX0iYI | motion#5279 +09:51:55.184-0700 871072689274626078 KZEVvCQ | motion#4151 +09:51:55.210-0700 871072683473907753 LbHmxVY | motion#1084 +09:51:55.219-0700 871072688368656384 SZxrgpg | motion#4296 +09:51:55.239-0700 871072671968927784 NDZSmMo | motion#9748 +09:51:55.251-0700 871072685503938620 IiwsRXQ | motion#0881 +09:51:55.285-0700 871072682911891537 m4UmkmA | motion#2797 +09:51:55.390-0700 871072657670565919 1D8dcKg | motion#4914 +09:51:55.399-0700 871072673462095922 O7_5XeE | motion#8198 +09:51:55.407-0700 871072686653181994 3HL5R3Q | motion#7046 +09:51:55.432-0700 871072683813650442 tBOIv3k | motion#1041 +09:51:55.440-0700 871072686070190100 aQ0FfbM | motion#1529 +09:51:55.543-0700 871072690289647657 Ugsl70Y | motion#6680 +09:51:55.563-0700 871072669762736149 u9L1oqE | motion#1980 +09:51:55.590-0700 871072672979763280 I_Yr06c | motion#1218 +09:51:55.593-0700 871072686552514630 kPxpFIY | motion#2377 +09:51:55.620-0700 871072687139745794 ltYqXzE | motion#6667 +09:51:55.620-0700 871072689211707454 wcc1uL0 | motion#0501 +09:51:55.681-0700 871072690390327328 8UpLZCM | motion#9484 +09:51:55.685-0700 871072688293183488 5iHuByc | motion#6020 +09:51:55.694-0700 871072690079948870 11tXYsA | motion#8907 +09:51:55.713-0700 871072675718651934 z480rsw | motion#4708 +09:51:55.831-0700 871072688217686096 Yh9rzvo | motion#0526 +09:51:55.957-0700 871072682572136448 Tzcs-AA | motion#5548 +09:51:56.011-0700 871072682391773235 u7vaGfQ | motion#3355 +09:51:56.110-0700 871072685084528640 JA5DlWA | motion#5400 +09:51:56.112-0700 871072690222563408 Wcec8t8 | motion#3946 +09:51:56.130-0700 871072674145775626 ZqNJDr0 | motion#0915 +09:51:56.139-0700 871072686913253417 JFpD_PY | motion#4537 +09:51:56.163-0700 871072693275996160 kBwBLYg | motion#4279 +09:51:56.217-0700 871072688997810187 DX-20Dk | motion#4793 +09:51:56.226-0700 871072690797154304 EjsTHpM | motion#2992 +09:51:56.254-0700 871072690889433139 ai_uoIM | motion#3616 +09:51:56.259-0700 871072690813947914 fgchp_g | motion#4407 +09:51:56.284-0700 871072691606654976 Yj8h9lY | motion#9258 +09:51:56.297-0700 871072678319124511 lc9JnA8 | motion#3493 +09:51:56.297-0700 871072688700010517 TtR-Yxs | motion#0711 +09:51:56.368-0700 871072689295605762 q97hHi8 | motion#4311 +09:51:56.438-0700 871072674695217174 mUhMeLE | motion#9084 +09:51:56.512-0700 871072693171159051 KfqrvdU | motion#5169 +09:51:56.579-0700 871072688230268940 mGc9KUw | motion#6703 +09:51:56.605-0700 871072691417911409 jx3qB2w | motion#6805 +09:51:56.630-0700 871072692223221800 dgrPTYI | motion#0627 +09:51:56.651-0700 871072687273959494 fnJYQqA | motion#8023 +09:51:56.717-0700 871072677627068416 brOmfN0 | motion#2771 +09:51:56.745-0700 871072695981314049 acDAAys | motion#5997 +09:51:56.746-0700 871072690717470810 8LLv5BY | motion#9203 +09:51:56.873-0700 871072691803807795 oaU-l-8 | motion#4509 +09:51:56.946-0700 871072694907600896 EOiLYkU | motion#4336 +09:51:56.959-0700 871072692307111967 QjfcV1g | motion#5804 +09:51:57.017-0700 871072692919492668 ckYVqKQ | motion#7049 +09:51:57.018-0700 871072690943950848 hjV70vo | motion#6768 +09:51:57.125-0700 871072692953030736 5qS3GHA | motion#2267 +09:51:57.135-0700 871072695805181992 Fe7yxLw | motion#0092 +09:51:57.736-0700 871072694710444072 clGD5Z4 | motion#7555 +09:51:57.777-0700 871072694379102279 1qqimMs | motion#1779 +09:51:57.819-0700 871072698053300225 Gk8Wzrc | motion#8575 +09:51:57.948-0700 871072680273670256 G6RFoPc | motion#9458 +09:51:58.125-0700 871072698829242378 vIWLCwo | motion#7104 +09:51:58.199-0700 871072681808785458 LwjSCTU | motion#9595 +09:51:58.232-0700 871072694249078875 X4YTGCg | motion#3221 +09:51:58.235-0700 871072692760092684 s0hw_K8 | motion#3610 +09:51:58.263-0700 871072695578669128 0B2EYao | motion#6392 +09:51:58.344-0700 871072675601215569 9H3vZQY | motion#6141 +09:51:58.349-0700 871072690314825799 BDadPjg | motion#5719 +09:51:58.429-0700 871072701480067122 54tfIzc | motion#2054 +09:51:58.488-0700 871072698195914782 AVxc5LI | motion#4669 +09:51:58.502-0700 871072692214833183 F0nN7WA | motion#1974 +09:51:58.539-0700 871072693963882547 eowDU7E | motion#3943 +09:51:58.544-0700 871072697361236052 _MxkW8I | motion#1330 +09:51:58.557-0700 871072701786230816 wqOc9Z8 | motion#5242 +09:51:58.564-0700 871072703740805120 UpDOjt4 | motion#4578 +09:51:58.596-0700 871072702855798794 UUMgR4A | motion#6390 +09:51:58.605-0700 871072692621697045 TuH-23A | motion#3451 +09:51:58.651-0700 871072684744769566 gJVLB2s | motion#4738 +09:51:58.687-0700 871072697080234005 Fd5LTdA | motion#9527 +09:51:58.742-0700 871072688796471346 EhlIYh4 | motion#6888 +09:51:58.756-0700 871072692588130355 7HIk810 | motion#1060 +09:51:58.792-0700 871072695608033280 -sOfZ1c | motion#2240 +09:51:58.810-0700 871072696925036594 pUmQ1Bc | motion#7531 +09:51:58.858-0700 871072700972556320 WZ0yiDA | motion#9127 +09:51:58.922-0700 871072698736967701 0t5KzMg | motion#4163 +09:51:58.946-0700 871072697461923940 vjg7cPA | motion#3931 +09:51:59.002-0700 871072694811119646 zkAC1Dc | motion#7380 +09:51:59.040-0700 871072688741965835 gGI_yyQ | motion#5135 +09:51:59.062-0700 871072697659047966 8f2VTAM | motion#5900 +09:51:59.103-0700 871072699940737104 G3cgxqE | motion#0181 +09:51:59.106-0700 871072699299004417 _Pmwbrs | motion#8548 +09:51:59.129-0700 871072702302158910 IR3t9iI | motion#9092 +09:51:59.142-0700 871072703946322001 zVqSIkM | motion#4911 +09:51:59.148-0700 871072704353157120 _0tA5Ws | motion#0680 +09:51:59.154-0700 871072698032341002 l4_0lqQ | motion#1527 +09:51:59.188-0700 871072695184396319 pqO6utU | motion#9768 +09:51:59.190-0700 871072706869723206 zy2NDMI | motion#8852 +09:51:59.215-0700 871072701656227841 h0RWwas | motion#6339 +09:51:59.229-0700 871072701119352832 Cm-_aFg | motion#1476 +09:51:59.280-0700 871072696476237884 Dt_Ia14 | motion#6463 +09:51:59.282-0700 871072695637385216 KCKsaZc | motion#9359 +09:51:59.308-0700 871072698258817084 NbCUU8k | motion#2122 +09:51:59.318-0700 871072704659337246 Y0wrINY | motion#6929 +09:51:59.337-0700 871072691006898197 nzr-Yno | motion#1964 +09:51:59.366-0700 871072703044530177 s6faYng | motion#3255 +09:51:59.384-0700 871072670698078259 0LDxZyQ | motion#2984 +09:51:59.448-0700 871072699231895572 CXU4HGU | motion#6781 +09:51:59.492-0700 871072702746734653 uwpcevM | motion#2808 +09:51:59.517-0700 871072702595735562 pJK_9UA | motion#3003 +09:51:59.544-0700 871072708522303531 zEEDxsU | motion#9604 +09:51:59.625-0700 871072690184785941 FSCR7Yo | motion#4542 +09:51:59.741-0700 871072705267531786 uEv4fkc | motion#5279 +09:51:59.803-0700 871072707167522816 vdu5iEQ | motion#1571 +09:51:59.930-0700 871072700259516487 rT8Go1U | motion#3284 +09:51:59.941-0700 871072705649209404 3gxIisE | motion#4094 +09:51:59.965-0700 871072704927785012 0zoZF48 | motion#2664 +09:51:59.979-0700 871072701933060136 nWTihB8 | motion#3320 +09:51:59.991-0700 871072689119449139 2GPwK3w | motion#5313 +09:51:59.993-0700 871072703224905808 LDDCuA0 | motion#1102 +09:52:00.010-0700 871072706286731264 GNFAW7U | motion#8781 +09:52:00.018-0700 871072690444861461 2rmhfNk | motion#1342 +09:52:00.042-0700 871072706836176986 crl---4 | motion#7718 +09:52:00.078-0700 871072705959579688 OUyVR94 | motion#4506 +09:52:00.097-0700 871072707507281921 rw4zu44 | motion#6368 +09:52:00.099-0700 871072705036812359 HNQanvQ | motion#4349 +09:52:00.161-0700 871072707150745641 UyfWTCY | motion#7335 +09:52:00.207-0700 871072692571344966 Vw2trU4 | motion#9579 +09:52:00.300-0700 871072693821255771 3Sjvlnc | motion#4915 +09:52:00.325-0700 871072707788308550 sabUXkE | motion#5542 +09:52:00.462-0700 871072709008826368 FiPc0IE | motion#0142 +09:52:00.469-0700 871072696383967282 swTw0pU | motion#1685 +09:52:00.513-0700 871072693049495552 SxT6uKI | motion#8609 +09:52:00.589-0700 871072709298233415 wKl0sUc | motion#7175 +09:52:00.597-0700 871072706232201316 2TZWsB8 | motion#6781 +09:52:00.624-0700 871072687986966558 _Bpy5oA | motion#0156 +09:52:00.648-0700 871072704743219220 PFyjd7Q | motion#5182 +09:52:00.688-0700 871072696123924551 tIbfgBA | motion#1799 +09:52:00.831-0700 871072708887203851 _lOcFZ0 | motion#7420 +09:52:00.881-0700 871072702629294101 jUpjDD0 | motion#3676 +09:52:00.882-0700 871072707545018408 MUXku7Y | motion#6242 +09:52:00.904-0700 871072710808178699 5wJHW5c | motion#4032 +09:52:00.914-0700 871072708534890556 VgCPgg4 | motion#1489 +09:52:00.947-0700 871072711730950255 rt3QZcI | motion#7501 +09:52:00.986-0700 871072712678854696 Dt1qHZI | motion#9809 +09:52:01.030-0700 871072707092033537 xdQd2Gg | motion#2409 +09:52:01.168-0700 871072711856775219 Lik6szw | motion#0287 +09:52:01.190-0700 871072708664897567 n88hMFs | motion#5080 +09:52:01.204-0700 871072708203528252 eok79uw | motion#6161 +09:52:01.235-0700 871072709352771685 39nDLD0 | motion#1718 +09:52:01.273-0700 871072697839415316 P0IGGec | motion#0538 +09:52:01.642-0700 871072712389435393 8xsr-Oc | motion#8345 +09:52:01.692-0700 871072709210157127 91iZZmk | motion#7541 +09:52:01.699-0700 871072712204906547 sVr7Soc | motion#8056 +09:52:01.807-0700 871072712553025567 ZWGnnGI | motion#0208 +09:52:01.855-0700 871072716957040740 O6yGxB4 | motion#7928 +09:52:01.995-0700 871072715220615198 cNEjLzQ | motion#1821 +09:52:02.027-0700 871072716483088434 P62EbA0 | motion#5687 +09:52:02.062-0700 871072717623930880 xZl73U0 | motion#9055 +09:52:02.090-0700 871072698934120528 thpSHB4 | motion#4515 +09:52:02.152-0700 871072714545319946 0QHcfM4 | motion#2557 +09:52:02.215-0700 871072700007850026 huL_eCI | motion#9599 +09:52:02.291-0700 871072714729873469 BDt3KVU | motion#9305 +09:52:02.306-0700 871072714532716584 shXh7w4 | motion#0161 +09:52:02.332-0700 871072714960543825 yw3mvmY | motion#8619 +09:52:02.349-0700 871072713576435792 kTyBLXc | motion#3292 +09:52:02.374-0700 871072712754360391 JrLNL3c | motion#5248 +09:52:02.396-0700 871072717787504661 OW8tYhI | motion#7451 +09:52:02.400-0700 871072712150364190 qIAm0ak | motion#2096 +09:52:02.424-0700 871072718655742013 eXezsbk | motion#4965 +09:52:02.431-0700 871072714755039252 DGS60eg | motion#4580 +09:52:02.442-0700 871072715082174474 Zc52kNo | motion#7094 +09:52:02.531-0700 871072716093022208 9bRMjEY | motion#9181 +09:52:02.568-0700 871072715082178580 haS0ntM | motion#0991 +09:52:02.674-0700 871072715832967208 g7pNr-A | motion#2310 +09:52:02.780-0700 871072715803603005 uhM7TSw | motion#1703 +09:52:02.785-0700 871072718106280018 98lTeU8 | motion#3552 +09:52:02.805-0700 871072706085421056 pGmOm9g | motion#3258 +09:52:02.835-0700 871072712255234128 2_TQKIk | motion#6249 +09:52:02.853-0700 871072717888184350 hDXHiec | motion#3045 +09:52:02.875-0700 871072718236315648 EnK4RAw | motion#1459 +09:52:02.943-0700 871072715237380147 sIdbLlQ | motion#8292 +09:52:02.984-0700 871072712863416452 98LP384 | motion#9597 +09:52:03.024-0700 871072706982981672 O0r84jU | motion#0799 +09:52:03.115-0700 871072718127255602 0ZhRF5o | motion#5302 +09:52:03.121-0700 871072721570787370 vF-oSPg | motion#0210 +09:52:03.155-0700 871072721440747520 2aDQIPE | motion#7453 +09:52:03.175-0700 871072720685789194 ODELuPU | motion#2239 +09:52:03.239-0700 871072720031473696 88WJqb4 | motion#0981 +09:52:03.286-0700 871072723156217896 5kC4kJ4 | motion#7472 +09:52:03.290-0700 871072720501235743 zvzexsk | motion#2761 +09:52:03.339-0700 871072720287301673 EMyz680 | motion#0752 +09:52:03.341-0700 871072715619041351 iV5FIJc | motion#7386 +09:52:03.371-0700 871072722451591188 RRYPqUM | motion#4677 +09:52:03.394-0700 871072716965441576 d7jM_2s | motion#3275 +09:52:03.422-0700 871072719981150208 oxk_Tr4 | motion#5411 +09:52:03.425-0700 871072722808107059 oyPWyAk | motion#3045 +09:52:03.439-0700 871072720065032293 TdSfp9s | motion#1353 +09:52:03.494-0700 871072712418791435 kkYP6i8 | motion#1633 +09:52:03.549-0700 871072720350232616 YIS4VMU | motion#7202 +09:52:03.553-0700 871072705368190996 uIwMaEM | motion#9792 +09:52:03.610-0700 871072720090177536 cmUg46s | motion#2270 +09:52:03.655-0700 871072722413817867 5kQ5Q5o | motion#0275 +09:52:03.705-0700 871072721012924447 NL6X-F4 | motion#3497 +09:52:03.733-0700 871072723659542539 6PDEhsw | motion#8616 +09:52:03.872-0700 871072705145864203 SMSGOeA | motion#9342 +09:52:03.895-0700 871072706362245160 I6WXX9E | motion#3325 +09:52:03.901-0700 871072721767923733 Ai1HIEU | motion#1784 +09:52:03.938-0700 871072719066787891 acCrRKk | motion#4334 +09:52:03.989-0700 871072722346717234 RldkwyY | motion#8176 +09:52:04.046-0700 871072721394597950 kIcPgqQ | motion#8271 +09:52:04.106-0700 871072723122663454 _4nOi_U | motion#6724 +09:52:04.113-0700 871072711592517683 9mNg_Ps | motion#0477 +09:52:04.133-0700 871072720920674324 oMb8Ckw | motion#1593 +09:52:04.217-0700 871072723709861938 v6izMk0 | motion#3623 +09:52:04.239-0700 871072719943401472 8xCMewo | motion#8326 +09:52:04.244-0700 871072723483373588 TZH6SyQ | motion#5163 +09:52:04.305-0700 871072720950022154 CDIQsGw | motion#1759 +09:52:04.338-0700 871072710187433984 1ZbADSU | motion#4698 +09:52:04.353-0700 871072713299599472 nNiB5wE | motion#4066 +09:52:04.447-0700 871072726150946864 xWPokjo | motion#3405 +09:52:04.523-0700 871072711089221642 YzhNtxg | motion#0690 +09:52:04.529-0700 871072727975485441 D2MevHM | motion#0823 +09:52:04.595-0700 871072723529515070 xhA4oi0 | motion#5087 +09:52:04.597-0700 871072724850704424 p3LjnZM | motion#9679 +09:52:04.615-0700 871072725073027073 fuqzQo4 | motion#6963 +09:52:04.659-0700 871072722342543421 IWiEHjM | motion#3060 +09:52:04.663-0700 871072724313841744 KeE3z-c | motion#7972 +09:52:04.748-0700 871072720308305974 EtiGebs | motion#8152 +09:52:04.764-0700 871072724347412510 CBWeAmc | motion#8717 +09:52:04.846-0700 871072726796873778 bKDqyBg | motion#1790 +09:52:04.848-0700 871072723718246481 zt2DuMQ | motion#5961 +09:52:04.849-0700 871072729086976040 J8wpeTU | motion#1849 +09:52:04.925-0700 871072725815402536 WXPqXy4 | motion#3860 +09:52:04.969-0700 871072727505715241 nz-Fqro | motion#6728 +09:52:05.010-0700 871072729082773524 eoiaBEA | motion#2221 +09:52:05.017-0700 871072726545223733 4TbTLks | motion#0919 +09:52:05.067-0700 871072724225769482 n2T3sCA | motion#1922 +09:52:05.101-0700 871072726905946143 qLA1tcE | motion#4934 +09:52:05.108-0700 871072728503947317 OAzlaF8 | motion#7670 +09:52:05.131-0700 871072714356588576 HUPyC1g | motion#5283 +09:52:05.179-0700 871072727186952263 7QkKCPg | motion#0511 +09:52:05.180-0700 871072718206947378 5WSLTwQ | motion#8605 +09:52:05.186-0700 871072730181673051 ZShE8_w | motion#7662 +09:52:05.201-0700 871072727451181116 uhHnPwg | motion#3445 +09:52:05.220-0700 871072725748293662 9ZxIXWQ | motion#1041 +09:52:05.224-0700 871072726620700764 17Ff0mM | motion#3205 +09:52:05.233-0700 871072727434424350 K0DKvlE | motion#3964 +09:52:05.334-0700 871072729531572305 cQOFryw | motion#9639 +09:52:05.343-0700 871072729779032095 6yki6Lw | motion#7552 +09:52:05.370-0700 871072729560916028 tl5BDhk | motion#8661 +09:52:05.414-0700 871072730768883712 3Hk_K9A | motion#5122 +09:52:05.435-0700 871072714352377866 e2KWlyc | motion#5374 +09:52:05.457-0700 871072716940251158 rNya270 | motion#7350 +09:52:05.459-0700 871072714243342336 BrcssoA | motion#4625 +09:52:05.493-0700 871072733163823114 rwiWUKA | motion#1003 +09:52:05.526-0700 871072733331615785 oYe3UW4 | motion#7585 +09:52:05.582-0700 871072730861162626 KizK_vA | motion#5677 +09:52:05.586-0700 871072729036640307 _HZfPh0 | motion#1791 +09:52:05.694-0700 871072728483000402 qm90chE | motion#2696 +09:52:05.726-0700 871072726780104744 aIQbi7k | motion#4619 +09:52:05.743-0700 871072717686845451 ut_QSfY | motion#0353 +09:52:05.840-0700 871072730739511377 gocUINg | motion#5976 +09:52:05.888-0700 871072729204412487 G1LXivs | motion#4450 +09:52:05.951-0700 871072733470023711 xfV6HBE | motion#6665 +09:52:05.960-0700 871072729435111455 sXVgGLI | motion#6188 +09:52:05.972-0700 871072729367969852 xQjMcpE | motion#1912 +09:52:05.988-0700 871072736326344754 _n8WVLc | motion#1403 +09:52:05.994-0700 871072728776572968 KAy6OBU | motion#0135 +09:52:06.043-0700 871072729481220146 NnEHeT8 | motion#4162 +09:52:06.075-0700 871072731192520714 W5OnitA | motion#3014 +09:52:06.134-0700 871072718592815124 -Z-SliI | motion#6864 +09:52:06.157-0700 871072736301158440 O3zpPP8 | motion#6383 +09:52:06.217-0700 871072731666477156 bDMTZUc | motion#4878 +09:52:06.331-0700 871072702746730498 u52klPs | motion#1773 +09:52:06.353-0700 871072719150673972 J5wXzt0 | motion#3702 +09:52:06.367-0700 871072732731834438 _JV1ja4 | motion#1013 +09:52:06.390-0700 871072730399797288 fXMSXjU | motion#7855 +09:52:06.439-0700 871072732094271549 Gwj97CE | motion#0962 +09:52:06.448-0700 871072724938813471 3q1M-FU | motion#5201 +09:52:06.463-0700 871072736334708787 BPT8cIo | motion#8749 +09:52:06.473-0700 871072727790940180 mydZ3T0 | motion#1202 +09:52:06.496-0700 871072736158556260 XwmdxRE | motion#7009 +09:52:06.552-0700 871072736401838141 fdj9wv8 | motion#1902 +09:52:06.596-0700 871072732085878795 xOWt9O0 | motion#2967 +09:52:06.603-0700 871072721084252200 2JVB1vY | motion#0645 +09:52:06.718-0700 871072733042192404 kNFGD34 | motion#9950 +09:52:06.799-0700 871072733801377843 D6hyxeo | motion#9107 +09:52:06.803-0700 871072735684595712 qK2Slkc | motion#4670 +09:52:06.855-0700 871072737341349899 NkBmFZU | motion#8184 +09:52:06.900-0700 871072737093877791 ChS-BnM | motion#0248 +09:52:06.977-0700 871072735613321247 ZcCNjMY | motion#9210 +09:52:07.062-0700 871072724213186561 oiG79bM | motion#5269 +09:52:07.098-0700 871072723135250452 Ih4vjB0 | motion#6481 +09:52:07.178-0700 871072737102286861 YxA4ra0 | motion#0211 +09:52:07.250-0700 871072736741560340 3N--i7c | motion#1182 +09:52:07.332-0700 871072732207546398 QtNUh60 | motion#0432 +09:52:07.386-0700 871072738608037958 Nx60J0o | motion#5987 +09:52:07.391-0700 871072737702076466 hQgVtoc | motion#3822 +09:52:07.553-0700 871072738251534356 zPgiXbY | motion#7273 +09:52:07.590-0700 871072740558405752 jXR3cp4 | motion#4968 +09:52:07.643-0700 871072721000349766 haS_wss | motion#7968 +09:52:07.679-0700 871072739232985088 EBVIn8Q | motion#2381 +09:52:07.681-0700 871072736838045758 pePYVXc | motion#6553 +09:52:07.732-0700 871072740281577492 5FJDrac | motion#3018 +09:52:07.774-0700 871072736913551391 220Gq6o | motion#5683 +09:52:07.819-0700 871072742185762870 RD_YQIw | motion#4023 +09:52:07.832-0700 871072742559084625 V2bDIq0 | motion#9905 +09:52:07.854-0700 871072740696809602 XjVzSw0 | motion#7608 +09:52:07.988-0700 871072740445139004 xZvNZ9s | motion#0676 +09:52:08.014-0700 871072740965253141 A5Q0fuc | motion#5282 +09:52:08.030-0700 871072739178451016 L0eqIiE | motion#8645 +09:52:08.129-0700 871072743506985001 xHUle68 | motion#9552 +09:52:08.147-0700 871072742928158740 Pbwg3pU | motion#2340 +09:52:08.178-0700 871072733625208863 3jXDtWQ | motion#5247 +09:52:08.213-0700 871072739753078794 HtdMkMI | motion#9015 +09:52:08.338-0700 871072723605028954 AQvrm98 | motion#7945 +09:52:08.358-0700 871072744622678097 f66Wzrw | motion#1191 +09:52:08.499-0700 871072745797091338 ZAaJy0s | motion#2758 +09:52:08.512-0700 871072740839391292 XshpJXE | motion#3534 +09:52:08.529-0700 871072741409849445 UEEW4uE | motion#9361 +09:52:08.573-0700 871072742345175081 QdUuKcM | motion#7963 +09:52:08.661-0700 871072743213379635 50Nrtkg | motion#6539 +09:52:08.737-0700 871072726692032533 0jQB1n4 | motion#8808 +09:52:08.874-0700 871072741271420929 4k9tZ7o | motion#9730 +09:52:08.881-0700 871072745776099398 YLLrPNQ | motion#9738 +09:52:08.997-0700 871072744945635379 N-02cG0 | motion#3546 +09:52:08.999-0700 871072744215830588 ZfER-yk | motion#6745 +09:52:09.030-0700 871072745297940491 9Vbz9zI | motion#1331 +09:52:09.045-0700 871072746837270629 MzYL-D0 | motion#1005 +09:52:09.109-0700 871072743557328936 byrhYvo | motion#6396 +09:52:09.117-0700 871072745444757596 no_sxeY | motion#1447 +09:52:09.141-0700 871072742059954296 rH1ySR0 | motion#0387 +09:52:09.215-0700 871072746489151499 zYSeMV0 | motion#1932 +09:52:09.241-0700 871072743553105972 Ymr6kKY | motion#1691 +09:52:09.252-0700 871072732920557588 y-jqec8 | motion#8631 +09:52:09.267-0700 871072742131269682 Czxglsg | motion#0886 +09:52:09.287-0700 871072745289572423 03aiBCs | motion#0447 +09:52:09.315-0700 871072747969724507 LkpDv6Y | motion#2005 +09:52:09.373-0700 871072746489135114 9dpHJGE | motion#3041 +09:52:09.407-0700 871072748095545424 zkvnPwg | motion#3420 +09:52:09.436-0700 871072731104436274 OoucLpI | motion#7353 +09:52:09.478-0700 871072718936768622 5ouoRc4 | motion#3717 +09:52:09.556-0700 871072747466399754 jjvrUlw | motion#0493 +09:52:09.624-0700 871072734489239602 RktE7Uc | motion#8833 +09:52:09.637-0700 871072745486712935 ZrqdXVs | motion#3416 +09:52:09.639-0700 871072742613586010 QnS3x8M | motion#5202 +09:52:09.657-0700 871072744018694195 SlE2IF8 | motion#4006 +09:52:09.672-0700 871072747348955208 2IuL98Y | motion#9665 +09:52:09.746-0700 871072747579642008 NFmO7zg | motion#9019 +09:52:09.785-0700 871072750364663848 XyZSFCM | motion#2620 +09:52:09.823-0700 871072747629994094 RSUtACU | motion#0580 +09:52:09.989-0700 871072748129091645 NxW5_Fw | motion#9459 +09:52:10.028-0700 871072748175253545 m6bJk2E | motion#7824 +09:52:10.120-0700 871072746883399680 9AAU3-Q | motion#8569 +09:52:10.133-0700 871072748892479498 03zPw2U | motion#7055 +09:52:10.198-0700 871072751962718262 e8XJ8eY | motion#9364 +09:52:10.241-0700 871072748103954432 sc_lrro | motion#3912 +09:52:10.253-0700 871072751941713980 4Di84uk | motion#2247 +09:52:10.273-0700 871072752482783233 mFZE9nc | motion#5393 +09:52:10.307-0700 871072750129803275 eCBKYfg | motion#5811 +09:52:10.318-0700 871072739111366687 ZodkVxA | motion#7958 +09:52:10.355-0700 871072753615241287 DxJRHS8 | motion#2880 +09:52:10.397-0700 871072748263317544 pPDRcUA | motion#8921 +09:52:10.408-0700 871072751924953118 0I9MaKw | motion#4281 +09:52:10.412-0700 871072752591847454 TeG6YC0 | motion#3390 +09:52:10.422-0700 871072749509029908 luC-s70 | motion#3889 +09:52:10.513-0700 871072751593603132 EibtXwE | motion#0243 +09:52:10.558-0700 871072748535947364 31894Cc | motion#2575 +09:52:10.559-0700 871072749311905853 CHpLX6s | motion#8321 +09:52:10.577-0700 871072747558699039 0WEC1xM | motion#5050 +09:52:10.645-0700 871072754382831667 Z77zJF4 | motion#6755 +09:52:10.672-0700 871072751144804402 5gjnLJY | motion#7501 +09:52:10.712-0700 871072739891482644 OZ3hA6Y | motion#4284 +09:52:10.746-0700 871072754529615893 _05M78E | motion#7972 +09:52:10.797-0700 871072752096915477 jmS3R0M | motion#3910 +09:52:10.828-0700 871072752721854484 vwaIoFw | motion#0138 +09:52:10.855-0700 871072738348003388 xJ3xJCE | motion#1671 +09:52:10.901-0700 871072740805857351 WSfJjsI | motion#6262 +09:52:11.035-0700 871072751576825926 ZtyGqqc | motion#9354 +09:52:11.059-0700 871072755691421727 tcesWno | motion#0630 +09:52:11.155-0700 871072753711714354 uqdVcsQ | motion#5346 +09:52:11.160-0700 871072754684801055 ANYuMNU | motion#0111 +09:52:11.223-0700 871072742022189076 hkCsCxc | motion#9011 +09:52:11.228-0700 871072751983677470 0KAJuDU | motion#9832 +09:52:11.247-0700 871072754315702323 vWvp9GM | motion#9885 +09:52:11.286-0700 871072753464279090 StAOp2s | motion#6571 +09:52:11.330-0700 871072752000466984 lWdrKFA | motion#0656 +09:52:11.337-0700 871072740914888754 1wr1Vtk | motion#8970 +09:52:11.345-0700 871072753069981736 5vlflYw | motion#6158 +09:52:11.385-0700 871072749760692254 YhiFcf8 | motion#7026 +09:52:11.604-0700 871072737353928754 rvdYKjk | motion#5259 +09:52:11.648-0700 871072756941340702 Z1uwstQ | motion#6929 +09:52:11.830-0700 871072758732316762 BcCQSm8 | motion#2460 +09:52:11.867-0700 871072755355881502 xRDcrLU | motion#3030 +09:52:11.927-0700 871072753778847765 aYH8cPo | motion#7077 +09:52:11.943-0700 871072754177286186 Pywh_LE | motion#9445 +09:52:11.946-0700 871072739425939527 Wu_2Hy0 | motion#8075 +09:52:11.952-0700 871072755582390312 oqp36Zg | motion#2985 +09:52:11.959-0700 871072754185670710 ShHTfS8 | motion#8376 +09:52:11.968-0700 871072755351715890 IaaENBU | motion#2083 +09:52:11.978-0700 871072742382915626 77Z6ZNM | motion#4936 +09:52:11.981-0700 871072752298254376 85ebbfo | motion#3594 +09:52:12.047-0700 871072744152911873 RTU06qI | motion#2572 +09:52:12.143-0700 871072755422986320 wJoLmLg | motion#2680 +09:52:12.525-0700 871072740344488006 MarnCWI | motion#0365 +09:52:12.526-0700 871072758149300244 biUTsD0 | motion#2180 +09:52:12.535-0700 871072757612429322 LzSwlF4 | motion#1678 +09:52:12.554-0700 871072757155246200 S8S227k | motion#7061 +09:52:12.573-0700 871072757822152735 tFMa4WI | motion#6727 +09:52:12.585-0700 871072761303404626 W1nl5aQ | motion#3500 +09:52:12.593-0700 871072746380087367 Zq_IINE | motion#3622 +09:52:12.746-0700 871072762721103873 Uv2SqZI | motion#5756 +09:52:12.776-0700 871072760800112672 6mjTAOo | motion#1567 +09:52:12.826-0700 871072745654485072 uoyfxjg | motion#9002 +09:52:12.827-0700 871072757834711160 LSO5MIY | motion#5998 +09:52:12.906-0700 871072758145089577 0eBpbE8 | motion#2040 +09:52:12.920-0700 871072754567381122 7twvbKQ | motion#9096 +09:52:13.018-0700 871072753392971797 xSr_C0U | motion#8678 +09:52:13.072-0700 871072752143060992 EdPtL6c | motion#7267 +09:52:13.232-0700 871072758539366400 Mb5UlO0 | motion#5205 +09:52:13.374-0700 871072764868579359 OJnZX7M | motion#2272 +09:52:13.407-0700 871072761706061874 8MH4VOs | motion#7189 +09:52:13.412-0700 871072764566597642 9jMMXVM | motion#6986 +09:52:13.467-0700 871072762989518858 bvRQRg4 | motion#4384 +09:52:13.523-0700 871072759571173418 krpEz1s | motion#1173 +09:52:13.615-0700 871072763455098980 iEYOplM | motion#0282 +09:52:13.639-0700 871072765652926484 D7c5okw | motion#9854 +09:52:13.745-0700 871072765103468574 GD0TVsg | motion#7913 +09:52:13.746-0700 871072763098566676 e774rOw | motion#2690 +09:52:13.780-0700 871072747671941150 5L6lcgA | motion#0558 +09:52:13.919-0700 871072762922426468 qp07P_o | motion#3511 +09:52:13.930-0700 871072761462796318 XEhnG4E | motion#5263 +09:52:13.950-0700 871072739413332018 jagcyOg | motion#8956 +09:52:14.002-0700 871072760191910058 A5CCcfo | motion#8438 +09:52:14.009-0700 871072758619062322 mn-8Avw | motion#2052 +09:52:14.072-0700 871072763098574899 RHoE064 | motion#4726 +09:52:14.132-0700 871072764314931272 4aejNWI | motion#4823 +09:52:14.163-0700 871072762171621388 7jWiUxo | motion#4138 +09:52:14.167-0700 871072762905624677 EB6R6mw | motion#2192 +09:52:14.194-0700 871072764520452106 0x3thmg | motion#5585 +09:52:14.225-0700 871072760024145950 YRVhMOY | motion#8252 +09:52:14.230-0700 871072761223733269 GNGHhVU | motion#1850 +09:52:14.280-0700 871072765225078785 YA1zR38 | motion#2033 +09:52:14.344-0700 871072765850054706 xfKZnaA | motion#6489 +09:52:14.352-0700 871072764398800988 Xvzpras | motion#1427 +09:52:14.391-0700 871072762393919568 RCd53Lw | motion#7011 +09:52:14.414-0700 871072766990897203 0Meu2xE | motion#5187 +09:52:14.417-0700 871072763518025728 ZdBPqn8 | motion#7786 +09:52:14.432-0700 871072764197470238 aeoroXk | motion#8768 +09:52:14.457-0700 871072769587159081 ooNX0hA | motion#2364 +09:52:14.458-0700 871072762138083348 4Ppd764 | motion#9428 +09:52:14.458-0700 871072763350220861 dXA1yZ4 | motion#5695 +09:52:14.488-0700 871072762968563772 j9jLPtw | motion#9102 +09:52:14.491-0700 871072761416671263 T1nI3X0 | motion#4214 +09:52:14.494-0700 871072765111844904 dQE3fo8 | motion#1411 +09:52:14.513-0700 871072758300307496 PKqnqsc | motion#4888 +09:52:14.567-0700 871072755888582656 1EQ7LcA | motion#7049 +09:52:14.605-0700 871072760015773767 4XqRjPo | motion#7750 +09:52:14.626-0700 871072765392879676 TG4VZ_o | motion#3243 +09:52:14.630-0700 871072763153100901 uaJIK4w | motion#4284 +09:52:14.678-0700 871072752226926612 EnazqO4 | motion#8366 +09:52:14.690-0700 871072751492927549 Q3uG1oo | motion#8809 +09:52:14.697-0700 871072764818247711 O5Dfr70 | motion#8065 +09:52:14.699-0700 871072766147846205 aE0_F14 | motion#8009 +09:52:14.743-0700 871072764205887599 j1B3PTY | motion#2375 +09:52:14.746-0700 871072766860853258 DJzNi1A | motion#5796 +09:52:14.783-0700 871072762746249266 3-nYKpE | motion#9275 +09:52:14.817-0700 871072766126862336 QodfsrE | motion#8206 +09:52:14.833-0700 871072769469743114 nMsFZl8 | motion#6600 +09:52:14.929-0700 871072765246054440 TIyiBoY | motion#4211 +09:52:14.932-0700 871072769088028732 Pftscbo | motion#8623 +09:52:14.935-0700 871072767989137470 lUIbo-Q | motion#6394 +09:52:14.949-0700 871072766898618398 3w1ZGfc | motion#5784 +09:52:15.007-0700 871072768790233098 M761J7o | motion#8565 +09:52:15.089-0700 871072763526410310 IOvP-NE | motion#3971 +09:52:15.090-0700 871072766080725014 jxo1UR4 | motion#8675 +09:52:15.139-0700 871072766919594044 g_-PPuI | motion#3239 +09:52:15.379-0700 871072770920960031 qBGL39Q | motion#6445 +09:52:15.388-0700 871072756643553351 fK9nuWY | motion#4440 +09:52:15.398-0700 871072761345347584 bYqFP6k | motion#1604 +09:52:15.480-0700 871072769545236500 I4iLqdY | motion#4747 +09:52:15.523-0700 871072773039079464 eqrk2_8 | motion#5253 +09:52:15.536-0700 871072770694479874 QoXRCc8 | motion#2118 +09:52:15.610-0700 871072769360687104 wBdMlUg | motion#8652 +09:52:15.612-0700 871072768391774238 EQCquEQ | motion#4677 +09:52:15.642-0700 871072771894050877 hUZea2Q | motion#4411 +09:52:15.647-0700 871072769331318794 620TRjg | motion#1800 +09:52:15.712-0700 871072771671752786 5jCOOM8 | motion#4069 +09:52:15.795-0700 871072772447670322 ZVz-IkQ | motion#7578 +09:52:15.845-0700 871072773835993108 6Kj1BYs | motion#3889 +09:52:15.929-0700 871072771894042697 ABgKO6k | motion#4576 +09:52:16.024-0700 871072770719612989 8zdv-5o | motion#2237 +09:52:16.102-0700 871072772388950058 JU7CsIg | motion#1795 +09:52:16.136-0700 871072754693202000 u5Osw0w | motion#1972 +09:52:16.251-0700 871072769532657685 fpeGraw | motion#0633 +09:52:16.291-0700 871072771856289802 08cAHrA | motion#9477 +09:52:16.291-0700 871072769004171326 7_VWAto | motion#1368 +09:52:16.359-0700 871072776935591977 7tJqHwI | motion#9554 +09:52:16.364-0700 871072776491008010 c1a0I6A | motion#2001 +09:52:16.391-0700 871072769708793946 y6tvXTM | motion#1647 +09:52:16.442-0700 871072775958298704 Ibbz0aM | motion#1015 +09:52:16.443-0700 871072773462712390 o3LMcoI | motion#5271 +09:52:16.450-0700 871072770367303732 9NaaW7A | motion#1617 +09:52:16.458-0700 871072769251614780 8-sj_1I | motion#0913 +09:52:16.557-0700 871072760892379136 MTS9tEQ | motion#6016 +09:52:16.558-0700 871072760137404516 EKG-s1k | motion#4893 +09:52:16.611-0700 871072770874814575 T_g6xVw | motion#6894 +09:52:16.624-0700 871072773164916769 -riBomM | motion#4381 +09:52:16.637-0700 871072770929340446 vHT1UPk | motion#9340 +09:52:16.642-0700 871072773198467113 UZgEPuc | motion#0363 +09:52:16.658-0700 871072771101294652 OwnFXNM | motion#9042 +09:52:16.688-0700 871072771239735307 ABG7D6U | motion#3111 +09:52:16.725-0700 871072768836395069 SRpmdP0 | motion#7531 +09:52:16.977-0700 871072777606668288 WqtIpps | motion#3842 +09:52:17.018-0700 871072770426032200 VQpKJrE | motion#0288 +09:52:17.104-0700 871072769608142848 iEXgsqY | motion#6940 +09:52:17.125-0700 871072776465809470 VK1i_hs | motion#3345 +09:52:17.165-0700 871072763983585341 S3cl4hw | motion#1990 +09:52:17.227-0700 871072769293570139 3mKhRPk | motion#3311 +09:52:17.255-0700 871072773567545394 k60qbTY | motion#7271 +09:52:17.259-0700 871072773349462076 O76bCuM | motion#9429 +09:52:17.312-0700 871072773898924032 86yrpVA | motion#5206 +09:52:17.324-0700 871072773911506974 SLd6Kv0 | motion#0624 +09:52:17.373-0700 871072773601124362 5_WFn48 | motion#7568 +09:52:17.381-0700 871072776738459658 dX_ciTk | motion#4825 +09:52:17.412-0700 871072758329667594 AXqQD1U | motion#9173 +09:52:17.467-0700 871072777573134346 gLhHOMs | motion#6102 +09:52:17.488-0700 871072772766445589 CH-ah8g | motion#9044 +09:52:17.515-0700 871072774133780500 i_j1L9s | motion#8466 +09:52:17.520-0700 871072771952742411 Pz9fS18 | motion#7557 +09:52:17.537-0700 871072768182079529 LW2Znyc | motion#4698 +09:52:17.604-0700 871072776511971368 ACXMPDk | motion#5029 +09:52:17.612-0700 871072775438225478 wwxftrw | motion#1795 +09:52:17.636-0700 871072759449522207 8IPApcs | motion#5920 +09:52:17.642-0700 871072747487375391 pvETT8k | motion#3720 +09:52:17.671-0700 871072776176431124 Mns64So | motion#9149 +09:52:17.677-0700 871072771030007860 BuKGLmI | motion#2682 +09:52:17.726-0700 871072761336971274 QFOTDaI | motion#8881 +09:52:17.728-0700 871072779544436828 6X0cDMo | motion#3304 +09:52:17.744-0700 871072757335592990 -Pytf88 | motion#7396 +09:52:17.758-0700 871072776621019136 7ZIrDTI | motion#4872 +09:52:17.795-0700 871072762813366282 CfcQMuA | motion#3149 +09:52:17.810-0700 871072763723526214 1GiP9Pw | motion#8290 +09:52:17.830-0700 871072779615731742 kaLg3ds | motion#0167 +09:52:17.892-0700 871072784871194725 R_QLz-Q | motion#4416 +09:52:17.921-0700 871072781599645726 Tq_uy_Q | motion#2359 +09:52:17.921-0700 871072760623955968 ciwcvHA | motion#4675 +09:52:17.934-0700 871072780425261056 LyGu9-c | motion#9947 +09:52:17.993-0700 871072775631151165 UQpeZqk | motion#1636 +09:52:17.996-0700 871072763014684703 yC7ssYk | motion#6203 +09:52:18.042-0700 871072783784894495 vt5_Iwk | motion#4774 +09:52:18.054-0700 871072770954526760 tjLddLg | motion#9527 +09:52:18.116-0700 871072780681105430 N7lRRzA | motion#3761 +09:52:18.122-0700 871072782161674250 z_zwKy4 | motion#9130 +09:52:18.123-0700 871072782925045761 nPqV0yY | motion#1252 +09:52:18.142-0700 871072774033121300 p1KlsPc | motion#6915 +09:52:18.148-0700 871072772028260382 OtqF50g | motion#5118 +09:52:18.199-0700 871072777090785321 nd1njI8 | motion#1051 +09:52:18.206-0700 871072773215252501 z42lHGg | motion#6374 +09:52:18.278-0700 871072784208498748 EIHQv60 | motion#0935 +09:52:18.318-0700 871072782799233024 nlI4HWc | motion#4955 +09:52:18.372-0700 871072770279239700 b2ylzTU | motion#2007 +09:52:18.392-0700 871072784107839498 W8Gajtg | motion#7819 +09:52:18.395-0700 871072772422512753 x0dTjBQ | motion#3057 +09:52:18.403-0700 871072778537811988 ScLde-c | motion#0567 +09:52:18.483-0700 871072757658550293 9FJUT6g | motion#8275 +09:52:18.499-0700 871072778508447834 RbpQB8A | motion#2349 +09:52:18.513-0700 871072784883781712 fAtFPRY | motion#6474 +09:52:18.525-0700 871072778307108875 swRfkhY | motion#6407 +09:52:18.540-0700 871072764973449287 3DHqsgE | motion#0198 +09:52:18.554-0700 871072778076430336 fah-wwI | motion#9430 +09:52:18.659-0700 871072782153293854 7aEe4kM | motion#9185 +09:52:18.730-0700 871072782845378562 NmnOGmY | motion#9397 +09:52:18.760-0700 871072777669574746 W8mMNCA | motion#1178 +09:52:18.774-0700 871072781343797268 MB0bR9w | motion#2422 +09:52:18.830-0700 871072783373832242 XjPFVMs | motion#6041 +09:52:18.847-0700 871072779162763265 QlTgRJ0 | motion#1618 +09:52:18.889-0700 871072782245560340 L548erQ | motion#1214 +09:52:18.921-0700 871072777988354118 UpCf9o0 | motion#4876 +09:52:18.978-0700 871072786297286666 uyuaL6E | motion#4775 +09:52:19.047-0700 871072781838725181 HwrRwQ0 | motion#7605 +09:52:19.060-0700 871072781964574791 0T35_MU | motion#3610 +09:52:19.080-0700 871072783352885259 CIlQMTs | motion#3754 +09:52:19.091-0700 871072779393450014 KsFMyww | motion#2944 +09:52:19.130-0700 871072778227429388 uh5GBrM | motion#0576 +09:52:19.138-0700 871072780534304779 SsZHpXM | motion#4146 +09:52:19.184-0700 871072783361277993 XXmcEeI | motion#1262 +09:52:19.211-0700 871072785122877490 fkKVpkI | motion#5981 +09:52:19.236-0700 871072787618472016 zH0PzVA | motion#9761 +09:52:19.254-0700 871072781599657994 DnA-6uo | motion#9846 +09:52:19.279-0700 871072784703434763 FZRj5NI | motion#6366 +09:52:19.282-0700 871072747009212416 PG3DjDo | motion#5846 +09:52:19.411-0700 871072782899871756 c68LIZw | motion#1503 +09:52:19.424-0700 871072785269669889 DWd3riQ | motion#4688 +09:52:19.457-0700 871072775790551051 i_YPtSQ | motion#1820 +09:52:19.483-0700 871072779531862127 Qhjg4vc | motion#3739 +09:52:19.496-0700 871072772464459787 Gw54y7M | motion#5944 +09:52:19.523-0700 871072777359200257 7RzxZpk | motion#4913 +09:52:19.570-0700 871072792873959504 TCu5k3w | motion#6319 +09:52:19.609-0700 871072789883412530 tgAYVF4 | motion#6762 +09:52:19.646-0700 871072780639150090 v-o83sg | motion#4399 +09:52:19.669-0700 871072774402228264 64kRXCY | motion#9037 +09:52:19.765-0700 871072783164133447 44q8JtM | motion#1721 +09:52:19.907-0700 871072773454303293 OoSwyLw | motion#5604 +09:52:19.917-0700 871072783159922769 Yr85KWE | motion#9765 +09:52:20.051-0700 871072786603470850 P_NNfOw | motion#9963 +09:52:20.166-0700 871072786632822796 tctpT24 | motion#9660 +09:52:20.245-0700 871072786821558332 eq3frhI | motion#6678 +09:52:20.276-0700 871072788922900520 TVSXocs | motion#1251 +09:52:20.373-0700 871072789627539507 K1yULJg | motion#0961 +09:52:20.421-0700 871072778697183282 vs0Dz1c | motion#2945 +09:52:20.428-0700 871072793591173190 oT8vp8c | motion#5287 +09:52:20.435-0700 871072790776778755 5-XChvY | motion#9500 +09:52:20.472-0700 871072781641596949 CqmH62w | motion#8459 +09:52:20.500-0700 871072789224886343 NzPNpYo | motion#9710 +09:52:20.526-0700 871072790403481620 1tX1UDY | motion#5013 +09:52:20.538-0700 871072775647928370 j_wcdI4 | motion#5937 +09:52:20.675-0700 871072786259509250 J4SWliU | motion#3719 +09:52:20.678-0700 871072790734835782 VRP7RNo | motion#8130 +09:52:20.711-0700 871072786406342686 nurqOHM | motion#1441 +09:52:20.744-0700 871072777313087498 XXclMuo | motion#4521 +09:52:20.760-0700 871072775698268230 4A5tzSo | motion#8224 +09:52:20.812-0700 871072783906525254 oC-fALA | motion#9913 +09:52:20.834-0700 871072786385346621 DhqachM | motion#9713 +09:52:20.898-0700 871072773513052251 Tx-Q_e8 | motion#2786 +09:52:20.996-0700 871072786020458507 -m17JOU | motion#4546 +09:52:21.012-0700 871072790093123585 8Vmogac | motion#7840 +09:52:21.034-0700 871072788407013376 N07YOmc | motion#0037 +09:52:21.044-0700 871072795071770694 2XCZC_Q | motion#0086 +09:52:21.051-0700 871072779829645395 fDjIDkg | motion#9365 +09:52:21.053-0700 871072784921530368 JCXsY8Y | motion#5626 +09:52:21.076-0700 871072772414136372 DCkJXno | motion#5668 +09:52:21.096-0700 871072787509444649 pnGh3xI | motion#6242 +09:52:21.098-0700 871072789317189632 k7wXyY0 | motion#8451 +09:52:21.113-0700 871072785697493124 zrFM3u4 | motion#4064 +09:52:21.130-0700 871072790508351569 w0znp3Y | motion#5036 +09:52:21.190-0700 871072788973256736 8AeICKA | motion#9940 +09:52:21.197-0700 871072795155652618 TNqHIVM | motion#3395 +09:52:21.213-0700 871072790650978324 Yk1FPe0 | motion#3992 +09:52:21.302-0700 871072792060244008 C6wQq-Q | motion#0249 +09:52:21.310-0700 871072779447988294 kjcRYWg | motion#8914 +09:52:21.355-0700 871072794073513994 PmzEXkg | motion#2356 +09:52:21.362-0700 871072778881753108 KfN0B3c | motion#1315 +09:52:21.417-0700 871072792928473168 3TMjn-o | motion#4068 +09:52:21.502-0700 871072791582093322 joTawIg | motion#6414 +09:52:21.517-0700 871072797097607188 3B0w5r0 | motion#5087 +09:52:21.576-0700 871072796552343595 rwjIpgQ | motion#9452 +09:52:21.621-0700 871072764432351242 tHF9-48 | motion#4275 +09:52:21.688-0700 871072797584158740 561jgyI | motion#1802 +09:52:21.697-0700 871072788440580116 a2hqxnQ | motion#8268 +09:52:21.703-0700 871072795981914122 stq0hd0 | motion#2893 +09:52:21.727-0700 871072795516338186 ePfiBwA | motion#7107 +09:52:21.751-0700 871072781796773939 K3T2au8 | motion#6361 +09:52:21.758-0700 871072793922535424 nOB9iLY | motion#5292 +09:52:21.813-0700 871072787161305119 baThOf0 | motion#5581 +09:52:21.837-0700 871072792471273494 aWfmdPw | motion#8459 +09:52:22.043-0700 871072778864963614 ZXyVLGY | motion#4569 +09:52:22.049-0700 871072790156038185 plhZV-Y | motion#7217 +09:52:22.088-0700 871072794941734943 vPHBzG4 | motion#4666 +09:52:22.127-0700 871072797475086408 OqWvL_8 | motion#8983 +09:52:22.183-0700 871072798381060096 jJnAQa4 | motion#8406 +09:52:22.327-0700 871072790197989407 Nb5vDwI | motion#8368 +09:52:22.337-0700 871072802344685618 36z_Ehg | motion#4001 +09:52:22.386-0700 871072788448960562 BafUmi8 | motion#4065 +09:52:22.391-0700 871072783432556555 Ywy7PVo | motion#6677 +09:52:22.415-0700 871072796036456468 WBZZIAc | motion#4222 +09:52:22.429-0700 871072788763533323 sOIUZug | motion#7796 +09:52:22.454-0700 871072791657578526 J4_XMc0 | motion#4229 +09:52:22.518-0700 871072799165403146 piGgRJM | motion#3402 +09:52:22.536-0700 871072783180922911 ROUG_IY | motion#4664 +09:52:22.635-0700 871072799597396008 oXFmcPo | motion#3786 +09:52:22.652-0700 871072792597102622 hElYeM4 | motion#3463 +09:52:22.709-0700 871072796904665118 XQ2qkJs | motion#5066 +09:52:22.773-0700 871072803066118225 0GQnY3E | motion#8480 +09:52:22.793-0700 871072798376853514 rKkpcV4 | motion#3429 +09:52:22.795-0700 871072799123451965 9PhRE34 | motion#4095 +09:52:22.804-0700 871072800780193854 RTd3YWA | motion#0967 +09:52:22.813-0700 871072798720794674 rRqOZUA | motion#9965 +09:52:22.821-0700 871072799836483644 e3H05Yg | motion#3970 +09:52:22.846-0700 871072786637000795 SpNLzOU | motion#9629 +09:52:22.865-0700 871072791846322196 myG-ynE | motion#8806 +09:52:22.894-0700 871072800411119676 tbP607g | motion#3807 +09:52:22.913-0700 871072792311918592 sn2mL0o | motion#1366 +09:52:22.945-0700 871072798574002226 5z0FDgQ | motion#2611 +09:52:23.011-0700 871072795281481738 vmm9U94 | motion#0399 +09:52:23.017-0700 871072797659639870 Pj1rEV0 | motion#6800 +09:52:23.113-0700 871072800406900797 ClcSLzg | motion#3082 +09:52:23.118-0700 871072785496174613 07tLkXM | motion#0273 +09:52:23.223-0700 871072800239136829 pU9seFc | motion#3191 +09:52:23.239-0700 871072798972473345 d2C2_iw | motion#3669 +09:52:23.261-0700 871072797290549269 Xc49VHE | motion#2227 +09:52:23.279-0700 871072796116135966 HW5oroY | motion#4215 +09:52:23.283-0700 871072797840003132 tx1tedw | motion#9249 +09:52:23.320-0700 871072803967885373 gPsq19M | motion#4355 +09:52:23.334-0700 871072799274450944 ndOPK3E | motion#2164 +09:52:23.372-0700 871072788813873264 TgY3k6M | motion#4105 +09:52:23.492-0700 871072796388765696 34alBSI | motion#0263 +09:52:23.512-0700 871072805821767701 pvKeKPo | motion#8688 +09:52:23.646-0700 871072794341965854 Ak1l6ro | motion#2458 +09:52:23.671-0700 871072788696432691 Uzwwqqw | motion#4668 +09:52:23.679-0700 871072798351704104 75KD2g0 | motion#4876 +09:52:23.687-0700 871072789942116412 -ZJjRCc | motion#8356 +09:52:23.694-0700 871072792567750657 zZSBeTk | motion#4445 +09:52:23.697-0700 871072791695343667 UMtGjI8 | motion#9795 +09:52:23.697-0700 871072798917935165 hPUT-Fw | motion#0430 +09:52:23.706-0700 871072801774252052 t-ull-0 | motion#1653 +09:52:23.737-0700 871072799614177330 vnyPlwM | motion#7413 +09:52:23.749-0700 871072797923901450 Il0sXdo | motion#7882 +09:52:23.752-0700 871072802738929694 pX8x3I0 | motion#2774 +09:52:23.755-0700 871072807377842176 AtFhFWo | motion#0287 +09:52:23.767-0700 871072804655747112 gop-1tA | motion#8588 +09:52:23.779-0700 871072804118880267 pOzUkBU | motion#1013 +09:52:23.781-0700 871072801015074867 3YT9470 | motion#2905 +09:52:23.784-0700 871072795839328266 mUxN-QY | motion#9805 +09:52:23.798-0700 871072798339137537 9Wz55YA | motion#4821 +09:52:23.830-0700 871072791020072980 3woUU7M | motion#0930 +09:52:23.902-0700 871072802306945084 9XGneqo | motion#9241 +09:52:23.909-0700 871072803871399996 0zD1jIg | motion#6928 +09:52:23.931-0700 871072797907120238 MLFb8bo | motion#6968 +09:52:23.936-0700 871072805360398399 ve1R6IA | motion#6453 +09:52:23.982-0700 871072805549142058 ftn4n3Q | motion#3862 +09:52:24.008-0700 871072800759222282 bZLZzfc | motion#2559 +09:52:24.031-0700 871072799077318657 fOoOxh0 | motion#3368 +09:52:24.033-0700 871072796384579615 XNPoUGw | motion#5482 +09:52:24.046-0700 871072802306920488 xUR4rxk | motion#4701 +09:52:24.072-0700 871072796753657886 3ICC4sA | motion#5792 +09:52:24.106-0700 871072792790069348 l0aWiHQ | motion#0581 +09:52:24.108-0700 871072809512747039 gYXiVbQ | motion#2565 +09:52:24.114-0700 871072803158360105 iDXAGyc | motion#3039 +09:52:24.262-0700 871072787819810857 R0pYR0I | motion#1446 +09:52:24.376-0700 871072802793488427 3h_3bYA | motion#7194 +09:52:24.378-0700 871072804429238342 Uo14vXQ | motion#6755 +09:52:24.405-0700 871072806576734258 yp4VhFs | motion#8502 +09:52:24.406-0700 871072797378621492 IyZaSOw | motion#3848 +09:52:24.458-0700 871072799584817232 yV786Mg | motion#2723 +09:52:24.483-0700 871072808153780294 E2mTcXo | motion#3327 +09:52:24.489-0700 871072806220202054 d1NjJ1c | motion#2166 +09:52:24.510-0700 871072804496343041 0F6Rp_s | motion#8863 +09:52:24.541-0700 871072809567273060 72X8Y7o | motion#1512 +09:52:24.589-0700 871072806564143177 Wwqf96E | motion#7049 +09:52:24.622-0700 871072806207639623 symKp5Y | motion#8313 +09:52:24.767-0700 871072789581426748 keAj03U | motion#7109 +09:52:24.785-0700 871072807860174869 Kju6wTQ | motion#4942 +09:52:24.814-0700 871072806966808657 q1iCWcA | motion#7183 +09:52:24.822-0700 871072807197487114 2tMq8Zk | motion#0559 +09:52:24.835-0700 871072806270537728 E2w7FXA | motion#6060 +09:52:24.840-0700 871072792852971550 EiISwbk | motion#4199 +09:52:24.864-0700 871072803707834408 Tmv_nx0 | motion#6764 +09:52:24.881-0700 871072808812310619 JgO31lk | motion#5277 +09:52:24.889-0700 871072806304096327 Vs912Vc | motion#1417 +09:52:24.915-0700 871072810682962010 gpx4XEw | motion#3226 +09:52:24.930-0700 871072805268111461 siVT6jY | motion#5713 +09:52:24.965-0700 871072804882231376 cnoZHpI | motion#3597 +09:52:25.006-0700 871072806652239962 TV7pNHo | motion#0861 +09:52:25.022-0700 871072814407503922 AfVUdh0 | motion#0184 +09:52:25.054-0700 871072803934310440 HzZir_U | motion#4956 +09:52:25.057-0700 871072802688610346 HPU7zFU | motion#1362 +09:52:25.102-0700 871072808774537276 0mk1Unk | motion#2172 +09:52:25.109-0700 871072806815813642 mG9SbNg | motion#1071 +09:52:25.120-0700 871072806396362813 0H8ppZM | motion#0278 +09:52:25.201-0700 871072799089885194 pm4on00 | motion#0330 +09:52:25.256-0700 871072794773975050 hV7ar0k | motion#1102 +09:52:25.336-0700 871072812490686555 ZSZCws0 | motion#7624 +09:52:25.344-0700 871072806522224660 E7Ighig | motion#2987 +09:52:25.351-0700 871072809789566986 WknT6I4 | motion#6310 +09:52:25.371-0700 871072812624928790 QfT5LGQ | motion#8598 +09:52:25.377-0700 871072808820670524 KGPLioI | motion#8509 +09:52:25.415-0700 871072793347899453 -aRzofE | motion#6707 +09:52:25.461-0700 871072801434505226 Cwm8-Z4 | motion#7414 +09:52:25.585-0700 871072806975205417 bjUB_LE | motion#6278 +09:52:25.599-0700 871072810259325018 dx6bu4Y | motion#8754 +09:52:25.621-0700 871072803737174047 mK204KI | motion#0211 +09:52:25.637-0700 871072813086289971 2AKbxPE | motion#4722 +09:52:25.707-0700 871072798389469235 _K6zuQk | motion#1200 +09:52:25.744-0700 871072811865743411 PwGwTPk | motion#7981 +09:52:25.984-0700 871072813258256416 ZW4NrBQ | motion#9850 +09:52:26.021-0700 871072813413458001 Wn6WLG8 | motion#4564 +09:52:26.040-0700 871072809391095828 2pBC3RU | motion#4255 +09:52:26.165-0700 871072809676316672 qe39Aus | motion#7196 +09:52:26.178-0700 871072813593788446 ZWgz1qQ | motion#6946 +09:52:26.182-0700 871072809739247636 MlqMmZc | motion#9567 +09:52:26.203-0700 871072815665782846 AU6Nl8M | motion#5972 +09:52:26.209-0700 871072807189094421 DRRg1rg | motion#3578 +09:52:26.258-0700 871072814260690975 IKqoAMc | motion#8136 +09:52:26.272-0700 871072805356204053 xmMf-6A | motion#1567 +09:52:26.304-0700 871072815355428954 Ry3NdQQ | motion#4773 +09:52:26.325-0700 871072806979399701 mghHVa0 | motion#8174 +09:52:26.407-0700 871072810078978048 uUJ7Fp4 | motion#3780 +09:52:26.422-0700 871072813568647178 MyDbFNs | motion#9132 +09:52:26.425-0700 871072812931117086 nrMjI68 | motion#1058 +09:52:26.426-0700 871072816093597716 dCG4Bqc | motion#3011 +09:52:26.463-0700 871072813962895480 ZIxsS8g | motion#8002 +09:52:26.467-0700 871072812117426216 MQztR_c | motion#9244 +09:52:26.484-0700 871072815934234715 EuYIuFo | motion#7124 +09:52:26.496-0700 871072813279215706 3IwAxuk | motion#7953 +09:52:26.529-0700 871072813002399765 7uX60zk | motion#0830 +09:52:26.544-0700 871072812524261457 g1ly2sc | motion#7096 +09:52:26.548-0700 871072801174454322 qKrHPpw | motion#0816 +09:52:26.572-0700 871072815359590460 p7G8vOM | motion#4686 +09:52:26.590-0700 871072807587545118 sGLKObQ | motion#9669 +09:52:26.604-0700 871072816424968212 pUYypn0 | motion#3894 +09:52:26.617-0700 871072820854153226 2OfIKe8 | motion#3628 +09:52:26.620-0700 871072811416977450 RrXYicY | motion#3528 +09:52:26.689-0700 871072813296001071 Mak1ppw | motion#1326 +09:52:26.706-0700 871072807860191233 iuhCWiU | motion#1382 +09:52:26.723-0700 871072817423220736 Yh6CNPE | motion#1232 +09:52:26.732-0700 871072819902042112 AYfCoiU | motion#7011 +09:52:26.743-0700 871072814365540372 QZLOOo4 | motion#9489 +09:52:26.748-0700 871072816047460442 fumF6Kc | motion#0765 +09:52:26.753-0700 871072809978302504 rGmPcpc | motion#7083 +09:52:26.766-0700 871072815577727057 xuk1jUg | motion#9401 +09:52:26.767-0700 871072809131073576 YGS9BkU | motion#4809 +09:52:26.782-0700 871072812440379462 F9Sc-vo | motion#0291 +09:52:26.832-0700 871072816001327104 ZkChTno | motion#1203 +09:52:26.929-0700 871072813824503868 FlhxBYg | motion#9320 +09:52:26.956-0700 871072816575959070 JZW9k18 | motion#3949 +09:52:27.064-0700 871072822569599016 mB63jWI | motion#3561 +09:52:27.085-0700 871072813715456041 YZ3xJHQ | motion#2599 +09:52:27.095-0700 871072819507769374 R2WBFjU | motion#2995 +09:52:27.113-0700 871072817976836097 Mhe5niM | motion#1852 +09:52:27.124-0700 871072820539559967 C65up6c | motion#3172 +09:52:27.124-0700 871072818211725343 YN-Ljuo | motion#8098 +09:52:27.167-0700 871072819193204786 UR5b458 | motion#3665 +09:52:27.169-0700 871072820514418739 8VfmrPg | motion#3480 +09:52:27.171-0700 871072814973714462 a1gQxHU | motion#9354 +09:52:27.247-0700 871072821005131817 FbASNV8 | motion#9019 +09:52:27.252-0700 871072819180630078 eR8arSg | motion#0801 +09:52:27.260-0700 871072812339691531 8kVL8rA | motion#5567 +09:52:27.266-0700 871072818887024731 6NJWy40 | motion#8057 +09:52:27.337-0700 871072820216623164 HlB8nNA | motion#2796 +09:52:27.378-0700 871072819784613938 2pYav20 | motion#2580 +09:52:27.404-0700 871072816521412750 GOCWLko | motion#0965 +09:52:27.415-0700 871072816869539910 Ihw3TDg | motion#6941 +09:52:27.428-0700 871072819402907700 f-6IcQ4 | motion#0385 +09:52:27.727-0700 871072806908100690 IRVaHFI | motion#9707 +09:52:27.852-0700 871072821969838090 KwpU9tw | motion#3451 +09:52:27.890-0700 871072821869158431 ryINDUM | motion#5822 +09:52:27.909-0700 871072824096342037 uUBD3M0 | motion#8741 +09:52:27.916-0700 871072816739516477 JgO5IH4 | motion#1444 +09:52:27.943-0700 871072822267629588 BK-mZL0 | motion#2460 +09:52:27.993-0700 871072822745788516 U6U01jE | motion#8729 +09:52:28.042-0700 871072821420380191 Ozd1Rw0 | motion#9955 +09:52:28.087-0700 871072815858745395 UlTdCJM | motion#4152 +09:52:28.288-0700 871072823274250270 1iAmmPA | motion#9150 +09:52:28.326-0700 871072804613799937 FYrOUG4 | motion#0430 +09:52:28.342-0700 871072822762569768 Gq1vdGw | motion#8793 +09:52:28.353-0700 871072820233396244 9WmID9s | motion#3588 +09:52:28.385-0700 871072823496544299 pgTY_Yg | motion#0392 +09:52:28.399-0700 871072821969846342 aIhJ8yE | motion#7477 +09:52:28.423-0700 871072823068737557 7oilNNg | motion#1381 +09:52:28.436-0700 871072827053322250 V3Y5ddk | motion#3939 +09:52:28.440-0700 871072826940080128 dER4i6k | motion#0419 +09:52:28.450-0700 871072824423497749 _M5NZzE | motion#7567 +09:52:28.467-0700 871072827015589899 mPB-wkI | motion#6905 +09:52:28.498-0700 871072818245296238 Ps9AB50 | motion#4579 +09:52:28.508-0700 871072822502514688 aLX23N8 | motion#9527 +09:52:28.532-0700 871072824784195605 ESUW8oE | motion#4333 +09:52:28.536-0700 871072823819505664 BjedBXs | motion#5144 +09:52:28.641-0700 871072806090182748 uouwooE | motion#0137 +09:52:28.698-0700 871072816005525585 B-hI1rk | motion#3350 +09:52:28.701-0700 871072824381566996 a4Hpjpw | motion#5871 +09:52:28.711-0700 871072825476284467 B4hlP-I | motion#8199 +09:52:28.786-0700 871072822582206514 JM6mi7g | motion#4289 +09:52:28.852-0700 871072825832800267 sD7PvLc | motion#9463 +09:52:28.853-0700 871072816391421983 VeaDIAA | motion#7178 +09:52:28.853-0700 871072814537539614 Zrv1ueg | motion#4266 +09:52:28.865-0700 871072827523100672 kxZ0XhQ | motion#3224 +09:52:28.870-0700 871072815523180665 zJb2-Z4 | motion#2825 +09:52:28.896-0700 871072816202674218 AnOruWU | motion#4343 +09:52:28.965-0700 871072820833173534 pHY6Mb4 | motion#3955 +09:52:28.983-0700 871072823471407115 y831F_0 | motion#7455 +09:52:29.003-0700 871072826210279434 -m6avfw | motion#6684 +09:52:29.014-0700 871072825044258877 ph1XIRc | motion#4654 +09:52:29.137-0700 871072817003769916 8sq_FGw | motion#6444 +09:52:29.182-0700 871072825346248735 W1zkPVU | motion#6135 +09:52:29.183-0700 871072827653120020 uIsvHqw | motion#1397 +09:52:29.205-0700 871072818098487318 NBLQOrI | motion#6622 +09:52:29.230-0700 871072823974699078 EP38hFk | motion#3905 +09:52:29.231-0700 871072816185884692 SLPI2ZY | motion#7487 +09:52:29.258-0700 871072805490425866 LILDlho | motion#2342 +09:52:29.259-0700 871072817964286002 Wt1bgg0 | motion#3582 +09:52:29.262-0700 871072824738054144 _1sSRgE | motion#1368 +09:52:29.420-0700 871072825476263988 z3YBrIo | motion#0812 +09:52:29.456-0700 871072827690864661 C652F9A | motion#3572 +09:52:29.471-0700 871072828898824212 M_uuIMA | motion#3017 +09:52:29.513-0700 871072825539190795 oUhnFGA | motion#1263 +09:52:29.523-0700 871072815351226429 7PD7C3s | motion#5564 +09:52:29.545-0700 871072832128446486 lw_P5BY | motion#2470 +09:52:29.587-0700 871072826369663037 vf-JWdc | motion#6125 +09:52:29.677-0700 871072815946817557 Bn-eASY | motion#4847 +09:52:29.690-0700 871072821953040444 UBWmmUI | motion#2801 +09:52:29.698-0700 871072826252230757 PwxCrAo | motion#1710 +09:52:29.774-0700 871072830689771581 0ZUZ3Zc | motion#5749 +09:52:29.875-0700 871072810892656671 GM8UquA | motion#5631 +09:52:29.885-0700 871072816240398347 h0gzN9k | motion#5292 +09:52:29.933-0700 871072828064141313 Din0PI0 | motion#8367 +09:52:30.031-0700 871072829456679012 fV7njX4 | motion#8174 +09:52:30.071-0700 871072834418515978 X4UGOJg | motion#1466 +09:52:30.105-0700 871072829788020736 dJyIo-Q | motion#9675 +09:52:30.129-0700 871072830119358525 nI2dYTo | motion#8596 +09:52:30.132-0700 871072833944580146 JWKyMSQ | motion#8712 +09:52:30.184-0700 871072831159545886 TOrE5x4 | motion#8923 +09:52:30.195-0700 871072829540556870 I31obqc | motion#7086 +09:52:30.218-0700 871072830131957791 GYEBJOQ | motion#7590 +09:52:30.219-0700 871072825891520542 WEd6puw | motion#4296 +09:52:30.254-0700 871072832191348807 kSWj0IM | motion#2314 +09:52:30.273-0700 871072824930996327 6jSFPY4 | motion#6452 +09:52:30.325-0700 871072826650669076 w3UMzYk | motion#8873 +09:52:30.451-0700 871072829351821404 3yMHx2Y | motion#6727 +09:52:30.474-0700 871072830249394187 CvPn98E | motion#9248 +09:52:30.495-0700 871072831423803442 shwubss | motion#1750 +09:52:30.496-0700 871072830123540550 BwtVCBQ | motion#3203 +09:52:30.510-0700 871072833709670421 sOpnRSo | motion#1297 +09:52:30.517-0700 871072830270357524 iwHERZo | motion#2839 +09:52:30.596-0700 871072831637717082 ZyA0Sdo | motion#7554 +09:52:30.646-0700 871072831096619059 ccaG0rw | motion#1602 +09:52:30.681-0700 871072833416101900 J2oELeA | motion#6251 +09:52:30.711-0700 871072832371716137 9U7zwbk | motion#8893 +09:52:30.729-0700 871072830492643389 4jmmyEY | motion#8159 +09:52:30.729-0700 871072829112746015 2kXIt3M | motion#5766 +09:52:30.752-0700 871072831545409567 J4nXobo | motion#9675 +09:52:30.786-0700 871072830509445222 AdNfTEg | motion#6257 +09:52:30.804-0700 871072832539471973 SNEsrBI | motion#9697 +09:52:30.846-0700 871072836888985630 2ChKVOM | motion#0273 +09:52:30.865-0700 871072835223838760 qk8Ja3o | motion#6853 +09:52:30.980-0700 871072831667048448 GbQC-j4 | motion#0974 +09:52:31.016-0700 871072829427286046 sU9s47o | motion#8567 +09:52:31.103-0700 871072831180513280 QMMiqp4 | motion#7378 +09:52:31.151-0700 871072835576152064 xHroHWk | motion#6851 +09:52:31.206-0700 871072835471290388 FV-mgbI | motion#8803 +09:52:31.263-0700 871072833944571937 00vI4SY | motion#4408 +09:52:31.368-0700 871072832203915284 iiveuUM | motion#8489 +09:52:31.426-0700 871072835278344203 87F-xLU | motion#8714 +09:52:31.490-0700 871072834842165278 SIdGdnQ | motion#8663 +09:52:31.490-0700 871072840512835635 X1jAGfo | motion#2217 +09:52:31.499-0700 871072834695352330 nd32Rac | motion#3566 +09:52:31.504-0700 871072832627552286 V1snPzo | motion#9104 +09:52:31.532-0700 871072832908558387 5iRsxr8 | motion#8379 +09:52:31.556-0700 871072831797080094 UG95kEo | motion#5712 +09:52:31.578-0700 871072828873662555 BM3oGqg | motion#8566 +09:52:31.597-0700 871072833877446686 IvFuNOc | motion#6330 +09:52:31.666-0700 871072831851610224 oUgAvQk | motion#4923 +09:52:31.687-0700 871072836419223572 TqCUJYo | motion#0579 +09:52:31.708-0700 871072814688530472 eEBcodE | motion#5130 +09:52:31.712-0700 871072836322738207 i2YYZfE | motion#2823 +09:52:31.746-0700 871072833348988999 cM8t0ZM | motion#3062 +09:52:31.754-0700 871072834728902759 kV0AcnY | motion#3526 +09:52:31.785-0700 871072833957138442 ZGdYHyU | motion#3539 +09:52:31.811-0700 871072834976362576 LZh77sM | motion#9646 +09:52:31.812-0700 871072835714547823 LhEaNcM | motion#3125 +09:52:31.835-0700 871072834414346342 yXMqDbI | motion#3997 +09:52:31.863-0700 871072837648134224 2MJ9ECw | motion#1119 +09:52:31.892-0700 871072835601330236 x-cHisY | motion#6051 +09:52:31.939-0700 871072834657595443 xyD7rSU | motion#8602 +09:52:31.947-0700 871072841720811580 _thQLBc | motion#1960 +09:52:31.966-0700 871072838235328523 8GF41Nc | motion#9392 +09:52:31.989-0700 871072835127353414 rgO9dA4 | motion#3837 +09:52:32.036-0700 871072832589824051 Dzc_zX0 | motion#4639 +09:52:32.054-0700 871072831692234814 To1GDGY | motion#4615 +09:52:32.062-0700 871072837694287873 -hJoNGs | motion#1428 +09:52:32.117-0700 871072837291614238 0OB-tqo | motion#0759 +09:52:32.148-0700 871072824016646204 LVIk5eI | motion#7589 +09:52:32.177-0700 871072837698457620 SmttzFw | motion#8525 +09:52:32.180-0700 871072837509726299 WmtHlkA | motion#0212 +09:52:32.372-0700 871072838885462036 WWcYLD0 | motion#9016 +09:52:32.373-0700 871072835009904720 FNXGt8s | motion#4024 +09:52:32.378-0700 871072837400686652 xw72gT0 | motion#7081 +09:52:32.386-0700 871072836154978364 QZfPP4g | motion#5655 +09:52:32.422-0700 871072837027377214 it9y2ZI | motion#1096 +09:52:32.500-0700 871072843360792687 sKWPLq8 | motion#7108 +09:52:32.524-0700 871072843251728384 dxez7I8 | motion#8540 +09:52:32.538-0700 871072839678185472 N2B0KZI | motion#6827 +09:52:32.554-0700 871072828307410976 Zb5f_18 | motion#5752 +09:52:32.556-0700 871072838302453831 12jeBX0 | motion#7098 +09:52:32.627-0700 871072838965157948 AqptrYc | motion#7176 +09:52:32.630-0700 871072828567461908 b0ja_PU | motion#4077 +09:52:32.682-0700 871072840126984284 5-iWtak | motion#6009 +09:52:32.684-0700 871072839661400084 0HMH2_Y | motion#1505 +09:52:32.767-0700 871072842026995723 vF39OWk | motion#8392 +09:52:32.791-0700 871072843834748968 WVEaKAE | motion#7540 +09:52:32.795-0700 871072845340475462 mnpW-sQ | motion#6791 +09:52:32.821-0700 871072838759620649 k1lwF8E | motion#3491 +09:52:32.888-0700 871072838105321502 xvl_4Xg | motion#1349 +09:52:32.901-0700 871072838705098753 cTgN5L4 | motion#4197 +09:52:32.952-0700 871072836960260096 WCWHZcA | motion#6476 +09:52:32.981-0700 871072845713797200 ujQMIfA | motion#3088 +09:52:33.159-0700 871072841490120724 cKYgNeM | motion#7790 +09:52:33.183-0700 871072840785485875 AR6rqcY | motion#9842 +09:52:33.199-0700 871072830761074778 LrqmekQ | motion#7968 +09:52:33.311-0700 871072846804303872 vvncpnU | motion#4066 +09:52:33.331-0700 871072842467397703 zqPhZRo | motion#7069 +09:52:33.356-0700 871072841292984341 rlXlhQw | motion#8845 +09:52:33.385-0700 871072849014714368 Y6gVfnY | motion#8298 +09:52:33.446-0700 871072832262668329 LS3lir8 | motion#5030 +09:52:33.448-0700 871072827481141268 tFakgfo | motion#4291 +09:52:33.466-0700 871072840282152960 1s-gddY | motion#1904 +09:52:33.477-0700 871072849333465088 sH6fcCY | motion#9154 +09:52:33.496-0700 871072842077319199 9-sz0K4 | motion#6591 +09:52:33.499-0700 871072836297564220 k3lSeZY | motion#6583 +09:52:33.532-0700 871072840533803038 3VPvYvw | motion#6867 +09:52:33.554-0700 871072844895891487 DauFKzQ | motion#2775 +09:52:33.607-0700 871072845155950593 Fs66tb8 | motion#6546 +09:52:33.608-0700 871072842639347732 k7w6w2k | motion#2621 +09:52:33.642-0700 871072844249981018 g6IDvIE | motion#9755 +09:52:33.708-0700 871072844598108160 As6Zf3g | motion#5205 +09:52:33.745-0700 871072844384178187 yL950Ik | motion#1616 +09:52:33.780-0700 871072832950534224 ybIW6Hk | motion#5953 +09:52:33.788-0700 871072844551954492 hemEeBY | motion#1036 +09:52:33.811-0700 871072844220629062 DigVkJk | motion#2358 +09:52:33.856-0700 871072846523273216 NAUtW4U | motion#8169 +09:52:33.897-0700 871072846363910244 Bi7EHJ4 | motion#7863 +09:52:33.966-0700 871072844883329094 jaXh_Mo | motion#0576 +09:52:33.980-0700 871072839883698226 JWedsXE | motion#1153 +09:52:33.995-0700 871072845143355422 BNZudjU | motion#4487 +09:52:34.016-0700 871072841930510368 ZUPIbmI | motion#1753 +09:52:34.039-0700 871072841662083124 yXPYIi0 | motion#0851 +09:52:34.103-0700 871072847802564610 e26IfK8 | motion#5965 +09:52:34.107-0700 871072845067866173 xZ_WlP4 | motion#0291 +09:52:34.137-0700 871072840118587422 p_aZIz4 | motion#1487 +09:52:34.186-0700 871072841049722940 jPueTrk | motion#7852 +09:52:34.202-0700 871072840466726912 nsjPjfs | motion#1314 +09:52:34.205-0700 871072844065406986 INOV9t4 | motion#2318 +09:52:34.284-0700 871072845046874134 fQ6CshU | motion#2164 +09:52:34.444-0700 871072845495689278 Lt5S-Y4 | motion#7240 +09:52:34.618-0700 871072846888198174 hckkE0k | motion#7067 +09:52:34.686-0700 871072833621590047 b0Yy_CU | motion#5071 +09:52:34.898-0700 871072845013319691 1aH6JXk | motion#3596 +09:52:34.908-0700 871072845629886495 aSm2dLc | motion#6541 +09:52:34.959-0700 871072847232114820 ewf0QtA | motion#1382 +09:52:34.979-0700 871072842278666291 1AQOUhs | motion#9489 +09:52:34.981-0700 871072846540079136 W6iX7Rs | motion#0181 +09:52:35.002-0700 871072849471885332 i1vz9Ts | motion#8864 +09:52:35.075-0700 871072848461037599 Co6l2bU | motion#0861 +09:52:35.130-0700 871072839745294367 A1bebIk | motion#3041 +09:52:35.309-0700 871072847697682472 dbMiL8I | motion#9340 +09:52:35.378-0700 871072855209680928 RII_v64 | motion#2541 +09:52:35.676-0700 871072852034609202 ebvKT5c | motion#9606 +09:52:35.696-0700 871072851371901009 gvo2xKM | motion#0770 +09:52:35.802-0700 871072852772790314 ObPmUyA | motion#2129 +09:52:35.846-0700 871072850709196820 4IOZwIQ | motion#2794 +09:52:35.880-0700 871072856526704693 SwCkBeo | motion#9956 +09:52:35.956-0700 871072853049630761 1mi0SLs | motion#1937 +09:52:35.979-0700 871072846791716864 fWXFZKU | motion#6008 +09:52:35.995-0700 871072853871710248 NKfC_Uw | motion#5023 +09:52:36.038-0700 871072849069236224 f2lvsEo | motion#3084 +09:52:36.099-0700 871072852441460786 2NAKJ5g | motion#2116 +09:52:36.105-0700 871072860557410305 sA2F3rs | motion#6707 +09:52:36.124-0700 871072851074097203 -wq23hA | motion#3831 +09:52:36.198-0700 871072846850457662 vs1OInM | motion#0750 +09:52:36.244-0700 871072845436969021 jzAjntQ | motion#6329 +09:52:36.345-0700 871072838776410143 8CF-gZI | motion#9187 +09:52:36.370-0700 871072853309657120 KdEjQcQ | motion#8874 +09:52:36.372-0700 871072850365259796 dPwU4GI | motion#6179 +09:52:36.436-0700 871072853255139349 QnkDWwE | motion#8570 +09:52:36.472-0700 871072849773887618 HyKzfg4 | motion#6146 +09:52:36.517-0700 871072853594865685 3-zGKvw | motion#4846 +09:52:36.529-0700 871072854865747989 WE0-hMI | motion#6483 +09:52:36.653-0700 871072851007000606 1Zhqcm0 | motion#1614 +09:52:36.665-0700 871072850398838795 AHblkn4 | motion#2789 +09:52:36.710-0700 871072864713986058 J4V_sVw | motion#6591 +09:52:36.752-0700 871072852672139324 0_iXwBg | motion#3806 +09:52:36.752-0700 871072853024456755 75WqHeM | motion#2997 +09:52:36.761-0700 871072854488281099 iOXWKLQ | motion#6993 +09:52:36.776-0700 871072862168031303 uGrTYpQ | motion#2840 +09:52:36.802-0700 871072847009841172 E86_av4 | motion#5943 +09:52:36.838-0700 871072852772802660 Pv39_zM | motion#8391 +09:52:37.002-0700 871072853523591199 mZYA7Qc | motion#4162 +09:52:37.058-0700 871072852953157663 ezJrzAM | motion#5032 +09:52:37.073-0700 871072854509223936 UJ_Zp6Q | motion#4520 +09:52:37.111-0700 871072856744804372 Yi4o5_g | motion#7683 +09:52:37.135-0700 871072860695830609 JvRPW0g | motion#5835 +09:52:37.136-0700 871072853150285884 Dl7ln9Q | motion#0091 +09:52:37.157-0700 871072857495580703 M0CqXyc | motion#9873 +09:52:37.158-0700 871072851061538887 ybFSrwo | motion#2738 +09:52:37.173-0700 871072848096141362 eGu6Lto | motion#1228 +09:52:37.184-0700 871072851204145223 -83eOKk | motion#8855 +09:52:37.282-0700 871072852407910461 bOxXBxE | motion#8710 +09:52:37.427-0700 871072849782263858 ytJPXlk | motion#5226 +09:52:37.452-0700 871072859148128317 JxZh5NE | motion#0866 +09:52:37.457-0700 871072862516158545 ZE6zajM | motion#5520 +09:52:37.552-0700 871072857139068939 AdnQUAs | motion#4407 +09:52:37.577-0700 871072853229989909 awUG1i0 | motion#3236 +09:52:37.606-0700 871072855197098014 Pm99PW8 | motion#3745 +09:52:37.608-0700 871072855952064514 gmnwtQA | motion#2996 +09:52:37.621-0700 871072853620039700 Vpo0Ggo | motion#9588 +09:52:37.633-0700 871072863891886080 mytgiwA | motion#0066 +09:52:37.668-0700 871072855784325120 scb9GAY | motion#9109 +09:52:37.676-0700 871072849497038918 vYxR1Uk | motion#0678 +09:52:37.700-0700 871072853158682694 90B85Wo | motion#2752 +09:52:37.732-0700 871072863359230012 AJ0SxEM | motion#7524 +09:52:37.742-0700 871072860993642518 A3LBrV0 | motion#1993 +09:52:37.748-0700 871072839686557736 duiGB4I | motion#9370 +09:52:37.806-0700 871072855113224232 bSgLlSQ | motion#1416 +09:52:37.842-0700 871072863375994900 1qhy3iE | motion#2274 +09:52:37.861-0700 871072862587473981 vC1Q7zo | motion#0535 +09:52:37.953-0700 871072864512651355 AN6kOXI | motion#6065 +09:52:37.983-0700 871072863195656212 qDQGD5A | motion#5252 +09:52:38.041-0700 871072863728324630 fXDIJ1M | motion#7198 +09:52:38.043-0700 871072855591374878 N0i72wc | motion#5976 +09:52:38.065-0700 871072868048461845 8cHlVDg | motion#0612 +09:52:38.067-0700 871072864172900382 T82p-PM | motion#7100 +09:52:38.087-0700 871072862616821781 m_XE4G4 | motion#0216 +09:52:38.137-0700 871072863334060112 mo1myVg | motion#7997 +09:52:38.291-0700 871072864646881321 _3udusU | motion#3940 +09:52:38.302-0700 871072860142202880 l4Hl_CE | motion#6646 +09:52:38.318-0700 871072857516556338 fag88GA | motion#1030 +09:52:38.349-0700 871072844241600512 AE6fdew | motion#2528 +09:52:38.355-0700 871072854584725526 edj1lXE | motion#2802 +09:52:38.377-0700 871072855645913199 CjTN1n8 | motion#8001 +09:52:38.404-0700 871072865678659644 jjOY1eA | motion#3403 +09:52:38.522-0700 871072850352685127 wuf59fU | motion#4774 +09:52:38.539-0700 871072847429238804 u5qVQT8 | motion#8928 +09:52:38.551-0700 871072864948879440 9n2oCz8 | motion#4617 +09:52:38.643-0700 871072857126473830 e--lEr4 | motion#7426 +09:52:38.646-0700 871072866349764619 CJCXLRo | motion#2328 +09:52:38.669-0700 871072854362435594 H9MGnAU | motion#1237 +09:52:38.669-0700 871072861568245770 JPnai5E | motion#1710 +09:52:38.671-0700 871072848691753101 pOEGE38 | motion#7705 +09:52:38.676-0700 871072857923399780 oKra0rc | motion#9989 +09:52:38.682-0700 871072855452950610 Ewn_D70 | motion#9038 +09:52:38.707-0700 871072853586481153 4riqvUg | motion#9205 +09:52:38.726-0700 871072856375697460 8ELMWY4 | motion#2683 +09:52:38.745-0700 871072862432264193 Dcyeafw | motion#1162 +09:52:38.774-0700 871072854291128370 bBmdhoE | motion#2013 +09:52:38.856-0700 871072863866748939 ZNjnyhY | motion#4046 +09:52:38.878-0700 871072865317945355 xjqbExQ | motion#3539 +09:52:38.925-0700 871072856421859328 ksMs8Ps | motion#6243 +09:52:38.935-0700 871072864453918751 6jmmZm0 | motion#0621 +09:52:39.021-0700 871072866106486815 5E9P_MI | motion#8590 +09:52:39.049-0700 871072867389947974 1Z75lJw | motion#8812 +09:52:39.075-0700 871072865179562034 YX5UOZk | motion#7867 +09:52:39.085-0700 871072864265199626 3Sw8iWs | motion#9690 +09:52:39.124-0700 871072856631558246 MZoGNNI | motion#8339 +09:52:39.233-0700 871072865116651560 KLfzD2A | motion#1674 +09:52:39.240-0700 871072862306451466 ZeBQ5T4 | motion#5228 +09:52:39.278-0700 871072864588136498 y8XX_vE | motion#3033 +09:52:39.367-0700 871072865649295381 ZHSZLWc | motion#1393 +09:52:39.496-0700 871072868413370398 qxo7RaY | motion#4879 +09:52:39.499-0700 871072871307431967 l__mHZQ | motion#7583 +09:52:39.501-0700 871072867855527946 mUXSGOs | motion#3128 +09:52:39.551-0700 871072867406729286 e5FHRo4 | motion#9027 +09:52:39.564-0700 871072864764330055 lXGaNKU | motion#0271 +09:52:39.608-0700 871072866051948585 pnCZ2hs | motion#1353 +09:52:39.642-0700 871072854366634075 XmjV-MU | motion#1646 +09:52:39.650-0700 871072853997539399 Pj7TBv8 | motion#8349 +09:52:39.659-0700 871072866970513468 Z7NheCs | motion#7456 +09:52:39.693-0700 871072871991095406 VE5oXw4 | motion#4907 +09:52:39.751-0700 871072875866644560 ICO_XZc | motion#8818 +09:52:39.776-0700 871072865854836796 G313dAg | motion#9403 +09:52:39.791-0700 871072869843607633 N2EMScw | motion#4100 +09:52:39.800-0700 871072870921539615 gnZbcGc | motion#2477 +09:52:39.853-0700 871072873412976690 QzNmBwg | motion#4543 +09:52:39.996-0700 871072865913561178 BZ8YOjk | motion#9651 +09:52:40.009-0700 871072866664349726 DmxsphM | motion#7502 +09:52:40.084-0700 871072866551078982 R4MFL3A | motion#9940 +09:52:40.253-0700 871072871714258959 hfD76N4 | motion#9843 +09:52:40.310-0700 871072857571074048 nH5w_A8 | motion#6440 +09:52:40.352-0700 871072867800977428 SG_c8YM | motion#6158 +09:52:40.519-0700 871072880132235345 ybOGrlI | motion#4153 +09:52:40.718-0700 871072835886514216 HHMFQ60 | motion#6323 +09:52:40.752-0700 871072873568153650 pTeWCd4 | motion#6534 +09:52:40.940-0700 871072877645025331 Prlmdfs | motion#4341 +09:52:40.974-0700 871072873811435580 dl9yQh4 | motion#6193 +09:52:40.990-0700 871072871970144306 MdRrMFg | motion#6700 +09:52:40.991-0700 871072873282945134 Pc7RUoM | motion#6049 +09:52:41.013-0700 871072875040342126 4TX3FKE | motion#0939 +09:52:41.025-0700 871072875073896469 aXlSIcs | motion#3111 +09:52:41.132-0700 871072871726866434 Vzdp8ts | motion#8703 +09:52:41.248-0700 871072879016546325 3gVh1H0 | motion#4308 +09:52:41.256-0700 871072871504572426 3cpq5VU | motion#2864 +09:52:41.271-0700 871072869638082580 A8goI4A | motion#7222 +09:52:41.286-0700 871072871886229645 5K2GDU0 | motion#0957 +09:52:41.317-0700 871072879423389706 9buG_Uk | motion#2456 +09:52:41.381-0700 871072871206756363 GBgnMtg | motion#9966 +09:52:41.399-0700 871072871978532934 Vh9i2fI | motion#6056 +09:52:41.573-0700 871072870082703391 d-T8kjg | motion#7873 +09:52:41.601-0700 871072875988275240 MmdUYCU | motion#3922 +09:52:41.610-0700 871072881877065768 tA6NsG4 | motion#6122 +09:52:41.641-0700 871072879909945344 55kHbfo | motion#3894 +09:52:41.723-0700 871072876139249755 o-OrLDQ | motion#3076 +09:52:41.800-0700 871072885068939264 aQjCn4Y | motion#1669 +09:52:41.864-0700 871072878412591195 lbnJ84Y | motion#4623 +09:52:41.876-0700 871072876093128764 lr9apbw | motion#2115 +09:52:41.885-0700 871072873639477248 CPt1f30 | motion#7087 +09:52:41.894-0700 871072875711430686 X_RDLIU | motion#1051 +09:52:41.977-0700 871072862541336626 bukyt4w | motion#4472 +09:52:42.040-0700 871072869596139591 N-9fJt0 | motion#5564 +09:52:42.090-0700 871072879423393853 vTnDkaI | motion#9845 +09:52:42.119-0700 871072881554124860 vqo5Cqk | motion#4179 +09:52:42.198-0700 871072882057412609 0nEL0Ro | motion#9094 +09:52:42.333-0700 871072881600266281 HjZEAaI | motion#4101 +09:52:42.341-0700 871072879645716510 cr-Iilc | motion#9291 +09:52:42.366-0700 871072885089894420 cHlcSwE | motion#5585 +09:52:42.458-0700 871072874394423326 G8AKVDI | motion#2880 +09:52:42.478-0700 871072884993433601 u5ic5_g | motion#5492 +09:52:42.490-0700 871072885211562104 FLkiqLQ | motion#4314 +09:52:42.526-0700 871072877036838964 Kedd4GM | motion#7442 +09:52:42.561-0700 871072885748424724 DFp8PO0 | motion#0290 +09:52:42.562-0700 871072877212991488 LEIMF_s | motion#2282 +09:52:42.569-0700 871072882757877760 r4jaLMs | motion#6568 +09:52:42.582-0700 871072877145899039 t6oMLkw | motion#8583 +09:52:42.593-0700 871072885991678024 VeX37Uc | motion#0893 +09:52:42.655-0700 871072885064745030 qAb3sP8 | motion#2312 +09:52:42.675-0700 871072877619847218 h7u-MXE | motion#0048 +09:52:42.697-0700 871072872708321291 g95pTIo | motion#1656 +09:52:42.716-0700 871072873693986886 IfXm3Fg | motion#7770 +09:52:42.753-0700 871072885677113354 IQ3q9Vc | motion#0779 +09:52:42.848-0700 871072867297685576 3dbSP1Y | motion#1144 +09:52:42.852-0700 871072884200722473 y2g2-wQ | motion#0665 +09:52:42.853-0700 871072876986531910 uK5d5ko | motion#5163 +09:52:42.890-0700 871072874755158096 bAjCy9Q | motion#7905 +09:52:42.902-0700 871072878072840242 q6a_5Cc | motion#6686 +09:52:42.973-0700 871072875577221190 MjG84Co | motion#0106 +09:52:43.013-0700 871072886360789092 r1OycwU | motion#3347 +09:52:43.053-0700 871072884313960489 6b1k-dw | motion#7408 +09:52:43.083-0700 871072882581700630 zek1qAA | motion#8760 +09:52:43.103-0700 871072884548837386 6QbHPqI | motion#5573 +09:52:43.159-0700 871072886130094100 crw5Xkk | motion#1263 +09:52:43.169-0700 871072885077315615 PHnjzrA | motion#8406 +09:52:43.184-0700 871072883160526888 J-TrgHo | motion#9712 +09:52:43.194-0700 871072830354247720 fPnGiTg | motion#5274 +09:52:43.298-0700 871072886922829834 STks-EI | motion#6926 +09:52:43.310-0700 871072886973157467 YG9s4Xk | motion#1565 +09:52:43.360-0700 871072868669227069 KIs8Fug | motion#8860 +09:52:43.480-0700 871072886490804224 VZVhvgI | motion#5575 +09:52:43.492-0700 871072888600543304 CVZkogg | motion#2313 +09:52:43.503-0700 871072887744892959 YmCmp8s | motion#6645 +09:52:43.577-0700 871072892408958987 u_IpK98 | motion#6012 +09:52:43.615-0700 871072888403427370 pOiLpbg | motion#0023 +09:52:43.638-0700 871072887010902066 fjQQdW4 | motion#3129 +09:52:43.671-0700 871072888164331571 rSInJ8U | motion#5625 +09:52:43.717-0700 871072885329002506 8ICVjxg | motion#1745 +09:52:43.777-0700 871072884871819284 qL56OZo | motion#8258 +09:52:43.827-0700 871072887405150328 W3sc1yM | motion#1609 +09:52:43.837-0700 871072881814147124 yNEWU1M | motion#4196 +09:52:43.990-0700 871072888692813844 mLfhgtU | motion#0010 +09:52:44.016-0700 871072871693320192 e9Uhibw | motion#0808 +09:52:44.027-0700 871072895516938300 V8UhfAI | motion#3277 +09:52:44.095-0700 871072883898736731 5Ww73Ek | motion#2184 +09:52:44.118-0700 871072889208733717 uZPV1a4 | motion#7144 +09:52:44.125-0700 871072875744985129 FQdYRFo | motion#0351 +09:52:44.145-0700 871072867066986556 Dh_KOA8 | motion#1354 +09:52:44.302-0700 871072887623278672 EfX9zKY | motion#2519 +09:52:44.313-0700 871072891213594676 C3sMfDI | motion#8411 +09:52:44.319-0700 871072887442915369 Pv7J8SI | motion#5633 +09:52:44.333-0700 871072888269176832 ejdLlww | motion#1641 +09:52:44.387-0700 871072890261495878 Crvj-do | motion#0489 +09:52:44.435-0700 871072889535885343 E7TsxE4 | motion#3699 +09:52:44.469-0700 871072888873168968 cxGy7Pw | motion#2762 +09:52:44.497-0700 871072877103972392 1wdbAnQ | motion#0188 +09:52:44.538-0700 871072893931491338 3LNO050 | motion#9118 +09:52:44.579-0700 871072888646664222 Qbddacw | motion#1280 +09:52:44.612-0700 871072889338736681 DGOfr4o | motion#5615 +09:52:44.659-0700 871072888600539187 dGzolcE | motion#1898 +09:52:44.661-0700 871072884611747851 fIbyfhg | motion#4910 +09:52:44.695-0700 871072890513133658 1uCCZ5U | motion#8177 +09:52:44.698-0700 871072893453369406 dknkKg0 | motion#0162 +09:52:44.707-0700 871072889275838464 4RUNaOc | motion#9259 +09:52:44.755-0700 871072889296781393 dnXvgHQ | motion#1096 +09:52:44.809-0700 871072892857749534 o1FvgEw | motion#4989 +09:52:44.824-0700 871072889502302299 Qm4wLC8 | motion#0464 +09:52:44.826-0700 871072890601242666 IOMNMtc | motion#8695 +09:52:44.872-0700 871072887803637790 corY2RA | motion#4404 +09:52:44.901-0700 871072888562794566 pmHRMQ8 | motion#4497 +09:52:44.950-0700 871072889145810996 e6Cut6o | motion#9142 +09:52:45.051-0700 871072893566599188 uEYy6sE | motion#2650 +09:52:45.139-0700 871072890882232390 qlMHvj0 | motion#0598 +09:52:45.158-0700 871072895638573167 C-C-y4k | motion#8961 +09:52:45.167-0700 871072895273693214 eDwJA74 | motion#4590 +09:52:45.182-0700 871072891477852220 9UbOrX8 | motion#8757 +09:52:45.182-0700 871072888139186206 1o4NR38 | motion#4996 +09:52:45.205-0700 871072894321590344 KmL_qc4 | motion#1847 +09:52:45.224-0700 871072893071687781 _KxsdwY | motion#6904 +09:52:45.237-0700 871072896641024012 ueUnrpU | motion#1081 +09:52:45.302-0700 871072891364601886 FMlA1Sw | motion#8792 +09:52:45.310-0700 871072893293953025 rrNXRgQ | motion#2709 +09:52:45.384-0700 871072882179063860 30G4Gqs | motion#0647 +09:52:45.391-0700 871072890664128542 JRxw6NQ | motion#1393 +09:52:45.447-0700 871072894405447680 on3JsdY | motion#2095 +09:52:45.470-0700 871072892505448528 OH12AiA | motion#0186 +09:52:45.825-0700 871072893801484360 i-Hzldw | motion#4381 +09:52:45.859-0700 871072894967488522 uJ3afMM | motion#6717 +09:52:45.867-0700 871072883777089607 t7QqlPs | motion#2415 +09:52:45.974-0700 871072902068457512 SpHzfS0 | motion#1655 +09:52:45.995-0700 871072902290735114 3LsOgDA | motion#2381 +09:52:46.048-0700 871072893545635881 PzYEx5U | motion#5788 +09:52:46.059-0700 871072896477446235 vpC-pAM | motion#9988 +09:52:46.086-0700 871072882942431263 D1OVFBM | motion#2397 +09:52:46.201-0700 871072901376405544 JmwUZdg | motion#2311 +09:52:46.275-0700 871072894237691904 LQPISYg | motion#4825 +09:52:46.286-0700 871072902731169852 AdT0Y-Y | motion#4082 +09:52:46.306-0700 871072901418332170 9qy9TWQ | motion#9160 +09:52:46.388-0700 871072902844407808 03A7X8w | motion#4526 +09:52:46.535-0700 871072895273680907 5rCk1Ck | motion#6835 +09:52:46.616-0700 871072897572167681 T0SkZDg | motion#4732 +09:52:46.618-0700 871072897492463698 kURtVy8 | motion#8353 +09:52:46.628-0700 871072898146779176 04NMkyw | motion#1876 +09:52:46.658-0700 871072894573228142 edbp3NE | motion#4823 +09:52:46.699-0700 871072898780127322 ji7HME4 | motion#9982 +09:52:46.784-0700 871072897395998731 Pc8CuRM | motion#2708 +09:52:46.880-0700 871072893050695680 QOp7_Xo | motion#1032 +09:52:46.889-0700 871072895361765466 PGxNZhw | motion#5713 +09:52:46.924-0700 871072902735335454 HxOKvzM | motion#8381 +09:52:46.958-0700 871072902374629416 0tjMeHg | motion#7335 +09:52:46.999-0700 871072903939121252 6PUNULw | motion#1516 +09:52:47.008-0700 871072899438628874 IIazGd0 | motion#2935 +09:52:47.080-0700 871072897551183962 M97tcLE | motion#2602 +09:52:47.141-0700 871072903276425247 kQlRXhA | motion#7329 +09:52:47.157-0700 871072907135184916 0Rqufxc | motion#5045 +09:52:47.182-0700 871072895600848946 j90Q_70 | motion#1627 +09:52:47.202-0700 871072885945561108 Kb9nAV8 | motion#5105 +09:52:47.209-0700 871072901930037270 bHYV_Ew | motion#8487 +09:52:47.215-0700 871072892106981426 wuHtZe0 | motion#4866 +09:52:47.217-0700 871072900113891348 _M4Pgf8 | motion#1175 +09:52:47.236-0700 871072897161129994 BapJGOM | motion#6755 +09:52:47.246-0700 871072873639448597 W1XUefU | motion#3105 +09:52:47.247-0700 871072902743740426 EdmbTKQ | motion#7078 +09:52:47.376-0700 871072892203446303 uujH8FA | motion#0618 +09:52:47.437-0700 871072899786743869 B7MBV7c | motion#8215 +09:52:47.495-0700 871072898301968445 bJCrHy4 | motion#2401 +09:52:47.535-0700 871072886008479774 -XBjW5w | motion#9174 +09:52:47.538-0700 871072904169799780 AUhisRY | motion#0973 +09:52:47.542-0700 871072898750771221 IGPQbVM | motion#5526 +09:52:47.552-0700 871072899757408286 tNuRros | motion#3828 +09:52:47.573-0700 871072859072630804 9xLuYls | motion#3820 +09:52:47.573-0700 871072895374352384 GvJCmJc | motion#0186 +09:52:47.608-0700 871072904702484541 3OxTmmQ | motion#8376 +09:52:47.613-0700 871072904836689951 ChSpN7Q | motion#0034 +09:52:47.623-0700 871072904132055050 lWrfY9c | motion#5190 +09:52:47.647-0700 871072908213092392 Kua5PQs | motion#1687 +09:52:47.694-0700 871072900541739009 CWZAkU0 | motion#9203 +09:52:47.745-0700 871072895072346204 S9S6vjI | motion#0638 +09:52:47.768-0700 871072904354361365 pCqN41A | motion#6648 +09:52:47.775-0700 871072902127169566 hws9YHs | motion#5849 +09:52:47.816-0700 871072905486819411 Ct27brQ | motion#9932 +09:52:47.838-0700 871072900428472341 ZDnG6BY | motion#5163 +09:52:47.903-0700 871072906296328244 vaxAt8U | motion#5800 +09:52:47.909-0700 871072905641992242 OVUOeLw | motion#9918 +09:52:47.954-0700 871072904597635082 GtqfWUM | motion#5342 +09:52:47.997-0700 871072901086969906 NqLqzrw | motion#1747 +09:52:48.055-0700 871072908670271509 4ZH_sAU | motion#6502 +09:52:48.061-0700 871072904115269652 ZnA824A | motion#8164 +09:52:48.075-0700 871072896745885797 HkrAcxQ | motion#1856 +09:52:48.116-0700 871072899128262666 PBoWuHQ | motion#8560 +09:52:48.122-0700 871072896154497036 VmeYJA4 | motion#3218 +09:52:48.156-0700 871072903729389620 CvNvLm0 | motion#0039 +09:52:48.171-0700 871072896246771772 iAecEFc | motion#0944 +09:52:48.211-0700 871072904564060190 1T1ye64 | motion#8904 +09:52:48.230-0700 871072907789471786 9iUXU6c | motion#3704 +09:52:48.276-0700 871072909693710386 OnZvYv8 | motion#6450 +09:52:48.311-0700 871072905692344380 xpU_Jec | motion#9823 +09:52:48.330-0700 871072905595854909 zfpwdOw | motion#5888 +09:52:48.331-0700 871072891540766772 6VxKyPc | motion#8438 +09:52:48.348-0700 871072905541337099 lLxuh80 | motion#9827 +09:52:48.373-0700 871072909261692979 7a0yIU4 | motion#2671 +09:52:48.423-0700 871072909500776448 gVPZEsA | motion#4366 +09:52:48.440-0700 871072906577346641 _y_O278 | motion#8882 +09:52:48.451-0700 871072898356482048 -R9Mqdk | motion#7150 +09:52:48.488-0700 871072900264890430 q22dx14 | motion#4651 +09:52:48.584-0700 871072904777990204 icnKUOA | motion#1347 +09:52:48.682-0700 871072911186870322 tsV0Vsk | motion#1872 +09:52:48.721-0700 871072898968858625 NMHnj6Y | motion#8117 +09:52:48.755-0700 871072908917764097 Ti0keUo | motion#9115 +09:52:48.779-0700 871072909416878110 cmVJ_Do | motion#2223 +09:52:48.780-0700 871072904899616799 C9V7f3g | motion#7846 +09:52:48.842-0700 871072907646861392 8e0LPng | motion#7531 +09:52:48.928-0700 871072907974045736 nrYr2QU | motion#2782 +09:52:48.942-0700 871072916261986414 e_TiWpw | motion#8845 +09:52:48.951-0700 871072910016675880 e4Qe0t4 | motion#7986 +09:52:48.960-0700 871072910561918976 L3QB45o | motion#9386 +09:52:49.032-0700 871072908959678525 y1eErxo | motion#7338 +09:52:49.064-0700 871072906384388106 8N31KfE | motion#9851 +09:52:49.287-0700 871072911430139935 UWD3Jnw | motion#6672 +09:52:49.299-0700 871072905973334107 muum9Qg | motion#4204 +09:52:49.397-0700 871072910561931314 HLwl8VA | motion#7278 +09:52:49.433-0700 871072914156425227 ZabjYJk | motion#2876 +09:52:49.511-0700 871072911996383273 ApLYF04 | motion#4668 +09:52:49.514-0700 871072908158595142 1to9VME | motion#8718 +09:52:49.528-0700 871072910670970921 dqnzZhE | motion#4095 +09:52:49.563-0700 871072911421743165 IOAQvVg | motion#6215 +09:52:49.600-0700 871072905340026910 qQ1ETCQ | motion#3683 +09:52:49.602-0700 871072910335422504 WNWk9BE | motion#2461 +09:52:49.733-0700 871072878962044939 MTR47LI | motion#1423 +09:52:49.746-0700 871072909261701200 T53Uml4 | motion#4976 +09:52:49.879-0700 871072908867424276 IxxYVT4 | motion#4838 +09:52:49.926-0700 871072910486421514 zZpPKX0 | motion#5926 +09:52:49.931-0700 871072912080252969 Q9WivVM | motion#1800 +09:52:49.948-0700 871072911824396288 t2rwTXg | motion#9127 +09:52:49.958-0700 871072908515110934 VXj0fqU | motion#4690 +09:52:49.961-0700 871072907902717982 5B7LgeU | motion#2975 +09:52:49.976-0700 871072913166569533 g4OVbww | motion#5130 +09:52:49.980-0700 871072910746472519 kxHEroQ | motion#6317 +09:52:49.983-0700 871072910889066556 AoVwRBs | motion#8274 +09:52:49.987-0700 871072908217311244 iZl9c4I | motion#7258 +09:52:50.092-0700 871072916106805328 n2_dh1s | motion#4756 +09:52:50.135-0700 871072914219360326 4IRlin0 | motion#1110 +09:52:50.330-0700 871072917776126102 iS9aMNw | motion#2166 +09:52:50.370-0700 871072908716437515 DKt0RYM | motion#3913 +09:52:50.390-0700 871072913426616390 1olaKKI | motion#5337 +09:52:50.407-0700 871072913154007130 ZUmHwfw | motion#7227 +09:52:50.540-0700 871072917046300792 q1foGsY | motion#2596 +09:52:50.560-0700 871072913871228948 QTgJSv0 | motion#4802 +09:52:50.641-0700 871072909282668545 DCFWayE | motion#2928 +09:52:50.677-0700 871072909525930025 hhqXYqM | motion#0311 +09:52:50.801-0700 871072911828607017 vaAg0aA | motion#7223 +09:52:50.823-0700 871072915691565097 BI3R5ao | motion#2107 +09:52:50.952-0700 871072903855214593 IvvROEs | motion#3352 +09:52:50.978-0700 871072903087652914 6d_m6aE | motion#0806 +09:52:50.999-0700 871072903993647166 MeIc0P8 | motion#4632 +09:52:51.002-0700 871072919797760030 TcrKCMY | motion#8134 +09:52:51.015-0700 871072911635677185 76KQIjU | motion#4941 +09:52:51.028-0700 871072897823825961 -cq1uGI | motion#4638 +09:52:51.032-0700 871072918262661121 Nkcada0 | motion#8392 +09:52:51.056-0700 871072918250090586 LgMgLMk | motion#7302 +09:52:51.056-0700 871072919806181397 WU_jt7o | motion#6334 +09:52:51.061-0700 871072911824416808 FZRp4q4 | motion#3591 +09:52:51.125-0700 871072914559090718 h0VHclM | motion#4679 +09:52:51.127-0700 871072911312707664 _9WmDFs | motion#5939 +09:52:51.160-0700 871072913053319218 AreVT6E | motion#1717 +09:52:51.171-0700 871072912835223592 AmhVAPY | motion#7519 +09:52:51.335-0700 871072920976379915 Kg9PfOY | motion#1341 +09:52:51.414-0700 871072915616051282 5h_Oe7c | motion#8620 +09:52:51.422-0700 871072918564638741 ij72KnY | motion#5529 +09:52:51.468-0700 871072912227049492 GHi7qAk | motion#7387 +09:52:51.478-0700 871072919214764093 z5nMoXw | motion#4037 +09:52:51.490-0700 871072919625797643 U7aLMBw | motion#7206 +09:52:51.528-0700 871072917696426014 M8r2jGI | motion#5455 +09:52:51.538-0700 871072918497533953 gnMO_fc | motion#5840 +09:52:51.594-0700 871072918040367165 WdQgvvI | motion#5602 +09:52:51.651-0700 871072919709712394 0WXN4cM | motion#9126 +09:52:51.731-0700 871072926529622066 DRh3qVI | motion#6861 +09:52:51.761-0700 871072911505653780 _ZmzpGI | motion#5152 +09:52:51.790-0700 871072923081924658 1f5aP4c | motion#0347 +09:52:51.794-0700 871072923509751908 RAHSP18 | motion#1212 +09:52:51.817-0700 871072920133308506 tA70bCs | motion#3247 +09:52:51.835-0700 871072918761795627 yUpLH4c | motion#7700 +09:52:51.871-0700 871072919105712128 vs5uOLk | motion#5416 +09:52:51.951-0700 871072920619872277 cG7yrEk | motion#7194 +09:52:52.014-0700 871072920221397052 XemZJ_8 | motion#7026 +09:52:52.032-0700 871072904182370354 jVPWaNA | motion#0300 +09:52:52.067-0700 871072920531775500 DEqpv0M | motion#4026 +09:52:52.068-0700 871072924466028575 8orXNkU | motion#7525 +09:52:52.093-0700 871072920997339146 dzJBHAg | motion#3676 +09:52:52.093-0700 871072920967987201 Z3YJ1Zw | motion#4052 +09:52:52.144-0700 871072923258060881 8NQG6AI | motion#4140 +09:52:52.149-0700 871072920389169233 _iULxhg | motion#2675 +09:52:52.204-0700 871072919567077417 1I-jmSg | motion#5972 +09:52:52.220-0700 871072921949442120 QwFm59k | motion#4279 +09:52:52.237-0700 871072923308417124 8oKcowM | motion#1104 +09:52:52.263-0700 871072924705112114 GE-sPnc | motion#7407 +09:52:52.327-0700 871072924860297216 fYf-CSc | motion#9091 +09:52:52.342-0700 871072921580347422 Y4LT2ug | motion#8357 +09:52:52.581-0700 871072919206387723 cbpedLI | motion#3519 +09:52:52.586-0700 871072923518140456 uuqP2iY | motion#2328 +09:52:52.650-0700 871072920338849822 Uk2LfDY | motion#9869 +09:52:52.704-0700 871072928274452550 slxEpMk | motion#3079 +09:52:52.707-0700 871072925497823332 v70Dbc8 | motion#2589 +09:52:52.724-0700 871072926571581440 MRqln38 | motion#2538 +09:52:52.742-0700 871072923547484230 CThVTvI | motion#2520 +09:52:52.810-0700 871072920842170438 uOTQrxM | motion#1680 +09:52:52.829-0700 871072918648520755 0PVuMVk | motion#2332 +09:52:52.846-0700 871072920628248656 It1OxUg | motion#3450 +09:52:52.862-0700 871072923086127204 q77ECs4 | motion#5626 +09:52:52.863-0700 871072922834456606 j0d8Qgc | motion#3662 +09:52:52.875-0700 871072918803718145 hvCVCxw | motion#2634 +09:52:52.878-0700 871072927372677171 1hcctVQ | motion#7396 +09:52:52.919-0700 871072923610406983 FjRQ8Xk | motion#1174 +09:52:52.949-0700 871072920527585310 lwJVqKI | motion#0780 +09:52:52.950-0700 871072924742873168 bEEY3hw | motion#0878 +09:52:52.980-0700 871072921634893856 qabM0S4 | motion#2639 +09:52:52.982-0700 871072930770063440 lxnLvxY | motion#6957 +09:52:52.988-0700 871072926651285545 KBXeFy4 | motion#3279 +09:52:53.023-0700 871072924952580097 ni0DYiU | motion#4440 +09:52:53.053-0700 871072924273090620 TMLTLVA | motion#0344 +09:52:53.061-0700 871072924185014322 b6CuzhM | motion#8371 +09:52:53.075-0700 871072926391210034 3U4qS90 | motion#6296 +09:52:53.084-0700 871072922469560370 qqB7NIA | motion#6025 +09:52:53.085-0700 871072925246193696 mxT2_kg | motion#7169 +09:52:53.106-0700 871072925376188488 HyenP94 | motion#0816 +09:52:53.140-0700 871072918413656065 hQoIa7M | motion#2019 +09:52:53.145-0700 871072909953732698 aAASGm4 | motion#0992 +09:52:53.147-0700 871072928802963517 YJnlt1k | motion#2532 +09:52:53.167-0700 871072917553831996 6_XctgU | motion#8473 +09:52:53.223-0700 871072933236314142 jCTvgsM | motion#6674 +09:52:53.245-0700 871072927452397649 DvvG5Bk | motion#5652 +09:52:53.304-0700 871072920410148885 sYbfPEA | motion#2794 +09:52:53.319-0700 871072925577519144 0AT3C-s | motion#8738 +09:52:53.353-0700 871072927934713858 xnAXTnA | motion#7493 +09:52:53.388-0700 871072924096950313 7CFXYrU | motion#3076 +09:52:53.513-0700 871072926261202954 GE5WIXU | motion#3386 +09:52:53.561-0700 871072920871501835 LZIil_g | motion#5856 +09:52:53.606-0700 871072924461858836 Qp3KAIo | motion#9776 +09:52:53.633-0700 871072909093916722 hHIAlSU | motion#0030 +09:52:53.638-0700 871072925950828614 _Z1TaYc | motion#0999 +09:52:53.733-0700 871072927909548062 qeaSvlM | motion#8106 +09:52:53.779-0700 871072929528569886 tmC13GU | motion#3455 +09:52:53.842-0700 871072931030126652 TEtA8iQ | motion#5130 +09:52:53.862-0700 871072925124538398 lQOenbE | motion#3741 +09:52:53.862-0700 871072923123867720 W-5wZQ4 | motion#9066 +09:52:53.881-0700 871072926944882719 iF22y1o | motion#8871 +09:52:53.977-0700 871072932712026132 2yhVV_c | motion#6926 +09:52:54.008-0700 871072929792798790 pQ6Jagk | motion#5804 +09:52:54.048-0700 871072928194785300 W5AU58U | motion#7236 +09:52:54.118-0700 871072926932303932 d7vMoVk | motion#8054 +09:52:54.291-0700 871072933911617596 3Ee9GFc | motion#6066 +09:52:54.319-0700 871072933605437490 lcCm0i8 | motion#3216 +09:52:54.341-0700 871072929226571776 nOp9bSo | motion#8038 +09:52:54.425-0700 871072927813103637 A6b0TmM | motion#1035 +09:52:54.460-0700 871072933504778250 reOnDT8 | motion#6608 +09:52:54.495-0700 871072933454413854 SX307UI | motion#7693 +09:52:54.524-0700 871072934502998027 3yKfQ_0 | motion#3359 +09:52:54.553-0700 871072930220605490 6Wdzkb0 | motion#8331 +09:52:54.578-0700 871072932443590667 3LdwvhQ | motion#1737 +09:52:54.586-0700 871072928450617354 4p3mhXk | motion#0641 +09:52:54.714-0700 871072927901188096 28yZr2c | motion#2470 +09:52:54.742-0700 871072919302856745 DiNYh4Y | motion#2754 +09:52:54.764-0700 871072939922051192 mXsM-Lk | motion#0284 +09:52:54.797-0700 871072933429256243 nnru-nk | motion#3764 +09:52:54.806-0700 871072931529236521 iElK5J0 | motion#6776 +09:52:54.807-0700 871072927586607125 xglFN68 | motion#5817 +09:52:54.814-0700 871072937153806456 WXBFFgY | motion#1170 +09:52:54.836-0700 871072931193704468 z1PZSf4 | motion#2635 +09:52:54.872-0700 871072933538320395 JBxeYB8 | motion#1655 +09:52:54.952-0700 871072934142308362 __eMAgI | motion#6650 +09:52:54.962-0700 871072935908114443 KPuC9jU | motion#1099 +09:52:54.993-0700 871072937447411763 1RJglnQ | motion#6664 +09:52:55.014-0700 871072935249596476 9COlimo | motion#1144 +09:52:55.018-0700 871072929641803796 wmOERkY | motion#5537 +09:52:55.069-0700 871072935794868225 2O2Ui5Y | motion#4812 +09:52:55.286-0700 871072928710672425 tX0bIi4 | motion#1164 +09:52:55.306-0700 871072931533447200 U7gmIy0 | motion#5302 +09:52:55.313-0700 871072935413170196 1fNLzaM | motion#5635 +09:52:55.339-0700 871072935081832508 e8Obdf0 | motion#9559 +09:52:55.360-0700 871072937447411733 UBF_tQc | motion#2383 +09:52:55.374-0700 871072932045144118 18h6vSw | motion#3673 +09:52:55.423-0700 871072929364983848 8YrgZiY | motion#6517 +09:52:55.468-0700 871072933102092339 h1JijRU | motion#2521 +09:52:55.471-0700 871072934834368552 nbcqZik | motion#1273 +09:52:55.525-0700 871072939485843537 TidbcQc | motion#1867 +09:52:55.526-0700 871072934888898660 NJ3zd88 | motion#9311 +09:52:55.551-0700 871072932825296906 DoHm5W4 | motion#8954 +09:52:55.557-0700 871072929612439592 1EJERtE | motion#2077 +09:52:55.572-0700 871072934419112006 liNLtjg | motion#9442 +09:52:55.595-0700 871072932313567283 08ImA2o | motion#3968 +09:52:55.685-0700 871072933588652083 rObe3wc | motion#3773 +09:52:55.710-0700 871072927515304057 f1SOihg | motion#5360 +09:52:55.740-0700 871072937401274398 jlILayY | motion#8491 +09:52:55.795-0700 871072933852893305 w1AP6ec | motion#1508 +09:52:55.961-0700 871072933139845140 -xURDqs | motion#0542 +09:52:55.988-0700 871072931432779816 a1ii5Ek | motion#1524 +09:52:56.005-0700 871072926575771749 AvNVnNM | motion#5773 +09:52:56.056-0700 871072932795920405 T07pBsM | motion#7434 +09:52:56.095-0700 871072934884679761 i8WAzIw | motion#4292 +09:52:56.195-0700 871072940677034064 8aI3zDk | motion#2057 +09:52:56.286-0700 871072933961936928 mq8lmbk | motion#0175 +09:52:56.311-0700 871072936197521439 4UmYsSU | motion#7619 +09:52:56.378-0700 871072932544262194 p8LBa0Q | motion#7013 +09:52:56.381-0700 871072934221991987 gWNFKkw | motion#6327 +09:52:56.410-0700 871072935308324945 2VgLDNQ | motion#3067 +09:52:56.447-0700 871072935396393011 d02YAKU | motion#6807 +09:52:56.480-0700 871072937795538974 kdcspTs | motion#9548 +09:52:56.498-0700 871072938714099723 4FI2fsw | motion#4385 +09:52:56.513-0700 871072932376502312 pAmsq7U | motion#4196 +09:52:56.535-0700 871072937820700703 Dz4h8o8 | motion#4835 +09:52:56.743-0700 871072937644535828 iw4LMG4 | motion#8542 +09:52:56.832-0700 871072926852583425 QXNwYUA | motion#6680 +09:52:56.860-0700 871072936147177543 MgnSwjg | motion#6744 +09:52:56.898-0700 871072942174400523 _21gX_I | motion#2070 +09:52:56.982-0700 871072939963973693 B0YQMko | motion#5245 +09:52:56.993-0700 871072939641024542 2Y0j-QM | motion#6407 +09:52:57.016-0700 871072940232433664 WD0shSk | motion#9978 +09:52:57.092-0700 871072937313173514 iAhtpYI | motion#0108 +09:52:57.134-0700 871072934096171079 fapHKio | motion#6142 +09:52:57.151-0700 871072933689294868 jXLjfgc | motion#3024 +09:52:57.207-0700 871072940937080923 MH6StEM | motion#8569 +09:52:57.389-0700 871072939863343176 TFmhLUs | motion#6536 +09:52:57.439-0700 871072936231063552 CbeHt7A | motion#2034 +09:52:57.456-0700 871072930602315827 GtB8TCE | motion#0746 +09:52:57.483-0700 871072937187369050 sFyCiKs | motion#6754 +09:52:57.528-0700 871072942916775937 v2fqY_M | motion#3056 +09:52:57.563-0700 871072939276136469 f0RMouo | motion#2312 +09:52:57.573-0700 871072935408971816 553Le2w | motion#1027 +09:52:57.590-0700 871072940383436851 aTFEgJM | motion#3366 +09:52:57.624-0700 871072937606791178 cmgJ7Xo | motion#1024 +09:52:57.679-0700 871072940718981141 E7rZ2-4 | motion#3257 +09:52:57.723-0700 871072940236636221 aSf3Zbk | motion#8962 +09:52:57.733-0700 871072939443900457 -INbbGM | motion#1605 +09:52:57.786-0700 871072943277498418 lpPQmhI | motion#7226 +09:52:57.799-0700 871072935748722748 46PGNy8 | motion#4124 +09:52:57.886-0700 871072944183447552 8keywjk | motion#8504 +09:52:57.907-0700 871072947228541008 -E-ecnU | motion#0595 +09:52:57.911-0700 871072941247451196 nhcaw8A | motion#3178 +09:52:57.932-0700 871072944909082624 4hbkkjg | motion#7445 +09:52:57.941-0700 871072940261801994 KJMjI9g | motion#9183 +09:52:57.945-0700 871072933710270496 WkKUNWQ | motion#7495 +09:52:58.028-0700 871072936344301599 BLEyrsU | motion#5019 +09:52:58.069-0700 871072947572441159 Ee8vPfA | motion#6006 +09:52:58.083-0700 871072942807736361 FgCbwX0 | motion#0086 +09:52:58.140-0700 871072942388314193 OROqqM8 | motion#7274 +09:52:58.267-0700 871072946117021760 Pdy8t6k | motion#6592 +09:52:58.276-0700 871072947161419796 gJYbBuU | motion#8409 +09:52:58.326-0700 871072936906334258 IVT5H8Q | motion#3890 +09:52:58.383-0700 871072943772413952 qPrqJrA | motion#6476 +09:52:58.466-0700 871072950206468097 GZFgTz0 | motion#1551 +09:52:58.466-0700 871072947010408448 9V5iEs4 | motion#3204 +09:52:58.502-0700 871072943734685716 QdRPHNU | motion#5706 +09:52:58.504-0700 871072938600828938 rpDhung | motion#6100 +09:52:58.507-0700 871072929331413023 0x1yV6k | motion#4413 +09:52:58.507-0700 871072926718373958 _qsy5ho | motion#2872 +09:52:58.543-0700 871072947555696640 J7vAHp0 | motion#9828 +09:52:58.552-0700 871072941478146078 09Nm0UY | motion#4599 +09:52:58.555-0700 871072949229207573 xphXWMA | motion#3224 +09:52:58.670-0700 871072949740900433 6R0FZVQ | motion#6583 +09:52:58.785-0700 871072944955207680 iqe5VyE | motion#4430 +09:52:58.818-0700 871072946381279303 qRcxNHg | motion#3720 +09:52:58.835-0700 871072944699355167 0elOGcU | motion#2429 +09:52:58.935-0700 871072945697620008 E7tsX6c | motion#9433 +09:52:58.961-0700 871072945450143804 4pcEgiM | motion#1567 +09:52:58.998-0700 871072951435395093 aKhYaV0 | motion#1685 +09:52:59.012-0700 871072949338271776 kuM_lgY | motion#2431 +09:52:59.019-0700 871072935811629056 I-6OML4 | motion#7750 +09:52:59.054-0700 871072946536476692 GYqFb1E | motion#2618 +09:52:59.060-0700 871072950286188605 ubul9CE | motion#3968 +09:52:59.188-0700 871072952072929352 Z-RvYi4 | motion#3406 +09:52:59.197-0700 871072936298164256 knJimQc | motion#5829 +09:52:59.208-0700 871072950646874163 YZx5iGI | motion#0402 +09:52:59.224-0700 871072956049150023 u0ZdGzw | motion#4811 +09:52:59.246-0700 871072950672052254 GoYRE_s | motion#5964 +09:52:59.277-0700 871072949866741800 PvQK-VU | motion#0846 +09:52:59.420-0700 871072950785290260 mXZnyCA | motion#1329 +09:52:59.452-0700 871072936415604786 2ztI4-M | motion#3957 +09:52:59.461-0700 871072953700327474 0_4DOOg | motion#5044 +09:52:59.473-0700 871072954174308402 b67_Nhc | motion#3158 +09:52:59.513-0700 871072940811251723 Fb1F_iE | motion#2116 +09:52:59.547-0700 871072960243458099 bnParm4 | motion#6469 +09:52:59.548-0700 871072942501543966 rNrWetk | motion#5536 +09:52:59.621-0700 871072940328878140 XcmoFP8 | motion#8208 +09:52:59.643-0700 871072955440955402 SQZk4rQ | motion#1299 +09:52:59.649-0700 871072950164541450 408ufEQ | motion#0694 +09:52:59.745-0700 871072944951013426 _Gqv8O0 | motion#2381 +09:52:59.797-0700 871072937921351730 Aor2a88 | motion#3628 +09:52:59.816-0700 871072947438247936 xu6OMd4 | motion#8511 +09:52:59.897-0700 871072954975408158 2SWjxEA | motion#1932 +09:53:00.005-0700 871072956187545620 GAqpS0I | motion#4551 +09:53:00.034-0700 871072957139669063 ZzIXrwI | motion#2513 +09:53:00.082-0700 871072950261002282 56YJcQE | motion#6148 +09:53:00.150-0700 871072948813963314 A4sDZwY | motion#7821 +09:53:00.153-0700 871072950231662642 T-uJV4Y | motion#4756 +09:53:00.174-0700 871072957185802240 N_mrook | motion#3351 +09:53:00.177-0700 871072952169410581 rpIPck8 | motion#9738 +09:53:00.229-0700 871072960662896700 6QGUVsA | motion#7929 +09:53:00.235-0700 871072951112433694 v_XiMck | motion#3552 +09:53:00.264-0700 871072947312394320 dDUqODs | motion#3524 +09:53:00.284-0700 871072954329473046 u1r65pI | motion#5653 +09:53:00.383-0700 871072956430839850 f7-_lr8 | motion#5101 +09:53:00.416-0700 871072956770549781 zsMgy1I | motion#7300 +09:53:00.418-0700 871072961006809099 GYabo4U | motion#4654 +09:53:00.429-0700 871072958859333712 RGe8E5A | motion#1011 +09:53:00.452-0700 871072951389282406 pbCox1M | motion#5978 +09:53:00.453-0700 871072948377776218 7LFjmP4 | motion#1105 +09:53:00.469-0700 871072950990798849 Rl__eBU | motion#8824 +09:53:00.484-0700 871072950332325980 aVofM1I | motion#9875 +09:53:00.515-0700 871072954828619776 06QZJ7o | motion#0055 +09:53:00.544-0700 871072954237202453 Jr7Mv1s | motion#1056 +09:53:00.546-0700 871072953935204373 2_YZNxU | motion#4064 +09:53:00.596-0700 871072958859313264 bc4AP6c | motion#1179 +09:53:00.608-0700 871072952781799520 GxBs8kY | motion#2076 +09:53:00.698-0700 871072960822280243 YQPg_8I | motion#7731 +09:53:00.707-0700 871072951598977056 b_Jqr6I | motion#0698 +09:53:00.737-0700 871072955000569906 P7N-T_A | motion#9942 +09:53:00.767-0700 871072962948759592 P2Tgf6Q | motion#9961 +09:53:00.788-0700 871072940375040060 ZoyJrOU | motion#8062 +09:53:00.797-0700 871072944141504522 NhOHVv4 | motion#6555 +09:53:00.887-0700 871072961514336306 x7633Yc | motion#3797 +09:53:00.894-0700 871072949694759004 OyaA36o | motion#0339 +09:53:00.905-0700 871072958486040627 TRNCh-4 | motion#4867 +09:53:00.913-0700 871072952593047692 OsRSaTs | motion#9790 +09:53:00.932-0700 871072953981358140 Yn5MS_g | motion#5927 +09:53:00.976-0700 871072953033449495 8DvhH8s | motion#0602 +09:53:00.990-0700 871072966228717568 koMqUkg | motion#7327 +09:53:01.023-0700 871072950521069609 EU95MZo | motion#7686 +09:53:01.051-0700 871072950361669643 i-Y39i4 | motion#0261 +09:53:01.111-0700 871072959220039761 0KFTcGc | motion#6975 +09:53:01.115-0700 871072951372513370 _O_XYkY | motion#1051 +09:53:01.115-0700 871072960130187304 iqV_S6M | motion#0758 +09:53:01.152-0700 871072958880313344 nzIkjCk | motion#1048 +09:53:01.159-0700 871072962072158258 RliNz1Q | motion#6120 +09:53:01.169-0700 871072953914245141 NewcR6s | motion#4590 +09:53:01.180-0700 871072960457359371 nKngWoI | motion#1841 +09:53:01.183-0700 871072953641627718 _QK1nyY | motion#1385 +09:53:01.184-0700 871072959379427359 YL0vHF0 | motion#0453 +09:53:01.219-0700 871072960717422673 qBLjLw4 | motion#4399 +09:53:01.223-0700 871072958800617473 FIMWMoo | motion#9428 +09:53:01.231-0700 871072963221405717 H4hDKXQ | motion#6203 +09:53:01.285-0700 871072960138579969 LuXY6d4 | motion#0074 +09:53:01.307-0700 871072958653792366 p9MYWf8 | motion#7535 +09:53:01.349-0700 871072959014535220 6pzGOqI | motion#1620 +09:53:01.357-0700 871072955524870174 W0x5KKI | motion#8163 +09:53:01.377-0700 871072955621335091 7CC2_8I | motion#4778 +09:53:01.380-0700 871072958662189096 bvkfUms | motion#8045 +09:53:01.398-0700 871072962630012951 72wTRQI | motion#6046 +09:53:01.406-0700 871072960327335948 nt4aHug | motion#0916 +09:53:01.430-0700 871072959639486484 90TCMdU | motion#9291 +09:53:01.550-0700 871072964228055070 y5cv3I4 | motion#5760 +09:53:01.693-0700 871072964450353153 1dUD9gk | motion#1293 +09:53:01.713-0700 871072951955488768 5QkRwc0 | motion#9533 +09:53:01.768-0700 871072957093539860 m4gccf0 | motion#3981 +09:53:01.835-0700 871072959786266726 pQ0-qCo | motion#0202 +09:53:01.884-0700 871072963267547177 5g1uH5Y | motion#6946 +09:53:01.985-0700 871072963611484211 C-PoqBQ | motion#9348 +09:53:02.060-0700 871072962760044554 Lh_QCts | motion#0549 +09:53:02.086-0700 871072963028480030 xdo3dHE | motion#9547 +09:53:02.160-0700 871072965645713468 hJhBSIs | motion#5372 +09:53:02.198-0700 871072965469540422 Lg9X_T8 | motion#0788 +09:53:02.223-0700 871072962009247795 qx82P2U | motion#3322 +09:53:02.324-0700 871072962625826848 viVAw3s | motion#1441 +09:53:02.389-0700 871072963317874719 M8PCfdo | motion#1065 +09:53:02.410-0700 871072961552064573 EG_Ehm4 | motion#6735 +09:53:02.486-0700 871072970116837386 vqLwOcc | motion#6503 +09:53:02.614-0700 871072961757610035 ZjNteCc | motion#1735 +09:53:02.691-0700 871072962357395456 ZsgeCbs | motion#1478 +09:53:02.702-0700 871072949451489311 3YSoJMY | motion#7958 +09:53:02.709-0700 871072960235044905 WV_LbWs | motion#8175 +09:53:02.713-0700 871072971861676042 QlcHNvE | motion#9089 +09:53:02.750-0700 871072940958036019 a_XleJE | motion#5416 +09:53:02.753-0700 871072967159861289 rJPV3ck | motion#5512 +09:53:02.767-0700 871072955763933235 wuUOVzY | motion#4009 +09:53:02.769-0700 871072962013462608 RuNTLDA | motion#2712 +09:53:02.784-0700 871072956095266868 wmyTOzQ | motion#2266 +09:53:02.898-0700 871072970553045022 CVJnXhs | motion#6114 +09:53:02.939-0700 871072962227368006 ex8ZVEo | motion#0059 +09:53:02.947-0700 871072959647862804 FFiYwB0 | motion#2964 +09:53:02.981-0700 871072971052175422 XztsRJk | motion#9582 +09:53:02.996-0700 871072970062311484 ardvgsQ | motion#0464 +09:53:03.015-0700 871072965138214943 CnesDdA | motion#0464 +09:53:03.028-0700 871072971127668767 kOM3MA8 | motion#9932 +09:53:03.120-0700 871072959903707146 qmJHwU8 | motion#0741 +09:53:03.163-0700 871072971593228318 k-BhVxc | motion#6548 +09:53:03.252-0700 871072966400700476 2ubGhvM | motion#0680 +09:53:03.271-0700 871072968955007026 nVUwCqc | motion#1977 +09:53:03.321-0700 871072958829965322 8DQyfEc | motion#8418 +09:53:03.351-0700 871072966270660628 LTRgh1I | motion#7295 +09:53:03.368-0700 871072959052275753 -vxtYdY | motion#7900 +09:53:03.612-0700 871072964630679623 _3AxU54 | motion#3577 +09:53:03.618-0700 871072965175935059 Ci2UaUo | motion#2331 +09:53:03.751-0700 871072967252148344 j3WLOWw | motion#6279 +09:53:03.844-0700 871072973614899231 WbNszVY | motion#6252 +09:53:03.854-0700 871072961354952746 KmmVaKw | motion#4807 +09:53:03.861-0700 871072965180145685 XzXQPbk | motion#3755 +09:53:03.879-0700 871072969122783252 bodLPf0 | motion#7321 +09:53:03.968-0700 871072950734979103 -M5x5-k | motion#0036 +09:53:03.995-0700 871072958783848469 sKYzVN4 | motion#2405 +09:53:04.012-0700 871072960272818267 l6EXlWM | motion#6672 +09:53:04.101-0700 871072962751647805 kgLsFBA | motion#3724 +09:53:04.101-0700 871072971958128640 m4liUsg | motion#2425 +09:53:04.124-0700 871072966807531582 -9Erj5A | motion#7944 +09:53:04.142-0700 871072965884784690 JzRFHGc | motion#7618 +09:53:04.151-0700 871072972805382174 Cft_SaI | motion#0651 +09:53:04.276-0700 871072974965465148 DFuE6Rw | motion#1669 +09:53:04.327-0700 871072968300724267 Lx2-Ozs | motion#7458 +09:53:04.405-0700 871072965800910908 YgY-_jY | motion#3848 +09:53:04.409-0700 871072975410036826 527pex8 | motion#4709 +09:53:04.415-0700 871072968225202216 EUPRavc | motion#1496 +09:53:04.475-0700 871072961535283241 yqtRf9Q | motion#9854 +09:53:04.488-0700 871072974579597362 cZV9Jss | motion#2445 +09:53:04.500-0700 871072974713782272 vubRJRI | motion#3898 +09:53:04.522-0700 871072966799138816 t4sZMeE | motion#6405 +09:53:04.526-0700 871072956862832671 1hqhKJE | motion#7492 +09:53:04.526-0700 871072965234655283 WOmqfiw | motion#7447 +09:53:04.574-0700 871072970615947366 4u4e34E | motion#7412 +09:53:04.588-0700 871072975443591188 twc3nwE | motion#1241 +09:53:04.602-0700 871072960071483422 R12gSrc | motion#1374 +09:53:04.681-0700 871072970930540635 nWso0Wc | motion#1354 +09:53:04.702-0700 871072966765588490 l222w3Q | motion#7612 +09:53:04.740-0700 871072971819716618 8BfX2s8 | motion#3804 +09:53:04.743-0700 871072967617028096 e_pbqKs | motion#7411 +09:53:04.811-0700 871072967868702822 zfBfwbU | motion#6251 +09:53:04.855-0700 871072976584441896 L3nPSPI | motion#1565 +09:53:04.858-0700 871072973702979624 leOY58A | motion#2905 +09:53:04.859-0700 871072972952199178 dcwSTGQ | motion#2969 +09:53:04.865-0700 871072970896986172 eqn6bcE | motion#3676 +09:53:04.897-0700 871072973384216697 5jnozko | motion#6638 +09:53:04.914-0700 871072972616642640 QcY3hbo | motion#4042 +09:53:04.920-0700 871072964546818048 TNDrkdk | motion#9725 +09:53:05.117-0700 871072979126218814 yOYLPGo | motion#5801 +09:53:05.206-0700 871072960075673610 tfvDUqo | motion#6635 +09:53:05.213-0700 871072961686278144 az917Kg | motion#3668 +09:53:05.240-0700 871072975733002335 Up8jUag | motion#3516 +09:53:05.328-0700 871072973451321375 oVJW5Q0 | motion#0879 +09:53:05.381-0700 871072972671160320 9tdUOp4 | motion#8373 +09:53:05.392-0700 871072969068265522 rmCQqHc | motion#0027 +09:53:05.426-0700 871072979918921758 Lp0tqsg | motion#8260 +09:53:05.527-0700 871072978702590063 jqbOWxQ | motion#4279 +09:53:05.566-0700 871072974298566666 jFwFn2s | motion#8997 +09:53:05.663-0700 871072977746292788 H9ccEOU | motion#5621 +09:53:05.691-0700 871072974248222720 72Rqeyc | motion#3243 +09:53:05.701-0700 871072954539204639 h-MPfdo | motion#8679 +09:53:05.768-0700 871072977171644508 1y44bL0 | motion#1610 +09:53:05.778-0700 871072960344125441 wkAUopw | motion#8291 +09:53:05.814-0700 871072974701228123 kmh_thc | motion#7879 +09:53:05.877-0700 871072974579589150 _v7vq9w | motion#9112 +09:53:05.892-0700 871072978580955137 n0gf8K8 | motion#9727 +09:53:05.928-0700 871072980451614721 IjO7y8o | motion#1677 +09:53:05.947-0700 871072982594883644 2gxyRfM | motion#2600 +09:53:06.018-0700 871072976748023859 ndHWGRU | motion#6073 +09:53:06.040-0700 871072967851905034 b6mgEJs | motion#6420 +09:53:06.065-0700 871072979994411018 HyizbGY | motion#9851 +09:53:06.073-0700 871072963468861451 cKCkAI8 | motion#0794 +09:53:06.091-0700 871072966841081867 8Ld-h14 | motion#7519 +09:53:06.093-0700 871072979436589116 djixPbk | motion#6580 +09:53:06.093-0700 871072979801493544 8-DG37E | motion#4159 +09:53:06.147-0700 871072975070310444 nczviDg | motion#6117 +09:53:06.290-0700 871072973623267369 LRCa3l8 | motion#6459 +09:53:06.315-0700 871072973312892958 ofgJvbc | motion#2747 +09:53:06.372-0700 871072979637899354 dhIbktg | motion#9888 +09:53:06.383-0700 871072980229320736 NjSTSKw | motion#4929 +09:53:06.421-0700 871072979478511677 Gxx2-II | motion#4082 +09:53:06.512-0700 871072976005660712 nytPyvc | motion#5110 +09:53:06.526-0700 871072964685221899 Dyt7L6g | motion#5594 +09:53:06.557-0700 871072984859816007 02z0xQs | motion#6642 +09:53:06.565-0700 871072978627072020 pBfeX68 | motion#3249 +09:53:06.580-0700 871072982393552896 uczourc | motion#0305 +09:53:06.610-0700 871072978069250079 LCsjIuo | motion#7397 +09:53:06.614-0700 871072975439405116 mG2HrrM | motion#5322 +09:53:06.636-0700 871072980782972938 xXhic8w | motion#6040 +09:53:06.669-0700 871072978383822918 yGQHNdk | motion#4758 +09:53:06.728-0700 871072977066786866 i6hS6eo | motion#5828 +09:53:06.825-0700 871072979914752071 _RxkdMY | motion#1103 +09:53:06.842-0700 871072973996580905 T6DQj-Q | motion#9187 +09:53:06.847-0700 871072982930440222 2EQ11yI | motion#9607 +09:53:06.895-0700 871072982452293714 7dizJBA | motion#5244 +09:53:06.901-0700 871072980304801862 y7zQSUQ | motion#1432 +09:53:06.982-0700 871072983626678314 F4UoyKw | motion#5250 +09:53:07.023-0700 871072923312619590 3wiBBqo | motion#4952 +09:53:07.031-0700 871072962944565249 rDDXcBE | motion#4834 +09:53:07.053-0700 871072956577636382 PhhoCDI | motion#4577 +09:53:07.074-0700 871072971899416577 6U6L2po | motion#0421 +09:53:07.140-0700 871072980246081647 SB3W6JI | motion#7063 +09:53:07.183-0700 871072986130677840 fHcgDko | motion#9990 +09:53:07.190-0700 871072986155876353 MvOYjZs | motion#2164 +09:53:07.213-0700 871072981080768542 Mbl-pGQ | motion#6322 +09:53:07.214-0700 871072983366656042 -z9924s | motion#9168 +09:53:07.228-0700 871072988408197121 C2ssNOc | motion#3132 +09:53:07.235-0700 871072987728715831 s4V2T8o | motion#4334 +09:53:07.280-0700 871072982624251955 YV1KQcA | motion#5119 +09:53:07.357-0700 871072981101740032 fbbsIEw | motion#1372 +09:53:07.489-0700 871072978190880808 vvjJNsg | motion#4149 +09:53:07.502-0700 871072987296714752 Op4Y4Jk | motion#6061 +09:53:07.631-0700 871072981424693298 U0ROfq0 | motion#3984 +09:53:07.634-0700 871072982515191898 MPydZyI | motion#3440 +09:53:07.679-0700 871072977985339402 FZcAsMk | motion#0986 +09:53:07.701-0700 871072984721403965 yifIEUU | motion#1790 +09:53:07.730-0700 871072983496667156 ZxlERGY | motion#0790 +09:53:07.752-0700 871072986017456259 zyLCYr4 | motion#3324 +09:53:07.759-0700 871072983765090334 cg_47Rs | motion#9762 +09:53:07.779-0700 871072990761213962 EMFWxzg | motion#7748 +09:53:07.803-0700 871072984847245342 NUmkerM | motion#1649 +09:53:07.846-0700 871072983567974491 pL4xASI | motion#3086 +09:53:07.847-0700 871072985254084648 LL674lc | motion#8387 +09:53:07.898-0700 871072980220932137 3titjZc | motion#3641 +09:53:07.985-0700 871072982242574377 4e2ywbs | motion#6784 +09:53:07.987-0700 871072984788512781 w3zEUiA | motion#6223 +09:53:08.092-0700 871072987070201907 4S_FBh4 | motion#4414 +09:53:08.125-0700 871072986726273064 tQep-wo | motion#1269 +09:53:08.128-0700 871072985279262761 VGy2nu8 | motion#5639 +09:53:08.157-0700 871072985912602635 IZ-DVvc | motion#3498 +09:53:08.200-0700 871072984759156748 vYF_xh8 | motion#3024 +09:53:08.244-0700 871072987141525524 cpDkXMw | motion#8664 +09:53:08.274-0700 871072981156253757 eoRZz94 | motion#5016 +09:53:08.329-0700 871072988760522753 f3pptD4 | motion#4330 +09:53:08.369-0700 871072980216709140 OReHq8k | motion#3131 +09:53:08.437-0700 871072971538710569 gySmqaI | motion#3785 +09:53:08.525-0700 871072988664070204 f65d_8I | motion#9196 +09:53:08.570-0700 871072984343932979 4afGEJk | motion#8659 +09:53:08.575-0700 871072977205207060 GQtzH84 | motion#5608 +09:53:08.592-0700 871072990870257665 UU52afs | motion#9636 +09:53:08.690-0700 871072989007982662 zvy2vrY | motion#6117 +09:53:08.692-0700 871072981718294538 YuH4B5c | motion#4439 +09:53:08.713-0700 871072966304202753 DiEL_oc | motion#4847 +09:53:08.734-0700 871072989096067164 7YJqrJA | motion#3087 +09:53:08.746-0700 871072988542410782 1T_hlak | motion#0309 +09:53:08.797-0700 871072989062504458 bmucaik | motion#1972 +09:53:08.808-0700 871072989108645939 vJ81z3E | motion#8413 +09:53:08.809-0700 871072957278072872 vLJj0s4 | motion#1149 +09:53:08.811-0700 871072977825964062 d8WVNNw | motion#7098 +09:53:08.811-0700 871072998038327296 jnYC41Q | motion#3189 +09:53:08.827-0700 871072991960776724 lnrViZI | motion#2282 +09:53:08.838-0700 871072992279539732 VInXZac | motion#8953 +09:53:08.854-0700 871072982871736331 jK4iSg0 | motion#5548 +09:53:08.857-0700 871072991788798012 7XO6J58 | motion#0616 +09:53:08.865-0700 871072988697591869 CsugWFU | motion#7005 +09:53:08.877-0700 871072990966730833 Mk02d6o | motion#7963 +09:53:08.912-0700 871072990765387778 D6YssRY | motion#6866 +09:53:08.929-0700 871072999040766032 TAdccQ4 | motion#2267 +09:53:08.971-0700 871072998801674311 0Iq-uWQ | motion#6957 +09:53:09.021-0700 871072989863616542 lW-6SHc | motion#6298 +09:53:09.058-0700 871072992099188807 c6ZG4Ns | motion#9532 +09:53:09.089-0700 871072989024772177 FBEES2s | motion#0697 +09:53:09.137-0700 871072994498322454 HQeA2Ls | motion#1890 +09:53:09.163-0700 871072971974918234 Rf-RbfI | motion#1678 +09:53:09.173-0700 871072988710191154 1_ubC7o | motion#5034 +09:53:09.225-0700 871072989062500384 bje7j0A | motion#7199 +09:53:09.265-0700 871072993802063872 IjsU3n4 | motion#2101 +09:53:09.288-0700 871072978203451442 J6sRjy8 | motion#1812 +09:53:09.378-0700 871072999271456818 BawJK6k | motion#1110 +09:53:09.421-0700 871072998361296946 WktmDNE | motion#6878 +09:53:09.438-0700 871072987854536724 7YbP_oA | motion#4613 +09:53:09.523-0700 871072998306775080 YUI6gVk | motion#9029 +09:53:09.535-0700 871072984138399744 6-fIrmM | motion#2028 +09:53:09.553-0700 871072995010019329 kOHlqak | motion#6963 +09:53:09.620-0700 871072996595466251 abkhbko | motion#6374 +09:53:09.651-0700 871072934867898419 dBsIzOU | motion#5946 +09:53:09.794-0700 871072994854862848 kW8cI2Q | motion#0277 +09:53:09.873-0700 871072993089052762 JeOiqf4 | motion#3288 +09:53:09.926-0700 871072998457753630 -mkdS54 | motion#8265 +09:53:09.929-0700 871072998558404649 raMj3tc | motion#8330 +09:53:09.942-0700 871072987342839839 SpyZ1YI | motion#3326 +09:53:09.954-0700 871072998566809620 fqFmkRE | motion#0903 +09:53:10.081-0700 871072993055477760 x-aCTj0 | motion#1466 +09:53:10.086-0700 871072973749125190 DSvTIBk | motion#9114 +09:53:10.131-0700 871072991927210076 CopNdCw | motion#0347 +09:53:10.143-0700 871073000424894464 h5l1_d0 | motion#2968 +09:53:10.144-0700 871072997425938472 ZRnxyJs | motion#6579 +09:53:10.390-0700 871072992153714750 Cd3qhFg | motion#4433 +09:53:10.464-0700 871072994146013234 SmSryZM | motion#7124 +09:53:10.580-0700 871073001314074654 PvcQzhE | motion#6168 +09:53:10.619-0700 871072980720033882 Rl7hJTI | motion#6027 +09:53:10.633-0700 871072987573522432 TW76Fj8 | motion#3627 +09:53:10.670-0700 871072998986240041 eB9l9Bs | motion#3475 +09:53:10.671-0700 871072993411993681 IXVHicY | motion#2892 +09:53:10.690-0700 871072990857691156 B5FWibg | motion#9235 +09:53:10.696-0700 871072986533335081 oxEnunM | motion#0300 +09:53:10.713-0700 871072982209003561 f8lO0QY | motion#2068 +09:53:10.738-0700 871073001146306571 MR5nZbw | motion#4175 +09:53:10.762-0700 871072993374240848 NjcHNLw | motion#5026 +09:53:10.763-0700 871072999506325556 ud8EJ_A | motion#4339 +09:53:10.774-0700 871072999552450600 cNnXavE | motion#2411 +09:53:10.783-0700 871072992417968149 qQkKBHs | motion#0037 +09:53:10.785-0700 871072981370171423 GWmRHVQ | motion#2365 +09:53:10.831-0700 871072990677319690 enObNhQ | motion#6419 +09:53:10.872-0700 871073004199772190 mTW8feI | motion#1142 +09:53:11.019-0700 871072994645123113 wbe2qDg | motion#7009 +09:53:11.036-0700 871072991860117524 gIU9v-s | motion#3854 +09:53:11.046-0700 871073000626225192 aTJ05So | motion#4849 +09:53:11.060-0700 871073000244531270 hHBHWvs | motion#3637 +09:53:11.062-0700 871072996754874368 Jrk6eHk | motion#3279 +09:53:11.074-0700 871072992904499270 tMrI_SM | motion#6935 +09:53:11.077-0700 871073004212355082 sG912r8 | motion#1292 +09:53:11.083-0700 871073000055799859 5poCIlg | motion#3173 +09:53:11.108-0700 871072998436778104 X_xrGJo | motion#9494 +09:53:11.111-0700 871072994754199652 ErIWs9Y | motion#9102 +09:53:11.121-0700 871073000471019522 x3gPfNA | motion#9324 +09:53:11.129-0700 871073004216541264 _60543s | motion#8474 +09:53:11.153-0700 871072995081338950 oMfS6gM | motion#3691 +09:53:11.209-0700 871073004933750814 i-CyCKE | motion#7948 +09:53:11.244-0700 871072984524267600 acuag6A | motion#4448 +09:53:11.318-0700 871073008134004786 r41ZtMs | motion#1375 +09:53:11.327-0700 871073005508378674 almrCIk | motion#5646 +09:53:11.340-0700 871072994582208563 mwfY4lw | motion#6722 +09:53:11.360-0700 871073007991414875 p7C8cP4 | motion#5914 +09:53:11.363-0700 871073005911015464 8Ym_Cmw | motion#0429 +09:53:11.418-0700 871073005470625792 7q-AzX4 | motion#1138 +09:53:11.448-0700 871072995773403176 GAC-T94 | motion#6366 +09:53:11.509-0700 871073001653829712 YBTaZr4 | motion#6272 +09:53:11.530-0700 871072999795720264 gEbO_tg | motion#4829 +09:53:11.549-0700 871072996461252608 Kdg0qgw | motion#2314 +09:53:11.560-0700 871073008377266257 c3LTjYU | motion#8847 +09:53:11.597-0700 871073001033072740 SfubBP0 | motion#5789 +09:53:11.692-0700 871073000924008519 Kt5e9t8 | motion#3818 +09:53:11.703-0700 871072999355346984 uQ6VEnQ | motion#5515 +09:53:11.729-0700 871073008788316160 9jU5ngY | motion#0528 +09:53:11.820-0700 871073001448308736 fpRc_Q8 | motion#0673 +09:53:11.964-0700 871073007550996550 sVRjSME | motion#5106 +09:53:12.051-0700 871073002077438062 ai0tR74 | motion#7240 +09:53:12.144-0700 871073000399712279 HkSLMdw | motion#3043 +09:53:12.155-0700 871073002975010909 XXtiB5g | motion#3052 +09:53:12.221-0700 871073002966626357 DrwPk-M | motion#8358 +09:53:12.240-0700 871073006938636328 NgVT8DA | motion#1614 +09:53:12.288-0700 871073008700248145 QpFBLbM | motion#4021 +09:53:12.337-0700 871073005722304563 w5_tJMk | motion#0207 +09:53:12.358-0700 871073008654123019 caXg7Bo | motion#3234 +09:53:12.412-0700 871073003167969380 X-qNWmI | motion#9889 +09:53:12.457-0700 871073001427324958 nUY3Nx0 | motion#0419 +09:53:12.483-0700 871073002807242802 vQA3El0 | motion#9220 +09:53:12.633-0700 871072994309603349 X5_go0o | motion#1466 +09:53:12.649-0700 871073010390552726 jXuDHcQ | motion#0360 +09:53:12.674-0700 871073002861789184 huLf0kY | motion#8753 +09:53:12.676-0700 871073013506928670 yUeFP_Y | motion#8566 +09:53:12.680-0700 871073010830966804 QMtnqHI | motion#4143 +09:53:12.689-0700 871073007571976202 tmkf7S0 | motion#6913 +09:53:12.743-0700 871073007051878490 LBSfsPc | motion#5520 +09:53:12.753-0700 871073012668047410 ZFqLcIU | motion#6094 +09:53:12.766-0700 871073009568473138 jxeHyxw | motion#8576 +09:53:12.782-0700 871073006821212250 sq80wCU | motion#4292 +09:53:12.800-0700 871073006078799882 US2oM_8 | motion#5512 +09:53:12.809-0700 871073005818748958 P_BHn_o | motion#7634 +09:53:12.914-0700 871073009262292993 XlffNqc | motion#8961 +09:53:12.937-0700 871073009530712125 vhPUigI | motion#5663 +09:53:12.994-0700 871072999703474198 ArZAXKY | motion#4185 +09:53:13.020-0700 871073007798468649 8QAzS-s | motion#1114 +09:53:13.044-0700 871073009115480085 IAPUxVE | motion#8652 +09:53:13.063-0700 871073010394750996 VYC_vj4 | motion#5368 +09:53:13.132-0700 871073013032951870 gWCQk3I | motion#1192 +09:53:13.138-0700 871073008071094272 oj_Z4bM | motion#8379 +09:53:13.162-0700 871073011124555776 xqp1CH8 | motion#9376 +09:53:13.171-0700 871073010847719474 pkvlNLo | motion#6236 +09:53:13.204-0700 871073011317485578 yVjf54Y | motion#8728 +09:53:13.233-0700 871073013691469844 lhhUx9k | motion#9285 +09:53:13.256-0700 871073002438152243 4lSwym8 | motion#3995 +09:53:13.267-0700 871073007710400532 1KrAI6o | motion#7627 +09:53:13.292-0700 871073007492300840 -YKWlI8 | motion#9658 +09:53:13.293-0700 871073007165141063 q5ACuPM | motion#0892 +09:53:13.308-0700 871073009434234892 sQykJZQ | motion#4649 +09:53:13.322-0700 871073009904025620 DXFvf38 | motion#2916 +09:53:13.377-0700 871073007324495882 otYjNOM | motion#8178 +09:53:13.393-0700 871073005504167966 5Fyq920 | motion#9557 +09:53:13.443-0700 871073010956791839 N2ctOBA | motion#1224 +09:53:13.445-0700 871073010004680734 gV3ic_A | motion#6888 +09:53:13.461-0700 871073013158785064 iDYF5Ec | motion#5390 +09:53:13.467-0700 871073008528289842 bXqJvlk | motion#2562 +09:53:13.472-0700 871073010319228928 eTUIIQs | motion#4880 +09:53:13.477-0700 871073004501741588 GQLutwE | motion#2277 +09:53:13.488-0700 871073012244422658 kjaYUYQ | motion#1832 +09:53:13.489-0700 871073009618808922 CNHqVF4 | motion#0647 +09:53:13.492-0700 871073010382176267 Ouz6p30 | motion#3600 +09:53:13.511-0700 871073013687263284 gt3pxu0 | motion#5780 +09:53:13.561-0700 871073016631660604 t-yO60Y | motion#8490 +09:53:13.737-0700 871073004728221736 uqjnoN0 | motion#2316 +09:53:13.737-0700 871073014211559435 XTBT9AQ | motion#1875 +09:53:13.769-0700 871073012307345428 DhMQGaw | motion#0636 +09:53:13.773-0700 871073011292315658 GSwiH9g | motion#1597 +09:53:13.811-0700 871073012760317972 KrCAKM4 | motion#9135 +09:53:13.814-0700 871073014358368326 ky45eAA | motion#9890 +09:53:13.909-0700 871073014354169897 KN6ihb0 | motion#6262 +09:53:13.953-0700 871073012458344459 2iDd39I | motion#5035 +09:53:13.969-0700 871072999439212565 PG69mcA | motion#2413 +09:53:13.982-0700 871073014790365214 xKu5TgE | motion#2560 +09:53:14.009-0700 871073005730689085 sBnduUQ | motion#6474 +09:53:14.126-0700 871073001741893673 GyaeFz4 | motion#1427 +09:53:14.220-0700 871073010096930817 k2LKsQc | motion#9453 +09:53:14.252-0700 871073015859912705 _Q3YAT4 | motion#7622 +09:53:14.258-0700 871073005382561813 ow12J8k | motion#5025 +09:53:14.259-0700 871072996939419678 PLC0Yy4 | motion#0532 +09:53:14.271-0700 871073000164847627 _mtLHQA | motion#6302 +09:53:14.277-0700 871073013045547038 7ivAPUY | motion#2302 +09:53:14.294-0700 871073007701987359 Kg9Oc4s | motion#0628 +09:53:14.340-0700 871073008129802260 0ROpamI | motion#3031 +09:53:14.385-0700 871073014828122142 jy8yrSg | motion#1142 +09:53:14.402-0700 871073009501368352 36aHho4 | motion#0597 +09:53:14.410-0700 871073010545754162 SI8SbBI | motion#3467 +09:53:14.421-0700 871073014236729395 7Bm207s | motion#0157 +09:53:14.432-0700 871073019206979624 ennOutU | motion#8370 +09:53:14.595-0700 871073021773889547 oz8MDtA | motion#1251 +09:53:14.646-0700 871073008465371186 nTWjLUQ | motion#2227 +09:53:14.662-0700 871073015004266516 e6M1nIw | motion#5292 +09:53:14.736-0700 871073009253879809 wH7_GD8 | motion#8085 +09:53:14.749-0700 871073015721500682 o9KxmD8 | motion#5207 +09:53:14.781-0700 871073012160544838 k9LkmVs | motion#5050 +09:53:14.823-0700 871073019202793474 wMoV8o4 | motion#3248 +09:53:14.842-0700 871073013267853372 NVoaEXw | motion#8630 +09:53:14.885-0700 871073014316404766 RPCS_h8 | motion#3949 +09:53:14.949-0700 871073006120730644 7MN4iWc | motion#6169 +09:53:15.019-0700 871073001796403240 YPJmBL8 | motion#6923 +09:53:15.085-0700 871073002572382288 PPfsAUQ | motion#2846 +09:53:15.136-0700 871073018988879892 HluP2-c | motion#1985 +09:53:15.167-0700 871073014903627816 8TVwt6k | motion#0514 +09:53:15.168-0700 871073022101037066 isZhy-E | motion#1371 +09:53:15.192-0700 871073013242691605 jsNu85w | motion#2821 +09:53:15.217-0700 871073008024952882 M2-cmXA | motion#7280 +09:53:15.251-0700 871073005202186270 kCLS1mQ | motion#8899 +09:53:15.271-0700 871073001351831653 OW6wlLs | motion#2202 +09:53:15.280-0700 871073006955401217 VbUUtqM | motion#6830 +09:53:15.280-0700 871073021631271004 kLEmK50 | motion#6352 +09:53:15.311-0700 871073016501661716 6_Ir0Mo | motion#2949 +09:53:15.354-0700 871073004937937026 rMQQGJY | motion#5172 +09:53:15.378-0700 871073021408972871 BonbsmM | motion#7132 +09:53:15.397-0700 871073005260927018 vJMCUdU | motion#5067 +09:53:15.644-0700 871073018749800478 7rG7AFY | motion#3093 +09:53:15.664-0700 871073022948294657 Gd5MBEs | motion#4753 +09:53:15.696-0700 871073017009147976 v3QytNc | motion#3151 +09:53:15.705-0700 871073021195079700 IBvAyUM | motion#9163 +09:53:15.766-0700 871073023275442248 U4EHxHo | motion#2156 +09:53:15.778-0700 871072998675845130 rs7S6ZY | motion#1135 +09:53:15.798-0700 871073004401074227 9KbyPRc | motion#1071 +09:53:15.815-0700 871073024294653972 ohbTf3Q | motion#1975 +09:53:15.838-0700 871073006590492762 5hd0CcQ | motion#4344 +09:53:15.856-0700 871073002018734180 fEJC72k | motion#4470 +09:53:15.961-0700 871073021731942460 AfcfhwQ | motion#4180 +09:53:15.988-0700 871073019177619506 ETqNTpE | motion#7904 +09:53:16.051-0700 871073020238778368 x3VhZK8 | motion#1167 +09:53:16.089-0700 871073017952878643 UatEg0g | motion#6727 +09:53:16.115-0700 871073016614903858 gzR5KlY | motion#2910 +09:53:16.177-0700 871073019068551188 b9U2tsM | motion#1340 +09:53:16.189-0700 871073017420206150 fdmnTGw | motion#2717 +09:53:16.192-0700 871073024709910589 IEtr5hc | motion#9599 +09:53:16.205-0700 871073023824904262 FXdz3kQ | motion#6414 +09:53:16.217-0700 871073029386567740 M2eByK0 | motion#4275 +09:53:16.217-0700 871073010046599188 pyCWTVU | motion#9781 +09:53:16.242-0700 871073017046913084 A9BSyCU | motion#9796 +09:53:16.253-0700 871073019106312223 Linbb5w | motion#4950 +09:53:16.263-0700 871073013481754644 d7q6EV0 | motion#8976 +09:53:16.263-0700 871073025410347058 ZtQc1_A | motion#9711 +09:53:16.270-0700 871073024252723200 Zwduq8k | motion#2217 +09:53:16.373-0700 871073031395618856 9glbqTw | motion#2247 +09:53:16.417-0700 871073018410053643 xtLl6Mk | motion#9621 +09:53:16.622-0700 871073026152751114 kQxNF2I | motion#8039 +09:53:16.669-0700 871073028568662046 dapUtis | motion#8879 +09:53:16.684-0700 871073023724240967 s-5sN40 | motion#9075 +09:53:16.704-0700 871073026089844788 pMJroww | motion#8814 +09:53:16.729-0700 871073023984283710 c_40V3Y | motion#6650 +09:53:16.780-0700 871073024407920671 mRDKZNs | motion#2915 +09:53:16.798-0700 871073022969262131 bOFqNyo | motion#6536 +09:53:16.822-0700 871073028270882886 oT7u2A0 | motion#8745 +09:53:16.900-0700 871073023980077117 viD5AeI | motion#3851 +09:53:16.925-0700 871073019165048833 hAzsEfM | motion#2979 +09:53:17.046-0700 871073024177229844 1oqw640 | motion#3719 +09:53:17.058-0700 871073024709910579 HacbZLY | motion#0488 +09:53:17.068-0700 871073025733296168 CTz7OXk | motion#4272 +09:53:17.079-0700 871073029071994900 gcVqPtY | motion#1185 +09:53:17.100-0700 871073025091579905 0oinAVw | motion#5786 +09:53:17.127-0700 871073026471497769 XYhSnwY | motion#4874 +09:53:17.128-0700 871073024193990757 shTCO9I | motion#8072 +09:53:17.165-0700 871072995312009236 c8caaaQ | motion#2428 +09:53:17.203-0700 871073023086694490 1vuLFrs | motion#7436 +09:53:17.249-0700 871073026546999348 aeR5bkA | motion#8308 +09:53:17.405-0700 871073020914065438 4I2A8ig | motion#8189 +09:53:17.418-0700 871073021421572106 OOZAL_I | motion#1785 +09:53:17.447-0700 871073015914463322 3K-P_l8 | motion#1564 +09:53:17.530-0700 871073021845200956 Bcs6E8Q | motion#4395 +09:53:17.882-0700 871073023153823795 C7W5r2c | motion#2878 +09:53:18.157-0700 871073023506153473 4c-RnkI | motion#4183 +09:53:18.166-0700 871073030393184256 uInVW0Q | motion#7507 +09:53:18.196-0700 871073028598018110 4VGnCKM | motion#2247 +09:53:18.250-0700 871073033077555240 bG4_0PY | motion#7869 +09:53:18.303-0700 871073027847241758 gpXUCPk | motion#9490 +09:53:18.323-0700 871073030204428368 Tj9fLlE | motion#9403 +09:53:18.459-0700 871073021127966780 _WK3yB8 | motion#1371 +09:53:18.468-0700 871073023900389386 IlwUxj4 | motion#5592 +09:53:18.545-0700 871073026832203797 AFQtBYQ | motion#8170 +09:53:18.721-0700 871073032708452352 LTgCA14 | motion#7137 +09:53:18.758-0700 871073032880422913 ysecJDc | motion#3741 +09:53:18.775-0700 871073022377857076 2eD6eVQ | motion#9153 +09:53:18.794-0700 871073035971624990 plk3kD8 | motion#0182 +09:53:18.860-0700 871073038324617216 hpOtCkg | motion#6130 +09:53:18.893-0700 871073035623489577 ufQR42Y | motion#4760 +09:53:18.898-0700 871073026878369803 yn07jcE | motion#2502 +09:53:19.006-0700 871073031815069776 kGf869o | motion#4415 +09:53:19.021-0700 871073023418044446 TVWS6m4 | motion#2334 +09:53:19.093-0700 871073034369376257 YraZL1s | motion#8101 +09:53:19.107-0700 871073022495297566 bUdNDWo | motion#9358 +09:53:19.109-0700 871073032070897686 Rsl5WsY | motion#3404 +09:53:19.114-0700 871073029352996985 TcL8Tgc | motion#9197 +09:53:19.123-0700 871073027721420811 W6Pn2qM | motion#4728 +09:53:19.160-0700 871073027427807273 SchbNKU | motion#8737 +09:53:19.167-0700 871073032016392253 Q6KbmHE | motion#9175 +09:53:19.174-0700 871073032649703476 fZbyCLc | motion#0843 +09:53:19.180-0700 871073028950335539 1j3GSq0 | motion#8048 +09:53:19.183-0700 871073030422528056 7hcPeJA | motion#0734 +09:53:19.195-0700 871073034864308255 LE4LME0 | motion#3519 +09:53:19.250-0700 871073026177904652 LxpN3tQ | motion#4227 +09:53:19.408-0700 871073026169516094 -VyG25E | motion#2994 +09:53:19.427-0700 871073035606708264 s5Qaa4c | motion#4664 +09:53:19.458-0700 871073014756835328 j8olKqo | motion#8268 +09:53:19.542-0700 871073028069527603 ug0eFn8 | motion#5377 +09:53:19.554-0700 871073035724140554 IIlX0tc | motion#8904 +09:53:19.554-0700 871073029508182016 7Gs6mVQ | motion#2423 +09:53:19.600-0700 871073032595189760 IvdL7HI | motion#5807 +09:53:19.601-0700 871073037221515265 QjbYgDY | motion#8378 +09:53:19.669-0700 871073030657421363 xBI4K4s | motion#0459 +09:53:19.695-0700 871073031009751100 3u7_iG0 | motion#2822 +09:53:19.700-0700 871073028304437299 xSOwzac | motion#9918 +09:53:19.709-0700 871073029667577887 23-CbEg | motion#6773 +09:53:19.892-0700 871073024374370306 4fb065g | motion#9072 +09:53:19.898-0700 871073037410250772 dcfK4Ro | motion#3428 +09:53:19.920-0700 871073040639885342 cIOs6rs | motion#9446 +09:53:20.038-0700 871073035480858666 -MdmIhQ | motion#6134 +09:53:20.051-0700 871073037166977104 c0M9T0E | motion#8431 +09:53:20.053-0700 871073038890848336 S70u0SY | motion#7122 +09:53:20.061-0700 871073039276703835 HbhXt1s | motion#0236 +09:53:20.138-0700 871073034348400650 FwlCJI0 | motion#7991 +09:53:20.143-0700 871073028421861398 dQFE6hY | motion#2692 +09:53:20.162-0700 871073027486548008 GzQZ8RM | motion#5829 +09:53:20.183-0700 871073038609821768 LX6IjSo | motion#5883 +09:53:20.188-0700 871073039943602266 kqu2UUM | motion#3450 +09:53:20.407-0700 871073041042538547 VF1pEWk | motion#8977 +09:53:20.409-0700 871073029558501387 a1sOevA | motion#0861 +09:53:20.424-0700 871073031815045120 zPnMwTc | motion#1900 +09:53:20.427-0700 871073033316597761 eGp5LiE | motion#9300 +09:53:20.444-0700 871073035011113041 bVYaPAw | motion#2673 +09:53:20.469-0700 871073040769884300 nrpcodA | motion#7097 +09:53:20.586-0700 871073039939432478 8F54-0s | motion#8318 +09:53:20.635-0700 871073032276426752 pzJDVOg | motion#9379 +09:53:20.705-0700 871073034092548168 rxA8fgs | motion#7845 +09:53:20.761-0700 871073040052678666 a5R9_EY | motion#1468 +09:53:20.833-0700 871073038685311006 0nDEDaU | motion#4363 +09:53:20.867-0700 871073019622215681 BHmXHzo | motion#2838 +09:53:20.879-0700 871073030758080513 UL6gH9Q | motion#9165 +09:53:20.926-0700 871073043584258068 G6atMA0 | motion#2481 +09:53:20.963-0700 871073040463700008 Ysm2uqY | motion#4687 +09:53:20.983-0700 871073033614397540 MhyluQ0 | motion#6894 +09:53:21.036-0700 871073041604546600 2GfOCgs | motion#7652 +09:53:21.100-0700 871073040757305406 S6mGVq4 | motion#4766 +09:53:21.144-0700 871073044959985695 YTI0m7Q | motion#9175 +09:53:21.168-0700 871073041218666596 H7_SWc8 | motion#3968 +09:53:21.219-0700 871073044339232839 m_QW1n0 | motion#7945 +09:53:21.310-0700 871073034830749777 yvOvmiU | motion#9048 +09:53:21.334-0700 871073044481843201 sn3HQU0 | motion#8575 +09:53:21.361-0700 871073049884114964 J9MJ30M | motion#6654 +09:53:21.439-0700 871073030426722334 rkMKpW0 | motion#3794 +09:53:21.467-0700 871073041382248500 cjQapEo | motion#8171 +09:53:21.497-0700 871073042892218489 o6-dNVU | motion#2995 +09:53:21.529-0700 871073038047784990 VNDZuoQ | motion#4074 +09:53:21.540-0700 871073044511203339 DmHQ4VA | motion#9463 +09:53:21.561-0700 871073042753785856 _VnVtV4 | motion#2031 +09:53:21.609-0700 871073048441266228 3cYPxjQ | motion#6126 +09:53:21.614-0700 871073030439305256 wNjV_AQ | motion#3746 +09:53:21.619-0700 871073041835257866 FubpvsM | motion#1270 +09:53:21.657-0700 871073033438236763 INy1flM | motion#0694 +09:53:21.676-0700 871073042720251914 1GlQWNU | motion#2349 +09:53:21.786-0700 871073033790574643 WiNfSGM | motion#2216 +09:53:21.797-0700 871073051318575114 EkOqKGI | motion#0713 +09:53:21.831-0700 871073033853493268 jm94F5I | motion#3632 +09:53:21.840-0700 871073040946065479 DIEtsV8 | motion#1558 +09:53:21.851-0700 871073032091889704 diW3sN4 | motion#3572 +09:53:21.871-0700 871073022168137739 q7bEkbQ | motion#9352 +09:53:21.913-0700 871073040585330718 EDm7ZW8 | motion#2361 +09:53:21.932-0700 871073040287531030 fI7nmQ4 | motion#1082 +09:53:21.949-0700 871073040748912680 MXZjKp4 | motion#0109 +09:53:21.973-0700 871073047187177512 tfv8eiI | motion#7903 +09:53:22.017-0700 871073048533561394 XK8yoAY | motion#6665 +09:53:22.144-0700 871073046566428722 ohxflag | motion#5310 +09:53:22.153-0700 871073046096642108 g28MYTg | motion#6077 +09:53:22.191-0700 871073044687388712 XI7wRg8 | motion#0014 +09:53:22.200-0700 871073054749499484 GV4Q5QQ | motion#6645 +09:53:22.206-0700 871073036948885534 wcUCTSM | motion#4391 +09:53:22.210-0700 871073046524473345 ZzSoRz0 | motion#2664 +09:53:22.231-0700 871073046277021758 4vYG_kU | motion#9211 +09:53:22.239-0700 871073054720159745 crtg1Hk | motion#4036 +09:53:22.277-0700 871073043047395388 EzViYyA | motion#9464 +09:53:22.285-0700 871073039025049621 4_UAp6E | motion#3728 +09:53:22.364-0700 871073055504478308 93zi6DU | motion#0643 +09:53:22.377-0700 871073048101548082 ioNi1xU | motion#9297 +09:53:22.391-0700 871073035548000266 RCsLiDg | motion#2076 +09:53:22.407-0700 871073042200141844 RbEsoUQ | motion#4553 +09:53:22.417-0700 871073050681036840 Q-Ywu0g | motion#3702 +09:53:22.446-0700 871073044108562473 2wLu3pw | motion#0587 +09:53:22.470-0700 871073051683475516 QKF7bho | motion#2575 +09:53:22.479-0700 871073051264032858 aERkQvM | motion#1223 +09:53:22.523-0700 871073045765316648 hLxri5s | motion#8919 +09:53:22.531-0700 871073049355644989 iFpy15Q | motion#1505 +09:53:22.595-0700 871073044880326737 CmxYPEM | motion#5012 +09:53:22.611-0700 871073044951625728 M33vAaM | motion#8357 +09:53:22.686-0700 871073042393100348 1UkzqnU | motion#2925 +09:53:22.708-0700 871073052069343242 PoUwlxw | motion#9694 +09:53:22.752-0700 871073044939046943 HfZYicQ | motion#5595 +09:53:22.785-0700 871073045375221850 -TFsLzw | motion#7688 +09:53:22.810-0700 871073033484394536 ojns4U0 | motion#9885 +09:53:22.848-0700 871073045622689843 YwlYFQ8 | motion#0260 +09:53:22.875-0700 871073053675761744 JbKBhkQ | motion#6087 +09:53:22.918-0700 871073045832405032 PRX42Jc | motion#5354 +09:53:22.930-0700 871073041730404385 leARDL8 | motion#8875 +09:53:22.934-0700 871073055504498688 VXfggFs | motion#5137 +09:53:22.936-0700 871073053327642624 fDZWTqU | motion#4328 +09:53:22.976-0700 871073051175960637 qKSmW5o | motion#1643 +09:53:23.055-0700 871073050467135518 nQKj810 | motion#5238 +09:53:23.067-0700 871073032981073922 lFWxuu8 | motion#0107 +09:53:23.098-0700 871073031492091934 S7_Nxds | motion#6075 +09:53:23.104-0700 871073039306076190 uMdvQKs | motion#4117 +09:53:23.213-0700 871073031852818453 kNwIt7U | motion#2773 +09:53:23.259-0700 871073046260240446 G0ZwdpQ | motion#4814 +09:53:23.310-0700 871073045094207568 ogxcT2c | motion#0398 +09:53:23.337-0700 871073045987610634 JsBL3QE | motion#3602 +09:53:23.340-0700 871073051872223232 3GvRXOY | motion#6993 +09:53:23.384-0700 871073056947318804 FAuiRs4 | motion#2406 +09:53:23.471-0700 871073052056772719 NWh56CI | motion#7164 +09:53:23.485-0700 871073057274470400 QgrP8OA | motion#7903 +09:53:23.577-0700 871073060457955329 SD88idY | motion#8528 +09:53:23.615-0700 871073048151851038 BteQx-g | motion#3506 +09:53:23.686-0700 871073047262658561 Fg34PD0 | motion#5084 +09:53:23.692-0700 871073050383220797 G-ei8-Q | motion#1921 +09:53:23.732-0700 871073054728540191 cbfyD_c | motion#6615 +09:53:23.788-0700 871073046990045224 ZvXKjHM | motion#1209 +09:53:23.818-0700 871073049145917440 jh1oWV4 | motion#0883 +09:53:23.822-0700 871073052799172718 mRcImUc | motion#0600 +09:53:23.841-0700 871073039964590110 QZFzLFc | motion#1952 +09:53:23.865-0700 871073057597452288 7uwa3go | motion#9376 +09:53:23.894-0700 871073059933650995 gD0hrC0 | motion#2320 +09:53:23.976-0700 871073055152144445 Osv3y9w | motion#9889 +09:53:24.003-0700 871073048604852245 BTMsReI | motion#5692 +09:53:24.028-0700 871073051113058355 fAfolxI | motion#1401 +09:53:24.033-0700 871073059216424961 Ie2Wnnk | motion#4919 +09:53:24.051-0700 871073058746675240 X2zKm-k | motion#9470 +09:53:24.054-0700 871073047300436019 sA1Eczo | motion#6109 +09:53:24.091-0700 871073057979125780 hWUE5Dc | motion#7800 +09:53:24.146-0700 871073044888715274 w4z_2HQ | motion#0877 +09:53:24.152-0700 871073041361289277 XTbLi_s | motion#6598 +09:53:24.159-0700 871073041709416488 ybXLwic | motion#8851 +09:53:24.177-0700 871073049246588938 oTk6Jbo | motion#0823 +09:53:24.199-0700 871073046306357318 alcJ2oU | motion#4599 +09:53:24.212-0700 871073050681032784 msMK0Pg | motion#7002 +09:53:24.271-0700 871073048747454464 01uUoHo | motion#1493 +09:53:24.301-0700 871073062391529484 Z07GC3Y | motion#2207 +09:53:24.353-0700 871073061363937310 If6xhPU | motion#4784 +09:53:24.392-0700 871073061552672798 uMBMd2s | motion#5509 +09:53:24.455-0700 871073058193022976 6M21Bzo | motion#5955 +09:53:24.488-0700 871073051939311688 xsCb5zU | motion#7604 +09:53:24.643-0700 871073057702285333 ZN_IXuw | motion#5010 +09:53:24.705-0700 871073058297905152 kRIBqic | motion#1681 +09:53:24.770-0700 871073058608255066 j-Lv_0c | motion#5640 +09:53:24.973-0700 871073061011587092 fYbXEag | motion#5264 +09:53:25.064-0700 871073051633131600 Gox7MHg | motion#5961 +09:53:25.069-0700 871073051402461255 WLb2JEE | motion#5937 +09:53:25.111-0700 871073057706500117 iEXff0Q | motion#6992 +09:53:25.123-0700 871073062374760478 2o4PrWs | motion#1957 +09:53:25.124-0700 871073045970841620 q3dHjqM | motion#9093 +09:53:25.137-0700 871073052287459368 eJyNKX0 | motion#8861 +09:53:25.148-0700 871073052530728960 xclbWJE | motion#0633 +09:53:25.177-0700 871073060172742706 ncqrC20 | motion#2321 +09:53:25.191-0700 871073061179371602 vogA7YU | motion#0875 +09:53:25.213-0700 871073053558329385 5J88hbA | motion#7135 +09:53:25.237-0700 871073052635586561 StMplgA | motion#3636 +09:53:25.247-0700 871073060017561630 3ypQnB0 | motion#8633 +09:53:25.260-0700 871073057727463436 r2mOhsg | motion#4006 +09:53:25.361-0700 871073056393662474 5bX1tVY | motion#9578 +09:53:25.372-0700 871073030963617802 hxAs2FQ | motion#8551 +09:53:25.387-0700 871073060772536370 cWSqZH4 | motion#5663 +09:53:25.437-0700 871073057526149120 neIjeNs | motion#8399 +09:53:25.439-0700 871073061850476554 s72uShs | motion#7189 +09:53:25.650-0700 871073052417462272 qx0SqKo | motion#1936 +09:53:25.679-0700 871073062160842752 P_X_cVc | motion#0800 +09:53:25.783-0700 871073053377966102 5sF7ESE | motion#4104 +09:53:25.935-0700 871073060671860777 rBdpQTY | motion#6799 +09:53:25.972-0700 871073062525763594 pSjWgYg | motion#3935 +09:53:26.058-0700 871073062433456128 -5_Bl1U | motion#3783 +09:53:26.110-0700 871073057563901992 gCva8Cw | motion#0904 +09:53:26.143-0700 871073052534898729 OgK1zLI | motion#6791 +09:53:26.156-0700 871073062748053544 GoX-1bw | motion#0405 +09:53:26.198-0700 871073052597829694 i13AaxA | motion#9162 +09:53:26.207-0700 871073053050830948 PUPHQVQ | motion#7286 +09:53:26.245-0700 871073062022414346 qFUCngE | motion#6784 +09:53:26.364-0700 871073063607861389 fXCP6dE | motion#8737 +09:53:26.379-0700 871073065918943232 1c0zXT8 | motion#4381 +09:53:26.381-0700 871073065545637948 GBHIh2U | motion#8074 +09:53:26.426-0700 871073046042124358 wNvewkY | motion#4733 +09:53:26.486-0700 871073068531978302 CtDXae0 | motion#9792 +09:53:26.487-0700 871073068393570305 YXW9ocU | motion#2982 +09:53:26.515-0700 871073062412513291 ECv9HO8 | motion#0216 +09:53:26.520-0700 871073065612759080 mys8b-M | motion#2441 +09:53:26.630-0700 871073067143680020 9ZCUmQE | motion#4973 +09:53:26.646-0700 871073066141237288 UOyqPKs | motion#3580 +09:53:26.691-0700 871073065059119164 RBE7YX4 | motion#0990 +09:53:26.700-0700 871073047233306644 R5p-jiE | motion#1205 +09:53:26.719-0700 871073060030119966 6b3Qzwc | motion#0425 +09:53:26.719-0700 871073052887240714 S3qB2SE | motion#8378 +09:53:26.758-0700 871073067240140820 O9ONfTo | motion#5890 +09:53:26.766-0700 871073062911627275 ZeC_7gA | motion#1049 +09:53:26.781-0700 871073063926652969 G6z-UHM | motion#0941 +09:53:26.800-0700 871073062760611910 P9K0nxQ | motion#1483 +09:53:26.817-0700 871073065944113222 hGq4uVg | motion#0158 +09:53:26.893-0700 871073067718307941 oGdYK7k | motion#3153 +09:53:26.932-0700 871073063301701722 J9OzBoA | motion#0903 +09:53:26.936-0700 871073061208735814 xbgWSCk | motion#0051 +09:53:26.938-0700 871073068032852028 2m7MvA0 | motion#6760 +09:53:26.946-0700 871073068964003880 BwuMLO0 | motion#7751 +09:53:26.965-0700 871073062081150997 lj57ZAE | motion#1328 +09:53:26.971-0700 871073063079399475 P5jQh0k | motion#2572 +09:53:27.008-0700 871073061904998490 DTrHHeA | motion#7950 +09:53:27.035-0700 871073063515602955 tNJx2W8 | motion#0883 +09:53:27.044-0700 871073068355817523 uIMKy48 | motion#7789 +09:53:27.064-0700 871073061942722602 4aoioY0 | motion#2804 +09:53:27.070-0700 871073073481261066 vuTHFG8 | motion#8374 +09:53:27.077-0700 871073063301709875 G8NM40I | motion#9589 +09:53:27.169-0700 871073058499227668 i6-6YD0 | motion#3782 +09:53:27.184-0700 871073070855639071 N4Cw8Ic | motion#4092 +09:53:27.234-0700 871073071891632228 FMZT0F8 | motion#8410 +09:53:27.272-0700 871073069396000769 z0vXdvk | motion#0966 +09:53:27.280-0700 871073050458730537 GALeMMM | motion#7789 +09:53:27.307-0700 871073068750106667 ZzUe09c | motion#6990 +09:53:27.343-0700 871073048877469777 GFdQUnk | motion#8902 +09:53:27.442-0700 871073068511014943 4zA-gFU | motion#2439 +09:53:27.473-0700 871073070033547284 bAtp3k4 | motion#3885 +09:53:27.510-0700 871073068007686184 L0c7evA | motion#6925 +09:53:27.532-0700 871073068938829885 Ku7X3Eg | motion#1482 +09:53:27.582-0700 871073064027308052 5163pos | motion#1251 +09:53:27.590-0700 871073046222499891 fBvnY7o | motion#6785 +09:53:27.616-0700 871073071715483719 aNsVpGQ | motion#4679 +09:53:27.626-0700 871073071463792660 ldWjVm4 | motion#0560 +09:53:27.673-0700 871073070662692864 n-PriqA | motion#9749 +09:53:27.699-0700 871073073976197170 7zTuQ28 | motion#1873 +09:53:27.725-0700 871073069479886908 QOFHA9g | motion#9103 +09:53:27.838-0700 871073070096461894 U9eKWpw | motion#5794 +09:53:27.860-0700 871073068150296636 9wumeno | motion#2075 +09:53:27.975-0700 871073068703973417 D8tOgv4 | motion#2670 +09:53:27.988-0700 871073063591104532 jyRAO8w | motion#8684 +09:53:28.040-0700 871073073846161410 519KMjs | motion#8584 +09:53:28.063-0700 871073068540362813 x5dKs7Q | motion#0228 +09:53:28.144-0700 871073074378834011 YxRYDaE | motion#4635 +09:53:28.169-0700 871073071681921024 0H9ZNW0 | motion#1384 +09:53:28.206-0700 871073073812611103 qu0tzQY | motion#0366 +09:53:28.263-0700 871073069672841288 9mu5eHk | motion#1704 +09:53:28.264-0700 871073068410339388 U-mI-9M | motion#3316 +09:53:28.354-0700 871073052996288585 AiiREsE | motion#3941 +09:53:28.362-0700 871073074378862644 8u4oX64 | motion#6558 +09:53:28.466-0700 871073068561358848 36gjY9g | motion#4441 +09:53:28.504-0700 871073069744156723 mp6qddw | motion#3812 +09:53:28.800-0700 871073073133154344 aWB46iY | motion#3903 +09:53:28.818-0700 871073075028951081 t5mc0DA | motion#2450 +09:53:28.831-0700 871073063075201054 HaJcw0k | motion#1788 +09:53:28.847-0700 871073068011880508 fgEzEyk | motion#7899 +09:53:28.849-0700 871073076324991036 Xig9_sE | motion#7825 +09:53:28.906-0700 871073083946065980 5Syj9o4 | motion#1316 +09:53:28.919-0700 871073072399122502 xXfmwSQ | motion#8530 +09:53:29.020-0700 871073080049553458 RCGxpEA | motion#9669 +09:53:29.031-0700 871073075016400896 DibLjN8 | motion#9030 +09:53:29.139-0700 871073075532267550 kskrPj0 | motion#5923 +09:53:29.140-0700 871073074827657226 6laTrmo | motion#6553 +09:53:29.160-0700 871073075616174121 VzRMbqA | motion#8404 +09:53:29.180-0700 871073057538723891 pD2TWyE | motion#7607 +09:53:29.186-0700 871073074836033546 XdDLrpo | motion#8380 +09:53:29.289-0700 871073074462720031 AiHZUY4 | motion#3204 +09:53:29.308-0700 871073077033828363 skq24Ng | motion#0202 +09:53:29.312-0700 871073074164928533 TNM8AlI | motion#7492 +09:53:29.315-0700 871073075242868756 rrDZFMc | motion#2088 +09:53:29.326-0700 871073050387447849 u_8t2LA | motion#6283 +09:53:29.327-0700 871073079634305106 BNATAhE | motion#9231 +09:53:29.363-0700 871073071723847680 Bxher_0 | motion#9771 +09:53:29.375-0700 871073076027215923 _9p47js | motion#1254 +09:53:29.388-0700 871073077402939432 ILcmBqY | motion#6159 +09:53:29.406-0700 871073074278174730 1-MvQcA | motion#3498 +09:53:29.506-0700 871073077646205018 Igts8PA | motion#5130 +09:53:29.544-0700 871073073745518594 ZW1Uivw | motion#9358 +09:53:29.565-0700 871073064136351764 rE0r0Ow | motion#5922 +09:53:29.582-0700 871073078589923389 32DFm4o | motion#3052 +09:53:29.599-0700 871073075679068221 jzQ56EI | motion#9669 +09:53:29.635-0700 871073075993657346 ACutaKo | motion#5767 +09:53:29.679-0700 871073078237622313 RPU_byk | motion#3424 +09:53:29.715-0700 871073083493077093 37IrFgY | motion#1767 +09:53:29.753-0700 871073073166712863 L2I86Cw | motion#1306 +09:53:29.788-0700 871073081467240478 NJLr3kA | motion#2955 +09:53:29.790-0700 871073077822361641 kndhwCE | motion#9971 +09:53:29.799-0700 871073067399520277 lX0bg8c | motion#7827 +09:53:29.846-0700 871073067110129674 Dt3Lg_s | motion#4403 +09:53:29.863-0700 871073078959013908 jz92JW8 | motion#6831 +09:53:29.870-0700 871073078468313168 sLA1hlw | motion#2275 +09:53:29.971-0700 871073078833205360 xxk6dsE | motion#9373 +09:53:29.972-0700 871073079793705020 h-qzLbY | motion#5946 +09:53:30.011-0700 871073085082730506 ula6tSs | motion#1455 +09:53:30.022-0700 871073062852898836 CQqrrXc | motion#4574 +09:53:30.037-0700 871073080984891402 GuCdPjE | motion#6100 +09:53:30.121-0700 871073078241787965 eKZlIOA | motion#0426 +09:53:30.135-0700 871073067504381964 IVS2gZU | motion#7613 +09:53:30.185-0700 871073069689618452 G4DNPCw | motion#5890 +09:53:30.193-0700 871073082268323850 jRYTrfQ | motion#7107 +09:53:30.194-0700 871073082633257020 UzcHwb0 | motion#3272 +09:53:30.244-0700 871073083082027139 CP0Sxkk | motion#9138 +09:53:30.266-0700 871073082209624114 o9nuyHc | motion#8952 +09:53:30.319-0700 871073081987309608 _b19f7E | motion#9662 +09:53:30.325-0700 871073064308330566 GhwrX3A | motion#1727 +09:53:30.326-0700 871073073388998676 ODZDMjU | motion#6584 +09:53:30.327-0700 871073083610509382 HHIF2Qc | motion#4561 +09:53:30.347-0700 871073081899229276 0Z2fSi4 | motion#0585 +09:53:30.347-0700 871073078363439164 _oYDbRw | motion#0237 +09:53:30.374-0700 871073082834579546 Gr-3In4 | motion#6131 +09:53:30.435-0700 871073063884713994 sUN4uz0 | motion#8753 +09:53:30.442-0700 871073080343154798 WciR-_4 | motion#6804 +09:53:30.550-0700 871073083501461505 ImGbmgA | motion#2057 +09:53:30.680-0700 871073081131687976 WF8hnNQ | motion#8353 +09:53:30.686-0700 871073066036383774 ydLJy7E | motion#3999 +09:53:30.714-0700 871073078736748585 AHxme7A | motion#1285 +09:53:30.727-0700 871073086710087721 fg_AnhM | motion#7335 +09:53:30.727-0700 871073082431909928 tMcYOQs | motion#7253 +09:53:30.779-0700 871073084143181824 A7zz2E8 | motion#7732 +09:53:30.787-0700 871073082893275207 slk-LWc | motion#4528 +09:53:30.792-0700 871073085023989790 gjWGnto | motion#6618 +09:53:30.795-0700 871073077897863219 h7rotLE | motion#4004 +09:53:30.808-0700 871073076723470396 5vsZ114 | motion#6094 +09:53:30.813-0700 871073050408390687 9NZfQpA | motion#8648 +09:53:30.821-0700 871073082884882442 hiJJNIk | motion#8597 +09:53:30.839-0700 871073085359534090 4Mekbr0 | motion#7274 +09:53:30.861-0700 871073070692040714 hWwx6R0 | motion#0438 +09:53:30.896-0700 871073073200263168 DiwkGqY | motion#6148 +09:53:30.967-0700 871073060520886332 fnSck1A | motion#3814 +09:53:31.132-0700 871073082788429885 nLUtHww | motion#3935 +09:53:31.148-0700 871073084378075217 gGQXS1k | motion#4565 +09:53:31.327-0700 871073089939714068 USM1ahc | motion#3666 +09:53:31.413-0700 871073084218687538 wyYfNoA | motion#9812 +09:53:31.445-0700 871073082813612063 49PWumc | motion#3583 +09:53:31.495-0700 871073085233700924 uTZDtLc | motion#6912 +09:53:31.531-0700 871073085900619827 tu3Ejis | motion#3709 +09:53:31.573-0700 871073082863943740 o-PsDlQ | motion#5038 +09:53:31.598-0700 871073084885577808 8jr5-kk | motion#2589 +09:53:31.604-0700 871073081173631027 V63yOog | motion#8125 +09:53:31.704-0700 871073076945760316 8lNf9iY | motion#3382 +09:53:31.722-0700 871073089377677322 JBhTjIE | motion#6814 +09:53:31.750-0700 871073081370750976 V_tAPKU | motion#5884 +09:53:31.872-0700 871073087058235422 pEyOV0k | motion#6936 +09:53:31.908-0700 871073085363744778 hjDHT5k | motion#6795 +09:53:31.938-0700 871073090896027718 9_yLfYM | motion#2475 +09:53:31.964-0700 871073089155375124 -ycS1mM | motion#5153 +09:53:32.013-0700 871073084327727184 0eVwel8 | motion#6376 +09:53:32.019-0700 871073090208161922 zL94BgY | motion#3766 +09:53:32.037-0700 871073090384318544 GsXVX5Q | motion#3470 +09:53:32.039-0700 871073093051908226 AgytZ3g | motion#6934 +09:53:32.077-0700 871073090468188232 OBU2qxo | motion#6771 +09:53:32.088-0700 871073088744325120 VxHxty8 | motion#8536 +09:53:32.107-0700 871073095920779264 qaboxJI | motion#8243 +09:53:32.144-0700 871073085216923698 Vy0AzA4 | motion#6770 +09:53:32.147-0700 871073086622007307 CQEiYpM | motion#3509 +09:53:32.162-0700 871073092464705566 21pc8jE | motion#4809 +09:53:32.183-0700 871073088601731185 jXH66Sg | motion#7297 +09:53:32.313-0700 871073092271763508 JtlF4lc | motion#3180 +09:53:32.360-0700 871073096092778567 ZAJrZRM | motion#3438 +09:53:32.431-0700 871073083958636544 shYGgwM | motion#1482 +09:53:32.519-0700 871073091462246490 Z0MvEZ0 | motion#4633 +09:53:32.570-0700 871073089734193223 mLpZARI | motion#9972 +09:53:32.699-0700 871073086441672785 kAwOOs0 | motion#8137 +09:53:32.756-0700 871073097057456148 74FP5QA | motion#0709 +09:53:32.807-0700 871073088509472779 VP6dRV4 | motion#7945 +09:53:33.307-0700 871073095321018438 1AsMSbk | motion#9921 +09:53:33.326-0700 871073079013543937 _9KQPTg | motion#0052 +09:53:33.544-0700 871073085661515796 q-epkrY | motion#4377 +09:53:33.546-0700 871073094209527808 A69dSr8 | motion#5595 +09:53:33.587-0700 871073077826564098 wVz9vR4 | motion#0751 +09:53:33.614-0700 871073082117328947 oBy843k | motion#2566 +09:53:33.805-0700 871073093056094248 vQvi3cs | motion#9659 +09:53:33.882-0700 871073097829195796 9oas1to | motion#9609 +09:53:33.887-0700 871073095643971615 uzwbxlE | motion#1397 +09:53:33.959-0700 871073094456999996 UYj77FY | motion#8208 +09:53:34.097-0700 871073096134688809 VAFS3tw | motion#7379 +09:53:34.142-0700 871073091378348052 oZhrZZo | motion#9210 +09:53:34.170-0700 871073099699875870 bRe5FSQ | motion#0559 +09:53:34.181-0700 871073096382165064 K08a1KE | motion#4742 +09:53:34.217-0700 871073097783066695 AXqbydE | motion#0411 +09:53:34.229-0700 871073085393088533 HBnMGkM | motion#1815 +09:53:34.247-0700 871073092997349438 Wh2F6RU | motion#6619 +09:53:34.271-0700 871073075096092712 XsiAkDc | motion#2985 +09:53:34.275-0700 871073092410179614 Icz3GbE | motion#0196 +09:53:34.397-0700 871073096109522964 IzzaBPM | motion#6358 +09:53:34.402-0700 871073095442640926 u8oyfiM | motion#0909 +09:53:34.422-0700 871073081584652369 lhTYGuc | motion#6928 +09:53:34.423-0700 871073092682801202 zVxyFNA | motion#5225 +09:53:34.535-0700 871073096575119441 IfT9FvA | motion#2366 +09:53:34.564-0700 871073097107779624 FLaNSgI | motion#9266 +09:53:34.596-0700 871073097472692264 rwdI0Oo | motion#4730 +09:53:34.648-0700 871073090975719446 drbtwM4 | motion#0228 +09:53:34.653-0700 871073103235670096 QTKFUEU | motion#1635 +09:53:34.660-0700 871073089268617236 NWP-cTY | motion#9359 +09:53:34.692-0700 871073102442954773 q9k2pnc | motion#3421 +09:53:34.756-0700 871073098525454397 4LeXyQ4 | motion#1971 +09:53:34.825-0700 871073092116570202 gxFHdHY | motion#4623 +09:53:34.827-0700 871073094285012993 EN29kzw | motion#4496 +09:53:34.881-0700 871073081223962715 b19gj14 | motion#4042 +09:53:34.892-0700 871073098051518515 GZeZOCU | motion#6813 +09:53:34.899-0700 871073084759769118 1reRRik | motion#5207 +09:53:34.914-0700 871073102556200960 wCDuTVg | motion#1848 +09:53:34.992-0700 871073085929975868 L1OEjT0 | motion#4319 +09:53:35.134-0700 871073093425176687 Jojme_0 | motion#6134 +09:53:35.136-0700 871073099389468722 m6ipuO4 | motion#8577 +09:53:35.157-0700 871073092745703425 F9gZWD4 | motion#1150 +09:53:35.182-0700 871073104170979359 zpBRq1I | motion#6063 +09:53:35.189-0700 871073107962626049 UfyRMec | motion#4381 +09:53:35.252-0700 871073091302879292 ps3Ci7I | motion#0873 +09:53:35.299-0700 871073103550226432 DlFqbsw | motion#7676 +09:53:35.301-0700 871073099678904410 YEhAdHs | motion#2132 +09:53:35.330-0700 871073098370256976 Go0nojo | motion#2351 +09:53:35.370-0700 871073104288419900 vRtYUcU | motion#7187 +09:53:35.423-0700 871073098223456266 2XSR4G4 | motion#1520 +09:53:35.514-0700 871073103936118834 7lUMVnM | motion#7584 +09:53:35.535-0700 871073101625032704 OuVABOg | motion#5621 +09:53:35.560-0700 871073097917280336 QoXy9yo | motion#1273 +09:53:35.577-0700 871073110877683793 DKs2vyE | motion#7804 +09:53:35.657-0700 871073102480683039 tqhYy80 | motion#1801 +09:53:35.666-0700 871073098814881842 Y9BUJUA | motion#3367 +09:53:35.690-0700 871073102891733073 kYQ9_u0 | motion#7552 +09:53:35.730-0700 871073099041349723 wsCN-rI | motion#3686 +09:53:35.994-0700 871073094280835113 6QroHJc | motion#6778 +09:53:36.116-0700 871073104372301925 HJ41rSA | motion#0122 +09:53:36.259-0700 871073109376126976 VyfFrnQ | motion#1265 +09:53:36.281-0700 871073105722871858 Z5ULNWI | motion#1256 +09:53:36.313-0700 871073101490815008 LY1E1l8 | motion#7927 +09:53:36.322-0700 871073103676047371 aXi5mR0 | motion#7874 +09:53:36.335-0700 871073099800531054 NT569Nk | motion#2621 +09:53:36.353-0700 871073106872139776 TMp6CAA | motion#6233 +09:53:36.371-0700 871073106482065481 l8LDRy4 | motion#9779 +09:53:36.378-0700 871073091013455913 cHJvoyo | motion#8471 +09:53:36.439-0700 871073104745615411 PEO-dGY | motion#0546 +09:53:36.464-0700 871073101750874173 UoGyQic | motion#9643 +09:53:36.490-0700 871073104133259286 f36UuR4 | motion#4382 +09:53:36.515-0700 871073111578140742 Dfysp5k | motion#2423 +09:53:36.520-0700 871073109120262195 CAliUYk | motion#3720 +09:53:36.549-0700 871073106452693012 YfQYT2M | motion#6151 +09:53:36.552-0700 871073104523305053 3h6MW3A | motion#8815 +09:53:36.554-0700 871073112349888572 sUbBuJY | motion#7630 +09:53:36.569-0700 871073104573661244 3rXmN_Y | motion#4982 +09:53:36.569-0700 871073103898370058 GHyTtgs | motion#1587 +09:53:36.618-0700 871073090879246346 85M1j3M | motion#2474 +09:53:36.620-0700 871073100245118998 5t8MuMA | motion#1592 +09:53:36.630-0700 871073102841409546 o-Knn20 | motion#6934 +09:53:36.673-0700 871073100039593994 AF9Bwzc | motion#1393 +09:53:36.757-0700 871073098617749584 v9qGuM8 | motion#0849 +09:53:36.797-0700 871073099712446475 ioWxC8Y | motion#8977 +09:53:36.798-0700 871073106893086760 yfjeNts | motion#6551 +09:53:36.820-0700 871073107081826304 AmOVoxs | motion#8325 +09:53:36.862-0700 871073110441484369 kozl-dg | motion#0528 +09:53:36.867-0700 871073110294675496 8xIYP9A | motion#4123 +09:53:36.892-0700 871073107836825640 WaNI3y4 | motion#0195 +09:53:37.005-0700 871073113297784832 J_zjF-M | motion#8332 +09:53:37.017-0700 871073092464705546 GL3uFho | motion#9993 +09:53:37.144-0700 871073099964117064 x8LZLow | motion#1439 +09:53:37.185-0700 871073107954266142 UxuWkjM | motion#4439 +09:53:37.204-0700 871073106075189280 qeXcGxw | motion#6542 +09:53:37.238-0700 871073101411155969 qZcTE5w | motion#2988 +09:53:37.256-0700 871073099972509786 EFfFHI4 | motion#0067 +09:53:37.258-0700 871073099561463880 ndZNlrE | motion#7650 +09:53:37.259-0700 871073112047910943 _ABuyCA | motion#1186 +09:53:37.264-0700 871073081974747158 G066t6I | motion#3749 +09:53:37.274-0700 871073111129337856 -QmK4Q4 | motion#8490 +09:53:37.300-0700 871073110869291090 DfdJrS4 | motion#3929 +09:53:37.313-0700 871073109929758731 pJaZDsM | motion#9300 +09:53:37.340-0700 871073109434839100 3uZ-24k | motion#7999 +09:53:37.367-0700 871073108671488020 6Yy7e0s | motion#5856 +09:53:37.368-0700 871073119849295872 E-H5pXA | motion#3182 +09:53:37.392-0700 871073107392217120 wVAFAYc | motion#2168 +09:53:37.447-0700 871073100022816788 O6LLcVQ | motion#1364 +09:53:37.455-0700 871073104586223686 MS-XxJA | motion#2624 +09:53:37.501-0700 871073112219852811 QRw0P34 | motion#8247 +09:53:37.531-0700 871073110554714144 YpYFuY4 | motion#3917 +09:53:37.543-0700 871073112488280075 5tzg1Pg | motion#3540 +09:53:37.593-0700 871073113964683294 qNpF9PU | motion#2206 +09:53:37.622-0700 871073104871444520 MRnDAb4 | motion#6668 +09:53:37.653-0700 871073109174792202 6GudmqI | motion#9800 +09:53:37.671-0700 871073110667968633 EZJk2XI | motion#7935 +09:53:37.703-0700 871073107358654495 M46QbKQ | motion#6145 +09:53:37.768-0700 871073105748033616 kVHe6Pk | motion#9532 +09:53:37.783-0700 871073103738974248 77fZgns | motion#7535 +09:53:37.784-0700 871073104728834099 TrLMDV0 | motion#3213 +09:53:37.791-0700 871073104678502470 zarWQio | motion#3371 +09:53:37.805-0700 871073092267548692 PuBsB2E | motion#4756 +09:53:37.924-0700 871073099423055872 4BH2P1Q | motion#7827 +09:53:38.061-0700 871073104611377183 QavIkzc | motion#2731 +09:53:38.061-0700 871073101109145600 4ERBhPQ | motion#6658 +09:53:38.072-0700 871073111657816134 1s8vlz8 | motion#6711 +09:53:38.125-0700 871073114656763904 Mm84XLg | motion#1016 +09:53:38.167-0700 871073103869009920 gWRloM0 | motion#6379 +09:53:38.186-0700 871073096994533386 7huug-w | motion#6157 +09:53:38.209-0700 871073115906654258 tabl2Fg | motion#2245 +09:53:38.213-0700 871073112588967946 jkK6jI4 | motion#6673 +09:53:38.253-0700 871073099729236069 zcHCWko | motion#5059 +09:53:38.277-0700 871073099800539136 OSkh3o8 | motion#1287 +09:53:38.344-0700 871073116586119198 LopyKzM | motion#4941 +09:53:38.376-0700 871073112953864272 Y9yyg1c | motion#3069 +09:53:38.429-0700 871073112198905886 q5WM47o | motion#4868 +09:53:38.430-0700 871073117420802105 v2wsdeQ | motion#4362 +09:53:38.502-0700 871073115550134272 tzhGjCk | motion#0655 +09:53:38.507-0700 871073090195554326 qxmsfh4 | motion#3945 +09:53:38.537-0700 871073116607115265 xsaBkA4 | motion#5017 +09:53:38.540-0700 871073113050349628 ySlCe34 | motion#2269 +09:53:38.579-0700 871073116867145778 G_BZoQg | motion#4269 +09:53:38.590-0700 871073116196057118 m6q5k3g | motion#6956 +09:53:38.636-0700 871073120268730418 DospbDk | motion#5328 +09:53:38.711-0700 871073099636932618 ntLZdKQ | motion#1227 +09:53:38.713-0700 871073118561644574 mvBrCY8 | motion#7027 +09:53:38.730-0700 871073111733325824 hlkIufo | motion#9855 +09:53:38.768-0700 871073114522529874 Av697XY | motion#8763 +09:53:38.838-0700 871073113729806346 1mmCu8I | motion#9692 +09:53:38.846-0700 871073113935319120 oWyndbQ | motion#1601 +09:53:38.926-0700 871073099804704769 pEzzs38 | motion#4389 +09:53:38.952-0700 871073100899422259 ciAD8kw | motion#1330 +09:53:38.957-0700 871073123540283392 h1c3V8I | motion#0510 +09:53:39.015-0700 871073115025866772 YLVCJSk | motion#5522 +09:53:39.024-0700 871073115478827138 ksVSO-w | motion#8986 +09:53:39.032-0700 871073118154813440 lN0jyqg | motion#0567 +09:53:39.081-0700 871073109443215430 mBDVa2o | motion#3195 +09:53:39.121-0700 871073120818196520 aW4Jgw8 | motion#8542 +09:53:39.123-0700 871073114086334485 faaJGFk | motion#7732 +09:53:39.181-0700 871073112622530611 6RjmzhQ | motion#7079 +09:53:39.222-0700 871073087637041172 ul4iGTM | motion#1695 +09:53:39.245-0700 871073115411730472 1IaxIy0 | motion#9206 +09:53:39.252-0700 871073123615789086 m7bQDTQ | motion#2735 +09:53:39.307-0700 871073115944394844 rpY_M2o | motion#8854 +09:53:39.324-0700 871073114514132993 uIH_yvI | motion#5537 +09:53:39.337-0700 871073112085647390 SOLu4W0 | motion#7242 +09:53:39.412-0700 871073124194607144 fDovti4 | motion#2641 +09:53:39.414-0700 871073116951027723 0aMtJqQ | motion#9980 +09:53:39.425-0700 871073117760528405 VCpUZ1c | motion#0647 +09:53:39.463-0700 871073117894742077 rj4SaQ8 | motion#4276 +09:53:39.501-0700 871073121552183316 lzWtaa4 | motion#6192 +09:53:39.571-0700 871073118658117723 dWng7H4 | motion#6736 +09:53:39.615-0700 871073108084260874 oaFf7IE | motion#3824 +09:53:39.619-0700 871073108168159276 bWc_5-Q | motion#2305 +09:53:39.664-0700 871073116221214750 C9DOsWo | motion#4351 +09:53:39.996-0700 871073106008109126 3wPyOoc | motion#0890 +09:53:39.998-0700 871073105169248326 L5GFdgg | motion#0020 +09:53:40.032-0700 871073118263865384 188_kYM | motion#6168 +09:53:40.048-0700 871073123427057664 bZAMx-k | motion#4563 +09:53:40.049-0700 871073118687481906 m2z0Xps | motion#4665 +09:53:40.105-0700 871073121787072582 H5zRYis | motion#3271 +09:53:40.110-0700 871073110403731526 0INgCnw | motion#9729 +09:53:40.168-0700 871073123456409631 rNQf4pQ | motion#6041 +09:53:40.340-0700 871073121518624839 puE9Yqk | motion#3382 +09:53:40.367-0700 871073122672050186 F6kJUz8 | motion#1867 +09:53:40.414-0700 871073128061730836 Gj3x13Q | motion#4691 +09:53:40.441-0700 871073119530541207 8FGFCns | motion#1205 +09:53:40.459-0700 871073120314884146 z4GYaqw | motion#6957 +09:53:40.461-0700 871073119396306964 j_REt3U | motion#4372 +09:53:40.513-0700 871073125285126204 aHSOEXQ | motion#4169 +09:53:40.682-0700 871073110827352164 rxYsD08 | motion#2442 +09:53:40.701-0700 871073116812636211 Raif9RE | motion#0577 +09:53:40.744-0700 871073123313803285 OStqZxM | motion#6041 +09:53:40.744-0700 871073131639496744 FdAm_iY | motion#2045 +09:53:40.811-0700 871073127839432704 4EZClVs | motion#3532 +09:53:40.812-0700 871073121594126376 2ET4pfA | motion#1556 +09:53:40.897-0700 871073130771255388 hpSJ8d8 | motion#7653 +09:53:40.900-0700 871073119627018261 2O33VNs | motion#8957 +09:53:40.928-0700 871073128619585626 _2-TSHU | motion#3964 +09:53:40.934-0700 871073115936030720 CC_lwms | motion#3736 +09:53:40.948-0700 871073115227185232 D-uD1Ik | motion#8686 +09:53:41.054-0700 871073128145641512 m_dLMw4 | motion#0181 +09:53:41.056-0700 871073114501562409 FSFZdL0 | motion#2348 +09:53:41.088-0700 871073115915042826 ARiyxkk | motion#0568 +09:53:41.170-0700 871073126543400970 GIL2DqI | motion#3987 +09:53:41.181-0700 871073121816416288 I6r59KM | motion#7149 +09:53:41.211-0700 871073132377690122 yU3JJiM | motion#5388 +09:53:41.213-0700 871073116321882172 mCjlh-o | motion#4774 +09:53:41.230-0700 871073127092863006 3hTLTq8 | motion#6783 +09:53:41.323-0700 871073118972694618 72uBKTM | motion#8415 +09:53:41.330-0700 871073127524892703 Si7ZHpc | motion#1805 +09:53:41.346-0700 871073118834266163 kvtIVso | motion#7889 +09:53:41.347-0700 871073128154009631 loG79HA | motion#9246 +09:53:41.349-0700 871073104296804412 QT5H0n4 | motion#4618 +09:53:41.351-0700 871073122265206784 v0dnkOs | motion#8767 +09:53:41.363-0700 871073120067391578 Ex_Ki2k | motion#3691 +09:53:41.389-0700 871073126820221001 grHLZXM | motion#4124 +09:53:41.484-0700 871073125532577832 DaYDm2Y | motion#6822 +09:53:41.612-0700 871073118624555028 wheiFo0 | motion#7597 +09:53:41.693-0700 871073127881375745 hTjJ_Qk | motion#0875 +09:53:41.754-0700 871073123359932416 Q2kKZB8 | motion#4218 +09:53:41.786-0700 871073119949967380 A4O-SJM | motion#6888 +09:53:41.804-0700 871073124416892989 3q8nFtI | motion#2517 +09:53:41.805-0700 871073123515129956 BgABh9M | motion#7209 +09:53:41.984-0700 871073126467915896 aDYZQ5M | motion#4712 +09:53:42.307-0700 871073124978917427 EWeLv4A | motion#9788 +09:53:42.330-0700 871073126597926952 Id2bUcU | motion#0663 +09:53:42.336-0700 871073128023986206 zB8DMUs | motion#4329 +09:53:42.362-0700 871073127600373790 Yf61xHM | motion#6785 +09:53:42.394-0700 871073135267565578 lDWoYv8 | motion#7980 +09:53:42.419-0700 871073124353986721 fGr57XA | motion#4337 +09:53:42.421-0700 871073109627797564 cbCq39k | motion#5972 +09:53:42.494-0700 871073124614021160 hD9omAs | motion#3283 +09:53:42.510-0700 871073132893601842 t44u0XI | motion#5566 +09:53:42.542-0700 871073134349008896 yyO5n-U | motion#6753 +09:53:42.567-0700 871073128330170438 vcsK2r0 | motion#1895 +09:53:42.572-0700 871073123238281286 JRh_Wvw | motion#0185 +09:53:42.574-0700 871073124626620466 -ajBk0Q | motion#7699 +09:53:42.610-0700 871073132998447104 ezTqLFc | motion#0623 +09:53:42.610-0700 871073125197053974 B7O9PY4 | motion#2425 +09:53:42.615-0700 871073134973947964 8YV3cDk | motion#7576 +09:53:42.619-0700 871073133845684235 ZEwv2O4 | motion#0902 +09:53:42.638-0700 871073117731180666 Eb-vsOE | motion#8450 +09:53:42.714-0700 871073132566413472 GaLkKb0 | motion#5371 +09:53:42.741-0700 871073133602414593 -yN2DLE | motion#4901 +09:53:42.783-0700 871073134504189963 e0I1pxI | motion#3683 +09:53:42.895-0700 871073117722796082 7pAiw0k | motion#7687 +09:53:42.933-0700 871073127478755358 yl5Y2v4 | motion#9958 +09:53:42.938-0700 871073136215461980 WMOVlDQ | motion#7694 +09:53:42.948-0700 871073138077757510 C8EiCO8 | motion#4206 +09:53:43.020-0700 871073120893665290 QotTXmk | motion#2644 +09:53:43.079-0700 871073136228065331 mXO9XP0 | motion#1491 +09:53:43.122-0700 871073137901568120 8XGrtyk | motion#2424 +09:53:43.139-0700 871073137889013763 Lagh0zA | motion#7781 +09:53:43.150-0700 871073126082023435 qGuXv1w | motion#3067 +09:53:43.151-0700 871073136479707178 bTu7tPU | motion#3331 +09:53:43.167-0700 871073126958633001 vEZMnTg | motion#8033 +09:53:43.172-0700 871073136504893511 _LPpzjs | motion#7179 +09:53:43.193-0700 871073136907550811 0PPHHXc | motion#6400 +09:53:43.202-0700 871073127784915004 CevG0CA | motion#2515 +09:53:43.213-0700 871073135703756800 5JbVbK8 | motion#5624 +09:53:43.216-0700 871073126136569876 LbJOnhU | motion#1700 +09:53:43.333-0700 871073126778302554 zBwbb-U | motion#1951 +09:53:43.336-0700 871073139562516560 Lp0eURY | motion#1570 +09:53:43.358-0700 871073117072654396 IKvrB70 | motion#9368 +09:53:43.361-0700 871073137767383082 uaXKVwk | motion#1789 +09:53:43.506-0700 871073131660476456 8bq4hRw | motion#8507 +09:53:43.574-0700 871073134705524797 LG_cBas | motion#8468 +09:53:43.618-0700 871073136441962496 67GGUvM | motion#7200 +09:53:43.652-0700 871073133317210182 NDiLBgA | motion#2055 +09:53:43.740-0700 871073127520665671 W4Rcwwc | motion#2787 +09:53:43.764-0700 871073143681351690 E0CXNGM | motion#0898 +09:53:43.767-0700 871073134638432326 rwDZSGo | motion#8315 +09:53:43.781-0700 871073138589458462 5ubc0RU | motion#7666 +09:53:43.838-0700 871073120650412112 rusgSAg | motion#2374 +09:53:43.880-0700 871073144155287582 YYmiW0U | motion#3918 +09:53:43.888-0700 871073134692954142 eTWPa4U | motion#4961 +09:53:43.911-0700 871073145627480125 TAf-dOY | motion#3281 +09:53:43.929-0700 871073139126325299 ISvCQB4 | motion#0993 +09:53:43.933-0700 871073134680350741 tmy9ZdQ | motion#2708 +09:53:43.944-0700 871073114065338469 gamEjew | motion#7727 +09:53:44.000-0700 871073113713025115 Cd2Zv80 | motion#0800 +09:53:44.000-0700 871073140959244290 SKD9M0w | motion#0677 +09:53:44.046-0700 871073144037847081 LRDeuz0 | motion#2806 +09:53:44.118-0700 871073138149036083 gjXs8nw | motion#5644 +09:53:44.151-0700 871073141340930058 ZIyx8b0 | motion#1188 +09:53:44.224-0700 871073134575505498 PuBG7Ek | motion#6544 +09:53:44.225-0700 871073138564292608 qKi6zkQ | motion#4100 +09:53:44.383-0700 871073142481748008 JAtSYQI | motion#2756 +09:53:44.397-0700 871073137826091049 gxHCssI | motion#8103 +09:53:44.441-0700 871073122420404304 HThEY6s | motion#1415 +09:53:44.455-0700 871073135221424128 zsVmkm4 | motion#4070 +09:53:44.455-0700 871073143945564230 yzpqxgw | motion#7712 +09:53:44.503-0700 871073138253893692 -OUi_og | motion#4122 +09:53:44.537-0700 871073140875341854 LrnPxLg | motion#3265 +09:53:44.622-0700 871073147582054410 9HJctAI | motion#8289 +09:53:44.666-0700 871073136735559782 picXocM | motion#7853 +09:53:44.668-0700 871073138094506024 Hoo5cnE | motion#6023 +09:53:44.716-0700 871073144453103617 7SQZInI | motion#3981 +09:53:44.757-0700 871073137872240661 3AVfxtg | motion#6756 +09:53:44.895-0700 871073138748837919 6VN1ChY | motion#2561 +09:53:44.923-0700 871073137096290305 26ufc1I | motion#7565 +09:53:44.968-0700 871073148215382056 -MZjGgM | motion#3902 +09:53:45.012-0700 871073141185708042 rtk6QI8 | motion#5550 +09:53:45.138-0700 871073138291650601 QCShM_k | motion#6142 +09:53:45.172-0700 871073138081931306 Zd3W2R0 | motion#1015 +09:53:45.179-0700 871073136592961606 zCr32lA | motion#7579 +09:53:45.266-0700 871073151126241280 Got5eOY | motion#3733 +09:53:45.283-0700 871073146759966760 6RTww2c | motion#4427 +09:53:45.291-0700 871073147640766475 ttfoFkE | motion#5333 +09:53:45.354-0700 871073140774666241 CmcH3QE | motion#3472 +09:53:45.496-0700 871073133317226558 XFVTlDU | motion#5698 +09:53:45.544-0700 871073146961281045 uBMgHPk | motion#1957 +09:53:45.664-0700 871073142699880479 C-Dx11E | motion#4915 +09:53:45.717-0700 871073144666984478 DXfYjUY | motion#8276 +09:53:45.789-0700 871073114765791313 _n4tVaw | motion#0042 +09:53:45.833-0700 871073151495327834 S3vkYvY | motion#2716 +09:53:45.953-0700 871073149989572678 hhCnesU | motion#3839 +09:53:45.984-0700 871073139495419936 RRZTiiE | motion#1573 +09:53:46.039-0700 871073150224457778 9z6MB00 | motion#7295 +09:53:46.106-0700 871073152535519272 QjILMgM | motion#7131 +09:53:46.167-0700 871073143391936614 xxN3Ukg | motion#6731 +09:53:46.237-0700 871073151738589194 yk5Rhrk | motion#7940 +09:53:46.255-0700 871073147393282068 UPYvl7w | motion#0392 +09:53:46.282-0700 871073147200364567 dzyX4PA | motion#4871 +09:53:46.293-0700 871073147590430730 xzbMvxk | motion#8999 +09:53:46.343-0700 871073150123790346 37TKaOs | motion#5579 +09:53:46.363-0700 871073150375452715 7ZXC4v0 | motion#6391 +09:53:46.395-0700 871073152774598656 H6inHwo | motion#9570 +09:53:46.485-0700 871073147326185573 jnZQqAk | motion#7061 +09:53:46.560-0700 871073148378955816 veeMKiE | motion#0485 +09:53:46.563-0700 871073140346867712 -RJXCRo | motion#7570 +09:53:46.593-0700 871073149284921355 BkuN5l4 | motion#9612 +09:53:46.621-0700 871073147720450058 QC1R5x8 | motion#6423 +09:53:46.688-0700 871073149024886864 4Lfs6h0 | motion#2103 +09:53:46.688-0700 871073144071413780 WsrkJMo | motion#5820 +09:53:46.706-0700 871073125008277606 8OGDIUw | motion#1081 +09:53:46.718-0700 871073146437001218 mSpr5DA | motion#2709 +09:53:46.876-0700 871073146428604436 SCarkSI | motion#3211 +09:53:47.001-0700 871073151390449737 LtRQnrI | motion#9465 +09:53:47.010-0700 871073149314273320 fiJb5kk | motion#1152 +09:53:47.012-0700 871073148374757387 NNde2Oo | motion#1826 +09:53:47.021-0700 871073151344345098 Ut4CjBM | motion#9862 +09:53:47.039-0700 871073152816533504 cjxbqCc | motion#7096 +09:53:47.156-0700 871073149591105566 LVSVFT0 | motion#9335 +09:53:47.212-0700 871073141378662430 iImjPtU | motion#7768 +09:53:47.282-0700 871073142112661544 ehzCfoc | motion#9747 +09:53:47.282-0700 871073143786180618 W7nEpos | motion#2978 +09:53:47.327-0700 871073141936521226 6Yzos18 | motion#5335 +09:53:47.335-0700 871073153466650685 C-1NqrE | motion#8857 +09:53:47.382-0700 871073144725717012 jJwbhyE | motion#7364 +09:53:47.411-0700 871073143387742289 7Pofa0Y | motion#5637 +09:53:47.414-0700 871073146587979827 KtWFh2k | motion#1070 +09:53:47.437-0700 871073141579984896 MeqRXBo | motion#7884 +09:53:47.626-0700 871073140388810782 PW9oRck | motion#4412 +09:53:47.695-0700 871073139768057886 5hbL2Es | motion#7398 +09:53:47.731-0700 871073153101729812 MGEpHno | motion#6304 +09:53:47.819-0700 871073142867644448 QGzGCx0 | motion#0281 +09:53:47.822-0700 871073149905698867 Qd6P6MM | motion#5676 +09:53:47.980-0700 871073153827348500 LF6ompA | motion#4977 +09:53:48.064-0700 871073148223750225 MX3B6XE | motion#6920 +09:53:48.144-0700 871073151386259506 GXeLD2c | motion#7644 +09:53:48.245-0700 871073143953981491 de1YhLM | motion#0831 +09:53:48.347-0700 871073157040197682 mO9sGug | motion#0580 +09:53:48.368-0700 871073147552681995 _ZYBRc0 | motion#8378 +09:53:48.444-0700 871073146508312666 qbH8YZo | motion#6727 +09:53:48.495-0700 871073152770388088 KyV5Sow | motion#2101 +09:53:48.537-0700 871073161117052928 mq5u7xE | motion#7975 +09:53:48.757-0700 871073128049147904 adpRvY0 | motion#1113 +09:53:48.770-0700 871073157329592360 XOg5Fmw | motion#9240 +09:53:48.806-0700 871073155798675466 IhzZOm8 | motion#9221 +09:53:48.956-0700 871073154284531712 ItGAlRA | motion#1725 +09:53:48.960-0700 871073154917888000 zUqroIY | motion#9942 +09:53:49.065-0700 871073145640091718 L8XrALw | motion#9527 +09:53:49.088-0700 871073153189822574 HCwWAG8 | motion#8747 +09:53:49.249-0700 871073145434538035 xUiWTSQ | motion#6285 +09:53:49.322-0700 871073158831173672 3QvXYsU | motion#3415 +09:53:49.369-0700 871073165353304114 29yrj28 | motion#2036 +09:53:49.395-0700 871073161943343194 K93mZ9E | motion#4435 +09:53:49.411-0700 871073157136662568 GAx4k3c | motion#1884 +09:53:49.420-0700 871073158747267112 IlPJmlI | motion#3745 +09:53:49.500-0700 871073140900528178 2umQuNw | motion#0121 +09:53:49.516-0700 871073158814371882 OGgIYFs | motion#5162 +09:53:49.520-0700 871073155496685668 XLX96s8 | motion#6796 +09:53:49.525-0700 871073165596565516 U4de2fk | motion#3893 +09:53:49.545-0700 871073159049252964 EDa5JPw | motion#7485 +09:53:49.579-0700 871073158944399381 wWv57a4 | motion#6984 +09:53:49.662-0700 871073162522149004 7Srivb0 | motion#4997 +09:53:49.662-0700 871073163826581504 B93SAkc | motion#7381 +09:53:49.849-0700 871073163096776744 QlSbkp4 | motion#9868 +09:53:49.854-0700 871073159493849089 F4DJnSA | motion#4201 +09:53:49.878-0700 871073166481559653 BUOe1PU | motion#0700 +09:53:49.883-0700 871073161326759947 s3yQJbQ | motion#8324 +09:53:50.002-0700 871073163059019877 4lr2E6M | motion#9225 +09:53:50.017-0700 871073154209050625 g90oD9c | motion#2657 +09:53:50.030-0700 871073160383057920 BAs-coE | motion#1585 +09:53:50.136-0700 871073154536181770 ShN4Vr0 | motion#9981 +09:53:50.159-0700 871073169061072936 aJ4sTQ0 | motion#7546 +09:53:50.209-0700 871073166091518023 BfzciLQ | motion#4966 +09:53:50.242-0700 871073165563002951 KSsy5Ig | motion#3681 +09:53:50.255-0700 871073159070228490 l1SbSHw | motion#5562 +09:53:50.292-0700 871073165588181072 yrrgLlM | motion#0026 +09:53:50.359-0700 871073159523233812 7HTLiPU | motion#5561 +09:53:50.468-0700 871073166997463100 4XUivag | motion#1562 +09:53:50.505-0700 871073155672866836 tJoVFqE | motion#4843 +09:53:50.532-0700 871073162727686206 hZobM60 | motion#7749 +09:53:50.548-0700 871073168427712622 R7T7ebg | motion#7802 +09:53:50.604-0700 871073165365886987 d0qtpyY | motion#1242 +09:53:50.741-0700 871073169157541930 IkR4Gu8 | motion#2641 +09:53:50.746-0700 871073163419713606 uJmq65E | motion#1363 +09:53:50.935-0700 871073159892303973 JdIXsok | motion#4662 +09:53:50.992-0700 871073163398746152 IrU6_1Y | motion#1494 +09:53:51.002-0700 871073165651107881 LmFPAWs | motion#1546 +09:53:51.095-0700 871073160857018389 HFUeUmg | motion#7314 +09:53:51.205-0700 871073164619309106 llFCFds | motion#2429 +09:53:51.221-0700 871073165697241148 a3vJC3s | motion#1871 +09:53:51.454-0700 871073165437190195 hazpPto | motion#3919 +09:53:51.483-0700 871073154372620299 xXi6qwI | motion#7615 +09:53:51.517-0700 871073158717931581 Wujh7xg | motion#1216 +09:53:51.620-0700 871073173263761468 Zv3xLik | motion#5137 +09:53:51.685-0700 871073171846094858 85hBaTI | motion#5701 +09:53:51.696-0700 871073158453669898 xwwE66Y | motion#1035 +09:53:51.702-0700 871073166057951282 hB5JVDE | motion#3880 +09:53:51.784-0700 871073159300935761 OolkJhU | motion#9232 +09:53:51.834-0700 871073177202212965 QIqKgLI | motion#8295 +09:53:51.836-0700 871073170172575795 -kmMC9A | motion#6309 +09:53:51.883-0700 871073169308516402 GbJ-eg4 | motion#0792 +09:53:51.914-0700 871073166234091531 osoF6Mc | motion#3322 +09:53:51.923-0700 871073170273230879 jkfeOGc | motion#9047 +09:53:52.018-0700 871073173179887657 t1wEy9c | motion#5846 +09:53:52.044-0700 871073171292450817 VTTyNsc | motion#2654 +09:53:52.241-0700 871073166213140540 OT0d8t0 | motion#1329 +09:53:52.252-0700 871073169572786207 N-homfs | motion#9885 +09:53:52.263-0700 871073165789495296 6ZWgyPU | motion#3340 +09:53:52.290-0700 871073155500884008 3v2EtGc | motion#0295 +09:53:52.307-0700 871073171208568872 _f1W-g4 | motion#1039 +09:53:52.309-0700 871073145057083454 SjwyoSk | motion#4137 +09:53:52.323-0700 871073154297110600 QdTBsvw | motion#8802 +09:53:52.471-0700 871073166896803941 zMnLxqo | motion#9476 +09:53:52.479-0700 871073164875141231 iHkFd6I | motion#9682 +09:53:52.514-0700 871073166666125324 wt_XdgQ | motion#8112 +09:53:52.573-0700 871073154099990608 9xf809I | motion#7185 +09:53:52.584-0700 871073172684943400 UQXFQ6U | motion#7674 +09:53:52.732-0700 871073160429191258 ZibRvUo | motion#4982 +09:53:52.766-0700 871073176971534408 XVOEvMI | motion#1717 +09:53:52.802-0700 871073133866651670 XUeivak | motion#5926 +09:53:52.840-0700 871073174178136096 yjTdHSA | motion#3005 +09:53:52.841-0700 871073154024480870 Y3TkNrk | motion#7560 +09:53:52.849-0700 871073173502844978 xG4CNtQ | motion#4622 +09:53:52.851-0700 871073172907253790 SEtHto4 | motion#4128 +09:53:52.852-0700 871073169203658772 SzNf2wA | motion#5675 +09:53:52.855-0700 871073172601053244 JDmF9nY | motion#2305 +09:53:52.878-0700 871073154783649852 fZzH8Mk | motion#5754 +09:53:52.882-0700 871073160743776286 6M_XRSM | motion#8222 +09:53:52.904-0700 871073160332705812 9EUxJQg | motion#9021 +09:53:52.955-0700 871073160672469063 Ujiqj68 | motion#6629 +09:53:52.956-0700 871073162580856832 1NjMbuo | motion#0725 +09:53:52.988-0700 871073163033870396 7bAgxsg | motion#7513 +09:53:53.004-0700 871073147485552660 OkiUklA | motion#0602 +09:53:53.008-0700 871073183254589441 GCg6AoQ | motion#8356 +09:53:53.017-0700 871073166838087681 2FebvXQ | motion#5698 +09:53:53.034-0700 871073162606039080 UwrgYBw | motion#2903 +09:53:53.054-0700 871073172403929108 6920Gy0 | motion#5818 +09:53:53.056-0700 871073173406359633 u6mLFiA | motion#8742 +09:53:53.068-0700 871073171074347039 IW8sH-Y | motion#2250 +09:53:53.070-0700 871073171170811934 7dqPE1c | motion#9214 +09:53:53.103-0700 871073185603395604 zlM-RvQ | motion#0186 +09:53:53.133-0700 871073172848529408 4_0F-7g | motion#3644 +09:53:53.153-0700 871073175776157747 K9MNdg0 | motion#2849 +09:53:53.164-0700 871073159074443364 33sWb30 | motion#9777 +09:53:53.176-0700 871073160273985587 dncO78U | motion#4296 +09:53:53.182-0700 871073159833600062 I_nk5LE | motion#5119 +09:53:53.216-0700 871073174421385216 INKqzAY | motion#5701 +09:53:53.220-0700 871073165793714227 VtC3kSg | motion#5519 +09:53:53.262-0700 871073164824830022 w2-Eb7E | motion#3617 +09:53:53.276-0700 871073183887949905 jaxUeXw | motion#2996 +09:53:53.281-0700 871073175243464724 4pfxC14 | motion#3433 +09:53:53.359-0700 871073176170405919 sX1S4lM | motion#2734 +09:53:53.481-0700 871073186891042826 LiA9Gsg | motion#7390 +09:53:53.505-0700 871073175130239016 9jJNz3A | motion#6241 +09:53:53.567-0700 871073172210974721 HEmpaJM | motion#4886 +09:53:53.681-0700 871073173431549983 qN-T0RA | motion#3226 +09:53:53.681-0700 871073170466164846 Z3kHLig | motion#1860 +09:53:53.687-0700 871073172856909885 38ooiM0 | motion#9615 +09:53:53.691-0700 871073156029354034 kg-C88I | motion#0352 +09:53:53.716-0700 871073172336820314 xeWjP8E | motion#3892 +09:53:53.745-0700 871073175553843280 Q7TWWN4 | motion#3589 +09:53:53.799-0700 871073172760457246 KMxDJtM | motion#5625 +09:53:53.818-0700 871073178196262983 Eia71LQ | motion#0860 +09:53:53.886-0700 871073177730711573 6AY4Mgk | motion#1503 +09:53:53.973-0700 871073166267670588 LqSrY9c | motion#7361 +09:53:54.000-0700 871073165844021319 AwHGLyM | motion#1658 +09:53:54.069-0700 871073181786603580 fic8jN0 | motion#1782 +09:53:54.099-0700 871073174543011890 RkCP30M | motion#5679 +09:53:54.208-0700 871073172831735809 IZtFt70 | motion#9370 +09:53:54.224-0700 871073178653429831 -0RBQO4 | motion#6213 +09:53:54.260-0700 871073178213027860 1riW5Sk | motion#8308 +09:53:54.378-0700 871073177617465424 -JOQqkI | motion#3677 +09:53:54.400-0700 871073166884221020 1Gl3fR0 | motion#3119 +09:53:54.447-0700 871073174874386462 x1qX8E0 | motion#1447 +09:53:54.460-0700 871073173553156106 0XYBxi0 | motion#6262 +09:53:54.510-0700 871073177785233428 eJ21W-w | motion#9746 +09:53:54.549-0700 871073175025381387 DpNn0YQ | motion#8897 +09:53:54.604-0700 871073179408433182 Wxcu37k | motion#7684 +09:53:54.612-0700 871073182541578260 rhCymso | motion#5762 +09:53:54.629-0700 871073181761429564 Fj9zVFM | motion#5585 +09:53:54.658-0700 871073162866090004 zzEtais | motion#1716 +09:53:54.745-0700 871073154250973235 rfXRLWE | motion#5454 +09:53:54.762-0700 871073171695095848 AFp_92k | motion#3332 +09:53:54.781-0700 871073179475517491 tS_isYk | motion#1571 +09:53:54.797-0700 871073182528991322 IFCkgIg | motion#0843 +09:53:54.798-0700 871073184563212298 piDev4c | motion#0960 +09:53:54.826-0700 871073163553959967 fnhLmoU | motion#4560 +09:53:54.832-0700 871073165449789500 CoR4mYo | motion#7775 +09:53:54.929-0700 871073158160064572 SgyiFtY | motion#4919 +09:53:54.993-0700 871073166389288990 kYzMDcI | motion#0220 +09:53:55.005-0700 871073172278108160 2XiwAqI | motion#2320 +09:53:55.012-0700 871073185511133266 -WlJbj4 | motion#0232 +09:53:55.115-0700 871073182671573035 Zo_W16Y | motion#7616 +09:53:55.146-0700 871073182390566913 OVBTr3E | motion#8733 +09:53:55.204-0700 871073174324912128 qRo3k4g | motion#5609 +09:53:55.233-0700 871073181568471040 ZUHv0L4 | motion#0608 +09:53:55.244-0700 871073185691484310 rmfa9Og | motion#2084 +09:53:55.277-0700 871073175126032384 zczUV7U | motion#6311 +09:53:55.390-0700 871073183141355540 jUvgPMI | motion#7132 +09:53:55.438-0700 871073181065179146 OOGjK9Q | motion#3885 +09:53:55.453-0700 871073174715002941 t1N1EBo | motion#6525 +09:53:55.466-0700 871073182088589322 vIvxVns | motion#0783 +09:53:55.500-0700 871073181362970644 xXUBguQ | motion#0084 +09:53:55.546-0700 871073185381105754 Sx4vJa4 | motion#1760 +09:53:55.568-0700 871073192750501889 wLSw19M | motion#6216 +09:53:55.720-0700 871073188396810310 4Tm10mU | motion#7084 +09:53:55.766-0700 871073182700961844 QTyUIFw | motion#8162 +09:53:55.778-0700 871073152078348398 dF39Z-M | motion#2386 +09:53:55.834-0700 871073181799186482 M6S0BAc | motion#7453 +09:53:55.851-0700 871073183606906920 tp3GsNE | motion#0967 +09:53:55.885-0700 871073188111609927 gtuE4HY | motion#0703 +09:53:56.049-0700 871073188501684244 i94GxaI | motion#5651 +09:53:56.053-0700 871073180373090324 rYjm4UM | motion#9835 +09:53:56.116-0700 871073181421674536 BFUvoGQ | motion#7049 +09:53:56.159-0700 871073174094237717 ChIpyWU | motion#1259 +09:53:56.176-0700 871073186287067187 bjhrj5c | motion#4046 +09:53:56.275-0700 871073181706899496 SWsZ49M | motion#8583 +09:53:56.379-0700 871073194159796264 Kb22-C8 | motion#5427 +09:53:56.457-0700 871073188069654549 Re8TGGM | motion#0290 +09:53:56.470-0700 871073189550247937 i6V-vQ4 | motion#3790 +09:53:56.475-0700 871073181430075402 3JqgpIA | motion#7445 +09:53:56.479-0700 871073190439444510 GPtllUw | motion#0014 +09:53:56.613-0700 871073182612865025 LqxqlHA | motion#1601 +09:53:56.655-0700 871073183921479700 zeDb8kw | motion#5765 +09:53:56.700-0700 871073182101155901 vSzkhho | motion#3829 +09:53:56.719-0700 871073168943636480 92-PkoA | motion#9968 +09:53:56.721-0700 871073189902553179 alm5H9w | motion#8059 +09:53:56.725-0700 871073191035023421 6Yh19nI | motion#0962 +09:53:56.725-0700 871073193350283265 0sDr3Ng | motion#4948 +09:53:56.740-0700 871073193094430771 YWOOYcQ | motion#0740 +09:53:56.846-0700 871073186882678864 KUiz5MY | motion#9669 +09:53:56.863-0700 871073190275874816 UlXLhDg | motion#5902 +09:53:56.917-0700 871073196798001212 ZTvv-9M | motion#1781 +09:53:56.920-0700 871073186459025429 aa3aPAw | motion#6198 +09:53:56.945-0700 871073179819446292 jn4elKk | motion#8437 +09:53:56.950-0700 871073183590125618 x8du8Ok | motion#6070 +09:53:56.956-0700 871073184504487997 1TpO444 | motion#4997 +09:53:56.972-0700 871073179911729193 mQBz_m8 | motion#4894 +09:53:56.979-0700 871073183866957884 qeUJ4L8 | motion#0515 +09:53:56.979-0700 871073190720442478 mIuFGc4 | motion#8902 +09:53:57.009-0700 871073196785430548 2FCfqOg | motion#8911 +09:53:57.021-0700 871073177143480391 jQv3zuo | motion#7103 +09:53:57.098-0700 871073183195873280 jhVQUNw | motion#3144 +09:53:57.123-0700 871073186031210496 utyADOo | motion#8822 +09:53:57.149-0700 871073194138816522 2vi4G0o | motion#0990 +09:53:57.166-0700 871073193627111435 Q3Ct3r4 | motion#7501 +09:53:57.185-0700 871073187654430741 -_slhtk | motion#8949 +09:53:57.215-0700 871073188065452042 Ui_3fYo | motion#6440 +09:53:57.217-0700 871073189143396433 d9w6s9U | motion#6314 +09:53:57.243-0700 871073184638717972 lHgML7g | motion#1976 +09:53:57.277-0700 871073185876037652 LHr5_l0 | motion#4586 +09:53:57.312-0700 871073198232453151 jChqRNA | motion#0816 +09:53:57.391-0700 871073197754314853 BmjJEBA | motion#6376 +09:53:57.394-0700 871073193459331072 im38boA | motion#4269 +09:53:57.461-0700 871073184106045511 9Jh8Sco | motion#1667 +09:53:57.487-0700 871073190171017257 Ye5iUVQ | motion#4335 +09:53:57.491-0700 871073186777800714 WukEV0U | motion#0794 +09:53:57.505-0700 871073197687185429 Ee1pwE0 | motion#6332 +09:53:57.555-0700 871073187692175402 MpQhO2o | motion#5972 +09:53:57.565-0700 871073185628573776 ryOdu-4 | motion#5523 +09:53:57.586-0700 871073187255971870 Fdtifgs | motion#5151 +09:53:57.676-0700 871073196621844480 Bw5z7Eg | motion#4003 +09:53:57.693-0700 871073200262504510 XCSShfk | motion#0374 +09:53:57.712-0700 871073190888239124 xSfgqAs | motion#0565 +09:53:57.743-0700 871073196428918835 amEFPpY | motion#5987 +09:53:57.763-0700 871073199159402517 J9Uhsfs | motion#7689 +09:53:57.790-0700 871073166297006102 YKlACcw | motion#6268 +09:53:57.836-0700 871073185339146320 vMCfdmY | motion#8635 +09:53:57.847-0700 871073191584477314 tbFjbJc | motion#7601 +09:53:57.857-0700 871073196068179989 WrO4qBA | motion#1825 +09:53:57.929-0700 871073192687575105 DLZYPr8 | motion#4756 +09:53:57.964-0700 871073199155195916 dBWbk1A | motion#7179 +09:53:58.004-0700 871073173817401345 6H4KT6k | motion#1130 +09:53:58.026-0700 871073177730686976 eW019DE | motion#5276 +09:53:58.036-0700 871073195577458718 JoxCfc0 | motion#9279 +09:53:58.038-0700 871073193744560129 m5VggFA | motion#0440 +09:53:58.052-0700 871073188719759452 _b46Kc4 | motion#7473 +09:53:58.111-0700 871073182394757202 zficfxc | motion#9932 +09:53:58.166-0700 871073197880115281 UhxxYUc | motion#2593 +09:53:58.205-0700 871073190854676490 FU4EmCs | motion#7920 +09:53:58.291-0700 871073183200083989 WqyhSgo | motion#5935 +09:53:58.310-0700 871073195862671420 hEKXuVc | motion#0510 +09:53:58.420-0700 871073199989870603 DpP8MAM | motion#8073 +09:53:58.520-0700 871073201126531154 _MNG7NE | motion#8722 +09:53:58.533-0700 871073178271764481 nbsn_aw | motion#9370 +09:53:58.549-0700 871073195518742549 nHqXc-w | motion#2627 +09:53:58.568-0700 871073181669154867 DSYNE6Y | motion#3694 +09:53:58.587-0700 871073202548396042 vSt0qDU | motion#7382 +09:53:58.611-0700 871073190791753798 RbNzBTc | motion#5249 +09:53:58.627-0700 871073198542843935 NDmot7M | motion#7136 +09:53:58.644-0700 871073190221348865 YHgLIqE | motion#8290 +09:53:58.730-0700 871073203362082826 PbuJyLA | motion#0471 +09:53:58.945-0700 871073195262873601 UIUzKZU | motion#6392 +09:53:58.952-0700 871073203877969931 X3kE1_Q | motion#6641 +09:53:58.963-0700 871073164371845120 t6383a8 | motion#9358 +09:53:58.973-0700 871073193098620980 b3jNhbk | motion#6909 +09:53:59.045-0700 871073184252833914 ke_VXu4 | motion#5334 +09:53:59.070-0700 871073191265706115 Gp_IVLc | motion#8276 +09:53:59.172-0700 871073183401390151 a53GGmo | motion#5264 +09:53:59.227-0700 871073196386943006 NfdfJ8w | motion#6639 +09:53:59.231-0700 871073196269527050 KHCLoEs | motion#1881 +09:53:59.233-0700 871073186953973781 qnTkesE | motion#7159 +09:53:59.234-0700 871073187260145746 r0G5unI | motion#8142 +09:53:59.261-0700 871073191748071464 rn8TkgU | motion#0798 +09:53:59.408-0700 871073193270579241 tKiD0nI | motion#1226 +09:53:59.418-0700 871073199255851058 LoI0lHc | motion#5284 +09:53:59.437-0700 871073190561079356 dTT_bSU | motion#1569 +09:53:59.451-0700 871073198551208008 1twStNs | motion#2983 +09:53:59.479-0700 871073197372616776 cuGk0hY | motion#3433 +09:53:59.630-0700 871073195321597983 kMVmWZ4 | motion#5449 +09:53:59.663-0700 871073183489474581 sJoRffw | motion#7167 +09:53:59.690-0700 871073209968132176 9jn4iNE | motion#2339 +09:53:59.700-0700 871073203542433852 IUnvdt8 | motion#4400 +09:53:59.785-0700 871073193757130773 1d299e0 | motion#6804 +09:53:59.933-0700 871073200870666241 vr-Sk98 | motion#6254 +09:54:00.075-0700 871073205744439336 9UFBmQ0 | motion#2267 +09:54:00.100-0700 871073201977962516 xFV2bGs | motion#1739 +09:54:00.103-0700 871073198169526322 -vQ7cnM | motion#6009 +09:54:00.121-0700 871073201629851688 zXwZlNY | motion#1149 +09:54:00.133-0700 871073195178987551 EuzZfN0 | motion#0751 +09:54:00.205-0700 871073212254011432 1Ocsh3E | motion#4322 +09:54:00.228-0700 871073196823171072 HWq_PkE | motion#4645 +09:54:00.254-0700 871073190657523742 MZgebfg | motion#0922 +09:54:00.312-0700 871073187012677653 TCD81UA | motion#5935 +09:54:00.325-0700 871073196781207562 1jEucpY | motion#1347 +09:54:00.360-0700 871073191492210730 3tpOkO8 | motion#5762 +09:54:00.363-0700 871073204742000690 h9QeAvA | motion#1067 +09:54:00.464-0700 871073193635495997 Cu6V72w | motion#8437 +09:54:00.538-0700 871073204091891752 lCC0ZAk | motion#7856 +09:54:00.635-0700 871073207216644176 LomU9Xo | motion#3882 +09:54:00.701-0700 871073193203478568 sWH9CoI | motion#5203 +09:54:00.806-0700 871073204460982272 GYSyY60 | motion#5948 +09:54:00.821-0700 871073215341019176 yAq9gco | motion#1154 +09:54:00.866-0700 871073214493757512 i-mT1z4 | motion#5333 +09:54:00.899-0700 871073200392507432 oCHtQMo | motion#5910 +09:54:00.926-0700 871073201424306236 Ri8eCaw | motion#2293 +09:54:01.118-0700 871073206180671580 TTV_CDQ | motion#7343 +09:54:01.151-0700 871073195468390440 wzDmGOg | motion#3930 +09:54:01.162-0700 871073190787547146 ImdzqSU | motion#6563 +09:54:01.201-0700 871073214447636540 T8e4RuU | motion#8674 +09:54:01.211-0700 871073208206491680 Kj6GcFo | motion#2750 +09:54:01.362-0700 871073212216254514 A6_EgUk | motion#5009 +09:54:01.423-0700 871073203362095164 5P82SUE | motion#1372 +09:54:01.458-0700 871073195980116008 6nSe-gI | motion#9208 +09:54:01.476-0700 871073208680448031 0y_afaM | motion#9046 +09:54:01.507-0700 871073195673911376 ELw_ouo | motion#2473 +09:54:01.509-0700 871073207325691946 S2TWbts | motion#0943 +09:54:01.559-0700 871073205832527893 tDe65ko | motion#4577 +09:54:01.597-0700 871073205589262426 0-p-Sh0 | motion#2111 +09:54:01.613-0700 871073208936308746 9RFlpFE | motion#5126 +09:54:01.621-0700 871073220650999858 1Jus6ss | motion#5072 +09:54:01.708-0700 871073214946746389 1qkq8DE | motion#7309 +09:54:01.767-0700 871073204888805437 Uo4AFuY | motion#7237 +09:54:01.808-0700 871073215722688512 X5kNgRo | motion#6043 +09:54:01.873-0700 871073205937381437 jRxqrto | motion#2761 +09:54:01.932-0700 871073209393504307 44vbFq0 | motion#9055 +09:54:01.941-0700 871073207766122536 FUpAM_Y | motion#6645 +09:54:01.992-0700 871073222458757201 mHVxorQ | motion#1952 +09:54:02.006-0700 871073194835054622 WXdtua0 | motion#9101 +09:54:02.040-0700 871073208500097066 OxQL6tc | motion#5098 +09:54:02.042-0700 871073208076488734 _dSgxgg | motion#1082 +09:54:02.058-0700 871073210240741417 KudH21k | motion#2306 +09:54:02.125-0700 871073208621748284 4wfwOjQ | motion#7260 +09:54:02.167-0700 871073209301229598 IpiHdFQ | motion#1518 +09:54:02.191-0700 871073205715099658 j9VUctE | motion#3823 +09:54:02.219-0700 871073206289727498 Ak9L37Q | motion#4535 +09:54:02.251-0700 871073205455028237 Y4166BU | motion#0718 +09:54:02.307-0700 871073182055022672 W2V2GQo | motion#1227 +09:54:02.446-0700 871073219770212352 f6WVxVo | motion#1175 +09:54:02.451-0700 871073219921195039 zuUZSoc | motion#3112 +09:54:02.499-0700 871073210215571516 M3cgzJE | motion#4623 +09:54:02.504-0700 871073219157831690 wQanufQ | motion#0392 +09:54:02.579-0700 871073217333325854 R2IrxyM | motion#3733 +09:54:02.635-0700 871073204901400576 t4s63fQ | motion#3992 +09:54:02.690-0700 871073195329986610 r7fCgzg | motion#2236 +09:54:02.722-0700 871073216645435413 aXduY1Q | motion#5841 +09:54:02.743-0700 871073209393508394 hYUjU8k | motion#1841 +09:54:02.830-0700 871073219883462657 kZIgCKg | motion#5472 +09:54:02.924-0700 871073219476598855 _OBD-Sc | motion#6290 +09:54:02.927-0700 871073218864251030 VIVjRCM | motion#1809 +09:54:02.929-0700 871073217173942282 6VQW-To | motion#2360 +09:54:02.935-0700 871073218163773450 rUh-MiM | motion#3022 +09:54:02.983-0700 871073200488976405 HlvsL3k | motion#2258 +09:54:02.995-0700 871073209401880646 mMAey80 | motion#2092 +09:54:03.016-0700 871073216288944188 ovX3Iao | motion#6271 +09:54:03.363-0700 871073186324832267 nI3log8 | motion#2311 +09:54:03.384-0700 871073218167996516 Gnk7c7c | motion#2813 +09:54:03.386-0700 871073220911038574 EVMsAvU | motion#9969 +09:54:03.391-0700 871073217689845781 FHR6HL8 | motion#2249 +09:54:03.497-0700 871073210903453766 9vvzEPs | motion#9280 +09:54:03.535-0700 871073217140379648 NN6Wraw | motion#0962 +09:54:03.605-0700 871073198995820614 jBtXUW8 | motion#1470 +09:54:03.608-0700 871073217329123348 CQUNOUQ | motion#3317 +09:54:03.645-0700 871073206612660244 i0zDILs | motion#4595 +09:54:03.691-0700 871073218721632306 BvmuDmc | motion#2292 +09:54:03.718-0700 871073218566455296 -U4Ip2I | motion#0466 +09:54:03.763-0700 871073187398565958 _yg-ls4 | motion#4320 +09:54:03.769-0700 871073198911942666 dL1wbrI | motion#4157 +09:54:03.781-0700 871073220223176784 zfrGJ0I | motion#8739 +09:54:03.798-0700 871073217505284097 oAUV0ag | motion#3540 +09:54:03.808-0700 871073216519606293 dSyRELg | motion#0155 +09:54:03.837-0700 871073211402571787 ZfP1Kfk | motion#4146 +09:54:04.026-0700 871073224933400576 gdHo-Bc | motion#0665 +09:54:04.041-0700 871073207732547584 Yu30k3s | motion#6828 +09:54:04.112-0700 871073219757608981 ISAj90k | motion#4793 +09:54:04.133-0700 871073208839831552 9UbxN74 | motion#3834 +09:54:04.139-0700 871073214909014086 9VK_Zy8 | motion#6087 +09:54:04.168-0700 871073204653940836 vc6dbjU | motion#4137 +09:54:04.173-0700 871073200770007040 xMmiCYM | motion#2847 +09:54:04.262-0700 871073218184740864 pXwlBMc | motion#2426 +09:54:04.279-0700 871073218608398376 upqoitA | motion#3432 +09:54:04.346-0700 871073224396521503 i98xJwc | motion#6234 +09:54:04.403-0700 871073212233052210 evk2TAs | motion#4979 +09:54:04.432-0700 871073221317914656 tIKFXqc | motion#9359 +09:54:04.710-0700 871073226980204605 _0Ig9UY | motion#5287 +09:54:04.746-0700 871073228355928104 PC3Uhkw | motion#2756 +09:54:04.848-0700 871073224996311080 6ObSIx4 | motion#7601 +09:54:04.944-0700 871073224249737259 Nroevl4 | motion#8268 +09:54:04.952-0700 871073224178401342 hFjR-v0 | motion#1039 +09:54:05.118-0700 871073225847767090 SEdwzHw | motion#8238 +09:54:05.123-0700 871073234353782794 _wUnjDA | motion#8688 +09:54:05.145-0700 871073225684172852 ugQ5m0I | motion#4033 +09:54:05.178-0700 871073219006840832 IS6E90Y | motion#9944 +09:54:05.184-0700 871073225029857331 jDWFd50 | motion#5668 +09:54:05.190-0700 871073215668174850 QLLPvDw | motion#9675 +09:54:05.203-0700 871073227865219102 bq9eKjc | motion#3320 +09:54:05.244-0700 871073225948401725 Pt4eq0k | motion#9749 +09:54:05.247-0700 871073216158896188 7Siij_E | motion#0012 +09:54:05.295-0700 871073230465691658 _vvY5bc | motion#7995 +09:54:05.328-0700 871073216679018517 NdpYc5g | motion#7759 +09:54:05.353-0700 871073222001565698 dHqcxnM | motion#4304 +09:54:05.370-0700 871073228485972028 DYWImRA | motion#6037 +09:54:05.388-0700 871073225206038528 lg_Xk74 | motion#5291 +09:54:05.392-0700 871073225856143370 v21mJg0 | motion#6914 +09:54:05.411-0700 871073148664176700 eM-bLlQ | motion#1692 +09:54:05.452-0700 871073233280073840 WPGfLto | motion#8353 +09:54:05.468-0700 871073234865520751 U3Jo1KA | motion#3170 +09:54:05.569-0700 871073232466378833 zJdOwFI | motion#2860 +09:54:05.603-0700 871073222316154910 4ZEWw4w | motion#9765 +09:54:05.623-0700 871073204100296834 fy_jOb4 | motion#9335 +09:54:05.627-0700 871073224442658867 hGUfS4E | motion#5207 +09:54:05.651-0700 871073235159113788 Xciq5sk | motion#8044 +09:54:05.679-0700 871073232915161179 lrgRSKw | motion#4645 +09:54:05.696-0700 871073234940997712 cvujpaE | motion#6620 +09:54:05.743-0700 871073234718720111 V5phIF4 | motion#3442 +09:54:05.772-0700 871073223469588552 m88dQlQ | motion#3077 +09:54:05.855-0700 871073213357101126 C4CQPXI | motion#7811 +09:54:05.902-0700 871073227487735808 YglgQLk | motion#1209 +09:54:05.957-0700 871073234928427039 MZJjok4 | motion#8650 +09:54:05.967-0700 871073222446162020 EvEubic | motion#9784 +09:54:05.971-0700 871073232462155846 7ixM9kg | motion#4786 +09:54:05.976-0700 871073227689041930 ASCBEy0 | motion#7805 +09:54:05.982-0700 871073226065838121 vtxeMIs | motion#7626 +09:54:06.108-0700 871073222265823232 hCp86tk | motion#6649 +09:54:06.268-0700 871073239789625375 s8g5bT4 | motion#7807 +09:54:06.274-0700 871073209804546068 lkmWTDA | motion#8576 +09:54:06.348-0700 871073216263778375 kedULXA | motion#6739 +09:54:06.351-0700 871073236161552394 dpovK28 | motion#4305 +09:54:06.473-0700 871073222072860702 iiBUg9w | motion#8674 +09:54:06.493-0700 871073235532402808 HFvwuv0 | motion#6137 +09:54:06.499-0700 871073223385694278 VR08vuA | motion#5857 +09:54:06.527-0700 871073229878468659 DZGddf4 | motion#6365 +09:54:06.541-0700 871073227554840606 fwotlk8 | motion#4398 +09:54:06.547-0700 871073228708257824 OGZA2O8 | motion#0192 +09:54:06.553-0700 871073228108484638 YvAWAZI | motion#0998 +09:54:06.576-0700 871073222362271765 YM-7gmI | motion#3642 +09:54:06.659-0700 871073236555796520 cxblCHk | motion#1049 +09:54:06.660-0700 871073226506272769 FTThbUM | motion#1693 +09:54:06.686-0700 871073204200964136 gNOdEOE | motion#7984 +09:54:06.707-0700 871073235565940737 9ioirfI | motion#0525 +09:54:06.743-0700 871073230822207549 Vfj1su4 | motion#3362 +09:54:06.835-0700 871073236417380362 NfRku_8 | motion#9736 +09:54:06.842-0700 871073237436620840 PjpKq3w | motion#6908 +09:54:06.842-0700 871073238464213033 f0yysP0 | motion#6735 +09:54:06.871-0700 871073231111606334 XFCqteU | motion#7163 +09:54:06.943-0700 871073230654406656 VsT6ns8 | motion#8578 +09:54:07.011-0700 871073222941081611 JLYjEVk | motion#5780 +09:54:07.124-0700 871073230067228672 rbjufQA | motion#5992 +09:54:07.146-0700 871073230025273425 E30wyes | motion#0747 +09:54:07.210-0700 871073230708932608 eUJnl_U | motion#8836 +09:54:07.211-0700 871073217081671780 VkqgetE | motion#4251 +09:54:07.230-0700 871073241836433459 0F1iZj0 | motion#0491 +09:54:07.232-0700 871073238808158218 xncovtM | motion#9668 +09:54:07.265-0700 871073241257615382 p88eV98 | motion#2892 +09:54:07.270-0700 871073226992812072 GvFdd7Q | motion#3929 +09:54:07.299-0700 871073232055328768 oz7g9xk | motion#1077 +09:54:07.309-0700 871073237495345172 RAdF6KU | motion#9420 +09:54:07.339-0700 871073238212546560 qrIrspo | motion#2275 +09:54:07.398-0700 871073219510140989 uGOkM70 | motion#6912 +09:54:07.426-0700 871073222924337222 Feii67g | motion#5895 +09:54:07.443-0700 871073225663205396 FaQBRZg | motion#0952 +09:54:07.525-0700 871073231988207636 yJD_j28 | motion#3991 +09:54:07.535-0700 871073228985077820 fGGyg_Q | motion#4343 +09:54:07.536-0700 871073234664169543 M8oi-A0 | motion#7248 +09:54:07.602-0700 871073229811372092 jQ5DavU | motion#8351 +09:54:07.659-0700 871073227194110073 WBJeZWc | motion#0697 +09:54:07.691-0700 871073231682015292 Yjg5dd8 | motion#5208 +09:54:07.720-0700 871073228418859049 3_yCAiY | motion#0637 +09:54:07.731-0700 871073236157358090 3X2b_lM | motion#6992 +09:54:07.757-0700 871073227642925086 ynyZ8jE | motion#4406 +09:54:07.804-0700 871073228418842634 m_iOAYo | motion#4303 +09:54:07.805-0700 871073222475530370 2Tjj4XE | motion#7684 +09:54:07.826-0700 871073223247298590 uBDDnZk | motion#6823 +09:54:07.828-0700 871073226510446653 wUNFC6c | motion#1387 +09:54:07.838-0700 871073241823862864 rvkmqF4 | motion#6132 +09:54:07.841-0700 871073230583132190 NXSgh_0 | motion#8051 +09:54:07.869-0700 871073229819772988 hrhac1s | motion#3028 +09:54:07.980-0700 871073229983334460 jKydsIQ | motion#1022 +09:54:08.025-0700 871073231723962449 LjyGoqw | motion#3975 +09:54:08.160-0700 871073242633363457 Z_vy0dc | motion#3149 +09:54:08.161-0700 871073235280740412 KVQmucg | motion#1065 +09:54:08.194-0700 871073234639003678 fkfr6go | motion#9875 +09:54:08.317-0700 871073222286802954 9Nf59k0 | motion#5733 +09:54:08.344-0700 871073218528706570 LzUPU-M | motion#6683 +09:54:08.428-0700 871073236228657192 zAPE6Jo | motion#4421 +09:54:08.480-0700 871073240964034611 SkwUXWM | motion#8267 +09:54:08.484-0700 871073233770782740 SzFRXfQ | motion#7726 +09:54:08.606-0700 871073239374393365 90j2ADs | motion#8350 +09:54:09.015-0700 871073243409313802 KcL0474 | motion#2291 +09:54:09.036-0700 871073237038145536 D4k4OJM | motion#6798 +09:54:09.081-0700 871073230369194014 ldecAAM | motion#9738 +09:54:09.089-0700 871073232961282118 qtmUakA | motion#4436 +09:54:09.133-0700 871073243577086043 R2HKFnI | motion#2784 +09:54:09.199-0700 871073248580890664 6pqPzjE | motion#2838 +09:54:09.211-0700 871073242889199626 IQKxSTI | motion#9609 +09:54:09.283-0700 871073232344719381 zhCx1_s | motion#5125 +09:54:09.480-0700 871073228326596661 4L2o4Hw | motion#4710 +09:54:09.503-0700 871073247813333013 sNO-PcI | motion#1250 +09:54:09.523-0700 871073238023798855 zWMXeZE | motion#8566 +09:54:09.571-0700 871073239756062780 Ztpp8dc | motion#9907 +09:54:09.583-0700 871073244118155264 j20fwNU | motion#1804 +09:54:09.585-0700 871073252078911488 u9tjtp4 | motion#3543 +09:54:09.588-0700 871073243774197760 oKuAbbM | motion#2919 +09:54:09.646-0700 871073244864733194 1DLjxfM | motion#8065 +09:54:09.697-0700 871073235767271454 EhbhHe0 | motion#0320 +09:54:09.741-0700 871073247922368512 CdQBjWU | motion#5033 +09:54:09.804-0700 871073238883643482 s10kG7I | motion#8414 +09:54:09.837-0700 871073244680179773 iX5ALvQ | motion#3832 +09:54:09.842-0700 871073246739591199 d2vi3Tc | motion#3093 +09:54:09.900-0700 871073248270487582 -gVFZZA | motion#7154 +09:54:09.903-0700 871073241924509706 q6bRlag | motion#2322 +09:54:09.968-0700 871073243224735745 K6UcV-s | motion#6186 +09:54:09.977-0700 871073245896531988 TnwVvak | motion#7554 +09:54:09.992-0700 871073246143991958 o59FeHI | motion#6635 +09:54:10.120-0700 871073250724171797 yErNHqw | motion#7233 +09:54:10.135-0700 871073245875544085 l6kVhks | motion#7597 +09:54:10.189-0700 871073249100980245 j91tV2k | motion#9084 +09:54:10.210-0700 871073240083222558 Hb0T98E | motion#5825 +09:54:10.367-0700 871073218528706572 fe9Z1Vk | motion#7951 +09:54:10.373-0700 871073244197830686 --rMKZA | motion#9521 +09:54:10.429-0700 871073243543531620 6Xat6ds | motion#4852 +09:54:10.460-0700 871073245019926538 4tayN6o | motion#0642 +09:54:10.465-0700 871073245217054740 i4DYVUM | motion#2382 +09:54:10.500-0700 871073244013285376 zo_bDuA | motion#7785 +09:54:10.742-0700 871073245028315147 DE6B7b4 | motion#2701 +09:54:10.747-0700 871073244487245924 NKzoY8s | motion#0677 +09:54:10.766-0700 871073238833328208 NF1B9eg | motion#2133 +09:54:10.851-0700 871073248710909952 psQVOr8 | motion#6623 +09:54:10.870-0700 871073242264248411 uv70FY8 | motion#2958 +09:54:10.887-0700 871073250107596801 qoAZuMY | motion#6420 +09:54:10.914-0700 871073248866078801 KogVZoc | motion#8793 +09:54:10.932-0700 871073232067911710 2aw0Swo | motion#0184 +09:54:10.950-0700 871073246815072257 lzsl9LM | motion#7661 +09:54:10.985-0700 871073247020593224 xL0JpCk | motion#6665 +09:54:11.002-0700 871073245107978270 fdqiJfA | motion#8964 +09:54:11.102-0700 871073260975058944 o2HH-GM | motion#8819 +09:54:11.187-0700 871073250510245919 oanupDA | motion#1909 +09:54:11.250-0700 871073244000690188 WeEZSaA | motion#7690 +09:54:11.310-0700 871073247456821259 KJYbjK0 | motion#6235 +09:54:11.324-0700 871073217278779434 AnqIUx4 | motion#7465 +09:54:11.332-0700 871073251227471904 VPPw__o | motion#7169 +09:54:11.357-0700 871073261205725238 vNLdCwI | motion#9032 +09:54:11.413-0700 871073243195375627 tWkpE-o | motion#9339 +09:54:11.451-0700 871073252238295110 782rjKs | motion#2627 +09:54:11.549-0700 871073252917792868 tIqlhqs | motion#5889 +09:54:11.582-0700 871073247993671710 nvdXiTI | motion#4341 +09:54:11.629-0700 871073249478455397 Q2I8-0k | motion#4023 +09:54:11.654-0700 871073255451152414 ImcwhbE | motion#5929 +09:54:11.687-0700 871073251684679690 nyUfzSA | motion#0937 +09:54:11.691-0700 871073251848253440 1alZH9M | motion#3748 +09:54:11.709-0700 871073252267663420 OlgX-Sc | motion#9470 +09:54:11.734-0700 871073248979333170 6-KtJm4 | motion#1493 +09:54:11.820-0700 871073248840929280 tnkOO-s | motion#9671 +09:54:11.836-0700 871073252074721361 3j8iodM | motion#1436 +09:54:11.867-0700 871073238493560914 Jtinwc0 | motion#4702 +09:54:11.936-0700 871073247641337856 l3HHVL0 | motion#8465 +09:54:11.943-0700 871073250870984764 Ov-1dT4 | motion#4749 +09:54:11.950-0700 871073258190012427 wR9lJMU | motion#7148 +09:54:11.969-0700 871073251915362314 oFM6xEk | motion#6768 +09:54:12.026-0700 871073254687793192 qaou8x4 | motion#4390 +09:54:12.079-0700 871073251261030400 VGowqaA | motion#8956 +09:54:12.132-0700 871073247746220072 fBEZ3M0 | motion#2442 +09:54:12.150-0700 871073254373208066 EDVvvbI | motion#7598 +09:54:12.156-0700 871073254511628299 WuLudi4 | motion#6816 +09:54:12.169-0700 871073249495236678 Vt_xuQw | motion#0765 +09:54:12.267-0700 871073254935236658 ibxCko0 | motion#0827 +09:54:12.290-0700 871073255874773063 ERK3iho | motion#6024 +09:54:12.322-0700 871073251017756702 i8rbuQE | motion#0824 +09:54:12.354-0700 871073252443820032 np_mjrs | motion#5368 +09:54:12.390-0700 871073253345615942 yDCfRSw | motion#4084 +09:54:12.410-0700 871073250342490152 _HKaUnA | motion#6470 +09:54:12.446-0700 871073253370785804 4K8t0Mw | motion#5221 +09:54:12.572-0700 871073258471047230 hM-q_Lk | motion#7729 +09:54:12.678-0700 871073253379158047 5JtYBdU | motion#3536 +09:54:12.782-0700 871073258806607902 x3_45IM | motion#4187 +09:54:12.786-0700 871073262141063198 tRohLPQ | motion#6766 +09:54:12.816-0700 871073254071218256 riS-tN8 | motion#6120 +09:54:12.834-0700 871073248748646400 G3GHWN4 | motion#2818 +09:54:12.847-0700 871073250581553183 m50bo9E | motion#5840 +09:54:12.857-0700 871073254608093184 s_5GgMA | motion#7851 +09:54:12.941-0700 871073253056204860 0OLjYDw | motion#5957 +09:54:13.021-0700 871073256562642957 j154-fw | motion#4212 +09:54:13.062-0700 871073256860442635 jbryrkQ | motion#6114 +09:54:13.062-0700 871073254079623268 LMFYNEU | motion#1333 +09:54:13.109-0700 871073256310984744 8J_2vro | motion#3706 +09:54:13.120-0700 871073239198220350 gVA-uxc | motion#9229 +09:54:13.132-0700 871073256688484384 GuG9ahQ | motion#6146 +09:54:13.163-0700 871073255631515668 dvnIXMQ | motion#4528 +09:54:13.165-0700 871073256910774322 62DRrmY | motion#4571 +09:54:13.185-0700 871073258227773440 lDqUlgc | motion#2169 +09:54:13.217-0700 871073243686142003 ln6_iYA | motion#4226 +09:54:13.256-0700 871073253026832444 dlDWS1k | motion#5702 +09:54:13.288-0700 871073255115603988 92oFonQ | motion#9049 +09:54:13.502-0700 871073255606321222 ECmNTLw | motion#1960 +09:54:13.571-0700 871073257846087751 _bue1uA | motion#7993 +09:54:13.612-0700 871073257422471179 FrFkuv8 | motion#8054 +09:54:13.621-0700 871073257409892413 plLg9QY | motion#1525 +09:54:13.703-0700 871073255346290728 ipuiInE | motion#3435 +09:54:13.729-0700 871073255719600208 k9GvpBY | motion#2475 +09:54:13.738-0700 871073246005571634 DDnJ2X8 | motion#6928 +09:54:13.753-0700 871073255358861362 WPMc8v4 | motion#2063 +09:54:13.760-0700 871073257166626916 bmNuus4 | motion#9012 +09:54:13.951-0700 871073250694803497 ynUZiy4 | motion#2855 +09:54:14.013-0700 871073255082065940 z1S4NRU | motion#9216 +09:54:14.062-0700 871073261595787275 JW-e4k8 | motion#6973 +09:54:14.112-0700 871073266754789506 Gs4MJ9s | motion#6250 +09:54:14.130-0700 871073266859651123 5QZgyxk | motion#9327 +09:54:14.236-0700 871073262736646204 df_9i08 | motion#3756 +09:54:14.471-0700 871073261381894154 zOEOGzs | motion#8060 +09:54:14.610-0700 871073260857614366 b-Cs_-Y | motion#0536 +09:54:14.647-0700 871073269669847070 7nzDtvc | motion#9990 +09:54:14.695-0700 871073261461573713 Ow6r6p0 | motion#2872 +09:54:14.766-0700 871073267425898508 OlrOzwA | motion#5362 +09:54:14.793-0700 871073253035237376 ICyk1MI | motion#0825 +09:54:14.890-0700 871073257212768317 Tg99DSM | motion#2569 +09:54:14.953-0700 871073261188939826 zxDvOxE | motion#4030 +09:54:15.008-0700 871073260006178876 SPBOK1M | motion#2284 +09:54:15.060-0700 871073274069659648 XdZrlfg | motion#0593 +09:54:15.081-0700 871073259708379296 Y8jnaGM | motion#9537 +09:54:15.113-0700 871073273864130651 9GDMp9Q | motion#1872 +09:54:15.118-0700 871073259305725982 YUrSRz0 | motion#2005 +09:54:15.123-0700 871073258332651561 3fg4V3I | motion#5322 +09:54:15.133-0700 871073275176976394 w32Tcfk | motion#1792 +09:54:15.222-0700 871073260433965087 GDYZfwU | motion#6966 +09:54:15.359-0700 871073259083423814 X0vFZ2Q | motion#0064 +09:54:15.373-0700 871073260052295680 qU1Q3sA | motion#6145 +09:54:15.440-0700 871073260706627666 KsigIDI | motion#1922 +09:54:15.470-0700 871073256835280938 _O4tTyA | motion#9248 +09:54:15.591-0700 871073262157848626 u68fTrQ | motion#9172 +09:54:15.739-0700 871073257082740806 2xDQVvA | motion#1912 +09:54:15.769-0700 871073263860744263 Qn3sCL8 | motion#5706 +09:54:15.801-0700 871073274853998592 Zb9xLLI | motion#1610 +09:54:15.831-0700 871073264011739226 -BDsRPI | motion#7597 +09:54:15.866-0700 871073258114543666 yRAf2rk | motion#2468 +09:54:15.887-0700 871073271364337677 UfLxzaE | motion#3311 +09:54:16.053-0700 871073260819865600 UgpoAFE | motion#9763 +09:54:16.106-0700 871073257095311380 m92FETc | motion#6464 +09:54:16.109-0700 871073270974255144 bv4prHk | motion#4689 +09:54:16.155-0700 871073260652101683 KGScBGY | motion#1934 +09:54:16.248-0700 871073228905398353 ARQA_Z0 | motion#1584 +09:54:16.272-0700 871073267014852659 nKCQ3OI | motion#8589 +09:54:16.297-0700 871073277940994070 M-bkG-E | motion#6076 +09:54:16.347-0700 871073258508812338 eNM-x9w | motion#5290 +09:54:16.400-0700 871073261893595217 -bXQWFY | motion#2199 +09:54:16.460-0700 871073265592967239 pHoUHmk | motion#6075 +09:54:16.491-0700 871073264380833852 4onxcBA | motion#4453 +09:54:16.502-0700 871073264338878464 WLC5hdM | motion#7424 +09:54:16.506-0700 871073264598933594 MbBxIsY | motion#3692 +09:54:16.517-0700 871073271645364275 3T4czww | motion#7813 +09:54:16.555-0700 871073263604858932 AmUKYM8 | motion#5259 +09:54:16.573-0700 871073264573767730 9PXcQ6Q | motion#3069 +09:54:16.578-0700 871073233917595678 H1A4F90 | motion#5065 +09:54:16.583-0700 871073261650337852 r4ql8TU | motion#4495 +09:54:16.589-0700 871073268940030032 zChdzqQ | motion#5391 +09:54:16.633-0700 871073256780755015 EM-6YVc | motion#9658 +09:54:16.708-0700 871073273591513181 xv3CaSY | motion#8594 +09:54:16.712-0700 871073276632391680 fBdeJbs | motion#5564 +09:54:16.747-0700 871073269485305866 fKFoxSY | motion#2223 +09:54:16.766-0700 871073270248636437 lCZDiAs | motion#4504 +09:54:16.777-0700 871073273528606730 3lDZm-I | motion#9620 +09:54:16.828-0700 871073268755476502 2DuFjVs | motion#9177 +09:54:16.858-0700 871073273868320838 T0Fwhuk | motion#8458 +09:54:16.899-0700 871073268755476490 hYQ1AxM | motion#5416 +09:54:16.927-0700 871073268667383899 ePzV30E | motion#1250 +09:54:16.943-0700 871073270881976360 KSGgmj4 | motion#5840 +09:54:17.008-0700 871073254725546004 e4xDNbM | motion#9651 +09:54:17.030-0700 871073269162340402 vyK99tY | motion#9601 +09:54:17.031-0700 871073192272355329 NnM5z5A | motion#1787 +09:54:17.081-0700 871073258185830470 HQH8IAA | motion#1437 +09:54:17.119-0700 871073268868735016 MURk4WY | motion#6070 +09:54:17.134-0700 871073276431065128 kjveX9A | motion#0839 +09:54:17.136-0700 871073270751977592 2akseYI | motion#6390 +09:54:17.140-0700 871073264666050651 _939h7E | motion#9160 +09:54:17.205-0700 871073269015535659 fk9R0GI | motion#6820 +09:54:17.271-0700 871073277714509926 BhF7gy8 | motion#3513 +09:54:17.378-0700 871073267505565788 qs-cZ-8 | motion#3388 +09:54:17.393-0700 871073256193556530 GkqidAA | motion#4231 +09:54:17.413-0700 871073265353900073 bHw8KKk | motion#4286 +09:54:17.420-0700 871073275579613264 iPXsK5o | motion#8758 +09:54:17.426-0700 871073266775777351 bOWj62s | motion#7460 +09:54:17.429-0700 871073273092403250 XEgR5xo | motion#2705 +09:54:17.458-0700 871073269560803379 toKsVKk | motion#2182 +09:54:17.535-0700 871073263084785694 6cj3KBU | motion#7091 +09:54:17.660-0700 871073277404119170 yyWP_80 | motion#8557 +09:54:17.664-0700 871073261008613406 APl4588 | motion#7310 +09:54:17.677-0700 871073278800826419 bn9ZVdw | motion#1821 +09:54:17.750-0700 871073274052898817 nMSzZTg | motion#1260 +09:54:17.750-0700 871073277450260530 6VUmaaI | motion#5837 +09:54:17.812-0700 871073289534070814 IUWzZqc | motion#0298 +09:54:17.831-0700 871073279094427710 eG2S2l8 | motion#8951 +09:54:17.857-0700 871073277576097852 8RtQLBQ | motion#9864 +09:54:17.915-0700 871073274937901056 AzsjEb8 | motion#4620 +09:54:17.916-0700 871073289919954964 mLR1jwo | motion#2028 +09:54:17.930-0700 871073277110517850 X1LHkW0 | motion#1266 +09:54:17.953-0700 871073249574936576 zgIjavE | motion#6337 +09:54:17.965-0700 871073279299944478 IVe6S4Y | motion#9646 +09:54:18.004-0700 871073269221032117 OvDkP4k | motion#9784 +09:54:18.022-0700 871073279547437076 NDwFjvo | motion#9010 +09:54:18.100-0700 871073278251380756 Yu0Lkrk | motion#5412 +09:54:18.141-0700 871073277416702002 xpwY8lY | motion#0684 +09:54:18.164-0700 871073262531145729 h6a1BPs | motion#4134 +09:54:18.168-0700 871073276884037653 LNsPmVQ | motion#6053 +09:54:18.170-0700 871073269493678120 JIIvsew | motion#2419 +09:54:18.344-0700 871073275982274590 PcTLMmU | motion#7968 +09:54:18.370-0700 871073276212961280 1olcJsM | motion#8981 +09:54:18.422-0700 871073289974448138 1qNKqp8 | motion#2895 +09:54:18.457-0700 871073278742126633 bKeBQWI | motion#9242 +09:54:18.503-0700 871073289794093087 1o5Czww | motion#4656 +09:54:18.510-0700 871073265030955038 tRb8mzQ | motion#4304 +09:54:18.543-0700 871073273323069521 0WIZNHM | motion#4565 +09:54:18.548-0700 871073259901296640 oCASBLI | motion#9892 +09:54:18.628-0700 871073277429284925 odg55t0 | motion#2235 +09:54:18.648-0700 871073280633749575 LKk6tv8 | motion#7004 +09:54:18.665-0700 871073280168169472 ht59EtM | motion#3913 +09:54:18.700-0700 871073288430956624 es80wKw | motion#0714 +09:54:18.790-0700 871073277907464233 tCM8enI | motion#4731 +09:54:18.825-0700 871073282005286954 9mKFFao | motion#9074 +09:54:18.848-0700 871073289492111373 Zrc-PvA | motion#6045 +09:54:18.902-0700 871073283200680027 uNRy4Ro | motion#1590 +09:54:18.919-0700 871073277743857685 XL3C1zk | motion#8837 +09:54:18.968-0700 871073288749731860 EhQ8XEc | motion#5249 +09:54:18.989-0700 871073276858892358 vwQ3OdM | motion#0993 +09:54:19.018-0700 871073243350573077 uEGZOC4 | motion#4789 +09:54:19.052-0700 871073262346600469 6qHA8Pk | motion#7237 +09:54:19.287-0700 871073274027733032 Uu2kZl4 | motion#2096 +09:54:19.312-0700 871073279379669043 AXsZH1E | motion#9384 +09:54:19.357-0700 871073287533379644 j6o1uLs | motion#0730 +09:54:19.472-0700 871073286052778034 SmuJORM | motion#7458 +09:54:19.609-0700 871073279895543819 WQwxqwk | motion#9005 +09:54:19.721-0700 871073282831581224 ubwFvLM | motion#4696 +09:54:19.728-0700 871073280692473926 4Th6UfM | motion#8167 +09:54:19.839-0700 871073279929094195 6-N1gnQ | motion#6141 +09:54:19.840-0700 871073280021372948 xwVxYrI | motion#0877 +09:54:19.864-0700 871073278444310619 tuJc1lg | motion#0406 +09:54:19.937-0700 871073285293617212 G74jV9A | motion#7510 +09:54:19.940-0700 871073282563129354 BVGsrpA | motion#3672 +09:54:20.002-0700 871073279740358676 Q7hSS0g | motion#3074 +09:54:20.050-0700 871073279132196934 AZNgIRg | motion#6958 +09:54:20.192-0700 871073261021196339 povi3ZQ | motion#4548 +09:54:20.344-0700 871073290146422804 ExOL11o | motion#7559 +09:54:20.371-0700 871073295800344596 5or8RaE | motion#3795 +09:54:20.439-0700 871073288791654420 wtClf98 | motion#7466 +09:54:20.511-0700 871073280503713792 fy14V4E | motion#2961 +09:54:20.596-0700 871073279417401366 g3S_gk4 | motion#5094 +09:54:20.631-0700 871073284702220359 5wqMEgU | motion#1409 +09:54:20.632-0700 871073266205343744 8RTBeTU | motion#7820 +09:54:20.751-0700 871073277139894312 9GruKfA | motion#2595 +09:54:20.751-0700 871073290159030272 -CDta18 | motion#1930 +09:54:20.755-0700 871073289953480754 _CYu5Ho | motion#8166 +09:54:20.776-0700 871073293749321770 z8PDBjY | motion#2516 +09:54:20.797-0700 871073282852552734 jIF0C3I | motion#4621 +09:54:20.839-0700 871073282911252500 SBxr4pk | motion#9892 +09:54:20.874-0700 871073292000325692 bPo-zoM | motion#5762 +09:54:20.877-0700 871073285826289675 xMWCivU | motion#5319 +09:54:20.878-0700 871073301286494248 qtSvp48 | motion#5437 +09:54:20.924-0700 871073294890184784 rdZny7o | motion#7408 +09:54:20.985-0700 871073293543821313 s_DU-HI | motion#4622 +09:54:21.002-0700 871073285507514368 eZ4C978 | motion#3888 +09:54:21.048-0700 871073295095713832 qiJGmC8 | motion#7810 +09:54:21.056-0700 871073292683976714 wz-Wk1Q | motion#9739 +09:54:21.074-0700 871073290591014933 ayPSNeU | motion#2949 +09:54:21.080-0700 871073268315066419 nB67os0 | motion#5148 +09:54:21.112-0700 871073293216677921 GecjknM | motion#0817 +09:54:21.134-0700 871073292038070272 ChUR-J8 | motion#6189 +09:54:21.218-0700 871073292818198548 HNi2xSs | motion#9120 +09:54:21.273-0700 871073295619989565 61UiOBo | motion#9665 +09:54:21.312-0700 871073285171974205 u4p78i8 | motion#7413 +09:54:21.312-0700 871073284538654760 KLtGDYk | motion#0577 +09:54:21.326-0700 871073282194022401 4wbp-Ns | motion#2569 +09:54:21.340-0700 871073288116383755 abzsVdM | motion#4412 +09:54:21.439-0700 871073293296349204 gw_ylYo | motion#9547 +09:54:21.538-0700 871073294223290408 ep6J4UA | motion#4795 +09:54:21.561-0700 871073291786399764 RMIF1Tg | motion#2201 +09:54:21.598-0700 871073280205930538 Kqysqd8 | motion#3618 +09:54:21.639-0700 871073288951050272 DSA_3ko | motion#2044 +09:54:21.698-0700 871073293275365376 fJ2pKJ0 | motion#2637 +09:54:21.700-0700 871073295137648710 kT5mzRE | motion#2067 +09:54:21.749-0700 871073293078249542 L60mMNE | motion#8056 +09:54:21.834-0700 871073295615819896 wen7ZQ4 | motion#5070 +09:54:21.850-0700 871073291098550343 EMMoG5o | motion#5368 +09:54:21.855-0700 871073291744464938 BBGLcOA | motion#9213 +09:54:21.857-0700 871073300984524820 wLC1dHs | motion#0688 +09:54:21.908-0700 871073299180949605 nsdUad8 | motion#2883 +09:54:22.042-0700 871073286153457754 KLOdNxk | motion#4800 +09:54:22.100-0700 871073297763278889 CChvQlI | motion#7070 +09:54:22.123-0700 871073295569674250 IIkj6v0 | motion#9609 +09:54:22.148-0700 871073298795102269 mSivznY | motion#5617 +09:54:22.200-0700 871073289051709570 3kFGZ3E | motion#4911 +09:54:22.381-0700 871073295192178689 W5RDs1w | motion#4221 +09:54:22.409-0700 871073292864335942 FaB5YsI | motion#1195 +09:54:22.458-0700 871073292650426378 OeLFMT0 | motion#2342 +09:54:22.543-0700 871073292654612530 Giee0CM | motion#6903 +09:54:22.548-0700 871073298551812106 Ph27Qik | motion#5486 +09:54:22.563-0700 871073295544487967 SM6U6jc | motion#4123 +09:54:22.623-0700 871073295175385118 eR83gTE | motion#1348 +09:54:22.627-0700 871073292230995978 7j59Bk0 | motion#8471 +09:54:22.646-0700 871073303408828416 D4_jylc | motion#1683 +09:54:22.686-0700 871073293225050162 aMEsTcs | motion#9675 +09:54:22.702-0700 871073295276077067 JntyHNs | motion#5870 +09:54:22.708-0700 871073303207477328 9-9mWpM | motion#7327 +09:54:22.726-0700 871073308274200617 KLqAzjo | motion#4224 +09:54:22.729-0700 871073282772832287 hAExayc | motion#2725 +09:54:22.811-0700 871073308496494682 Wkqnnjs | motion#6923 +09:54:22.819-0700 871073297142526022 cphfjmU | motion#2818 +09:54:22.829-0700 871073282240172032 hd6WN9I | motion#2373 +09:54:22.860-0700 871073295812952114 Te2yQy0 | motion#3073 +09:54:23.068-0700 871073296500805733 e4aR9j0 | motion#2897 +09:54:23.079-0700 871073306399371304 C-yKAK8 | motion#0210 +09:54:23.092-0700 871073308693655605 K3LvNCA | motion#8647 +09:54:23.097-0700 871073289169158215 k62fTCg | motion#7559 +09:54:23.119-0700 871073302293151836 gPhXeUU | motion#3010 +09:54:23.177-0700 871073278788268104 BNiAwLI | motion#6556 +09:54:23.183-0700 871073307896729611 uDNeis0 | motion#5739 +09:54:23.208-0700 871073304520323153 SX5g5iY | motion#7068 +09:54:23.267-0700 871073305195601951 o2YigeY | motion#9193 +09:54:23.279-0700 871073280096862288 oJlO6RE | motion#6383 +09:54:23.325-0700 871073293187285012 gH_pxgA | motion#0153 +09:54:23.357-0700 871073295448043521 6ATvsms | motion#4283 +09:54:23.364-0700 871073306340655134 hY7FcqY | motion#2045 +09:54:23.377-0700 871073279631294525 GikUVdQ | motion#6938 +09:54:23.425-0700 871073305044611102 DVgXM-s | motion#3332 +09:54:23.582-0700 871073296924426241 G-QkxlI | motion#5335 +09:54:23.607-0700 871073306147709018 uVncGMY | motion#8528 +09:54:23.627-0700 871073274560405554 9vGlmNc | motion#3587 +09:54:23.636-0700 871073295741624350 J85ubBQ | motion#7108 +09:54:23.657-0700 871073298627301456 7FC4pLo | motion#3420 +09:54:23.716-0700 871073313810702408 _1uoeAA | motion#5251 +09:54:23.879-0700 871073301978566667 Ep7A8S4 | motion#1144 +09:54:23.886-0700 871073297067049061 -RCbX78 | motion#8882 +09:54:24.067-0700 871073300158251038 Mu8Oi9Q | motion#0178 +09:54:24.174-0700 871073306202230886 qj2nURQ | motion#7702 +09:54:24.266-0700 871073309222129664 FtHPyMw | motion#7889 +09:54:24.382-0700 871073299952697364 twDEQ6c | motion#5062 +09:54:24.430-0700 871073303362699274 nD7JNmQ | motion#1157 +09:54:24.447-0700 871073306135134238 jv_d82U | motion#1358 +09:54:24.509-0700 871073308811087892 cITCZ_4 | motion#4806 +09:54:24.747-0700 871073292398788648 yq642i0 | motion#4850 +09:54:24.756-0700 871073302028890173 4D05gGs | motion#0949 +09:54:24.806-0700 871073300657369118 nj_F4bw | motion#4172 +09:54:24.848-0700 871073315236757545 VL4hlSQ | motion#7691 +09:54:24.900-0700 871073302188277772 0ncM81M | motion#2432 +09:54:24.901-0700 871073310501388338 AkNOKz0 | motion#5287 +09:54:24.906-0700 871073305250132069 s80Hq2c | motion#7968 +09:54:24.930-0700 871073298405031946 ultKOQ8 | motion#1238 +09:54:24.930-0700 871073305745055785 JNC_8rE | motion#0709 +09:54:24.959-0700 871073290460991531 qUxoHLc | motion#2688 +09:54:24.960-0700 871073296538562630 wce5zoA | motion#3944 +09:54:24.975-0700 871073301051609139 R9dkqEA | motion#7559 +09:54:24.976-0700 871073300237938759 T2OgbqQ | motion#2531 +09:54:24.988-0700 871073295519346758 HxrBr9w | motion#7857 +09:54:25.020-0700 871073309062737920 KbI-zYY | motion#2043 +09:54:25.021-0700 871073310652375080 VMma7rk | motion#0979 +09:54:25.101-0700 871073310673350666 kcVM0jQ | motion#9948 +09:54:25.109-0700 871073302670614600 dZjBDx0 | motion#4358 +09:54:25.113-0700 871073303765352528 9DFsuPk | motion#3581 +09:54:25.134-0700 871073319594651678 oEwv4YA | motion#3696 +09:54:25.135-0700 871073295762620496 7gP-6SM | motion#6517 +09:54:25.165-0700 871073314435629057 edAming | motion#4360 +09:54:25.173-0700 871073298505674803 hOlT1G8 | motion#7380 +09:54:25.186-0700 871073302934872104 mylcdz8 | motion#4128 +09:54:25.199-0700 871073305493397604 Kr3hgY8 | motion#6443 +09:54:25.225-0700 871073302905516052 lqPvYWs | motion#7041 +09:54:25.274-0700 871073305594064969 ZwXboD4 | motion#6983 +09:54:25.310-0700 871073302586736650 aaDUNqI | motion#2034 +09:54:25.337-0700 871073302528008242 WLURLd4 | motion#4129 +09:54:25.353-0700 871073315253534760 7PTTlLo | motion#2125 +09:54:25.359-0700 871073289005576233 Jl61pak | motion#1530 +09:54:25.467-0700 871073312007139428 Iqauymk | motion#1874 +09:54:25.552-0700 871073311956819979 WfCxNkY | motion#4429 +09:54:25.570-0700 871073301433286676 YLmCAME | motion#8266 +09:54:25.570-0700 871073313731018812 hZnVB1Y | motion#2265 +09:54:25.588-0700 871073312443351040 TryMOGM | motion#0317 +09:54:25.603-0700 871073308848832513 43NgbXw | motion#8858 +09:54:25.659-0700 871073299671695360 y4Loslc | motion#3490 +09:54:25.667-0700 871073318583812127 x9wdId4 | motion#5184 +09:54:25.673-0700 871073304209940520 aTZg8ik | motion#0134 +09:54:25.701-0700 871073315119321108 a9frspA | motion#6864 +09:54:25.715-0700 871073311923273778 pfryZ9w | motion#0164 +09:54:25.722-0700 871073317245825106 IHH3DBc | motion#6292 +09:54:25.734-0700 871073304100884551 UNQI9G0 | motion#0910 +09:54:25.760-0700 871073308647518270 4h1HepA | motion#0933 +09:54:25.805-0700 871073310123900948 wy-DtWQ | motion#6894 +09:54:25.813-0700 871073304763572235 4ORlkoE | motion#8338 +09:54:25.837-0700 871073316113354842 DxixPls | motion#3541 +09:54:25.906-0700 871073311512207430 IHQT3qw | motion#8731 +09:54:25.910-0700 871073313697464340 fiqkTQI | motion#6912 +09:54:25.932-0700 871073292658827265 cAv6t5Q | motion#3044 +09:54:25.945-0700 871073310627205130 xITIIc0 | motion#0450 +09:54:25.954-0700 871073304088297532 Nhq1P24 | motion#0430 +09:54:25.995-0700 871073314041389068 HjO-1TQ | motion#8382 +09:54:26.007-0700 871073311826784366 PwrOfqg | motion#8744 +09:54:26.057-0700 871073318189547570 JWYz_94 | motion#7280 +09:54:26.087-0700 871073305350799420 IIC5uC0 | motion#1723 +09:54:26.112-0700 871073312644665354 Me75QMU | motion#2172 +09:54:26.123-0700 871073310849531986 zVRLn2Q | motion#9406 +09:54:26.148-0700 871073293707403285 hwZDkT4 | motion#0606 +09:54:26.152-0700 871073319510761483 Ra_962g | motion#6380 +09:54:26.231-0700 871073304398671933 AkpP4_w | motion#6284 +09:54:26.239-0700 871073311117955072 yPZ42cI | motion#4716 +09:54:26.303-0700 871073316776067112 Y5T8Ia8 | motion#4125 +09:54:26.304-0700 871073303278792758 jclaXTs | motion#6068 +09:54:26.313-0700 871073314330775552 byCOTEM | motion#4973 +09:54:26.320-0700 871073312690831401 J0qp1Eo | motion#3087 +09:54:26.323-0700 871073312195879002 v7RiE3w | motion#2683 +09:54:26.358-0700 871073316113379388 A7kE-CA | motion#8022 +09:54:26.388-0700 871073316167884860 RDsNHiY | motion#3192 +09:54:26.418-0700 871073318101467196 qsIEPp8 | motion#6737 +09:54:26.435-0700 871073317342294026 0PnTNwM | motion#9406 +09:54:26.439-0700 871073294349115472 6jHtLjo | motion#1950 +09:54:26.461-0700 871073311453487145 4Vt8DOc | motion#0464 +09:54:26.537-0700 871073316927070218 rw7684o | motion#2346 +09:54:26.589-0700 871073315463233597 nRJ5KSk | motion#4355 +09:54:26.712-0700 871073313571627078 7pHL7Bg | motion#4060 +09:54:26.808-0700 871073317333893141 sDViK5E | motion#1153 +09:54:26.867-0700 871073317132578877 hSUINZA | motion#3106 +09:54:26.883-0700 871073326326480907 wfyj6d0 | motion#5250 +09:54:26.972-0700 871073316549570660 lJ5sQLs | motion#4240 +09:54:26.987-0700 871073301374574602 B1aPpMw | motion#2540 +09:54:27.012-0700 871073319116480522 jT1c1Co | motion#3140 +09:54:27.068-0700 871073318378295367 RAFNQvw | motion#1015 +09:54:27.178-0700 871073308794310706 bg4eBAk | motion#0917 +09:54:27.259-0700 871073310241337344 FijeFMQ | motion#5885 +09:54:27.374-0700 871073318277615626 nYi0z5w | motion#4622 +09:54:27.435-0700 871073310027431956 UaCAAZ4 | motion#9523 +09:54:27.501-0700 871073320668377191 8bmetzA | motion#2452 +09:54:27.520-0700 871073313596792862 rCv5ZUo | motion#3023 +09:54:27.541-0700 871073303937286205 -vJkxuw | motion#5345 +09:54:27.568-0700 871073319061971045 crnt4sQ | motion#7976 +09:54:27.672-0700 871073318470557756 c94wFYU | motion#8974 +09:54:27.741-0700 871073309918388325 9QiKrqA | motion#0290 +09:54:27.749-0700 871073317338107925 zMBlMw0 | motion#2963 +09:54:27.752-0700 871073298576994345 JcuVWEk | motion#3831 +09:54:27.951-0700 871073318466367558 RtcXZPc | motion#6769 +09:54:27.959-0700 871073318869032970 bsd1l0o | motion#4805 +09:54:28.061-0700 871073318671888455 4bK9_WQ | motion#7041 +09:54:28.098-0700 871073310149058631 FABYIWo | motion#8947 +09:54:28.118-0700 871073319204569098 NRA9G8E | motion#7647 +09:54:28.127-0700 871073318470557697 v4ll19s | motion#5274 +09:54:28.131-0700 871073330923438180 1Ryo7sE | motion#5834 +09:54:28.214-0700 871073320194408478 x73Ej4I | motion#2363 +09:54:28.218-0700 871073320483815444 Kjw81qE | motion#7161 +09:54:28.263-0700 871073329338015785 a6Zki_s | motion#6267 +09:54:28.292-0700 871073317585575997 9eymFU8 | motion#0806 +09:54:28.304-0700 871073296106549298 DVng3QI | motion#2041 +09:54:28.316-0700 871073323675697213 N3qpmSk | motion#4573 +09:54:28.327-0700 871073318042734602 ACtcaQc | motion#2354 +09:54:28.379-0700 871073323763769384 em6qsIE | motion#3711 +09:54:28.382-0700 871073319099711488 fM2IOwo | motion#7153 +09:54:28.449-0700 871073301378781204 D8IcDss | motion#4794 +09:54:28.577-0700 871073325949001779 _pqhWBk | motion#9877 +09:54:28.617-0700 871073321876332585 DkeQMN4 | motion#5636 +09:54:28.617-0700 871073317031927858 m3kSPeg | motion#1901 +09:54:28.697-0700 871073318306975744 BDCZPPo | motion#2340 +09:54:28.864-0700 871073331162542141 ahKPHQI | motion#6410 +09:54:28.977-0700 871073319808557096 Dl-W09w | motion#0595 +09:54:29.020-0700 871073318080483360 S8fcNWg | motion#2849 +09:54:29.153-0700 871073326481690654 cPvHzWE | motion#7275 +09:54:29.166-0700 871073332857020456 NbsmNEw | motion#9561 +09:54:29.243-0700 871073323424034947 p4BSRyU | motion#2823 +09:54:29.271-0700 871073319313637489 -173l6o | motion#8432 +09:54:29.273-0700 871073333368746065 hMs68dE | motion#9709 +09:54:29.351-0700 871073324611027015 KCEg_N8 | motion#2575 +09:54:29.427-0700 871073330856353833 Jlug3Bo | motion#0930 +09:54:29.435-0700 871073326821408858 _8JgBjc | motion#9445 +09:54:29.590-0700 871073324887867403 eq2CJ9Q | motion#7484 +09:54:29.600-0700 871073324489379910 t2IeNsw | motion#6496 +09:54:29.604-0700 871073318281818122 -kTME4o | motion#3453 +09:54:29.705-0700 871073332420821042 zDmpGTo | motion#8066 +09:54:29.730-0700 871073331196076043 0pCmCJI | motion#6386 +09:54:29.731-0700 871073319397494814 4ZGZNmo | motion#9135 +09:54:29.795-0700 871073320316047391 reJiYz8 | motion#7731 +09:54:29.808-0700 871073328788570203 HqThHlg | motion#9870 +09:54:29.876-0700 871073335923068958 am46Fj0 | motion#2387 +09:54:29.947-0700 871073336900354088 99FiLKA | motion#3233 +09:54:29.949-0700 871073325592485939 p4grUDs | motion#0734 +09:54:29.965-0700 871073319498178632 LchuXvo | motion#4397 +09:54:30.015-0700 871073327001780224 ZupRHKI | motion#7424 +09:54:30.026-0700 871073321335271475 1uaN1-8 | motion#3337 +09:54:30.031-0700 871073317707194420 BQcXqxE | motion#4964 +09:54:30.047-0700 871073329308651640 lyM-FNI | motion#8263 +09:54:30.047-0700 871073332676669463 XYNe6qU | motion#0462 +09:54:30.055-0700 871073337521082369 _GiHwOo | motion#4435 +09:54:30.101-0700 871073331565166593 FRP9-X4 | motion#0368 +09:54:30.356-0700 871073334685745252 PQmdFuA | motion#3693 +09:54:30.362-0700 871073331842015293 -G59RGo | motion#6317 +09:54:30.398-0700 871073333171609701 PTQs6tw | motion#2135 +09:54:30.431-0700 871073329593872425 ZdL8d4E | motion#3508 +09:54:30.583-0700 871073326561370153 RdVydnE | motion#0908 +09:54:30.617-0700 871073319573651467 TIBbBPg | motion#8971 +09:54:30.623-0700 871073334752850001 Lg-nN8c | motion#0791 +09:54:30.636-0700 871073326230032444 Ir9IB0c | motion#7135 +09:54:30.654-0700 871073322698432562 8QufBq4 | motion#0327 +09:54:30.680-0700 871073337793708052 sKZP194 | motion#3140 +09:54:30.729-0700 871073328662724648 0nhi8E8 | motion#7095 +09:54:30.826-0700 871073330789224468 lfsQ2ic | motion#1073 +09:54:30.850-0700 871073324552318976 LODcSw0 | motion#4632 +09:54:30.865-0700 871073339844730890 _BfNoKc | motion#3640 +09:54:30.900-0700 871073331519033374 orhgLeo | motion#2361 +09:54:31.002-0700 871073334329245706 kshBF3c | motion#7123 +09:54:31.027-0700 871073321217835008 Vo4LEbU | motion#9215 +09:54:31.040-0700 871073321272356894 dY4jvZ8 | motion#8343 +09:54:31.106-0700 871073324992692275 1veXJUs | motion#0725 +09:54:31.195-0700 871073325756063804 SVUeYhE | motion#6887 +09:54:31.201-0700 871073330885697586 rnWeChw | motion#8454 +09:54:31.256-0700 871073332416643082 pjBAxvY | motion#8626 +09:54:31.306-0700 871073333406482442 hz5DfCA | motion#6674 +09:54:31.358-0700 871073340410961981 _nJuLi0 | motion#9863 +09:54:31.385-0700 871073332576026726 70ILZco | motion#1899 +09:54:31.403-0700 871073342801723442 ZsEF0Jw | motion#5840 +09:54:31.404-0700 871073324405510195 j5qtKq8 | motion#3602 +09:54:31.461-0700 871073339601461288 nLQC-a4 | motion#9254 +09:54:31.547-0700 871073337789513739 LRAnxV4 | motion#4544 +09:54:31.634-0700 871073325529575424 _Pj9zRc | motion#5158 +09:54:31.643-0700 871073338150248548 Yn7aKI8 | motion#0127 +09:54:31.676-0700 871073324422275102 ra4aJGc | motion#8003 +09:54:31.730-0700 871073339307855902 tu_nwqM | motion#8112 +09:54:31.736-0700 871073338368348180 _K8VACg | motion#6048 +09:54:31.752-0700 871073340570337290 oV2BzSc | motion#5971 +09:54:31.762-0700 871073333876228146 wVXPMn8 | motion#3594 +09:54:31.778-0700 871073338938765352 EaKuPko | motion#6573 +09:54:31.780-0700 871073339475652638 hYFEJ4I | motion#7876 +09:54:31.781-0700 871073103416021022 o-k87tQ | motion#7608 +09:54:31.818-0700 871073338733244416 usog9xk | motion#9625 +09:54:31.855-0700 871073338846486568 PYjSGN0 | motion#5036 +09:54:31.863-0700 871073342092886056 ckJLFOA | motion#1302 +09:54:31.867-0700 871073326452314134 7MwJrBQ | motion#5922 +09:54:31.871-0700 871073332110458890 5dAIuRQ | motion#2408 +09:54:31.911-0700 871073325613449267 Tos8fmU | motion#6988 +09:54:31.957-0700 871073317115822140 vRiV_sk | motion#7451 +09:54:32.013-0700 871073332894765106 -vO0vlU | motion#8197 +09:54:32.023-0700 871073342680084580 QK2e3yo | motion#0467 +09:54:32.064-0700 871073325835755560 B6TEVCc | motion#5830 +09:54:32.074-0700 871073325500223508 V19Mbms | motion#0421 +09:54:32.099-0700 871073338754224179 4_zmKP0 | motion#2584 +09:54:32.173-0700 871073320345432104 8XUFiHU | motion#7822 +09:54:32.182-0700 871073339509186630 0_XDNnk | motion#5455 +09:54:32.200-0700 871073341430177842 axZOhms | motion#3402 +09:54:32.211-0700 871073322379657336 OKv9qiQ | motion#0147 +09:54:32.237-0700 871073330944413716 owRnEk8 | motion#1537 +09:54:32.238-0700 871073310484598804 nmJoohg | motion#7965 +09:54:32.324-0700 871073341774135346 4ezSsY0 | motion#2076 +09:54:32.378-0700 871073325248561262 CGCpUgg | motion#6086 +09:54:32.393-0700 871073339718893648 zSQHf8s | motion#3926 +09:54:32.431-0700 871073337919553597 IpgIT7k | motion#7382 +09:54:32.445-0700 871073339744092230 -6w0vjA | motion#1632 +09:54:32.454-0700 871073341576998973 jaMQiCA | motion#7639 +09:54:32.471-0700 871073324527128637 31bMGgs | motion#1804 +09:54:32.494-0700 871073342545854465 NJyPVOU | motion#1435 +09:54:32.552-0700 871073338829717535 pXDC1KI | motion#1543 +09:54:32.611-0700 871073340616499241 ewnXodA | motion#2682 +09:54:32.653-0700 871073337084891236 -1vcAmY | motion#1573 +09:54:32.701-0700 871073325961588767 66ecF-I | motion#3919 +09:54:32.771-0700 871073340046057472 JgS2bj4 | motion#4247 +09:54:32.876-0700 871073335759499264 vMaUQgE | motion#8970 +09:54:32.880-0700 871073345402179656 6gHSQzk | motion#6280 +09:54:32.885-0700 871073341010772059 Mh_be6Q | motion#8354 +09:54:32.937-0700 871073331577770035 oMJg-Fo | motion#4097 +09:54:33.027-0700 871073351517491211 vikwIT0 | motion#7743 +09:54:33.114-0700 871073342982082561 1Xjs7xo | motion#2067 +09:54:33.139-0700 871073341098852352 APik23E | motion#1989 +09:54:33.165-0700 871073332286595132 yvBEO5w | motion#6586 +09:54:33.165-0700 871073339878309890 ksCbEUc | motion#2135 +09:54:33.193-0700 871073339697934336 cR5Gd5A | motion#0414 +09:54:33.209-0700 871073330499825705 vsykHDc | motion#4845 +09:54:33.326-0700 871073342805934081 eI36R7E | motion#8786 +09:54:33.329-0700 871073352184377375 DhweKmQ | motion#4564 +09:54:33.375-0700 871073346060681256 TfEwnio | motion#2807 +09:54:33.451-0700 871073342432628817 SBDO1VE | motion#1746 +09:54:33.497-0700 871073333951746098 FIkJEYE | motion#4565 +09:54:33.515-0700 871073349692977152 -UR34ZA | motion#0996 +09:54:33.537-0700 871073348677959720 CIBda7A | motion#9266 +09:54:33.640-0700 871073347486756965 yh1OYK4 | motion#1593 +09:54:33.665-0700 871073345662226462 prU-EqU | motion#7649 +09:54:33.682-0700 871073352553476137 oRbcCRU | motion#5419 +09:54:33.725-0700 871073332529889360 jx8Ap8k | motion#2487 +09:54:33.823-0700 871073352691892254 nw8NZE8 | motion#1449 +09:54:33.881-0700 871073349776838696 bY1RrGM | motion#2944 +09:54:33.938-0700 871073344458477579 j5JRQ3g | motion#0620 +09:54:33.941-0700 871073349273542726 TWpxOBc | motion#3412 +09:54:33.953-0700 871073337672101920 czuSkRk | motion#5199 +09:54:33.957-0700 871073347851669554 c1xV00U | motion#9493 +09:54:33.965-0700 871073338418688020 krB4_HA | motion#5471 +09:54:34.041-0700 871073342260654080 62wAzPM | motion#8620 +09:54:34.072-0700 871073321171709962 KQiTpcA | motion#8662 +09:54:34.077-0700 871073349344833566 h83yGoI | motion#0727 +09:54:34.158-0700 871073341832822854 BqYw250 | motion#6212 +09:54:34.248-0700 871073345565765697 eouMDXc | motion#9039 +09:54:34.310-0700 871073346631106560 6dmz5-k | motion#7384 +09:54:34.344-0700 871073346039717938 ArYhkp0 | motion#0833 +09:54:34.429-0700 871073346597584916 ETiiks4 | motion#2773 +09:54:34.486-0700 871073345972621332 qT2GIrk | motion#0710 +09:54:34.489-0700 871073349437120603 jdBN-sg | motion#5891 +09:54:34.515-0700 871073352494743562 lPm5ia4 | motion#9592 +09:54:34.590-0700 871073341019160597 hHNsgqE | motion#4824 +09:54:34.638-0700 871073350678638633 s-BjrOU | motion#1268 +09:54:34.666-0700 871073352104689704 -g15D2A | motion#5747 +09:54:34.667-0700 871073343028199514 wF8evVM | motion#6265 +09:54:34.669-0700 871073348455632896 zfAjrsE | motion#0116 +09:54:34.754-0700 871073347600011294 pP73aDY | motion#9880 +09:54:34.787-0700 871073351102238742 mKRmcOA | motion#1046 +09:54:34.822-0700 871073348082360390 kSAK0C4 | motion#3962 +09:54:34.842-0700 871073337982472242 vXGMjo0 | motion#4698 +09:54:34.868-0700 871073350372438076 Ja0s7dc | motion#7216 +09:54:34.885-0700 871073343590264903 qM9hZmw | motion#1465 +09:54:34.915-0700 871073355904741436 6azHOrY | motion#3973 +09:54:34.984-0700 871073347671322624 NvvU0Dk | motion#7148 +09:54:35.003-0700 871073350779305994 bN6_G2M | motion#8474 +09:54:35.013-0700 871073342780760064 eQGQJ1U | motion#2362 +09:54:35.020-0700 871073348824756254 rfiUbmM | motion#0190 +09:54:35.068-0700 871073352608006165 IzRwx9M | motion#8795 +09:54:35.111-0700 871073351173541958 RpCadQA | motion#8897 +09:54:35.158-0700 871073352779989013 ufpSTLo | motion#4954 +09:54:35.259-0700 871073345972625410 nPXQZ70 | motion#5218 +09:54:35.285-0700 871073348191420466 85sRAP0 | motion#5182 +09:54:35.324-0700 871073347683889213 blBi3I0 | motion#0639 +09:54:35.349-0700 871073342856261683 OcjPR_M | motion#1726 +09:54:35.363-0700 871073348690542632 2FPFsww | motion#1027 +09:54:35.365-0700 871073348384333837 d7spYcE | motion#9436 +09:54:35.492-0700 871073348770230323 kms2xEI | motion#4895 +09:54:35.640-0700 871073354008903731 zzVfrHY | motion#0574 +09:54:35.681-0700 871073345557377034 TuWr49g | motion#6678 +09:54:35.707-0700 871073348287864885 tlgYf3E | motion#5122 +09:54:35.722-0700 871073357754408981 60dQlnw | motion#4673 +09:54:35.744-0700 871073325185646672 Bu93jJc | motion#5687 +09:54:35.819-0700 871073362418475098 X3yiBuw | motion#3227 +09:54:35.872-0700 871073345683214416 CkV715A | motion#7557 +09:54:35.944-0700 871073335474274305 XoAPksY | motion#0902 +09:54:35.946-0700 871073358891057153 y4YmV7g | motion#6579 +09:54:35.977-0700 871073349407764511 2xZZeIg | motion#3059 +09:54:36.005-0700 871073345318318080 3KDYtXA | motion#3255 +09:54:36.013-0700 871073349315493928 6pVR0Sc | motion#2715 +09:54:36.060-0700 871073339974758400 oI4bgIw | motion#6738 +09:54:36.087-0700 871073349139312641 JE99CpI | motion#5044 +09:54:36.089-0700 871073358194815058 ALK_TYA | motion#8523 +09:54:36.108-0700 871073360220680252 5DiFBFg | motion#5609 +09:54:36.149-0700 871073350385012766 md8wzqU | motion#1518 +09:54:36.200-0700 871073347620970557 TSd3J_c | motion#7887 +09:54:36.210-0700 871073341883162644 odmAOnM | motion#8772 +09:54:36.291-0700 871073357330804767 XX779yI | motion#6701 +09:54:36.311-0700 871073356210896921 DMKKJXI | motion#6500 +09:54:36.316-0700 871073359235014716 dZ9cw28 | motion#1015 +09:54:36.329-0700 871073353178443827 bFpPik4 | motion#1758 +09:54:36.331-0700 871073353270714428 pv-WbHk | motion#6782 +09:54:36.354-0700 871073357267861564 0I4bhx0 | motion#5698 +09:54:36.371-0700 871073360631701515 PT9JRYA | motion#4724 +09:54:36.445-0700 871073356563230740 RlpAwlQ | motion#6498 +09:54:36.557-0700 871073349541953607 kOig60I | motion#7514 +09:54:36.796-0700 871073358488436776 HObMNTM | motion#2957 +09:54:36.807-0700 871073354113773598 79G5E7k | motion#4045 +09:54:36.838-0700 871073349953019944 deTKz_I | motion#3706 +09:54:36.959-0700 871073349093175327 fwGZVUA | motion#5500 +09:54:37.023-0700 871073356546441267 WbF0tM8 | motion#9588 +09:54:37.121-0700 871073352922595389 vOSOL3w | motion#6756 +09:54:37.146-0700 871073352733851720 1hkQGKs | motion#5212 +09:54:37.161-0700 871073364670840832 n9j1g5g | motion#1060 +09:54:37.173-0700 871073343640584193 N75jwtQ | motion#5068 +09:54:37.181-0700 871073355753738270 SYZ-7cc | motion#9190 +09:54:37.212-0700 871073352469602385 Y5NLlC4 | motion#9373 +09:54:37.245-0700 871073351412637747 zJvrbvc | motion#8097 +09:54:37.304-0700 871073355690803331 4egX7ng | motion#7536 +09:54:37.350-0700 871073354524786788 s3WmuG4 | motion#2369 +09:54:37.362-0700 871073358509391883 j2cAMJQ | motion#4482 +09:54:37.422-0700 871073357808955553 TtUj-RE | motion#9653 +09:54:37.632-0700 871073353434271755 YZeK4C8 | motion#2157 +09:54:37.739-0700 871073364540792882 yn0dfKI | motion#0974 +09:54:37.844-0700 871073326884352000 BLedG3o | motion#3568 +09:54:37.844-0700 871073354822586408 QnF_Q5E | motion#5422 +09:54:37.849-0700 871073354239582260 Mw64Skc | motion#7574 +09:54:37.853-0700 871073354440921139 Kpk8guQ | motion#0605 +09:54:37.878-0700 871073352859660358 KX5LqOY | motion#0649 +09:54:38.021-0700 871073364511424543 eR9MDN8 | motion#0786 +09:54:38.074-0700 871073355669831742 QB20Ty0 | motion#0675 +09:54:38.081-0700 871073366478577704 riKf8Lg | motion#9044 +09:54:38.152-0700 871073345460903976 HjB4D20 | motion#2798 +09:54:38.169-0700 871073369850785843 pT1InJk | motion#2166 +09:54:38.199-0700 871073364729544755 ONkxntY | motion#7495 +09:54:38.215-0700 871073351630729297 pdcPl_M | motion#3297 +09:54:38.217-0700 871073356487737394 y1QFIcA | motion#9787 +09:54:38.247-0700 871073370366672977 RmXygu0 | motion#1418 +09:54:38.310-0700 871073370031128606 Yz56F9E | motion#8533 +09:54:38.373-0700 871073357389500446 5D3DXhw | motion#5281 +09:54:38.482-0700 871073361000804382 dv2jZ0U | motion#8260 +09:54:38.539-0700 871073362594627605 1vUHRbY | motion#9850 +09:54:38.607-0700 871073369984999454 h4M04IA | motion#0569 +09:54:38.611-0700 871073353388146729 NJ63OS4 | motion#0953 +09:54:38.680-0700 871073359067238420 wyI0A2w | motion#0435 +09:54:39.002-0700 871073373852160061 6yU0Afo | motion#1671 +09:54:39.012-0700 871073371654328411 oM3OUps | motion#6026 +09:54:39.136-0700 871073369435557998 jKj7qAI | motion#8640 +09:54:39.221-0700 871073357389525133 kpZKnaE | motion#8766 +09:54:39.287-0700 871073362225532958 And2XWA | motion#8285 +09:54:39.323-0700 871073360199704677 AQRA2Q8 | motion#0160 +09:54:39.329-0700 871073373214625793 l5WaE5c | motion#5784 +09:54:39.341-0700 871073370274410517 Kcs-BTw | motion#9883 +09:54:39.387-0700 871073354440921098 HwR_woQ | motion#7202 +09:54:39.431-0700 871073359255982140 kh2msQs | motion#3330 +09:54:39.484-0700 871073360501682186 wvGMOH0 | motion#4431 +09:54:39.572-0700 871073372572889128 TjmBvHQ | motion#4785 +09:54:39.690-0700 871073375756370021 glFVzAY | motion#3530 +09:54:39.691-0700 871073360975650826 azuApVo | motion#1242 +09:54:39.729-0700 871073373374001242 KCuevrA | motion#6527 +09:54:39.738-0700 871073350552813669 UAcWZqg | motion#8509 +09:54:39.745-0700 871073367216779284 rSqJgVw | motion#4373 +09:54:39.934-0700 871073376167428186 etRnvIA | motion#9298 +09:54:39.949-0700 871073375873794109 8bwgM04 | motion#0673 +09:54:39.952-0700 871073378969202708 Y02NiwI | motion#5680 +09:54:39.980-0700 871073367992721459 DwD-iic | motion#1590 +09:54:39.993-0700 871073366608601148 H-mYq1Y | motion#0196 +09:54:40.100-0700 871073359440515123 I9G1hHM | motion#4491 +09:54:40.111-0700 871073372912640093 NCTkiLM | motion#0688 +09:54:40.131-0700 871073367262896168 MnIYk28 | motion#0186 +09:54:40.141-0700 871073370723188777 V-Ohqgo | motion#6655 +09:54:40.204-0700 871073373575348274 janjZqc | motion#5639 +09:54:40.219-0700 871073366436642967 rgHRNCM | motion#2232 +09:54:40.261-0700 871073375005573180 bxk-F_I | motion#2175 +09:54:40.278-0700 871073380521099305 kJeb3u0 | motion#5945 +09:54:40.285-0700 871073373927645264 EXsKKyE | motion#0278 +09:54:40.342-0700 871073380667891722 nCpctjs | motion#4541 +09:54:40.370-0700 871073360447168552 3Mk3OFc | motion#5204 +09:54:40.396-0700 871073377618645012 oz9l5Ys | motion#1482 +09:54:40.419-0700 871073375966068756 84qp4jk | motion#6023 +09:54:40.427-0700 871073376284839957 Z74o4b4 | motion#8498 +09:54:40.568-0700 871073353623044137 IvIZdqU | motion#0012 +09:54:40.610-0700 871073379699007549 ryhqli4 | motion#1802 +09:54:40.627-0700 871073363488034857 RcmMgHI | motion#1835 +09:54:40.632-0700 871073365685858345 BhaBzQ8 | motion#5440 +09:54:40.768-0700 871073379262791690 Pa7sq78 | motion#2082 +09:54:40.903-0700 871073377677369344 2leM-Ug | motion#2973 +09:54:40.945-0700 871073367543939102 zqoslog | motion#7786 +09:54:41.019-0700 871073362984726588 trUOWR8 | motion#2748 +09:54:41.040-0700 871073366969307147 bVZRRxQ | motion#2640 +09:54:41.076-0700 871073376435851296 n5Yh8IE | motion#7407 +09:54:41.140-0700 871073374430973992 rkss6u4 | motion#5939 +09:54:41.225-0700 871073369427177472 nCQAS8Q | motion#6597 +09:54:41.292-0700 871073370635141191 46wz8Bw | motion#8525 +09:54:41.379-0700 871073380592410675 2ZaQYhQ | motion#2242 +09:54:41.390-0700 871073384623112212 PlsQ4bM | motion#2144 +09:54:41.464-0700 871073366331768882 7gGPJr4 | motion#7077 +09:54:41.564-0700 871073367611043860 ODXhA8w | motion#9483 +09:54:41.571-0700 871073362678538310 NLKTVBU | motion#0814 +09:54:41.575-0700 871073380529479690 Z1OixiU | motion#7839 +09:54:41.593-0700 871073366709256212 15tCQDU | motion#9861 +09:54:41.623-0700 871073380810522655 xmZiBpk | motion#0336 +09:54:41.710-0700 871073381372551170 MpPoKOo | motion#5055 +09:54:41.748-0700 871073387806588928 Py1W_j0 | motion#8332 +09:54:41.777-0700 871073387513004086 DRnHAvE | motion#4566 +09:54:41.817-0700 871073374829441054 _ag7z7c | motion#0622 +09:54:41.851-0700 871073383205453855 xNNgJ8c | motion#1470 +09:54:41.877-0700 871073370538663946 LZHB9lI | motion#3923 +09:54:41.896-0700 871073375085289534 oCo1348 | motion#3618 +09:54:41.942-0700 871073373810229358 u_IG-Y4 | motion#3981 +09:54:41.969-0700 871073369552982016 IBeiQG0 | motion#9872 +09:54:42.047-0700 871073370198904882 7acuDHM | motion#1654 +09:54:42.048-0700 871073388838387714 bpeuLWA | motion#0751 +09:54:42.115-0700 871073366801547295 J_W0SAM | motion#1341 +09:54:42.161-0700 871073374447738940 8kzCZtU | motion#0743 +09:54:42.364-0700 871073377111126076 TPzBDHQ | motion#6833 +09:54:42.611-0700 871073374842007612 vO0uFzU | motion#8649 +09:54:42.747-0700 871073385571045407 lKhiSqY | motion#0109 +09:54:42.889-0700 871073383037693962 sfPjfFM | motion#5123 +09:54:42.935-0700 871073388586750002 ApFLfNM | motion#3772 +09:54:42.975-0700 871073382156877834 2EpxTyE | motion#7217 +09:54:43.149-0700 871073355153952879 kWSZtGk | motion#6161 +09:54:43.187-0700 871073385763995689 zksLWDs | motion#1552 +09:54:43.204-0700 871073390520332319 i02MaAs | motion#7206 +09:54:43.227-0700 871073387710136360 Y-2kke0 | motion#1852 +09:54:43.260-0700 871073385701064755 8ZUN6WY | motion#8621 +09:54:43.292-0700 871073386946789406 KXn_UGQ | motion#8416 +09:54:43.372-0700 871073388569968710 YY_6Hgk | motion#7098 +09:54:43.378-0700 871073390033784912 4O_RoS8 | motion#4884 +09:54:43.421-0700 871073390344167444 -vKKjbE | motion#4816 +09:54:43.429-0700 871073389173932105 SowvhyE | motion#2862 +09:54:43.431-0700 871073389073268756 Kk95gB8 | motion#2311 +09:54:43.476-0700 871073388272164986 qPD7Ruo | motion#9426 +09:54:43.499-0700 871073382869913600 baPFm-o | motion#1731 +09:54:43.502-0700 871073382165270598 hpCFdH8 | motion#4616 +09:54:43.565-0700 871073390109278279 ZTt_pdg | motion#8966 +09:54:43.574-0700 871073366243704852 ZqSF7RU | motion#6633 +09:54:43.679-0700 871073391036227604 2vQcXXk | motion#6367 +09:54:43.749-0700 871073362087125072 0FHAz1s | motion#1019 +09:54:43.786-0700 871073390289625138 2x0qF-0 | motion#2153 +09:54:43.801-0700 871073371037782067 NXsaJb0 | motion#7465 +09:54:43.808-0700 871073389941514331 qroSeao | motion#1994 +09:54:43.832-0700 871073388603527178 F1Oef90 | motion#7038 +09:54:43.838-0700 871073388737724457 bvEcaA4 | motion#3418 +09:54:43.919-0700 871073383696199741 ml7SJjk | motion#8095 +09:54:43.932-0700 871073390600024095 srzpUBY | motion#7161 +09:54:43.947-0700 871073382496632894 sMLq4oQ | motion#6668 +09:54:43.968-0700 871073390163820564 eHn_mfI | motion#7286 +09:54:44.008-0700 871073390126043207 NjzkwQI | motion#2990 +09:54:44.028-0700 871073386644787210 OoQDA_g | motion#3608 +09:54:44.058-0700 871073388855193700 fOs2qtQ | motion#5248 +09:54:44.078-0700 871073388574175232 nXL7ShI | motion#1155 +09:54:44.081-0700 871073391132704799 FBtM0tA | motion#7746 +09:54:44.090-0700 871073388565762084 sMRskDU | motion#2081 +09:54:44.107-0700 871073389333323826 i0F8ePk | motion#8704 +09:54:44.149-0700 871073389278806066 Qb1pHdM | motion#4713 +09:54:44.170-0700 871073372363182100 xQ7rtsE | motion#9277 +09:54:44.225-0700 871073375773134928 fAKDgqQ | motion#8951 +09:54:44.243-0700 871073389937328201 Dl-mLPc | motion#5300 +09:54:44.265-0700 871073388096004116 0gHoEbs | motion#2044 +09:54:44.284-0700 871073369854992444 9rJGZZw | motion#0151 +09:54:44.295-0700 871073390591627295 aKGTimU | motion#3924 +09:54:44.296-0700 871073391854100560 WsFVx80 | motion#3664 +09:54:44.303-0700 871073394387468299 gAVwCQA | motion#0967 +09:54:44.319-0700 871073389626921051 GF8gYS0 | motion#4162 +09:54:44.375-0700 871073387169087530 1ilOt3Y | motion#5635 +09:54:44.423-0700 871073388733542431 V-7Gmm8 | motion#1043 +09:54:44.445-0700 871073395989684315 MWzgCSs | motion#3149 +09:54:44.525-0700 871073388116987904 oELj-Gs | motion#6498 +09:54:44.530-0700 871073382534357002 0i67T5Q | motion#8110 +09:54:44.619-0700 871073384312754296 Kqfd7Lc | motion#9870 +09:54:44.625-0700 871073390075732050 ruvXBzQ | motion#8058 +09:54:44.638-0700 871073389253636146 SQWJZjs | motion#4998 +09:54:44.679-0700 871073392311287908 Sf_duSo | motion#3538 +09:54:44.775-0700 871073392625856542 EaWKNec | motion#6225 +09:54:45.051-0700 871073390428033035 S88UmZM | motion#9502 +09:54:45.130-0700 871073381565489162 KHhRrQ0 | motion#8594 +09:54:45.184-0700 871073391917015100 I4LM48Q | motion#0719 +09:54:45.235-0700 871073337365905409 rcWHY4Y | motion#0835 +09:54:45.261-0700 871073395708669962 js2ykAI | motion#9308 +09:54:45.332-0700 871073395092127746 9UIqImA | motion#4335 +09:54:45.362-0700 871073367585861682 YCcFqz4 | motion#8914 +09:54:45.489-0700 871073396388167690 OczocWM | motion#0750 +09:54:45.529-0700 871073392818782258 CrfiSMM | motion#1176 +09:54:45.549-0700 871073393007558696 etOOq8Q | motion#4947 +09:54:45.551-0700 871073388746137630 h1BgJwM | motion#9750 +09:54:45.569-0700 871073391950585876 CaepKjQ | motion#9333 +09:54:45.593-0700 871073395129843763 CUefhRk | motion#3696 +09:54:45.606-0700 871073397952618537 3k0FX1o | motion#9182 +09:54:45.611-0700 871073395134046239 mrGr4OM | motion#5371 +09:54:45.635-0700 871073389467557928 _tQAJ1A | motion#9053 +09:54:45.651-0700 871073396165853217 jbECsgE | motion#1548 +09:54:45.655-0700 871073377513791528 FrhH60E | motion#3746 +09:54:45.655-0700 871073390998458389 y9SgPRI | motion#6389 +09:54:45.706-0700 871073394521681931 UFqi90Y | motion#7543 +09:54:45.721-0700 871073395461193739 5ZcOGac | motion#8624 +09:54:45.771-0700 871073380642738196 9JekQvM | motion#4073 +09:54:45.778-0700 871073389673082900 dW-FC8s | motion#2906 +09:54:45.857-0700 871073396287479808 oK1ytPM | motion#4890 +09:54:45.862-0700 871073398170746950 Y8x2XHM | motion#4463 +09:54:45.890-0700 871073397860364368 AoCGnek | motion#3500 +09:54:45.905-0700 871073397331873792 leaTK7I | motion#4405 +09:54:45.984-0700 871073383788449874 FtICKTE | motion#2193 +09:54:46.038-0700 871073398346878976 98r4Dbk | motion#6712 +09:54:46.039-0700 871073390277038160 T66YVSA | motion#9720 +09:54:46.089-0700 871073385201934396 FGzp-tU | motion#1009 +09:54:46.157-0700 871073400695713812 lUyw5Y4 | motion#0891 +09:54:46.217-0700 871073397277335592 ChQXQwQ | motion#9744 +09:54:46.238-0700 871073400934764624 eWGYZFU | motion#3294 +09:54:46.244-0700 871073397122166884 UUDIBrQ | motion#4977 +09:54:46.279-0700 871073398250405949 g-UilQc | motion#9505 +09:54:46.281-0700 871073396677558342 DYort8Q | motion#0813 +09:54:46.339-0700 871073392441298954 KlvhlRw | motion#8453 +09:54:46.389-0700 871073391409524757 JxM1wsI | motion#7844 +09:54:46.436-0700 871073400817328138 vq1tFnI | motion#4392 +09:54:46.458-0700 871073414155227206 4ITJKQQ | motion#7279 +09:54:46.661-0700 871073397495443486 lVU_6Ig | motion#2058 +09:54:46.695-0700 871073396899864596 E-t1nsM | motion#2606 +09:54:46.816-0700 871073396484632616 ry8cre0 | motion#5763 +09:54:46.906-0700 871073396778217542 o5x7dYg | motion#4978 +09:54:46.964-0700 871073398489509909 NcH6btY | motion#5131 +09:54:47.004-0700 871073399521288202 w_AWH3o | motion#9109 +09:54:47.035-0700 871073400238510111 UVU1HC4 | motion#9984 +09:54:47.059-0700 871073403988242432 EB2R0TM | motion#2106 +09:54:47.103-0700 871073399861051443 UIVijt0 | motion#9975 +09:54:47.155-0700 871073404265070623 wjSX9zw | motion#7596 +09:54:47.161-0700 871073404944543855 ZvyoJAg | motion#0109 +09:54:47.257-0700 871073399651328050 Zudj_58 | motion#8906 +09:54:47.288-0700 871073387232002049 IGt730g | motion#2243 +09:54:47.390-0700 871073409323388959 Ieb7cUk | motion#6071 +09:54:47.446-0700 871073395616407552 liCMKRE | motion#2465 +09:54:47.450-0700 871073390675513385 PlINzSo | motion#1406 +09:54:47.454-0700 871073404260843560 dOXsoHQ | motion#2087 +09:54:47.538-0700 871073407008137277 71edYx8 | motion#6218 +09:54:47.553-0700 871073390658727996 lY2nT6g | motion#5311 +09:54:47.557-0700 871073404575449148 0xAYKJs | motion#3557 +09:54:47.583-0700 871073403765948437 WYW1hC8 | motion#2512 +09:54:47.644-0700 871073407737954335 KTL2y2o | motion#7608 +09:54:47.673-0700 871073407666634822 vpAtvws | motion#5017 +09:54:47.717-0700 871073402327277608 L1_jcKw | motion#7388 +09:54:47.729-0700 871073394718818436 8WWNPyQ | motion#5900 +09:54:47.733-0700 871073396174241812 cHWQFxw | motion#8842 +09:54:47.741-0700 871073406920032326 fgiztN4 | motion#4672 +09:54:47.749-0700 871073396396531772 xBmn1AE | motion#1670 +09:54:47.846-0700 871073399659712562 tFlSpf4 | motion#1017 +09:54:47.890-0700 871073389916332112 483w16k | motion#3480 +09:54:47.897-0700 871073413303762976 OQ4ww7I | motion#5164 +09:54:47.993-0700 871073402100797460 uiR_B24 | motion#6468 +09:54:48.075-0700 871073410380357672 4m_0jrw | motion#9240 +09:54:48.080-0700 871073412204879932 aPtMRHw | motion#3876 +09:54:48.109-0700 871073397914865695 Gu_CUYU | motion#3892 +09:54:48.174-0700 871073404114063423 AjIXF7c | motion#5010 +09:54:48.181-0700 871073401253535884 2PYMnQE | motion#8017 +09:54:48.183-0700 871073388393795585 vUHKqeY | motion#6203 +09:54:48.190-0700 871073407054262313 beX3xdk | motion#8859 +09:54:48.191-0700 871073399970086923 uDTxqYY | motion#6908 +09:54:48.215-0700 871073404730613790 GfacoJI | motion#8483 +09:54:48.357-0700 871073404663517205 -j82PBU | motion#6059 +09:54:48.504-0700 871073411651215421 9e0JAtE | motion#4568 +09:54:48.512-0700 871073399043149836 Oer84kM | motion#9097 +09:54:48.560-0700 871073399433211956 gnO8dh4 | motion#2664 +09:54:48.563-0700 871073403954671656 3wPStx4 | motion#0827 +09:54:48.601-0700 871073401043816471 Dr27syE | motion#6683 +09:54:48.671-0700 871073390860050513 eEEgLwI | motion#6135 +09:54:48.689-0700 871073413794496582 110mo3U | motion#5903 +09:54:48.723-0700 871073391329824868 hEMA2u8 | motion#0628 +09:54:48.819-0700 871073404873224192 lx3tfiM | motion#9914 +09:54:48.827-0700 871073403518451722 6l61XRU | motion#5479 +09:54:48.873-0700 871073406429298718 CSoMRqs | motion#1860 +09:54:48.883-0700 871073405582057502 qYpQM7w | motion#8283 +09:54:48.925-0700 871073414448824421 FFaA-V0 | motion#7135 +09:54:48.938-0700 871073413916164137 nVlgs34 | motion#7449 +09:54:49.021-0700 871073412091617330 9BDuubk | motion#8842 +09:54:49.036-0700 871073411684769843 GQJ07Yg | motion#2286 +09:54:49.051-0700 871073412062253076 y5fc3Os | motion#4894 +09:54:49.068-0700 871073398258802688 psqSxWQ | motion#4575 +09:54:49.234-0700 871073405238124555 NotB0g8 | motion#1737 +09:54:49.452-0700 871073405594660914 vS30e84 | motion#7935 +09:54:49.463-0700 871073387831754792 -mWocwU | motion#3888 +09:54:49.556-0700 871073406269927504 YnCWK7s | motion#2611 +09:54:49.698-0700 871073409168179260 GiDHJ2E | motion#4371 +09:54:49.708-0700 871073407335288883 LopFeEY | motion#2192 +09:54:49.753-0700 871073414796935188 HJ5ILz0 | motion#6792 +09:54:49.764-0700 871073408270626826 1BEh7C4 | motion#7008 +09:54:49.767-0700 871073422292176976 9iO7eak | motion#4138 +09:54:49.808-0700 871073423684681778 zrCcfKk | motion#4405 +09:54:49.824-0700 871073421700759603 kAlAhzI | motion#6068 +09:54:49.937-0700 871073400515346442 x2HfnWs | motion#5325 +09:54:49.987-0700 871073412569776168 apz2zyk | motion#1553 +09:54:50.016-0700 871073409205927966 TYh822U | motion#5238 +09:54:50.046-0700 871073412141948959 yp3impM | motion#8782 +09:54:50.051-0700 871073415107330100 qEYoZyc | motion#3776 +09:54:50.059-0700 871073398703423508 YvGlPfM | motion#7944 +09:54:50.115-0700 871073405477212220 7axp0es | motion#2986 +09:54:50.145-0700 871073416864739389 NpTa8aQ | motion#1761 +09:54:50.204-0700 871073409390477323 jFcYJwI | motion#3806 +09:54:50.205-0700 871073414461390948 YjOzEmA | motion#6082 +09:54:50.292-0700 871073418185936896 8DqlmFk | motion#9701 +09:54:50.331-0700 871073415489028239 I8G9bLU | motion#3597 +09:54:50.340-0700 871073414109093999 xd1AQsY | motion#5939 +09:54:50.349-0700 871073416856354817 9ADc3vM | motion#3186 +09:54:50.375-0700 871073418420818021 oJ33uGY | motion#8199 +09:54:50.412-0700 871073403438788648 0vItXjw | motion#5189 +09:54:50.423-0700 871073414025191425 fLC5RrE | motion#8602 +09:54:50.427-0700 871073397772255233 buRL-5I | motion#5317 +09:54:50.435-0700 871073414377508904 o4JkkJk | motion#2626 +09:54:50.446-0700 871073415518375996 iarkH7Y | motion#9023 +09:54:50.634-0700 871073407607910432 mMlaamg | motion#9148 +09:54:50.666-0700 871073406559346689 nBYU3Jc | motion#4262 +09:54:50.672-0700 871073418806710283 nJ_ONtI | motion#0355 +09:54:50.793-0700 871073418345332786 C6qZRdk | motion#8460 +09:54:50.913-0700 871073419440046090 oV-6qi0 | motion#8110 +09:54:51.127-0700 871073415073767424 V2P_naM | motion#0776 +09:54:51.377-0700 871073429657362462 7R8qKes | motion#4613 +09:54:51.383-0700 871073414633357352 KFU6qIs | motion#8101 +09:54:51.449-0700 871073416663404614 veR-dIA | motion#6989 +09:54:51.593-0700 871073417728786432 QaNoMms | motion#6441 +09:54:51.619-0700 871073399164788747 BffSwCc | motion#9365 +09:54:51.737-0700 871073426822025238 glT8wFA | motion#9174 +09:54:51.745-0700 871073403497508874 yrl1v7A | motion#5559 +09:54:51.947-0700 871073429720268840 aUPVbec | motion#2974 +09:54:51.985-0700 871073413270208512 vCvUJFI | motion#4918 +09:54:51.985-0700 871073425307877426 SPK5IJA | motion#4602 +09:54:52.209-0700 871073416587927654 spVeLTA | motion#6967 +09:54:52.226-0700 871073426176106508 ros2eoU | motion#3233 +09:54:52.238-0700 871073414339760198 5p4yrM8 | motion#3483 +09:54:52.314-0700 871073413328949298 HaIaYVI | motion#6558 +09:54:52.331-0700 871073416722141184 hGbna6E | motion#4627 +09:54:52.367-0700 871073417665871912 ZYGqcW0 | motion#4450 +09:54:52.396-0700 871073422606762054 G2UUOD0 | motion#9770 +09:54:52.435-0700 871073423126839326 yidP8OA | motion#0357 +09:54:52.567-0700 871073419461029898 LRirU6E | motion#1532 +09:54:52.611-0700 871073423277842463 EZ11j4k | motion#5484 +09:54:52.613-0700 871073416613085214 Z5fHQPk | motion#1403 +09:54:52.631-0700 871073426985607189 3bBHm_8 | motion#0486 +09:54:52.638-0700 871073416420130838 0fOVEYA | motion#6765 +09:54:52.656-0700 871073416344649728 osng1_k | motion#4167 +09:54:52.717-0700 871073431217659924 08fMnYs | motion#1259 +09:54:52.719-0700 871073423089090620 __tDomg | motion#3980 +09:54:52.814-0700 871073416134934630 8O5TO2Y | motion#1544 +09:54:52.817-0700 871073416789233725 FDybXaY | motion#8047 +09:54:52.817-0700 871073430915657788 xi6dvwg | motion#0360 +09:54:52.986-0700 871073418307575839 zG6c8DE | motion#5230 +09:54:53.022-0700 871073423202349107 SRIwiiA | motion#7613 +09:54:53.053-0700 871073432006197268 KCbigow | motion#5409 +09:54:53.209-0700 871073425844744283 D0t5VuY | motion#7086 +09:54:53.331-0700 871073399605166080 L8U6rmE | motion#5289 +09:54:53.388-0700 871073430060019782 B7qM48k | motion#6717 +09:54:53.610-0700 871073407993778246 l_T-7FE | motion#3183 +09:54:53.669-0700 871073424208969798 yfOT74E | motion#6395 +09:54:53.671-0700 871073424393515058 6bGrdFE | motion#1998 +09:54:53.744-0700 871073424901042257 WuBuR6o | motion#6031 +09:54:53.756-0700 871073418068520980 T_gdzHg | motion#8567 +09:54:53.764-0700 871073422933884958 5XNXJHc | motion#0351 +09:54:53.766-0700 871073432085885009 asCTJ24 | motion#9653 +09:54:53.792-0700 871073427732168734 18SHcKg | motion#2561 +09:54:53.795-0700 871073429472825385 070U-sA | motion#2947 +09:54:53.802-0700 871073432018751571 ZvGRzI0 | motion#0407 +09:54:53.851-0700 871073420639600722 MOD5-8s | motion#8554 +09:54:53.905-0700 871073422136983563 mww-1Eo | motion#7747 +09:54:53.914-0700 871073422581579817 X6nbWlE | motion#0495 +09:54:53.941-0700 871073404608970792 BdgCqEQ | motion#8925 +09:54:53.988-0700 871073431087628338 EAi9PDY | motion#5754 +09:54:54.015-0700 871073424569675826 aB25PSk | motion#2457 +09:54:54.054-0700 871073420979359744 JWnw70I | motion#3578 +09:54:54.235-0700 871073423466582026 W0HDLUA | motion#2862 +09:54:54.330-0700 871073426977198080 cC6APMw | motion#2020 +09:54:54.443-0700 871073430957588560 TwDv9ns | motion#5213 +09:54:54.713-0700 871073432551456789 5KtpaFQ | motion#3108 +09:54:54.836-0700 871073421683990538 T4No3Ow | motion#4167 +09:54:54.845-0700 871073419385503754 dcZ08zU | motion#2660 +09:54:54.880-0700 871073415967150080 wCzKIKM | motion#7043 +09:54:54.889-0700 871073416143339551 I5jm10I | motion#1819 +09:54:54.914-0700 871073431473516574 Lszn2Zg | motion#5523 +09:54:54.949-0700 871073429393117225 Ed7NydQ | motion#1626 +09:54:55.108-0700 871073442458382376 _pE3uUE | motion#6874 +09:54:55.222-0700 871073426410967040 3kDqu_8 | motion#1153 +09:54:55.292-0700 871073434715684924 6Ea1F6U | motion#5932 +09:54:55.403-0700 871073445834817586 _JkdeMw | motion#4245 +09:54:55.511-0700 871073439446880329 21Z6QmY | motion#9107 +09:54:55.541-0700 871073432186540072 35Kxixs | motion#1979 +09:54:55.636-0700 871073432031342632 4CkFfhs | motion#9940 +09:54:55.717-0700 871073435860758548 jcinl7c | motion#2961 +09:54:55.741-0700 871073438725459988 IFlsCsk | motion#0301 +09:54:55.744-0700 871073432660500560 mbzmZm4 | motion#0205 +09:54:55.775-0700 871073438947753984 3NfWEwM | motion#3611 +09:54:55.793-0700 871073432744394773 4ZTcl4w | motion#9614 +09:54:55.872-0700 871073434803798067 GufQJ4c | motion#8971 +09:54:55.948-0700 871073431716757535 7hAAYEg | motion#1016 +09:54:56.033-0700 871073429380563007 J0mBZ2U | motion#7905 +09:54:56.044-0700 871073409445011477 bj2a9D8 | motion#2735 +09:54:56.057-0700 871073429049212948 OwnjRl0 | motion#3738 +09:54:56.063-0700 871073426914279444 -sLm278 | motion#4824 +09:54:56.068-0700 871073431448354836 Z-RwCa0 | motion#9479 +09:54:56.143-0700 871073434073985055 lEyeT3w | motion#5629 +09:54:56.156-0700 871073432018763827 EF0XSHg | motion#7869 +09:54:56.209-0700 871073433100877845 BOs8WeU | motion#7647 +09:54:56.224-0700 871073437987246100 Hylotfc | motion#8298 +09:54:56.232-0700 871073441783087124 7_l1Nfw | motion#3247 +09:54:56.540-0700 871073427006582814 7lpdPZo | motion#3976 +09:54:56.548-0700 871073444475863060 Y5FeO8o | motion#9423 +09:54:56.616-0700 871073432480120913 xS3CEBM | motion#2311 +09:54:56.620-0700 871073433964904510 Gk8ZBjI | motion#7082 +09:54:56.629-0700 871073437135818792 rXHldn4 | motion#9270 +09:54:56.684-0700 871073441976037406 bs9RD_g | motion#6653 +09:54:56.686-0700 871073440969412648 pEh5FPY | motion#0931 +09:54:56.708-0700 871073436141772861 oQPbKQg | motion#8465 +09:54:56.974-0700 871073435365822514 3f3u1UM | motion#7370 +09:54:56.982-0700 871073436070469683 4aeAJKs | motion#1069 +09:54:57.089-0700 871073433021206528 -OT2i7U | motion#2671 +09:54:57.155-0700 871073442810720257 ncgF1yE | motion#4263 +09:54:57.165-0700 871073432798916619 YgU9NSQ | motion#1797 +09:54:57.238-0700 871073439669166170 lLAXriM | motion#3663 +09:54:57.256-0700 871073441640488980 bH1gNmo | motion#8064 +09:54:57.289-0700 871073440524800031 g1GNaOA | motion#9681 +09:54:57.347-0700 871073444710731816 1Mo4eWE | motion#0624 +09:54:57.357-0700 871073432580800602 U5TMm8g | motion#0202 +09:54:57.366-0700 871073444551356417 8_leT-k | motion#0665 +09:54:57.400-0700 871073436330496011 LeDgxGw | motion#3479 +09:54:57.412-0700 871073435822985287 G_TkV20 | motion#2031 +09:54:57.435-0700 871073429892243477 rQo8piQ | motion#5131 +09:54:57.443-0700 871073441867006062 Y_R3ylo | motion#7215 +09:54:57.652-0700 871073432538853467 MvZSjTg | motion#5617 +09:54:57.725-0700 871073440768069672 H1WFJwM | motion#9778 +09:54:57.741-0700 871073441254621235 DdfnDH8 | motion#2352 +09:54:57.765-0700 871073419867877536 pAuzj_8 | motion#6441 +09:54:57.809-0700 871073444962390166 fnjfXUg | motion#5769 +09:54:57.812-0700 871073437563617343 mlkJC4A | motion#4056 +09:54:57.838-0700 871073434195607613 bOhiLf0 | motion#2344 +09:54:57.873-0700 871073441992818688 EPw3Vvk | motion#9164 +09:54:57.939-0700 871073435793633350 AZZMij4 | motion#6074 +09:54:57.987-0700 871073425425330228 LiVCsQ8 | motion#4878 +09:54:58.009-0700 871073448389148673 F9Gm6sA | motion#1105 +09:54:58.027-0700 871073438373146714 IsPfEjo | motion#5536 +09:54:58.073-0700 871073448158449675 y1G7ST0 | motion#4722 +09:54:58.162-0700 871073443674734592 NFmq7Rs | motion#9918 +09:54:58.187-0700 871073432983465985 pqmjgZM | motion#6922 +09:54:58.290-0700 871073448674349096 hRonUsw | motion#3311 +09:54:58.298-0700 871073445268557874 MvS01ec | motion#7056 +09:54:58.301-0700 871073446371680276 t96Bf3w | motion#9201 +09:54:58.375-0700 871073445587333140 YzWMGhQ | motion#8507 +09:54:58.400-0700 871073443968339978 aAfgFp4 | motion#9704 +09:54:58.427-0700 871073452407279697 fJhKh58 | motion#7012 +09:54:58.439-0700 871073434166231151 KDyYNUM | motion#9875 +09:54:58.452-0700 871073441774727178 V-EMgEk | motion#4766 +09:54:58.454-0700 871073447772569702 RfvJPQU | motion#4612 +09:54:58.459-0700 871073443595059222 -vCCJmc | motion#5840 +09:54:58.461-0700 871073450226221148 8lyFi3g | motion#5396 +09:54:58.534-0700 871073454248579072 OkBokkQ | motion#1709 +09:54:58.585-0700 871073443620225045 tw_trkE | motion#0061 +09:54:58.625-0700 871073444559724554 RoKzFN8 | motion#8896 +09:54:58.648-0700 871073442936553566 lNjAxEw | motion#2239 +09:54:58.679-0700 871073436808642570 URayksQ | motion#6196 +09:54:58.791-0700 871073452168187995 ZZRuEdM | motion#0202 +09:54:58.824-0700 871073447772586004 k1l8Jmk | motion#3230 +09:54:58.892-0700 871073452575039498 t5qTc_8 | motion#1628 +09:54:58.924-0700 871073455754321980 19DcGAU | motion#4058 +09:54:58.971-0700 871073434753462362 WdF43vY | motion#6302 +09:54:59.012-0700 871073451685855262 y8z4rP4 | motion#7618 +09:54:59.061-0700 871073440650653756 A1VD0kQ | motion#5448 +09:54:59.094-0700 871073448691138582 PzVdXO0 | motion#4717 +09:54:59.213-0700 871073445184692275 -L9NYIw | motion#1287 +09:54:59.277-0700 871073450373021706 6FmPpyo | motion#1819 +09:54:59.306-0700 871073444450672660 onD0EdI | motion#8395 +09:54:59.369-0700 871073451392253953 lVrXGLc | motion#9097 +09:54:59.373-0700 871073450771480579 DKxzZ2I | motion#8454 +09:54:59.408-0700 871073442378682409 KSxxP38 | motion#2638 +09:54:59.434-0700 871073456240885830 054ejr8 | motion#7602 +09:54:59.438-0700 871073448368169010 2iGzENg | motion#3927 +09:54:59.441-0700 871073449056030780 m44Pfwc | motion#7108 +09:54:59.471-0700 871073454886109194 UubO0cs | motion#0491 +09:54:59.493-0700 871073452612800562 _uELvU8 | motion#3498 +09:54:59.574-0700 871073450482081862 iWOkLAo | motion#3688 +09:54:59.626-0700 871073446669459477 _lc5QfQ | motion#4659 +09:54:59.676-0700 871073461450199070 KuEZgVs | motion#9407 +09:54:59.694-0700 871073451887185950 UOZdjqs | motion#4329 +09:54:59.719-0700 871073449358016552 Q2gTCNY | motion#3582 +09:54:59.736-0700 871073447822913566 eva_06U | motion#6457 +09:54:59.868-0700 871073441523073045 oXfdW4k | motion#1072 +09:54:59.946-0700 871073460124786719 K9boPj0 | motion#3614 +09:54:59.951-0700 871073453745242212 R5EX5M8 | motion#4887 +09:54:59.974-0700 871073450234634240 VyP4rPg | motion#6551 +09:54:59.975-0700 871073449018294312 kGAokaQ | motion#3607 +09:55:00.092-0700 871073457293656084 Y2FRnxU | motion#8894 +09:55:00.127-0700 871073456840667206 4cq59B0 | motion#3434 +09:55:00.267-0700 871073450180116530 Dmlz_GI | motion#6656 +09:55:00.281-0700 871073456798724206 afyKb2U | motion#0067 +09:55:00.283-0700 871073444664602685 aAUTyzM | motion#8153 +09:55:00.298-0700 871073459021697035 oaAvW8U | motion#5609 +09:55:00.380-0700 871073454097592330 PP-73g4 | motion#0677 +09:55:00.386-0700 871073458602278934 C5qFWWg | motion#1668 +09:55:00.393-0700 871073451601981470 ZaZ_0AA | motion#9167 +09:55:00.414-0700 871073460816867338 VXgpfHk | motion#2012 +09:55:00.436-0700 871073458556129372 LGHby8Q | motion#7945 +09:55:00.449-0700 871073460217065474 euUDKLI | motion#2293 +09:55:00.491-0700 871073456744198235 VRuL9jU | motion#3783 +09:55:00.513-0700 871073456962306108 5sC2AyQ | motion#8183 +09:55:00.531-0700 871073461093695539 c25dK1g | motion#3199 +09:55:00.558-0700 871073450867978241 qscP_m8 | motion#4336 +09:55:00.567-0700 871073459231420427 jdNFBWk | motion#9981 +09:55:00.669-0700 871073442961694760 DvCQLAQ | motion#5475 +09:55:00.700-0700 871073451581009972 TCzcGT8 | motion#9314 +09:55:00.884-0700 871073454051459152 SmUdsH8 | motion#6055 +09:55:00.959-0700 871073453871099955 hk2UAPk | motion#8309 +09:55:00.985-0700 871073444815601685 Qz_RzE4 | motion#9133 +09:55:01.012-0700 871073462477783121 g27ltaQ | motion#9281 +09:55:01.013-0700 871073456391872592 hpU2y0s | motion#5006 +09:55:01.062-0700 871073469419368478 aamIx-U | motion#4181 +09:55:01.104-0700 871073453942378506 ZF-8L7E | motion#5916 +09:55:01.114-0700 871073456777756762 3CpXIMI | motion#5711 +09:55:01.130-0700 871073437890785331 DjA_Y44 | motion#3530 +09:55:01.166-0700 871073461555060746 OeTa4Mg | motion#4612 +09:55:01.203-0700 871073460711989258 VW8dIw8 | motion#4691 +09:55:01.242-0700 871073457058746428 V8RKrtA | motion#2299 +09:55:01.271-0700 871073457775980565 4K9Rdso | motion#5703 +09:55:01.344-0700 871073464965005362 BV-DETY | motion#3994 +09:55:01.428-0700 871073456656101436 e0fIS6Q | motion#4348 +09:55:01.512-0700 871073454101762109 jQJSCtQ | motion#9062 +09:55:01.520-0700 871073466516926505 yDuDPvc | motion#1008 +09:55:01.523-0700 871073463727693864 -hFF47c | motion#1896 +09:55:01.529-0700 871073444945604618 9TLoXN0 | motion#4018 +09:55:01.564-0700 871073444945604620 maWTpPE | motion#5440 +09:55:01.575-0700 871073467305435198 ZbD2dt4 | motion#8722 +09:55:01.585-0700 871073463400558613 aj-sy1w | motion#9841 +09:55:01.625-0700 871073460854620221 Sabm_nU | motion#3875 +09:55:01.626-0700 871073454252781621 nbq9q6E | motion#6963 +09:55:01.629-0700 871073461894803456 EgQbQKM | motion#5328 +09:55:01.869-0700 871073455980806185 MrFG4Ek | motion#4586 +09:55:01.906-0700 871073471831097374 Aw8iKzA | motion#9903 +09:55:01.907-0700 871073454399561799 1CKC-M8 | motion#3557 +09:55:02.051-0700 871073458694549584 D76-61o | motion#0829 +09:55:02.061-0700 871073421113573427 ss1noHU | motion#9661 +09:55:02.063-0700 871073464117760041 LAW1YdY | motion#6494 +09:55:02.159-0700 871073472346992640 3GADd58 | motion#3470 +09:55:02.232-0700 871073472112099368 HShrKuQ | motion#9687 +09:55:02.285-0700 871073460535824487 fTep5LQ | motion#7402 +09:55:02.303-0700 871073455787872297 zmdh9qU | motion#9927 +09:55:02.319-0700 871073465682239609 _VBwOSg | motion#7060 +09:55:02.334-0700 871073472632217691 Jhz3B0k | motion#4812 +09:55:02.345-0700 871073468408533022 lx-fH98 | motion#4983 +09:55:02.562-0700 871073451803299920 ctbDDhU | motion#7372 +09:55:02.604-0700 871073468492431440 TKp8JvQ | motion#2357 +09:55:02.628-0700 871073472430895136 cRytsZo | motion#8177 +09:55:02.686-0700 871073471508152322 AcErclI | motion#0295 +09:55:02.690-0700 871073460561010708 bMRir-Y | motion#9016 +09:55:02.711-0700 871073461957709824 Gbrh-RM | motion#7547 +09:55:02.734-0700 871073464533004338 1MEYBj8 | motion#6767 +09:55:02.795-0700 871073463677374505 weth0xc | motion#2717 +09:55:02.971-0700 871073469259976745 GA5K6Bc | motion#5796 +09:55:03.112-0700 871073464130371605 _kZDcIk | motion#4257 +09:55:03.129-0700 871073478659420251 T6F7_Vo | motion#3163 +09:55:03.153-0700 871073457935351838 HaK71rY | motion#9958 +09:55:03.179-0700 871073452600217600 pA0Tgo4 | motion#5151 +09:55:03.264-0700 871073457281069106 ijKBskU | motion#4514 +09:55:03.316-0700 871073465682247680 FQdqvKs | motion#7992 +09:55:03.418-0700 871073473982779462 jpPYWYs | motion#4656 +09:55:03.525-0700 871073469943656499 ekMTVYc | motion#5727 +09:55:03.671-0700 871073461487960134 sYcKyVA | motion#3872 +09:55:03.690-0700 871073465208279121 0c9CkBU | motion#9155 +09:55:03.745-0700 871073458006675506 RTTtp0A | motion#2228 +09:55:03.751-0700 871073469876543519 5RQyX-g | motion#8059 +09:55:03.767-0700 871073471797538877 pR3UUFo | motion#3931 +09:55:03.832-0700 871073468718915664 v4wQIjM | motion#7121 +09:55:03.841-0700 871073472112128020 Pr6Q3PY | motion#5079 +09:55:03.842-0700 871073463505387541 TLDteVo | motion#5627 +09:55:03.852-0700 871073468484042755 TftGdko | motion#8797 +09:55:03.919-0700 871073459730518127 aVyX0qY | motion#8358 +09:55:03.931-0700 871073458996523118 d93Tj-0 | motion#8606 +09:55:03.996-0700 871073467632590848 Ha5znyE | motion#3235 +09:55:04.054-0700 871073462838497301 VW808Xw | motion#8922 +09:55:04.133-0700 871073460384858165 bVBGXMc | motion#0563 +09:55:04.137-0700 871073464495267851 -U99f_8 | motion#6908 +09:55:04.178-0700 871073462779797604 MCjfIgE | motion#2789 +09:55:04.247-0700 871073475966693496 POf2vXo | motion#4965 +09:55:04.272-0700 871073428113879151 XHKFSQc | motion#4934 +09:55:04.330-0700 871073461970284555 l7bjAk0 | motion#8170 +09:55:04.365-0700 871073466097479700 prDTDzk | motion#6407 +09:55:04.373-0700 871073472179208192 sfsDJ3o | motion#8887 +09:55:04.406-0700 871073476792950794 zhkq8nY | motion#9481 +09:55:04.554-0700 871073476360941628 mpmXH0c | motion#0992 +09:55:04.578-0700 871073474150539286 WHUQ7tA | motion#8480 +09:55:04.603-0700 871073460414214214 rBKohHg | motion#7745 +09:55:04.604-0700 871073463396368424 1dW1-TU | motion#5179 +09:55:04.608-0700 871073474830016592 88IAPd0 | motion#3749 +09:55:04.647-0700 871073457272672337 e0e9S1o | motion#5003 +09:55:04.745-0700 871073473982783548 tqUwJH0 | motion#2453 +09:55:04.786-0700 871073464033873972 e5hOYk0 | motion#0351 +09:55:04.811-0700 871073474456723456 nqBh35w | motion#0926 +09:55:04.824-0700 871073477967351899 1xUa5Hw | motion#2482 +09:55:04.976-0700 871073467406090250 Oq-FvVw | motion#5725 +09:55:05.157-0700 871073477933821982 3JCeTFU | motion#4152 +09:55:05.336-0700 871073469671022673 HJbpxH4 | motion#3969 +09:55:05.528-0700 871073479938699266 VEzL2HQ | motion#8369 +09:55:05.577-0700 871073482396540968 Y1r38iI | motion#7426 +09:55:05.675-0700 871073484279795743 2UUfWMM | motion#5288 +09:55:05.748-0700 871073481020821525 Dt-Uu8A | motion#5464 +09:55:05.763-0700 871073457532723251 6DR3Lv0 | motion#6197 +09:55:05.861-0700 871073482698526750 75ViNiM | motion#3963 +09:55:05.875-0700 871073475807309875 TrLlO9Q | motion#6444 +09:55:05.918-0700 871073479284383805 gZHtWEs | motion#2613 +09:55:05.922-0700 871073475924738160 d5MrO9A | motion#3743 +09:55:05.932-0700 871073478822998016 X3TTIPo | motion#2759 +09:55:06.002-0700 871073483910688848 XUN8UMo | motion#6123 +09:55:06.024-0700 871073481050165349 r6x_9zo | motion#7692 +09:55:06.028-0700 871073483172511745 8sZ-LTc | motion#1458 +09:55:06.047-0700 871073463731900456 9m7nmW0 | motion#7145 +09:55:06.054-0700 871073477451477012 iL2I-I8 | motion#3408 +09:55:06.145-0700 871073474616123443 GjlQXi8 | motion#1308 +09:55:06.150-0700 871073485361922140 VlORedU | motion#3804 +09:55:06.265-0700 871073482706919445 cHhXFCg | motion#2932 +09:55:06.328-0700 871073486892838962 yKKtuo8 | motion#8839 +09:55:06.359-0700 871073487069011998 NTqbZL8 | motion#5515 +09:55:06.388-0700 871073493528215572 WBhbux8 | motion#1045 +09:55:06.388-0700 871073481213771817 vSEv5jE | motion#8987 +09:55:06.486-0700 871073481872252979 xB7_0tQ | motion#9579 +09:55:06.489-0700 871073475807285298 GIDeHIM | motion#7770 +09:55:06.511-0700 871073482526580806 uWXriVo | motion#8412 +09:55:06.747-0700 871073480135815168 NA0-3hI | motion#9055 +09:55:06.751-0700 871073479577960519 OaRttdo | motion#5076 +09:55:07.107-0700 871073465791307796 X8VimC0 | motion#9251 +09:55:07.148-0700 871073485722640424 YgTXNIE | motion#0417 +09:55:07.153-0700 871073485353549895 ZZXMJc4 | motion#9028 +09:55:07.177-0700 871073496762023967 pTTwg1w | motion#0156 +09:55:07.180-0700 871073490596425740 yc7-kKA | motion#7651 +09:55:07.310-0700 871073484846030908 w0Cv8dc | motion#3520 +09:55:07.328-0700 871073491296854056 leNpoPU | motion#0055 +09:55:07.345-0700 871073480379101215 JSLK5_Y | motion#8316 +09:55:07.476-0700 871073482526568568 C9w9QHM | motion#1916 +09:55:07.528-0700 871073465569017907 4Z45FR0 | motion#7242 +09:55:07.713-0700 871073487345811517 oNIfZ2A | motion#6266 +09:55:07.734-0700 871073485575815278 XjCJMhU | motion#1070 +09:55:07.751-0700 871073483491258368 pX05Zwc | motion#5018 +09:55:07.787-0700 871073482652393513 1cK0otY | motion#4422 +09:55:07.816-0700 871073494862008345 Avhmyak | motion#8269 +09:55:07.839-0700 871073483721957386 mLWOv10 | motion#7846 +09:55:07.853-0700 871073491229741146 OxqfcPs | motion#3321 +09:55:07.892-0700 871073485202526258 76E0o1U | motion#3957 +09:55:07.897-0700 871073425899278386 FE9caX0 | motion#6225 +09:55:07.918-0700 871073489682071582 bIE5Bvg | motion#4047 +09:55:08.008-0700 871073483625484348 ZHmIcxw | motion#8196 +09:55:08.043-0700 871073486163046401 CjpkZdo | motion#5420 +09:55:08.073-0700 871073488272785418 RNijAuI | motion#6565 +09:55:08.087-0700 871073495755419658 v3gqI-g | motion#6228 +09:55:08.109-0700 871073483470303262 DenZUrA | motion#1378 +09:55:08.260-0700 871073483508039680 nYeGac8 | motion#3064 +09:55:08.263-0700 871073497118568469 9wc0OSE | motion#8588 +09:55:08.362-0700 871073483277340712 O5EL0vI | motion#0726 +09:55:08.452-0700 871073497038872596 w4tNpQw | motion#0626 +09:55:08.589-0700 871073491338821674 x3VrU9g | motion#1219 +09:55:08.681-0700 871073486343397457 ejq2uvU | motion#4890 +09:55:08.726-0700 871073493960228874 yhtHORg | motion#3400 +09:55:08.739-0700 871073490898411562 GPlcKqY | motion#8429 +09:55:08.749-0700 871073491464618045 U91ZKrk | motion#8587 +09:55:08.762-0700 871073495650545674 MwpKJaI | motion#9934 +09:55:08.807-0700 871073486771224616 bDxFVqo | motion#8398 +09:55:08.838-0700 871073484414013560 rC2whRw | motion#1881 +09:55:08.865-0700 871073491410092052 dMD2A48 | motion#1706 +09:55:08.916-0700 871073496858517566 GmwrH-Q | motion#4525 +09:55:08.963-0700 871073485349355631 X4d-ZtI | motion#2112 +09:55:08.968-0700 871073490181189693 QqbJiIk | motion#2933 +09:55:08.989-0700 871073487513612298 wNQvsOg | motion#5323 +09:55:09.012-0700 871073492680990720 0f3aHeQ | motion#8316 +09:55:09.030-0700 871073504173371473 _hYu97M | motion#0373 +09:55:09.075-0700 871073496007065700 7cF3SOo | motion#6237 +09:55:09.106-0700 871073492571947008 7cRWrLA | motion#4650 +09:55:09.363-0700 871073480064503849 AorzRtI | motion#5737 +09:55:09.375-0700 871073499022770216 kfvakRM | motion#2024 +09:55:09.524-0700 871073496581697547 rEMDBoo | motion#4482 +09:55:09.545-0700 871073487236776038 N8XLJvM | motion#5819 +09:55:09.553-0700 871073497076609076 Bv2nSVQ | motion#8676 +09:55:09.638-0700 871073485861027881 EZ5IjUU | motion#6777 +09:55:09.661-0700 871073491368177694 -kgkizE | motion#8776 +09:55:09.673-0700 871073490785153034 qi1BMDQ | motion#2868 +09:55:09.714-0700 871073498808877068 Kn7Hyyg | motion#1964 +09:55:09.784-0700 871073506257948742 jeEONyU | motion#3432 +09:55:10.030-0700 871073499828084797 V4Fjw3k | motion#7101 +09:55:10.072-0700 871073496787206205 UoZPi4o | motion#1274 +09:55:10.204-0700 871073496250318868 4U_oBF0 | motion#3414 +09:55:10.251-0700 871073477598273587 PiBzUrg | motion#2921 +09:55:10.465-0700 871073500083925083 ElCpno8 | motion#2561 +09:55:10.488-0700 871073503112220682 xS3Ta18 | motion#1305 +09:55:10.591-0700 871073488474099712 7pzKecY | motion#3343 +09:55:10.634-0700 871073486255325226 60StPT8 | motion#5980 +09:55:10.649-0700 871073482144878633 UB9awFQ | motion#1799 +09:55:10.729-0700 871073502994767872 GcFfygw | motion#0778 +09:55:10.745-0700 871073488646066196 VXTkgSE | motion#3788 +09:55:10.786-0700 871073489073872928 7GAzqPU | motion#9608 +09:55:10.828-0700 871073499119226950 5F6-_NU | motion#7850 +09:55:10.927-0700 871073500117471262 g2j2jOE | motion#3006 +09:55:10.943-0700 871073499559657482 p_9zk0Y | motion#5205 +09:55:10.960-0700 871073492580327455 A9amVKI | motion#9681 +09:55:10.961-0700 871073501342203965 fOOrsxE | motion#9711 +09:55:10.980-0700 871073483893919805 fYs_OW0 | motion#3160 +09:55:10.983-0700 871073485596803082 vi-6JpQ | motion#9215 +09:55:11.006-0700 871073492622278666 wzG4FxY | motion#2484 +09:55:11.027-0700 871073491749863465 BXeNI_Q | motion#7669 +09:55:11.034-0700 871073491363966977 hKn7ZJY | motion#4796 +09:55:11.222-0700 871073499807121430 Y4StICM | motion#8185 +09:55:11.335-0700 871073498880155699 qRCGlHo | motion#1807 +09:55:11.492-0700 871073490353135658 c2Muit0 | motion#4562 +09:55:11.622-0700 871073503510667304 XF2XvmY | motion#8762 +09:55:11.625-0700 871073497898705026 tViOJTY | motion#4372 +09:55:11.636-0700 871073498892763296 bHGNe1E | motion#9236 +09:55:11.650-0700 871073499068923914 5W9eV2c | motion#2681 +09:55:11.653-0700 871073496145461268 YfKmOJY | motion#2493 +09:55:11.710-0700 871073472892244029 CiTAM9Q | motion#7621 +09:55:11.798-0700 871073500645982269 tlFwnSM | motion#0199 +09:55:11.817-0700 871073492022493234 cjvpEzI | motion#2327 +09:55:11.835-0700 871073492974592051 hpCwmtI | motion#5043 +09:55:12.006-0700 871073510196404254 -iPVExw | motion#6298 +09:55:12.050-0700 871073502696984668 _WswpoE | motion#1135 +09:55:12.072-0700 871073502474678302 xS8TdM8 | motion#8471 +09:55:12.080-0700 871073511299514368 LkBWZqY | motion#4581 +09:55:12.119-0700 871073501304459325 BZO-Xz0 | motion#4846 +09:55:12.119-0700 871073515342811186 v9mwGys | motion#2635 +09:55:12.136-0700 871073482983763989 7Bh9_lY | motion#6282 +09:55:12.204-0700 871073503393243148 YXW1lVc | motion#1865 +09:55:12.208-0700 871073509663727676 wlJmRio | motion#5036 +09:55:12.268-0700 871073515518971915 C4AxZ4c | motion#0307 +09:55:12.325-0700 871073511618252820 9EyZncg | motion#9322 +09:55:12.372-0700 871073505620418600 JPrj27s | motion#7473 +09:55:12.382-0700 871073504693461012 tRwHGyo | motion#8075 +09:55:12.473-0700 871073499790319647 P2xDC_Q | motion#4985 +09:55:12.543-0700 871073517192491029 zdETr5I | motion#0267 +09:55:12.602-0700 871073503661666324 RRczCho | motion#9232 +09:55:12.663-0700 871073499140202496 eoNPCZs | motion#7632 +09:55:12.695-0700 871073475803086918 cxFYGs0 | motion#4436 +09:55:12.774-0700 871073510238322709 0ECMBj4 | motion#6994 +09:55:12.786-0700 871073516060020756 gLciTIc | motion#5568 +09:55:12.795-0700 871073486666342410 MQo1Bg8 | motion#4276 +09:55:12.800-0700 871073515296653352 kyAXzBM | motion#0060 +09:55:12.861-0700 871073515334426704 vi3aGP0 | motion#4645 +09:55:12.923-0700 871073506933219368 yP1Yziw | motion#3186 +09:55:13.012-0700 871073504773144606 WRD0iBc | motion#5243 +09:55:13.013-0700 871073496602660864 m9SyWN8 | motion#4561 +09:55:13.018-0700 871073505096130623 BSwDF58 | motion#9003 +09:55:13.086-0700 871073516794044496 Rd_ppgE | motion#2854 +09:55:13.140-0700 871073499450597406 qXnejpQ | motion#6127 +09:55:13.144-0700 871073505251295262 ZiQaOAc | motion#2254 +09:55:13.148-0700 871073509084905532 UzlAPpg | motion#7670 +09:55:13.284-0700 871073517452541974 SqlZ-Uw | motion#3036 +09:55:13.312-0700 871073505033199696 2N-21zY | motion#0788 +09:55:13.390-0700 871073515934208071 zepMIQY | motion#5340 +09:55:13.448-0700 871073516794044436 rd6bHbg | motion#6236 +09:55:13.509-0700 871073515930026005 Dm17LHU | motion#4363 +09:55:13.541-0700 871073511714721842 rySltL4 | motion#5203 +09:55:13.635-0700 871073510280290315 E2SdbBE | motion#0974 +09:55:13.776-0700 871073520640217099 H_YArAc | motion#0211 +09:55:13.800-0700 871073507885334600 O1kycmY | motion#9739 +09:55:13.888-0700 871073515279908954 II69_Jk | motion#4282 +09:55:13.948-0700 871073502415966208 BVf7OSc | motion#0920 +09:55:13.966-0700 871073502000742460 i2Y-mgM | motion#7946 +09:55:13.968-0700 871073510200602694 qG603cE | motion#5547 +09:55:13.999-0700 871073499307970560 4zjp8b8 | motion#5075 +09:55:14.005-0700 871073488990003279 TW3hif8 | motion#1758 +09:55:14.111-0700 871073505276481556 Csss7uY | motion#6754 +09:55:14.154-0700 871073510359973958 YHylzu4 | motion#3151 +09:55:14.278-0700 871073516525609031 y8rPyFU | motion#5415 +09:55:14.306-0700 871073503204507670 1BQMRd4 | motion#6291 +09:55:14.361-0700 871073516076818502 nFJbRTw | motion#3169 +09:55:14.373-0700 871073510867476532 CBAW1Ic | motion#1705 +09:55:14.380-0700 871073516215205959 WBi8J00 | motion#2933 +09:55:14.432-0700 871073511765078016 CQVNQKo | motion#4381 +09:55:14.513-0700 871073522234032178 rS3Os1w | motion#2490 +09:55:14.528-0700 871073527237865532 Xb5nDxU | motion#3920 +09:55:14.540-0700 871073521093201941 LrQ2L6A | motion#3763 +09:55:14.560-0700 871073500255912006 UL502Nc | motion#3131 +09:55:14.595-0700 871073492953608213 HY1gzPA | motion#4259 +09:55:14.628-0700 871073517616111686 imjuVUc | motion#2869 +09:55:14.634-0700 871073528248664134 BO5H99A | motion#3229 +09:55:14.785-0700 871073517712572476 g6BSl9Y | motion#8945 +09:55:14.797-0700 871073517175734283 RO_xTXA | motion#7715 +09:55:14.808-0700 871073503124791356 LaHNk2Q | motion#2529 +09:55:14.933-0700 871073518048133140 _jBcWQw | motion#5277 +09:55:14.946-0700 871073504878014514 R5dDqj8 | motion#3447 +09:55:14.981-0700 871073511521808404 pjxnNKM | motion#9384 +09:55:14.994-0700 871073521139318814 Ik5zN-s | motion#8811 +09:55:15.081-0700 871073518421422101 fdu4DcQ | motion#5182 +09:55:15.109-0700 871073516382990386 Bb9YdOk | motion#0067 +09:55:15.110-0700 871073518136209419 YvV785s | motion#9665 +09:55:15.129-0700 871073521361645658 WhlylGQ | motion#6316 +09:55:15.190-0700 871073518014578698 kmv18BQ | motion#7287 +09:55:15.231-0700 871073499433820200 hvPwTXg | motion#0731 +09:55:15.308-0700 871073522703818782 k9XhCvY | motion#1704 +09:55:15.315-0700 871073504907374632 qDdnYSc | motion#2831 +09:55:15.320-0700 871073502713774120 -6HUCXE | motion#7078 +09:55:15.333-0700 871073511551164446 LdLQw34 | motion#6007 +09:55:15.341-0700 871073510045417483 C1KoDRo | motion#6229 +09:55:15.434-0700 871073521797828619 s2QR7as | motion#5763 +09:55:15.449-0700 871073509344956426 KIQ03LA | motion#2644 +09:55:15.458-0700 871073497844162601 b-XWdj4 | motion#3809 +09:55:15.584-0700 871073522410221660 Mkwfb4k | motion#7010 +09:55:15.670-0700 871073516735303690 12qdjcc | motion#2226 +09:55:15.703-0700 871073524679315486 wDhvKac | motion#0456 +09:55:15.714-0700 871073511106543706 AU-4nAc | motion#0434 +09:55:15.756-0700 871073532556234782 L0R2Lck | motion#4482 +09:55:15.774-0700 871073524977107004 LqFVdQQ | motion#4079 +09:55:15.797-0700 871073512171929641 0CAj-vQ | motion#0410 +09:55:15.804-0700 871073524595441756 UDKqHMM | motion#1282 +09:55:15.868-0700 871073511693770782 c3VhyA0 | motion#9077 +09:55:15.882-0700 871073516403949579 byyxxF8 | motion#2518 +09:55:15.971-0700 871073510188011520 eLREPdA | motion#6084 +09:55:16.007-0700 871073520778625054 5ugz-54 | motion#4811 +09:55:16.046-0700 871073516533985380 e3LINlU | motion#7424 +09:55:16.129-0700 871073517574185080 RBK7Q0A | motion#0053 +09:55:16.135-0700 871073526759718973 7BsL-y8 | motion#7207 +09:55:16.206-0700 871073515489624114 8Qw3P1A | motion#7861 +09:55:16.210-0700 871073511844765698 9JdAfxI | motion#3500 +09:55:16.232-0700 871073514449424474 UuNDfDU | motion#6092 +09:55:16.253-0700 871073520673751062 RqnH8bI | motion#6381 +09:55:16.280-0700 871073523173572619 s9YcaUQ | motion#4611 +09:55:16.298-0700 871073517922308218 SUoIQUI | motion#9026 +09:55:16.300-0700 871073513308577882 I9XaTto | motion#7186 +09:55:16.341-0700 871073526818410506 QSLNtVI | motion#9376 +09:55:16.367-0700 871073511651819530 zXx8YgM | motion#9327 +09:55:16.441-0700 871073506203418624 btTMrjs | motion#8832 +09:55:16.489-0700 871073526264791040 zlXAkTY | motion#0264 +09:55:16.557-0700 871073525564313700 PFeiIVM | motion#1180 +09:55:16.744-0700 871073510422876190 sqnl0Pc | motion#4113 +09:55:16.745-0700 871073527128793138 82t1NZ8 | motion#2605 +09:55:16.842-0700 871073525044228227 XoG9aWg | motion#8185 +09:55:16.945-0700 871073538101100614 QG9Dh5I | motion#9940 +09:55:16.968-0700 871073504672481280 Z-7GxzI | motion#0684 +09:55:16.977-0700 871073512964640799 WJek40E | motion#4477 +09:55:17.034-0700 871073529326612480 zNyAZ8E | motion#9628 +09:55:17.038-0700 871073527212703775 KY_Jh9Q | motion#7191 +09:55:17.043-0700 871073526180892742 NExl5UQ | motion#6161 +09:55:17.050-0700 871073526642274394 -NS4jR4 | motion#1738 +09:55:17.108-0700 871073526231236629 QkNz4-I | motion#9201 +09:55:17.121-0700 871073527359483904 0SvCwyc | motion#5967 +09:55:17.123-0700 871073527539859527 p4Otsac | motion#3807 +09:55:17.218-0700 871073527716020256 MAnRuA0 | motion#2626 +09:55:17.362-0700 871073528236097536 hhrKnZ8 | motion#8566 +09:55:17.401-0700 871073516571725894 JMwHFe0 | motion#5763 +09:55:17.449-0700 871073528143822959 FRWK0Es | motion#8703 +09:55:17.570-0700 871073528932348025 F9Vvj0U | motion#8975 +09:55:17.617-0700 871073526751322183 -zbKyB0 | motion#8882 +09:55:17.677-0700 871073529087533096 mY0RCb0 | motion#3711 +09:55:17.694-0700 871073528454189066 l4UhAws | motion#9140 +09:55:17.733-0700 871073528290607165 yqBJJFI | motion#2782 +09:55:17.813-0700 871073519524524142 PWeAi8Q | motion#1440 +09:55:17.825-0700 871073516018090035 _pa4xdk | motion#5450 +09:55:17.868-0700 871073528647131156 j1vmvko | motion#9064 +09:55:18.039-0700 871073520740876299 h5NbqFo | motion#4652 +09:55:18.059-0700 871073533151821854 htZAkFc | motion#6696 +09:55:18.140-0700 871073506178261012 RfZ4U4I | motion#9168 +09:55:18.201-0700 871073527497908254 jtoniWw | motion#3946 +09:55:18.227-0700 871073527892172800 4PmcQiM | motion#6924 +09:55:18.279-0700 871073533994885141 efDx53Q | motion#5227 +09:55:18.296-0700 871073525081985064 T3tfzhM | motion#7744 +09:55:18.438-0700 871073529993527349 vx5mwDo | motion#1935 +09:55:18.659-0700 871073529116885052 SvdafIY | motion#9208 +09:55:18.808-0700 871073529418907658 xuSo6Vw | motion#5563 +09:55:18.880-0700 871073523655909426 31Zuz-g | motion#3206 +09:55:18.885-0700 871073538268885022 HQtUFHY | motion#2162 +09:55:18.960-0700 871073528122835025 8zrT0Yc | motion#0120 +09:55:18.980-0700 871073527271415878 Esm8ub4 | motion#7387 +09:55:18.981-0700 871073530798825523 Y3wC_8c | motion#2938 +09:55:19.025-0700 871073530568114327 sceXQJw | motion#9412 +09:55:19.041-0700 871073531591540797 PtCschs | motion#3484 +09:55:19.056-0700 871073537736204320 vnT5ej0 | motion#3973 +09:55:19.081-0700 871073534150053928 2IQA0yI | motion#3763 +09:55:19.091-0700 871073535609667684 6znwvB0 | motion#9946 +09:55:19.095-0700 871073531557990491 e-soTfU | motion#5081 +09:55:19.150-0700 871073531826421840 pMC1IBw | motion#5142 +09:55:19.215-0700 871073535148322857 muwFQFg | motion#1736 +09:55:19.269-0700 871073538105282570 8S9RYpk | motion#7181 +09:55:19.274-0700 871073530928857108 ZH0iOHE | motion#7010 +09:55:19.352-0700 871073531788660787 MQEYtko | motion#5912 +09:55:19.365-0700 871073531121770516 _sQ7Des | motion#1807 +09:55:19.370-0700 871073531943845908 DnU10ls | motion#2473 +09:55:19.377-0700 871073531474116778 1NRMrzQ | motion#8053 +09:55:19.408-0700 871073546045104189 ibw369c | motion#1594 +09:55:19.555-0700 871073543633403964 3PsuDMI | motion#8325 +09:55:19.560-0700 871073529397923850 A7iYJhc | motion#6141 +09:55:19.567-0700 871073527300776026 yvhIlz4 | motion#4184 +09:55:19.584-0700 871073539694948422 hKGXp_c | motion#2905 +09:55:19.594-0700 871073534514962554 07bLjtY | motion#2117 +09:55:19.604-0700 871073534183624745 _V1TDFA | motion#0672 +09:55:19.680-0700 871073537488748554 LVE4Ek0 | motion#2076 +09:55:19.688-0700 871073530060619887 NyRyAJY | motion#0180 +09:55:19.724-0700 871073534787588216 AowB1LA | motion#5778 +09:55:19.736-0700 871073536612126760 HuLGvRo | motion#9031 +09:55:19.748-0700 871073535630659604 Ww1vd3Q | motion#2087 +09:55:19.752-0700 871073534858911794 SkKxmC4 | motion#9386 +09:55:19.765-0700 871073537920753755 K7UvoD0 | motion#6724 +09:55:19.778-0700 871073506861940796 _5vqAZ8 | motion#4164 +09:55:19.789-0700 871073542760964106 FSC21ag | motion#0067 +09:55:19.822-0700 871073504022392832 IyzHlBE | motion#0466 +09:55:19.849-0700 871073534728876142 R36py-k | motion#9389 +09:55:19.854-0700 871073548645568512 NvNVkXY | motion#5639 +09:55:19.944-0700 871073536461119518 sFFiLqo | motion#2646 +09:55:19.966-0700 871073528055746611 FmK81tU | motion#4207 +09:55:19.976-0700 871073534963748916 wmCYuZQ | motion#4207 +09:55:19.988-0700 871073531012718612 ISjOf8U | motion#5867 +09:55:20.012-0700 871073531163705364 QINkwDI | motion#6406 +09:55:20.020-0700 871073538772201512 W7nP5Nc | motion#9569 +09:55:20.063-0700 871073531406979083 p07y48U | motion#4788 +09:55:20.065-0700 871073536029098084 d76nIcE | motion#7621 +09:55:20.078-0700 871073521034481714 AeERZQM | motion#1014 +09:55:20.240-0700 871073535412563990 7yQWdBM | motion#0194 +09:55:20.264-0700 871073540273766482 5l9r5rY | motion#0204 +09:55:20.308-0700 871073546221269032 pZdJwHs | motion#6734 +09:55:20.490-0700 871073546271612982 5c3FeVc | motion#9505 +09:55:20.507-0700 871073524771614731 p7fMTnM | motion#4028 +09:55:20.550-0700 871073540588339241 pSbIjZc | motion#9283 +09:55:20.619-0700 871073542899396690 YAUZgOo | motion#5205 +09:55:20.662-0700 871073542844842004 vq9zNKI | motion#5674 +09:55:20.711-0700 871073488583155762 VeuNqsQ | motion#8673 +09:55:20.872-0700 871073527812456448 Gtf0ODU | motion#3318 +09:55:20.884-0700 871073529246928976 oapGjzk | motion#3859 +09:55:20.923-0700 871073539128717402 gvINf0A | motion#8777 +09:55:20.943-0700 871073537153187910 x_Ahhd0 | motion#3667 +09:55:20.963-0700 871073537287413831 M0FwYEE | motion#5291 +09:55:20.988-0700 871073530278740069 opYYNcU | motion#8328 +09:55:21.069-0700 871073536331120682 fEhaLaw | motion#2682 +09:55:21.115-0700 871073547617968178 Eo1XcGo | motion#5876 +09:55:21.214-0700 871073537148993606 ss38THc | motion#2792 +09:55:21.273-0700 871073536050098206 -O5F8UU | motion#3531 +09:55:21.417-0700 871073548679135242 ASHGzm4 | motion#3213 +09:55:21.539-0700 871073536385617950 VY5bpaY | motion#2354 +09:55:21.601-0700 871073540038885418 GbViUxg | motion#4511 +09:55:21.637-0700 871073536201093241 uNKg454 | motion#6451 +09:55:21.699-0700 871073540118552586 _JcADR4 | motion#5922 +09:55:21.799-0700 871073546128982116 1uGt40w | motion#5191 +09:55:21.810-0700 871073546678460466 M71i7Tk | motion#2362 +09:55:22.083-0700 871073541175513188 9c4dXJk | motion#6393 +09:55:22.090-0700 871073546686832711 vvxvyFM | motion#9064 +09:55:22.249-0700 871073540789637150 5-pK6d4 | motion#2069 +09:55:22.277-0700 871073547190140998 p-V66s8 | motion#0152 +09:55:22.303-0700 871073504685092955 0mK3hNE | motion#0398 +09:55:22.386-0700 871073545608917072 dwlZ-TQ | motion#0068 +09:55:22.475-0700 871073533994889228 ybsfrNA | motion#6505 +09:55:22.496-0700 871073546854608928 U_lDMQc | motion#1220 +09:55:22.502-0700 871073545722142781 Ps9FGKo | motion#7508 +09:55:22.517-0700 871073541863387177 pgXw4XU | motion#1610 +09:55:22.587-0700 871073542664519761 1yPLt8s | motion#5775 +09:55:22.770-0700 871073541402009680 emaP_VY | motion#5116 +09:55:22.796-0700 871073546011557930 D_7LttU | motion#9491 +09:55:22.878-0700 871073532560429066 oodzBfo | motion#8044 +09:55:23.233-0700 871073555222241391 NCvGjtQ | motion#1442 +09:55:23.341-0700 871073562897834065 _blHyXc | motion#7004 +09:55:23.345-0700 871073551900344370 qBJ3bJQ | motion#8573 +09:55:23.366-0700 871073552730849350 1JIHEYg | motion#2056 +09:55:23.369-0700 871073544824578078 ZkoD59c | motion#7879 +09:55:23.399-0700 871073554907693117 Ol6bB3A | motion#4107 +09:55:23.413-0700 871073548578463795 MgEDN10 | motion#1349 +09:55:23.415-0700 871073526252199986 7Ta13Ug | motion#5689 +09:55:23.437-0700 871073552391077928 3aWmiS0 | motion#5003 +09:55:23.557-0700 871073547257262131 LKfeRcs | motion#8245 +09:55:23.572-0700 871073551426412626 Kr5Y2Mc | motion#1508 +09:55:23.672-0700 871073546443563038 A6zK6YA | motion#4681 +09:55:23.683-0700 871073555960451082 MBy01lM | motion#2372 +09:55:23.697-0700 871073546015764570 2HIWq4s | motion#5563 +09:55:23.705-0700 871073548372934666 p9ySQp0 | motion#2457 +09:55:23.762-0700 871073555012526193 cGGXCTI | motion#3763 +09:55:23.926-0700 871073546519056414 q3aYyfY | motion#9247 +09:55:23.943-0700 871073547718656081 PqV6-Ig | motion#9184 +09:55:23.965-0700 871073544103145482 o5gx0eo | motion#2522 +09:55:23.985-0700 871073567146668082 Q6Ggh9Y | motion#2103 +09:55:24.071-0700 871073549027270677 LrBIF6Y | motion#3072 +09:55:24.088-0700 871073527544045608 uMuFFOo | motion#6097 +09:55:24.113-0700 871073549836755004 WWpiS-Q | motion#1137 +09:55:24.186-0700 871073546095452300 Mu3M1CU | motion#3594 +09:55:24.251-0700 871073554836361247 aYXhvQI | motion#7788 +09:55:24.375-0700 871073552206561291 -dsOiYM | motion#6908 +09:55:24.382-0700 871073560234450975 LUdonSk | motion#3806 +09:55:24.522-0700 871073567507370074 yZG3P9k | motion#2547 +09:55:24.572-0700 871073536578564137 3El_zCk | motion#7426 +09:55:24.574-0700 871073558774841536 gbU-d7E | motion#1428 +09:55:24.578-0700 871073556811890739 wBFgphg | motion#8774 +09:55:24.590-0700 871073537815879710 8zH8NCA | motion#0118 +09:55:24.592-0700 871073558674153552 McjsdvU | motion#3124 +09:55:24.618-0700 871073556602159204 9A-kDbk | motion#8573 +09:55:24.642-0700 871073555935264860 BSXULgU | motion#8010 +09:55:24.645-0700 871073569189273681 xfZfvRo | motion#7861 +09:55:24.694-0700 871073560460939304 GswV8_4 | motion#2750 +09:55:24.733-0700 871073547001430029 8EGGHvk | motion#2907 +09:55:24.755-0700 871073551589982239 t6x7S_M | motion#8346 +09:55:24.785-0700 871073552751812729 _sqETm0 | motion#7432 +09:55:24.814-0700 871073551418019871 6Soi8gU | motion#4985 +09:55:24.820-0700 871073556346339368 UxWi6JI | motion#5441 +09:55:24.829-0700 871073554630864926 6_45zws | motion#1195 +09:55:24.912-0700 871073558707720192 EmoAwKY | motion#6625 +09:55:24.965-0700 871073534477238322 Q2i9ZTA | motion#4214 +09:55:25.000-0700 871073564407779328 RM8mL90 | motion#7511 +09:55:25.007-0700 871073562943967312 mvlwTb8 | motion#0860 +09:55:25.062-0700 871073570057494578 sT_HdlI | motion#3425 +09:55:25.104-0700 871073569558372483 WoRDvyA | motion#8415 +09:55:25.121-0700 871073563677958174 H53yFp4 | motion#1853 +09:55:25.130-0700 871073556732215406 flIB4CE | motion#5276 +09:55:25.189-0700 871073549736083496 RdTKlck | motion#0129 +09:55:25.196-0700 871073558984540180 ndNS9QA | motion#7666 +09:55:25.230-0700 871073559143919646 74fOG8Q | motion#0102 +09:55:25.267-0700 871073553179607091 WuLUZ78 | motion#7790 +09:55:25.268-0700 871073564651057162 CoezmsI | motion#5299 +09:55:25.274-0700 871073551229267988 pughZM4 | motion#6062 +09:55:25.286-0700 871073568950190080 glJWpyI | motion#7086 +09:55:25.328-0700 871073549199224874 uSHjJ-U | motion#5033 +09:55:25.347-0700 871073553099935844 6kZeM3Q | motion#0854 +09:55:25.350-0700 871073567557709874 BSP-m7s | motion#9956 +09:55:25.359-0700 871073548486193163 ZXqdt-Q | motion#0474 +09:55:25.481-0700 871073557067759647 sTWvxMY | motion#5606 +09:55:25.546-0700 871073552114266112 XBcKtn8 | motion#8477 +09:55:25.591-0700 871073555851386970 oq-PfbQ | motion#4530 +09:55:25.607-0700 871073557575262319 e3UvhlA | motion#0042 +09:55:25.663-0700 871073556979654667 OCmzjy4 | motion#4456 +09:55:25.685-0700 871073551304757248 GLFaQUs | motion#2598 +09:55:25.738-0700 871073563317239809 wOUbAZo | motion#8595 +09:55:25.763-0700 871073558137286676 JK2CvnE | motion#1762 +09:55:25.868-0700 871073551556411402 Y3W57Wc | motion#5147 +09:55:25.880-0700 871073563304673320 PcxJybA | motion#0696 +09:55:25.921-0700 871073568396570664 umj3Ib4 | motion#7847 +09:55:25.939-0700 871073563610869780 jsk91DE | motion#1653 +09:55:25.956-0700 871073552764391445 yKO1YnM | motion#8098 +09:55:26.023-0700 871073555759108186 lkDbxv0 | motion#9882 +09:55:26.059-0700 871073564177092689 fGRFWps | motion#1848 +09:55:26.090-0700 871073561446596709 eTttAK0 | motion#4944 +09:55:26.105-0700 871073559722745938 0kDfbkw | motion#1119 +09:55:26.131-0700 871073554857357383 YWu7ioM | motion#7915 +09:55:26.140-0700 871073565024329798 aSiAlFo | motion#7115 +09:55:26.167-0700 871073566014181407 Q58Z0yA | motion#1041 +09:55:26.207-0700 871073560544821290 1mBSmck | motion#3639 +09:55:26.337-0700 871073551602573324 n9bK0p4 | motion#1669 +09:55:26.356-0700 871073541418799114 UkT6iUU | motion#2573 +09:55:26.575-0700 871073570078482452 gMpE-K8 | motion#9814 +09:55:26.582-0700 871073562910412830 Osl2IXA | motion#4434 +09:55:26.635-0700 871073556677660674 hNuxpTQ | motion#4807 +09:55:26.875-0700 871073546133200896 FJDkZeQ | motion#5856 +09:55:26.923-0700 871073550281367582 SqFKQW4 | motion#0790 +09:55:26.959-0700 871073560590975057 hk89e70 | motion#6384 +09:55:27.076-0700 871073566525902849 4dGrrE0 | motion#3290 +09:55:27.163-0700 871073564260970506 yAoiK3E | motion#3103 +09:55:27.310-0700 871073559622090803 KCaN-w0 | motion#8602 +09:55:27.332-0700 871073553880084530 UTlv738 | motion#8480 +09:55:27.430-0700 871073557252280320 QZlyj7w | motion#6392 +09:55:27.482-0700 871073560934895637 vzyDxpA | motion#2336 +09:55:27.525-0700 871073567155052584 ZENF2Dk | motion#2747 +09:55:27.685-0700 871073576562864199 wOlNTjg | motion#0477 +09:55:27.690-0700 871073571999453184 L0rQkBE | motion#1960 +09:55:27.712-0700 871073566525890631 kuJlqFs | motion#7454 +09:55:27.716-0700 871073569151528990 7cPCyNU | motion#9049 +09:55:27.890-0700 871073569537421384 GAwIUrs | motion#3106 +09:55:27.903-0700 871073572364374027 fq-fLUU | motion#6364 +09:55:27.928-0700 871073568602083338 7pKqoCQ | motion#2968 +09:55:28.095-0700 871073568635641927 k9iSxmc | motion#7241 +09:55:28.118-0700 871073559131349053 9IAF-Z8 | motion#4674 +09:55:28.164-0700 871073572242739220 -LdBsTE | motion#9170 +09:55:28.318-0700 871073559525593118 0vhDr-Y | motion#9108 +09:55:28.427-0700 871073559190069298 lax3BsQ | motion#5225 +09:55:28.456-0700 871073572607639662 0FtC6e8 | motion#1774 +09:55:28.616-0700 871073561148801034 DQPkqeE | motion#9844 +09:55:28.673-0700 871073580643921951 kzI_GF4 | motion#7849 +09:55:28.678-0700 871073568753082439 V4vuz7A | motion#7839 +09:55:28.713-0700 871073574306336770 eEmsh7k | motion#9220 +09:55:28.735-0700 871073573442301972 TgTewFg | motion#9806 +09:55:28.749-0700 871073577649209354 sCoNpO0 | motion#6445 +09:55:28.758-0700 871073582057406506 HRgVQJs | motion#8901 +09:55:28.763-0700 871073573702336532 fOiS66k | motion#2302 +09:55:28.771-0700 871073573140316180 ZldOikc | motion#9983 +09:55:28.799-0700 871073577636610098 OzM316Y | motion#9144 +09:55:28.810-0700 871073569331904533 XjstayQ | motion#1396 +09:55:28.814-0700 871073558422499338 lPBlrOY | motion#8312 +09:55:28.828-0700 871073569730363433 xBmETsE | motion#0821 +09:55:28.855-0700 871073558330232912 ZEMJ40w | motion#7610 +09:55:28.868-0700 871073583600918538 AwrtbKU | motion#8771 +09:55:28.891-0700 871073570741178438 TA7Fnto | motion#6786 +09:55:28.908-0700 871073577988935691 3liZpK0 | motion#0803 +09:55:28.915-0700 871073580983672852 dB265Q0 | motion#2999 +09:55:28.916-0700 871073574029496422 PHdx6_Q | motion#7614 +09:55:28.934-0700 871073554542772266 nLzJGMg | motion#2665 +09:55:28.954-0700 871073577657577582 U1b-Uw8 | motion#9899 +09:55:29.074-0700 871073562688106566 Xb28lHQ | motion#0932 +09:55:29.087-0700 871073574440554577 LAfutn4 | motion#3876 +09:55:29.149-0700 871073581868671046 JWS58tE | motion#0045 +09:55:29.156-0700 871073581927378974 V9CRBc0 | motion#9771 +09:55:29.196-0700 871073582833356880 aWrqlL8 | motion#6164 +09:55:29.214-0700 871073560486101073 IAossjk | motion#2472 +09:55:29.219-0700 871073581071753236 07FALKM | motion#3847 +09:55:29.220-0700 871073575061291080 D1tYQgc | motion#1379 +09:55:29.230-0700 871073568467853332 4mKRBjs | motion#1845 +09:55:29.247-0700 871073574981632031 6NZNKXY | motion#0993 +09:55:29.270-0700 871073580698447883 dj49ZtY | motion#2017 +09:55:29.279-0700 871073569046687774 2_UXHmQ | motion#2360 +09:55:29.328-0700 871073569650655283 X3hqYfU | motion#1035 +09:55:29.346-0700 871073574977413170 uaGInhY | motion#7817 +09:55:29.361-0700 871073573853351936 iqUgLbE | motion#1065 +09:55:29.377-0700 871073569130549290 O_ubxy8 | motion#0139 +09:55:29.407-0700 871073563417907260 MkspCIY | motion#6124 +09:55:29.425-0700 871073569247998023 djap56A | motion#3941 +09:55:29.433-0700 871073571928158260 a8rU8Sk | motion#8317 +09:55:29.505-0700 871073576084701214 kIRGx0I | motion#6426 +09:55:29.554-0700 871073571206758481 wmlrq7M | motion#2314 +09:55:29.558-0700 871073564109987873 wPLeW6U | motion#3229 +09:55:29.566-0700 871073570330140674 8oV-8i8 | motion#2412 +09:55:29.571-0700 871073569625501776 2dFQjJg | motion#9701 +09:55:29.641-0700 871073568216199218 K52Ji20 | motion#1173 +09:55:29.663-0700 871073572465020979 wWkyU2E | motion#5663 +09:55:29.667-0700 871073569721946133 8B4rVqE | motion#6986 +09:55:29.728-0700 871073558774820905 CrgGnLs | motion#8106 +09:55:29.754-0700 871073575677861969 ZHLK2Bs | motion#0771 +09:55:29.790-0700 871073569306710117 J1mJNy0 | motion#2428 +09:55:29.832-0700 871073574985809970 7QUTXe8 | motion#3877 +09:55:29.880-0700 871073538193383474 dzRPfgM | motion#6579 +09:55:29.884-0700 871073582128705576 ZjLgmEs | motion#5370 +09:55:29.909-0700 871073576877457479 qMrxQQI | motion#8774 +09:55:29.979-0700 871073582392959016 rg7gdT4 | motion#1344 +09:55:29.997-0700 871073582447493181 qyUsFuw | motion#5562 +09:55:30.073-0700 871073578228011058 aTvOEyw | motion#7153 +09:55:30.146-0700 871073572787978331 pplQJCE | motion#2419 +09:55:30.152-0700 871073586696314940 yhwipSo | motion#3393 +09:55:30.164-0700 871073569940045834 Wuwc8zE | motion#3640 +09:55:30.165-0700 871073571374514197 fx8W624 | motion#5769 +09:55:30.181-0700 871073584506896404 M4IPr1s | motion#6696 +09:55:30.307-0700 871073574419591168 OHGOs5g | motion#3746 +09:55:30.360-0700 871073551728381982 j5gvnUs | motion#6847 +09:55:30.408-0700 871073577842118696 hpAYRlg | motion#1753 +09:55:30.417-0700 871073555033489480 7nP2yxg | motion#0286 +09:55:30.449-0700 871073587937812530 V4sJlP4 | motion#2943 +09:55:30.483-0700 871073583747715162 Me7i02Y | motion#6117 +09:55:30.607-0700 871073556543442974 OAMLcVM | motion#4252 +09:55:30.616-0700 871073586436263946 z3sWYwU | motion#4958 +09:55:30.631-0700 871073574826414080 riHJU58 | motion#1094 +09:55:30.883-0700 871073562562277428 YVh7xrs | motion#7688 +09:55:30.981-0700 871073554492452885 9HoLgz0 | motion#5154 +09:55:30.988-0700 871073583332483092 icjLubE | motion#1528 +09:55:31.006-0700 871073557747228702 8XlIL_U | motion#9598 +09:55:31.023-0700 871073584053882890 vInMtts | motion#5691 +09:55:31.082-0700 871073585744191538 TupGdfg | motion#6149 +09:55:31.097-0700 871073571231899708 15oWbS8 | motion#6203 +09:55:31.106-0700 871073589300953089 Fhb1ojk | motion#3211 +09:55:31.129-0700 871073584389455923 lGuVeWo | motion#9858 +09:55:31.130-0700 871073536297553941 RWHnTaw | motion#4856 +09:55:31.147-0700 871073584062296094 WWI0d04 | motion#1636 +09:55:31.250-0700 871073576789356554 J8h97o4 | motion#5671 +09:55:31.263-0700 871073576080535583 UQO4Qmk | motion#8413 +09:55:31.353-0700 871073583475089409 P3MCBSg | motion#9842 +09:55:31.446-0700 871073587736477796 cTfEHhM | motion#5900 +09:55:31.748-0700 871073591893049395 LXiVAMU | motion#7651 +09:55:31.958-0700 871073584615915540 oGeO6qU | motion#0188 +09:55:31.967-0700 871073599530872843 luISy8c | motion#6337 +09:55:31.993-0700 871073583886114897 iKbibng | motion#7307 +09:55:31.998-0700 871073592740294677 voE3KLA | motion#2316 +09:55:32.048-0700 871073592253767710 TpLxxJg | motion#6259 +09:55:32.067-0700 871073584813068289 YYUd-yM | motion#1827 +09:55:32.193-0700 871073581847683113 LkwMy9o | motion#2476 +09:55:32.199-0700 871073591507161099 gK2hCQg | motion#1123 +09:55:32.222-0700 871073592140513380 mL92YOA | motion#7461 +09:55:32.350-0700 871073589405827102 QwDBF5s | motion#4507 +09:55:32.354-0700 871073586067144764 txXlrIY | motion#1306 +09:55:32.364-0700 871073591486189598 3XKcfCs | motion#2152 +09:55:32.499-0700 871073584993415218 CaHYAdE | motion#4404 +09:55:32.529-0700 871073583491870730 bKxOOpI | motion#3275 +09:55:32.650-0700 871073599719616522 nGnciPE | motion#5907 +09:55:32.708-0700 871073594027954216 4nr8P5A | motion#7993 +09:55:32.739-0700 871073588688588800 WZQCLow | motion#8472 +09:55:32.758-0700 871073592169885766 TK8g614 | motion#0262 +09:55:32.824-0700 871073587304489021 4btpM50 | motion#9524 +09:55:32.826-0700 871073586952155196 orwxHO0 | motion#1870 +09:55:32.834-0700 871073587921043547 fqG2DTs | motion#8385 +09:55:32.848-0700 871073587782639706 idfCMDY | motion#2578 +09:55:32.919-0700 871073587090559117 X-M-Bb0 | motion#1902 +09:55:32.960-0700 871073588189478942 KRud1dQ | motion#5181 +09:55:32.969-0700 871073592396365864 uvR8TIQ | motion#4629 +09:55:33.053-0700 871073584360067133 STmCtgM | motion#9387 +09:55:33.058-0700 871073589527457833 rV51Zk0 | motion#2452 +09:55:33.074-0700 871073586650161152 Ie0QAnk | motion#7931 +09:55:33.175-0700 871073590169194546 jHD--8o | motion#5880 +09:55:33.181-0700 871073601250545685 G4Quvao | motion#7193 +09:55:33.204-0700 871073587358990417 3JyHsJw | motion#4425 +09:55:33.211-0700 871073576860659762 kzBGy-Q | motion#4617 +09:55:33.329-0700 871073586075549697 xoEYTaQ | motion#5677 +09:55:33.459-0700 871073600004849704 WSQ9TmM | motion#9347 +09:55:33.469-0700 871073574352482325 qyJ2hgc | motion#2094 +09:55:33.483-0700 871073597614071808 ouNnxYg | motion#8513 +09:55:33.493-0700 871073583890313226 hLBTXrk | motion#9050 +09:55:33.499-0700 871073592933240872 VSmspuY | motion#2747 +09:55:33.509-0700 871073600894038036 o8xpUQE | motion#6589 +09:55:33.537-0700 871073587791024208 EHu-3tU | motion#9963 +09:55:33.555-0700 871073596888461412 4sCDeS4 | motion#0582 +09:55:33.570-0700 871073586998304798 z-p5oy4 | motion#5934 +09:55:33.574-0700 871073588453711922 o3kNATI | motion#6800 +09:55:33.574-0700 871073582338408470 EB2OTL8 | motion#8155 +09:55:33.589-0700 871073601250525204 cT5-s2I | motion#3203 +09:55:33.602-0700 871073588424351754 nV0n5as | motion#7772 +09:55:33.611-0700 871073588101406790 PdTNcfc | motion#2306 +09:55:33.625-0700 871073587904282634 VxeUXw0 | motion#1277 +09:55:33.656-0700 871073576109867059 21jKkkA | motion#5176 +09:55:33.681-0700 871073595533692959 6zC-2oo | motion#5734 +09:55:33.767-0700 871073591633010738 BKwm9cw | motion#2138 +09:55:33.778-0700 871073570170744853 ljEqQH4 | motion#1963 +09:55:33.884-0700 871073591008047164 6hBaLrY | motion#9594 +09:55:33.946-0700 871073595684696074 H6t8eZY | motion#4389 +09:55:34.011-0700 871073592253747241 lqLq7Qs | motion#3971 +09:55:34.011-0700 871073596288671794 k57okBY | motion#0509 +09:55:34.066-0700 871073593184886794 AnA0QVM | motion#2182 +09:55:34.083-0700 871073592543178763 PiQhb0g | motion#6368 +09:55:34.160-0700 871073600055173212 lylm0m0 | motion#2834 +09:55:34.179-0700 871073600596226128 bsbv30s | motion#0151 +09:55:34.215-0700 871073589229654068 RhzoRBc | motion#6752 +09:55:34.274-0700 871073601774817280 XcjU8Qs | motion#3199 +09:55:34.302-0700 871073596150259742 3aobmMA | motion#2032 +09:55:34.359-0700 871073589397426247 IiqSTZ4 | motion#3927 +09:55:34.413-0700 871073595391098930 TEuGr0A | motion#9428 +09:55:34.424-0700 871073601435074611 lD3jYf0 | motion#4309 +09:55:34.458-0700 871073592660602971 TIIosc0 | motion#6874 +09:55:34.521-0700 871073593008734219 8T-bjp0 | motion#1854 +09:55:34.562-0700 871073600751435837 94f4vP8 | motion#1941 +09:55:34.578-0700 871073584850825256 4AEHCic | motion#1201 +09:55:34.582-0700 871073594141208597 XMs9usI | motion#7977 +09:55:34.624-0700 871073601892266015 Rh0d8uE | motion#0654 +09:55:34.644-0700 871073601644789820 J0F1ABM | motion#2808 +09:55:34.688-0700 871073588936056833 e465UCA | motion#3511 +09:55:34.721-0700 871073600852082778 6c7edT4 | motion#5218 +09:55:34.764-0700 871073609861447770 v2JlrSw | motion#6311 +09:55:34.792-0700 871073554265956402 VXDTo3U | motion#5144 +09:55:34.801-0700 871073583064039446 typzaY0 | motion#8229 +09:55:34.921-0700 871073587702935573 by5Te2I | motion#8416 +09:55:34.994-0700 871073601569300540 Nm3A3y8 | motion#2945 +09:55:35.010-0700 871073610385723433 QHiIWnw | motion#1427 +09:55:35.078-0700 871073592463458354 sZAJfhQ | motion#1303 +09:55:35.091-0700 871073604048154634 WAyv61Q | motion#7176 +09:55:35.093-0700 871073602571743304 mJomInY | motion#5891 +09:55:35.194-0700 871073596229963787 kMjnsWI | motion#8704 +09:55:35.245-0700 871073608099840070 PtiSNDQ | motion#6421 +09:55:35.261-0700 871073600956928040 LgVneDY | motion#1006 +09:55:35.261-0700 871073602257178665 MtDAqC8 | motion#2734 +09:55:35.315-0700 871073593944080406 83KwXfw | motion#7889 +09:55:35.371-0700 871073604710858802 _ZQSDyk | motion#4629 +09:55:35.406-0700 871073603301568534 1ExQyD8 | motion#6894 +09:55:35.456-0700 871073582350999552 82MzFfs | motion#7740 +09:55:35.495-0700 871073603989405728 zeGZf3Q | motion#0876 +09:55:35.497-0700 871073601980366848 aQdlQO8 | motion#7356 +09:55:35.512-0700 871073586612420659 kZmRq9Q | motion#8991 +09:55:35.530-0700 871073602982801408 DcRxIsU | motion#7010 +09:55:35.605-0700 871073563594076171 NGmKcmA | motion#7286 +09:55:35.828-0700 871073588692783106 12dEdk4 | motion#6157 +09:55:35.924-0700 871073605423865916 98L_oQE | motion#0736 +09:55:36.091-0700 871073588428562453 S1OY_u4 | motion#3685 +09:55:36.194-0700 871073602651422830 cyjHYGU | motion#6656 +09:55:36.262-0700 871073603976830986 Z0yMlSA | motion#8697 +09:55:36.318-0700 871073604928933969 fg_dlNU | motion#9009 +09:55:36.322-0700 871073603544813648 jUlyFVY | motion#2460 +09:55:36.386-0700 871073601862918164 B8MR27Q | motion#6750 +09:55:36.468-0700 871073614009622559 25aIIFo | motion#4672 +09:55:36.497-0700 871073607999193098 yoOM_UI | motion#9595 +09:55:36.537-0700 871073602559148054 Q-xLxOA | motion#5331 +09:55:36.571-0700 871073609727238276 LCwrrSc | motion#9140 +09:55:36.576-0700 871073611023282187 zBt02nY | motion#4111 +09:55:36.656-0700 871073612541620234 AR0e61s | motion#1744 +09:55:36.691-0700 871073609706262578 QQmTqxA | motion#8253 +09:55:36.833-0700 871073603821633546 m3kKwXk | motion#3497 +09:55:36.841-0700 871073613581787176 7Dkx4EQ | motion#0251 +09:55:36.903-0700 871073606669594714 5s6p6XQ | motion#5339 +09:55:37.033-0700 871073595638562837 GVmpkZc | motion#6893 +09:55:37.039-0700 871073590798336000 W4yWHAg | motion#4895 +09:55:37.134-0700 871073603603550338 1Bqs2-w | motion#4857 +09:55:37.135-0700 871073613795721246 nwrhyGY | motion#9754 +09:55:37.237-0700 871073609668493313 V_goZ2M | motion#5240 +09:55:37.281-0700 871073587673583707 9vxHsJY | motion#1463 +09:55:37.311-0700 871073617969033297 53yBIfA | motion#0028 +09:55:37.424-0700 871073602856964166 cbWII4Q | motion#3747 +09:55:37.463-0700 871073587774246942 ah5dQqc | motion#7253 +09:55:37.644-0700 871073618556235798 DNZqQlo | motion#7160 +09:55:37.696-0700 871073612541603930 LtAsDbQ | motion#1091 +09:55:37.801-0700 871073613107847219 0fUPGGA | motion#2499 +09:55:37.832-0700 871073611727917118 i87zBWM | motion#7853 +09:55:37.866-0700 871073611581096026 EMBM7ms | motion#0842 +09:55:37.884-0700 871073610775793674 HudYM28 | motion#0219 +09:55:37.907-0700 871073610331193355 WrWJNoE | motion#5171 +09:55:37.976-0700 871073619126677505 laFC0ss | motion#7615 +09:55:37.983-0700 871073605658771527 DpOKlac | motion#8116 +09:55:38.004-0700 871073612474490890 UbG7SfI | motion#6606 +09:55:38.010-0700 871073612193468426 OnMjzWU | motion#7332 +09:55:38.056-0700 871073610473828383 OJjVS0k | motion#2907 +09:55:38.083-0700 871073616857550878 kgPo6lg | motion#2025 +09:55:38.282-0700 871073610993897503 tXfHcEg | motion#7767 +09:55:38.294-0700 871073619101507634 yzspkmg | motion#7750 +09:55:38.332-0700 871073608104038410 xgfT5eE | motion#7620 +09:55:38.347-0700 871073618866634803 RhAiNx8 | motion#2644 +09:55:38.352-0700 871073617990004827 kyjtdvg | motion#4557 +09:55:38.395-0700 871073618992459787 OE5Evgs | motion#8233 +09:55:38.400-0700 871073612550004786 y_-6azw | motion#9228 +09:55:38.407-0700 871073606094970901 Io9aY5A | motion#2606 +09:55:38.432-0700 871073612172500992 vMq5Ws4 | motion#9341 +09:55:38.498-0700 871073600667549697 iGgRkOo | motion#9322 +09:55:38.543-0700 871073606187221053 nMj_bsA | motion#2177 +09:55:38.562-0700 871073620716310539 Su5bNJo | motion#0671 +09:55:38.573-0700 871073614080913418 -xpY7dY | motion#0077 +09:55:38.607-0700 871073606174642226 iAiFY7Q | motion#6013 +09:55:38.765-0700 871073613137207376 gCq4JJg | motion#3014 +09:55:38.823-0700 871073619785187328 Xj3t-rE | motion#0976 +09:55:38.872-0700 871073613959274546 HjEk1H4 | motion#8949 +09:55:38.879-0700 871073604828278875 _uOoNRA | motion#7745 +09:55:38.886-0700 871073612386435132 QH650x8 | motion#2390 +09:55:38.895-0700 871073604421435393 8iJ7sqM | motion#6289 +09:55:38.904-0700 871073613850218496 3i8R080 | motion#1079 +09:55:38.974-0700 871073604035567616 GlwX5_A | motion#9563 +09:55:39.029-0700 871073606761844788 TA_NNY4 | motion#0641 +09:55:39.190-0700 871073626340859924 rI68Dp8 | motion#4830 +09:55:39.202-0700 871073622167523389 rhCWj10 | motion#5810 +09:55:39.208-0700 871073623341924423 ubWLIoo | motion#9621 +09:55:39.220-0700 871073614370308116 JczT4LU | motion#1475 +09:55:39.286-0700 871073620665978930 m6qtin0 | motion#9397 +09:55:39.398-0700 871073614991089715 thI9Gbs | motion#0968 +09:55:39.448-0700 871073607214825503 gQYVbew | motion#5999 +09:55:39.555-0700 871073622977020034 RvWkLUI | motion#3808 +09:55:39.573-0700 871073629054582784 0Mtrszg | motion#0746 +09:55:39.583-0700 871073632426790912 aKB30Ag | motion#4347 +09:55:39.624-0700 871073590185971744 dx1kbHo | motion#5679 +09:55:39.626-0700 871073607000932383 Wj_gNPY | motion#9257 +09:55:39.745-0700 871073620108144691 9Ti3ylY | motion#0960 +09:55:39.774-0700 871073624281452544 Uty-D8U | motion#7789 +09:55:39.855-0700 871073603276406906 AooWTds | motion#4239 +09:55:39.875-0700 871073622486286378 Oa0YStg | motion#6340 +09:55:39.886-0700 871073624310825011 fb286pY | motion#6347 +09:55:39.972-0700 871073607932067901 rB353-E | motion#8334 +09:55:39.982-0700 871073611987943505 Jltv7iQ | motion#8865 +09:55:40.080-0700 871073618208129054 cP77K0I | motion#8322 +09:55:40.089-0700 871073613929914411 xYPMGlI | motion#9805 +09:55:40.099-0700 871073605943963678 Lpxad44 | motion#8984 +09:55:40.103-0700 871073622897360906 wjPhs-0 | motion#1063 +09:55:40.134-0700 871073625325854780 ObOl5hc | motion#0100 +09:55:40.156-0700 871073621198659635 BrRJG7Q | motion#2822 +09:55:40.222-0700 871073613577609216 JOciQGw | motion#8281 +09:55:40.235-0700 871073612801646632 yeqF4CI | motion#9095 +09:55:40.247-0700 871073613414031370 CHcqHS4 | motion#6972 +09:55:40.272-0700 871073630149312544 mC1Z3rQ | motion#4342 +09:55:40.294-0700 871073623350341693 XLVnJk8 | motion#9223 +09:55:40.343-0700 871073607948836884 T5S7WiA | motion#6558 +09:55:40.347-0700 871073629377552444 PRagJhQ | motion#6546 +09:55:40.358-0700 871073623144816670 lhGw9LE | motion#7531 +09:55:40.462-0700 871073612113784923 EBn3YII | motion#6919 +09:55:40.475-0700 871073610985533490 nEQEY10 | motion#1361 +09:55:40.493-0700 871073607189667930 G1KAyt8 | motion#2205 +09:55:40.511-0700 871073627498483712 k0mYqxc | motion#6588 +09:55:40.532-0700 871073621139922944 rYKQLHM | motion#9580 +09:55:40.702-0700 871073612268970056 1I-YssI | motion#0751 +09:55:40.716-0700 871073637715804190 kDbjakY | motion#4070 +09:55:40.753-0700 871073624289845288 CjoBQmo | motion#7220 +09:55:40.757-0700 871073636558184519 GbdKXig | motion#0488 +09:55:40.759-0700 871073625682366465 0fOP2No | motion#2481 +09:55:40.980-0700 871073608309551104 8Q2l1QU | motion#9154 +09:55:41.011-0700 871073622377259108 jgPpTNY | motion#9705 +09:55:41.052-0700 871073636793073715 wgAE_eI | motion#0566 +09:55:41.297-0700 871073620959588373 moPF1fs | motion#3124 +09:55:41.340-0700 871073627691429930 TLa42_Y | motion#3904 +09:55:41.564-0700 871073631785066546 k0rqXTo | motion#1028 +09:55:41.565-0700 871073628131852288 1BOSAqY | motion#7507 +09:55:41.605-0700 871073630669402122 GXZlqQE | motion#6453 +09:55:41.717-0700 871073629864099840 gNFNtw4 | motion#4297 +09:55:41.796-0700 871073627003564053 hnH3yCU | motion#7051 +09:55:41.816-0700 871073626366042142 R_T_Ayo | motion#9977 +09:55:41.862-0700 871073624562499634 ZWPLlCU | motion#0347 +09:55:41.905-0700 871073624726073374 li2iRLY | motion#0660 +09:55:41.907-0700 871073632787505182 IVfZoNY | motion#5935 +09:55:41.998-0700 871073632791691265 Idsvakw | motion#0904 +09:55:42.050-0700 871073627758559232 abgwcAw | motion#3484 +09:55:42.068-0700 871073627787890749 T9fYUk8 | motion#7364 +09:55:42.104-0700 871073630514208808 eQjeufc | motion#8676 +09:55:42.162-0700 871073612659048509 92TZgrw | motion#4607 +09:55:42.178-0700 871073629297840149 AQNcqo4 | motion#1629 +09:55:42.212-0700 871073643625590854 z4LRdkc | motion#0737 +09:55:42.217-0700 871073638923771906 sDDRQcg | motion#8631 +09:55:42.225-0700 871073629008457768 yUZUsts | motion#8767 +09:55:42.308-0700 871073631445340211 FeUNj0E | motion#4765 +09:55:42.409-0700 871073621890699384 wcMGA1c | motion#2304 +09:55:42.460-0700 871073623107063818 lKPhzfA | motion#4650 +09:55:42.504-0700 871073631097204737 Z0rjN4o | motion#2375 +09:55:42.599-0700 871073627427184682 7kcxbhw | motion#2368 +09:55:42.672-0700 871073630849740871 zbsJRsk | motion#3195 +09:55:42.691-0700 871073644611239956 ysXfQZo | motion#6228 +09:55:42.724-0700 871073624524718120 pBdUQSE | motion#0253 +09:55:42.931-0700 871073633517326347 NdxB8-g | motion#0994 +09:55:42.969-0700 871073626571546624 BcdINtc | motion#5603 +09:55:43.032-0700 871073636415574056 r3vY80U | motion#0185 +09:55:43.111-0700 871073627339112478 tWTRX78 | motion#3385 +09:55:43.113-0700 871073631634092063 iwBlukQ | motion#2913 +09:55:43.194-0700 871073634289086505 3KUZKs8 | motion#8151 +09:55:43.274-0700 871073637359296563 dnn_uMk | motion#4589 +09:55:43.522-0700 871073627603341352 VrKJmVw | motion#7660 +09:55:43.539-0700 871073629390110810 PKGR8Go | motion#3516 +09:55:43.622-0700 871073633752219648 QFFe8Eo | motion#4315 +09:55:43.690-0700 871073630904270868 lHk1cDg | motion#8579 +09:55:43.736-0700 871073632896581642 anvDAq4 | motion#3078 +09:55:43.785-0700 871073634452652034 iIpvD6M | motion#0159 +09:55:43.787-0700 871073635639627777 W3aGRkg | motion#3607 +09:55:43.796-0700 871073643013234698 MDakOnQ | motion#2566 +09:55:43.815-0700 871073632737165332 JqtNJtY | motion#4440 +09:55:43.926-0700 871073634310041650 CqpYKUs | motion#5996 +09:55:43.944-0700 871073641612337154 2Trya5o | motion#4129 +09:55:43.998-0700 871073613787304017 ujodM-A | motion#3087 +09:55:44.073-0700 871073640622477313 psC02zM | motion#1620 +09:55:44.156-0700 871073642023387198 e0RMBFs | motion#8075 +09:55:44.373-0700 871073640823783464 EDahrS4 | motion#5866 +09:55:44.618-0700 871073648163844096 n4Zc4Vk | motion#5254 +09:55:44.638-0700 871073644619644998 sQUEu1c | motion#3238 +09:55:44.643-0700 871073639880085514 LZHaBNw | motion#1483 +09:55:44.667-0700 871073638827327548 pJ1-ZgI | motion#3803 +09:55:44.782-0700 871073634985345086 qzYmDy4 | motion#6668 +09:55:44.962-0700 871073615850909757 8GpYUhE | motion#4386 +09:55:44.976-0700 871073644992933929 fRL6po4 | motion#3368 +09:55:45.091-0700 871073637275406348 g2SOHQk | motion#0065 +09:55:45.256-0700 871073645005512735 bUcVjuo | motion#8768 +09:55:45.296-0700 871073640706359306 7V-DF-I | motion#3701 +09:55:45.343-0700 871073639989149766 kGiKMHc | motion#7725 +09:55:45.463-0700 871073633093693491 cfHe2wU | motion#1679 +09:55:45.571-0700 871073642824499201 Dzmm6xk | motion#0017 +09:55:45.586-0700 871073651162771507 xrkuDkk | motion#5939 +09:55:45.608-0700 871073648058978315 R9bhTtM | motion#2410 +09:55:45.667-0700 871073633022390272 f4qlvDc | motion#4469 +09:55:45.671-0700 871073650516836472 vfcQk9U | motion#7147 +09:55:45.715-0700 871073649581506630 3KjhtE8 | motion#0306 +09:55:45.716-0700 871073642925146212 pFsNkWQ | motion#8734 +09:55:45.818-0700 871073639221571645 Jt3MEBA | motion#4581 +09:55:45.892-0700 871073639108325376 Pk_TLXI | motion#9483 +09:55:45.907-0700 871073645592727582 H3JYw0c | motion#2756 +09:55:45.962-0700 871073647010394203 BfQ6RWA | motion#5687 +09:55:45.971-0700 871073640882507786 3iJq99M | motion#3961 +09:55:46.061-0700 871073647148810350 zEIp92Q | motion#5082 +09:55:46.066-0700 871073647194951692 YtW2vUA | motion#5605 +09:55:46.148-0700 871073642493120522 kZ9hrV0 | motion#9576 +09:55:46.258-0700 871073643596218390 fcTdNLI | motion#5564 +09:55:46.301-0700 871073647270432788 MHR1G8w | motion#8239 +09:55:46.544-0700 871073654237184011 8498fg8 | motion#5586 +09:55:46.561-0700 871073649187254333 l-GSpkA | motion#8135 +09:55:46.582-0700 871073650453909546 CZhajNk | motion#4712 +09:55:46.603-0700 871073641545207860 k6BgFtg | motion#9745 +09:55:46.753-0700 871073647064907846 7C2AwLQ | motion#7962 +09:55:46.776-0700 871073642035961856 kMJJuvs | motion#7220 +09:55:47.023-0700 871073655365455902 YZse32g | motion#0120 +09:55:47.037-0700 871073654866346054 O9mN4Uk | motion#6585 +09:55:47.070-0700 871073654560149534 XXjVPdk | motion#9963 +09:55:47.226-0700 871073662353150022 h3So_FM | motion#0112 +09:55:47.246-0700 871073647966695484 6_hiSbw | motion#8115 +09:55:47.340-0700 871073646972645427 Zu0l7f8 | motion#0640 +09:55:47.354-0700 871073632963682304 78Sha84 | motion#0283 +09:55:47.365-0700 871073635169894420 3aG_hoQ | motion#3691 +09:55:47.376-0700 871073643415875654 XeHYwDY | motion#1642 +09:55:47.408-0700 871073646649692200 MXsa8nI | motion#2949 +09:55:47.419-0700 871073646062493736 rHyOlw4 | motion#7869 +09:55:47.493-0700 871073651078889483 lCkYdFw | motion#5132 +09:55:47.499-0700 871073639292883025 9-dPr4k | motion#9031 +09:55:47.706-0700 871073649329836112 i5wXhgs | motion#2776 +09:55:47.732-0700 871073653255725166 A7rPn_4 | motion#4138 +09:55:47.836-0700 871073649598275615 3M5uL0M | motion#3647 +09:55:47.857-0700 871073657592627313 hysYdNk | motion#1627 +09:55:47.932-0700 871073655642288158 YkS8E5Q | motion#5845 +09:55:47.992-0700 871073650235805746 WM5Bglo | motion#1893 +09:55:48.144-0700 871073647450808350 2itnmZk | motion#0880 +09:55:48.160-0700 871073648465817611 Md9w_s8 | motion#5596 +09:55:48.184-0700 871073649497620503 G6f9ers | motion#0367 +09:55:48.464-0700 871073656569229333 kQeLVeY | motion#1989 +09:55:48.564-0700 871073660952272937 JZAHY4k | motion#5331 +09:55:48.815-0700 871073659375222795 7FXnBtk | motion#5612 +09:55:48.927-0700 871073670133600266 f3tVH1k | motion#9612 +09:55:48.938-0700 871073660507684934 j9vnmXc | motion#7206 +09:55:48.991-0700 871073659320692756 GpgZt0c | motion#5341 +09:55:49.032-0700 871073657412259890 ijQy_Ro | motion#6611 +09:55:49.084-0700 871073647048159363 iPPOwsY | motion#9626 +09:55:49.127-0700 871073656489525268 -WoZTK8 | motion#5240 +09:55:49.221-0700 871073654195241011 COoxILg | motion#6069 +09:55:49.275-0700 871073649858347018 GkNBUYE | motion#4914 +09:55:49.408-0700 871073658423111701 8hOov9k | motion#4025 +09:55:49.557-0700 871073670343311380 kPGe3Io | motion#6492 +09:55:49.578-0700 871073668762058833 Di-8CyE | motion#5027 +09:55:49.624-0700 871073670280400896 Z5xbgpU | motion#4426 +09:55:49.897-0700 871073650546204712 gfuhyRI | motion#5597 +09:55:50.037-0700 871073659509424169 BvhjcTs | motion#5578 +09:55:50.128-0700 871073672520142859 MNVxgAg | motion#0949 +09:55:50.217-0700 871073677465239553 -bQiEaM | motion#0196 +09:55:50.441-0700 871073671450615858 ciH-Czs | motion#2848 +09:55:50.494-0700 871073657349353512 zJV7FvE | motion#7228 +09:55:50.531-0700 871073658569916457 04J0Bq4 | motion#0135 +09:55:50.564-0700 871073674290143353 kbK3Yvg | motion#9219 +09:55:50.795-0700 871073666572632104 7o2AquE | motion#2061 +09:55:50.811-0700 871073661317156885 sHtbTMM | motion#9123 +09:55:50.826-0700 871073665368854529 yxu62SU | motion#3037 +09:55:50.836-0700 871073673883316294 XMIpJIA | motion#5289 +09:55:50.916-0700 871073671119253504 SF40jcM | motion#4783 +09:55:51.109-0700 871073662265094204 qDvMn1E | motion#3851 +09:55:51.116-0700 871073657772998667 _w5RN-o | motion#8867 +09:55:51.134-0700 871073679176515644 TFXdF3Y | motion#8366 +09:55:51.147-0700 871073662705491968 U98kqVk | motion#5539 +09:55:51.173-0700 871073673560354846 U9f7x3c | motion#7186 +09:55:51.195-0700 871073677989523456 Lj-tMi0 | motion#2255 +09:55:51.204-0700 871073670200717312 5URLnR0 | motion#8468 +09:55:51.310-0700 871073671656140903 YZ98SIc | motion#5242 +09:55:51.405-0700 871073654170079233 5pHlhIE | motion#5973 +09:55:51.430-0700 871073664156708884 C1_bkUU | motion#3209 +09:55:51.460-0700 871073668485246976 uVWnFOU | motion#4795 +09:55:51.461-0700 871073674118176828 7Q5qA90 | motion#1664 +09:55:51.471-0700 871073666178355200 dhynxrc | motion#1879 +09:55:51.503-0700 871073670141968414 5rZi6ZE | motion#9525 +09:55:51.506-0700 871073655713583144 -trbfs0 | motion#9003 +09:55:51.532-0700 871073651506675712 bYb-1ts | motion#3139 +09:55:51.550-0700 871073678857744474 Q5cyh-4 | motion#0135 +09:55:51.561-0700 871073654509805628 cNt0vig | motion#8415 +09:55:51.591-0700 871073646582591488 EVzpkGY | motion#0152 +09:55:51.608-0700 871073666664890428 kIL-TcY | motion#6901 +09:55:51.613-0700 871073657374511134 5E-NQCc | motion#0408 +09:55:51.651-0700 871073664429350963 97zLCVc | motion#2797 +09:55:51.653-0700 871073672784392272 NpKFIJk | motion#5355 +09:55:51.822-0700 871073665876394024 IC5hZf4 | motion#6781 +09:55:51.873-0700 871073672717287434 iuBaCLI | motion#5892 +09:55:51.981-0700 871073679063285821 b5SHmG8 | motion#7489 +09:55:52.033-0700 871073666056728596 _mGRsCw | motion#8809 +09:55:52.064-0700 871073679788867665 ucM4624 | motion#6970 +09:55:52.150-0700 871073681902817330 vqJ-nkA | motion#3695 +09:55:52.213-0700 871073672935407667 lsHSGtY | motion#4541 +09:55:52.220-0700 871073672926990336 h76n5xM | motion#5941 +09:55:52.261-0700 871073678853570641 Q6qHRXM | motion#5392 +09:55:52.364-0700 871073673430319124 uLrNW6M | motion#7364 +09:55:52.389-0700 871073646968438854 3rDJ-0c | motion#9404 +09:55:52.459-0700 871073662109888552 l4l89ac | motion#9209 +09:55:52.481-0700 871073672742449222 jFRArHg | motion#0919 +09:55:52.577-0700 871073679428173884 a731W-A | motion#1505 +09:55:52.620-0700 871073666681671680 aaDkwrw | motion#1329 +09:55:52.638-0700 871073662990700564 BQ3RGHU | motion#3267 +09:55:52.653-0700 871073679595946064 tqETk_o | motion#6778 +09:55:52.659-0700 871073681600831549 K7rPyFs | motion#3236 +09:55:52.663-0700 871073672700510232 WcgNQCg | motion#6107 +09:55:52.700-0700 871073671597391923 GDIBgCk | motion#9112 +09:55:52.710-0700 871073678786461707 PlvZrb0 | motion#9743 +09:55:52.740-0700 871073678924853288 RKiMs2E | motion#7331 +09:55:52.753-0700 871073672922820629 aEIJRuY | motion#3073 +09:55:52.770-0700 871073673640026113 IMN-U8I | motion#1698 +09:55:52.788-0700 871073679356874812 Q4PuKxU | motion#5916 +09:55:52.807-0700 871073679038119937 U5WgvPE | motion#8651 +09:55:52.859-0700 871073679474319400 6qQlc3o | motion#6124 +09:55:52.903-0700 871073671857451038 Qz8QO8Q | motion#8590 +09:55:52.910-0700 871073679537213502 ZvjBQ4M | motion#7362 +09:55:52.948-0700 871073667264675870 cPaJ13Q | motion#1127 +09:55:53.135-0700 871073681521127475 bF929jI | motion#3508 +09:55:53.192-0700 871073685165994045 gnT_kPI | motion#9884 +09:55:53.209-0700 871073665951883265 KRP2OQ4 | motion#3046 +09:55:53.214-0700 871073678115364896 mjcOJso | motion#8479 +09:55:53.256-0700 871073682334826527 yBkfBm0 | motion#6249 +09:55:53.271-0700 871073679709188096 r2ILVAs | motion#7477 +09:55:53.361-0700 871073659601711186 ahO1gdA | motion#2894 +09:55:53.435-0700 871073657739423785 XLm6AJ0 | motion#0438 +09:55:53.585-0700 871073662885822464 uK7rkiU | motion#3307 +09:55:53.597-0700 871073679436578856 6caNgLM | motion#1288 +09:55:53.633-0700 871073662688694332 4jH5G1M | motion#7838 +09:55:54.143-0700 871073681730838568 vnrOTRE | motion#4799 +09:55:54.151-0700 871073683513425991 hB1HGRE | motion#3913 +09:55:54.404-0700 871073690371121173 7EHzOZg | motion#2975 +09:55:54.463-0700 871073673220620358 VXpg7vo | motion#4206 +09:55:54.466-0700 871073655700979813 qCgJMXw | motion#6085 +09:55:54.646-0700 871073689683230750 WY1tV-0 | motion#3727 +09:55:54.670-0700 871073687846154260 f4S6EuE | motion#6793 +09:55:54.729-0700 871073682167070791 Ekuh6Hw | motion#9985 +09:55:54.735-0700 871073674118201375 N-TF4ME | motion#7391 +09:55:54.808-0700 871073679327498312 S3h3tMA | motion#9992 +09:55:54.815-0700 871073683937046578 Nc0V-WQ | motion#2790 +09:55:54.839-0700 871073688471081021 f9LJKRw | motion#9973 +09:55:54.864-0700 871073686218739772 rrF2nD4 | motion#5140 +09:55:54.865-0700 871073643453620275 -Fjz7FU | motion#1187 +09:55:54.935-0700 871073675443568670 h2WV6QI | motion#5518 +09:55:55.000-0700 871073683618291762 0QXWAxU | motion#7038 +09:55:55.049-0700 871073684369072128 AGcBtTI | motion#8475 +09:55:55.164-0700 871073686378127400 qOAiUmc | motion#8473 +09:55:55.239-0700 871073687137321020 DbKB508 | motion#5307 +09:55:55.242-0700 871073682729095198 ncd6I00 | motion#1563 +09:55:55.266-0700 871073682905251850 s8I9S2w | motion#3388 +09:55:55.280-0700 871073689305747497 fhDpsp8 | motion#9389 +09:55:55.293-0700 871073675619754054 k6pw1xc | motion#0309 +09:55:55.307-0700 871073678270558219 WXB3yeY | motion#0453 +09:55:55.313-0700 871073674390806551 mGgwaf4 | motion#6669 +09:55:55.326-0700 871073674877341747 echa3gc | motion#3875 +09:55:55.344-0700 871073682934595734 VEYcGlI | motion#9657 +09:55:55.361-0700 871073682888482827 1ti22rU | motion#3514 +09:55:55.378-0700 871073683345653792 awhp_jI | motion#7472 +09:55:55.384-0700 871073677922422806 fH-cXxk | motion#0936 +09:55:55.394-0700 871073687409946644 RCSc1yY | motion#1660 +09:55:55.400-0700 871073691822354523 4FE2QB8 | motion#0318 +09:55:55.431-0700 871073674839617556 EtHv4ks | motion#6992 +09:55:55.444-0700 871073686864666704 ynuUCRY | motion#8013 +09:55:55.464-0700 871073692174671942 xPgKuLc | motion#7453 +09:55:55.560-0700 871073679314939974 ZA7aa5M | motion#5048 +09:55:55.589-0700 871073678794838077 i_7dm6A | motion#0940 +09:55:55.613-0700 871073684784300104 IsddMss | motion#5194 +09:55:55.627-0700 871073686873059408 RGyTh8Q | motion#9501 +09:55:55.632-0700 871073686784987178 6AX16to | motion#3146 +09:55:55.678-0700 871073683668598815 Zs-F2p0 | motion#8077 +09:55:55.740-0700 871073692006883399 gXKSsJ0 | motion#9684 +09:55:55.753-0700 871073683219808266 vWlUa_s | motion#6584 +09:55:55.819-0700 871073685514125323 PsDPeZM | motion#8963 +09:55:55.821-0700 871073690924757022 cIY0whE | motion#5924 +09:55:55.898-0700 871073682221584445 gNkjMFE | motion#5428 +09:55:55.939-0700 871073695353962517 8Pb6c10 | motion#3960 +09:55:55.996-0700 871073684801093722 rxL23l8 | motion#1714 +09:55:56.049-0700 871073686063562842 jefSb14 | motion#1929 +09:55:56.261-0700 871073695634964550 g7MnTcU | motion#1713 +09:55:56.291-0700 871073685442822145 pdOfqtQ | motion#3244 +09:55:56.384-0700 871073686080331816 vWuSHQA | motion#9043 +09:55:56.540-0700 871073685186969610 CKL0CiQ | motion#7690 +09:55:56.625-0700 871073682158682183 zgG_vzo | motion#9297 +09:55:56.651-0700 871073684641693706 k8wKRZ8 | motion#7098 +09:55:56.848-0700 871073685895782430 kaTLDFw | motion#1180 +09:55:56.913-0700 871073696306065439 s2VDnQI | motion#4092 +09:55:57.008-0700 871073685342142494 E0_LQCU | motion#8042 +09:55:57.074-0700 871073695710449666 WYlD7ck | motion#0335 +09:55:57.464-0700 871073680866811905 VQOh1qU | motion#4532 +09:55:57.480-0700 871073696125685781 KRsJ0VU | motion#7217 +09:55:57.500-0700 871073695865667604 x3ICF0k | motion#2780 +09:55:57.511-0700 871073685438595072 ZuMgR5E | motion#4582 +09:55:57.583-0700 871073685228892190 I4TR-Os | motion#0632 +09:55:57.657-0700 871073695953731595 NAhgr7c | motion#0640 +09:55:57.869-0700 871073684452954172 vjjIy_U | motion#0671 +09:55:57.898-0700 871073697908273153 xYuEozY | motion#5724 +09:55:58.031-0700 871073697878925352 wlPVubY | motion#2994 +09:55:58.045-0700 871073696616431616 ar1HAYk | motion#9851 +09:55:58.180-0700 871073698331893791 orC-dbs | motion#0896 +09:55:58.238-0700 871073695689490492 VHWs_4I | motion#1830 +09:55:58.263-0700 871073696272498798 80G_VAo | motion#9996 +09:55:58.312-0700 871073697438519356 MMtIoiE | motion#5916 +09:55:58.325-0700 871073678199242814 RYylUSQ | motion#2494 +09:55:58.361-0700 871073687598673920 ZCbusAU | motion#3742 +09:55:58.404-0700 871073696578687027 NnoZsrg | motion#8184 +09:55:58.608-0700 871073703633502218 EB3txYE | motion#0290 +09:55:58.661-0700 871073703469924463 oIbNUw4 | motion#1738 +09:55:58.826-0700 871073688194277386 pNUm0Us | motion#5605 +09:55:58.831-0700 871073695202963457 E7RR2KU | motion#5355 +09:55:58.844-0700 871073687384752129 Q_yAQm8 | motion#9798 +09:55:58.852-0700 871073689297362994 GP-GDE0 | motion#4989 +09:55:58.891-0700 871073707148320809 R9-HNZ0 | motion#7502 +09:55:58.907-0700 871073688290725899 DI2Lcno | motion#0386 +09:55:58.976-0700 871073701901258802 Vznj5Sk | motion#4325 +09:55:59.011-0700 871073704908566559 ZM5F804 | motion#7650 +09:55:59.015-0700 871073698398998538 MvU_W08 | motion#8394 +09:55:59.051-0700 871073696935202816 kP_-YIQ | motion#7897 +09:55:59.057-0700 871073695928561684 HTvDuQI | motion#3648 +09:55:59.093-0700 871073697555959849 EmP8w24 | motion#3144 +09:55:59.098-0700 871073686415872000 x0ubyds | motion#5122 +09:55:59.120-0700 871073696062791770 -7HTfmY | motion#6677 +09:55:59.160-0700 871073690635354162 JVJD_Gs | motion#0861 +09:55:59.211-0700 871073697534992474 mVhg6ks | motion#8460 +09:55:59.242-0700 871073700378730506 SU_bUL0 | motion#5682 +09:55:59.336-0700 871073704128430130 NOyZoUM | motion#3989 +09:55:59.356-0700 871073695915999264 p0Nter4 | motion#6780 +09:55:59.442-0700 871073690786332682 rxCFeL4 | motion#1809 +09:55:59.444-0700 871073702815608893 SAeY4xA | motion#8952 +09:55:59.454-0700 871073695500738581 B_fD6z0 | motion#5377 +09:55:59.511-0700 871073686533341186 LpTm0gM | motion#0052 +09:55:59.528-0700 871073709157396502 sCpDteQ | motion#5645 +09:55:59.536-0700 871073697212031067 SvryrYA | motion#3577 +09:55:59.596-0700 871073699732815872 EbGIPlo | motion#5005 +09:55:59.623-0700 871073698579370024 FSHoKxk | motion#1463 +09:55:59.676-0700 871073700982689892 WWDdwzY | motion#8309 +09:55:59.729-0700 871073699023958066 K2bXE4c | motion#6287 +09:55:59.741-0700 871073681667948574 YRPHH2s | motion#3855 +09:55:59.765-0700 871073693130948648 C1nuNVs | motion#3739 +09:55:59.810-0700 871073697778237471 ALfvZPs | motion#4685 +09:55:59.891-0700 871073688651436163 efS7A8Q | motion#8218 +09:55:59.913-0700 871073700319993866 0boYXFU | motion#8842 +09:55:59.917-0700 871073706259144704 s7tB6Yk | motion#1282 +09:56:00.036-0700 871073690689892362 yGWkKuQ | motion#6107 +09:56:00.140-0700 871073698738761788 DGcYskg | motion#4126 +09:56:00.145-0700 871073718498099240 RZGNCT8 | motion#1448 +09:56:00.163-0700 871073710315020328 XQ5zxq0 | motion#7354 +09:56:00.221-0700 871073699023970414 U5VY_g8 | motion#0909 +09:56:00.230-0700 871073697983758377 ihPoG6k | motion#2446 +09:56:00.245-0700 871073696071176202 Ts-8DtQ | motion#8559 +09:56:00.291-0700 871073695588814919 zFoYQ9A | motion#6880 +09:56:00.371-0700 871073690492760144 Rkh9jGA | motion#7438 +09:56:00.417-0700 871073709602009138 QdzqNq4 | motion#9308 +09:56:00.428-0700 871073709576847391 bALcZ5E | motion#0837 +09:56:00.450-0700 871073691369369621 m1uZg5Q | motion#6638 +09:56:00.476-0700 871073710122106892 j8zbjCk | motion#1115 +09:56:00.535-0700 871073697467879446 x0iXLq4 | motion#0250 +09:56:00.555-0700 871073697019076628 JxRHOaQ | motion#1152 +09:56:00.607-0700 871073709216104478 edtkV4s | motion#2251 +09:56:00.639-0700 871073698885562448 EeNUB40 | motion#9554 +09:56:00.641-0700 871073710025621504 kL_jmds | motion#0414 +09:56:00.786-0700 871073667738632232 nZXRnOI | motion#8798 +09:56:00.902-0700 871073692464078849 jvwr4rI | motion#7673 +09:56:00.955-0700 871073700789760041 Yo1F03k | motion#2678 +09:56:01.001-0700 871073708175945730 c2Q7R_A | motion#7333 +09:56:01.038-0700 871073708524044321 _x8-PWM | motion#9211 +09:56:01.080-0700 871073698709385276 3gbzEuk | motion#8240 +09:56:01.265-0700 871073712022093844 dGIvq2s | motion#5281 +09:56:01.288-0700 871073710797389894 SynnDNg | motion#1130 +09:56:01.352-0700 871073705206366229 dstkLLE | motion#8584 +09:56:01.384-0700 871073711338434580 gf3yJ9M | motion#8879 +09:56:01.546-0700 871073716023484482 YSICkx8 | motion#7536 +09:56:01.682-0700 871073691377754123 GrPevmI | motion#8842 +09:56:01.710-0700 871073712839987260 Uj-9fkE | motion#6567 +09:56:01.767-0700 871073684301971486 CbMdt7c | motion#3340 +09:56:01.783-0700 871073695999881276 4zrEx-M | motion#8465 +09:56:01.824-0700 871073717407612928 bHBwYR4 | motion#3853 +09:56:01.832-0700 871073714819706951 geaeFIA | motion#2266 +09:56:01.893-0700 871073717915103232 ha7Y7O8 | motion#1964 +09:56:01.972-0700 871073711921446922 1bK2Bfw | motion#9732 +09:56:01.981-0700 871073694934528051 -W7urio | motion#3264 +09:56:01.996-0700 871073710839324712 hRNu_gg | motion#6656 +09:56:02.055-0700 871073710617030716 N3KvQtk | motion#3835 +09:56:02.190-0700 871073709987856464 QjcZcxg | motion#8557 +09:56:02.256-0700 871073714714857474 9R1vvu0 | motion#9068 +09:56:02.267-0700 871073713423024128 HPLYF1Y | motion#0565 +09:56:02.335-0700 871073716673601597 TEIeVJs | motion#0088 +09:56:02.392-0700 871073718288408636 zLBOhvQ | motion#0709 +09:56:02.413-0700 871073712051458088 BYNQFPg | motion#9590 +09:56:02.452-0700 871073718481350726 Zwum5GE | motion#8785 +09:56:02.483-0700 871073720733683722 7oKmYks | motion#1835 +09:56:02.706-0700 871073713095839805 vretUVk | motion#6455 +09:56:02.729-0700 871073719534108684 9T4fz2w | motion#4722 +09:56:02.730-0700 871073720041607198 d3kzDrg | motion#3594 +09:56:02.771-0700 871073719425044510 hj_vmPU | motion#8732 +09:56:02.859-0700 871073720079355934 1St5jf4 | motion#7876 +09:56:02.872-0700 871073720695930972 hbu7guo | motion#7059 +09:56:02.950-0700 871073717223034890 9hQvuDE | motion#9477 +09:56:02.964-0700 871073714299625512 kRmqm7k | motion#2139 +09:56:02.998-0700 871073712198270976 j1okZpc | motion#7593 +09:56:03.018-0700 871073720624631808 wsvmHvU | motion#2796 +09:56:03.051-0700 871073710692499588 5hunG2s | motion#6133 +09:56:03.173-0700 871073697253965824 pwWWdeg | motion#0443 +09:56:03.207-0700 871073721480265768 sS2Vpaw | motion#6204 +09:56:03.284-0700 871073713573990461 JN8i3c8 | motion#4718 +09:56:03.286-0700 871073725301280830 rDA-ZmM | motion#1906 +09:56:03.348-0700 871073717831204915 LhMoi0g | motion#9263 +09:56:03.373-0700 871073713272012830 nKIgJ6Y | motion#4949 +09:56:03.383-0700 871073715436265513 6oc0CL8 | motion#5526 +09:56:03.412-0700 871073722721783849 cubV7CQ | motion#0382 +09:56:03.421-0700 871073720549122119 2halE3k | motion#5940 +09:56:03.551-0700 871073728191135785 0jGY8Es | motion#9775 +09:56:03.569-0700 871073722352681020 5C02kco | motion#0936 +09:56:03.570-0700 871073691943972995 qw7KX-o | motion#3658 +09:56:03.634-0700 871073722537222155 EFIHSxo | motion#7221 +09:56:03.641-0700 871073717743128576 T2MxQKU | motion#7488 +09:56:03.667-0700 871073711967567892 oI9UvjE | motion#7649 +09:56:03.697-0700 871073720427487303 R0NdNEg | motion#7841 +09:56:03.709-0700 871073700026388493 XfG-Y34 | motion#8687 +09:56:03.719-0700 871073699267227718 6vN8O9s | motion#5805 +09:56:03.722-0700 871073716874919976 vNFEl4Y | motion#4784 +09:56:03.758-0700 871073709929168977 JeLqNe0 | motion#8084 +09:56:03.771-0700 871073725322244126 JJY78mE | motion#4312 +09:56:03.775-0700 871073721140543528 emyeXbg | motion#4276 +09:56:03.892-0700 871073721589329920 RU7TMBc | motion#6314 +09:56:03.944-0700 871073711476854825 06UrTxo | motion#0084 +09:56:03.954-0700 871073725821353984 hD-pMVE | motion#6956 +09:56:04.042-0700 871073716501643305 eMtnyhI | motion#9244 +09:56:04.090-0700 871073723879415879 8SwqabU | motion#3372 +09:56:04.148-0700 871073719915790396 C3QlJYo | motion#7215 +09:56:04.247-0700 871073716367425538 jtdgAh0 | motion#1109 +09:56:04.377-0700 871073714681307168 EM2IqMY | motion#9467 +09:56:04.446-0700 871073725955571762 8EpaUk4 | motion#5782 +09:56:04.469-0700 871073722038116403 7ZAZ93I | motion#9974 +09:56:04.494-0700 871073730686771251 j54GWOc | motion#1228 +09:56:04.498-0700 871073724894445639 y3inq_s | motion#2447 +09:56:04.552-0700 871073711837560882 Z8Xr8_U | motion#1305 +09:56:04.556-0700 871073726672797767 L-Ds874 | motion#9776 +09:56:04.706-0700 871073720997904414 rKUtB_Y | motion#1707 +09:56:04.729-0700 871073726630854687 XkY-EW0 | motion#5561 +09:56:04.775-0700 871073722855981107 IYNth3o | motion#2278 +09:56:04.781-0700 871073690916364398 BOal0d0 | motion#0197 +09:56:04.907-0700 871073710935769118 51rbJl4 | motion#1553 +09:56:05.158-0700 871073718498099290 qRQ0-Ac | motion#2294 +09:56:05.332-0700 871073725930426408 S0diZro | motion#8498 +09:56:05.410-0700 871073730737078272 H0auS9o | motion#1292 +09:56:05.419-0700 871073728811892736 4jPaagA | motion#0548 +09:56:05.436-0700 871073727041908796 JBueykg | motion#1163 +09:56:05.462-0700 871073703826456616 KYnKXXg | motion#3292 +09:56:05.468-0700 871073726760898601 D0Gnpgg | motion#9283 +09:56:05.551-0700 871073726819602452 KibxNns | motion#7459 +09:56:05.660-0700 871073713947312218 5GJ_UUQ | motion#5719 +09:56:05.674-0700 871073727012569138 dHEn3lg | motion#1606 +09:56:05.738-0700 871073727645900800 lccLjK0 | motion#6183 +09:56:05.747-0700 871073731693400186 wZzt5gI | motion#8663 +09:56:05.766-0700 871073730418339840 yT5rKwE | motion#8337 +09:56:05.770-0700 871073719391506542 s7avS6M | motion#4220 +09:56:05.783-0700 871073730565132388 43udIHk | motion#2312 +09:56:05.834-0700 871073727012556820 Vw5F7IQ | motion#4070 +09:56:05.869-0700 871073727801085965 974h70E | motion#6643 +09:56:05.881-0700 871073737439604736 X5KI1Qg | motion#1844 +09:56:05.982-0700 871073730737086514 py0BhcY | motion#2018 +09:56:06.060-0700 871073733547261982 In4z43s | motion#0076 +09:56:06.090-0700 871073726970613790 zBKRvII | motion#2077 +09:56:06.099-0700 871073730623836181 7t7X_0s | motion#7116 +09:56:06.163-0700 871073719651545110 zlF9wtg | motion#7490 +09:56:06.175-0700 871073731332681750 QMLO9XM | motion#7228 +09:56:06.239-0700 871073731571744768 c2jg6S8 | motion#9564 +09:56:06.322-0700 871073731471114240 h-G_X84 | motion#4021 +09:56:06.334-0700 871073730338639994 ZI7Sx4s | motion#4733 +09:56:06.380-0700 871073727557812226 v_FAUEo | motion#2689 +09:56:06.397-0700 871073732947509300 ae0dviQ | motion#3805 +09:56:06.410-0700 871073726433730560 cmjPxQg | motion#2336 +09:56:06.429-0700 871073733895393291 POcAuxQ | motion#0548 +09:56:06.473-0700 871073727088050217 Rog-U2g | motion#2101 +09:56:06.490-0700 871073726643458099 iT7YjpM | motion#5168 +09:56:06.492-0700 871073737561227315 uX5EIhE | motion#6572 +09:56:06.496-0700 871073729491374180 7ILdZoY | motion#3741 +09:56:06.498-0700 871073739696140288 EycdNzg | motion#9122 +09:56:06.509-0700 871073730971971614 3h20CT8 | motion#4885 +09:56:06.515-0700 871073719383097365 XRqO36Q | motion#9948 +09:56:06.524-0700 871073738848870432 HRvyRD8 | motion#8470 +09:56:06.528-0700 871073734751047730 BMS3hXo | motion#1769 +09:56:06.543-0700 871073727566184508 G4RM6Fk | motion#1923 +09:56:06.555-0700 871073723963297852 lSzBq_g | motion#7557 +09:56:06.556-0700 871073730456092703 1wcq38M | motion#2796 +09:56:06.770-0700 871073735799607367 UFRuegg | motion#3561 +09:56:07.055-0700 871073722314944563 vF7FRlw | motion#8997 +09:56:07.063-0700 871073738345553970 jDCLut8 | motion#1047 +09:56:07.083-0700 871073734352576512 Ze4SbOM | motion#3609 +09:56:07.154-0700 871073744498593893 h5CNxXE | motion#8974 +09:56:07.239-0700 871073725334835220 2b1HE7c | motion#5073 +09:56:07.266-0700 871073730468646975 kjrCMV4 | motion#0351 +09:56:07.448-0700 871073732817477723 OAcKihg | motion#1538 +09:56:07.486-0700 871073736919507036 iiRnMDY | motion#7171 +09:56:07.489-0700 871073734260310067 foJyV00 | motion#8911 +09:56:07.804-0700 871073733312380988 H7XwyZE | motion#8086 +09:56:07.834-0700 871073736143556638 jcCrnqo | motion#9738 +09:56:07.930-0700 871073740061044756 KMW-GXw | motion#8934 +09:56:08.077-0700 871073732922343474 _o3Mrc4 | motion#9276 +09:56:08.331-0700 871073743831728138 KN1AYt0 | motion#1221 +09:56:08.410-0700 871073739498983475 7CpM40M | motion#4406 +09:56:08.547-0700 871073704245874769 VF-JavQ | motion#1914 +09:56:08.564-0700 871073733727649852 RQIe4w4 | motion#5699 +09:56:08.637-0700 871073736944652340 JopCvnA | motion#3842 +09:56:08.698-0700 871073739230576710 QWVBZzY | motion#8746 +09:56:08.812-0700 871073742074302525 L3StyNU | motion#0424 +09:56:08.926-0700 871073709115453461 vN45zZg | motion#1092 +09:56:08.953-0700 871073747573022781 7oEf3uQ | motion#1580 +09:56:08.976-0700 871073744058200064 7dPTVQ4 | motion#6927 +09:56:08.998-0700 871073739645788161 87gSaZ4 | motion#3133 +09:56:09.178-0700 871073740195237939 Uw-xtII | motion#4073 +09:56:09.231-0700 871073732242858004 04uOeCc | motion#0812 +09:56:09.391-0700 871073745048076289 gNOqLnY | motion#1612 +09:56:09.425-0700 871073749515010090 y_RaxSg | motion#9986 +09:56:09.431-0700 871073741818458204 JlZW_jg | motion#8670 +09:56:09.451-0700 871073741575192586 VweJDss | motion#3156 +09:56:09.464-0700 871073747908587530 lEyjxmU | motion#1429 +09:56:09.593-0700 871073743236132895 6HWtLu0 | motion#7766 +09:56:09.614-0700 871073746092449802 u9XVZ4Q | motion#8750 +09:56:09.656-0700 871073748487372920 PE5-IFI | motion#1316 +09:56:09.660-0700 871073745199071263 ElhHgXg | motion#8389 +09:56:09.694-0700 871073746960646195 CESGWe0 | motion#0622 +09:56:09.723-0700 871073751196893215 CCYo-IM | motion#0919 +09:56:09.782-0700 871073759925268501 5cz11PY | motion#2448 +09:56:09.788-0700 871073743886241903 K-LMgcI | motion#3539 +09:56:09.803-0700 871073752102866954 BX-cSV8 | motion#8710 +09:56:09.835-0700 871073744678952992 DNRU8i4 | motion#2158 +09:56:09.852-0700 871073745454907392 A50XdiE | motion#0286 +09:56:09.855-0700 871073743500361738 Bqj8XZ4 | motion#4780 +09:56:09.857-0700 871073749129130024 3VWKff4 | motion#4768 +09:56:09.890-0700 871073746381848577 WYuJQdg | motion#3153 +09:56:09.954-0700 871073743231942656 ShQO4rQ | motion#6899 +09:56:09.980-0700 871073743156420628 jY2_qEA | motion#5310 +09:56:09.996-0700 871073745891106906 NejAB_g | motion#6598 +09:56:10.260-0700 871073742133002312 bEt55JA | motion#9850 +09:56:10.644-0700 871073750265769984 5rCw00g | motion#7969 +09:56:10.818-0700 871073746524463154 yw5BSlw | motion#2623 +09:56:10.818-0700 871073759686168657 L6lXJ70 | motion#8366 +09:56:10.823-0700 871073755747713034 CLMvJqU | motion#0825 +09:56:10.836-0700 871073728497328199 CckI8k8 | motion#1343 +09:56:11.056-0700 871073763372978186 QOd3RjU | motion#2873 +09:56:11.117-0700 871073751855398933 jU6D-wQ | motion#1696 +09:56:11.128-0700 871073740505636864 Xu17Sas | motion#5188 +09:56:11.141-0700 871073747522691104 ns2nsLc | motion#1571 +09:56:11.220-0700 871073748831330315 EVRoyaM | motion#1005 +09:56:11.268-0700 871073763112931380 xWqezzk | motion#6557 +09:56:11.304-0700 871073740971212800 _7jTu5E | motion#5734 +09:56:11.341-0700 871073758813782096 gPY7ZUA | motion#5638 +09:56:11.368-0700 871073753029808208 w2-Y104 | motion#7708 +09:56:11.408-0700 871073762974531674 SHk8JHs | motion#1447 +09:56:11.461-0700 871073757945532426 GyEYxPM | motion#7997 +09:56:11.637-0700 871073753625419816 4r8LjKw | motion#6315 +09:56:11.641-0700 871073742359507004 nbL0kfY | motion#5350 +09:56:11.719-0700 871073749024251967 JpJ2KkE | motion#6949 +09:56:11.760-0700 871073752648126485 JMNuQVY | motion#2770 +09:56:11.840-0700 871073752052547626 y26XtTM | motion#1796 +09:56:11.973-0700 871073763662364743 ibeb9kE | motion#8325 +09:56:11.978-0700 871073753143054356 H-p4wpc | motion#5063 +09:56:12.014-0700 871073764035670027 Mkj140Y | motion#2933 +09:56:12.052-0700 871073743621996554 sWYPthk | motion#4404 +09:56:12.052-0700 871073764606115850 _mf44DU | motion#2272 +09:56:12.106-0700 871073763985354813 4-k70o0 | motion#6942 +09:56:12.176-0700 871073768234172567 M8N0RnY | motion#1362 +09:56:12.211-0700 871073755563175967 t6XJCFE | motion#6959 +09:56:12.313-0700 871073764304113744 GEyZUwU | motion#0785 +09:56:12.391-0700 871073753885470721 JazThdg | motion#7172 +09:56:13.038-0700 871073758625013760 gl4YWYo | motion#9272 +09:56:13.073-0700 871073769148534864 tdOfAHg | motion#7636 +09:56:13.122-0700 871073756146176020 6E-KRZM | motion#9832 +09:56:13.188-0700 871073756959866881 w1DT4XM | motion#5300 +09:56:13.305-0700 871073764413165588 pOXa5GU | motion#7742 +09:56:13.331-0700 871073765851815948 0vppp8c | motion#6563 +09:56:13.516-0700 871073769060450304 YDMH1ek | motion#1181 +09:56:13.525-0700 871073771803533345 j0uxST0 | motion#7456 +09:56:13.681-0700 871073754451689492 p9pAqbI | motion#9393 +09:56:13.750-0700 871073766288023602 YqkmI7I | motion#4315 +09:56:13.797-0700 871073755236016140 0eUmXEg | motion#9336 +09:56:13.824-0700 871073763154886657 Z2dOS_k | motion#9431 +09:56:13.838-0700 871073774886350848 5uY09cU | motion#3155 +09:56:13.867-0700 871073764320903269 2YDykcU | motion#8377 +09:56:13.992-0700 871073775637119056 Oed0608 | motion#3834 +09:56:14.043-0700 871073763901452319 GdCzyfM | motion#1149 +09:56:14.059-0700 871073776689872943 8WKnho8 | motion#5934 +09:56:14.276-0700 871073773237993513 rdzc_4c | motion#2666 +09:56:14.289-0700 871073769412771911 ZFiN7ZQ | motion#7679 +09:56:14.322-0700 871073757626781716 aUtT2RQ | motion#5660 +09:56:14.857-0700 871073748147638312 4GDDeEs | motion#6158 +09:56:14.917-0700 871073765470138388 0eHmVRs | motion#3751 +09:56:15.096-0700 871073774194290688 VdcN9Sc | motion#2771 +09:56:15.112-0700 871073766250283038 smU6DJ0 | motion#8652 +09:56:15.124-0700 871073780473143386 XwD4NE0 | motion#2681 +09:56:15.150-0700 871073766724223006 kSjjLDE | motion#2769 +09:56:15.227-0700 871073773946810368 _Ht9fcs | motion#1652 +09:56:15.245-0700 871073777142874133 itqhElc | motion#0396 +09:56:15.272-0700 871073776366932029 fGpJZnc | motion#5356 +09:56:15.298-0700 871073764086022154 fHDZ-pU | motion#3903 +09:56:15.387-0700 871073766455787561 U6Qzm-E | motion#9389 +09:56:15.474-0700 871073765004558336 fjUbFPQ | motion#2245 +09:56:15.494-0700 871073766761955379 2R8UOtg | motion#1094 +09:56:15.519-0700 871073780078878752 O9JqJ9g | motion#1746 +09:56:15.540-0700 871073758264320020 mHfObPI | motion#0852 +09:56:15.805-0700 871073777746841670 Pk1UVc0 | motion#3248 +09:56:15.819-0700 871073759115763782 czihKas | motion#5239 +09:56:15.837-0700 871073784604557342 i7mYEsY | motion#0558 +09:56:15.949-0700 871073780859011102 mLnWgSk | motion#4743 +09:56:16.109-0700 871073781056143461 wN8bc7w | motion#8829 +09:56:16.183-0700 871073776064937985 5-XNKy4 | motion#8619 +09:56:16.209-0700 871073745106796595 cWW470s | motion#4218 +09:56:16.274-0700 871073757840687115 tiewtEI | motion#9719 +09:56:16.326-0700 871073759669399593 uKkBiK0 | motion#3299 +09:56:16.335-0700 871073773317656607 5_mKsuM | motion#2475 +09:56:16.580-0700 871073774001324033 liw2cUk | motion#2616 +09:56:16.598-0700 871073781681115166 70eRkfc | motion#9888 +09:56:16.775-0700 871073774626299956 ivjSYqU | motion#4346 +09:56:16.961-0700 871073774794067968 IJFU6KY | motion#5034 +09:56:16.994-0700 871073777180639253 tH8_shU | motion#2652 +09:56:17.007-0700 871073777566507008 fN6O9gU | motion#5563 +09:56:17.038-0700 871073758444683295 ubOhcAk | motion#6826 +09:56:17.070-0700 871073774101995591 r9mD-Xs | motion#9477 +09:56:17.140-0700 871073768804610090 HGlNC6g | motion#8292 +09:56:17.384-0700 871073776203362355 8ZTRCbA | motion#9423 +09:56:17.660-0700 871073784046702612 PmEQ8kI | motion#7177 +09:56:17.850-0700 871073774764716072 4QI7Z4A | motion#0637 +09:56:17.918-0700 871073782037622824 TXTR14k | motion#3803 +09:56:18.040-0700 871073787578306590 d48GjuI | motion#4396 +09:56:18.079-0700 871073777218379796 MQX1y8Y | motion#3853 +09:56:18.183-0700 871073769207255171 ZDkd3Tk | motion#3767 +09:56:18.275-0700 871073765960855554 pHYXKrI | motion#4275 +09:56:18.316-0700 871073782037610527 jPdnpVQ | motion#5442 +09:56:18.402-0700 871073785149800448 U6keeVU | motion#5719 +09:56:18.469-0700 871073784092823602 5gdw_Y4 | motion#4473 +09:56:18.495-0700 871073782838730752 7UL9SKU | motion#4423 +09:56:18.519-0700 871073773984563221 UjnNKjA | motion#8517 +09:56:18.533-0700 871073783727919104 wldhfnI | motion#5068 +09:56:18.569-0700 871073785892196352 Vwf7cPQ | motion#3807 +09:56:18.610-0700 871073775783919646 8aWKOGc | motion#6546 +09:56:18.625-0700 871073766720032808 ePPBK9Q | motion#4686 +09:56:18.636-0700 871073769077235802 a-psDT4 | motion#8996 +09:56:18.669-0700 871073735669608522 KHTYGJw | motion#3986 +09:56:18.707-0700 871073782641598515 W_1Opdk | motion#8583 +09:56:18.782-0700 871073778036264992 VLAgdDI | motion#4288 +09:56:18.814-0700 871073764895514654 VrNJWCc | motion#1206 +09:56:18.940-0700 871073785942536202 dlCiFgs | motion#8100 +09:56:18.948-0700 871073783375622184 ILkB40I | motion#0739 +09:56:18.956-0700 871073765914734662 LXeEWZI | motion#1871 +09:56:18.987-0700 871073787137900616 WMaNZzU | motion#6461 +09:56:19.064-0700 871073782675177533 Kin7OZA | motion#2833 +09:56:19.073-0700 871073785619570738 DdKIIv8 | motion#2212 +09:56:19.095-0700 871073748571287552 FsRUk-4 | motion#8793 +09:56:19.126-0700 871073768469057598 pwt57Ng | motion#7077 +09:56:19.136-0700 871073767936360478 jJci638 | motion#3603 +09:56:19.138-0700 871073782058590211 FQN3zQg | motion#9976 +09:56:19.285-0700 871073777344196678 ujriZhw | motion#3152 +09:56:19.308-0700 871073787020460113 gCr_Q6k | motion#9056 +09:56:19.316-0700 871073765440757770 ISjX_xI | motion#2127 +09:56:19.424-0700 871073781450440704 MmA4qu4 | motion#6478 +09:56:19.574-0700 871073785732816938 Mzec2Vw | motion#6544 +09:56:19.657-0700 871073776652140595 BIljBlQ | motion#8845 +09:56:19.662-0700 871073788572360715 a2TkXOE | motion#3018 +09:56:19.700-0700 871073781509128192 ZRahpIE | motion#0429 +09:56:19.794-0700 871073753159835678 YpB1cX0 | motion#3843 +09:56:19.816-0700 871073786361954385 QX_mC0M | motion#7589 +09:56:19.835-0700 871073784797474876 Blrwslw | motion#8522 +09:56:19.948-0700 871073789876764792 JWCaSj8 | motion#9579 +09:56:20.071-0700 871073793395785788 0dviW_Q | motion#0482 +09:56:20.097-0700 871073787922235433 R-7BaKA | motion#2599 +09:56:20.186-0700 871073775016353832 4UaU2rk | motion#3535 +09:56:20.206-0700 871073799829864489 Fy-Elj8 | motion#7059 +09:56:20.213-0700 871073776782147664 o5CHs-k | motion#1676 +09:56:20.262-0700 871073795497148446 h8zHzgY | motion#0934 +09:56:20.303-0700 871073784780718150 unT7Btw | motion#6251 +09:56:20.369-0700 871073789344092192 WY0LZnw | motion#0503 +09:56:20.372-0700 871073767256891483 w2ejDIk | motion#5155 +09:56:20.378-0700 871073789377658921 YtUjHuA | motion#9506 +09:56:20.498-0700 871073785963479150 oARAOec | motion#8553 +09:56:20.643-0700 871073792796000337 vxC73Yg | motion#7499 +09:56:20.664-0700 871073800593244190 if_CwlU | motion#5450 +09:56:20.670-0700 871073777138688001 gSEUUaI | motion#4784 +09:56:20.685-0700 871073784864575558 goCTBh8 | motion#8901 +09:56:20.761-0700 871073792951209984 7WD3m4c | motion#5712 +09:56:20.803-0700 871073796507963502 37owydk | motion#8066 +09:56:20.829-0700 871073785011396608 _s8Vl_Q | motion#5768 +09:56:20.861-0700 871073763217801257 IxDuOOY | motion#2553 +09:56:20.952-0700 871073799666270208 hAGwze4 | motion#8273 +09:56:21.136-0700 871073798718382090 Rg2nPfc | motion#4147 +09:56:21.202-0700 871073799347527690 G8YAMsM | motion#9825 +09:56:21.215-0700 871073773305073665 VIuWWsw | motion#5793 +09:56:21.229-0700 871073791235731516 A-8STaE | motion#1473 +09:56:21.291-0700 871073781593026593 2Uw6gfw | motion#9458 +09:56:21.372-0700 871073777323241472 yY5fCHE | motion#9825 +09:56:21.730-0700 871073786827505704 I5LC--8 | motion#9059 +09:56:21.830-0700 871073803176931389 Q1UnQXg | motion#0932 +09:56:21.892-0700 871073801075560490 7s_wQSY | motion#1773 +09:56:21.943-0700 871073799901163550 tJUqNf4 | motion#1648 +09:56:22.042-0700 871073803638284358 gi4sqvg | motion#6111 +09:56:22.060-0700 871073792036835349 fDUKGjU | motion#1509 +09:56:22.151-0700 871073763364581447 khrw1-A | motion#4709 +09:56:22.162-0700 871073807903911986 yLcuHdc | motion#5466 +09:56:22.249-0700 871073793827831868 rfBKgJg | motion#0150 +09:56:22.319-0700 871073766497730660 cO0DCxM | motion#8764 +09:56:22.331-0700 871073792712126495 JaIK6jM | motion#6968 +09:56:22.341-0700 871073801125904394 p-kGkNM | motion#6643 +09:56:22.344-0700 871073802178686976 8Cdu4OU | motion#4271 +09:56:22.355-0700 871073804649103440 pjNq4z8 | motion#4696 +09:56:22.444-0700 871073802702970920 iDkPpKo | motion#7476 +09:56:22.519-0700 871073800907800656 pq72O94 | motion#1196 +09:56:22.523-0700 871073806477828197 mhFazjI | motion#7556 +09:56:22.542-0700 871073801012662342 YqTTbDU | motion#7287 +09:56:22.615-0700 871073781152641104 a57AhUY | motion#6581 +09:56:22.620-0700 871073795052552302 JUhotPM | motion#3285 +09:56:22.640-0700 871073783241388162 -jAUW6Y | motion#7690 +09:56:22.649-0700 871073806846943233 DD9IQHc | motion#8147 +09:56:22.670-0700 871073805504749608 QL2tYz8 | motion#3100 +09:56:22.707-0700 871073788995981383 qhpLkYY | motion#6978 +09:56:22.746-0700 871073791365763122 1pV0GeU | motion#5286 +09:56:22.752-0700 871073798995214396 PYj_Zpw | motion#7921 +09:56:22.806-0700 871073800492576849 q7MSy1w | motion#1122 +09:56:22.873-0700 871073792515002379 5-GThHU | motion#6601 +09:56:22.873-0700 871073791139282964 vebC8tE | motion#6723 +09:56:22.875-0700 871073808465952818 gly0tvA | motion#2836 +09:56:22.892-0700 871073795883040880 d0jV9H4 | motion#0418 +09:56:22.906-0700 871073793727156274 ORjmdYY | motion#9406 +09:56:22.913-0700 871073806343622658 HakYlYI | motion#6784 +09:56:22.915-0700 871073787393740911 hcHpklI | motion#7345 +09:56:22.940-0700 871073799678857256 dk9rVU0 | motion#3639 +09:56:22.942-0700 871073785674104832 WKJEnU8 | motion#0379 +09:56:22.945-0700 871073806150684713 Uhe-5Zg | motion#1943 +09:56:22.961-0700 871073793869774848 jre3_hw | motion#9189 +09:56:22.967-0700 871073789700616252 hr-SJQI | motion#1853 +09:56:22.975-0700 871073802291908679 0sEmrvI | motion#0442 +09:56:22.976-0700 871073786273861722 TELpG5o | motion#9195 +09:56:22.991-0700 871073800119275550 oMjQFqs | motion#6863 +09:56:23.051-0700 871073802786840667 ZcwprsE | motion#7702 +09:56:23.051-0700 871073796252106802 b1L1m2w | motion#6237 +09:56:23.199-0700 871073803063664660 BKj8epQ | motion#3036 +09:56:23.244-0700 871073786328416326 NSDaPdk | motion#0602 +09:56:23.251-0700 871073807929065514 niRkRiU | motion#0594 +09:56:23.316-0700 871073784159936523 MoFs5ag | motion#6308 +09:56:23.333-0700 871073783706955857 Jg7Yikg | motion#6345 +09:56:23.335-0700 871073789490913341 6iSJqMA | motion#0202 +09:56:23.353-0700 871073809665519677 x19nD58 | motion#9949 +09:56:23.376-0700 871073812697980938 wc1gMRA | motion#7085 +09:56:23.396-0700 871073782654173184 aEgh9hk | motion#7355 +09:56:23.429-0700 871073801021050930 bMhY2LI | motion#8438 +09:56:23.531-0700 871073799058116608 BDqU5lk | motion#3087 +09:56:23.583-0700 871073804628135977 QV3-8Hk | motion#0313 +09:56:23.594-0700 871073810378530846 xeHi9qY | motion#2425 +09:56:23.605-0700 871073809585807410 qhmkixU | motion#6402 +09:56:23.771-0700 871073810974117898 vUciyOg | motion#4533 +09:56:23.900-0700 871073809162190899 HO-2HYc | motion#8323 +09:56:23.925-0700 871073806163263528 fsVkqOQ | motion#8987 +09:56:23.936-0700 871073811066408980 LA8Nzb4 | motion#8460 +09:56:23.966-0700 871073811104137277 RkY0jTk | motion#1695 +09:56:24.035-0700 871073805265682483 VXxYi6w | motion#2082 +09:56:24.188-0700 871073815613038612 LQgkR1c | motion#7222 +09:56:24.200-0700 871073813490716722 6_qsEmQ | motion#0856 +09:56:24.249-0700 871073813285191731 aKnH_mE | motion#0400 +09:56:24.338-0700 871073784931688518 sWN4J0I | motion#6723 +09:56:24.356-0700 871073810521161749 DQpp26A | motion#3675 +09:56:24.368-0700 871073816464461867 wrdT9Rc | motion#9938 +09:56:24.379-0700 871073813415211068 t6xwaFs | motion#8969 +09:56:24.390-0700 871073806406516796 BcLFDI4 | motion#8946 +09:56:24.428-0700 871073806423322694 oyy251o | motion#1632 +09:56:24.540-0700 871073810433048596 Hcal9Yc | motion#9736 +09:56:24.576-0700 871073802514202705 WKh0PrQ | motion#9763 +09:56:24.585-0700 871073804019990579 QVXZXoc | motion#7519 +09:56:24.598-0700 871073814107283516 EwBLy3c | motion#7927 +09:56:24.651-0700 871073812106596492 LafrUDA | motion#8358 +09:56:24.685-0700 871073812647645256 94BROBE | motion#6623 +09:56:24.726-0700 871073812479873105 m_lWkvo | motion#2223 +09:56:24.746-0700 871073805680914432 AW6Gm9g | motion#0532 +09:56:24.754-0700 871073809778769921 lT1xxvg | motion#2189 +09:56:24.762-0700 871073816305102878 oEa-QJU | motion#0694 +09:56:24.767-0700 871073815931801600 H8UefBA | motion#4975 +09:56:24.813-0700 871073810818945034 tQPWxgE | motion#9831 +09:56:24.912-0700 871073812903501884 _2_Ydwo | motion#6373 +09:56:24.933-0700 871073812152725525 oIjpZdQ | motion#1004 +09:56:24.934-0700 871073811221594152 aEB6Xxg | motion#3042 +09:56:25.143-0700 871073802031890442 hcayRug | motion#9189 +09:56:25.171-0700 871073813763330048 lKWo1z4 | motion#7626 +09:56:25.248-0700 871073809799716875 rCXxQ_Q | motion#1166 +09:56:25.301-0700 871073802539376650 gk5kzrs | motion#8903 +09:56:25.314-0700 871073802937839648 4m7ZUf8 | motion#2643 +09:56:25.615-0700 871073811406131220 jwWYqEc | motion#4662 +09:56:25.621-0700 871073813331312760 8j9hoWc | motion#7951 +09:56:25.678-0700 871073817332686878 liY408M | motion#2363 +09:56:25.763-0700 871073825868103731 8-2wmZM | motion#9100 +09:56:25.773-0700 871073812089798697 YQrRu1g | motion#8453 +09:56:25.835-0700 871073793152524359 VNlitmU | motion#2132 +09:56:25.844-0700 871073802908495902 3Rwbq3U | motion#0555 +09:56:25.860-0700 871073812412784680 6Fi0sWw | motion#0586 +09:56:25.864-0700 871073816716132353 0isZ2vQ | motion#2061 +09:56:25.880-0700 871073812626673714 inQxIus | motion#3171 +09:56:26.033-0700 871073821531197440 LQGj1sw | motion#5336 +09:56:26.094-0700 871073812748312637 MVThH74 | motion#2628 +09:56:26.235-0700 871073810529525770 9CHGMOg | motion#4587 +09:56:26.380-0700 871073809791340634 Tk9R8yM | motion#4579 +09:56:26.421-0700 871073812903514182 ph47jRs | motion#7267 +09:56:26.423-0700 871073810651152464 beE3Lck | motion#1577 +09:56:26.447-0700 871073816749686894 MRUro74 | motion#1800 +09:56:26.454-0700 871073819782160425 t9zHcvw | motion#2952 +09:56:26.509-0700 871073816724537466 2BhH77k | motion#3774 +09:56:26.558-0700 871073825507405865 o6xc3MU | motion#4801 +09:56:26.595-0700 871073808927318057 bDUycZ0 | motion#4787 +09:56:26.688-0700 871073806251356190 G1cKG1s | motion#7770 +09:56:26.753-0700 871073817710198794 nJaGW08 | motion#5902 +09:56:26.759-0700 871073811544543243 DPhUxXU | motion#2888 +09:56:26.763-0700 871073811980771328 0IN0t_A | motion#9267 +09:56:26.884-0700 871073824353951804 l_zEYeQ | motion#0657 +09:56:26.939-0700 871073826115563552 mo6cQ-o | motion#8876 +09:56:26.944-0700 871073823762546748 eH1BjOE | motion#9530 +09:56:27.037-0700 871073818553241600 aLUcoJw | motion#6640 +09:56:27.146-0700 871073812857368597 mSK5XXE | motion#0990 +09:56:27.298-0700 871073813050298369 Hn0EuhE | motion#4958 +09:56:27.344-0700 871073823175368714 TXu07ZY | motion#8016 +09:56:27.346-0700 871073815436873729 DiEkveA | motion#8684 +09:56:27.383-0700 871073788391985172 -mp4vxE | motion#0684 +09:56:27.551-0700 871073821355049051 Gs2Im2o | motion#1595 +09:56:27.553-0700 871073801977352243 8sjZB2A | motion#8315 +09:56:27.630-0700 871073810198188153 L5Fob9o | motion#1370 +09:56:27.632-0700 871073827008946196 qhvATXY | motion#3659 +09:56:27.726-0700 871073820449054730 Y-evtAI | motion#9744 +09:56:27.873-0700 871073818934919209 gWYkPUk | motion#2570 +09:56:27.934-0700 871073798357647360 wTUMFZM | motion#4205 +09:56:27.947-0700 871073823414423553 LS9NS2s | motion#5967 +09:56:27.957-0700 871073813973053450 HEP9tP8 | motion#3217 +09:56:27.967-0700 871073820272898088 Mk_i2V4 | motion#7222 +09:56:28.058-0700 871073823418617887 peCxNvY | motion#6426 +09:56:28.059-0700 871073829416480809 wv1f1L0 | motion#6462 +09:56:28.092-0700 871073814384095233 vT8AhKU | motion#4795 +09:56:28.092-0700 871073823464767498 hOYO_Os | motion#6451 +09:56:28.182-0700 871073820344209458 OIPu5NU | motion#2116 +09:56:28.189-0700 871073810340773908 DJn_2Mc | motion#1864 +09:56:28.195-0700 871073815944388659 U6a0uas | motion#1168 +09:56:28.219-0700 871073821388574830 bK9Yvx4 | motion#0270 +09:56:28.292-0700 871073821912870972 E4qWU6o | motion#1620 +09:56:28.322-0700 871073821371797554 g1ekKXQ | motion#5388 +09:56:28.356-0700 871073817752129546 rNaZSuM | motion#4049 +09:56:28.360-0700 871073825947791371 E-3lXgk | motion#8723 +09:56:28.367-0700 871073825717104700 9nn6Aho | motion#4196 +09:56:28.425-0700 871073830037237771 3HSKqe8 | motion#4413 +09:56:28.548-0700 871073823108259841 xTtePio | motion#7018 +09:56:28.552-0700 871073824525930606 obAyCu4 | motion#5576 +09:56:28.561-0700 871073826967015454 gNi-XKs | motion#9214 +09:56:28.587-0700 871073820608446494 KgEsroM | motion#0855 +09:56:28.587-0700 871073831022907434 mdsPf0k | motion#2690 +09:56:28.591-0700 871073815315226664 wAqdx98 | motion#2551 +09:56:28.602-0700 871073819404664872 QaIH9gE | motion#2491 +09:56:28.629-0700 871073821849968711 fReEmh4 | motion#8283 +09:56:28.636-0700 871073826019086418 smRBITI | motion#0886 +09:56:28.753-0700 871073822953062411 Cgvn1jI | motion#2868 +09:56:28.769-0700 871073825461252126 DmgsXUc | motion#0189 +09:56:28.772-0700 871073830498611280 -UYHzqs | motion#3743 +09:56:28.789-0700 871073825243136051 1uWTWiE | motion#6207 +09:56:28.829-0700 871073821359230986 LYBGjbo | motion#1280 +09:56:28.878-0700 871073827940085760 RAAOY4A | motion#8333 +09:56:28.929-0700 871073822655275038 ZDsc5y8 | motion#7074 +09:56:29.167-0700 871073827591970818 u3tRod8 | motion#8427 +09:56:29.317-0700 871073829961728040 Md6RqIQ | motion#9851 +09:56:29.321-0700 871073822357467197 G6RvlPQ | motion#6780 +09:56:29.323-0700 871073821237600277 ZPzMBBQ | motion#0162 +09:56:29.351-0700 871073827835236372 q_Wx_Qc | motion#1330 +09:56:29.376-0700 871073825624834188 RqOMT84 | motion#5715 +09:56:29.560-0700 871073820470050836 UPuH6-g | motion#0726 +09:56:29.655-0700 871073826333655040 2ozwHJs | motion#5136 +09:56:29.838-0700 871073827642294392 I8KoI2c | motion#7386 +09:56:29.895-0700 871073831853383731 b3AXrNQ | motion#5467 +09:56:29.938-0700 871073823972274237 C3ffwsQ | motion#2864 +09:56:29.973-0700 871073826950230027 WhUvqZE | motion#9819 +09:56:30.234-0700 871073832637706270 2XbFuFk | motion#3048 +09:56:30.255-0700 871073823628353650 GURKve8 | motion#9791 +09:56:30.267-0700 871073743651360828 tzUIfXM | motion#8255 +09:56:30.410-0700 871073840321663056 cj3WGHg | motion#5272 +09:56:30.447-0700 871073831517843467 uE7TOYA | motion#2529 +09:56:30.452-0700 871073827285786664 Rncslgw | motion#9630 +09:56:30.492-0700 871073831693996032 l6EPGR8 | motion#0429 +09:56:30.500-0700 871073823464763432 Ko7WdCQ | motion#9882 +09:56:30.504-0700 871073826451095552 ZD-tXh4 | motion#1109 +09:56:30.738-0700 871073828485365801 8CNY2zw | motion#0332 +09:56:30.843-0700 871073821908684830 bdlkkWs | motion#7109 +09:56:30.945-0700 871073833333948426 QNAymFE | motion#7805 +09:56:30.960-0700 871073842649522247 AIL2JQE | motion#6684 +09:56:30.982-0700 871073824370741289 5qPUD1g | motion#1505 +09:56:31.024-0700 871073842813075567 I1U5oqU | motion#7610 +09:56:31.134-0700 871073842171379722 ddpjLlU | motion#7091 +09:56:31.150-0700 871073839247945740 eDUnMtw | motion#0435 +09:56:31.164-0700 871073834084761681 sEtMi4o | motion#5774 +09:56:31.316-0700 871073830888693832 fFxJQko | motion#3562 +09:56:31.449-0700 871073836936871956 Yv5MO-8 | motion#9255 +09:56:31.508-0700 871073841735139349 utBldQw | motion#6875 +09:56:31.511-0700 871073834265108481 F5pwpQ8 | motion#0694 +09:56:31.542-0700 871073836311912509 rNTS8FM | motion#1686 +09:56:31.645-0700 871073842402041866 d-U53kY | motion#6464 +09:56:31.676-0700 871073836416782356 goUEIgM | motion#8477 +09:56:31.686-0700 871073838195175444 gPncvzM | motion#2725 +09:56:31.774-0700 871073841466707998 Ytg7XFc | motion#4249 +09:56:31.882-0700 871073847682666517 HN2dk9o | motion#7927 +09:56:32.041-0700 871073840464277574 BK8j4Zk | motion#0668 +09:56:32.070-0700 871073817286574160 B83lAGM | motion#9466 +09:56:32.076-0700 871073836525821992 sFzB1TQ | motion#2362 +09:56:32.162-0700 871073822189690901 b1YUoaI | motion#2697 +09:56:32.243-0700 871073832788709396 z1mQ6no | motion#7131 +09:56:32.257-0700 871073844109115412 rgoDy6Y | motion#9441 +09:56:32.301-0700 871073841189904435 5yMk1is | motion#0367 +09:56:32.366-0700 871073842825658368 Qs3wCIE | motion#0393 +09:56:32.387-0700 871073830599290880 0jl2NJQ | motion#3407 +09:56:32.389-0700 871073837964468234 -TIxXWs | motion#4306 +09:56:32.470-0700 871073827071864873 QMVqvKc | motion#9538 +09:56:32.546-0700 871073830746062869 hRBQ6XQ | motion#2045 +09:56:32.552-0700 871073823657697381 OUG2HwA | motion#7070 +09:56:32.611-0700 871073835116560384 zMxlmag | motion#6012 +09:56:32.626-0700 871073836647456779 W_0awQY | motion#1276 +09:56:32.714-0700 871073833745006613 oZJ0BaI | motion#6665 +09:56:33.207-0700 871073839419908096 oGOUjL8 | motion#4589 +09:56:33.264-0700 871073847045132308 qj0qp6Y | motion#6846 +09:56:33.519-0700 871073857040167002 ksHfZxI | motion#6135 +09:56:33.591-0700 871073849645604956 YViSX4o | motion#7229 +09:56:33.627-0700 871073856633319465 b_9BGrA | motion#3619 +09:56:33.641-0700 871073848194367530 uD_w_qg | motion#5474 +09:56:33.807-0700 871073852086689842 5MSLCxs | motion#0742 +09:56:33.908-0700 871073846738944082 23zHslU | motion#9945 +09:56:33.969-0700 871073854741696532 _pMnIPc | motion#9522 +09:56:34.000-0700 871073857396670504 44mZgT4 | motion#0924 +09:56:34.006-0700 871073846873182279 PM4koe8 | motion#4866 +09:56:34.014-0700 871073827893944352 wNmTzsk | motion#8494 +09:56:34.027-0700 871073844297891882 gMuvwb4 | motion#4694 +09:56:34.155-0700 871073845879119932 XvoLXT8 | motion#9280 +09:56:34.191-0700 871073847422636052 RcDWBBw | motion#0161 +09:56:34.427-0700 871073845249998890 OIFLNtg | motion#4726 +09:56:34.567-0700 871073841697402900 WVXP1cs | motion#1672 +09:56:34.567-0700 871073847300997161 fGwAaFU | motion#0525 +09:56:34.639-0700 871073846558588988 4KTBZZk | motion#3001 +09:56:34.688-0700 871073847871406202 4XmX3Pg | motion#5799 +09:56:34.704-0700 871073839805763664 hZS2GnE | motion#3780 +09:56:34.716-0700 871073845510021160 EElBzKE | motion#5388 +09:56:34.845-0700 871073855328907264 xTHcyoc | motion#4238 +09:56:35.014-0700 871073852745211974 c0MApnE | motion#1658 +09:56:35.050-0700 871073852183162941 yJ8XA6A | motion#9337 +09:56:35.099-0700 871073851465945138 7md6w2E | motion#2265 +09:56:35.113-0700 871073851839217746 mfkauFo | motion#5120 +09:56:35.150-0700 871073852153806918 dJyRbpk | motion#2890 +09:56:35.150-0700 871073851180732416 s8PxCuQ | motion#0186 +09:56:35.291-0700 871073847733002281 f8DTLa0 | motion#0947 +09:56:35.292-0700 871073856830464030 Cw0zzmc | motion#0304 +09:56:35.330-0700 871073845132533811 CEJWK3Y | motion#7222 +09:56:35.335-0700 871073851931517008 B8j8ZXw | motion#0251 +09:56:35.396-0700 871073851797274645 OutytxQ | motion#0577 +09:56:35.439-0700 871073849607852133 dhUPF70 | motion#7872 +09:56:35.506-0700 871073861062512670 RjRoB0g | motion#6896 +09:56:35.511-0700 871073850853560421 duaYBdQ | motion#0166 +09:56:35.656-0700 871073853361770496 ukwbD1c | motion#7770 +09:56:35.727-0700 871073846374043670 o_d0Mb8 | motion#8643 +09:56:35.858-0700 871073857564459018 RDTD33k | motion#4447 +09:56:35.911-0700 871073868935213117 Yd6wGwE | motion#1797 +09:56:36.121-0700 871073847246463046 bkltHMI | motion#3289 +09:56:36.196-0700 871073869681811466 W3TSsM8 | motion#7748 +09:56:36.236-0700 871073860039086130 ang5Ypo | motion#6930 +09:56:36.266-0700 871073861834272799 kvAUXXY | motion#3802 +09:56:36.348-0700 871073859040837662 EzPCDXw | motion#9721 +09:56:36.459-0700 871073852678094889 tmbf0yw | motion#2604 +09:56:36.504-0700 871073846206267402 1bUx-E0 | motion#3606 +09:56:36.510-0700 871073852355125309 FxMA9vI | motion#1329 +09:56:36.598-0700 871073858042601542 YIKMnaA | motion#4684 +09:56:36.603-0700 871073861561626675 983fQOo | motion#3659 +09:56:36.637-0700 871073849893072946 OUYPqlk | motion#5736 +09:56:36.659-0700 871073854183841882 KMLrUKQ | motion#5498 +09:56:36.778-0700 871073867152637962 7Y9os8g | motion#6903 +09:56:36.781-0700 871073860781506591 RONLrsI | motion#2877 +09:56:36.848-0700 871073845589733416 VRUX1c8 | motion#0612 +09:56:36.887-0700 871073847208734792 -BXVKII | motion#0620 +09:56:37.133-0700 871073861205110804 _qGBOZc | motion#5356 +09:56:37.204-0700 871073847695253504 3iosJbI | motion#3581 +09:56:37.210-0700 871073872777195610 3WX23x0 | motion#0492 +09:56:37.216-0700 871073860924088343 jQFGlB4 | motion#3467 +09:56:37.230-0700 871073859305095208 pWBwwOM | motion#3937 +09:56:37.231-0700 871073859854544916 if--4FQ | motion#9268 +09:56:37.291-0700 871073873158893599 mNInEH0 | motion#5376 +09:56:37.294-0700 871073864443117599 phdPM_o | motion#7735 +09:56:37.309-0700 871073860253020180 Elhl07k | motion#2149 +09:56:37.320-0700 871073846759919627 71bJFIM | motion#6113 +09:56:37.383-0700 871073862920568893 gWWyVEY | motion#1693 +09:56:37.433-0700 871073872907206656 g5w-OMo | motion#1708 +09:56:37.560-0700 871073859091197982 OHRfxNA | motion#5390 +09:56:37.570-0700 871073863478435840 Q7p6WrE | motion#9926 +09:56:37.637-0700 871073863763648553 tGq7IXk | motion#8779 +09:56:37.643-0700 871073849230381076 YKN0C_0 | motion#2703 +09:56:37.903-0700 871073873028841482 0L8hnmk | motion#4641 +09:56:37.936-0700 871073860924092466 qXzV0Hw | motion#6110 +09:56:37.965-0700 871073841370243093 j6lfmsY | motion#9159 +09:56:37.967-0700 871073867089707028 s9Dgvbs | motion#7349 +09:56:38.083-0700 871073859984584747 wYNX_fY | motion#7046 +09:56:38.085-0700 871073863230976040 1mdz8MI | motion#4579 +09:56:38.086-0700 871073857438642216 5RKsOAM | motion#1355 +09:56:38.161-0700 871073860609515580 uVRxszI | motion#8632 +09:56:38.247-0700 871073863629410335 uwqP1Rg | motion#4131 +09:56:38.285-0700 871073873515405342 5FQhMTA | motion#2691 +09:56:38.433-0700 871073865588166787 DG4nWro | motion#5073 +09:56:38.638-0700 871073861872001075 HM6Gbq0 | motion#5818 +09:56:38.660-0700 871073859795820564 J3ozADo | motion#3327 +09:56:39.121-0700 871073863549734922 Jk2Zmt0 | motion#2623 +09:56:39.142-0700 871073859309281281 FPGW-m0 | motion#6229 +09:56:39.184-0700 871073877005058068 Crp67Js | motion#0893 +09:56:39.334-0700 871073870147383357 MAnEneY | motion#0263 +09:56:39.349-0700 871073877302837298 -F_0QUg | motion#2803 +09:56:39.429-0700 871073868767453184 OTU0tcU | motion#7578 +09:56:39.450-0700 871073866410246164 hoI2Xz4 | motion#1072 +09:56:39.551-0700 871073868113125488 JQcBxio | motion#9648 +09:56:39.645-0700 871073866691268629 RnaHNec | motion#4346 +09:56:39.665-0700 871073875901964349 odMXREs | motion#3045 +09:56:39.704-0700 871073873582493746 7gCkf60 | motion#1061 +09:56:39.768-0700 871073863302270987 KFGLaJE | motion#8219 +09:56:39.825-0700 871073851109437450 W6zwkyk | motion#4939 +09:56:39.888-0700 871073875709009962 IAbEQYU | motion#1726 +09:56:39.979-0700 871073873930633257 GLi0Sdg | motion#5236 +09:56:40.021-0700 871073882285670461 vq4olHc | motion#8011 +09:56:40.022-0700 871073876367519794 t4P6HT0 | motion#7796 +09:56:40.155-0700 871073873561526373 bwbnMsY | motion#2311 +09:56:40.201-0700 871073877109923861 cZWLRxI | motion#8282 +09:56:40.205-0700 871073876178792469 pruKz1Q | motion#7363 +09:56:40.274-0700 871073873569914890 eSiIJqk | motion#5810 +09:56:40.350-0700 871073878045245490 VoT2kRM | motion#7276 +09:56:40.394-0700 871073864048848946 zff4YbM | motion#5880 +09:56:40.413-0700 871073847040954408 ubj-UOc | motion#8144 +09:56:40.483-0700 871073877164453928 XLui_BI | motion#6010 +09:56:40.508-0700 871073860953460806 Yi4foAo | motion#2022 +09:56:40.575-0700 871073867660144680 nRY-JoY | motion#8733 +09:56:40.606-0700 871073882440867850 D5e1n94 | motion#3409 +09:56:40.620-0700 871073874639454218 mhkzm_c | motion#0594 +09:56:40.815-0700 871073865059676200 9MaRPlw | motion#9350 +09:56:41.199-0700 871073884739338240 5KXg9Jo | motion#0406 +09:56:41.394-0700 871073876350730250 i4WQHi0 | motion#4440 +09:56:41.398-0700 871073854137729034 hRWrSxo | motion#2561 +09:56:41.699-0700 871073877126701058 D8PMEUk | motion#9111 +09:56:41.719-0700 871073884059893810 ClZhiFM | motion#0764 +09:56:41.780-0700 871073865479114794 G3zkgF0 | motion#4975 +09:56:41.804-0700 871073882696716368 K0Ihpgg | motion#2660 +09:56:41.829-0700 871073876958912572 2HfokAY | motion#7348 +09:56:41.920-0700 871073885431423037 elICKtc | motion#3798 +09:56:41.955-0700 871073885922131978 5mnxYmc | motion#8129 +09:56:41.978-0700 871073689708417065 B6OnV04 | motion#8442 +09:56:42.034-0700 871073866380886027 hZwzIJg | motion#8947 +09:56:42.048-0700 871073882772226048 B9DbVwg | motion#2524 +09:56:42.050-0700 871073875306369114 svaST6g | motion#2541 +09:56:42.149-0700 871073887100760074 3qRZMLs | motion#0300 +09:56:42.176-0700 871073884298952776 SJmGtVc | motion#6765 +09:56:42.204-0700 871073884865183774 0-xsD1c | motion#6620 +09:56:42.216-0700 871073872273879041 2ngVmWY | motion#3511 +09:56:42.257-0700 871073883942420480 zlsHtWY | motion#7108 +09:56:42.261-0700 871073885917949982 0yyQvJE | motion#3530 +09:56:42.279-0700 871073866955522088 s67tHZY | motion#7715 +09:56:42.313-0700 871073885532094555 f7DKOOY | motion#3815 +09:56:42.352-0700 871073887058817044 bN6YOlQ | motion#9440 +09:56:42.458-0700 871073882507984976 a1yXDIg | motion#3212 +09:56:42.545-0700 871073875717419009 MhdV8xs | motion#9946 +09:56:42.612-0700 871073886006038570 P9Hj16k | motion#1495 +09:56:42.640-0700 871073889176940564 S0oB8-M | motion#6273 +09:56:42.717-0700 871073887700541540 gDYcG7A | motion#6943 +09:56:42.906-0700 871073874501046283 hlIpRws | motion#1399 +09:56:42.950-0700 871073883908886549 O_OysLc | motion#5390 +09:56:43.058-0700 871073884164718665 8yIol8E | motion#9082 +09:56:43.099-0700 871073895397085245 2F5DE2Y | motion#4676 +09:56:43.142-0700 871073883128725525 DOoTt1E | motion#2082 +09:56:43.169-0700 871073883900502077 yNQ3XcA | motion#9652 +09:56:43.172-0700 871073896424685589 FFCs0Mg | motion#4623 +09:56:43.185-0700 871073892419125258 FVERZOg | motion#9522 +09:56:43.188-0700 871073892540755968 t1dt8BA | motion#6702 +09:56:43.240-0700 871073885485953054 rCNlw40 | motion#9561 +09:56:43.381-0700 871073873737682965 GrDhq4E | motion#6312 +09:56:43.404-0700 871073892448501780 SI_peTg | motion#2782 +09:56:43.450-0700 871073882843537428 bzUge4A | motion#6477 +09:56:43.491-0700 871073894969270345 kxfKvyA | motion#3130 +09:56:43.568-0700 871073886794559498 i43Pjdo | motion#5472 +09:56:43.579-0700 871073892230385745 c5eVNBI | motion#2364 +09:56:43.667-0700 871073895132844052 6FJ7UOM | motion#7026 +09:56:43.716-0700 871073893841002586 2naO7f4 | motion#8171 +09:56:43.764-0700 871073889315352618 4bb63AI | motion#1527 +09:56:43.768-0700 871073886509367308 oHuCYjY | motion#3047 +09:56:43.780-0700 871073885930528841 DjEamG8 | motion#2509 +09:56:43.784-0700 871073896781197393 KxA9tM4 | motion#3250 +09:56:43.805-0700 871073894537244702 LySCgVs | motion#8568 +09:56:43.977-0700 871073872735264808 SWZBYcg | motion#6405 +09:56:43.987-0700 871073891467034764 MwRphkI | motion#5784 +09:56:43.989-0700 871073876443017256 6JA9qC8 | motion#4990 +09:56:44.012-0700 871073893807448144 _U9IMjM | motion#4009 +09:56:44.022-0700 871073895216713739 3qh-Wa4 | motion#6209 +09:56:44.033-0700 871073879295164476 nPoiQn8 | motion#0838 +09:56:44.081-0700 871073886115074048 i9wta-4 | motion#5822 +09:56:44.188-0700 871073875860013126 0xzCHIU | motion#1515 +09:56:44.230-0700 871073885938933771 JILIiGE | motion#4765 +09:56:44.289-0700 871073898777681980 qquyJOc | motion#1187 +09:56:44.293-0700 871073879077048401 uGh9iaU | motion#8037 +09:56:44.393-0700 871073892570128414 8ZX33Pw | motion#6749 +09:56:44.592-0700 871073897011896361 _SypjHI | motion#8240 +09:56:44.671-0700 871073893832601690 klfFbus | motion#5384 +09:56:44.699-0700 871073886605815888 aXR_KR8 | motion#9443 +09:56:44.761-0700 871073879416766515 9UO86Ss | motion#0232 +09:56:44.774-0700 871073892293292113 J-KzdrU | motion#0068 +09:56:44.812-0700 871073884991004723 mojaY7w | motion#3818 +09:56:44.814-0700 871073893115371612 alp-Nn8 | motion#7548 +09:56:44.837-0700 871073896785379409 ZKW9gLE | motion#8193 +09:56:44.898-0700 871073887092371488 AYIA2JA | motion#3251 +09:56:44.900-0700 871073901193601054 Mrpb6bw | motion#0948 +09:56:44.907-0700 871073893094400082 Nh7QbrY | motion#4893 +09:56:44.934-0700 871073901764038707 ew8xPd8 | motion#7154 +09:56:44.945-0700 871073897859141643 21opGDI | motion#3629 +09:56:44.986-0700 871073893505433661 Onqpyi0 | motion#8314 +09:56:45.018-0700 871073887981555814 SGZ9O0c | motion#2092 +09:56:45.026-0700 871073887381757962 1AETmHc | motion#4362 +09:56:45.029-0700 871073897410351104 3fVF_3g | motion#6538 +09:56:45.038-0700 871073887931232277 ahC2eAc | motion#0438 +09:56:45.044-0700 871073889571209297 sP6EvFI | motion#3573 +09:56:45.057-0700 871073880016584744 2lT2RBU | motion#7403 +09:56:45.062-0700 871073900166013038 grLXVn8 | motion#4568 +09:56:45.072-0700 871073900249874502 X-C9s_k | motion#9098 +09:56:45.171-0700 871073888367427694 ymEv7k0 | motion#9453 +09:56:45.249-0700 871073900476379207 QZQSLGw | motion#3831 +09:56:45.285-0700 871073896617639946 Ntb6nxA | motion#7662 +09:56:45.310-0700 871073879525838938 I-b3TTY | motion#7204 +09:56:45.445-0700 871073892100374589 gtVL7XE | motion#8418 +09:56:45.457-0700 871073893790662656 T7tjjWc | motion#1473 +09:56:45.501-0700 871073902779068417 QUogLR4 | motion#3518 +09:56:45.503-0700 871073896680546324 oN-_2Ew | motion#8676 +09:56:45.536-0700 871073893702598757 obvUyA4 | motion#6953 +09:56:45.559-0700 871073886693900318 A5khXss | motion#1680 +09:56:45.671-0700 871073895174778951 6iZ97Vo | motion#7159 +09:56:45.739-0700 871073902284128337 BJBi0mo | motion#5437 +09:56:45.776-0700 871073887998328933 nNG9bDw | motion#5256 +09:56:45.790-0700 871073892943405077 eNYrBOk | motion#3210 +09:56:45.897-0700 871073895690686525 dDVHyD4 | motion#2768 +09:56:45.927-0700 871073896919617636 eL-FjIw | motion#8411 +09:56:46.161-0700 871073893329281044 jSnySeU | motion#5080 +09:56:46.463-0700 871073903538229311 Rt7D6WI | motion#2322 +09:56:46.500-0700 871073886672920656 cwNJ05E | motion#0095 +09:56:46.708-0700 871073906600054875 YJ5JsFM | motion#9205 +09:56:46.716-0700 871073901382352926 v6ycsdM | motion#4205 +09:56:46.792-0700 871073907057254441 gWq5ZPk | motion#2295 +09:56:46.813-0700 871073913910739054 foCSff4 | motion#7674 +09:56:46.941-0700 871073905526321183 mgDMTZw | motion#2064 +09:56:46.968-0700 871073901155844186 ALC_Ek0 | motion#1312 +09:56:47.070-0700 871073901059395615 E2cM6XY | motion#5032 +09:56:47.105-0700 871073905345966100 5sC5_iE | motion#9099 +09:56:47.115-0700 871073900224741396 1Tmf60w | motion#8590 +09:56:47.164-0700 871073908256800799 rIFhy6w | motion#9572 +09:56:47.168-0700 871073913935888465 iou9QVA | motion#1268 +09:56:47.172-0700 871073904112832532 RYHOqqs | motion#4506 +09:56:47.235-0700 871073904184156290 TvbqQ9I | motion#4081 +09:56:47.344-0700 871073910957936742 Mv0aZag | motion#8355 +09:56:47.352-0700 871073903538241637 Bs7__VI | motion#6045 +09:56:47.357-0700 871073905178210374 ooGbGGc | motion#5780 +09:56:47.514-0700 871073896772825168 lRk8gjc | motion#6303 +09:56:47.547-0700 871073907707355186 T3qdje8 | motion#8067 +09:56:47.610-0700 871073892561748058 Vzc73lo | motion#5694 +09:56:47.682-0700 871073902141517884 hb_jOio | motion#4389 +09:56:47.684-0700 871073896852496416 NVI0fys | motion#4790 +09:56:47.689-0700 871073904041549844 44jc4Mo | motion#3031 +09:56:47.713-0700 871073901449461760 ksbh2Zs | motion#8681 +09:56:47.724-0700 871073904322576445 RhAXiGA | motion#2642 +09:56:47.744-0700 871073903617908777 s1Hmn_M | motion#2422 +09:56:47.755-0700 871073902657437699 aXPgMqc | motion#4693 +09:56:47.769-0700 871073900132462664 GLypl6M | motion#9292 +09:56:47.789-0700 871073900354764800 1Cb5bO8 | motion#4344 +09:56:47.795-0700 871073904578396220 TzsLw4c | motion#8592 +09:56:47.815-0700 871073904947515443 QEc0LAc | motion#3518 +09:56:47.887-0700 871073906772025354 5FcKd1g | motion#3560 +09:56:47.904-0700 871073903122980904 -73rGKo | motion#7615 +09:56:47.946-0700 871073885087477761 jl5p8qg | motion#2417 +09:56:47.958-0700 871073909104082974 i77x24E | motion#4905 +09:56:48.054-0700 871073909028569139 JL3iyXg | motion#7467 +09:56:48.063-0700 871073919845683290 14rEfaQ | motion#1668 +09:56:48.137-0700 871073891504771152 mE0Uv1M | motion#3709 +09:56:48.144-0700 871073893740318731 n65za5w | motion#5723 +09:56:48.149-0700 871073887213985823 XZQxB0U | motion#3861 +09:56:48.321-0700 871073913919139861 j3RDJa8 | motion#0127 +09:56:48.433-0700 871073876476583946 5mgOIzI | motion#2620 +09:56:48.436-0700 871073902078615613 0rTga3U | motion#1763 +09:56:48.455-0700 871073909380902912 9bzPMVM | motion#4926 +09:56:48.456-0700 871073896919597126 YtAak9g | motion#0882 +09:56:48.457-0700 871073907350835230 jVESNBM | motion#1410 +09:56:48.469-0700 871073907967426620 N9XI8Uw | motion#8346 +09:56:48.483-0700 871073896810561546 JCkV6Ds | motion#4806 +09:56:48.498-0700 871073908479131709 -pUhKDo | motion#6130 +09:56:48.550-0700 871073907820621854 c_cDs-M | motion#0660 +09:56:48.618-0700 871073905366937670 Yio4SPo | motion#3919 +09:56:48.650-0700 871073904653893642 CiXoaoM | motion#8259 +09:56:48.668-0700 871073905018822656 VU0r1JI | motion#2409 +09:56:48.775-0700 871073907757707344 FkbA2ek | motion#0506 +09:56:48.778-0700 871073915261288539 VrKTAaw | motion#1867 +09:56:48.799-0700 871073901948575784 1C4WjT0 | motion#0941 +09:56:48.925-0700 871073915638796298 U2W2LSI | motion#9739 +09:56:48.927-0700 871073903232028713 YJVbJQ0 | motion#2017 +09:56:49.011-0700 871073918063108156 GbX3000 | motion#4557 +09:56:49.055-0700 871073905379528714 4b0N1qU | motion#4781 +09:56:49.058-0700 871073896462417990 ziZOPdU | motion#0971 +09:56:49.119-0700 871073906419699724 ZT6L20I | motion#4389 +09:56:49.138-0700 871073907623460875 aZeAmBY | motion#2316 +09:56:49.157-0700 871073914976108594 favt5DQ | motion#2467 +09:56:49.194-0700 871073900606418964 LyVxmaE | motion#3786 +09:56:49.194-0700 871073915038998538 zCTNIJo | motion#3023 +09:56:49.206-0700 871073903630487594 T-jcaTc | motion#7063 +09:56:49.215-0700 871073901109727263 nP0F6XY | motion#9526 +09:56:49.218-0700 871073905442451496 xsgy6Os | motion#5737 +09:56:49.236-0700 871073919254294568 CK9hUO4 | motion#1803 +09:56:49.242-0700 871073902170894436 WW_9ygA | motion#3894 +09:56:49.255-0700 871073916347617310 jADI6v4 | motion#3497 +09:56:49.279-0700 871073903991214111 toocH7s | motion#4658 +09:56:49.310-0700 871073907468300399 PgS6fq0 | motion#1879 +09:56:49.333-0700 871073911121514536 UpYMcFc | motion#8807 +09:56:49.348-0700 871073904154787900 6RBX6w0 | motion#3893 +09:56:49.372-0700 871073916527972382 fadmXHc | motion#6817 +09:56:49.582-0700 871073895715848202 Q_ynSNE | motion#7951 +09:56:49.609-0700 871073901483016262 aUXeM1Q | motion#0272 +09:56:49.643-0700 871073906151284778 GnvNrPs | motion#2896 +09:56:49.703-0700 871073926330073159 yOfcfqs | motion#5970 +09:56:49.712-0700 871073916574134302 HsovIOc | motion#6685 +09:56:49.734-0700 871073902829391883 UEcs5ZU | motion#5278 +09:56:49.742-0700 871073917740154910 m5s_9M0 | motion#2737 +09:56:49.754-0700 871073918532878347 fBQ_xhk | motion#8639 +09:56:49.758-0700 871073914770579477 kilOaiQ | motion#3042 +09:56:49.892-0700 871073922056077382 aSoaQx8 | motion#6621 +09:56:49.929-0700 871073900505755689 _29ZsDY | motion#4404 +09:56:49.954-0700 871073918277013564 whr6-ko | motion#6626 +09:56:49.984-0700 871073919090716674 TWhGX-E | motion#2182 +09:56:50.165-0700 871073919786942514 AKwXVks | motion#7906 +09:56:50.310-0700 871073918092476509 qtiVRAM | motion#3516 +09:56:50.671-0700 871073917899518052 tvIKHMw | motion#6991 +09:56:50.769-0700 871073904616157274 WhZaYWo | motion#0070 +09:56:50.818-0700 871073921129132113 l078J00 | motion#1806 +09:56:50.826-0700 871073923125612614 QC-6Jn0 | motion#1411 +09:56:50.998-0700 871073931518423080 8aeHYOE | motion#5408 +09:56:51.152-0700 871073904058318889 UtfocTY | motion#1631 +09:56:51.168-0700 871073900669309019 G0exEzA | motion#5169 +09:56:51.279-0700 871073912484667404 od5R6wY | motion#6819 +09:56:51.433-0700 871073920743243796 rf_-Cmo | motion#0804 +09:56:51.451-0700 871073921691172905 kunZsOk | motion#3769 +09:56:51.512-0700 871073927424802846 OPSNbvw | motion#6952 +09:56:51.589-0700 871073905866067990 6iZwyX4 | motion#9654 +09:56:51.626-0700 871073924744642630 5b4YO5Q | motion#3039 +09:56:51.640-0700 871073879584550983 mFDM1sI | motion#7310 +09:56:51.669-0700 871073915898826764 QnPzqhY | motion#2731 +09:56:51.766-0700 871073920244137994 GvgYl6I | motion#3489 +09:56:51.776-0700 871073921443725312 ZUvLw7k | motion#9458 +09:56:51.783-0700 871073921267556372 5bn1w8U | motion#6882 +09:56:51.788-0700 871073876392697878 d6nF3Bs | motion#4787 +09:56:51.795-0700 871073919333957642 JZ5t-mg | motion#0086 +09:56:51.819-0700 871073924023210064 biAPghc | motion#1128 +09:56:51.959-0700 871073926321688608 0WmNyBM | motion#2458 +09:56:51.971-0700 871073923448598529 ii5_X5c | motion#3723 +09:56:52.089-0700 871073921863155752 ueY98EY | motion#9925 +09:56:52.189-0700 871073917211656192 bu8dF1M | motion#6171 +09:56:52.573-0700 871073919728230400 8GDOAuo | motion#0600 +09:56:52.643-0700 871073924367151104 wupl8wc | motion#7478 +09:56:52.653-0700 871073928540475432 7_MNqCA | motion#4267 +09:56:52.677-0700 871073928863420417 0z-HYKM | motion#0505 +09:56:52.780-0700 871073930448871465 GatUvO8 | motion#1405 +09:56:52.842-0700 871073928523685918 7RwZXVw | motion#8445 +09:56:52.877-0700 871073929261875240 6KtapTk | motion#9031 +09:56:52.894-0700 871073930356621343 OM8wRQU | motion#9188 +09:56:52.997-0700 871073920936202250 95VjR74 | motion#7997 +09:56:53.051-0700 871073925189226578 0u9xbmA | motion#6411 +09:56:53.075-0700 871073921502412810 EJP7nVQ | motion#7376 +09:56:53.081-0700 871073916553166929 WXefQvM | motion#0188 +09:56:53.100-0700 871073939324014662 Rz7Nqr4 | motion#6128 +09:56:53.131-0700 871073923398254623 qOkucvQ | motion#0100 +09:56:53.216-0700 871073921905086534 sFruUjs | motion#0550 +09:56:53.250-0700 871073926548185089 fSlaT64 | motion#3796 +09:56:53.322-0700 871073931816239164 bbTbNUk | motion#6510 +09:56:53.374-0700 871073933980467230 _orEgCg | motion#8224 +09:56:53.511-0700 871073932239847476 L8G0qBs | motion#8398 +09:56:53.547-0700 871073929098330184 l6ClIGw | motion#9710 +09:56:53.549-0700 871073882260533259 1J4GXxk | motion#4270 +09:56:53.659-0700 871073930083987467 V3fSZos | motion#5653 +09:56:53.674-0700 871073933556862996 MmnFpms | motion#2500 +09:56:53.751-0700 871073932126597201 6_AFqbA | motion#3515 +09:56:53.815-0700 871073929278681178 bxqqeWI | motion#0884 +09:56:53.935-0700 871073928242679809 mokl-50 | motion#6248 +09:56:53.946-0700 871073906239348768 KnZYMUE | motion#4767 +09:56:53.988-0700 871073932634099712 2_dYSwI | motion#5992 +09:56:54.021-0700 871073926481063966 cbyzTbw | motion#0105 +09:56:54.034-0700 871073931161919529 3ir5Tuo | motion#0337 +09:56:54.087-0700 871073924924973066 9VXAvQ4 | motion#4761 +09:56:54.102-0700 871073926497845308 24s2WiM | motion#5729 +09:56:54.116-0700 871073913977847859 NKpnw3o | motion#1737 +09:56:54.182-0700 871073933502349332 BCMirB4 | motion#8531 +09:56:54.213-0700 871073933879803904 6Cyfknw | motion#3115 +09:56:54.231-0700 871073927194099732 NrIL_1E | motion#3696 +09:56:54.417-0700 871073922047700992 0OOfNgE | motion#1343 +09:56:54.967-0700 871073939747635220 ma451k0 | motion#4063 +09:56:55.009-0700 871073930146902016 l3WhiNM | motion#0620 +09:56:55.021-0700 871073936320909382 bdB6Lk4 | motion#1667 +09:56:55.092-0700 871073935716913212 MCxPlmQ | motion#8391 +09:56:55.197-0700 871073938048962601 3t0Y4wM | motion#5020 +09:56:55.206-0700 871073895497744404 5JsZqoE | motion#2849 +09:56:55.568-0700 871073948727640115 Dr7_xPY | motion#8012 +09:56:55.570-0700 871073939617644554 wWgc5SM | motion#2322 +09:56:55.572-0700 871073946131394571 p7mnjvQ | motion#3410 +09:56:55.636-0700 871073934408302602 w3WmYsc | motion#4480 +09:56:55.674-0700 871073929454833755 ucs-g_g | motion#8863 +09:56:55.782-0700 871073930620829706 oArMGqE | motion#2712 +09:56:56.152-0700 871073932692848661 JXeZ43M | motion#1002 +09:56:56.188-0700 871073935087767612 4QE7TRY | motion#5224 +09:56:56.191-0700 871073937390448701 liXFheo | motion#2081 +09:56:56.231-0700 871073935129735199 A13-bhU | motion#2874 +09:56:56.239-0700 871073937382055937 Vn0p7UU | motion#4165 +09:56:56.307-0700 871073918797111376 4PAg-nA | motion#9121 +09:56:56.441-0700 871073935075180544 wqKkaTs | motion#5829 +09:56:56.648-0700 871073933984694342 yvwL2Ao | motion#2622 +09:56:56.653-0700 871073948962529280 DgmpxNU | motion#5999 +09:56:56.901-0700 871073930163662883 pwA9GGU | motion#2007 +09:56:57.202-0700 871073950518620180 SBVeUR4 | motion#0713 +09:56:57.272-0700 871073935045828688 rn_kRG8 | motion#4307 +09:56:57.307-0700 871073940909482045 ge-t-x4 | motion#9868 +09:56:57.336-0700 871073957757980732 gMffFWM | motion#5141 +09:56:57.452-0700 871073951839834212 kgyuC_4 | motion#6041 +09:56:57.455-0700 871073939714089060 gjKo6ec | motion#1159 +09:56:57.650-0700 871073931774275615 W6QX-W0 | motion#7427 +09:56:57.735-0700 871073951256809502 JEotG_k | motion#6808 +09:56:57.788-0700 871073933271654430 uWOP4aw | motion#2113 +09:56:57.823-0700 871073939055587399 8x8PV-A | motion#1392 +09:56:57.904-0700 871073948647972884 4USKsEg | motion#3525 +09:56:58.156-0700 871073941668638751 6-Kpcwc | motion#3957 +09:56:58.181-0700 871073926560755722 jo9qFFo | motion#7658 +09:56:58.184-0700 871073950132752404 GO5kwjk | motion#7382 +09:56:58.201-0700 871073940708139109 XMOeo-0 | motion#3277 +09:56:58.313-0700 871073956638109696 ALTIT64 | motion#5111 +09:56:58.432-0700 871073943375740968 5-bVIj4 | motion#0725 +09:56:58.444-0700 871073932810268732 sL-Oryo | motion#0272 +09:56:58.456-0700 871073941966454804 s0VBLzs | motion#3051 +09:56:58.488-0700 871073951579779122 24WNJEo | motion#9729 +09:56:58.514-0700 871073953769226290 ER8luQM | motion#9591 +09:56:58.528-0700 871073954503217152 GVnnzSw | motion#9909 +09:56:58.573-0700 871073944239738913 8sIziVQ | motion#6415 +09:56:58.581-0700 871073942226497586 lNTRgOw | motion#4569 +09:56:58.609-0700 871073949214179369 zpsPgeE | motion#4294 +09:56:58.672-0700 871073952397664277 4PHuYYs | motion#0792 +09:56:58.694-0700 871073950929678397 sIb1z9Q | motion#5705 +09:56:58.713-0700 871073957502144562 GL8W9uk | motion#8016 +09:56:58.737-0700 871073960069054565 daT2Oxo | motion#7474 +09:56:58.814-0700 871073936132173825 YP8jfvc | motion#6917 +09:56:58.859-0700 871073941903536129 _A0gZfQ | motion#4717 +09:56:58.895-0700 871073956214505502 QdIOCK4 | motion#9850 +09:56:59.073-0700 871073939038801981 C2vQanM | motion#2001 +09:56:59.095-0700 871073954943606905 egGux6c | motion#6944 +09:56:59.150-0700 871073962426241095 anOAeMQ | motion#5220 +09:56:59.195-0700 871073948954148884 jtpbIWc | motion#3366 +09:56:59.237-0700 871073950715760670 O_SmFNQ | motion#3574 +09:56:59.266-0700 871073952229883964 cuTwHSw | motion#4111 +09:56:59.344-0700 871073944751468557 -PnquA4 | motion#9243 +09:56:59.362-0700 871073954004099082 xMOXpp8 | motion#4864 +09:56:59.422-0700 871073958940774550 ZdmHJ1U | motion#6982 +09:56:59.441-0700 871073955887321189 nYe4ruY | motion#1542 +09:56:59.466-0700 871073936945856512 Zbx7Res | motion#2494 +09:56:59.470-0700 871073961860026419 6POU2kw | motion#5445 +09:56:59.513-0700 871073944097148929 X-EOb30 | motion#9916 +09:56:59.548-0700 871073951516868638 A7YlOxg | motion#3897 +09:56:59.563-0700 871073957023989821 O45i5qc | motion#1332 +09:56:59.651-0700 871073956868808724 Ql_DnZk | motion#2322 +09:56:59.661-0700 871073960786284576 mCHUpbI | motion#4191 +09:56:59.686-0700 871073957862866974 IYJeweI | motion#5310 +09:56:59.725-0700 871073939340800041 ac7TCnY | motion#7447 +09:56:59.727-0700 871073949973373039 mTzb-BQ | motion#1496 +09:56:59.793-0700 871073937705037854 HDJWGU4 | motion#7089 +09:56:59.800-0700 871073956440973322 dMKUCAQ | motion#5760 +09:56:59.837-0700 871073957686689802 vBaOXJM | motion#3213 +09:56:59.843-0700 871073967845298197 UcLK7HY | motion#6006 +09:56:59.854-0700 871073966289203220 iuG9mzw | motion#6852 +09:56:59.892-0700 871073956201906237 HN0Ee3k | motion#0874 +09:57:00.169-0700 871073952880013332 SpeuZRY | motion#8449 +09:57:00.235-0700 871073943270879242 nFgflnE | motion#0021 +09:57:00.273-0700 871073960232648754 4TF9xbU | motion#2414 +09:57:00.316-0700 871073957548273755 4mhndsw | motion#9239 +09:57:00.388-0700 871073962556276777 NLVHZJo | motion#4793 +09:57:00.403-0700 871073948585050202 ajTr4-I | motion#7350 +09:57:00.453-0700 871073957846085732 gk2fGb4 | motion#8582 +09:57:00.461-0700 871073951256838165 PXptYmw | motion#8815 +09:57:00.464-0700 871073961180540998 u5u0QAk | motion#3059 +09:57:00.559-0700 871073960928874496 hDN2bQ8 | motion#6537 +09:57:00.655-0700 871073951978229770 _bJW1U4 | motion#6640 +09:57:00.662-0700 871073954255732776 c4SZYIk | motion#6262 +09:57:00.701-0700 871073960261980160 9EyLZCA | motion#3194 +09:57:00.769-0700 871073956872982618 wJcbx90 | motion#7583 +09:57:00.774-0700 871073965504860200 UD8cUag | motion#2256 +09:57:00.892-0700 871073955535011921 H8_87w8 | motion#1858 +09:57:00.944-0700 871073959498620978 KdbmRBs | motion#8266 +09:57:00.949-0700 871073956474519602 jMEX0eg | motion#4678 +09:57:00.951-0700 871073962052964382 1Ld5S1I | motion#7474 +09:57:00.962-0700 871073963353178173 ArOW_0c | motion#3157 +09:57:00.984-0700 871073962455597107 68P5uxE | motion#3692 +09:57:00.993-0700 871073962371739799 lsTryNY | motion#9455 +09:57:01.029-0700 871073957904797708 hVbOIOw | motion#1016 +09:57:01.113-0700 871073954792607775 zEu-ErA | motion#2638 +09:57:01.126-0700 871073961889394698 SGhBs5A | motion#2190 +09:57:01.182-0700 871073963449651311 tIwG7ds | motion#4281 +09:57:01.228-0700 871073937822462003 bx6d04o | motion#0409 +09:57:01.305-0700 871073950111793202 tw8QPcg | motion#5376 +09:57:01.305-0700 871073962275250226 JDZnJZw | motion#7857 +09:57:01.368-0700 871073963030249504 hLdhTPg | motion#9668 +09:57:01.369-0700 871073958689124383 TN18JEs | motion#8114 +09:57:01.527-0700 871073943426043976 VLdkcG0 | motion#7486 +09:57:01.641-0700 871073969975992371 HrwQ-Pc | motion#6389 +09:57:01.650-0700 871073965005754459 22SvAYc | motion#5691 +09:57:01.736-0700 871073963076378676 o-I5w5w | motion#6414 +09:57:01.775-0700 871073962875060235 xsub52Y | motion#0590 +09:57:01.928-0700 871073969757909032 q5KZ5Ss | motion#2582 +09:57:01.945-0700 871073958416515112 ePtO4l8 | motion#7269 +09:57:01.960-0700 871073965718794260 y9uNv4k | motion#3391 +09:57:01.995-0700 871073958429069332 jHGvKcI | motion#9463 +09:57:02.018-0700 871073966972891137 FAjYkJs | motion#5542 +09:57:02.129-0700 871073968004669523 mhtTL9I | motion#5512 +09:57:02.139-0700 871073967845290075 wvtXji4 | motion#6693 +09:57:02.199-0700 871073965173514290 6aePQBw | motion#9973 +09:57:02.233-0700 871073970277978143 mBovzTI | motion#3895 +09:57:02.307-0700 871073979400585237 PgKhuGk | motion#2756 +09:57:02.349-0700 871073969506242571 1tWFQ4I | motion#5488 +09:57:02.382-0700 871073964900900944 wG-pTWI | motion#8299 +09:57:02.567-0700 871073962103296021 JhuZyg8 | motion#5011 +09:57:02.627-0700 871073961209892935 4DhQBBM | motion#1457 +09:57:02.639-0700 871073968566706186 7m6RhTg | motion#7544 +09:57:02.668-0700 871073968851914752 DTunflQ | motion#0648 +09:57:02.699-0700 871073977458651166 RqTsZYE | motion#9892 +09:57:02.716-0700 871073939961557032 XRIXdtw | motion#0530 +09:57:02.810-0700 871073972865892362 XezsIjo | motion#4198 +09:57:03.016-0700 871073967954337792 MxSAR2I | motion#4666 +09:57:03.018-0700 871073963952967711 P8_tSh4 | motion#0935 +09:57:03.055-0700 871073957325975634 nvzNML0 | motion#6127 +09:57:03.074-0700 871073960433967205 Kk39hi4 | motion#8154 +09:57:03.109-0700 871073968969383967 ALvfpu4 | motion#9596 +09:57:03.116-0700 871073971263651870 -qIQpWw | motion#4157 +09:57:03.124-0700 871073958601064448 6V9rq4E | motion#0117 +09:57:03.158-0700 871073974312923199 2uA0iT8 | motion#0453 +09:57:03.333-0700 871073955757318144 eUyVz9s | motion#2462 +09:57:03.346-0700 871073976691068948 G7n0088 | motion#8175 +09:57:03.362-0700 871073973524394034 Y5XzNpE | motion#6293 +09:57:03.396-0700 871073969246195752 0UvIFyM | motion#0553 +09:57:03.452-0700 871073945573527612 D3XpqPk | motion#5808 +09:57:03.893-0700 871073960824045638 hPOrRvw | motion#9319 +09:57:03.906-0700 871073967056764941 QPttkCk | motion#3429 +09:57:03.933-0700 871073955031707668 swW-NME | motion#3064 +09:57:03.986-0700 871073977106333777 4VrM0iA | motion#4379 +09:57:04.130-0700 871073965215481876 6Qa_7EQ | motion#3252 +09:57:04.396-0700 871073983120961587 _WkvTek | motion#3336 +09:57:04.499-0700 871073986501570610 D3wahHk | motion#5616 +09:57:04.578-0700 871073968113733663 T3VPVYc | motion#2544 +09:57:04.596-0700 871073982990917642 9kwvfHE | motion#5015 +09:57:04.701-0700 871073966373109792 j4yhD94 | motion#5998 +09:57:04.938-0700 871073966050136124 DWnsNUs | motion#0435 +09:57:05.223-0700 871073976892391424 JDkGJGM | motion#0943 +09:57:05.233-0700 871073986677714994 dtMDqR8 | motion#0169 +09:57:05.291-0700 871073973734113341 tpQ46zU | motion#7264 +09:57:05.327-0700 871073984366645279 Oh3Pth0 | motion#1480 +09:57:05.375-0700 871073977177628743 rn-JD7g | motion#8600 +09:57:05.482-0700 871073991425675315 2sfziKg | motion#6914 +09:57:05.506-0700 871073962065555476 nHHLKgI | motion#4797 +09:57:05.620-0700 871073983276134461 1ETLreM | motion#5201 +09:57:05.742-0700 871073977634787370 H4pK8MI | motion#5576 +09:57:05.745-0700 871073985239085107 qXKpPuc | motion#1440 +09:57:05.815-0700 871073992159666186 c56FsOg | motion#5062 +09:57:05.852-0700 871073970823237682 3b5gStk | motion#6242 +09:57:05.902-0700 871073967933390878 pQ_Y8ck | motion#7539 +09:57:06.023-0700 871073993883521085 wa-U-f4 | motion#8015 +09:57:06.050-0700 871073983062237225 7IwjxG8 | motion#1658 +09:57:06.102-0700 871073970458357800 5IMF8AM | motion#4719 +09:57:06.182-0700 871073979035705446 enI-VY0 | motion#7045 +09:57:06.244-0700 871073989655662662 JPMwb18 | motion#1854 +09:57:06.396-0700 871073971540459540 RfTsXKI | motion#2209 +09:57:06.492-0700 871073967094501377 cz-TLYg | motion#6131 +09:57:06.547-0700 871073993086623764 xoKdBWs | motion#1317 +09:57:06.769-0700 871073943568674906 ctDn2gA | motion#5323 +09:57:06.879-0700 871073994592387153 iejpRow | motion#6672 +09:57:06.888-0700 871073966868009051 268qT6E | motion#7899 +09:57:06.904-0700 871073995502530600 uB6NjvM | motion#1833 +09:57:07.004-0700 871073991668936754 -QMfY1s | motion#6634 +09:57:07.119-0700 871073981799759892 xjpjdAI | motion#5746 +09:57:07.132-0700 871073972928778330 7tHiUa0 | motion#3008 +09:57:07.197-0700 871073991534723145 JIVjNIs | motion#2759 +09:57:07.249-0700 871073991589257266 WdxdxJs | motion#1845 +09:57:07.261-0700 871073995334774824 sDfCvMI | motion#2892 +09:57:07.277-0700 871073986254086227 Q-4UFoM | motion#6195 +09:57:07.318-0700 871073954746490880 WcfLFyU | motion#8512 +09:57:07.319-0700 871073981476798524 aGUsDWg | motion#3474 +09:57:07.371-0700 871073972454826074 G72Fdm4 | motion#3967 +09:57:07.418-0700 871073974438735904 WhtGJmc | motion#4588 +09:57:07.426-0700 871073980436606986 cjiOh38 | motion#6765 +09:57:07.450-0700 871073976422653962 Q9Ow1_Q | motion#9445 +09:57:07.632-0700 871073966519898143 MnYSYXw | motion#3228 +09:57:07.695-0700 871073979648073760 nXY5n3s | motion#5554 +09:57:07.723-0700 871073977894862858 eB7VErQ | motion#9315 +09:57:07.747-0700 871073978205224981 a8P5fBg | motion#9723 +09:57:07.767-0700 871073973910253568 hCeQsF8 | motion#4225 +09:57:07.888-0700 871073978779828355 kgFbNro | motion#0490 +09:57:07.921-0700 871073993489268737 zkIKGbQ | motion#4898 +09:57:07.968-0700 871073980554047498 sE4AN4Y | motion#5286 +09:57:08.007-0700 871073992658808833 UjS3NRk | motion#4104 +09:57:08.027-0700 871073989445951539 vbGpMeg | motion#9353 +09:57:08.033-0700 871073980528865340 x21TK8s | motion#4900 +09:57:08.137-0700 871073992197423164 8y6gyvY | motion#8099 +09:57:08.166-0700 871073996609843260 FHhwL8k | motion#2946 +09:57:08.184-0700 871073992520388698 IG5YDrA | motion#0289 +09:57:08.209-0700 871073988049260565 hbAWFco | motion#6075 +09:57:08.264-0700 871073988711968768 r4pQEv8 | motion#0392 +09:57:08.352-0700 871073988279926834 U2f0ND0 | motion#4010 +09:57:08.368-0700 871073965118988288 vtIO5dY | motion#5333 +09:57:08.393-0700 871073979211841546 mIJpnes | motion#4363 +09:57:08.396-0700 871073975265017876 wB82Mao | motion#3431 +09:57:08.409-0700 871074001466830868 TuqWQ3U | motion#2819 +09:57:08.488-0700 871073993510240256 RMtEwIs | motion#8513 +09:57:08.510-0700 871073997037658113 rXUV650 | motion#1927 +09:57:08.523-0700 871073982315626526 4dIkGU4 | motion#0224 +09:57:08.601-0700 871073974224846858 cDlpGV4 | motion#1314 +09:57:08.609-0700 871074000384704542 qWtrik4 | motion#0064 +09:57:08.676-0700 871073967597846578 AvBm-vg | motion#0924 +09:57:08.692-0700 871073980788920360 Z7draj0 | motion#7652 +09:57:08.714-0700 871073984094036000 FiOypgw | motion#6774 +09:57:08.736-0700 871074000133062697 tXYf7FA | motion#9619 +09:57:08.739-0700 871073969367810119 LNDSBOI | motion#3916 +09:57:08.785-0700 871073979631276043 BqFRQQU | motion#9719 +09:57:09.250-0700 871073987260719105 Wsijlh4 | motion#2521 +09:57:09.251-0700 871073996790173766 a_Gek1M | motion#0916 +09:57:09.308-0700 871073998472089670 sunrI-Y | motion#3383 +09:57:09.427-0700 871073967560069140 DetgIbs | motion#3178 +09:57:09.467-0700 871073998358839347 QBJqt1w | motion#0384 +09:57:09.541-0700 871073999680049172 r9B9dNY | motion#8279 +09:57:09.719-0700 871074000904798248 s0UslrE | motion#8343 +09:57:09.827-0700 871074001814974586 g3iBfWk | motion#6405 +09:57:09.940-0700 871074000447619112 GFRvNQ4 | motion#4053 +09:57:10.078-0700 871073992184840212 ePALQJY | motion#5217 +09:57:10.116-0700 871073996492386354 vy0eHQQ | motion#6393 +09:57:10.121-0700 871074003865985124 wgcclSI | motion#5076 +09:57:10.137-0700 871074001840136263 xi3_CKs | motion#9675 +09:57:10.241-0700 871074009763155978 ENYZlQk | motion#3717 +09:57:10.283-0700 871073999390662657 UT87kTo | motion#8186 +09:57:10.391-0700 871074004356710411 2SVl6HQ | motion#2497 +09:57:10.435-0700 871073996236541972 gczRfnw | motion#1156 +09:57:10.506-0700 871074004713222194 NTw6oKI | motion#0210 +09:57:10.515-0700 871074000208531506 1aye5z8 | motion#3138 +09:57:10.521-0700 871074006793609237 bSapkm4 | motion#6467 +09:57:10.531-0700 871073995049553951 6nCD-cg | motion#6943 +09:57:10.692-0700 871073997956190249 MwEx-B4 | motion#0636 +09:57:10.751-0700 871073999583608923 Rt_JMas | motion#1656 +09:57:10.781-0700 871073998493085697 3icN0dM | motion#2042 +09:57:10.787-0700 871073997364822117 ju_qrVw | motion#3185 +09:57:10.787-0700 871074006135078942 qV7I-o4 | motion#0097 +09:57:10.838-0700 871073998551810068 M0XAqYg | motion#7711 +09:57:10.855-0700 871074007515021403 lSvP3xQ | motion#1692 +09:57:10.875-0700 871073996211367986 tB4QRXE | motion#2318 +09:57:10.947-0700 871073999004794921 rxc-vp4 | motion#5985 +09:57:11.046-0700 871074004545454140 oKyGJDw | motion#8801 +09:57:11.192-0700 871074000246304868 V357GMM | motion#5022 +09:57:11.341-0700 871074016004309013 O_6dadQ | motion#1215 +09:57:11.343-0700 871074000179191848 iykYiC4 | motion#0183 +09:57:11.348-0700 871074003069046834 cSwURy4 | motion#5514 +09:57:11.369-0700 871074010568466503 Fs4krd0 | motion#7597 +09:57:11.389-0700 871074002536398978 QD4ELgE | motion#0981 +09:57:11.449-0700 871074006768435210 grMmmY4 | motion#3432 +09:57:11.468-0700 871074001991110677 a9vZEPc | motion#3133 +09:57:11.792-0700 871073997327044670 GGVV2OY | motion#9176 +09:57:11.914-0700 871074014515314748 fnHf3O0 | motion#0827 +09:57:11.993-0700 871074011499618386 djJHMkA | motion#6130 +09:57:11.996-0700 871074004142784544 Zzn2OPg | motion#3403 +09:57:12.118-0700 871074001701707827 dv8OOu4 | motion#1611 +09:57:12.398-0700 871074006252523530 3IVBNxY | motion#6472 +09:57:12.409-0700 871074022086017104 giHLKMw | motion#6623 +09:57:12.459-0700 871074014049742858 IzsQKNk | motion#8881 +09:57:12.474-0700 871074000305025044 SqZAEls | motion#3223 +09:57:12.479-0700 871074013986816020 nz8ByjY | motion#4839 +09:57:12.519-0700 871074009289224212 kuJku8c | motion#2856 +09:57:12.562-0700 871074005602426950 u9jOtMc | motion#9749 +09:57:12.564-0700 871074001575895041 l_BAuTQ | motion#0774 +09:57:12.572-0700 871074012200075264 gm3MJIA | motion#6425 +09:57:12.641-0700 871074016872521758 aXsMY50 | motion#0726 +09:57:12.654-0700 871074007351443466 t8-z0c4 | motion#6316 +09:57:12.657-0700 871074004516094012 O2nGgwU | motion#2084 +09:57:12.659-0700 871074020622221344 8khGowk | motion#9136 +09:57:12.803-0700 871074013609336853 cZDZEik | motion#2347 +09:57:12.984-0700 871074001974345728 HYao2aY | motion#5308 +09:57:13.014-0700 871074015329026109 u9ppCDo | motion#7502 +09:57:13.071-0700 871074013638709258 wHax0Jw | motion#5811 +09:57:13.076-0700 871074013550641193 f2teFOE | motion#6359 +09:57:13.078-0700 871074017241624617 F0YcioI | motion#1386 +09:57:13.080-0700 871074021389774848 vrpZLPE | motion#5650 +09:57:13.092-0700 871074012875358308 KoZhTNs | motion#1089 +09:57:13.128-0700 871074003794690068 -JVddGE | motion#3493 +09:57:13.135-0700 871074011734474822 ybsHt7A | motion#6604 +09:57:13.252-0700 871074011306655804 6De7NLc | motion#9958 +09:57:13.340-0700 871074015727452180 Y_PgqDk | motion#2004 +09:57:13.495-0700 871073996022636615 _KDtBEw | motion#2389 +09:57:13.597-0700 871074011503812648 IQ8DqzQ | motion#2419 +09:57:13.635-0700 871074015626821652 QENfbX8 | motion#0893 +09:57:13.655-0700 871074016125931541 A2JtKzU | motion#1222 +09:57:13.901-0700 871074015752630273 TNK-sYs | motion#0242 +09:57:13.906-0700 871074021368799273 8O09TAA | motion#9642 +09:57:13.916-0700 871074026720727070 Gfx95J0 | motion#5987 +09:57:13.956-0700 871074011835142144 LoTLXP4 | motion#4764 +09:57:13.959-0700 871074004822278164 k6MlTjU | motion#0893 +09:57:13.972-0700 871074005044576266 56y4JyQ | motion#7189 +09:57:14.032-0700 871074017199673384 fS4XO9s | motion#2097 +09:57:14.035-0700 871073996391710740 1s6nkdM | motion#2570 +09:57:14.130-0700 871074019099676733 _cioIZY | motion#0359 +09:57:14.132-0700 871074010216148993 mT3bgPM | motion#7160 +09:57:14.143-0700 871074004818079765 frzokxs | motion#8775 +09:57:14.201-0700 871074020009857054 pDY0e1A | motion#1725 +09:57:14.300-0700 871074014456610846 CEvn0S4 | motion#7532 +09:57:14.321-0700 871074000657350727 2YfuuWo | motion#1148 +09:57:14.354-0700 871073907342471260 pK7Mnd4 | motion#6263 +09:57:14.517-0700 871074017493274624 7fSbCl8 | motion#3895 +09:57:14.532-0700 871074014423048242 mHxU52A | motion#2568 +09:57:14.712-0700 871074004562214942 YBYyDjY | motion#6807 +09:57:14.726-0700 871074000854454283 j5TTRcs | motion#6614 +09:57:14.768-0700 871074013756133387 rdWeaBE | motion#8087 +09:57:14.914-0700 871074022438350878 fyXacCY | motion#5226 +09:57:14.960-0700 871074029757411328 1hK03D4 | motion#8866 +09:57:14.981-0700 871074024824909924 ekxQQEY | motion#8062 +09:57:15.096-0700 871074015349981185 IB87-aw | motion#7646 +09:57:15.237-0700 871074022237024327 X5pBRLc | motion#2064 +09:57:15.270-0700 871074022476116019 ys-zlzQ | motion#9083 +09:57:15.404-0700 871074004977451028 XyHSXHI | motion#5696 +09:57:15.417-0700 871074024137039883 E_Z9VbA | motion#2780 +09:57:15.430-0700 871074024531316840 d3LpN_E | motion#1669 +09:57:15.441-0700 871074021532377108 FT0zuBM | motion#6574 +09:57:15.541-0700 871074026016096306 I144WZU | motion#5727 +09:57:15.548-0700 871074023537250304 67J81-g | motion#6974 +09:57:15.549-0700 871074025584082994 Cwc_Q-g | motion#7279 +09:57:15.577-0700 871074022127980554 i_D0Xhk | motion#8650 +09:57:15.651-0700 871074026473283585 CGVA_Q8 | motion#6240 +09:57:15.658-0700 871074022077644810 JikatYc | motion#2067 +09:57:15.662-0700 871074023499505664 ob7abZI | motion#6924 +09:57:15.797-0700 871074019791732836 v4Bqr6o | motion#8960 +09:57:16.022-0700 871074025324036157 fLDcKQA | motion#1905 +09:57:16.024-0700 871074025303072799 gkxUwrY | motion#3563 +09:57:16.234-0700 871074017497452564 7xLLQuo | motion#1939 +09:57:16.271-0700 871074022404800512 c0juW-s | motion#2926 +09:57:16.349-0700 871074025303060510 9qhCBHA | motion#4054 +09:57:16.561-0700 871074027823829073 KhMeBwQ | motion#2616 +09:57:16.569-0700 871074028029370368 dnI5gGg | motion#2251 +09:57:16.650-0700 871074004436402237 jFZen4s | motion#0383 +09:57:16.655-0700 871074021171691542 7F-IidI | motion#4219 +09:57:16.656-0700 871074029681922080 WYAQI3g | motion#6490 +09:57:16.782-0700 871074026842390548 9PpmzTI | motion#9627 +09:57:16.904-0700 871074027651874857 GvfAf00 | motion#9798 +09:57:16.931-0700 871074031258992670 Sq_DR4Y | motion#9192 +09:57:16.986-0700 871074027920293888 ZWWXpv4 | motion#1248 +09:57:16.989-0700 871074026368417873 5XmC_Ek | motion#8891 +09:57:17.068-0700 871074013760348180 8AqHXhM | motion#0217 +09:57:17.242-0700 871074034123698206 apHTrq8 | motion#8048 +09:57:17.426-0700 871074031212826694 OJBQjBw | motion#4997 +09:57:17.534-0700 871074029497360415 G7tvZQM | motion#4867 +09:57:17.545-0700 871074028020961321 VhOspL0 | motion#9530 +09:57:17.592-0700 871074032999624775 CR2cH_o | motion#2278 +09:57:17.621-0700 871074031342874674 Hz03cPY | motion#4517 +09:57:17.660-0700 871074025646993419 dv_E_n8 | motion#6377 +09:57:17.791-0700 871074029111496794 m_4RWMw | motion#4945 +09:57:17.817-0700 871074029543489577 1e6nhdU | motion#2601 +09:57:17.848-0700 871074032726986822 vJYjE0Q | motion#3299 +09:57:17.848-0700 871074021981184031 R31ChAw | motion#3177 +09:57:17.858-0700 871074034832539658 -3mW93Y | motion#0278 +09:57:17.868-0700 871074025357602876 CMvTOPg | motion#6648 +09:57:17.872-0700 871074027798659102 iEMgFhk | motion#8230 +09:57:17.875-0700 871074026641051668 KAMCWBQ | motion#8711 +09:57:17.885-0700 871074007062032415 D9MLxVk | motion#3736 +09:57:17.893-0700 871073979945865266 9zIExlo | motion#1186 +09:57:17.915-0700 871074025558921267 AmE_ySY | motion#8014 +09:57:17.958-0700 871074034635395132 _5WtG_M | motion#6504 +09:57:18.024-0700 871073983716528138 twlL1PI | motion#1406 +09:57:18.041-0700 871074029149241375 5-5lUAs | motion#0871 +09:57:18.109-0700 871074035830763570 Z_wjVcA | motion#2429 +09:57:18.122-0700 871074039949574144 RODAZ78 | motion#2644 +09:57:18.232-0700 871074035050627103 OfI-k_Q | motion#5388 +09:57:18.335-0700 871074037063893022 _6-MS7s | motion#2867 +09:57:18.342-0700 871074038045376523 iE_hY7U | motion#6639 +09:57:18.441-0700 871074040465490022 fOR1ukQ | motion#4088 +09:57:18.465-0700 871074038250897428 QTsRIXs | motion#5201 +09:57:18.664-0700 871074037789511740 6kGcbRU | motion#7136 +09:57:18.708-0700 871074038531887214 qy0uox8 | motion#9382 +09:57:18.729-0700 871074039551107092 yMr4YA4 | motion#4784 +09:57:18.734-0700 871074022010552371 m9GIY8M | motion#0504 +09:57:18.756-0700 871074034677346365 tPPRvZk | motion#1616 +09:57:19.259-0700 871074042055102504 UitZl34 | motion#0479 +09:57:19.321-0700 871074034937397248 xLJNQg0 | motion#9882 +09:57:19.564-0700 871074038867431474 py6dU5o | motion#4927 +09:57:19.749-0700 871074036342464513 zviCzRw | motion#7348 +09:57:19.772-0700 871074038104076358 DmPKQkQ | motion#9611 +09:57:19.909-0700 871074041681809408 9RsNXqY | motion#8418 +09:57:19.994-0700 871074004205711361 5KcJolk | motion#0975 +09:57:20.028-0700 871074052465377351 pYfAPkE | motion#3466 +09:57:20.029-0700 871074035348414514 0asJhsw | motion#4337 +09:57:20.040-0700 871074040385773589 5tj8j1k | motion#8464 +09:57:20.091-0700 871074041937682532 DTJwIr8 | motion#5120 +09:57:20.104-0700 871074040058609715 KnFjktE | motion#7152 +09:57:20.140-0700 871074035142893609 hByjDFs | motion#5976 +09:57:20.191-0700 871074037399420979 LoXCPgg | motion#6361 +09:57:20.192-0700 871074030998925322 flBBNkM | motion#1455 +09:57:20.203-0700 871074037311344671 1ak7ypQ | motion#9083 +09:57:20.231-0700 871074040868118528 NrZD6P8 | motion#5156 +09:57:20.271-0700 871074038116655164 Fne-7P0 | motion#8181 +09:57:20.291-0700 871074031980392529 g2J-AuI | motion#6804 +09:57:20.412-0700 871074043594432512 Qfmmtmw | motion#0803 +09:57:20.425-0700 871074051290972212 Yr-OCWo | motion#3327 +09:57:20.491-0700 871074036157915186 vmmO3Dc | motion#0292 +09:57:20.564-0700 871074050238205963 wr9wIOw | motion#1650 +09:57:20.567-0700 871074040926834778 YaFpLBA | motion#1958 +09:57:20.601-0700 871074038787735583 uHL4J6s | motion#5485 +09:57:20.604-0700 871074052821905499 hk72Yxw | motion#6042 +09:57:20.645-0700 871074045221814282 lRAC6II | motion#7485 +09:57:20.686-0700 871074046454923316 -Z7kHUo | motion#0436 +09:57:20.795-0700 871074034912211005 rWqZkc4 | motion#0807 +09:57:20.911-0700 871074051693608980 LrG9Kmc | motion#1695 +09:57:20.942-0700 871074052641525790 mLMYENs | motion#8505 +09:57:20.946-0700 871074039811149877 RrJf9c0 | motion#3210 +09:57:21.180-0700 871074041434357791 8a-DlY8 | motion#1617 +09:57:21.329-0700 871074054025654282 ENjQIoY | motion#2484 +09:57:21.336-0700 871074040490623016 kNb2sVs | motion#9985 +09:57:21.506-0700 871074035725910016 VSNlySQ | motion#9277 +09:57:21.552-0700 871074043321802762 lcxsX-4 | motion#7008 +09:57:21.612-0700 871074052805111858 XkixszY | motion#5623 +09:57:21.727-0700 871074052343730246 xVIKAR4 | motion#5716 +09:57:21.738-0700 871074045926461440 0-KBEWA | motion#4178 +09:57:21.755-0700 871074053128073237 F97PTqs | motion#4433 +09:57:21.892-0700 871074029602230323 OVt2cjY | motion#2567 +09:57:21.911-0700 871074055204261938 RRgwjQw | motion#9810 +09:57:21.940-0700 871074051618123797 uSAvHkk | motion#1592 +09:57:22.118-0700 871074055032287292 owjolBc | motion#8082 +09:57:22.256-0700 871074051873964072 AE1_4To | motion#6983 +09:57:22.337-0700 871074053753024572 ikocGSM | motion#1522 +09:57:22.346-0700 871074052561862718 HU-_D4M | motion#7363 +09:57:22.355-0700 871074045326655558 FtQcSQc | motion#3146 +09:57:22.675-0700 871074042260619284 lnrwLyg | motion#9652 +09:57:22.686-0700 871074034836717678 6rKnDGA | motion#0118 +09:57:22.742-0700 871074034786377828 myR06Ig | motion#0238 +09:57:22.772-0700 871074056915525672 5KJ3vZk | motion#8253 +09:57:22.787-0700 871074052255658014 Sr2Fc9U | motion#4608 +09:57:22.856-0700 871074051764945039 Fbd2rXo | motion#2991 +09:57:23.157-0700 871074058811363429 NJROjRY | motion#2959 +09:57:23.187-0700 871074054654816286 b8_XaG8 | motion#1519 +09:57:23.597-0700 871074050460495972 0YGD5w0 | motion#5547 +09:57:23.618-0700 871074038938746951 lV0hfy4 | motion#6285 +09:57:23.618-0700 871074053019021323 bOT33Xs | motion#4328 +09:57:23.775-0700 871074059406962768 jZYdxVo | motion#8790 +09:57:23.808-0700 871074055862759465 SENVfxg | motion#5912 +09:57:23.822-0700 871074035272925215 dt8yWz4 | motion#6296 +09:57:23.832-0700 871074056743567440 E7f9TVs | motion#9704 +09:57:23.877-0700 871074045037252630 5hD-zJ4 | motion#8808 +09:57:23.982-0700 871074065446739988 XKgfw_A | motion#8838 +09:57:24.095-0700 871074055854358558 2BgVFoI | motion#1252 +09:57:24.128-0700 871074059981582406 YoVJOFw | motion#0619 +09:57:24.147-0700 871074065442562091 _wQZ5J4 | motion#2729 +09:57:24.166-0700 871074064926658601 6JzEoDc | motion#8493 +09:57:24.241-0700 871074066558242826 nLua1Ko | motion#5619 +09:57:24.259-0700 871074052532502548 6B1ZBcQ | motion#0244 +09:57:24.293-0700 871074044198420501 bqpsESo | motion#9640 +09:57:24.308-0700 871074065291542558 XEW6_0Q | motion#2625 +09:57:24.415-0700 871074060514250842 IoSiSeg | motion#3322 +09:57:24.442-0700 871074043179175998 yK1zv28 | motion#9812 +09:57:24.459-0700 871074056626130954 t2MxJiI | motion#4899 +09:57:24.464-0700 871074055468482571 -1T8cxI | motion#9707 +09:57:24.469-0700 871074055715962890 cCUW_F4 | motion#7113 +09:57:24.623-0700 871074040704544798 rPjIV0k | motion#8821 +09:57:24.682-0700 871074053237121044 46JIFtk | motion#2107 +09:57:24.771-0700 871074061965479946 _VUv9rU | motion#0159 +09:57:24.865-0700 871074066440802354 2oPfZG0 | motion#3080 +09:57:24.908-0700 871074070127591515 XX7bcKo | motion#9376 +09:57:25.131-0700 871074066457567234 fYmPKmc | motion#4350 +09:57:25.177-0700 871074052444414002 2xD1J0o | motion#4515 +09:57:25.205-0700 871074070408593489 P4pYSSU | motion#4032 +09:57:25.332-0700 871074060065468478 hX8NRaM | motion#7092 +09:57:25.345-0700 871074069712339024 Yzh1m80 | motion#5586 +09:57:25.397-0700 871074039031033866 7Gu0TvU | motion#6587 +09:57:25.505-0700 871074057389498418 ivzmvEI | motion#5136 +09:57:25.554-0700 871074070060494849 7jNgE_Q | motion#4535 +09:57:25.569-0700 871074067732647966 hf2Y94Q | motion#5260 +09:57:25.788-0700 871074074678407228 _VhnSu0 | motion#3594 +09:57:25.839-0700 871074066092658738 Y1_KHeM | motion#6457 +09:57:25.936-0700 871074057464983572 PO6Vkqw | motion#7281 +09:57:26.044-0700 871074067883630623 __w4PKg | motion#6254 +09:57:26.086-0700 871074069062225921 fjPM2Ys | motion#2444 +09:57:26.165-0700 871074075315945512 0dkwE4g | motion#0744 +09:57:26.179-0700 871074065757122590 3A_yPng | motion#8838 +09:57:26.199-0700 871074071255851088 CpNHNmE | motion#8997 +09:57:26.335-0700 871074061793513553 SYjWxWU | motion#3167 +09:57:26.337-0700 871074079594135593 htdGnEk | motion#8318 +09:57:26.404-0700 871074072677724170 xsYvoao | motion#1661 +09:57:26.418-0700 871074066017173544 up8qtc4 | motion#1912 +09:57:26.699-0700 871074070916128768 8TYkoas | motion#7704 +09:57:26.712-0700 871074055044861972 8kQlROk | motion#1174 +09:57:26.729-0700 871074069389402123 f0toPfU | motion#0836 +09:57:26.810-0700 871074052159205376 ad9fGCo | motion#4447 +09:57:26.851-0700 871074059536957500 SqKX1Ww | motion#6624 +09:57:26.936-0700 871074061428600923 OEuMNmw | motion#4020 +09:57:26.962-0700 871074076461006928 f6Nb_EU | motion#0390 +09:57:26.992-0700 871074077257912330 tnByV74 | motion#1929 +09:57:27.241-0700 871074074955243531 Wbc7RI4 | motion#7291 +09:57:27.352-0700 871074077853507615 Cjq3aOc | motion#8770 +09:57:27.361-0700 871074062607220828 5rt5zGk | motion#5359 +09:57:27.674-0700 871074080084873216 CNFLe8Y | motion#7345 +09:57:27.717-0700 871074083926843473 MeVoNfE | motion#0622 +09:57:27.761-0700 871074067036393473 rMkFu5I | motion#5558 +09:57:28.006-0700 871074077916397609 wpZL_QY | motion#6699 +09:57:28.110-0700 871074069951434852 wEjBjRA | motion#9985 +09:57:28.152-0700 871074080504299621 AbFSHOg | motion#2395 +09:57:28.186-0700 871074082412699659 s1iuU7w | motion#7861 +09:57:28.255-0700 871074078730117200 ndMxgP0 | motion#7308 +09:57:28.317-0700 871074084757311548 g0lg-Xg | motion#9463 +09:57:28.335-0700 871074076985294908 83E7gHw | motion#2117 +09:57:28.341-0700 871074080537837579 ufQgBPo | motion#5704 +09:57:28.347-0700 871074080302960650 gfeTfeY | motion#1417 +09:57:28.356-0700 871074070316335104 bLNd84A | motion#6541 +09:57:28.390-0700 871074080617549924 aZWSzFk | motion#4589 +09:57:28.412-0700 871074069158715453 WBqkzYE | motion#7999 +09:57:28.456-0700 871074068869308428 qzlXGDA | motion#9544 +09:57:28.458-0700 871074080231686155 ZisZYPY | motion#3479 +09:57:28.469-0700 871074081712275467 1E-0e9I | motion#7103 +09:57:28.541-0700 871074072430276639 oYA4ua4 | motion#9408 +09:57:28.676-0700 871074068638605363 jg30ws4 | motion#9780 +09:57:28.810-0700 871074087978553354 gR9kdz0 | motion#7589 +09:57:28.868-0700 871074088922275850 i08a7Ok | motion#8410 +09:57:28.869-0700 871074071541080085 GZGc6dI | motion#6151 +09:57:28.893-0700 871074079719952514 Z5QSvVA | motion#6065 +09:57:29.108-0700 871074087647199302 hsYLeE8 | motion#6414 +09:57:29.172-0700 871074077174034472 qzVy5JA | motion#8928 +09:57:29.257-0700 871074087559118968 4jgux38 | motion#7336 +09:57:29.264-0700 871074084765720576 U57W5RE | motion#9977 +09:57:29.287-0700 871074088297300051 l31lGx4 | motion#3642 +09:57:29.572-0700 871074091845693470 OXC0L5Q | motion#5611 +09:57:29.600-0700 871074087269695539 C3fj0Qw | motion#4527 +09:57:29.674-0700 871074090901975092 2MZHKqs | motion#7623 +09:57:29.693-0700 871074092147679242 En9Vtrk | motion#9913 +09:57:29.860-0700 871074086531530812 yT258Q4 | motion#1015 +09:57:29.904-0700 871074087898873878 YhdMr2s | motion#3519 +09:57:29.908-0700 871074091052974101 DhTKuro | motion#9846 +09:57:30.279-0700 871074091933773824 TFEIbs8 | motion#3648 +09:57:30.567-0700 871074094064476201 t67ryaI | motion#0402 +09:57:30.610-0700 871074090671276062 tDPJH6o | motion#6272 +09:57:30.628-0700 871074091757621289 TjIGDqo | motion#8122 +09:57:30.691-0700 871074092902670376 yvaqoLU | motion#4217 +09:57:30.770-0700 871074094630703154 OHe2uq4 | motion#9807 +09:57:30.820-0700 871074090163798076 VWRtPK8 | motion#4344 +09:57:30.915-0700 871074096727859230 DF4CQgQ | motion#6120 +09:57:31.064-0700 871074071583014913 ylQyXGI | motion#2837 +09:57:31.079-0700 871074056571588699 XG3BUn8 | motion#7265 +09:57:31.238-0700 871074072132468797 fWi7EFs | motion#4035 +09:57:31.368-0700 871074096195182623 YuEAb_U | motion#4257 +09:57:31.368-0700 871074095851266098 08N44ls | motion#8084 +09:57:31.487-0700 871074093699563583 F-SxiuI | motion#0683 +09:57:31.518-0700 871074094068695050 0Eby8cs | motion#2555 +09:57:31.649-0700 871074102029479940 1hsX5DY | motion#0425 +09:57:31.832-0700 871074087663960084 O6js_5s | motion#2428 +09:57:31.929-0700 871074096132272139 C4EGUhg | motion#8654 +09:57:32.022-0700 871074079673843793 GGiEH2U | motion#1720 +09:57:32.299-0700 871074098896318515 cc90K1A | motion#6109 +09:57:32.372-0700 871074079682232400 lHdyFik | motion#1157 +09:57:32.531-0700 871074086825123932 08FgOko | motion#1120 +09:57:32.639-0700 871074099118637086 dcMzavY | motion#1422 +09:57:32.682-0700 871074102276935710 aqMQuwY | motion#6365 +09:57:32.852-0700 871074102021070858 Mwgfwck | motion#6173 +09:57:32.955-0700 871074088410574928 8Ij3fFI | motion#5494 +09:57:33.327-0700 871074091724079134 _EFotoA | motion#0388 +09:57:33.380-0700 871074099106033705 v12BPAE | motion#0890 +09:57:33.428-0700 871074101333217390 ZvnWX1s | motion#2824 +09:57:33.442-0700 871074099730993233 Q-i6Cnk | motion#7334 +09:57:33.449-0700 871074097734512691 am00FoQ | motion#3930 +09:57:33.472-0700 871074108408991825 c-WSWiU | motion#3205 +09:57:33.497-0700 871074098338463776 afp82Lk | motion#6555 +09:57:33.607-0700 871074106630619156 qinO1Bs | motion#6916 +09:57:33.724-0700 871074106601242694 cJWCYdE | motion#3184 +09:57:33.760-0700 871074103497465867 7O2ETHI | motion#5795 +09:57:33.786-0700 871074087609434122 GyfWEuw | motion#6829 +09:57:33.947-0700 871074109755387915 TEZy_yI | motion#0799 +09:57:33.973-0700 871074097520603176 UIgdZrc | motion#6172 +09:57:33.974-0700 871074108736163841 nzjjUIc | motion#1785 +09:57:33.983-0700 871074102553767936 OVxzhd4 | motion#1872 +09:57:33.987-0700 871074100624363541 VGWbd98 | motion#3652 +09:57:33.995-0700 871074094907555923 JUCHLqM | motion#0836 +09:57:34.014-0700 871074102658596944 6zzvs6Y | motion#5358 +09:57:34.031-0700 871074107263954976 cztJ1Ps | motion#0760 +09:57:34.196-0700 871074110204158024 aesAtdI | motion#0103 +09:57:34.236-0700 871074092177043477 _u2lttI | motion#7342 +09:57:34.451-0700 871074101513551893 drlPoWI | motion#1405 +09:57:34.459-0700 871074108622909440 BOauJ7w | motion#5121 +09:57:34.540-0700 871074100129460244 iTNQcYo | motion#5099 +09:57:34.540-0700 871074097336045568 w8Zm3tY | motion#8853 +09:57:34.640-0700 871074110195777537 cJLn2x8 | motion#5879 +09:57:34.643-0700 871074112787857489 KZxMMjk | motion#0928 +09:57:34.655-0700 871074097851945000 n5DQKlg | motion#3231 +09:57:34.717-0700 871074110405480549 ORAve8s | motion#7064 +09:57:34.761-0700 871074114440405022 SdiJwBc | motion#3247 +09:57:34.925-0700 871074067808141354 45MVG1E | motion#7824 +09:57:35.075-0700 871074096841121852 sPBJ-PU | motion#6976 +09:57:35.084-0700 871074101865889843 tDB78Vs | motion#6422 +09:57:35.132-0700 871074112657846324 g47eC1A | motion#0212 +09:57:35.201-0700 871074114436202526 QRNR0f0 | motion#3503 +09:57:35.258-0700 871074100456607844 APin7fs | motion#8645 +09:57:35.305-0700 871074112586534913 3u2X-xg | motion#9902 +09:57:35.608-0700 871074113219854416 4urvo9c | motion#9773 +09:57:35.619-0700 871074100817317889 8HnKX-A | motion#8462 +09:57:35.680-0700 871074109897977936 0bngP9Q | motion#3581 +09:57:35.694-0700 871074110975914006 nEFY3KM | motion#1705 +09:57:35.760-0700 871074101215780864 maHdEcE | motion#5433 +09:57:35.787-0700 871074114738212885 c93vnDU | motion#3407 +09:57:35.884-0700 871074111500222484 3OqxB9w | motion#4064 +09:57:35.913-0700 871074113396019270 L3NjYVI | motion#8778 +09:57:36.007-0700 871074113224065104 TuHO26k | motion#9896 +09:57:36.059-0700 871074102583128115 ZUnIZUk | motion#6534 +09:57:36.121-0700 871074116701138974 FIM-yu4 | motion#9895 +09:57:36.125-0700 871074117103788082 EzoA0VU | motion#4169 +09:57:36.139-0700 871074114503344179 wkKFjdQ | motion#0647 +09:57:36.178-0700 871074119062552587 sJ5Grpo | motion#3304 +09:57:36.272-0700 871074118995419147 7tQ7Y6Q | motion#8159 +09:57:36.313-0700 871074100334977075 c9xKPgs | motion#8408 +09:57:36.380-0700 871074118009753720 SyThbJk | motion#3147 +09:57:36.422-0700 871074108648095754 G3uLLwU | motion#7792 +09:57:36.605-0700 871074117418365019 O9v1M3s | motion#9289 +09:57:36.616-0700 871074121323266089 hMZvQnw | motion#9269 +09:57:36.756-0700 871074114713047050 rWnQwB0 | motion#7950 +09:57:36.889-0700 871074119846887455 768nLu4 | motion#3534 +09:57:37.046-0700 871074117405773855 mAgzA5c | motion#3126 +09:57:37.105-0700 871074119251275866 pqcW9oA | motion#6492 +09:57:37.241-0700 871074122258612264 EILxXsw | motion#6763 +09:57:37.268-0700 871074119670702141 vl0i_1c | motion#3909 +09:57:37.359-0700 871074123479154718 F9Qhwrc | motion#4540 +09:57:37.376-0700 871074126666817546 YBzRgdo | motion#6430 +09:57:37.401-0700 871074119163191356 7uwqP9Y | motion#7998 +09:57:37.403-0700 871074126285115393 KaPMgYA | motion#2117 +09:57:37.534-0700 871074121692348500 W704ekY | motion#3704 +09:57:37.635-0700 871074120010461224 Ux2Dgkk | motion#2790 +09:57:37.746-0700 871074109625352223 xU45CV0 | motion#7372 +09:57:37.758-0700 871074124896821298 aVra1nI | motion#4927 +09:57:37.901-0700 871074125353988096 bREsTyA | motion#8816 +09:57:37.931-0700 871074127333720074 1TGv64c | motion#1825 +09:57:38.078-0700 871074108669067264 KDKiVvs | motion#8020 +09:57:38.082-0700 871074126599688262 ZHTTTKE | motion#9707 +09:57:38.141-0700 871074120115318795 5PsVJmI | motion#4331 +09:57:38.155-0700 871074123856617492 Qxa351A | motion#3973 +09:57:38.208-0700 871074124917784677 y5Eqh9k | motion#7494 +09:57:38.218-0700 871074125093933087 th-s-Qw | motion#1691 +09:57:38.235-0700 871074129212764201 oMLFrzs | motion#6144 +09:57:38.330-0700 871074122589929563 ePghdJU | motion#5316 +09:57:38.432-0700 871074125718904973 zf_Rmwo | motion#2140 +09:57:38.438-0700 871074126884917329 DJB0aag | motion#8392 +09:57:38.478-0700 871074127467917342 3rfrKrk | motion#0292 +09:57:38.527-0700 871074114679480320 K-Wgjcg | motion#4574 +09:57:38.577-0700 871074129846083584 odjDLUo | motion#5870 +09:57:38.625-0700 871074130164871179 UJxQdiU | motion#2411 +09:57:38.645-0700 871074112959832084 19OzB94 | motion#4158 +09:57:38.724-0700 871074112276160582 I39k18s | motion#4903 +09:57:38.744-0700 871074113203085342 Pu22mNc | motion#0072 +09:57:38.831-0700 871074131486056458 HlLJkYo | motion#9336 +09:57:38.841-0700 871074126717145098 VJsYuMI | motion#1646 +09:57:39.106-0700 871074130684940298 THW7PZY | motion#8540 +09:57:39.119-0700 871074129397288961 PEPB-ag | motion#1255 +09:57:39.122-0700 871074130739482674 zVf4EtE | motion#9748 +09:57:39.225-0700 871074127350489108 AA5i_vw | motion#9580 +09:57:39.360-0700 871074130617856010 Se67WGE | motion#1353 +09:57:39.367-0700 871074131343462471 h85HcaI | motion#7167 +09:57:39.538-0700 871074132127784973 8A8qs6A | motion#3172 +09:57:39.540-0700 871074131125346336 DhaQyPg | motion#8475 +09:57:39.757-0700 871074128281624578 l26kM6w | motion#7344 +09:57:39.801-0700 871074135101567046 IESdOyE | motion#7683 +09:57:39.885-0700 871074126721318963 RFzDTag | motion#0753 +09:57:39.904-0700 871074116051034162 Se3J80s | motion#9883 +09:57:39.972-0700 871074127501479966 ILfDwkw | motion#3954 +09:57:39.995-0700 871074118563397712 YJWC-5Q | motion#3008 +09:57:40.065-0700 871074125672751125 o0X5yvg | motion#8436 +09:57:40.067-0700 871074132824051723 zEVAdV0 | motion#4431 +09:57:40.104-0700 871074134292049970 oTs5-Us | motion#9375 +09:57:40.120-0700 871074131045646390 mLltx9M | motion#4306 +09:57:40.210-0700 871074120920604793 1YJqdeE | motion#0960 +09:57:40.395-0700 871074134057173053 cDBYJjg | motion#0988 +09:57:40.530-0700 871074128952709180 Yc72RMs | motion#2246 +09:57:40.722-0700 871074136041095178 TNxwVJo | motion#9293 +09:57:40.878-0700 871074130571714571 -LTL3dk | motion#5428 +09:57:40.967-0700 871074136611520523 Nfe1L7M | motion#4226 +09:57:41.052-0700 871074132769533963 oy3-Qi4 | motion#4968 +09:57:41.247-0700 871074131947433986 Ky1zSME | motion#3889 +09:57:41.264-0700 871074133927137301 9cR_Q2M | motion#2417 +09:57:41.475-0700 871074136519241748 FAv9Z_c | motion#7152 +09:57:41.761-0700 871074124938760212 hmeYeKY | motion#6911 +09:57:41.767-0700 871074142819078255 LbNWepM | motion#2053 +09:57:41.893-0700 871074136133349397 ZqsNYJo | motion#4780 +09:57:41.895-0700 871074143532093461 h1JXs24 | motion#4114 +09:57:41.939-0700 871074136758317107 ddvuOOU | motion#8376 +09:57:41.953-0700 871074143213334590 xuRTMfE | motion#1998 +09:57:41.988-0700 871074136980590692 f2HVAeI | motion#8174 +09:57:42.161-0700 871074135378370561 qQoBt1A | motion#3607 +09:57:42.441-0700 871074138104676374 RLArvYw | motion#0914 +09:57:42.448-0700 871074146073845760 RarMwEI | motion#2204 +09:57:42.451-0700 871074137534251038 6_f-7N8 | motion#6421 +09:57:42.561-0700 871074135332225054 pxjnxGw | motion#9742 +09:57:42.669-0700 871074129078546432 5JbS9o0 | motion#4334 +09:57:42.753-0700 871074144731680820 YAFp8VI | motion#6425 +09:57:42.760-0700 871074143473397870 uDElkKM | motion#5491 +09:57:42.890-0700 871074146698813440 bZ41Dxk | motion#6350 +09:57:42.905-0700 871074141418168362 X8F7mCc | motion#6018 +09:57:42.927-0700 871074131905486979 YQTuBlc | motion#3499 +09:57:43.005-0700 871074149282484234 SLEYErk | motion#0138 +09:57:43.036-0700 871074128927526983 3p-AHgQ | motion#0972 +09:57:43.149-0700 871074148372316171 ZZ-eenM | motion#6885 +09:57:43.153-0700 871074144933011456 VasqB9I | motion#7003 +09:57:43.202-0700 871074147709644830 cVSiegE | motion#9597 +09:57:43.219-0700 871074133922959421 _3rQmLI | motion#8829 +09:57:43.397-0700 871074149504782366 wJ3_6m8 | motion#6502 +09:57:43.578-0700 871074131095982161 b0KDePQ | motion#7434 +09:57:43.613-0700 871074146405204009 KOs_ER4 | motion#9812 +09:57:43.620-0700 871074149387358249 xJ11Xc8 | motion#3050 +09:57:43.634-0700 871074145293725746 Me8HMB0 | motion#5932 +09:57:43.639-0700 871074146740736010 iaNOFbs | motion#3394 +09:57:43.673-0700 871074146933694524 883xTbw | motion#8610 +09:57:43.766-0700 871074147986464778 QtNcKr0 | motion#9160 +09:57:43.809-0700 871074147474739273 oIhqXx0 | motion#4648 +09:57:44.046-0700 871074148414271531 _zJ9Oig | motion#8191 +09:57:44.101-0700 871074149282496532 _2bPeCI | motion#8189 +09:57:44.128-0700 871074149374787684 boJSRec | motion#9984 +09:57:44.130-0700 871074146900115457 DJRnwS0 | motion#8945 +09:57:44.236-0700 871074116092969060 SVUcuNU | motion#8260 +09:57:44.288-0700 871074151815852102 MrU56Uw | motion#9855 +09:57:44.488-0700 871074150297522187 n6S6LQY | motion#6040 +09:57:44.522-0700 871074148879839283 qh57gYg | motion#4299 +09:57:44.575-0700 871074150175875072 zQAcVyk | motion#3293 +09:57:44.662-0700 871074147957096449 ZL0YOxU | motion#1941 +09:57:44.736-0700 871074149496418407 wKkn_rs | motion#5333 +09:57:44.895-0700 871074155905314846 LYyQ20w | motion#2647 +09:57:45.063-0700 871074152923148338 bfkNE1I | motion#7525 +09:57:45.067-0700 871074149110513724 UfwtisM | motion#1189 +09:57:45.216-0700 871074155519418409 cKR9Ew4 | motion#8734 +09:57:45.464-0700 871074149357994035 4LEOkB8 | motion#7416 +09:57:45.488-0700 871074158442872843 VQsb0eI | motion#7927 +09:57:45.493-0700 871074137886556160 gnOg2dU | motion#3766 +09:57:45.507-0700 871074158283460639 ofZEU0o | motion#2687 +09:57:45.544-0700 871074155603324989 WZ2_6Io | motion#1023 +09:57:45.606-0700 871074148959539200 5wnxRg8 | motion#6735 +09:57:45.777-0700 871074155813040189 AksXlHg | motion#4612 +09:57:45.931-0700 871074136812830730 eS8n6FA | motion#1130 +09:57:45.971-0700 871074152415629323 j-VbBNE | motion#4010 +09:57:46.042-0700 871074157654335550 SIWRrG8 | motion#1204 +09:57:46.050-0700 871074156228280350 RlLoMsI | motion#9267 +09:57:46.106-0700 871074158581284904 qMLa9xY | motion#6060 +09:57:46.452-0700 871074160204468356 NAX-_JI | motion#9423 +09:57:46.505-0700 871074157243301928 MT5juGs | motion#9932 +09:57:46.579-0700 871074148376530944 vQlGW7Y | motion#6788 +09:57:46.680-0700 871074162628767784 j83Rz0s | motion#9070 +09:57:46.785-0700 871074148980494436 ffcDQh0 | motion#8132 +09:57:47.112-0700 871074161722806283 _JmWYaw | motion#6453 +09:57:47.222-0700 871074150435946556 _xpgSUE | motion#2394 +09:57:47.312-0700 871074158082129961 Ah1M9Ok | motion#2938 +09:57:47.412-0700 871074146900135956 eJBvQi4 | motion#8318 +09:57:47.884-0700 871074164679794709 wt5_Fro | motion#5456 +09:57:47.897-0700 871074165912911984 bplY4e4 | motion#6512 +09:57:47.961-0700 871074166370078740 VwhqxBA | motion#2882 +09:57:48.149-0700 871074160003129365 zQFFBP8 | motion#9139 +09:57:48.249-0700 871074161903165500 SX6rMpw | motion#3209 +09:57:48.500-0700 871074160506454047 9yYu-fw | motion#7038 +09:57:48.653-0700 871074166906974278 l6TG-xc | motion#0437 +09:57:48.741-0700 871074158023430224 x8qI-Kc | motion#6548 +09:57:48.812-0700 871074158656757802 tGAAQhI | motion#7595 +09:57:48.917-0700 871074162855247944 vbbIc8A | motion#7944 +09:57:48.975-0700 871074163853512735 rvR7Xnw | motion#8611 +09:57:49.086-0700 871074167561285663 K9vYTlg | motion#3565 +09:57:49.264-0700 871074159294308382 FQkRTWs | motion#5655 +09:57:49.286-0700 871074157692076043 sb9gw6U | motion#3835 +09:57:49.389-0700 871074154919653437 _Puo2PU | motion#7444 +09:57:49.396-0700 871074145260171315 Kg-crTg | motion#6337 +09:57:49.515-0700 871074167565475842 83AUCBU | motion#6155 +09:57:49.578-0700 871074152226893824 Wht6tY0 | motion#9333 +09:57:49.634-0700 871074166915358782 lAL0vYc | motion#3373 +09:57:49.745-0700 871074172657369110 O9YUyPQ | motion#2768 +09:57:49.761-0700 871074162788139068 disIpDk | motion#5789 +09:57:49.876-0700 871074153057370152 z7et21M | motion#6796 +09:57:49.920-0700 871074169784238130 kqyActE | motion#2348 +09:57:50.110-0700 871074162599419954 3jKH9tI | motion#8605 +09:57:50.133-0700 871074159327842356 5EtUHJs | motion#1095 +09:57:50.344-0700 871074176889389187 pIKG5p4 | motion#6234 +09:57:50.346-0700 871074167213158492 31SAdWM | motion#3343 +09:57:50.457-0700 871074170086227969 lMe5Cdg | motion#7946 +09:57:50.499-0700 871074170363084820 uSYR32E | motion#2617 +09:57:50.502-0700 871074169687789639 BIeQ4ic | motion#8403 +09:57:50.507-0700 871074175513681940 yvTnUjM | motion#0651 +09:57:50.526-0700 871074177728249916 PRhUYh8 | motion#1631 +09:57:50.614-0700 871074178340630608 OHvCigI | motion#1014 +09:57:50.653-0700 871074169092202516 5OLsc4k | motion#3653 +09:57:50.750-0700 871074169188679731 xq7oYG4 | motion#8584 +09:57:50.791-0700 871074168307855381 l5epOcI | motion#6062 +09:57:50.796-0700 871074168769224744 2jjuZ-s | motion#5175 +09:57:50.879-0700 871074174217641994 CLdwQ6k | motion#6678 +09:57:50.910-0700 871074159348813875 NWWkMe8 | motion#1837 +09:57:50.939-0700 871074164625252362 kdzV4VQ | motion#1454 +09:57:50.969-0700 871074179372417075 Iy9Kz1s | motion#8385 +09:57:51.004-0700 871074174473502721 udx5J-I | motion#3745 +09:57:51.025-0700 871074174876155966 -32XZzQ | motion#4677 +09:57:51.172-0700 871074179720577097 AKaOZgk | motion#1380 +09:57:51.448-0700 871074170627326002 w7xgirg | motion#2028 +09:57:51.454-0700 871074166768545843 xc1QFkA | motion#2715 +09:57:51.507-0700 871074166953111582 hfuTDNk | motion#0686 +09:57:51.532-0700 871074177656950784 A59EsS4 | motion#8449 +09:57:51.584-0700 871074161307570267 eiremBg | motion#6019 +09:57:51.628-0700 871074176818089995 _vT2RV8 | motion#0675 +09:57:51.656-0700 871074175580790794 Z64smSo | motion#1715 +09:57:51.676-0700 871074178604863559 gmHOM0s | motion#3714 +09:57:51.688-0700 871074178927820801 dWPoFm4 | motion#4563 +09:57:51.703-0700 871074169582936134 t49xluY | motion#7934 +09:57:51.902-0700 871074177623396362 FFew80o | motion#5352 +09:57:51.944-0700 871074172070154240 91QeG9k | motion#9234 +09:57:52.078-0700 871074178428731443 IVypM-Y | motion#8385 +09:57:52.133-0700 871074183289896982 kNS3KeI | motion#1198 +09:57:52.143-0700 871074162691698708 CVz4Ceg | motion#9402 +09:57:52.146-0700 871074183336038470 gin05co | motion#5412 +09:57:52.148-0700 871074185303183440 ocnrYoI | motion#4872 +09:57:52.193-0700 871074181037584414 DbGnSSs | motion#7402 +09:57:52.198-0700 871074181293441074 0FUW4vI | motion#6402 +09:57:52.463-0700 871074185043148850 Do2QV2w | motion#4215 +09:57:52.551-0700 871074181129834526 05zzj6Q | motion#0683 +09:57:52.586-0700 871074180949508137 WTxrqbU | motion#7860 +09:57:52.629-0700 871074183675781224 Zm3RE4s | motion#7601 +09:57:52.666-0700 871074179519221770 yPUdYcE | motion#7687 +09:57:52.701-0700 871074179825405993 hLHonj8 | motion#0885 +09:57:52.716-0700 871074181461196891 iW8O8-M | motion#3206 +09:57:52.728-0700 871074180559437864 Bg_ykn4 | motion#9305 +09:57:52.746-0700 871074191066148905 GYofU_g | motion#0081 +09:57:52.787-0700 871074167590637619 _CniCtU | motion#3927 +09:57:52.800-0700 871074169444515920 PpNvvIg | motion#7689 +09:57:52.831-0700 871074183742881822 kDsSB5k | motion#1630 +09:57:52.840-0700 871074184527237150 hIeRHf0 | motion#8159 +09:57:52.890-0700 871074159592112198 yitI5CQ | motion#3535 +09:57:52.918-0700 871074183835177081 h2aXDn4 | motion#2637 +09:57:52.921-0700 871074184078458890 etwlWzg | motion#0560 +09:57:52.954-0700 871074184602734623 ES9uD2c | motion#1304 +09:57:52.992-0700 871074174335090738 9o1NJ5g | motion#6742 +09:57:53.067-0700 871074184904716329 kx0FUsY | motion#8131 +09:57:53.114-0700 871074186028802048 8NoqsEM | motion#4591 +09:57:53.180-0700 871074188331479061 vpk3LhU | motion#8944 +09:57:53.202-0700 871074181192769657 NHk21iU | motion#3246 +09:57:53.275-0700 871074187731697686 MLBujH4 | motion#6162 +09:57:53.279-0700 871074185999421440 gvLCsXw | motion#7316 +09:57:53.288-0700 871074178520997959 -uUELDE | motion#9605 +09:57:53.290-0700 871074187224166502 Y88xGIw | motion#6485 +09:57:53.299-0700 871074180391632957 6qxdYlM | motion#0969 +09:57:53.315-0700 871074185986859118 fCcUjNU | motion#3286 +09:57:53.315-0700 871074189526839356 Vk2_1SE | motion#2384 +09:57:53.361-0700 871074185114452059 EAYQuqo | motion#4453 +09:57:53.416-0700 871074184883765269 1HErleY | motion#0053 +09:57:53.439-0700 871074186217525248 4P0YTPg | motion#2326 +09:57:53.491-0700 871074183050838126 eL-eNx4 | motion#2481 +09:57:53.496-0700 871074189711396944 _tHEZNE | motion#9097 +09:57:53.592-0700 871074180731392110 dmuSN2s | motion#8974 +09:57:53.695-0700 871074180911755274 x79U3os | motion#8966 +09:57:53.965-0700 871074184120377464 o-bzNlQ | motion#6725 +09:57:53.981-0700 871074170807676948 bPg4xF0 | motion#7549 +09:57:54.015-0700 871074183168270336 XRao0pA | motion#9768 +09:57:54.021-0700 871074187240939560 dO8-ohM | motion#2951 +09:57:54.079-0700 871074190462165072 wRyTKNo | motion#4086 +09:57:54.127-0700 871074191489789982 pZGuTa0 | motion#7868 +09:57:54.190-0700 871074169373229077 wDs7e1s | motion#3499 +09:57:54.207-0700 871074190890004492 MCz3QjY | motion#2219 +09:57:54.218-0700 871074187861708900 -R5FTK8 | motion#1532 +09:57:54.219-0700 871074190135009320 jdu5zEE | motion#7681 +09:57:54.228-0700 871074183851950100 JrBGrPE | motion#6802 +09:57:54.240-0700 871074177531142195 6isoV30 | motion#2949 +09:57:54.282-0700 871074190667706378 I46bklA | motion#9464 +09:57:54.282-0700 871074188872523827 goIlmec | motion#6309 +09:57:54.320-0700 871074168869883904 D558tsU | motion#8734 +09:57:54.465-0700 871074189094846464 zjHVw08 | motion#8645 +09:57:54.638-0700 871074194450972703 w6zRD58 | motion#3789 +09:57:54.749-0700 871074193100398662 VxFaxe4 | motion#6870 +09:57:54.749-0700 871074187052191794 DZ0_gI4 | motion#4093 +09:57:54.751-0700 871074182673346611 1OmqtQE | motion#6514 +09:57:54.988-0700 871074194786492456 wAW12Z4 | motion#3977 +09:57:55.035-0700 871074189774303292 d07SUxY | motion#4179 +09:57:55.114-0700 871074196724281374 4QpnoIQ | motion#7562 +09:57:55.131-0700 871074192668381244 IXYBWyI | motion#4853 +09:57:55.233-0700 871074193175875584 XOgizH8 | motion#2813 +09:57:55.242-0700 871074201325424660 hC6FAqg | motion#9879 +09:57:55.337-0700 871074180194517103 lY3Yw6A | motion#5723 +09:57:55.446-0700 871074179468906537 uOwJw-Y | motion#3924 +09:57:55.468-0700 871074191242330152 1cq571o | motion#8486 +09:57:55.635-0700 871074201644187648 xcmPtvE | motion#0652 +09:57:55.726-0700 871074196086718496 zstSUKQ | motion#9744 +09:57:55.729-0700 871074203103793213 bPmIrfA | motion#6619 +09:57:55.743-0700 871074201136685167 U_M0mTI | motion#4505 +09:57:55.843-0700 871074179473088572 FO33iXE | motion#3236 +09:57:55.865-0700 871074189648490537 YuPow4c | motion#3631 +09:57:55.891-0700 871074195541463091 6zLATS4 | motion#2158 +09:57:55.902-0700 871074180962070608 dF7wOiA | motion#0327 +09:57:56.024-0700 871074191330381935 FqYCRZU | motion#7027 +09:57:56.094-0700 871074169226420264 rm4waMw | motion#6337 +09:57:56.123-0700 871074181020807238 DDKKuY4 | motion#4677 +09:57:56.133-0700 871074186951553057 33qjVzY | motion#4486 +09:57:56.173-0700 871074198070648832 44IzcjA | motion#5649 +09:57:56.175-0700 871074193012322425 FVz2EDs | motion#4680 +09:57:56.199-0700 871074202818596950 Xpro-uk | motion#8121 +09:57:56.237-0700 871074185819086910 qqdjdV0 | motion#6401 +09:57:56.248-0700 871074196774596608 GXY6BfA | motion#6199 +09:57:56.265-0700 871074189124194335 CNr49L4 | motion#3536 +09:57:56.343-0700 871074193574334465 TMy7wjw | motion#9093 +09:57:56.373-0700 871074180001566772 cvlGqVs | motion#9188 + + Raw IDs: + +871071437736267808 +871071437690142733 +871071438516416544 +871071441544704010 +871071439883743294 +871071441246900314 +871071441938939924 +871071441829912606 +871071440680677456 +871071443235004468 +871071443029467206 +871071441523732480 +871071440164757536 +871071440802312222 +871071444044488818 +871071439334305793 +871071442232569877 +871071442521960460 +871071441796341790 +871071442442289274 +871071443377614849 +871071443042041886 +871071443293716500 +871071442861703269 +871071440743575583 +871071442836533340 +871071443587317810 +871071446481379378 +871071443406950460 +871071437820133446 +871071444736544838 +871071445642518589 +871071446674317312 +871071451267076107 +871071449262202921 +871071447789998112 +871071446288453632 +871071450172391445 +871071446867263508 +871071446808555550 +871071451904610354 +871071448956022824 +871071451992719471 +871071445411827774 +871071440101863474 +871071449241251870 +871071447995531324 +871071450541461595 +871071449929113681 +871071441259479130 +871071453007728681 +871071452135325756 +871071440873611374 +871071450608582687 +871071449832624168 +871071442178027641 +871071452844150846 +871071456711311381 +871071441301438524 +871071453544607746 +871071452961595442 +871071452823158825 +871071455515906128 +871071455977279488 +871071452525379584 +871071453859180637 +871071456107311184 +871071456971345960 +871071455536898118 +871071459517267968 +871071458233839687 +871071453905293322 +871071453892735068 +871071456778387476 +871071456187011165 +871071456237355008 +871071457638252604 +871071456820334602 +871071456379940894 +871071452814798880 +871071456379940904 +871071456019226704 +871071455637557328 +871071444631711794 +871071458221252608 +871071455553662997 +871071457977974836 +871071444304543745 +871071458133151774 +871071460016390164 +871071459320156250 +871071459987042354 +871071462432313344 +871071465569669150 +871071463292162128 +871071465653534841 +871071460121260091 +871071462939832383 +871071457483046953 +871071459206897766 +871071451036409887 +871071452147896321 +871071448838582272 +871071462847553576 +871071459202711622 +871071461408899113 +871071459601182830 +871071457822769262 +871071464265228298 +871071459676663828 +871071455478169621 +871071455318769724 +871071468535046176 +871071453980790815 +871071470703501382 +871071469701038122 +871071463417987102 +871071454932926504 +871071472477696002 +871071456027619338 +871071455440437269 +871071468161740870 +871071462767857764 +871071468669239316 +871071471064191026 +871071467377393666 +871071469063536651 +871071468866400377 +871071455885004840 +871071468690214912 +871071455629176942 +871071468400824320 +871071472662224898 +871071469210333204 +871071474579030106 +871071457537556532 +871071474851643392 +871071468417589269 +871071471739473930 +871071456807759984 +871071476005109760 +871071471089352754 +871071456241528832 +871071473593376779 +871071475375947796 +871071473794682880 +871071473182318603 +871071471655583814 +871071473148755978 +871071474075729931 +871071475237548044 +871071466769244231 +871071472364437606 +871071476567113768 +871071476726530078 +871071472083406911 +871071476709728328 +871071476718112858 +871071480283283466 +871071478190325800 +871071481965187082 +871071478483923046 +871071467784241162 +871071479662542868 +871071479113076817 +871071482908930108 +871071478471360544 +871071479729639495 +871071481180864553 +871071481419956224 +871071464021971005 +871071471533961236 +871071482866978826 +871071483953291315 +871071481617088522 +871071485287075871 +871071483378675782 +871071481092792382 +871071484314009621 +871071485488410675 +871071466836357180 +871071478853009488 +871071485253546066 +871071483328335882 +871071481742893057 +871071486260158535 +871071487921115157 +871071487690440724 +871071485584875531 +871071473819877436 +871071486943821844 +871071489145864242 +871071487250018345 +871071479356330034 +871071488185364550 +871071493939929119 +871071491993767996 +871071489946947606 +871071490630635540 +871071484142059542 +871071491662413854 +871071482262986832 +871071487107403838 +871071480702709761 +871071489397522493 +871071488294416424 +871071466739888148 +871071495806410772 +871071478060318722 +871071477074640996 +871071482996989973 +871071497970659359 +871071481508028426 +871071486373417051 +871071496943054898 +871071499434459136 +871071499522551848 +871071483756150794 +871071490198605836 +871071496628477982 +871071499249934447 +871071498637549628 +871071497765146665 +871071500680171561 +871071499937783818 +871071486335680544 +871071486918684813 +871071504371187763 +871071502060101672 +871071494992719933 +871071486704750622 +871071501317726208 +871071492786491402 +871071503880450069 +871071504383762472 +871071500394958910 +871071502248861756 +871071500688564314 +871071504014663720 +871071487900147713 +871071502324346890 +871071480400711720 +871071499858112573 +871071506388647986 +871071503096103023 +871071490810978315 +871071504534736906 +871071506443149353 +871071506841612348 +871071502538256396 +871071506942279680 +871071505914679316 +871071504526372865 +871071500873117746 +871071504606036050 +871071507873431613 +871071494841696296 +871071505453289513 +871071504190799952 +871071507277840465 +871071506405416990 +871071509710508053 +871071493159784500 +871071496083226704 +871071493080104970 +871071507902779393 +871071512197746768 +871071492971069513 +871071509555343401 +871071511551836171 +871071507751784468 +871071508523540490 +871071505239400478 +871071512109666354 +871071509072977942 +871071512411652107 +871071513502171217 +871071511493083146 +871071508917788712 +871071514722717817 +871071511803490304 +871071513342787644 +871071514215198791 +871071513263079454 +871071513103695912 +871071512818499584 +871071512579424267 +871071503888842762 +871071514483634187 +871071507311370280 +871071515607703612 +871071512252276736 +871071514722697256 +871071514848534580 +871071511891546132 +871071506510278686 +871071483043123310 +871071509286879253 +871071514051620884 +871071511224660001 +871071515553193994 +871071518438858852 +871071514731085855 +871071519214813214 +871071512327766056 +871071516593360926 +871071514978553906 +871071519449686016 +871071511107231856 +871071515251204166 +871071471257145394 +871071513997090826 +871071490911637544 +871071515565756446 +871071516966670337 +871071517243502612 +871071502722805761 +871071506044706876 +871071515683196928 +871071517281247306 +871071504505405510 +871071497316360252 +871071509148491797 +871071516387835935 +871071504190828574 +871071520032710676 +871071518350774292 +871071518438858782 +871071518497574943 +871071519474843658 +871071517465776178 +871071520649273356 +871071523866279956 +871071523937603625 +871071521546838066 +871071520024297472 +871071511539224647 +871071525988610188 +871071526861041704 +871071525896355852 +871071525032321065 +871071525938274374 +871071521915945052 +871071527825731634 +871071522972901377 +871071517553885274 +871071525703413841 +871071527800557590 +871071514752073759 +871071519785254922 +871071527276277770 +871071526949118004 +871071510515830786 +871071519063805952 +871071495156277248 +871071525728563290 +871071510327091340 +871071529419542568 +871071518044614686 +871071530585579550 +871071518178811934 +871071529599905833 +871071532217159790 +871071529092407336 +871071514122944532 +871071528299683860 +871071527901233164 +871071527225925652 +871071530346491965 +871071528782024794 +871071527498547210 +871071531290206258 +871071528953970739 +871071531323756554 +871071527460798466 +871071526139613294 +871071527855075338 +871071528505184288 +871071530895966208 +871071528991731754 +871071516702433290 +871071529532797010 +871071531957104671 +871071533311881277 +871071531562840104 +871071529054646292 +871071530719805460 +871071529272737803 +871071519051227197 +871071517461585960 +871071519785242654 +871071535228665867 +871071532326219797 +871071532309438544 +871071531445387354 +871071534167502868 +871071531441209374 +871071535983644673 +871071520947073024 +871071532410101780 +871071534377226260 +871071537736847380 +871071534171713587 +871071537795575829 +871071537103536159 +871071533462876171 +871071534599532565 +871071531164397619 +871071534343659540 +871071534477881364 +871071537506172928 +871071541213954138 +871071538739286057 +871071537413902376 +871071534373040178 +871071538969993266 +871071535367094303 +871071535685853224 +871071537439076382 +871071535635529808 +871071536390492222 +871071542652588043 +871071533395759135 +871071541331394591 +871071535794909194 +871071537585864714 +871071539716579348 +871071540903542855 +871071542816165908 +871071540140208178 +871071536818323517 +871071543524986910 +871071537338409071 +871071541096497213 +871071522754822205 +871071540932931594 +871071535186718750 +871071539796262963 +871071529033674783 +871071539355856946 +871071540517687317 +871071539674632245 +871071541675298816 +871071542577070120 +871071529159524414 +871071541952131122 +871071531625771060 +871071539976618004 +871071546360360991 +871071530958880909 +871071540886798376 +871071541843087390 +871071542556098560 +871071542581293156 +871071546922389504 +871071531286036531 +871071540790300703 +871071546662346793 +871071544800055337 +871071547786428446 +871071544821026877 +871071542719705138 +871071546356138044 +871071547400523826 +871071545378877470 +871071546565853224 +871071544426766367 +871071532997304330 +871071542732267561 +871071546326777876 +871071531776741488 +871071537254498384 +871071544972034078 +871071549019533342 +871071534867939368 +871071548423934063 +871071547845140530 +871071552240771082 +871071548340064277 +871071541780172860 +871071554090463313 +871071554845438013 +871071551817142337 +871071549082447943 +871071554463727656 +871071555017400351 +871071552685346898 +871071555327782973 +871071541620772964 +871071556778983484 +871071555537481748 +871071540488314931 +871071542971355137 +871071554593755176 +871071559572410399 +871071555159990322 +871071551242514503 +871071557462667264 +871071559421423646 +871071560604213249 +871071547312463912 +871071557416534036 +871071556628021270 +871071561896054855 +871071560600002610 +871071557060030504 +871071559891173437 +871071559295594497 +871071562571333654 +871071541239111740 +871071556590239767 +871071560595808256 +871071547908046849 +871071550667886612 +871071558431555614 +871071551993307156 +871071542317043734 +871071547933216788 +871071549950681169 +871071566727876708 +871071556015640607 +871071544598732871 +871071565628993546 +871071565280849981 +871071562202243122 +871071570288840724 +871071564915941406 +871071567017312258 +871071568296542258 +871071566115516506 +871071566761439253 +871071556003070012 +871071554014953523 +871071568292368445 +871071565905788958 +871071570301452328 +871071566568493107 +871071567789035575 +871071553180274688 +871071550290399262 +871071568577568768 +871071573732384778 +871071572117553153 +871071557630460034 +871071574927761528 +871071569848443010 +871071566518177822 +871071569538056322 +871071558381232208 +871071558062448651 +871071571320668172 +871071573711396906 +871071569139621898 +871071566899871844 +871071568980246549 +871071571165466654 +871071560717463572 +871071576139903106 +871071560994271232 +871071573459755038 +871071578669088849 +871071576358027324 +871071569080901632 +871071576764842015 +871071562835570729 +871071564307763252 +871071569357729862 +871071578136391711 +871071572071415829 +871071580619419669 +871071575410089984 +871071578870386748 +871071564647497779 +871071576643219456 +871071576097964092 +871071573598154834 +871071567977799810 +871071585010860122 +871071581135315016 +871071587720380506 +871071581865115719 +871071574252486677 +871071578367094904 +871071584989900800 +871071572557983774 +871071571400347789 +871071588026581002 +871071572323090432 +871071585811963904 +871071586256584785 +871071583177941034 +871071579956731965 +871071591340077107 +871071588030775307 +871071575833714688 +871071577301745806 +871071587414196256 +871071585891659877 +871071585405108294 +871071589645578241 +871071593957326858 +871071591637852172 +871071591344250922 +871071592237629440 +871071591646249001 +871071588043350056 +871071592640311326 +871071593210708019 +871071587116400700 +871071594120872027 +871071587519041639 +871071595077173248 +871071598021599244 +871071595328864256 +871071587217080371 +871071591428141067 +871071600341053461 +871071585669378089 +871071595869908992 +871071597019144232 +871071601322516521 +871071597841248297 +871071602429820939 +871071599674142771 +871071586134949889 +871071573308735558 +871071602123603989 +871071599598637097 +871071599774814238 +871071600085192725 +871071600697548871 +871071604602466324 +871071602538840074 +871071601725149185 +871071592875188245 +871071595962187787 +871071602886995988 +871071605416161300 +871071605105782845 +871071603688104048 +871071605617471538 +871071584239120416 +871071603310624810 +871071601951666177 +871071603419648101 +871071606871572500 +871071609065185292 +871071606867386450 +871071604896067674 +871071600693362728 +871071590551531582 +871071608461226084 +871071607219716117 +871071609220399114 +871071608494780457 +871071609543360532 +871071597849636935 +871071612751982602 +871071612517109821 +871071611783114752 +871071615843176488 +871071610562576444 +871071613402120222 +871071612944936980 +871071613523755119 +871071613431463976 +871071618791796797 +871071615281135616 +871071606888345621 +871071613179809822 +871071615557980171 +871071611283980329 +871071616585576549 +871071618577887352 +871071614555541614 +871071617705455669 +871071613804769360 +871071612609364028 +871071617814511637 +871071617353138216 +871071623325843558 +871071616560398368 +871071619655798814 +871071619882287107 +871071620435947540 +871071621123829801 +871071620884734012 +871071623254532126 +871071623145484369 +871071623871074365 +871071623166427216 +871071622709248031 +871071623896264794 +871071625834029086 +871071624844173312 +871071626106646528 +871071628312862721 +871071625905307669 +871071629436936222 +871071629462077500 +871071627385917471 +871071626861617212 +871071625926307851 +871071628124094464 +871071607106469908 +871071624911269918 +871071632838520923 +871071629088813057 +871071620834422854 +871071622830891068 +871071617512517632 +871071629059448853 +871071620012331048 +871071629919272971 +871071631328567327 +871071635057307659 +871071636298801205 +871071627889233930 +871071631190147153 +871071635992625223 +871071635405434880 +871071634260389909 +871071635569012816 +871071624022073374 +871071636621762590 +871071637473202247 +871071632041603073 +871071636353323018 +871071636747587635 +871071639780098088 +871071634855956560 +871071625884336168 +871071636126847047 +871071638580527126 +871071636906967101 +871071637485809775 +871071635833249825 +871071618124881920 +871071637259304981 +871071640669257778 +871071637791981578 +871071636999241768 +871071625741729892 +871071636449792030 +871071641852059688 +871071638622437448 +871071640199495720 +871071639591321610 +871071639301922827 +871071643315888169 +871071631748001853 +871071640413437984 +871071641726226533 +871071644402216980 +871071642191802379 +871071641575231579 +871071638911873064 +871071642372157511 +871071646516129912 +871071645480140800 +871071629407567872 +871071643924070422 +871071641260662894 +871071637817159720 +871071647053013014 +871071645069082684 +871071631617957929 +871071631357927495 +871071644033105951 +871071646440648784 +871071632544915497 +871071640761565216 +871071646058950677 +871071644750327850 +871071631248863242 +871071647241764864 +871071646700671058 +871071632905633884 +871071646885232670 +871071646562263041 +871071643378806795 +871071634524610670 +871071647497601066 +871071647833141279 +871071638303674378 +871071633220206613 +871071649846403124 +871071647950573630 +871071649280180224 +871071636219129866 +871071645140406335 +871071632192598026 +871071636458209331 +871071647996723201 +871071648902684782 +871071649628323851 +871071652228767764 +871071648760082472 +871071649309532260 +871071653864566884 +871071635912933406 +871071650462978069 +871071653109571616 +871071650228097035 +871071651184377866 +871071650500710420 +871071644767105044 +871071651255709716 +871071647078182972 +871071650907553812 +871071649464713227 +871071650601394236 +871071654799896587 +871071639306133535 +871071656481796176 +871071649758322738 +871071655248662558 +871071656095940669 +871071640321130556 +871071641046757427 +871071638534385745 +871071639708770345 +871071654799884409 +871071652040036362 +871071652060999741 +871071654346903572 +871071653881319504 +871071651792584765 +871071649905127475 +871071639830421566 +871071655689068554 +871071645308174367 +871071654158143568 +871071654141370500 +871071653189287956 +871071640971280394 +871071640711208971 +871071654661455872 +871071653457703013 +871071657526177842 +871071659241660518 +871071658922889246 +871071649913528322 +871071653973614602 +871071656544722995 +871071641495547964 +871071655408066621 +871071656309837915 +871071658994184233 +871071647837323294 +871071657542946868 +871071657068990525 +871071657974960148 +871071637284454461 +871071655504531506 +871071659619143840 +871071656108498954 +871071657278701578 +871071656590852106 +871071640790896690 +871071642154070056 +871071642250539038 +871071655458377778 +871071657895284787 +871071659057086497 +871071655189950474 +871071658130165840 +871071658990006273 +871071661921820673 +871071652354592798 +871071658360840225 +871071662102155264 +871071656406298694 +871071658193059850 +871071647468257291 +871071662420946954 +871071659677859890 +871071659304554516 +871071659786907679 +871071660877438986 +871071657870106665 +871071658759307324 +871071662056042576 +871071659870801951 +871071646897803355 +871071645765369897 +871071656746041364 +871071658188890174 +871071652602060879 +871071658650267658 +871071659971473438 +871071647761825822 +871071661879861268 +871071650920161290 +871071663247224832 +871071651264081951 +871071662861332540 +871071662072823848 +871071661749854278 +871071662429335695 +871071662609666068 +871071664572629043 +871071624370192405 +871071650437808228 +871071662513221692 +871071654061703208 +871071663884763146 +871071661212958720 +871071662043443232 +871071664677474376 +871071662236377108 +871071666078380083 +871071661531746364 +871071663943471105 +871071662865522728 +871071663846989855 +871071661837910016 +871071664660693044 +871071664782344193 +871071663301734450 +871071669219893279 +871071666531356692 +871071656062365776 +871071665524719696 +871071669203140630 +871071663503073340 +871071664367083580 +871071653751308298 +871071662743908412 +871071667269562428 +871071665298239498 +871071655106080798 +871071666023837696 +871071654594367598 +871071666065784872 +871071654783090688 +871071668536213504 +871071669614178354 +871071665906413618 +871071671497392148 +871071667902877787 +871071657383587883 +871071667634454548 +871071657018675200 +871071669131804723 +871071667001110590 +871071659669467246 +871071665315012609 +871071666581688371 +871071664580993044 +871071668406210571 +871071671145087058 +871071669937127425 +871071670775971860 +871071667701563423 +871071650605588570 +871071669744197702 +871071669383471114 +871071669177950258 +871071672692797440 +871071658365042759 +871071667298902088 +871071669895192597 +871071657765273671 +871071658897723472 +871071673502281760 +871071672264978452 +871071671837134908 +871071674894807101 +871071668523655179 +871071659484921886 +871071670834692126 +871071673191907418 +871071676991934564 +871071670075555860 +871071673745559612 +871071671673565275 +871071671547752529 +871071667391189042 +871071673963675698 +871071674894794803 +871071668972437527 +871071675062562816 +871071674836090922 +871071679001010197 +871071676283113493 +871071678384467978 +871071673279995954 +871071664593596426 +871071664677470218 +871071677243613216 +871071664828465182 +871071667424727061 +871071677319086101 +871071674089488454 +871071672453701662 +871071678841630780 +871071660810322010 +871071676551557130 +871071658029494292 +871071673212866600 +871071676950016070 +871071677033893889 +871071679827296357 +871071674592804925 +871071679579820062 +871071679101681724 +871071669349937223 +871071677797240872 +871071677264588812 +871071664513904651 +871071670876651532 +871071666015465492 +871071681844756571 +871071682092216330 +871071683304382537 +871071681546948638 +871071676065001472 +871071681718939688 +871071682410991646 +871071678657089587 +871071679844061237 +871071682167701574 +871071681354035260 +871071686110351420 +871071672785055815 +871071677688217600 +871071679609200640 +871071679231713411 +871071683782516756 +871071687574184008 +871071682536808508 +871071680632590426 +871071668150370394 +871071674949324880 +871071685779009583 +871071676652220466 +871071684717850645 +871071667215028255 +871071667806437536 +871071678686453810 +871071679584018443 +871071685883887727 +871071654812450876 +871071671379963984 +871071685355397142 +871071648034488360 +871071683300163584 +871071682440364082 +871071678988423208 +871071688471764992 +871071686915653652 +871071688157175888 +871071685716111401 +871071688102641706 +871071682901717113 +871071685896466432 +871071683606356008 +871071672826986537 +871071665067536405 +871071674655707157 +871071688249446421 +871071684575236166 +871071683107233816 +871071688010371132 +871071682608123925 +871071674806718494 +871071685279887420 +871071673925894165 +871071685456052275 +871071686080987238 +871071688413028382 +871071689646153789 +871071690015264779 +871071692238237706 +871071679886032966 +871071689918791740 +871071689168011274 +871071693148389457 +871071692145954846 +871071687888760922 +871071692854792242 +871071690963181638 +871071689755226143 +871071696130568264 +871071695761465445 +871071695316852756 +871071689105096764 +871071691625877514 +871071681265934366 +871071690803806229 +871071681492447262 +871071680955564092 +871071682939478057 +871071694687719464 +871071691810418750 +871071683971264532 +871071681408548968 +871071694540902461 +871071694062747688 +871071682746515557 +871071699024625664 +871071695891472415 +871071696550002750 +871071682222256189 +871071696965238844 +871071682037678090 +871071693500710942 +871071695585304577 +871071695778226246 +871071698357723207 +871071698282242068 +871071696373833738 +871071695941799996 +871071698500333589 +871071692481503242 +871071683111419975 +871071698374496317 +871071697556619274 +871071700333248562 +871071697795686410 +871071681052024882 +871071690480844880 +871071695404953660 +871071701851570176 +871071698668109827 +871071697460138074 +871071699293061130 +871071700194820150 +871071689356742657 +871071699322433537 +871071700199018557 +871071698705850388 +871071697879597056 +871071702375870464 +871071698575851540 +871071699775393842 +871071686722740255 +871071699666366484 +871071700953989192 +871071703156015184 +871071700723335218 +871071698349350953 +871071699846721577 +871071700937224192 +871071689805529170 +871071699741868042 +871071700995932200 +871071688182341672 +871071702648512595 +871071702505889913 +871071689113473104 +871071702229078017 +871071693576237096 +871071700823990324 +871071702078066698 +871071702933708801 +871071705274155058 +871071706251395113 +871071702719811654 +871071703105695807 +871071701251797012 +871071699569897483 +871071705227993088 +871071706020708382 +871071705169293405 +871071704074559569 +871071704154247239 +871071703122472982 +871071705689374740 +871071708340158485 +871071702132617246 +871071708193378364 +871071705886511114 +871071708554072074 +871071706222067742 +871071704296878140 +871071709506187304 +871071708763803719 +871071708772204604 +871071709367787540 +871071707312570369 +871071707790708786 +871071703114063992 +871071671535140864 +871071706230444042 +871071706385629255 +871071711708192788 +871071695744667750 +871071708398882856 +871071695866302516 +871071707165753364 +871071711397830696 +871071709682335755 +871071707669073930 +871071706205270046 +871071709967560745 +871071708612812820 +871071694570262548 +871071709514592287 +871071705924259911 +871071699687321631 +871071709401350164 +871071711674646631 +871071710718345317 +871071708705083412 +871071714287697930 +871071709569105981 +871071709585866802 +871071712261849089 +871071709938200606 +871071696373841941 +871071714782621757 +871071710177296464 +871071713662758932 +871071711204888656 +871071709246144533 +871071711573971034 +871071710504419418 +871071710781255730 +871071707773960222 +871071706272366603 +871071715374014524 +871071712458969119 +871071717643132958 +871071717131444275 +871071718351994880 +871071716594552892 +871071717802516523 +871071717118865488 +871071720717549629 +871071718821744731 +871071716678463518 +871071720721764404 +871071690904444989 +871071717550878781 +871071703852257300 +871071703734820895 +871071703885811732 +871071716607139900 +871071716586160139 +871071706763120680 +871071705202827345 +871071715147530291 +871071715252383825 +871071708533121075 +871071720746921994 +871071719723507752 +871071721346719754 +871071719186628649 +871071719908048947 +871071722240090182 +871071723259297802 +871071720298119169 +871071720440758302 +871071723628429334 +871071723250933780 +871071723640983632 +871071710743527486 +871071721061511179 +871071726597992449 +871071711158763592 +871071721338339368 +871071666904633364 +871071701134348309 +871071727424249876 +871071721996816434 +871071716745568296 +871071723653570670 +871071726149181450 +871071713465630820 +871071722386882631 +871071726941929502 +871071724739891281 +871071720990191696 +871071728514768976 +871071725855596605 +871071725268390029 +871071715952820304 +871071724312072222 +871071729676603392 +871071729533980692 +871071729819205633 +871071727193575434 +871071715323682866 +871071719228575804 +871071731442405406 +871071729970200627 +871071726124007445 +871071716615540797 +871071727105482784 +871071731694047273 +871071729294925825 +871071709074169918 +871071733275316244 +871071732864266302 +871071729714352138 +871071716510687272 +871071719417327637 +871071726266646600 +871071727227125820 +871071733283692594 +871071730007937054 +871071717882212472 +871071731090096218 +871071734072246312 +871071717605388360 +871071720499466240 +871071732822310922 +871071732516159549 +871071733321441281 +871071732600041532 +871071732503547904 +871071732402909204 +871071735997415435 +871071733040414730 +871071735397646417 +871071736727216199 +871071716024143902 +871071732356763662 +871071719694143489 +871071740162347098 +871071737050181672 +871071738715312260 +871071740263026728 +871071739675824179 +871071738702729236 +871071740741165096 +871071702291996712 +871071737872273408 +871071733862506576 +871071735846412348 +871071734445506570 +871071731098484757 +871071727675908186 +871071728888053760 +871071728246353961 +871071739709362196 +871071720923099187 +871071726170165249 +871071733090771054 +871071734797848616 +871071735884165190 +871071746046955521 +871071744583172287 +871071746143440947 +871071743815585862 +871071745740787752 +871071744516034601 +871071746999062548 +871071747183607858 +871071745715626045 +871071752195821649 +871071748894896169 +871071744851574795 +871071750996250634 +871071748467064864 +871071746730655776 +871071754292977734 +871071753789644830 +871071713054560269 +871071736555262022 +871071742221746236 +871071755068903454 +871071757539377193 +871071751428243526 +871071754779516958 +871071752464269332 +871071748240592937 +871071752199999488 +871071755094065222 +871071754364289127 +871071744868360253 +871071761251323986 +871071743131934770 +871071740942516264 +871071744629293087 +871071759619751976 +871071740984426526 +871071756499185745 +871071762354413608 +871071747313639504 +871071756801146890 +871071758428536872 +871071753277947934 +871071761767231509 +871071759795896330 +871071762161500220 +871071755278647377 +871071760378888253 +871071765391097927 +871071762320863302 +871071760181772308 +871071760999669821 +871071763180716052 +871071760316002315 +871071761570078750 +871071763352678440 +871071766917832794 +871071763142942780 +871071742351794217 +871071767635046420 +871071767714750495 +871071757551947786 +871071764703223848 +871071766603239424 +871071767387603015 +871071762035638273 +871071766628401212 +871071767484047370 +871071750228672543 +871071765449801819 +871071752334221342 +871071764346716193 +871071768713003010 +871071767425343488 +871071749259808779 +871071771351216139 +871071769795112995 +871071759430983690 +871071769044332604 +871071773410619402 +871071773599363092 +871071773611921501 +871071774538862642 +871071772164894760 +871071760580218900 +871071771208593418 +871071764241870928 +871071764870995988 +871071773242818600 +871071773599359046 +871071773997809695 +871071779232313365 +871071764283813988 +871071765638565899 +871071770021617664 +871071765324005376 +871071772357824532 +871071774270455808 +871071778401845329 +871071746864844802 +871071781547556914 +871071758864773153 +871071782319296552 +871071781228798012 +871071781337833483 +871071768280965130 +871071783883788340 +871071781593681941 +871071778158575636 +871071767484063855 +871071780733865984 +871071781111337031 +871071786681385031 +871071779546890330 +871071764204122234 +871071776069783553 +871071781061017682 +871071780633194507 +871071783183335544 +871071785972547594 +871071774647943210 +871071781732110386 +871071771728703509 +871071784177385472 +871071785293082644 +871071784844267530 +871071775692324874 +871071771510579230 +871071786488430602 +871071787910299711 +871071786224189460 +871071786056437799 +871071785855111189 +871071786568126554 +871071773242839071 +871071785418911775 +871071789709672448 +871071774043959326 +871071787352481863 +871071789701296239 +871071775591657492 +871071789936160780 +871071775801364551 +871071786169683989 +871071775402905600 +871071790888288298 +871071794382131210 +871071790808563792 +871071793010601984 +871071791211216917 +871071776522764330 +871071787566379059 +871071791337054228 +871071796378632192 +871071791660007424 +871071794570874930 +871071794445033563 +871071794344370206 +871071790363983913 +871071797288767509 +871071793299988481 +871071783598575666 +871071787352461412 +871071797716607007 +871071787054673970 +871071797443964948 +871071800363204649 +871071773649690685 +871071796554776626 +871071796907098192 +871071801873137684 +871071799817932851 +871071794558279700 +871071770902421585 +871071801546010635 +871071800669401139 +871071799071375420 +871071793425834054 +871071800656801862 +871071803202740226 +871071799906021397 +871071799377543178 +871071790418493440 +871071802099658842 +871071804771405894 +871071793027371078 +871071805505409024 +871071789365731389 +871071807648702535 +871071805543161898 +871071804649775104 +871071807778750464 +871071790875705404 +871071806096805889 +871071805127938090 +871071802514866207 +871071805648035931 +871071809741680724 +871071792788279337 +871071765856653373 +871071807652917270 +871071808118489169 +871071791538372679 +871071800346439680 +871071811566194708 +871071805509611561 +871071809850728489 +871071809603260416 +871071800417714206 +871071798685483019 +871071814376382534 +871071805769662536 +871071808420446269 +871071812946112562 +871071812325367818 +871071810081390712 +871071810354049105 +871071811297746965 +871071813755621457 +871071804528148490 +871071818356752384 +871071812124016720 +871071815303323669 +871071800946225192 +871071820827222067 +871071811385843722 +871071813847887932 +871071818562285599 +871071795996942377 +871071808735031318 +871071820982407218 +871071813680132146 +871071811457146890 +871071818621026314 +871071806293966878 +871071806751113226 +871071810081411143 +871071825097007104 +871071826590183434 +871071822551068712 +871071811180326952 +871071815802433546 +871071810052042782 +871071810408550441 +871071819766042674 +871071825520644156 +871071814007291964 +871071826451779654 +871071823998091276 +871071821540245555 +871071820198076426 +871071827122876526 +871071824404955166 +871071828150472734 +871071832143458305 +871071827693297674 +871071827580043354 +871071827303211069 +871071830818058302 +871071824140709899 +871071826644729926 +871071829375201290 +871071820156121108 +871071831635951686 +871071827378700308 +871071832512557057 +871071823964536842 +871071835087855656 +871071819023650847 +871071829400379393 +871071817916375080 +871071829740122172 +871071830256001096 +871071821645099060 +871071832478994502 +871071830646079499 +871071835679260722 +871071812262457384 +871071831489122375 +871071834865537094 +871071833712132097 +871071834685194270 +871071833401745490 +871071836736217088 +871071834337071174 +871071832655147018 +871071835716997230 +871071822932758558 +871071838724321391 +871071836664901712 +871071838778843177 +871071827471007816 +871071836983668777 +871071837222736002 +871071837021421598 +871071839722549338 +871071840104247349 +871071826002985000 +871071838044844032 +871071826804088853 +871071834945224725 +871071832479002714 +871071827563257896 +871071839651233822 +871071832554479648 +871071827605221467 +871071841328971898 +871071839768690699 +871071840276209664 +871071831556251738 +871071840490094643 +871071843128344616 +871071838216785990 +871071835226247228 +871071839722565632 +871071839030493266 +871071842109116456 +871071839147941919 +871071835461124116 +871071841471582248 +871071846697693244 +871071846416662619 +871071844134961252 +871071834282549248 +871071844088815667 +871071842624995368 +871071831166177280 +871071829685583932 +871071828641218561 +871071847456862278 +871071834462896158 +871071846034968647 +871071848744493147 +871071847037411368 +871071812736409611 +871071850829062186 +871071848379584542 +871071826145607820 +871071831384277035 +871071849101025291 +871071849507876865 +871071840662085723 +871071848287326268 +871071838652997642 +871071848727724032 +871071854880759919 +871071853395996692 +871071841022803988 +871071834819399750 +871071851793752155 +871071852364177438 +871071851785379901 +871071836987867156 +871071839378632846 +871071855392473178 +871071844168507412 +871071856009023529 +871071851600838698 +871071854457131048 +871071854356467772 +871071857594474507 +871071855111458856 +871071856285851658 +871071854431985665 +871071856277479485 +871071832697106512 +871071844055285840 +871071842239135765 +871071852808769547 +871071847230373969 +871071858504663040 +871071852162875483 +871071847771414578 +871071858542403615 +871071862300487761 +871071860853469254 +871071852070580245 +871071854847197294 +871071848564150363 +871071846425055299 +871071864158572555 +871071851252686858 +871071844072046655 +871071848467664896 +871071849583366226 +871071865433636894 +871071865551065168 +871071862740897862 +871071859708411925 +871071861495185449 +871071858806640651 +871071863764307969 +871071866608058418 +871071866029219872 +871071848236986408 +871071850225090590 +871071863911088159 +871071864770928670 +871071852183822426 +871071859528052786 +871071867350450276 +871071867644031016 +871071872199049296 +871071858680811561 +871071868508049419 +871071872136134716 +871071873990012988 +871071869061705778 +871071873151172649 +871071858777288745 +871071869795704862 +871071870856876062 +871071868298350633 +871071866624819261 +871071874350723152 +871071873834835999 +871071872375218246 +871071871888658462 +871071861134467093 +871071872169689089 +871071870135463946 +871071876607258655 +871071870911414322 +871071874031968267 +871071872161312818 +871071859733573684 +871071862350823476 +871071867107176478 +871071876959596574 +871071862048841759 +871071865089691720 +871071875885838386 +871071852557107200 +871071871209197578 +871071878339510392 +871071876120739840 +871071879451017316 +871071880650575883 +871071865941135390 +871071879161610280 +871071879023173632 +871071881254551593 +871071867358806096 +871071878989639680 +871071877362245683 +871071883242635284 +871071883003576391 +871071882097598494 +871071882663821403 +871071879744593930 +871071877991383081 +871071883469131806 +871071882655461397 +871071884211548242 +871071883959877652 +871071885260095488 +871071886539391086 +871071873960669224 +871071867744698408 +871071874027761714 +871071884526092338 +871071874837254166 +871071887332114464 +871071885050388480 +871071887814438985 +871071885520175126 +871071886715539517 +871071889370529822 +871071880612814888 +871071890511392819 +871071887713767435 +871071890763038760 +871071867111346277 +871071875973918770 +871071887084634153 +871071887017533441 +871071876506587196 +871071862334033950 +871071870903009300 +871071886254174258 +871071872220012684 +871071890381344778 +871071891606085672 +871071890964369438 +871071886019285103 +871071890213568583 +871071889802539028 +871071895313866762 +871071896236621896 +871071894953160714 +871071877374816286 +871071887625711657 +871071890473619506 +871071884337373204 +871071894273658901 +871071896546992178 +871071896362426408 +871071891903889418 +871071897276784722 +871071885314654248 +871071896068821044 +871071893594202112 +871071891736133632 +871071894990889072 +871071894944763984 +871071896093990952 +871071885373345803 +871071884127649913 +871071899462041650 +871071886128328784 +871071896953839616 +871071895443873813 +871071897566208030 +871071882013736971 +871071900057628683 +871071902385463327 +871071887751512145 +871071902070865982 +871071901873754142 +871071901252997191 +871071902448357407 +871071901647261786 +871071896035291216 +871071899474612304 +871071903245275136 +871071902725197865 +871071896521809921 +871071896580530217 +871071888951115816 +871071899965341786 +871071886619054121 +871071903647924296 +871071899189391361 +871071905715720232 +871071887571173456 +871071906537816146 +871071906701389854 +871071907020148756 +871071905040457788 +871071900695134289 +871071902486110238 +871071903383715840 +871071897327112243 +871071906256805929 +871071903597604865 +871071895225782292 +871071905170485268 +871071904595869716 +871071906399399956 +871071907154386965 +871071908685312020 +871071905560543303 +871071908500746351 +871071907271803050 +871071907410231357 +871071904553914378 +871071911575183430 +871071910602104893 +871071906479112222 +871071895527772243 +871071907070496789 +871071910191054868 +871071909478027275 +871071912330166282 +871071898560266270 +871071906843996170 +871071910547578950 +871071916448952422 +871071909117308980 +871071899923398666 +871071905434710087 +871071908022611979 +871071912481140776 +871071908622368788 +871071914641207307 +871071915354259499 +871071910543368302 +871071894097494126 +871071913642950666 +871071912627957831 +871071913559068692 +871071915589140500 +871071915127742535 +871071909964554240 +871071913034788957 +871071902981046323 +871071911973642332 +871071906055483443 +871071907947102248 +871071909012451328 +871071915513630730 +871071914234359859 +871071916054683718 +871071915467489291 +871071920550977586 +871071921222078465 +871071905820594176 +871071916826431528 +871071906302926888 +871071922182586449 +871071920643244112 +871071922211934219 +871071901852762162 +871071919284301875 +871071918776787007 +871071918873251841 +871071922664931399 +871071919322042390 +871071922086100992 +871071892189093938 +871071920005722112 +871071921360502854 +871071925382811708 +871071918290255892 +871071922086092822 +871071921360474142 +871071911327707167 +871071923721871411 +871071922119671859 +871071923658969098 +871071922115448902 +871071928436289567 +871071927479963669 +871071925340880956 +871071923625422849 +871071923684122664 +871071914569908256 +871071922543271936 +871071923273105438 +871071905506013236 +871071922144825385 +871071924766261258 +871071916520267776 +871071926662078514 +871071926246862909 +871071931913359440 +871071929329676358 +871071926108450826 +871071915522015313 +871071927740031037 +871071916486701076 +871071925554806814 +871071930420178984 +871071934119550986 +871071929526792194 +871071928717283379 +871071912514682891 +871071933544927252 +871071934337667132 +871071934392188928 +871071933393952868 +871071932060151829 +871071923327615006 +871071932500570112 +871071936283832340 +871071935264620587 +871071932039180289 +871071927278661633 +871071924216819784 +871071932462792726 +871071936032153621 +871071934392189009 +871071934589317211 +871071934459285545 +871071924200030248 +871071935218470922 +871071935906336858 +871071935390416966 +871071937219153931 +871071935730180097 +871071937068138587 +871071936720015461 +871071936225087510 +871071924581707898 +871071937571467334 +871071938439688194 +871071939127558175 +871071936896188486 +871071921821863936 +871071936480952352 +871071936300589076 +871071927119265812 +871071939270152232 +871071936967487530 +871071938603282442 +871071941593792572 +871071936095084574 +871071939714773042 +871071943011467334 +871071939400196136 +871071942600454164 +871071942503964682 +871071926326550558 +871071928977358849 +871071938389348384 +871071929291915326 +871071940683632730 +871071930080432218 +871071942579462154 +871071939463114782 +871071941312802857 +871071943229599765 +871071941186977834 +871071927689678858 +871071931099676702 +871071939110776902 +871071943426715658 +871071942935986186 +871071945079287809 +871071928796975194 +871071931124842567 +871071944513032212 +871071930831216650 +871071947474210847 +871071944273985606 +871071945918132295 +871071944064237589 +871071945121226772 +871071944794071120 +871071942923386920 +871071941958713345 +871071945226080266 +871071945012178994 +871071949856575549 +871071949529448448 +871071945427402762 +871071938389352559 +871071946626973728 +871071950049517568 +871071937986711562 +871071947897839718 +871071936380297246 +871071945033146379 +871071932311797871 +871071935507865620 +871071945716805724 +871071934929043516 +871071952587063316 +871071948300496929 +871071950523473940 +871071949995003945 +871071938049613855 +871071954164154379 +871071936900399145 +871071947348406353 +871071950481526815 +871071941002412112 +871071949219037195 +871071950028570655 +871071949009346570 +871071947507777548 +871071953589530674 +871071952339619840 +871071952297660437 +871071956244504586 +871071952285089813 +871071955409862736 +871071954344509440 +871071954499686430 +871071957905457192 +871071957200797706 +871071943275716619 +871071958723358730 +871071955963486289 +871071949743341608 +871071954843619398 +871071956840112158 +871071956613627904 +871071954763927592 +871071944513032233 +871071954373836820 +871071956059963402 +871071955791511602 +871071958291333120 +871071957683142656 +871071949005131816 +871071954935894076 +871071958211649536 +871071962418532382 +871071962141687899 +871071959448977530 +871071959096651858 +871071960078106644 +871071961424470046 +871071945662279750 +871071958199054377 +871071960048746496 +871071948560560128 +871071960535273533 +871071953887318037 +871071963941064784 +871071960602390568 +871071958463295539 +871071961600643102 +871071961218953226 +871071952570294334 +871071945909739550 +871071960342331392 +871071962087166062 +871071943791624212 +871071961642577970 +871071965874642955 +871071958966624266 +871071961659363348 +871071963819409408 +871071960950521887 +871071963886534686 +871071961793585262 +871071961042796614 +871071967543984198 +871071967627857980 +871071962707943494 +871071961374150656 +871071965509726278 +871071964893167656 +871071962900869120 +871071965530705920 +871071965320986685 +871071964272427060 +871071966197596160 +871071948837384202 +871071966461829140 +871071957246947379 +871071968085041223 +871071959138574448 +871071965165813761 +871071968647077928 +871071959742558310 +871071967514599444 +871071938641018990 +871071965769777242 +871071971801194546 +871071965622972486 +871071973013327902 +871071956840087553 +871071967346843668 +871071973592166451 +871071959121805312 +871071970433826846 +871071970400284712 +871071971293687818 +871071958362636328 +871071968798076928 +871071963244802069 +871071968777076798 +871071966814154753 +871071968106020915 +871071971935420486 +871071966159843345 +871071961629991022 +871071953128157285 +871071963035082792 +871071966461849630 +871071975609630740 +871071973445369866 +871071973877358593 +871071958199070804 +871071962405937182 +871071973072076820 +871071968638664714 +871071956445823037 +871071970417049630 +871071971817975808 +871071957544742973 +871071976695943209 +871071972744888333 +871071959243456572 +871071974531678268 +871071971121692714 +871071971448856586 +871071976565919775 +871071976532377641 +871071976616239154 +871071975014006815 +871071976263942194 +871071952851312652 +871071977375408178 +871071961466429471 +871071978411409509 +871071971847319582 +871071978386243604 +871071952876478464 +871071981020262471 +871071977497059369 +871071971536961616 +871071975299248180 +871071964201103362 +871071965438410823 +871071966482821232 +871071974883999754 +871071974284197988 +871071980059762698 +871071980177215498 +871071983247446016 +871071983037730826 +871071974661709924 +871071970425462834 +871071981888475177 +871071981112537149 +871071977341845585 +871071983863988265 +871071984518324285 +871071967892107295 +871071983830458419 +871071971864105020 +871071984774160405 +871071979032178759 +871071971515957339 +871071982085615698 +871071972153511996 +871071973608919070 +871071974875627561 +871071983276802069 +871071982517628929 +871071983402647562 +871071987827605524 +871071984732213339 +871071986426736670 +871071979350929429 +871071973315338260 +871071989098479646 +871071987798278166 +871071987282378813 +871071987932491777 +871071989228519436 +871071988607754301 +871071990335819796 +871071977371226142 +871071987559182366 +871071974384873472 +871071987227828264 +871071987592744960 +871071988083478579 +871071988217688084 +871071989832507453 +871071989022982154 +871071993183752212 +871071989782163478 +871071989417267232 +871071990637789245 +871071991644426340 +871071979506122772 +871071926284603422 +871071979732627467 +871071977505435698 +871071990205804584 +871071996434337863 +871071991099191327 +871071980227559434 +871071996442710087 +871071980638601286 +871071988964286558 +871071995050213396 +871071993804496906 +871071998141427793 +871071984891617370 +871071983109017660 +871071992651083807 +871071963571949639 +871071996958617600 +871071995352195124 +871071973113999371 +871071993179541505 +871071994781782087 +871071984774164521 +871071989652148226 +871071992877563934 +871071996761473064 +871071962674368594 +871072000049832017 +871071995394150430 +871071992638488586 +871071999013830696 +871071999676538970 +871071985785004112 +871071988238671974 +871072000574107728 +871071959281193040 +871071993884201012 +871071979116060774 +871071993305370634 +871071990411325461 +871071999865262191 +871072000762843157 +871071997197705317 +871072002960679032 +871071997428396073 +871071985797566525 +871071998728613959 +871071999991103518 +871072004864880740 +871072000892870676 +871071994597212160 +871072005275926588 +871072001563963452 +871072001589141544 +871072000913866772 +871072005171060766 +871072003891814432 +871072004583854100 +871072002180530246 +871072001660440666 +871071993255034891 +871071991770255430 +871071992743337984 +871072003258470400 +871072001467486289 +871071981422927904 +871071993800319028 +871072005020078102 +871071832936169514 +871071994022604822 +871072007184351273 +871072004780982362 +871072006467096616 +871072006634897428 +871071985625600010 +871071990470017054 +871072008274853898 +871072005389164615 +871072005129125898 +871072011001163816 +871072005313675316 +871072009587675208 +871071995545124995 +871072008841068544 +871072006987206686 +871072008614576168 +871071995176030240 +871072011554803802 +871072006655868959 +871072008555888731 +871072008736243712 +871072004051185704 +871072006353846322 +871071997189304350 +871071999852683304 +871071998476967986 +871072010774671360 +871072013031186523 +871071998015578123 +871071997478731838 +871072011257000016 +871072013207343104 +871072006420987965 +871072014738288640 +871071998992863242 +871072008732033056 +871072010694979614 +871071975584456726 +871072010418131014 +871072013375127552 +871072000066600980 +871072002528641024 +871072013622587512 +871072016193687562 +871072013270274079 +871072000284708945 +871072014562111518 +871072013211566100 +871072015967195156 +871072014000062485 +871072016990625844 +871072014796980254 +871072015908503624 +871072015069630504 +871072017091297291 +871072018655748146 +871072018739654688 +871072018211147786 +871072017762357268 +871072022296420412 +871072014658576396 +871072017116438558 +871072022111879278 +871072018764820490 +871072019138109482 +871072023177207828 +871072023735042048 +871072022610989126 +871072023307239485 +871072024204824627 +871072022757797929 +871072011965857932 +871072021457567785 +871072011093434448 +871072023324016650 +871072021130403870 +871072023047192596 +871072026486509568 +871072023722487871 +871071997675851827 +871072024959778856 +871072024339046421 +871072026553638922 +871072012603359293 +871072025018499102 +871072023571464243 +871072024188055623 +871072023156256790 +871072022275448882 +871072026826264576 +871072015392595988 +871072027262459904 +871072028717899797 +871072026473938965 +871072022971711559 +871072027677716500 +871072024045449306 +871071986493825104 +871072029779066931 +871072029892280370 +871072016113991690 +871072029825200179 +871072021893750814 +871072030345293865 +871072020576743465 +871072010975973376 +871072030957645854 +871072033784623137 +871072018647384104 +871072031196725349 +871072033394548796 +871072035181326367 +871072033222582323 +871072030458544209 +871072032446644224 +871072029292527636 +871072036368318585 +871071958396182621 +871072037421068328 +871072033734287360 +871072036636725289 +871072037609811968 +871072031611961344 +871072033809764352 +871072036485738636 +871072034824794113 +871072036913549313 +871072035252617228 +871072036720607293 +871072036917764164 +871072024250970132 +871072038431907950 +871072019024863282 +871071989140422706 +871072037530128404 +871072030215258163 +871072037110702151 +871072036116643880 +871072037005824051 +871072041640538122 +871072040696823898 +871072037442060309 +871072040965271573 +871072026088071240 +871072039916695664 +871072039174287370 +871072027740622849 +871072039170105394 +871072028545916958 +871072040440959017 +871072037832130580 +871072039748898836 +871072045146980362 +871072027245674506 +871072039174287461 +871072041120436316 +871072038276710441 +871072039803441183 +871072043737702441 +871072040801681478 +871072044001939477 +871072042261295145 +871072041502138388 +871072044027084811 +871072044777877544 +871072045209890887 +871072027765788673 +871072043439894549 +871072046417846374 +871072028206182442 +871072043846746192 +871072045969063948 +871072045625135114 +871072042999513128 +871072041552474173 +871072030051688459 +871072044077445173 +871072011051470878 +871072043699953694 +871072043062399057 +871072043066597447 +871072043154690058 +871072042932404285 +871072045012762634 +871072042852696094 +871072048561127464 +871072045373485076 +871072047256715394 +871072048317857813 +871072047256723547 +871072045520281620 +871072046447210527 +871072044836605994 +871072049085415425 +871072046027784233 +871072051388096523 +871072038285086820 +871072050930913280 +871072046233296926 +871072043272122498 +871072048431124490 +871072045948108810 +871072049542627359 +871072049383219220 +871072047369957397 +871072046275231745 +871072051501338746 +871072052105322586 +871072049039290448 +871072050775740476 +871072038683545620 +871072054227648583 +871072051715264522 +871072048712151060 +871072054009544704 +871072049689395261 +871072054777110539 +871072054915526726 +871072055263641630 +871072052973543484 +871072052126294016 +871072048456290335 +871072051383914527 +871072048988954675 +871072049748119643 +871072056727457792 +871072055037157406 +871072056773595197 +871072055976661042 +871072051769770037 +871072056534515722 +871072057541148683 +871072060330364968 +871072044605898753 +871072048942841897 +871072054810669096 +871072056756801537 +871072060959490108 +871072055234281563 +871072045130219610 +871072049924276295 +871072056245112832 +871072043913850880 +871072054764535878 +871072050721214465 +871072044853366794 +871072047713878016 +871072052038225981 +871072048401760347 +871072059520868394 +871072057956401162 +871072054659657748 +871072055708254238 +871072052671565914 +871072053644644392 +871072062821773333 +871072048611487856 +871072056140263444 +871072056152846376 +871072063853584404 +871072060112244786 +871072043871920179 +871072064335908874 +871072058015100969 +871072055263637584 +871072035323908096 +871072061899026482 +871072051522318376 +871072045130215426 +871072060179370044 +871072059285995560 +871072046250074142 +871072060842065971 +871072063555768390 +871072032387891272 +871072057776037909 +871072049198686238 +871072062100373555 +871072059353079878 +871072067280306226 +871072062255558696 +871072062591107122 +871072063165714533 +871072055838261260 +871072056526123028 +871072049009922069 +871072065002815489 +871072060439408661 +871072051920764958 +871072057222365214 +871072056173805568 +871072063329304576 +871072047684534293 +871072061739638814 +871072048888287242 +871072058338050128 +871072059957059624 +871072056819716166 +871072060732997642 +871072062700150816 +871072068207280248 +871072064927326259 +871072059260821515 +871072059134976020 +871072066953158738 +871072067641028700 +871072045021143101 +871072063962636288 +871072054101835806 +871072063006310421 +871072048384970823 +871072065304801290 +871072065770360932 +871072064008757268 +871072060783353856 +871072064323342406 +871072065552273490 +871072064193306634 +871072065850052619 +871072064386256946 +871072060405870592 +871072044895322132 +871072053397188688 +871072063845175316 +871072065984282696 +871072068270174209 +871072045180518421 +871072068429574144 +871072053535592458 +871072069440397343 +871072064038125638 +871072068328890438 +871072068500869151 +871072056610009130 +871072064327536660 +871072062163279912 +871072047512571935 +871072067360002088 +871072068861579364 +871072067288698900 +871072055678885889 +871072063824211969 +871072066265296967 +871072068375052298 +871072062414917702 +871072070447026226 +871072066974138378 +871072071113900092 +871072067016089680 +871072074033160242 +871072065271259187 +871072072707760128 +871072068073050142 +871072068022730792 +871072070472196156 +871072067141910559 +871072062154895411 +871072070778380328 +871072065925554207 +871072070925185074 +871072072409972766 +871072062268112939 +871072070300205087 +871072067632631848 +871072070895816804 +871072041216934008 +871072072372199424 +871072068953845770 +871072070992269342 +871072072766468168 +871072068995805264 +871072068400205824 +871072075564060702 +871072074054131732 +871072066818961468 +871072071797604403 +871072050717007992 +871072073987006515 +871072076675559424 +871072065556463616 +871072076298092594 +871072075601834044 +871072062280708136 +871072074372890665 +871072070623199243 +871072073760518154 +871072071172620318 +871072076029644820 +871072061697708042 +871072079708045382 +871072071755636797 +871072073810837564 +871072075320786996 +871072077422157865 +871072074565845123 +871072073685016578 +871072076994314261 +871072075425648671 +871072067162894368 +871072064679845888 +871072063580930088 +871072076860121129 +871072076272918599 +871072079859048488 +871072073143951474 +871072077745119232 +871072080844697630 +871072063681626143 +871072077929664565 +871072079653515275 +871072047420280913 +871072064579199026 +871072075824111726 +871072077485064293 +871072079263461376 +871072079796121630 +871072078613340160 +871072064675655732 +871072080509149215 +871072083453566976 +871072065741000705 +871072079049539695 +871072081704550430 +871072068232429619 +871072081142493185 +871072083097034784 +871072080135880755 +871072080483987496 +871072083399049266 +871072079624142849 +871072079250878516 +871072080492372028 +871072082400776262 +871072067829768242 +871072083617148928 +871072087551389696 +871072082576945242 +871072081951989792 +871072085643001908 +871072087320690708 +871072067867533324 +871072087261990912 +871072087203258429 +871072087530418176 +871072087433949224 +871072088121835520 +871072087513636915 +871072087131967500 +871072085039013909 +871072081670979604 +871072086477660210 +871072085605240882 +871072086494425168 +871072075098521620 +871072071470436382 +871072085424885821 +871072088922914816 +871072086364405782 +871072075631190056 +871072088436404286 +871072072435138632 +871072090458034186 +871072088084066364 +871072087635279903 +871072085802352641 +871072075505365052 +871072084984492072 +871072091112341574 +871072087446536242 +871072087626874880 +871072089711460404 +871072087761100831 +871072074758778971 +871072085810753546 +871072089296228392 +871072087505268756 +871072092039295066 +871072088860028948 +871072090583883846 +871072075652149298 +871072091322089552 +871072093603758112 +871072088130215976 +871072081201217538 +871072088696447006 +871072094526505003 +871072090508386405 +871072095436669018 +871072092479684658 +871072091468873778 +871072077434720326 +871072092051886110 +871072079892602880 +871072095235371048 +871072090781016195 +871072076813983804 +871072091842166804 +871072073148166194 +871072092706181170 +871072094107091004 +871072095516364850 +871072092257390682 +871072085974347786 +871072079053725777 +871072095122108456 +871072098540462121 +871072094014824518 +871072093884805140 +871072098750189597 +871072083650703370 +871072086683185194 +871072098779557980 +871072098406240256 +871072094228725790 +871072083130580993 +871072092957863977 +871072094253879356 +871072069880807494 +871072086469275748 +871072097756131380 +871072094744617020 +871072097022132294 +871072090785185832 +871072098456584302 +871072084795731968 +871072100675366963 +871072097953276005 +871072102260801576 +871072089191370752 +871072085127102485 +871072086444109844 +871072101640056892 +871072101736546354 +871072097454133268 +871072099618414632 +871072098540482661 +871072090936193024 +871072097273790495 +871072101124145172 +871072098364297226 +871072098838249612 +871072099811336263 +871072100360781844 +871072092622299156 +871072105423339581 +871072101107384370 +871072098011983902 +871072104987103252 +871072099555508284 +871072099819720755 +871072104035016704 +871072102139195452 +871072092777512981 +871072106853597194 +871072104806764624 +871072105217818654 +871072104999682118 +871072103804338218 +871072068240822344 +871072099807150160 +871072104496398398 +871072106916499527 +871072108841668668 +871072101690404895 +871072093897392198 +871072088209891350 +871072107780517888 +871072105381392464 +871072097277968414 +871072103590404127 +871072105662390322 +871072104567701524 +871072105649819738 +871072105037439078 +871072100050407535 +871072094815940648 +871072105310064650 +871072106228629565 +871072109869281432 +871072110322266213 +871072071852113920 +871072095222788146 +871072104005648406 +871072089979899925 +871072093700247595 +871072101132546048 +871072097647083521 +871072093633146901 +871072105997934618 +871072097634508810 +871072110343233558 +871072107843436544 +871072107528847360 +871072107520491591 +871072111970648084 +871072095608664065 +871072105318465577 +871072109395316756 +871072111718985778 +871072113644142684 +871072111626711040 +871072089484972052 +871072114810159105 +871072098607571005 +871072095218565131 +871072108048969770 +871072098527879198 +871072095453466684 +871072112268443658 +871072109957349376 +871072099056357388 +871072111056273438 +871072100214014023 +871072098733400084 +871072112574627860 +871072111924510772 +871072111198896148 +871072115544162345 +871072116471107605 +871072116173312040 +871072101350670346 +871072114294292530 +871072115489665044 +871072116861202463 +871072112461352960 +871072115288338453 +871072101715558450 +871072112620736552 +871072117007990784 +871072114306846751 +871072100021063702 +871072112977252373 +871072111228223528 +871072102231466026 +871072111421194301 +871072114814369863 +871072104756416652 +871072116626325614 +871072106702573599 +871072107365285908 +871072114839552131 +871072116940869683 +871072116571766814 +871072116013944872 +871072119193223189 +871072118006235156 +871072107709222974 +871072106866180107 +871072117356105819 +871072117368717372 +871072102747340800 +871072116554997812 +871072119084159017 +871072118731837520 +871072117410639972 +871072117309968425 +871072120459886653 +871072121714004020 +871072109802160148 +871072112201322557 +871072118476009524 +871072107260440657 +871072054147965060 +871072125178495026 +871072120002732054 +871072122687070269 +871072120401170442 +871072118635393064 +871072110397767752 +871072122171174963 +871072107331731506 +871072119797215274 +871072106274758716 +871072121869185075 +871072121412005928 +871072122812891197 +871072113870651422 +871072112113254430 +871072121466535936 +871072111966449674 +871072125514022913 +871072124654215218 +871072112457166981 +871072117058338836 +871072125010726953 +871072128143867984 +871072125061054515 +871072129150484480 +871072123316228106 +871072130433970186 +871072127720255499 +871072125346283550 +871072126025760798 +871072124964593674 +871072131193122867 +871072131688067122 +871072128492011560 +871072128039006220 +871072128458457118 +871072125950246923 +871072128928215151 +871072118459224154 +871072130035494962 +871072129897086996 +871072126139002881 +871072129154711622 +871072132573040721 +871072114562707536 +871072133952979014 +871072130161324062 +871072121667858443 +871072129251168278 +871072117746188330 +871072118178205726 +871072135165132851 +871072132220739614 +871072119516176395 +871072131058905119 +871072134116540446 +871072133554511993 +871072058891706422 +871072132656930897 +871072133709709332 +871072120271159316 +871072121252618241 +871072135576186950 +871072138474442824 +871072137060950027 +871072135710392370 +871072124406739024 +871072133239943238 +871072134603092071 +871072123848904795 +871072133801971803 +871072138067574786 +871072140319928390 +871072140525461544 +871072112109060206 +871072125681819728 +871072123198783519 +871072131591581716 +871072135899152424 +871072138726113290 +871072140911345724 +871072139262959657 +871072106400608288 +871072139216834570 +871072137891422248 +871072139527217173 +871072138034044988 +871072138747084881 +871072141687275551 +871072136880586853 +871072140072456293 +871072144262594670 +871072129456697464 +871072128496205854 +871072141414637568 +871072131050520586 +871072145122422835 +871072144543584316 +871072128928198776 +871072143864115280 +871072142110892052 +871072143239184414 +871072143440490526 +871072144698798120 +871072143943815218 +871072145604755606 +871072147483803668 +871072148654002186 +871072145030127647 +871072144988184616 +871072146212941874 +871072146900795483 +871072145491525693 +871072149513850900 +871072149568389160 +871072146678505512 +871072151594221608 +871072135391621120 +871072146468798474 +871072148897267713 +871072151141253151 +871072150461751337 +871072151313219694 +871072145961283604 +871072151552266350 +871072139275542608 +871072151548096572 +871072154203078667 +871072152563105822 +871072152449863702 +871072154425389107 +871072140269604964 +871072150814064732 +871072152915431424 +871072151862669313 +871072152777031680 +871072151313190923 +871072142794588221 +871072152848302120 +871072155838844988 +871072156845473793 +871072152617635881 +871072139036471326 +871072157264920576 +871072137002237982 +871072151912980480 +871072153838178354 +871072150998622248 +871072152835747881 +871072152156258314 +871072140710014997 +871072150193340486 +871072155541073951 +871072156228931635 +871072149622906970 +871072151720050758 +871072136817700864 +871072151585845328 +871072155901784094 +871072159110402078 +871072154081443870 +871072146359713823 +871072127833497640 +871072159848599562 +871072154035318844 +871072161366937600 +871072159894765579 +871072147827732511 +871072150755348540 +871072162537156611 +871072149283168306 +871072163740934214 +871072163980009502 +871072149018906716 +871072152294653952 +871072162394566716 +871072166395908136 +871072164441374771 +871072166706290698 +871072166907613204 +871072166374948895 +871072163522826320 +871072165376712747 +871072164172935178 +871072164386852945 +871072164894376016 +871072167989743637 +871072168321097739 +871072153909473311 +871072152923807754 +871072154802868235 +871072166974730290 +871072152277889096 +871072165007622214 +871072166974734387 +871072162755256412 +871072168971223120 +871072164923707392 +871072157529153557 +871072166957944882 +871072170925764708 +871072167662587914 +871072156082114671 +871072170325987338 +871072167574503475 +871072157357187142 +871072172964204544 +871072167939420220 +871072170648948806 +871072170305024110 +871072155952091137 +871072169348694117 +871072172234375260 +871072163480875078 +871072170758004776 +871072158137327616 +871072173454934096 +871072158036660335 +871072164252627064 +871072168748937246 +871072170208546867 +871072159173333044 +871072170300813352 +871072174415429702 +871072173127782420 +871072175812149268 +871072170728628277 +871072160704233503 +871072170938335282 +871072166987321344 +871072171949170698 +871072173874376764 +871072173228429383 +871072176755851274 +871072173643685958 +871072171840118825 +871072173622702100 +871072153150320710 +871072177544392784 +871072164604956693 +871072174952284201 +871072164047110194 +871072180648153098 +871072181671563334 +871072178718797834 +871072165825490994 +871072178911711292 +871072179930935336 +871072180790771713 +871072177686982696 +871072181000478741 +871072178886565978 +871072164680454154 +871072179364724797 +871072176684531793 +871072165624176710 +871072181017280562 +871072182250401812 +871072170019815485 +871072181965180939 +871072179884793856 +871072167960387645 +871072168023298118 +871072177410166785 +871072181851934760 +871072182682415105 +871072179712843806 +871072168975413269 +871072181541543956 +871072178915909662 +871072171181608970 +871072182447525929 +871072183114420225 +871072181638037556 +871072181025644564 +871072183366082670 +871072182430740480 +871072183143768104 +871072170174971944 +871072185249308722 +871072182611083284 +871072186125938768 +871072186612482069 +871072182988582993 +871072183361867858 +871072186616672316 +871072185740062741 +871072187564572742 +871072184985063494 +871072184385290330 +871072188726394905 +871072164504272896 +871072189720428595 +871072186478239805 +871072176021860362 +871072187598123038 +871072189078712321 +871072188512469053 +871072179679264798 +871072190488006667 +871072176680366111 +871072175560462366 +871072187992395796 +871072188558639187 +871072190748045402 +871072189984690196 +871072193977675816 +871072169814274058 +871072193575022642 +871072191020679198 +871072192601931797 +871072193587597372 +871072195470831668 +871072194967519262 +871072191523991592 +871072193847656530 +871072192627101716 +871072190324412456 +871072178970447942 +871072182967607316 +871072197286981713 +871072193998643221 +871072195240153118 +871072194254471199 +871072198121644112 +871072179935129620 +871072195231752242 +871072193289810020 +871072194795536384 +871072191314292736 +871072194636156939 +871072195454054400 +871072195928031303 +871072194220937276 +871072193491107890 +871072184712441936 +871072190970351688 +871072197760909362 +871072195793809428 +871072195948982362 +871072200025853973 +871072187858161734 +871072188818686002 +871072198247460864 +871072197815463956 +871072198788538449 +871072188076273664 +871072196511014953 +871072196070608918 +871072196095799396 +871072199686098974 +871072188839645205 +871072199103103047 +871072202034917448 +871072183512870932 +871072199719665675 +871072195705712720 +871072198914347059 +871072187652640778 +871072200634023987 +871072200504012810 +871072200856318003 +871072200491417651 +871072201061826571 +871072197899333673 +871072199493156914 +871072191293304832 +871072192148942848 +871072200797605959 +871072174897762397 +871072195185618964 +871072203414835261 +871072190756438066 +871072202697609286 +871072205793017966 +871072201519034409 +871072189603008522 +871072202433376306 +871072204211781643 +871072204450832474 +871072202458562610 +871072207437193237 +871072169982050325 +871072190035001364 +871072189795934218 +871072199296028692 +871072205855936572 +871072190307635222 +871072208632573972 +871072208204726294 +871072207080677467 +871072188227256331 +871072208884203551 +871072166014255155 +871072204501176370 +871072205411348551 +871072194162216990 +871072205075787836 +871072200831172669 +871072208410279947 +871072174499332096 +871072193579188244 +871072194459992134 +871072192832606269 +871072207563018240 +871072207764324412 +871072210012471296 +871072197052104713 +871072212310978570 +871072203993673728 +871072195793780786 +871072196896882758 +871072168551796779 +871072211191078972 +871072213778968626 +871072210582900776 +871072206178893865 +871072208305401856 +871072206657048576 +871072211400814642 +871072205000298546 +871072200982134814 +871072198352310303 +871072209869864960 +871072211048488981 +871072206858383382 +871072211014914089 +871072195877670953 +871072205365215233 +871072199296053279 +871072213380522015 +871072213527326740 +871072200009056276 +871072212029935697 +871072200193634335 +871072210725519400 +871072212357091348 +871072200625647696 +871072212529061919 +871072215305703434 +871072214080966706 +871072217608380467 +871072200684355584 +871072203435819018 +871072214060003349 +871072214999498832 +871072217436397610 +871072219680346142 +871072213154013235 +871072219294498856 +871072203481952276 +871072219365781584 +871072204421492818 +871072203716853791 +871072218795360337 +871072218354966579 +871072214580080710 +871072210490654780 +871072217964892161 +871072221995622400 +871072223824334889 +871072220691169400 +871072216064860221 +871072219437076550 +871072218724073493 +871072220817018890 +871072225523023892 +871072222998036510 +871072220309487647 +871072224206016533 +871072225862754334 +871072208167010324 +871072220980584459 +871072190794203176 +871072219462238210 +871072224231194654 +871072215859331122 +871072226571603968 +871072223555891270 +871072223316836414 +871072223904006195 +871072223748816906 +871072221525839902 +871072223660744754 +871072223664955393 +871072226982645760 +871072227821494304 +871072224759656489 +871072227188179004 +871072225980207114 +871072224763846706 +871072215062421535 +871072224537354300 +871072217503526962 +871072224940003338 +871072224088571914 +871072219365789707 +871072225053245532 +871072213971918918 +871072213778968586 +871072229067210772 +871072228266098739 +871072225845973013 +871072223950176296 +871072228874260561 +871072228794564628 +871072224784810064 +871072225661452288 +871072227762770000 +871072229797007421 +871072225523028038 +871072228651991091 +871072224130527272 +871072227179778119 +871072226965860414 +871072231772545055 +871072229335646208 +871072230174519346 +871072226449948722 +871072215775445083 +871072231021772810 +871072227888623618 +871072218120060968 +871072218925367356 +871072216907911199 +871072230715588618 +871072233626423318 +871072235035689001 +871072229666996224 +871072227238506546 +871072234079416330 +871072220007526421 +871072195932213278 +871072219390967879 +871072230824624168 +871072234339438632 +871072222045958155 +871072223199375390 +871072221207068682 +871072236038135838 +871072238835744811 +871072233240559687 +871072220544368740 +871072236424036442 +871072225053257778 +871072237158011011 +871072222788337694 +871072236864417803 +871072236642136066 +871072234238799892 +871072239389392896 +871072233282469909 +871072242413477899 +871072240265998427 +871072238542159912 +871072225481076796 +871072235773898804 +871072236726005800 +871072239154511912 +871072228341612595 +871072237309001729 +871072243017482273 +871072243373973504 +871072239494246451 +871072239976579083 +871072237036380181 +871072244057669653 +871072227976679504 +871072243445268490 +871072236948291664 +871072228228349973 +871072238714114059 +871072240110805002 +871072241868242954 +871072244087017543 +871072242975506452 +871072241822105650 +871072243034255412 +871072238403731527 +871072230128386149 +871072242266677298 +871072233844535317 +871072239972413512 +871072234280734720 +871072243961176155 +871072246448410664 +871072243512406026 +871072229264334910 +871072243449462844 +871072241914368080 +871072244133142578 +871072242753237014 +871072232191955015 +871072230669439056 +871072247496990770 +871072245735370772 +871072246486163456 +871072234763071568 +871072243155877908 +871072232355528744 +871072248109367397 +871072248100962394 +871072246070919238 +871072193667297292 +871072246846877746 +871072250038747176 +871072246859431937 +871072247312437249 +871072250156167178 +871072248134516796 +871072246020591688 +871072249141141524 +871072235186688061 +871072249791266839 +871072252962156554 +871072249476689942 +871072244170887198 +871072253821976606 +871072246075101184 +871072251422838795 +871072234398163004 +871072236990267422 +871072248696557578 +871072251234123836 +871072253700374569 +871072254807638027 +871072231319547944 +871072253318676551 +871072238089166918 +871072253733929031 +871072251854864414 +871072253058633750 +871072251712266271 +871072252588859412 +871072241792724993 +871072252114927727 +871072244032495716 +871072252836347944 +871072241054539816 +871072238932209704 +871072251393486868 +871072251934556211 +871072254405001307 +871072241796915220 +871072253125734401 +871072253784236042 +871072257429094471 +871072258402181150 +871072257441677332 +871072242065354792 +871072257911447633 +871072255554248705 +871072256019824660 +871072245701820486 +871072255684268032 +871072258762895380 +871072257542344724 +871072258028888105 +871072255881383976 +871072251221516378 +871072256808329216 +871072258276356096 +871072257248747551 +871072261304639499 +871072245076856833 +871072253679386726 +871072258892918856 +871072262550331423 +871072259194880030 +871072259991806074 +871072243344621658 +871072265163378709 +871072257961787402 +871072267692539914 +871072261996675142 +871072250521063436 +871072262969757786 +871072263531819058 +871072242975522896 +871072263783481424 +871072255537467403 +871072268346875955 +871072251976511538 +871072263301124137 +871072265419231294 +871072266258104351 +871072250919542814 +871072265616375889 +871072264873984021 +871072263607287919 +871072264706224138 +871072267600281710 +871072264584593498 +871072249787080714 +871072269349322803 +871072266702700606 +871072265477947454 +871072270372720690 +871072265087905862 +871072251221528596 +871072236327550976 +871072263548571678 +871072252463030283 +871072269114437695 +871072252370751569 +871072264215466014 +871072254371442760 +871072252932808704 +871072255369703435 +871072256023994428 +871072266048381029 +871072271995920394 +871072272063016960 +871072267554148353 +871072268992794634 +871072266274877520 +871072258788040714 +871072260885217331 +871072268590149702 +871072263649230890 +871072257819156530 +871072268749520897 +871072261170421780 +871072271157039134 +871072265540862023 +871072254958645320 +871072270066528297 +871072266459443230 +871072270418845777 +871072269370269767 +871072272432107572 +871072271899426866 +871072272448913418 +871072260935540756 +871072272973197382 +871072265775751188 +871072271958175795 +871072273514242128 +871072256187588628 +871072259987611719 +871072272646041710 +871072272738295869 +871072275728855041 +871072274738999337 +871072278320910416 +871072276118896691 +871072277637267527 +871072274248249384 +871072273371648001 +871072264299368458 +871072277071036437 +871072276517359616 +871072261300441099 +871072280917213224 +871072280053174282 +871072255562633286 +871072281122730025 +871072264865591296 +871072271085756486 +871072275527520266 +871072280283848714 +871072274390847518 +871072267684171917 +871072279696646216 +871072276764823684 +871072265956130907 +871072277863731232 +871072275280068628 +871072279944122399 +871072265620582440 +871072284390084648 +871072271480000603 +871072280044765194 +871072262932017223 +871072284939522148 +871072282695565412 +871072277700165633 +871072281206603787 +871072281319866388 +871072282011922443 +871072279231082506 +871072269005385738 +871072280015425587 +871072283328929812 +871072285132468267 +871072283085639720 +871072275686899774 +871072282842374145 +871072279801524254 +871072269974261871 +871072273522638858 +871072274608967711 +871072281739288636 +871072287229632522 +871072284062916639 +871072274940301373 +871072280761995394 +871072270464983040 +871072281869316176 +871072285887438878 +871072273912709150 +871072283286978631 +871072288529846273 +871072272704741406 +871072286382358559 +871072285841322004 +871072287829401631 +871072287758114907 +871072272012701737 +871072280048975873 +871072274277617734 +871072290006265946 +871072286436900884 +871072266836934706 +871072278383829054 +871072278828445706 +871072282645233704 +871072267503800400 +871072274575400970 +871072278874587156 +871072289020596276 +871072290203385866 +871072275275858030 +871072289150599208 +871072288735367198 +871072276727074847 +871072275686895617 +871072292707377152 +871072293181341706 +871072284763381793 +871072278530650192 +871072289968492544 +871072289049939998 +871072290014625862 +871072278971047976 +871072292522844221 +871072290895454238 +871072280690700390 +871072293261029386 +871072292027912242 +871072293407817790 +871072289641336882 +871072281265340449 +871072294372519956 +871072293881778177 +871072296884928592 +871072293269418015 +871072283601547324 +871072294225711104 +871072297568567337 +871072294674501632 +871072288592785478 +871072290652160010 +871072293583998996 +871072295706320946 +871072296008298506 +871072283588964443 +871072294968107019 +871072294469005314 +871072289897209916 +871072285493182474 +871072297597952041 +871072296301916170 +871072292342485002 +871072293118410774 +871072296197038090 +871072291545555054 +871072296671002624 +871072288810864661 +871072298428428380 +871072295974735902 +871072297283366913 +871072282603307028 +871072300647198771 +871072283119210557 +871072301691568179 +871072297014927411 +871072287762317363 +871072294171213824 +871072300387139594 +871072301272145990 +871072289922355230 +871072299187576862 +871072298705223740 +871072299594416178 +871072300588482681 +871072287049265202 +871072301246988318 +871072277230391347 +871072301435740180 +871072283333103656 +871072302056493157 +871072290710884402 +871072302379442216 +871072303436398603 +871072302660485220 +871072306234023937 +871072305311285328 +871072291667210280 +871072293781123102 +871072303620980767 +871072292631904298 +871072304765993080 +871072296037675038 +871072300609458236 +871072309253906482 +871072305382567989 +871072292778672180 +871072294540283964 +871072309400698930 +871072303188951052 +871072302551416893 +871072310919037011 +871072295454646312 +871072309811765268 +871072311418187786 +871072310659006505 +871072302467538955 +871072292770308136 +871072306934464532 +871072310554153031 +871072306615693322 +871072308138246184 +871072305982345328 +871072309908234250 +871072292816424962 +871072309501382746 +871072307362271284 +871072312328339516 +871072277167489084 +871072309677555744 +871072310025674834 +871072297488879676 +871072307534233611 +871072308503138305 +871072313498550332 +871072309916622958 +871072308188557312 +871072311137153034 +871072312470958080 +871072300353617930 +871072312953303040 +871072301213429761 +871072302043897857 +871072313720856619 +871072311883747358 +871072316489101364 +871072311137157141 +871072315570544662 +871072300047417475 +871072312231874620 +871072313871855616 +871072313595027507 +871072312613539891 +871072302723395614 +871072296004091996 +871072313473376297 +871072317583786044 +871072301737709669 +871072302341693440 +871072316954664972 +871072317722202132 +871072302425591868 +871072306301128734 +871072318150049872 +871072314526150716 +871072303235084358 +871072320461082645 +871072308490555402 +871072319131508766 +871072317378285630 +871072307437772851 +871072315759288381 +871072312659701770 +871072319458652160 +871072319303458857 +871072314752634892 +871072307341299722 +871072323376132126 +871072319655772220 +871072322193342484 +871072322528878602 +871072318049353729 +871072320515625020 +871072320142319626 +871072322461782066 +871072309086142474 +871072307685257246 +871072320096198707 +871072311401402368 +871072305353203733 +871072322734415903 +871072321069273149 +871072325020307526 +871072325091598387 +871072319634825277 +871072309102932019 +871072320834379807 +871072321010552892 +871072323862683668 +871072310491230248 +871072322159804447 +871072327201329162 +871072326635106314 +871072323501973604 +871072314022854676 +871072325670404186 +871072324554752044 +871072325250973746 +871072308729634836 +871072328472199229 +871072293592395827 +871072316736540772 +871072319571914843 +871072329764069386 +871072314228350996 +871072325888516167 +871072329315274823 +871072313238503424 +871072327624962138 +871072327536881706 +871072315222417468 +871072326228267079 +871072312668061717 +871072326534463571 +871072315042037820 +871072329743089694 +871072329348816896 +871072332230303794 +871072328539320380 +871072329696952360 +871072328501575720 +871072332968513567 +871072327390097420 +871072330405777499 +871072333417304064 +871072313922191391 +871072333887066183 +871072325276147755 +871072327931158618 +871072321958445056 +871072333169836052 +871072330745511976 +871072329218805811 +871072315985756160 +871072334155485194 +871072332343562290 +871072331496296448 +871072335489294346 +871072331496312842 +871072331898974238 +871072336340734042 +871072329504022528 +871072334780432404 +871072318208749669 +871072331689238590 +871072332549087233 +871072320666619915 +871072322902183947 +871072337305423893 +871072334272942100 +871072334532980746 +871072336944713728 +871072338265923644 +871072337116672001 +871072334369423362 +871072311967625256 +871072324852531250 +871072334545567815 +871072330456129597 +871072324714127391 +871072325087399987 +871072335627698236 +871072324554752040 +871072321610326066 +871072336479125564 +871072340014940210 +871072338244939776 +871072333815775252 +871072336089071626 +871072336256860200 +871072337213128744 +871072339553579018 +871072335409606706 +871072338131709974 +871072334340063343 +871072340266602538 +871072340828631071 +871072337875853342 +871072329206210620 +871072339129942048 +871072325968212028 +871072335938068510 +871072341415829544 +871072336961499176 +871072342925774879 +871072329906659329 +871072345018761296 +871072342678331503 +871072338374950913 +871072328648372394 +871072339121537096 +871072341952708610 +871072339389988925 +871072341856227368 +871072342346985592 +871072332041560074 +871072343819190282 +871072346927161354 +871072331643109397 +871072330632278056 +871072330837819453 +871072343412326471 +871072331290775633 +871072347623424071 +871072333358567496 +871072339926851645 +871072347929583656 +871072343856910376 +871072346746798100 +871072336525271060 +871072345547210772 +871072345886978118 +871072345777913977 +871072332943335455 +871072345488510977 +871072348315451412 +871072342904803429 +871072331836051526 +871072347594047519 +871072348055408681 +871072349833801739 +871072346813890601 +871072350613938217 +871072349032685628 +871072346750996542 +871072334763687977 +871072348638445649 +871072344033087498 +871072351930949722 +871072339293503568 +871072336340738081 +871072351687696454 +871072349334679552 +871072353285709835 +871072350987223220 +871072348000890890 +871072352706912307 +871072351020810261 +871072349112373280 +871072338580484157 +871072349636685915 +871072352396513350 +871072350077071422 +871072338987335690 +871072336831471686 +871072355378679838 +871072353277337631 +871072317424406548 +871072349963833415 +871072335183093781 +871072355374493726 +871072350869811300 +871072345517862983 +871072344658034689 +871072339624886302 +871072348059619338 +871072352308453446 +871072331483713567 +871072340329508906 +871072352203575336 +871072353059225600 +871072353080193074 +871072338551124070 +871072349997387846 +871072357031243817 +871072345182318622 +871072356217536532 +871072354292338699 +871072354325893130 +871072357446484108 +871072354795659264 +871072357396127844 +871072355147997214 +871072354434945134 +871072356725035058 +871072349435346965 +871072355030552596 +871072343680749578 +871072357769433128 +871072358948040705 +871072353663201322 +871072358293700628 +871072359577190400 +871072348659417099 +871072357366792242 +871072360718016612 +871072359744938065 +871072361334579250 +871072361741443083 +871072344200839200 +871072359287779399 +871072357823938590 +871072359833038979 +871072359912734830 +871072362798391336 +871072359786893382 +871072360004993024 +871072361993084998 +871072362815176806 +871072360889995384 +871072357823959132 +871072348168654881 +871072359719796816 +871072362567720960 +871072363255562261 +871072362450259969 +871072350299381820 +871072363746320434 +871072360445378602 +871072339968802887 +871072361888223284 +871072350328725564 +871072352283287572 +871072364107030548 +871072365461774377 +871072365340151848 +871072310029873153 +871072347505963028 +871072354040680508 +871072368263594064 +871072365864452106 +871072366057357322 +871072353197645856 +871072356225937469 +871072358079819858 +871072356460814406 +871072365122048060 +871072356309798923 +871072370155196457 +871072354451738695 +871072357614231564 +871072370759188511 +871072353851944990 +871072368150331433 +871072349758312519 +871072372223004673 +871072367290482709 +871072369349906493 +871072367013687296 +871072340186898512 +871072345681453098 +871072370142634094 +871072362903257139 +871072373007323136 +871072359342309457 +871072370645954590 +871072374383083541 +871072371535118387 +871072373569364070 +871072372705349702 +871072368905318471 +871072369832230972 +871072369253437550 +871072373238018078 +871072372717916243 +871072372944437249 +871072368611688508 +871072376916439092 +871072363742134323 +871072375448404009 +871072360751587329 +871072374563434537 +871072332083494933 +871072370780160050 +871072372923465738 +871072360655114281 +871072377679786005 +871072372218798151 +871072374550827028 +871072334394568705 +871072374089478194 +871072376073367582 +871072363863760936 +871072363414962176 +871072374479523842 +871072373842014208 +871072376887074827 +871072375637155951 +871072377512009810 +871072377931456522 +871072382863953981 +871072382033477632 +871072382918479942 +871072381052010496 +871072381131694121 +871072378799669290 +871072376895451166 +871072376148852797 +871072373837803593 +871072379911147580 +871072383446966294 +871072370813698138 +871072379906965554 +871072379529469972 +871072380359946301 +871072380531912705 +871072379974066257 +871072379181367327 +871072372936024075 +871072379470749718 +871072376371179590 +871072379365908490 +871072386622058560 +871072377440718879 +871072368536195113 +871072368943063080 +871072384638136410 +871072380775174254 +871072382629052466 +871072384818507788 +871072384642322472 +871072381978955796 +871072384256475136 +871072386366193684 +871072369278603324 +871072382431944784 +871072386965987389 +871072385808363540 +871072370213941303 +871072388052291605 +871072371535138857 +871072387968413716 +871072374269829181 +871072384822685797 +871072368628465735 +871072382520000542 +871072387511226388 +871072372206239815 +871072388824064111 +871072389302202390 +871072388014559263 +871072387226017852 +871072384336142407 +871072383023349770 +871072389524500512 +871072389599993946 +871072387964235846 +871072389012807700 +871072375788146739 +871072390090735646 +871072388702412830 +871072392083017738 +871072394301812747 +871072373787467806 +871072380208939019 +871072394909982721 +871072393597157436 +871072385925808150 +871072387326677042 +871072394897403955 +871072389226709083 +871072383358873642 +871072382423539742 +871072390342385674 +871072390036213811 +871072396868739092 +871072395555930112 +871072379839844433 +871072395492995142 +871072392141758546 +871072397531447366 +871072395023224853 +871072386831769660 +871072391919448094 +871072395828535336 +871072389100892280 +871072398689042462 +871072395761430609 +871072390879277067 +871072396533190747 +871072390371737610 +871072394733830234 +871072395073560608 +871072393932718160 +871072398542266368 +871072394654138428 +871072396067602482 +871072398034739260 +871072399318192180 +871072394310221924 +871072383698604034 +871072383635697674 +871072394469589022 +871072398928146494 +871072391986573342 +871072394255679518 +871072377067438182 +871072397074235423 +871072395488792616 +871072396566741052 +871072398806482984 +871072398097674330 +871072384701071380 +871072400438067240 +871072389428035695 +871072402380062780 +871072400840753192 +871072400538734623 +871072403063726090 +871072399754424331 +871072400161251328 +871072393890775090 +871072384063508500 +871072392892526682 +871072402015133696 +871072401994158080 +871072391634247710 +871072399511154739 +871072403172769894 +871072405567725618 +871072386995351603 +871072396394778664 +871072401478262784 +871072402283569152 +871072403902566470 +871072394247290880 +871072404921798697 +871072399729254470 +871072403789344820 +871072404699500574 +871072402539425812 +871072391638442064 +871072393559416832 +871072404896616479 +871072390162026526 +871072404389117982 +871072402858197022 +871072391609081876 +871072402883354684 +871072409145458749 +871072409141260338 +871072400794591232 +871072406360449094 +871072387062460477 +871072388748574730 +871072386013888543 +871072403571240990 +871072410303086622 +871072409350983680 +871072409506168872 +871072401696391228 +871072393131589713 +871072408457601094 +871072407622914089 +871072408075919422 +871072410152103956 +871072408667303996 +871072411712368772 +871072409892061214 +871072399133646919 +871072412123402271 +871072408071721041 +871072393936916481 +871072408134631464 +871072398345109555 +871072407081852951 +871072402866577429 +871072411083243530 +871072407920709692 +871072411548782604 +871072388660494347 +871072410076581969 +871072411678810123 +871072411406200882 +871072411796254760 +871072414136668261 +871072415432716378 +871072397661442120 +871072414207967303 +871072412022759435 +871072410626060349 +871072410890297384 +871072415348822036 +871072412299567164 +871072399284662323 +871072414623236126 +871072412962258944 +871072412530245642 +871072414715490305 +871072414077968405 +871072401696362506 +871072408323383296 +871072413985681469 +871072415822794754 +871072416804270080 +871072414652575825 +871072414434488370 +871072415038447616 +871072415193636944 +871072414858108929 +871072401973182474 +871072417026543626 +871072395270688800 +871072398298984489 +871072417940910150 +871072418964320296 +871072417441775653 +871072418607820901 +871072416816857099 +871072414577090600 +871072401738321950 +871072406859554847 +871072417806688346 +871072403185344513 +871072416699400222 +871072419056599110 +871072413406871583 +871072418947534918 +871072416196071465 +871072404917600296 +871072405412515890 +871072421719982140 +871072417978658846 +871072418003824650 +871072407979425842 +871072406394011658 +871072421732577310 +871072420851765258 +871072419962556486 +871072418217726002 +871072421640282154 +871072408117862404 +871072422034567179 +871072421724172328 +871072418679095417 +871072422189752440 +871072420730130452 +871072422009384970 +871072420944023562 +871072414048595999 +871072425612283995 +871072425163489322 +871072420038062121 +871072422831476796 +871072424916041778 +871072413557858304 +871072413633347594 +871072422852456518 +871072412752576592 +871072427491336282 +871072425427738655 +871072427868827738 +871072424903446598 +871072430028910723 +871072426564419624 +871072416183517195 +871072430859354122 +871072410831568946 +871072430217646081 +871072431215886396 +871072430695800832 +871072430041473064 +871072426065268859 +871072430033092669 +871072428959359017 +871072432771989524 +871072433162055781 +871072425813635082 +871072417861222411 +871072431480131625 +871072421829034035 +871072428745424997 +871072426899947560 +871072431190712371 +871072415470460979 +871072430926462976 +871072420017078272 +871072420851765249 +871072434164486156 +871072426539221012 +871072432776167455 +871072432474181643 +871072424140079104 +871072433292050452 +871072422491734066 +871072432839082085 +871072433434669106 +871072419882872853 +871072422584016928 +871072434390986832 +871072434843971626 +871072433090740244 +871072434885902367 +871072438400720896 +871072435707994162 +871072434583920693 +871072422105858048 +871072435900936253 +871072433153638410 +871072438220357723 +871072418968526919 +871072438056796190 +871072437071151174 +871072434562945086 +871072436681056256 +871072435858997300 +871072435515043901 +871072440510472212 +871072424605655071 +871072437113065494 +871072437897420852 +871072438723690538 +871072436932714506 +871072435921883166 +871072425926856715 +871072440191713364 +871072442787954748 +871072429508804609 +871072443354210344 +871072442595045376 +871072445224849428 +871072431488499752 +871072442544689152 +871072427323564063 +871072439742894170 +871072442381107230 +871072427097063424 +871072440816656405 +871072441940738168 +871072441361891378 +871072440573382717 +871072444629278812 +871072444998385704 +871072444981596192 +871072443475820596 +871072430603526214 +871072427545866300 +871072431371083797 +871072445237428265 +871072436869820506 +871072444461486140 +871072432012800011 +871072445602357279 +871072444520230942 +871072446189555722 +871072407442575360 +871072436928528385 +871072448215392296 +871072447573688360 +871072449553399848 +871072449758908426 +871072447435255920 +871072448051826729 +871072447871475772 +871072450186715206 +871072448353812550 +871072452816568352 +871072447179390996 +871072449364652063 +871072436509098065 +871072448311873556 +871072451705049138 +871072449398190090 +871072449503051788 +871072450924912760 +871072450274791484 +871072450090270771 +871072437016604774 +871072450719416391 +871072455781928991 +871072451583414362 +871072451918975066 +871072454364242031 +871072453512802354 +871072450526453791 +871072451923165194 +871072449964441601 +871072447653347368 +871072448399945768 +871072454968234014 +871072452640403547 +871072444125937744 +871072452694933516 +871072454410371093 +871072450593579108 +871072425301901343 +871072455702224907 +871072456440447006 +871072460018167849 +871072460118851625 +871072456624996412 +871072457472245850 +871072460160770048 +871072460798304307 +871072456000024626 +871072458957025330 +871072456364920832 +871072458411745340 +871072457828761661 +871072460718608405 +871072458332073986 +871072461758791770 +871072461997871185 +871072445736550451 +871072459661668412 +871072460747972719 +871072446302789633 +871072459623903253 +871072458835386379 +871072456251670539 +871072463025483828 +871072463872741417 +871072461783990272 +871072448286720020 +871072464162148372 +871072445220655195 +871072452820746330 +871072462597668896 +871072460156571861 +871072460169154661 +871072464938090527 +871072460685078548 +871072461565857844 +871072460471156746 +871072450279006278 +871072461909819442 +871072462622826576 +871072463231012914 +871072464673861652 +871072462652178472 +871072459615526912 +871072466892632065 +871072465743405176 +871072462622838814 +871072453672173598 +871072464422207589 +871072463562371102 +871072465948905512 +871072452929789993 +871072467962200094 +871072450115411999 +871072465810518026 +871072463650455562 +871072465059733564 +871072464699019304 +871072467706339388 +871072464833220628 +871072468058652684 +871072458130726912 +871072460433424405 +871072468138348664 +871072469035933718 +871072469543432212 +871072461666529310 +871072452392943667 +871072468851380265 +871072463730143232 +871072466313805856 +871072469535031327 +871072453332459562 +871072466225750026 +871072468599734292 +871072446747389982 +871072469715415110 +871072466452242462 +871072454993399869 +871072464866803793 +871072465818877973 +871072468410986496 +871072463033872424 +871072466766802995 +871072470696886322 +871072456708853760 +871072468293542000 +871072468591345694 +871072473062461450 +871072467236573206 +871072462044004354 +871072469283373098 +871072470495559721 +871072474090061854 +871072467177857104 +871072475977515020 +871072475885228082 +871072468155121806 +871072469908332584 +871072476166246521 +871072472190054512 +871072461691695145 +871072476292059146 +871072472714330173 +871072476518563841 +871072460676665404 +871072470088683560 +871072470868832306 +871072472949211157 +871072460118835280 +871072472093589524 +871072464128598056 +871072473364434975 +871072474064908289 +871072475138646106 +871072471250501643 +871072474438176829 +871072462517985342 +871072463939833866 +871072471728664638 +871072468167708712 +871072475646144533 +871072465856647198 +871072477093183528 +871072478443741274 +871072462727675934 +871072479697842246 +871072479962095626 +871072478099832832 +871072480138240002 +871072477860753468 +871072480758992926 +871072480171802624 +871072477315489913 +871072480482193428 +871072466292846632 +871072480914206775 +871072479655886939 +871072479014178856 +871072478439546910 +871072468197072949 +871072477982392420 +871072482587709470 +871072468842979349 +871072479093866558 +871072480687702067 +871072479593001032 +871072468645847060 +871072479802687589 +871072477583900702 +871072481530769459 +871072472907255869 +871072484160577617 +871072471917408337 +871072480033378325 +871072485599240272 +871072481371373628 +871072483657285652 +871072483019718717 +871072487197249626 +871072486022860901 +871072483141386291 +871072472089391104 +871072467421122581 +871072483757932615 +871072471548317736 +871072488203907122 +871072484550639667 +871072488598171688 +871072488791093268 +871072488862388224 +871072488564609065 +871072486823952404 +871072470633951242 +871072485293064243 +871072483376259152 +871072474484314183 +871072489416048660 +871072485003649045 +871072487557984307 +871072485938974720 +871072469677658122 +871072470340341760 +871072486559744032 +871072487708954735 +871072474303987802 +871072485079142440 +871072487163723787 +871072476950593536 +871072475771965450 +871072475830685728 +871072488963076136 +871072483015524372 +871072489890017310 +871072492041682974 +871072485519527998 +871072492519829546 +871072489567060039 +871072490326204456 +871072489269252137 +871072492410781746 +871072488233267212 +871072493165764689 +871072488669450300 +871072489315381309 +871072488568791162 +871072494117851146 +871072491035058207 +871072486555521044 +871072494407266305 +871072492003938315 +871072492725354516 +871072493379682304 +871072491668406363 +871072491966181447 +871072490712080444 +871072477961392158 +871072494931546164 +871072493190914048 +871072495220953089 +871072479362301972 +871072492406603806 +871072491144118362 +871072495074168902 +871072493773926400 +871072492557586482 +871072497959849994 +871072493069279254 +871072493664866354 +871072494046568459 +871072490842116126 +871072488484900864 +871072494298206238 +871072488740769902 +871072491618066432 +871072491899076648 +871072479370690640 +871072483267194910 +871072495690743868 +871072498177962074 +871072495929815110 +871072494826717246 +871072494923178004 +871072500090568734 +871072496642830386 +871072496403759145 +871072498932916315 +871072497422979073 +871072469065293915 +871072485523734578 +871072497943060552 +871072495950790716 +871072495200002070 +871072486836568134 +871072501403361360 +871072498341515265 +871072484584226847 +871072488891777035 +871072485355978844 +871072500530950145 +871072496558936094 +871072498526093353 +871072500342226955 +871072486207414403 +871072502875586640 +871072485565661225 +871072499289436160 +871072496827375646 +871072498391863306 +871072499734020138 +871072491576119368 +871072502904930354 +871072500593885194 +871072488254226432 +871072499327205428 +871072487163723827 +871072494268866580 +871072501520801862 +871072503433400331 +871072461389697094 +871072488111603722 +871072489357316096 +871072504028987473 +871072485557297172 +871072506520412210 +871072504469405828 +871072504322609173 +871072505216004096 +871072503622156380 +871072506100998164 +871072502317731870 +871072507518656513 +871072503626362950 +871072492083642430 +871072508705648690 +871072505077587979 +871072495418105856 +871072506788847696 +871072505685762138 +871072505207586966 +871072506444910592 +871072505643802624 +871072505069187102 +871072508537884672 +871072507011162112 +871072508160397342 +871072509003444284 +871072511029313556 +871072511666819133 +871072493388054578 +871072497406189618 +871072510806986843 +871072490892443660 +871072510198808577 +871072509380919316 +871072511482282024 +871072514300866584 +871072509859102731 +871072511301926982 +871072495426502666 +871072498115035176 +871072509871673395 +871072513931755530 +871072515580112926 +871072508013592588 +871072516968448000 +871072515802423367 +871072514497990666 +871072514594443285 +871072501554348104 +871072516133781545 +871072499025186866 +871072502015741983 +871072510429499472 +871072514439278663 +871072517899583569 +871072514531524709 +871072500702916649 +871072500077957120 +871072516590944286 +871072519015239780 +871072516980998184 +871072502850420816 +871072518000226344 +871072515345248276 +871072503651532811 +871072504305840228 +871072503525695519 +871072504704278549 +871072513155792998 +871072503034941480 +871072517664698418 +871072519904444426 +871072516096016405 +871072511599706122 +871072518381916181 +871072505224380507 +871072519006855208 +871072518553866270 +871072517702430771 +871072516146360332 +871072520260952085 +871072521527636018 +871072516737757215 +871072516993585212 +871072505618657280 +871072506100990042 +871072516955856976 +871072522521686086 +871072515882111056 +871072509125074945 +871072516158939146 +871072520349052998 +871072522496528424 +871072523448635432 +871072508730810408 +871072521456353353 +871072522668474409 +871072520487436289 +871072516649681016 +871072522265829476 +871072516645486642 +871072520487440404 +871072525038260224 +871072522920140800 +871072523402498130 +871072524723683348 +871072509913612398 +871072524946002011 +871072523012407357 +871072523788386324 +871072524237160459 +871072527135428668 +871072520877527122 +871072521636687922 +871072519778598943 +871072523196977162 +871072526632120360 +871072524140691486 +871072522546868225 +871072520860741643 +871072521863180328 +871072512665071626 +871072519560507432 +871072506885337229 +871072524887289856 +871072493199294465 +871072520747515964 +871072523670929428 +871072523884822580 +871072528796368948 +871072528171434004 +871072512048513075 +871072528553103372 +871072524224577596 +871072523234730054 +871072527458369546 +871072525268967455 +871072524627222620 +871072514242125825 +871072525084413972 +871072521858973706 +871072513231310969 +871072513814302820 +871072528746025010 +871072526577586218 +871072513571057704 +871072523494768650 +871072513457803284 +871072514988720209 +871072527479365673 +871072530939654234 +871072510861508669 +871072521590538282 +871072511155130448 +871072528116908052 +871072532231508038 +871072527177363488 +871072515714351184 +871072529182228520 +871072513910796338 +871072529765249054 +871072528175607868 +871072517069086800 +871072531002581082 +871072530956435506 +871072532403470376 +871072529903652885 +871072530646044673 +871072531925327933 +871072531518476318 +871072532608974909 +871072528112681012 +871072531661094932 +871072532374114325 +871072532399284284 +871072534773235722 +871072521548599386 +871072531120025651 +871072535033286686 +871072527751999488 +871072532764168212 +871072531094839326 +871072531463929856 +871072529425506385 +871072532961304587 +871072532722245632 +871072527072493568 +871072536572596245 +871072522202923119 +871072531820453959 +871072524476239882 +871072534685167686 +871072538241953823 +871072534097977344 +871072519635992587 +871072532965490709 +871072532999053343 +871072530880938065 +871072534978781254 +871072533665964033 +871072536123822081 +871072529085784124 +871072525239607306 +871072533393309736 +871072533925994516 +871072532214714418 +871072523280863243 +871072537197576232 +871072532848058398 +871072522072883200 +871072510010093619 +871072535758909491 +871072539500220467 +871072534727098508 +871072520407769189 +871072525247987713 +871072525277339678 +871072542167801886 +871072541714841641 +871072542448828426 +871072525759709204 +871072533414289488 +871072538325823558 +871072540699799572 +871072542008422470 +871072508084887554 +871072539139518496 +871072536190922772 +871072538371981372 +871072526699220993 +871072540729147452 +871072527202545695 +871072539839963216 +871072527663911013 +871072540758528030 +871072529593298965 +871072524853710878 +871072542759198830 +871072541882613832 +871072545586180116 +871072541274439710 +871072536694259752 +871072541719015464 +871072542796959875 +871072544818610236 +871072542604017704 +871072529681371156 +871072542310404136 +871072546307596308 +871072531220684902 +871072546588598312 +871072544143331370 +871072522827857940 +871072534328655892 +871072542725660692 +871072545665847357 +871072547209355294 +871072544818626570 +871072541752561695 +871072531682045964 +871072543791022081 +871072546081099776 +871072532902592583 +871072542889213953 +871072547091923005 +871072529152901121 +871072548010463293 +871072547062571008 +871072547893018664 +871072547930792039 +871072544977977454 +871072543203790948 +871072548497022976 +871072546798329856 +871072549566558238 +871072547473608764 +871072551063937035 +871072552599060511 +871072547310039121 +871072547498766367 +871072546039169045 +871072550078255187 +871072534639034449 +871072549667217480 +871072553530171422 +871072550912921630 +871072551399473244 +871072539655426098 +871072551063912451 +871072554239008768 +871072551235891240 +871072555556020234 +871072551655313408 +871072545128976495 +871072543774228500 +871072556084506625 +871072550770331698 +871072549520425001 +871072526355288084 +871072534492233769 +871072549562359818 +871072554754904115 +871072553748299807 +871072542541115472 +871072522622357556 +871072557674147900 +871072541026971708 +871072545779101696 +871072551604977705 +871072554675220570 +871072538107711488 +871072539596709929 +871072555182743572 +871072558781452328 +871072541920358450 +871072558244577311 +871072538053181440 +871072543660998657 +871072560568225792 +871072556143214642 +871072560534675478 +871072553186259014 +871072555912536104 +871072557837725696 +871072554184495154 +871072544730533910 +871072557489618955 +871072546471182366 +871072560308178944 +871072559737765939 +871072558194258011 +871072546735390741 +871072562908659763 +871072563923669012 +871072558169096192 +871072558533972089 +871072560815685713 +871072555086254131 +871072560249458759 +871072564284375052 +871072562438864996 +871072561973305426 +871072561633579058 +871072562157850726 +871072563516817438 +871072562141098024 +871072560408838195 +871072558236180561 +871072565815312385 +871072550971658280 +871072566608035931 +871072560287199263 +871072567157465129 +871072547331002410 +871072564628324373 +871072563852353566 +871072560673067038 +871072567132303380 +871072567778238566 +871072552682917919 +871072565861429279 +871072554868166686 +871072569070059530 +871072560828252161 +871072556902391818 +871072567815983134 +871072569942491217 +871072560949891112 +871072556764004395 +871072566633189456 +871072568801624094 +871072552053801040 +871072548195020830 +871072553270149200 +871072570093482034 +871072565894971402 +871072557204377671 +871072555618947123 +871072565924360212 +871072567295901706 +871072569187524720 +871072555342102528 +871072567962767401 +871072568222834718 +871072558320066650 +871072565353922570 +871072567702720562 +871072569455964191 +871072573067235339 +871072565492334642 +871072569690828831 +871072560152989717 +871072570731020308 +871072559662256128 +871072571746058311 +871072572094173224 +871072558244569088 +871072567975362620 +871072559989395476 +871072577269940225 +871072559649660929 +871072572098379787 +871072570357743627 +871072572505219083 +871072565190332416 +871072564573765642 +871072573411176458 +871072565848862810 +871072576162639872 +871072573818032199 +871072574581403712 +871072576380764223 +871072579455164426 +871072575512530954 +871072560622751804 +871072579287384144 +871072580000415774 +871072557607043082 +871072579979448320 +871072575504125993 +871072579073474682 +871072578259783760 +871072579794915428 +871072574006784031 +871072581262925865 +871072580310794281 +871072553794437180 +871072562023657553 +871072562933809203 +871072570278031401 +871072577123131422 +871072575642537984 +871072577739698257 +871072563281924159 +871072564892536872 +871072566167629915 +871072575869046894 +871072565462986783 +871072577378975784 +871072579681673226 +871072580948357160 +871072581309038662 +871072576112328766 +871072576183611503 +871072566708682783 +871072579769729025 +871072579266416650 +871072578435960892 +871072577353830471 +871072580243701811 +871072584182140978 +871072580533125130 +871072580038180884 +871072581879484447 +871072577555169320 +871072583846625300 +871072583083249725 +871072571351785482 +871072571456618526 +871072574652686386 +871072585213964369 +871072582470877234 +871072579161559110 +871072568096989224 +871072580679913532 +871072581468454953 +871072584601583636 +871072568981991424 +871072568071819295 +871072580226928781 +871072577706151976 +871072583930494998 +871072585419472986 +871072587185270885 +871072551663722540 +871072582475055134 +871072584635142234 +871072583670440016 +871072583443947521 +871072583959838740 +871072572362596473 +871072563458093086 +871072581250322453 +871072588636491867 +871072569992826920 +871072583481712640 +871072590129676350 +871072583917903942 +871072587839586334 +871072588003151912 +871072583427162112 +871072588632297492 +871072587269144576 +871072588028321793 +871072589722816542 +871072576116502549 +871072588896538636 +871072588766539806 +871072592348459008 +871072591589310534 +871072590230331434 +871072593074065458 +871072584618369054 +871072592453316640 +871072593191518279 +871072590070964284 +871072581661392896 +871072594307219457 +871072594047172608 +871072590888841256 +871072587269152888 +871072592147136543 +871072572341645344 +871072591840960522 +871072591845138502 +871072575445434420 +871072590712692736 +871072579690041355 +871072590188388423 +871072588607152168 +871072591815786517 +871072592444932186 +871072595225755649 +871072591559942184 +871072578251391067 +871072592155537438 +871072591547351050 +871072581942394940 +871072590700118046 +871072591270518805 +871072592067448854 +871072594957307954 +871072596370808912 +871072594340769892 +871072582844174357 +871072593657094184 +871072591161462834 +871072567547560026 +871072595934605372 +871072598547644466 +871072595351584770 +871072598736384040 +871072599600418876 +871072596639219712 +871072597553610773 +871072593246027866 +871072597343875202 +871072590616215564 +871072589949304833 +871072596505010226 +871072600175030272 +871072602762936340 +871072602418982962 +871072598119813192 +871072590834319461 +871072602750345266 +871072602150567966 +871072602792267826 +871072603127824425 +871072601714348042 +871072600158269441 +871072595007660114 +871072588531642369 +871072603492741160 +871072602217660426 +871072602402201681 +871072604402901032 +871072602255421460 +871072591811608586 +871072607406026813 +871072595905245256 +871072608307773521 +871072610652401704 +871072608110649406 +871072608467177482 +871072595783593985 +871072609066971148 +871072596471459920 +871072595745841222 +871072608114855946 +871072608261652581 +871072598476324874 +871072608962089010 +871072606567141438 +871072603366891542 +871072610304290927 +871072610316853288 +871072592096792637 +871072607120810014 +871072610639839272 +871072608253259806 +871072609347993601 +871072611952656414 +871072595322228788 +871072611386409022 +871072614012035072 +871072600909037658 +871072590649774161 +871072611554168905 +871072607976456192 +871072606982377492 +871072598082068551 +871072609041805333 +871072614175637645 +871072614192406548 +871072612187533362 +871072611843584051 +871072609729642538 +871072611252183090 +871072610782425158 +871072609419264050 +871072598925119528 +871072610191044618 +871072613319966721 +871072617195503657 +871072616969039922 +871072595783585813 +871072614523731978 +871072615610073100 +871072617455583292 +871072602121207849 +871072614095917107 +871072603182366720 +871072618286055454 +871072614980939846 +871072614527946853 +871072615106760714 +871072618978111518 +871072614465024010 +871072615089975296 +871072617325547541 +871072618810310696 +871072614628618251 +871072615073185833 +871072605245964340 +871072612695040040 +871072616578973796 +871072615995932702 +871072604155445278 +871072606521008168 +871072613923979284 +871072618495758357 +871072606445527120 +871072598421819464 +871072621259816970 +871072620412551239 +871072618294427719 +871072613101891706 +871072607678648340 +871072608471367730 +871072611789053972 +871072618965520405 +871072619531751525 +871072622400651284 +871072624866902016 +871072623893811221 +871072625366011924 +871072620131528734 +871072624162271232 +871072622354505769 +871072626733351013 +871072625642860594 +871072625512837160 +871072610383970325 +871072628532723792 +871072628016816178 +871072608966299719 +871072627874213948 +871072624174829578 +871072626485915679 +871072624309047378 +871072629208006757 +871072627760980008 +871072623906414643 +871072628826329088 +871072628222341200 +871072627324751992 +871072629728100352 +871072630529208420 +871072626427195412 +871072626662047814 +871072615735889930 +871072619909247047 +871072623210156082 +871072630474702849 +871072631221260288 +871072629921050655 +871072627693850644 +871072628549500938 +871072617233285140 +871072617916940348 +871072633918222366 +871072629656805376 +871072630336258118 +871072614590869564 +871072629031829544 +871072632802517012 +871072633138085969 +871072627593207828 +871072628855677011 +871072613353545808 +871072628545302568 +871072622610378774 +871072619200409631 +871072631728783400 +871072632857042944 +871072625856749588 +871072635910504568 +871072633930805258 +871072634090168370 +871072619158441994 +871072632131436564 +871072633175822377 +871072623029784606 +871072622169976842 +871072635293937695 +871072635533025321 +871072636640301106 +871072632588623951 +871072622375489546 +871072635356852245 +871072636929712159 +871072637231714374 +871072636845838347 +871072622199320636 +871072633914028103 +871072634463481906 +871072636661289021 +871072635235217419 +871072623335985232 +871072634698342461 +871072626980823050 +871072640364843048 +871072637906993183 +871072635562364958 +871072637865041950 +871072639542755349 +871072627123445860 +871072633708482561 +871072639932842044 +871072626964062229 +871072640373239868 +871072638909419601 +871072639869935697 +871072641346338886 +871072638242525185 +871072629505794068 +871072639131721808 +871072637542072331 +871072639857344532 +871072639060426782 +871072640771706960 +871072639798620201 +871072644953415690 +871072642684305408 +871072641954480178 +871072645473525840 +871072644391387176 +871072643393146931 +871072642810122240 +871072633620402296 +871072633171640370 +871072631808475166 +871072643019849768 +871072643053420604 +871072646618578994 +871072639106580533 +871072631330332673 +871072642583629895 +871072630051049492 +871072644181680159 +871072632093687868 +871072632597016616 +871072631846232104 +871072632911581255 +871072642277453824 +871072643909054525 +871072645062467664 +871072627349934121 +871072646710841374 +871072648430514247 +871072645062463538 +871072648694751262 +871072643145670686 +871072647658766386 +871072635432366180 +871072645175717889 +871072632743813150 +871072627882606643 +871072632013983826 +871072647860060222 +871072647516147793 +871072647683932171 +871072643657379841 +871072649147727922 +871072653086179428 +871072649453895760 +871072648183033856 +871072650917711874 +871072648862531695 +871072637403676773 +871072651609780234 +871072653316874271 +871072647780392980 +871072637328162937 +871072647818137650 +871072650443771954 +871072637743423578 +871072653388152853 +871072652264108062 +871072652196999268 +871072632123052073 +871072649156120626 +871072651039363083 +871072656177389609 +871072655489523722 +871072656500330526 +871072654830997544 +871072652079546369 +871072655393030176 +871072653404950589 +871072652180201472 +871072654013116427 +871072654277373992 +871072656424833054 +871072656429023272 +871072652326998056 +871072637575630879 +871072654797467688 +871072656164782101 +871072629564518470 +871072656013787147 +871072640046071850 +871072655837630474 +871072643992915968 +871072655246258237 +871072658513625088 +871072657335001138 +871072656810704906 +871072657850896404 +871072660426227742 +871072655070072872 +871072656936534047 +871072659402801152 +871072643984543804 +871072656122847252 +871072647742652426 +871072658903678976 +871072647218335824 +871072659843215361 +871072662179414017 +871072658161291264 +871072646975086642 +871072646236868628 +871072663664226386 +871072659113381918 +871072661328003072 +871072663488045086 +871072659205664808 +871072646115250226 +871072640343891999 +871072657754447883 +871072648296300624 +871072663504814090 +871072659251802183 +871072665446809611 +871072662737268776 +871072665375473795 +871072657523753002 +871072650565386261 +871072660455583834 +871072665107046411 +871072661298614303 +871072660694638593 +871072661151809576 +871072663467069500 +871072664922513418 +871072662473043988 +871072649227427850 +871072668064022589 +871072654206058556 +871072664163328061 +871072662481432587 +871072648711516160 +871072663974600755 +871072664633081939 +871072664536617031 +871072661474799636 +871072662531764235 +871072665492926514 +871072663299313704 +871072664175923210 +871072666294034452 +871072654642278400 +871072665295810612 +871072659880968193 +871072667187412992 +871072664809242704 +871072668496052224 +871072665736187935 +871072669389447219 +871072664058478593 +871072671033602110 +871072668303097897 +871072656076734545 +871072666394722355 +871072666570854471 +871072670903586826 +871072666633764944 +871072672023449632 +871072654579339286 +871072668609282088 +871072668491870208 +871072667468443669 +871072669146177607 +871072665497120818 +871072668517007391 +871072666881249340 +871072669704011816 +871072664763138118 +871072666222731275 +871072655866994688 +871072656051539968 +871072655623725086 +871072670584815667 +871072661185388567 +871072667216777286 +871072674179342387 +871072671163617310 +871072671398527076 +871072673818636338 +871072671138447380 +871072669234253905 +871072671947952228 +871072670559662091 +871072674628128818 +871072670760972299 +871072675890618419 +871072672476430398 +871072675081097256 +871072667866923079 +871072674057691207 +871072673810231306 +871072675915759646 +871072673982197790 +871072670794547202 +871072675391504414 +871072676612030494 +871072677618675752 +871072676335206481 +871072673508245505 +871072676180033596 +871072663504838686 +871072674867200061 +871072678826639411 +871072676159029318 +871072676863705168 +871072678717575240 +871072678117773372 +871072678193283133 +871072680047169577 +871072679720022066 +871072677153095750 +871072675492139058 +871072641618952245 +871072680848281650 +871072677396357121 +871072678994378892 +871072679925534740 +871072680407863346 +871072678189080597 +871072678235222077 +871072679703248918 +871072680294637618 +871072679258632223 +871072663592914984 +871072683150954547 +871072664675049513 +871072662217162863 +871072677580906497 +871072664280776774 +871072667866898522 +871072669498499102 +871072681641001020 +871072685361348608 +871072680223313970 +871072681632628736 +871072678684016691 +871072677627068437 +871072680491765830 +871072681531940914 +871072681221566486 +871072673214627850 +871072669855010926 +871072682161078295 +871072682282713139 +871072682333048852 +871072685554274364 +871072682798620733 +871072683935277146 +871072681955569715 +871072686594465812 +871072679564832828 +871072677706760254 +871072684237275146 +871072683012538418 +871072676310024274 +871072689010401290 +871072684530860083 +871072683322908753 +871072685113888778 +871072684069490739 +871072685092904990 +871072670819684423 +871072682404364340 +871072684031766608 +871072672363212880 +871072689354309642 +871072689274626078 +871072683473907753 +871072688368656384 +871072671968927784 +871072685503938620 +871072682911891537 +871072657670565919 +871072673462095922 +871072686653181994 +871072683813650442 +871072686070190100 +871072690289647657 +871072669762736149 +871072672979763280 +871072686552514630 +871072687139745794 +871072689211707454 +871072690390327328 +871072688293183488 +871072690079948870 +871072675718651934 +871072688217686096 +871072682572136448 +871072682391773235 +871072685084528640 +871072690222563408 +871072674145775626 +871072686913253417 +871072693275996160 +871072688997810187 +871072690797154304 +871072690889433139 +871072690813947914 +871072691606654976 +871072678319124511 +871072688700010517 +871072689295605762 +871072674695217174 +871072693171159051 +871072688230268940 +871072691417911409 +871072692223221800 +871072687273959494 +871072677627068416 +871072695981314049 +871072690717470810 +871072691803807795 +871072694907600896 +871072692307111967 +871072692919492668 +871072690943950848 +871072692953030736 +871072695805181992 +871072694710444072 +871072694379102279 +871072698053300225 +871072680273670256 +871072698829242378 +871072681808785458 +871072694249078875 +871072692760092684 +871072695578669128 +871072675601215569 +871072690314825799 +871072701480067122 +871072698195914782 +871072692214833183 +871072693963882547 +871072697361236052 +871072701786230816 +871072703740805120 +871072702855798794 +871072692621697045 +871072684744769566 +871072697080234005 +871072688796471346 +871072692588130355 +871072695608033280 +871072696925036594 +871072700972556320 +871072698736967701 +871072697461923940 +871072694811119646 +871072688741965835 +871072697659047966 +871072699940737104 +871072699299004417 +871072702302158910 +871072703946322001 +871072704353157120 +871072698032341002 +871072695184396319 +871072706869723206 +871072701656227841 +871072701119352832 +871072696476237884 +871072695637385216 +871072698258817084 +871072704659337246 +871072691006898197 +871072703044530177 +871072670698078259 +871072699231895572 +871072702746734653 +871072702595735562 +871072708522303531 +871072690184785941 +871072705267531786 +871072707167522816 +871072700259516487 +871072705649209404 +871072704927785012 +871072701933060136 +871072689119449139 +871072703224905808 +871072706286731264 +871072690444861461 +871072706836176986 +871072705959579688 +871072707507281921 +871072705036812359 +871072707150745641 +871072692571344966 +871072693821255771 +871072707788308550 +871072709008826368 +871072696383967282 +871072693049495552 +871072709298233415 +871072706232201316 +871072687986966558 +871072704743219220 +871072696123924551 +871072708887203851 +871072702629294101 +871072707545018408 +871072710808178699 +871072708534890556 +871072711730950255 +871072712678854696 +871072707092033537 +871072711856775219 +871072708664897567 +871072708203528252 +871072709352771685 +871072697839415316 +871072712389435393 +871072709210157127 +871072712204906547 +871072712553025567 +871072716957040740 +871072715220615198 +871072716483088434 +871072717623930880 +871072698934120528 +871072714545319946 +871072700007850026 +871072714729873469 +871072714532716584 +871072714960543825 +871072713576435792 +871072712754360391 +871072717787504661 +871072712150364190 +871072718655742013 +871072714755039252 +871072715082174474 +871072716093022208 +871072715082178580 +871072715832967208 +871072715803603005 +871072718106280018 +871072706085421056 +871072712255234128 +871072717888184350 +871072718236315648 +871072715237380147 +871072712863416452 +871072706982981672 +871072718127255602 +871072721570787370 +871072721440747520 +871072720685789194 +871072720031473696 +871072723156217896 +871072720501235743 +871072720287301673 +871072715619041351 +871072722451591188 +871072716965441576 +871072719981150208 +871072722808107059 +871072720065032293 +871072712418791435 +871072720350232616 +871072705368190996 +871072720090177536 +871072722413817867 +871072721012924447 +871072723659542539 +871072705145864203 +871072706362245160 +871072721767923733 +871072719066787891 +871072722346717234 +871072721394597950 +871072723122663454 +871072711592517683 +871072720920674324 +871072723709861938 +871072719943401472 +871072723483373588 +871072720950022154 +871072710187433984 +871072713299599472 +871072726150946864 +871072711089221642 +871072727975485441 +871072723529515070 +871072724850704424 +871072725073027073 +871072722342543421 +871072724313841744 +871072720308305974 +871072724347412510 +871072726796873778 +871072723718246481 +871072729086976040 +871072725815402536 +871072727505715241 +871072729082773524 +871072726545223733 +871072724225769482 +871072726905946143 +871072728503947317 +871072714356588576 +871072727186952263 +871072718206947378 +871072730181673051 +871072727451181116 +871072725748293662 +871072726620700764 +871072727434424350 +871072729531572305 +871072729779032095 +871072729560916028 +871072730768883712 +871072714352377866 +871072716940251158 +871072714243342336 +871072733163823114 +871072733331615785 +871072730861162626 +871072729036640307 +871072728483000402 +871072726780104744 +871072717686845451 +871072730739511377 +871072729204412487 +871072733470023711 +871072729435111455 +871072729367969852 +871072736326344754 +871072728776572968 +871072729481220146 +871072731192520714 +871072718592815124 +871072736301158440 +871072731666477156 +871072702746730498 +871072719150673972 +871072732731834438 +871072730399797288 +871072732094271549 +871072724938813471 +871072736334708787 +871072727790940180 +871072736158556260 +871072736401838141 +871072732085878795 +871072721084252200 +871072733042192404 +871072733801377843 +871072735684595712 +871072737341349899 +871072737093877791 +871072735613321247 +871072724213186561 +871072723135250452 +871072737102286861 +871072736741560340 +871072732207546398 +871072738608037958 +871072737702076466 +871072738251534356 +871072740558405752 +871072721000349766 +871072739232985088 +871072736838045758 +871072740281577492 +871072736913551391 +871072742185762870 +871072742559084625 +871072740696809602 +871072740445139004 +871072740965253141 +871072739178451016 +871072743506985001 +871072742928158740 +871072733625208863 +871072739753078794 +871072723605028954 +871072744622678097 +871072745797091338 +871072740839391292 +871072741409849445 +871072742345175081 +871072743213379635 +871072726692032533 +871072741271420929 +871072745776099398 +871072744945635379 +871072744215830588 +871072745297940491 +871072746837270629 +871072743557328936 +871072745444757596 +871072742059954296 +871072746489151499 +871072743553105972 +871072732920557588 +871072742131269682 +871072745289572423 +871072747969724507 +871072746489135114 +871072748095545424 +871072731104436274 +871072718936768622 +871072747466399754 +871072734489239602 +871072745486712935 +871072742613586010 +871072744018694195 +871072747348955208 +871072747579642008 +871072750364663848 +871072747629994094 +871072748129091645 +871072748175253545 +871072746883399680 +871072748892479498 +871072751962718262 +871072748103954432 +871072751941713980 +871072752482783233 +871072750129803275 +871072739111366687 +871072753615241287 +871072748263317544 +871072751924953118 +871072752591847454 +871072749509029908 +871072751593603132 +871072748535947364 +871072749311905853 +871072747558699039 +871072754382831667 +871072751144804402 +871072739891482644 +871072754529615893 +871072752096915477 +871072752721854484 +871072738348003388 +871072740805857351 +871072751576825926 +871072755691421727 +871072753711714354 +871072754684801055 +871072742022189076 +871072751983677470 +871072754315702323 +871072753464279090 +871072752000466984 +871072740914888754 +871072753069981736 +871072749760692254 +871072737353928754 +871072756941340702 +871072758732316762 +871072755355881502 +871072753778847765 +871072754177286186 +871072739425939527 +871072755582390312 +871072754185670710 +871072755351715890 +871072742382915626 +871072752298254376 +871072744152911873 +871072755422986320 +871072740344488006 +871072758149300244 +871072757612429322 +871072757155246200 +871072757822152735 +871072761303404626 +871072746380087367 +871072762721103873 +871072760800112672 +871072745654485072 +871072757834711160 +871072758145089577 +871072754567381122 +871072753392971797 +871072752143060992 +871072758539366400 +871072764868579359 +871072761706061874 +871072764566597642 +871072762989518858 +871072759571173418 +871072763455098980 +871072765652926484 +871072765103468574 +871072763098566676 +871072747671941150 +871072762922426468 +871072761462796318 +871072739413332018 +871072760191910058 +871072758619062322 +871072763098574899 +871072764314931272 +871072762171621388 +871072762905624677 +871072764520452106 +871072760024145950 +871072761223733269 +871072765225078785 +871072765850054706 +871072764398800988 +871072762393919568 +871072766990897203 +871072763518025728 +871072764197470238 +871072769587159081 +871072762138083348 +871072763350220861 +871072762968563772 +871072761416671263 +871072765111844904 +871072758300307496 +871072755888582656 +871072760015773767 +871072765392879676 +871072763153100901 +871072752226926612 +871072751492927549 +871072764818247711 +871072766147846205 +871072764205887599 +871072766860853258 +871072762746249266 +871072766126862336 +871072769469743114 +871072765246054440 +871072769088028732 +871072767989137470 +871072766898618398 +871072768790233098 +871072763526410310 +871072766080725014 +871072766919594044 +871072770920960031 +871072756643553351 +871072761345347584 +871072769545236500 +871072773039079464 +871072770694479874 +871072769360687104 +871072768391774238 +871072771894050877 +871072769331318794 +871072771671752786 +871072772447670322 +871072773835993108 +871072771894042697 +871072770719612989 +871072772388950058 +871072754693202000 +871072769532657685 +871072771856289802 +871072769004171326 +871072776935591977 +871072776491008010 +871072769708793946 +871072775958298704 +871072773462712390 +871072770367303732 +871072769251614780 +871072760892379136 +871072760137404516 +871072770874814575 +871072773164916769 +871072770929340446 +871072773198467113 +871072771101294652 +871072771239735307 +871072768836395069 +871072777606668288 +871072770426032200 +871072769608142848 +871072776465809470 +871072763983585341 +871072769293570139 +871072773567545394 +871072773349462076 +871072773898924032 +871072773911506974 +871072773601124362 +871072776738459658 +871072758329667594 +871072777573134346 +871072772766445589 +871072774133780500 +871072771952742411 +871072768182079529 +871072776511971368 +871072775438225478 +871072759449522207 +871072747487375391 +871072776176431124 +871072771030007860 +871072761336971274 +871072779544436828 +871072757335592990 +871072776621019136 +871072762813366282 +871072763723526214 +871072779615731742 +871072784871194725 +871072781599645726 +871072760623955968 +871072780425261056 +871072775631151165 +871072763014684703 +871072783784894495 +871072770954526760 +871072780681105430 +871072782161674250 +871072782925045761 +871072774033121300 +871072772028260382 +871072777090785321 +871072773215252501 +871072784208498748 +871072782799233024 +871072770279239700 +871072784107839498 +871072772422512753 +871072778537811988 +871072757658550293 +871072778508447834 +871072784883781712 +871072778307108875 +871072764973449287 +871072778076430336 +871072782153293854 +871072782845378562 +871072777669574746 +871072781343797268 +871072783373832242 +871072779162763265 +871072782245560340 +871072777988354118 +871072786297286666 +871072781838725181 +871072781964574791 +871072783352885259 +871072779393450014 +871072778227429388 +871072780534304779 +871072783361277993 +871072785122877490 +871072787618472016 +871072781599657994 +871072784703434763 +871072747009212416 +871072782899871756 +871072785269669889 +871072775790551051 +871072779531862127 +871072772464459787 +871072777359200257 +871072792873959504 +871072789883412530 +871072780639150090 +871072774402228264 +871072783164133447 +871072773454303293 +871072783159922769 +871072786603470850 +871072786632822796 +871072786821558332 +871072788922900520 +871072789627539507 +871072778697183282 +871072793591173190 +871072790776778755 +871072781641596949 +871072789224886343 +871072790403481620 +871072775647928370 +871072786259509250 +871072790734835782 +871072786406342686 +871072777313087498 +871072775698268230 +871072783906525254 +871072786385346621 +871072773513052251 +871072786020458507 +871072790093123585 +871072788407013376 +871072795071770694 +871072779829645395 +871072784921530368 +871072772414136372 +871072787509444649 +871072789317189632 +871072785697493124 +871072790508351569 +871072788973256736 +871072795155652618 +871072790650978324 +871072792060244008 +871072779447988294 +871072794073513994 +871072778881753108 +871072792928473168 +871072791582093322 +871072797097607188 +871072796552343595 +871072764432351242 +871072797584158740 +871072788440580116 +871072795981914122 +871072795516338186 +871072781796773939 +871072793922535424 +871072787161305119 +871072792471273494 +871072778864963614 +871072790156038185 +871072794941734943 +871072797475086408 +871072798381060096 +871072790197989407 +871072802344685618 +871072788448960562 +871072783432556555 +871072796036456468 +871072788763533323 +871072791657578526 +871072799165403146 +871072783180922911 +871072799597396008 +871072792597102622 +871072796904665118 +871072803066118225 +871072798376853514 +871072799123451965 +871072800780193854 +871072798720794674 +871072799836483644 +871072786637000795 +871072791846322196 +871072800411119676 +871072792311918592 +871072798574002226 +871072795281481738 +871072797659639870 +871072800406900797 +871072785496174613 +871072800239136829 +871072798972473345 +871072797290549269 +871072796116135966 +871072797840003132 +871072803967885373 +871072799274450944 +871072788813873264 +871072796388765696 +871072805821767701 +871072794341965854 +871072788696432691 +871072798351704104 +871072789942116412 +871072792567750657 +871072791695343667 +871072798917935165 +871072801774252052 +871072799614177330 +871072797923901450 +871072802738929694 +871072807377842176 +871072804655747112 +871072804118880267 +871072801015074867 +871072795839328266 +871072798339137537 +871072791020072980 +871072802306945084 +871072803871399996 +871072797907120238 +871072805360398399 +871072805549142058 +871072800759222282 +871072799077318657 +871072796384579615 +871072802306920488 +871072796753657886 +871072792790069348 +871072809512747039 +871072803158360105 +871072787819810857 +871072802793488427 +871072804429238342 +871072806576734258 +871072797378621492 +871072799584817232 +871072808153780294 +871072806220202054 +871072804496343041 +871072809567273060 +871072806564143177 +871072806207639623 +871072789581426748 +871072807860174869 +871072806966808657 +871072807197487114 +871072806270537728 +871072792852971550 +871072803707834408 +871072808812310619 +871072806304096327 +871072810682962010 +871072805268111461 +871072804882231376 +871072806652239962 +871072814407503922 +871072803934310440 +871072802688610346 +871072808774537276 +871072806815813642 +871072806396362813 +871072799089885194 +871072794773975050 +871072812490686555 +871072806522224660 +871072809789566986 +871072812624928790 +871072808820670524 +871072793347899453 +871072801434505226 +871072806975205417 +871072810259325018 +871072803737174047 +871072813086289971 +871072798389469235 +871072811865743411 +871072813258256416 +871072813413458001 +871072809391095828 +871072809676316672 +871072813593788446 +871072809739247636 +871072815665782846 +871072807189094421 +871072814260690975 +871072805356204053 +871072815355428954 +871072806979399701 +871072810078978048 +871072813568647178 +871072812931117086 +871072816093597716 +871072813962895480 +871072812117426216 +871072815934234715 +871072813279215706 +871072813002399765 +871072812524261457 +871072801174454322 +871072815359590460 +871072807587545118 +871072816424968212 +871072820854153226 +871072811416977450 +871072813296001071 +871072807860191233 +871072817423220736 +871072819902042112 +871072814365540372 +871072816047460442 +871072809978302504 +871072815577727057 +871072809131073576 +871072812440379462 +871072816001327104 +871072813824503868 +871072816575959070 +871072822569599016 +871072813715456041 +871072819507769374 +871072817976836097 +871072820539559967 +871072818211725343 +871072819193204786 +871072820514418739 +871072814973714462 +871072821005131817 +871072819180630078 +871072812339691531 +871072818887024731 +871072820216623164 +871072819784613938 +871072816521412750 +871072816869539910 +871072819402907700 +871072806908100690 +871072821969838090 +871072821869158431 +871072824096342037 +871072816739516477 +871072822267629588 +871072822745788516 +871072821420380191 +871072815858745395 +871072823274250270 +871072804613799937 +871072822762569768 +871072820233396244 +871072823496544299 +871072821969846342 +871072823068737557 +871072827053322250 +871072826940080128 +871072824423497749 +871072827015589899 +871072818245296238 +871072822502514688 +871072824784195605 +871072823819505664 +871072806090182748 +871072816005525585 +871072824381566996 +871072825476284467 +871072822582206514 +871072825832800267 +871072816391421983 +871072814537539614 +871072827523100672 +871072815523180665 +871072816202674218 +871072820833173534 +871072823471407115 +871072826210279434 +871072825044258877 +871072817003769916 +871072825346248735 +871072827653120020 +871072818098487318 +871072823974699078 +871072816185884692 +871072805490425866 +871072817964286002 +871072824738054144 +871072825476263988 +871072827690864661 +871072828898824212 +871072825539190795 +871072815351226429 +871072832128446486 +871072826369663037 +871072815946817557 +871072821953040444 +871072826252230757 +871072830689771581 +871072810892656671 +871072816240398347 +871072828064141313 +871072829456679012 +871072834418515978 +871072829788020736 +871072830119358525 +871072833944580146 +871072831159545886 +871072829540556870 +871072830131957791 +871072825891520542 +871072832191348807 +871072824930996327 +871072826650669076 +871072829351821404 +871072830249394187 +871072831423803442 +871072830123540550 +871072833709670421 +871072830270357524 +871072831637717082 +871072831096619059 +871072833416101900 +871072832371716137 +871072830492643389 +871072829112746015 +871072831545409567 +871072830509445222 +871072832539471973 +871072836888985630 +871072835223838760 +871072831667048448 +871072829427286046 +871072831180513280 +871072835576152064 +871072835471290388 +871072833944571937 +871072832203915284 +871072835278344203 +871072834842165278 +871072840512835635 +871072834695352330 +871072832627552286 +871072832908558387 +871072831797080094 +871072828873662555 +871072833877446686 +871072831851610224 +871072836419223572 +871072814688530472 +871072836322738207 +871072833348988999 +871072834728902759 +871072833957138442 +871072834976362576 +871072835714547823 +871072834414346342 +871072837648134224 +871072835601330236 +871072834657595443 +871072841720811580 +871072838235328523 +871072835127353414 +871072832589824051 +871072831692234814 +871072837694287873 +871072837291614238 +871072824016646204 +871072837698457620 +871072837509726299 +871072838885462036 +871072835009904720 +871072837400686652 +871072836154978364 +871072837027377214 +871072843360792687 +871072843251728384 +871072839678185472 +871072828307410976 +871072838302453831 +871072838965157948 +871072828567461908 +871072840126984284 +871072839661400084 +871072842026995723 +871072843834748968 +871072845340475462 +871072838759620649 +871072838105321502 +871072838705098753 +871072836960260096 +871072845713797200 +871072841490120724 +871072840785485875 +871072830761074778 +871072846804303872 +871072842467397703 +871072841292984341 +871072849014714368 +871072832262668329 +871072827481141268 +871072840282152960 +871072849333465088 +871072842077319199 +871072836297564220 +871072840533803038 +871072844895891487 +871072845155950593 +871072842639347732 +871072844249981018 +871072844598108160 +871072844384178187 +871072832950534224 +871072844551954492 +871072844220629062 +871072846523273216 +871072846363910244 +871072844883329094 +871072839883698226 +871072845143355422 +871072841930510368 +871072841662083124 +871072847802564610 +871072845067866173 +871072840118587422 +871072841049722940 +871072840466726912 +871072844065406986 +871072845046874134 +871072845495689278 +871072846888198174 +871072833621590047 +871072845013319691 +871072845629886495 +871072847232114820 +871072842278666291 +871072846540079136 +871072849471885332 +871072848461037599 +871072839745294367 +871072847697682472 +871072855209680928 +871072852034609202 +871072851371901009 +871072852772790314 +871072850709196820 +871072856526704693 +871072853049630761 +871072846791716864 +871072853871710248 +871072849069236224 +871072852441460786 +871072860557410305 +871072851074097203 +871072846850457662 +871072845436969021 +871072838776410143 +871072853309657120 +871072850365259796 +871072853255139349 +871072849773887618 +871072853594865685 +871072854865747989 +871072851007000606 +871072850398838795 +871072864713986058 +871072852672139324 +871072853024456755 +871072854488281099 +871072862168031303 +871072847009841172 +871072852772802660 +871072853523591199 +871072852953157663 +871072854509223936 +871072856744804372 +871072860695830609 +871072853150285884 +871072857495580703 +871072851061538887 +871072848096141362 +871072851204145223 +871072852407910461 +871072849782263858 +871072859148128317 +871072862516158545 +871072857139068939 +871072853229989909 +871072855197098014 +871072855952064514 +871072853620039700 +871072863891886080 +871072855784325120 +871072849497038918 +871072853158682694 +871072863359230012 +871072860993642518 +871072839686557736 +871072855113224232 +871072863375994900 +871072862587473981 +871072864512651355 +871072863195656212 +871072863728324630 +871072855591374878 +871072868048461845 +871072864172900382 +871072862616821781 +871072863334060112 +871072864646881321 +871072860142202880 +871072857516556338 +871072844241600512 +871072854584725526 +871072855645913199 +871072865678659644 +871072850352685127 +871072847429238804 +871072864948879440 +871072857126473830 +871072866349764619 +871072854362435594 +871072861568245770 +871072848691753101 +871072857923399780 +871072855452950610 +871072853586481153 +871072856375697460 +871072862432264193 +871072854291128370 +871072863866748939 +871072865317945355 +871072856421859328 +871072864453918751 +871072866106486815 +871072867389947974 +871072865179562034 +871072864265199626 +871072856631558246 +871072865116651560 +871072862306451466 +871072864588136498 +871072865649295381 +871072868413370398 +871072871307431967 +871072867855527946 +871072867406729286 +871072864764330055 +871072866051948585 +871072854366634075 +871072853997539399 +871072866970513468 +871072871991095406 +871072875866644560 +871072865854836796 +871072869843607633 +871072870921539615 +871072873412976690 +871072865913561178 +871072866664349726 +871072866551078982 +871072871714258959 +871072857571074048 +871072867800977428 +871072880132235345 +871072835886514216 +871072873568153650 +871072877645025331 +871072873811435580 +871072871970144306 +871072873282945134 +871072875040342126 +871072875073896469 +871072871726866434 +871072879016546325 +871072871504572426 +871072869638082580 +871072871886229645 +871072879423389706 +871072871206756363 +871072871978532934 +871072870082703391 +871072875988275240 +871072881877065768 +871072879909945344 +871072876139249755 +871072885068939264 +871072878412591195 +871072876093128764 +871072873639477248 +871072875711430686 +871072862541336626 +871072869596139591 +871072879423393853 +871072881554124860 +871072882057412609 +871072881600266281 +871072879645716510 +871072885089894420 +871072874394423326 +871072884993433601 +871072885211562104 +871072877036838964 +871072885748424724 +871072877212991488 +871072882757877760 +871072877145899039 +871072885991678024 +871072885064745030 +871072877619847218 +871072872708321291 +871072873693986886 +871072885677113354 +871072867297685576 +871072884200722473 +871072876986531910 +871072874755158096 +871072878072840242 +871072875577221190 +871072886360789092 +871072884313960489 +871072882581700630 +871072884548837386 +871072886130094100 +871072885077315615 +871072883160526888 +871072830354247720 +871072886922829834 +871072886973157467 +871072868669227069 +871072886490804224 +871072888600543304 +871072887744892959 +871072892408958987 +871072888403427370 +871072887010902066 +871072888164331571 +871072885329002506 +871072884871819284 +871072887405150328 +871072881814147124 +871072888692813844 +871072871693320192 +871072895516938300 +871072883898736731 +871072889208733717 +871072875744985129 +871072867066986556 +871072887623278672 +871072891213594676 +871072887442915369 +871072888269176832 +871072890261495878 +871072889535885343 +871072888873168968 +871072877103972392 +871072893931491338 +871072888646664222 +871072889338736681 +871072888600539187 +871072884611747851 +871072890513133658 +871072893453369406 +871072889275838464 +871072889296781393 +871072892857749534 +871072889502302299 +871072890601242666 +871072887803637790 +871072888562794566 +871072889145810996 +871072893566599188 +871072890882232390 +871072895638573167 +871072895273693214 +871072891477852220 +871072888139186206 +871072894321590344 +871072893071687781 +871072896641024012 +871072891364601886 +871072893293953025 +871072882179063860 +871072890664128542 +871072894405447680 +871072892505448528 +871072893801484360 +871072894967488522 +871072883777089607 +871072902068457512 +871072902290735114 +871072893545635881 +871072896477446235 +871072882942431263 +871072901376405544 +871072894237691904 +871072902731169852 +871072901418332170 +871072902844407808 +871072895273680907 +871072897572167681 +871072897492463698 +871072898146779176 +871072894573228142 +871072898780127322 +871072897395998731 +871072893050695680 +871072895361765466 +871072902735335454 +871072902374629416 +871072903939121252 +871072899438628874 +871072897551183962 +871072903276425247 +871072907135184916 +871072895600848946 +871072885945561108 +871072901930037270 +871072892106981426 +871072900113891348 +871072897161129994 +871072873639448597 +871072902743740426 +871072892203446303 +871072899786743869 +871072898301968445 +871072886008479774 +871072904169799780 +871072898750771221 +871072899757408286 +871072859072630804 +871072895374352384 +871072904702484541 +871072904836689951 +871072904132055050 +871072908213092392 +871072900541739009 +871072895072346204 +871072904354361365 +871072902127169566 +871072905486819411 +871072900428472341 +871072906296328244 +871072905641992242 +871072904597635082 +871072901086969906 +871072908670271509 +871072904115269652 +871072896745885797 +871072899128262666 +871072896154497036 +871072903729389620 +871072896246771772 +871072904564060190 +871072907789471786 +871072909693710386 +871072905692344380 +871072905595854909 +871072891540766772 +871072905541337099 +871072909261692979 +871072909500776448 +871072906577346641 +871072898356482048 +871072900264890430 +871072904777990204 +871072911186870322 +871072898968858625 +871072908917764097 +871072909416878110 +871072904899616799 +871072907646861392 +871072907974045736 +871072916261986414 +871072910016675880 +871072910561918976 +871072908959678525 +871072906384388106 +871072911430139935 +871072905973334107 +871072910561931314 +871072914156425227 +871072911996383273 +871072908158595142 +871072910670970921 +871072911421743165 +871072905340026910 +871072910335422504 +871072878962044939 +871072909261701200 +871072908867424276 +871072910486421514 +871072912080252969 +871072911824396288 +871072908515110934 +871072907902717982 +871072913166569533 +871072910746472519 +871072910889066556 +871072908217311244 +871072916106805328 +871072914219360326 +871072917776126102 +871072908716437515 +871072913426616390 +871072913154007130 +871072917046300792 +871072913871228948 +871072909282668545 +871072909525930025 +871072911828607017 +871072915691565097 +871072903855214593 +871072903087652914 +871072903993647166 +871072919797760030 +871072911635677185 +871072897823825961 +871072918262661121 +871072918250090586 +871072919806181397 +871072911824416808 +871072914559090718 +871072911312707664 +871072913053319218 +871072912835223592 +871072920976379915 +871072915616051282 +871072918564638741 +871072912227049492 +871072919214764093 +871072919625797643 +871072917696426014 +871072918497533953 +871072918040367165 +871072919709712394 +871072926529622066 +871072911505653780 +871072923081924658 +871072923509751908 +871072920133308506 +871072918761795627 +871072919105712128 +871072920619872277 +871072920221397052 +871072904182370354 +871072920531775500 +871072924466028575 +871072920997339146 +871072920967987201 +871072923258060881 +871072920389169233 +871072919567077417 +871072921949442120 +871072923308417124 +871072924705112114 +871072924860297216 +871072921580347422 +871072919206387723 +871072923518140456 +871072920338849822 +871072928274452550 +871072925497823332 +871072926571581440 +871072923547484230 +871072920842170438 +871072918648520755 +871072920628248656 +871072923086127204 +871072922834456606 +871072918803718145 +871072927372677171 +871072923610406983 +871072920527585310 +871072924742873168 +871072921634893856 +871072930770063440 +871072926651285545 +871072924952580097 +871072924273090620 +871072924185014322 +871072926391210034 +871072922469560370 +871072925246193696 +871072925376188488 +871072918413656065 +871072909953732698 +871072928802963517 +871072917553831996 +871072933236314142 +871072927452397649 +871072920410148885 +871072925577519144 +871072927934713858 +871072924096950313 +871072926261202954 +871072920871501835 +871072924461858836 +871072909093916722 +871072925950828614 +871072927909548062 +871072929528569886 +871072931030126652 +871072925124538398 +871072923123867720 +871072926944882719 +871072932712026132 +871072929792798790 +871072928194785300 +871072926932303932 +871072933911617596 +871072933605437490 +871072929226571776 +871072927813103637 +871072933504778250 +871072933454413854 +871072934502998027 +871072930220605490 +871072932443590667 +871072928450617354 +871072927901188096 +871072919302856745 +871072939922051192 +871072933429256243 +871072931529236521 +871072927586607125 +871072937153806456 +871072931193704468 +871072933538320395 +871072934142308362 +871072935908114443 +871072937447411763 +871072935249596476 +871072929641803796 +871072935794868225 +871072928710672425 +871072931533447200 +871072935413170196 +871072935081832508 +871072937447411733 +871072932045144118 +871072929364983848 +871072933102092339 +871072934834368552 +871072939485843537 +871072934888898660 +871072932825296906 +871072929612439592 +871072934419112006 +871072932313567283 +871072933588652083 +871072927515304057 +871072937401274398 +871072933852893305 +871072933139845140 +871072931432779816 +871072926575771749 +871072932795920405 +871072934884679761 +871072940677034064 +871072933961936928 +871072936197521439 +871072932544262194 +871072934221991987 +871072935308324945 +871072935396393011 +871072937795538974 +871072938714099723 +871072932376502312 +871072937820700703 +871072937644535828 +871072926852583425 +871072936147177543 +871072942174400523 +871072939963973693 +871072939641024542 +871072940232433664 +871072937313173514 +871072934096171079 +871072933689294868 +871072940937080923 +871072939863343176 +871072936231063552 +871072930602315827 +871072937187369050 +871072942916775937 +871072939276136469 +871072935408971816 +871072940383436851 +871072937606791178 +871072940718981141 +871072940236636221 +871072939443900457 +871072943277498418 +871072935748722748 +871072944183447552 +871072947228541008 +871072941247451196 +871072944909082624 +871072940261801994 +871072933710270496 +871072936344301599 +871072947572441159 +871072942807736361 +871072942388314193 +871072946117021760 +871072947161419796 +871072936906334258 +871072943772413952 +871072950206468097 +871072947010408448 +871072943734685716 +871072938600828938 +871072929331413023 +871072926718373958 +871072947555696640 +871072941478146078 +871072949229207573 +871072949740900433 +871072944955207680 +871072946381279303 +871072944699355167 +871072945697620008 +871072945450143804 +871072951435395093 +871072949338271776 +871072935811629056 +871072946536476692 +871072950286188605 +871072952072929352 +871072936298164256 +871072950646874163 +871072956049150023 +871072950672052254 +871072949866741800 +871072950785290260 +871072936415604786 +871072953700327474 +871072954174308402 +871072940811251723 +871072960243458099 +871072942501543966 +871072940328878140 +871072955440955402 +871072950164541450 +871072944951013426 +871072937921351730 +871072947438247936 +871072954975408158 +871072956187545620 +871072957139669063 +871072950261002282 +871072948813963314 +871072950231662642 +871072957185802240 +871072952169410581 +871072960662896700 +871072951112433694 +871072947312394320 +871072954329473046 +871072956430839850 +871072956770549781 +871072961006809099 +871072958859333712 +871072951389282406 +871072948377776218 +871072950990798849 +871072950332325980 +871072954828619776 +871072954237202453 +871072953935204373 +871072958859313264 +871072952781799520 +871072960822280243 +871072951598977056 +871072955000569906 +871072962948759592 +871072940375040060 +871072944141504522 +871072961514336306 +871072949694759004 +871072958486040627 +871072952593047692 +871072953981358140 +871072953033449495 +871072966228717568 +871072950521069609 +871072950361669643 +871072959220039761 +871072951372513370 +871072960130187304 +871072958880313344 +871072962072158258 +871072953914245141 +871072960457359371 +871072953641627718 +871072959379427359 +871072960717422673 +871072958800617473 +871072963221405717 +871072960138579969 +871072958653792366 +871072959014535220 +871072955524870174 +871072955621335091 +871072958662189096 +871072962630012951 +871072960327335948 +871072959639486484 +871072964228055070 +871072964450353153 +871072951955488768 +871072957093539860 +871072959786266726 +871072963267547177 +871072963611484211 +871072962760044554 +871072963028480030 +871072965645713468 +871072965469540422 +871072962009247795 +871072962625826848 +871072963317874719 +871072961552064573 +871072970116837386 +871072961757610035 +871072962357395456 +871072949451489311 +871072960235044905 +871072971861676042 +871072940958036019 +871072967159861289 +871072955763933235 +871072962013462608 +871072956095266868 +871072970553045022 +871072962227368006 +871072959647862804 +871072971052175422 +871072970062311484 +871072965138214943 +871072971127668767 +871072959903707146 +871072971593228318 +871072966400700476 +871072968955007026 +871072958829965322 +871072966270660628 +871072959052275753 +871072964630679623 +871072965175935059 +871072967252148344 +871072973614899231 +871072961354952746 +871072965180145685 +871072969122783252 +871072950734979103 +871072958783848469 +871072960272818267 +871072962751647805 +871072971958128640 +871072966807531582 +871072965884784690 +871072972805382174 +871072974965465148 +871072968300724267 +871072965800910908 +871072975410036826 +871072968225202216 +871072961535283241 +871072974579597362 +871072974713782272 +871072966799138816 +871072956862832671 +871072965234655283 +871072970615947366 +871072975443591188 +871072960071483422 +871072970930540635 +871072966765588490 +871072971819716618 +871072967617028096 +871072967868702822 +871072976584441896 +871072973702979624 +871072972952199178 +871072970896986172 +871072973384216697 +871072972616642640 +871072964546818048 +871072979126218814 +871072960075673610 +871072961686278144 +871072975733002335 +871072973451321375 +871072972671160320 +871072969068265522 +871072979918921758 +871072978702590063 +871072974298566666 +871072977746292788 +871072974248222720 +871072954539204639 +871072977171644508 +871072960344125441 +871072974701228123 +871072974579589150 +871072978580955137 +871072980451614721 +871072982594883644 +871072976748023859 +871072967851905034 +871072979994411018 +871072963468861451 +871072966841081867 +871072979436589116 +871072979801493544 +871072975070310444 +871072973623267369 +871072973312892958 +871072979637899354 +871072980229320736 +871072979478511677 +871072976005660712 +871072964685221899 +871072984859816007 +871072978627072020 +871072982393552896 +871072978069250079 +871072975439405116 +871072980782972938 +871072978383822918 +871072977066786866 +871072979914752071 +871072973996580905 +871072982930440222 +871072982452293714 +871072980304801862 +871072983626678314 +871072923312619590 +871072962944565249 +871072956577636382 +871072971899416577 +871072980246081647 +871072986130677840 +871072986155876353 +871072981080768542 +871072983366656042 +871072988408197121 +871072987728715831 +871072982624251955 +871072981101740032 +871072978190880808 +871072987296714752 +871072981424693298 +871072982515191898 +871072977985339402 +871072984721403965 +871072983496667156 +871072986017456259 +871072983765090334 +871072990761213962 +871072984847245342 +871072983567974491 +871072985254084648 +871072980220932137 +871072982242574377 +871072984788512781 +871072987070201907 +871072986726273064 +871072985279262761 +871072985912602635 +871072984759156748 +871072987141525524 +871072981156253757 +871072988760522753 +871072980216709140 +871072971538710569 +871072988664070204 +871072984343932979 +871072977205207060 +871072990870257665 +871072989007982662 +871072981718294538 +871072966304202753 +871072989096067164 +871072988542410782 +871072989062504458 +871072989108645939 +871072957278072872 +871072977825964062 +871072998038327296 +871072991960776724 +871072992279539732 +871072982871736331 +871072991788798012 +871072988697591869 +871072990966730833 +871072990765387778 +871072999040766032 +871072998801674311 +871072989863616542 +871072992099188807 +871072989024772177 +871072994498322454 +871072971974918234 +871072988710191154 +871072989062500384 +871072993802063872 +871072978203451442 +871072999271456818 +871072998361296946 +871072987854536724 +871072998306775080 +871072984138399744 +871072995010019329 +871072996595466251 +871072934867898419 +871072994854862848 +871072993089052762 +871072998457753630 +871072998558404649 +871072987342839839 +871072998566809620 +871072993055477760 +871072973749125190 +871072991927210076 +871073000424894464 +871072997425938472 +871072992153714750 +871072994146013234 +871073001314074654 +871072980720033882 +871072987573522432 +871072998986240041 +871072993411993681 +871072990857691156 +871072986533335081 +871072982209003561 +871073001146306571 +871072993374240848 +871072999506325556 +871072999552450600 +871072992417968149 +871072981370171423 +871072990677319690 +871073004199772190 +871072994645123113 +871072991860117524 +871073000626225192 +871073000244531270 +871072996754874368 +871072992904499270 +871073004212355082 +871073000055799859 +871072998436778104 +871072994754199652 +871073000471019522 +871073004216541264 +871072995081338950 +871073004933750814 +871072984524267600 +871073008134004786 +871073005508378674 +871072994582208563 +871073007991414875 +871073005911015464 +871073005470625792 +871072995773403176 +871073001653829712 +871072999795720264 +871072996461252608 +871073008377266257 +871073001033072740 +871073000924008519 +871072999355346984 +871073008788316160 +871073001448308736 +871073007550996550 +871073002077438062 +871073000399712279 +871073002975010909 +871073002966626357 +871073006938636328 +871073008700248145 +871073005722304563 +871073008654123019 +871073003167969380 +871073001427324958 +871073002807242802 +871072994309603349 +871073010390552726 +871073002861789184 +871073013506928670 +871073010830966804 +871073007571976202 +871073007051878490 +871073012668047410 +871073009568473138 +871073006821212250 +871073006078799882 +871073005818748958 +871073009262292993 +871073009530712125 +871072999703474198 +871073007798468649 +871073009115480085 +871073010394750996 +871073013032951870 +871073008071094272 +871073011124555776 +871073010847719474 +871073011317485578 +871073013691469844 +871073002438152243 +871073007710400532 +871073007492300840 +871073007165141063 +871073009434234892 +871073009904025620 +871073007324495882 +871073005504167966 +871073010956791839 +871073010004680734 +871073013158785064 +871073008528289842 +871073010319228928 +871073004501741588 +871073012244422658 +871073009618808922 +871073010382176267 +871073013687263284 +871073016631660604 +871073004728221736 +871073014211559435 +871073012307345428 +871073011292315658 +871073012760317972 +871073014358368326 +871073014354169897 +871073012458344459 +871072999439212565 +871073014790365214 +871073005730689085 +871073001741893673 +871073010096930817 +871073015859912705 +871073005382561813 +871072996939419678 +871073000164847627 +871073013045547038 +871073007701987359 +871073008129802260 +871073014828122142 +871073009501368352 +871073010545754162 +871073014236729395 +871073019206979624 +871073021773889547 +871073008465371186 +871073015004266516 +871073009253879809 +871073015721500682 +871073012160544838 +871073019202793474 +871073013267853372 +871073014316404766 +871073006120730644 +871073001796403240 +871073002572382288 +871073018988879892 +871073014903627816 +871073022101037066 +871073013242691605 +871073008024952882 +871073005202186270 +871073001351831653 +871073006955401217 +871073021631271004 +871073016501661716 +871073004937937026 +871073021408972871 +871073005260927018 +871073018749800478 +871073022948294657 +871073017009147976 +871073021195079700 +871073023275442248 +871072998675845130 +871073004401074227 +871073024294653972 +871073006590492762 +871073002018734180 +871073021731942460 +871073019177619506 +871073020238778368 +871073017952878643 +871073016614903858 +871073019068551188 +871073017420206150 +871073024709910589 +871073023824904262 +871073029386567740 +871073010046599188 +871073017046913084 +871073019106312223 +871073013481754644 +871073025410347058 +871073024252723200 +871073031395618856 +871073018410053643 +871073026152751114 +871073028568662046 +871073023724240967 +871073026089844788 +871073023984283710 +871073024407920671 +871073022969262131 +871073028270882886 +871073023980077117 +871073019165048833 +871073024177229844 +871073024709910579 +871073025733296168 +871073029071994900 +871073025091579905 +871073026471497769 +871073024193990757 +871072995312009236 +871073023086694490 +871073026546999348 +871073020914065438 +871073021421572106 +871073015914463322 +871073021845200956 +871073023153823795 +871073023506153473 +871073030393184256 +871073028598018110 +871073033077555240 +871073027847241758 +871073030204428368 +871073021127966780 +871073023900389386 +871073026832203797 +871073032708452352 +871073032880422913 +871073022377857076 +871073035971624990 +871073038324617216 +871073035623489577 +871073026878369803 +871073031815069776 +871073023418044446 +871073034369376257 +871073022495297566 +871073032070897686 +871073029352996985 +871073027721420811 +871073027427807273 +871073032016392253 +871073032649703476 +871073028950335539 +871073030422528056 +871073034864308255 +871073026177904652 +871073026169516094 +871073035606708264 +871073014756835328 +871073028069527603 +871073035724140554 +871073029508182016 +871073032595189760 +871073037221515265 +871073030657421363 +871073031009751100 +871073028304437299 +871073029667577887 +871073024374370306 +871073037410250772 +871073040639885342 +871073035480858666 +871073037166977104 +871073038890848336 +871073039276703835 +871073034348400650 +871073028421861398 +871073027486548008 +871073038609821768 +871073039943602266 +871073041042538547 +871073029558501387 +871073031815045120 +871073033316597761 +871073035011113041 +871073040769884300 +871073039939432478 +871073032276426752 +871073034092548168 +871073040052678666 +871073038685311006 +871073019622215681 +871073030758080513 +871073043584258068 +871073040463700008 +871073033614397540 +871073041604546600 +871073040757305406 +871073044959985695 +871073041218666596 +871073044339232839 +871073034830749777 +871073044481843201 +871073049884114964 +871073030426722334 +871073041382248500 +871073042892218489 +871073038047784990 +871073044511203339 +871073042753785856 +871073048441266228 +871073030439305256 +871073041835257866 +871073033438236763 +871073042720251914 +871073033790574643 +871073051318575114 +871073033853493268 +871073040946065479 +871073032091889704 +871073022168137739 +871073040585330718 +871073040287531030 +871073040748912680 +871073047187177512 +871073048533561394 +871073046566428722 +871073046096642108 +871073044687388712 +871073054749499484 +871073036948885534 +871073046524473345 +871073046277021758 +871073054720159745 +871073043047395388 +871073039025049621 +871073055504478308 +871073048101548082 +871073035548000266 +871073042200141844 +871073050681036840 +871073044108562473 +871073051683475516 +871073051264032858 +871073045765316648 +871073049355644989 +871073044880326737 +871073044951625728 +871073042393100348 +871073052069343242 +871073044939046943 +871073045375221850 +871073033484394536 +871073045622689843 +871073053675761744 +871073045832405032 +871073041730404385 +871073055504498688 +871073053327642624 +871073051175960637 +871073050467135518 +871073032981073922 +871073031492091934 +871073039306076190 +871073031852818453 +871073046260240446 +871073045094207568 +871073045987610634 +871073051872223232 +871073056947318804 +871073052056772719 +871073057274470400 +871073060457955329 +871073048151851038 +871073047262658561 +871073050383220797 +871073054728540191 +871073046990045224 +871073049145917440 +871073052799172718 +871073039964590110 +871073057597452288 +871073059933650995 +871073055152144445 +871073048604852245 +871073051113058355 +871073059216424961 +871073058746675240 +871073047300436019 +871073057979125780 +871073044888715274 +871073041361289277 +871073041709416488 +871073049246588938 +871073046306357318 +871073050681032784 +871073048747454464 +871073062391529484 +871073061363937310 +871073061552672798 +871073058193022976 +871073051939311688 +871073057702285333 +871073058297905152 +871073058608255066 +871073061011587092 +871073051633131600 +871073051402461255 +871073057706500117 +871073062374760478 +871073045970841620 +871073052287459368 +871073052530728960 +871073060172742706 +871073061179371602 +871073053558329385 +871073052635586561 +871073060017561630 +871073057727463436 +871073056393662474 +871073030963617802 +871073060772536370 +871073057526149120 +871073061850476554 +871073052417462272 +871073062160842752 +871073053377966102 +871073060671860777 +871073062525763594 +871073062433456128 +871073057563901992 +871073052534898729 +871073062748053544 +871073052597829694 +871073053050830948 +871073062022414346 +871073063607861389 +871073065918943232 +871073065545637948 +871073046042124358 +871073068531978302 +871073068393570305 +871073062412513291 +871073065612759080 +871073067143680020 +871073066141237288 +871073065059119164 +871073047233306644 +871073060030119966 +871073052887240714 +871073067240140820 +871073062911627275 +871073063926652969 +871073062760611910 +871073065944113222 +871073067718307941 +871073063301701722 +871073061208735814 +871073068032852028 +871073068964003880 +871073062081150997 +871073063079399475 +871073061904998490 +871073063515602955 +871073068355817523 +871073061942722602 +871073073481261066 +871073063301709875 +871073058499227668 +871073070855639071 +871073071891632228 +871073069396000769 +871073050458730537 +871073068750106667 +871073048877469777 +871073068511014943 +871073070033547284 +871073068007686184 +871073068938829885 +871073064027308052 +871073046222499891 +871073071715483719 +871073071463792660 +871073070662692864 +871073073976197170 +871073069479886908 +871073070096461894 +871073068150296636 +871073068703973417 +871073063591104532 +871073073846161410 +871073068540362813 +871073074378834011 +871073071681921024 +871073073812611103 +871073069672841288 +871073068410339388 +871073052996288585 +871073074378862644 +871073068561358848 +871073069744156723 +871073073133154344 +871073075028951081 +871073063075201054 +871073068011880508 +871073076324991036 +871073083946065980 +871073072399122502 +871073080049553458 +871073075016400896 +871073075532267550 +871073074827657226 +871073075616174121 +871073057538723891 +871073074836033546 +871073074462720031 +871073077033828363 +871073074164928533 +871073075242868756 +871073050387447849 +871073079634305106 +871073071723847680 +871073076027215923 +871073077402939432 +871073074278174730 +871073077646205018 +871073073745518594 +871073064136351764 +871073078589923389 +871073075679068221 +871073075993657346 +871073078237622313 +871073083493077093 +871073073166712863 +871073081467240478 +871073077822361641 +871073067399520277 +871073067110129674 +871073078959013908 +871073078468313168 +871073078833205360 +871073079793705020 +871073085082730506 +871073062852898836 +871073080984891402 +871073078241787965 +871073067504381964 +871073069689618452 +871073082268323850 +871073082633257020 +871073083082027139 +871073082209624114 +871073081987309608 +871073064308330566 +871073073388998676 +871073083610509382 +871073081899229276 +871073078363439164 +871073082834579546 +871073063884713994 +871073080343154798 +871073083501461505 +871073081131687976 +871073066036383774 +871073078736748585 +871073086710087721 +871073082431909928 +871073084143181824 +871073082893275207 +871073085023989790 +871073077897863219 +871073076723470396 +871073050408390687 +871073082884882442 +871073085359534090 +871073070692040714 +871073073200263168 +871073060520886332 +871073082788429885 +871073084378075217 +871073089939714068 +871073084218687538 +871073082813612063 +871073085233700924 +871073085900619827 +871073082863943740 +871073084885577808 +871073081173631027 +871073076945760316 +871073089377677322 +871073081370750976 +871073087058235422 +871073085363744778 +871073090896027718 +871073089155375124 +871073084327727184 +871073090208161922 +871073090384318544 +871073093051908226 +871073090468188232 +871073088744325120 +871073095920779264 +871073085216923698 +871073086622007307 +871073092464705566 +871073088601731185 +871073092271763508 +871073096092778567 +871073083958636544 +871073091462246490 +871073089734193223 +871073086441672785 +871073097057456148 +871073088509472779 +871073095321018438 +871073079013543937 +871073085661515796 +871073094209527808 +871073077826564098 +871073082117328947 +871073093056094248 +871073097829195796 +871073095643971615 +871073094456999996 +871073096134688809 +871073091378348052 +871073099699875870 +871073096382165064 +871073097783066695 +871073085393088533 +871073092997349438 +871073075096092712 +871073092410179614 +871073096109522964 +871073095442640926 +871073081584652369 +871073092682801202 +871073096575119441 +871073097107779624 +871073097472692264 +871073090975719446 +871073103235670096 +871073089268617236 +871073102442954773 +871073098525454397 +871073092116570202 +871073094285012993 +871073081223962715 +871073098051518515 +871073084759769118 +871073102556200960 +871073085929975868 +871073093425176687 +871073099389468722 +871073092745703425 +871073104170979359 +871073107962626049 +871073091302879292 +871073103550226432 +871073099678904410 +871073098370256976 +871073104288419900 +871073098223456266 +871073103936118834 +871073101625032704 +871073097917280336 +871073110877683793 +871073102480683039 +871073098814881842 +871073102891733073 +871073099041349723 +871073094280835113 +871073104372301925 +871073109376126976 +871073105722871858 +871073101490815008 +871073103676047371 +871073099800531054 +871073106872139776 +871073106482065481 +871073091013455913 +871073104745615411 +871073101750874173 +871073104133259286 +871073111578140742 +871073109120262195 +871073106452693012 +871073104523305053 +871073112349888572 +871073104573661244 +871073103898370058 +871073090879246346 +871073100245118998 +871073102841409546 +871073100039593994 +871073098617749584 +871073099712446475 +871073106893086760 +871073107081826304 +871073110441484369 +871073110294675496 +871073107836825640 +871073113297784832 +871073092464705546 +871073099964117064 +871073107954266142 +871073106075189280 +871073101411155969 +871073099972509786 +871073099561463880 +871073112047910943 +871073081974747158 +871073111129337856 +871073110869291090 +871073109929758731 +871073109434839100 +871073108671488020 +871073119849295872 +871073107392217120 +871073100022816788 +871073104586223686 +871073112219852811 +871073110554714144 +871073112488280075 +871073113964683294 +871073104871444520 +871073109174792202 +871073110667968633 +871073107358654495 +871073105748033616 +871073103738974248 +871073104728834099 +871073104678502470 +871073092267548692 +871073099423055872 +871073104611377183 +871073101109145600 +871073111657816134 +871073114656763904 +871073103869009920 +871073096994533386 +871073115906654258 +871073112588967946 +871073099729236069 +871073099800539136 +871073116586119198 +871073112953864272 +871073112198905886 +871073117420802105 +871073115550134272 +871073090195554326 +871073116607115265 +871073113050349628 +871073116867145778 +871073116196057118 +871073120268730418 +871073099636932618 +871073118561644574 +871073111733325824 +871073114522529874 +871073113729806346 +871073113935319120 +871073099804704769 +871073100899422259 +871073123540283392 +871073115025866772 +871073115478827138 +871073118154813440 +871073109443215430 +871073120818196520 +871073114086334485 +871073112622530611 +871073087637041172 +871073115411730472 +871073123615789086 +871073115944394844 +871073114514132993 +871073112085647390 +871073124194607144 +871073116951027723 +871073117760528405 +871073117894742077 +871073121552183316 +871073118658117723 +871073108084260874 +871073108168159276 +871073116221214750 +871073106008109126 +871073105169248326 +871073118263865384 +871073123427057664 +871073118687481906 +871073121787072582 +871073110403731526 +871073123456409631 +871073121518624839 +871073122672050186 +871073128061730836 +871073119530541207 +871073120314884146 +871073119396306964 +871073125285126204 +871073110827352164 +871073116812636211 +871073123313803285 +871073131639496744 +871073127839432704 +871073121594126376 +871073130771255388 +871073119627018261 +871073128619585626 +871073115936030720 +871073115227185232 +871073128145641512 +871073114501562409 +871073115915042826 +871073126543400970 +871073121816416288 +871073132377690122 +871073116321882172 +871073127092863006 +871073118972694618 +871073127524892703 +871073118834266163 +871073128154009631 +871073104296804412 +871073122265206784 +871073120067391578 +871073126820221001 +871073125532577832 +871073118624555028 +871073127881375745 +871073123359932416 +871073119949967380 +871073124416892989 +871073123515129956 +871073126467915896 +871073124978917427 +871073126597926952 +871073128023986206 +871073127600373790 +871073135267565578 +871073124353986721 +871073109627797564 +871073124614021160 +871073132893601842 +871073134349008896 +871073128330170438 +871073123238281286 +871073124626620466 +871073132998447104 +871073125197053974 +871073134973947964 +871073133845684235 +871073117731180666 +871073132566413472 +871073133602414593 +871073134504189963 +871073117722796082 +871073127478755358 +871073136215461980 +871073138077757510 +871073120893665290 +871073136228065331 +871073137901568120 +871073137889013763 +871073126082023435 +871073136479707178 +871073126958633001 +871073136504893511 +871073136907550811 +871073127784915004 +871073135703756800 +871073126136569876 +871073126778302554 +871073139562516560 +871073117072654396 +871073137767383082 +871073131660476456 +871073134705524797 +871073136441962496 +871073133317210182 +871073127520665671 +871073143681351690 +871073134638432326 +871073138589458462 +871073120650412112 +871073144155287582 +871073134692954142 +871073145627480125 +871073139126325299 +871073134680350741 +871073114065338469 +871073113713025115 +871073140959244290 +871073144037847081 +871073138149036083 +871073141340930058 +871073134575505498 +871073138564292608 +871073142481748008 +871073137826091049 +871073122420404304 +871073135221424128 +871073143945564230 +871073138253893692 +871073140875341854 +871073147582054410 +871073136735559782 +871073138094506024 +871073144453103617 +871073137872240661 +871073138748837919 +871073137096290305 +871073148215382056 +871073141185708042 +871073138291650601 +871073138081931306 +871073136592961606 +871073151126241280 +871073146759966760 +871073147640766475 +871073140774666241 +871073133317226558 +871073146961281045 +871073142699880479 +871073144666984478 +871073114765791313 +871073151495327834 +871073149989572678 +871073139495419936 +871073150224457778 +871073152535519272 +871073143391936614 +871073151738589194 +871073147393282068 +871073147200364567 +871073147590430730 +871073150123790346 +871073150375452715 +871073152774598656 +871073147326185573 +871073148378955816 +871073140346867712 +871073149284921355 +871073147720450058 +871073149024886864 +871073144071413780 +871073125008277606 +871073146437001218 +871073146428604436 +871073151390449737 +871073149314273320 +871073148374757387 +871073151344345098 +871073152816533504 +871073149591105566 +871073141378662430 +871073142112661544 +871073143786180618 +871073141936521226 +871073153466650685 +871073144725717012 +871073143387742289 +871073146587979827 +871073141579984896 +871073140388810782 +871073139768057886 +871073153101729812 +871073142867644448 +871073149905698867 +871073153827348500 +871073148223750225 +871073151386259506 +871073143953981491 +871073157040197682 +871073147552681995 +871073146508312666 +871073152770388088 +871073161117052928 +871073128049147904 +871073157329592360 +871073155798675466 +871073154284531712 +871073154917888000 +871073145640091718 +871073153189822574 +871073145434538035 +871073158831173672 +871073165353304114 +871073161943343194 +871073157136662568 +871073158747267112 +871073140900528178 +871073158814371882 +871073155496685668 +871073165596565516 +871073159049252964 +871073158944399381 +871073162522149004 +871073163826581504 +871073163096776744 +871073159493849089 +871073166481559653 +871073161326759947 +871073163059019877 +871073154209050625 +871073160383057920 +871073154536181770 +871073169061072936 +871073166091518023 +871073165563002951 +871073159070228490 +871073165588181072 +871073159523233812 +871073166997463100 +871073155672866836 +871073162727686206 +871073168427712622 +871073165365886987 +871073169157541930 +871073163419713606 +871073159892303973 +871073163398746152 +871073165651107881 +871073160857018389 +871073164619309106 +871073165697241148 +871073165437190195 +871073154372620299 +871073158717931581 +871073173263761468 +871073171846094858 +871073158453669898 +871073166057951282 +871073159300935761 +871073177202212965 +871073170172575795 +871073169308516402 +871073166234091531 +871073170273230879 +871073173179887657 +871073171292450817 +871073166213140540 +871073169572786207 +871073165789495296 +871073155500884008 +871073171208568872 +871073145057083454 +871073154297110600 +871073166896803941 +871073164875141231 +871073166666125324 +871073154099990608 +871073172684943400 +871073160429191258 +871073176971534408 +871073133866651670 +871073174178136096 +871073154024480870 +871073173502844978 +871073172907253790 +871073169203658772 +871073172601053244 +871073154783649852 +871073160743776286 +871073160332705812 +871073160672469063 +871073162580856832 +871073163033870396 +871073147485552660 +871073183254589441 +871073166838087681 +871073162606039080 +871073172403929108 +871073173406359633 +871073171074347039 +871073171170811934 +871073185603395604 +871073172848529408 +871073175776157747 +871073159074443364 +871073160273985587 +871073159833600062 +871073174421385216 +871073165793714227 +871073164824830022 +871073183887949905 +871073175243464724 +871073176170405919 +871073186891042826 +871073175130239016 +871073172210974721 +871073173431549983 +871073170466164846 +871073172856909885 +871073156029354034 +871073172336820314 +871073175553843280 +871073172760457246 +871073178196262983 +871073177730711573 +871073166267670588 +871073165844021319 +871073181786603580 +871073174543011890 +871073172831735809 +871073178653429831 +871073178213027860 +871073177617465424 +871073166884221020 +871073174874386462 +871073173553156106 +871073177785233428 +871073175025381387 +871073179408433182 +871073182541578260 +871073181761429564 +871073162866090004 +871073154250973235 +871073171695095848 +871073179475517491 +871073182528991322 +871073184563212298 +871073163553959967 +871073165449789500 +871073158160064572 +871073166389288990 +871073172278108160 +871073185511133266 +871073182671573035 +871073182390566913 +871073174324912128 +871073181568471040 +871073185691484310 +871073175126032384 +871073183141355540 +871073181065179146 +871073174715002941 +871073182088589322 +871073181362970644 +871073185381105754 +871073192750501889 +871073188396810310 +871073182700961844 +871073152078348398 +871073181799186482 +871073183606906920 +871073188111609927 +871073188501684244 +871073180373090324 +871073181421674536 +871073174094237717 +871073186287067187 +871073181706899496 +871073194159796264 +871073188069654549 +871073189550247937 +871073181430075402 +871073190439444510 +871073182612865025 +871073183921479700 +871073182101155901 +871073168943636480 +871073189902553179 +871073191035023421 +871073193350283265 +871073193094430771 +871073186882678864 +871073190275874816 +871073196798001212 +871073186459025429 +871073179819446292 +871073183590125618 +871073184504487997 +871073179911729193 +871073183866957884 +871073190720442478 +871073196785430548 +871073177143480391 +871073183195873280 +871073186031210496 +871073194138816522 +871073193627111435 +871073187654430741 +871073188065452042 +871073189143396433 +871073184638717972 +871073185876037652 +871073198232453151 +871073197754314853 +871073193459331072 +871073184106045511 +871073190171017257 +871073186777800714 +871073197687185429 +871073187692175402 +871073185628573776 +871073187255971870 +871073196621844480 +871073200262504510 +871073190888239124 +871073196428918835 +871073199159402517 +871073166297006102 +871073185339146320 +871073191584477314 +871073196068179989 +871073192687575105 +871073199155195916 +871073173817401345 +871073177730686976 +871073195577458718 +871073193744560129 +871073188719759452 +871073182394757202 +871073197880115281 +871073190854676490 +871073183200083989 +871073195862671420 +871073199989870603 +871073201126531154 +871073178271764481 +871073195518742549 +871073181669154867 +871073202548396042 +871073190791753798 +871073198542843935 +871073190221348865 +871073203362082826 +871073195262873601 +871073203877969931 +871073164371845120 +871073193098620980 +871073184252833914 +871073191265706115 +871073183401390151 +871073196386943006 +871073196269527050 +871073186953973781 +871073187260145746 +871073191748071464 +871073193270579241 +871073199255851058 +871073190561079356 +871073198551208008 +871073197372616776 +871073195321597983 +871073183489474581 +871073209968132176 +871073203542433852 +871073193757130773 +871073200870666241 +871073205744439336 +871073201977962516 +871073198169526322 +871073201629851688 +871073195178987551 +871073212254011432 +871073196823171072 +871073190657523742 +871073187012677653 +871073196781207562 +871073191492210730 +871073204742000690 +871073193635495997 +871073204091891752 +871073207216644176 +871073193203478568 +871073204460982272 +871073215341019176 +871073214493757512 +871073200392507432 +871073201424306236 +871073206180671580 +871073195468390440 +871073190787547146 +871073214447636540 +871073208206491680 +871073212216254514 +871073203362095164 +871073195980116008 +871073208680448031 +871073195673911376 +871073207325691946 +871073205832527893 +871073205589262426 +871073208936308746 +871073220650999858 +871073214946746389 +871073204888805437 +871073215722688512 +871073205937381437 +871073209393504307 +871073207766122536 +871073222458757201 +871073194835054622 +871073208500097066 +871073208076488734 +871073210240741417 +871073208621748284 +871073209301229598 +871073205715099658 +871073206289727498 +871073205455028237 +871073182055022672 +871073219770212352 +871073219921195039 +871073210215571516 +871073219157831690 +871073217333325854 +871073204901400576 +871073195329986610 +871073216645435413 +871073209393508394 +871073219883462657 +871073219476598855 +871073218864251030 +871073217173942282 +871073218163773450 +871073200488976405 +871073209401880646 +871073216288944188 +871073186324832267 +871073218167996516 +871073220911038574 +871073217689845781 +871073210903453766 +871073217140379648 +871073198995820614 +871073217329123348 +871073206612660244 +871073218721632306 +871073218566455296 +871073187398565958 +871073198911942666 +871073220223176784 +871073217505284097 +871073216519606293 +871073211402571787 +871073224933400576 +871073207732547584 +871073219757608981 +871073208839831552 +871073214909014086 +871073204653940836 +871073200770007040 +871073218184740864 +871073218608398376 +871073224396521503 +871073212233052210 +871073221317914656 +871073226980204605 +871073228355928104 +871073224996311080 +871073224249737259 +871073224178401342 +871073225847767090 +871073234353782794 +871073225684172852 +871073219006840832 +871073225029857331 +871073215668174850 +871073227865219102 +871073225948401725 +871073216158896188 +871073230465691658 +871073216679018517 +871073222001565698 +871073228485972028 +871073225206038528 +871073225856143370 +871073148664176700 +871073233280073840 +871073234865520751 +871073232466378833 +871073222316154910 +871073204100296834 +871073224442658867 +871073235159113788 +871073232915161179 +871073234940997712 +871073234718720111 +871073223469588552 +871073213357101126 +871073227487735808 +871073234928427039 +871073222446162020 +871073232462155846 +871073227689041930 +871073226065838121 +871073222265823232 +871073239789625375 +871073209804546068 +871073216263778375 +871073236161552394 +871073222072860702 +871073235532402808 +871073223385694278 +871073229878468659 +871073227554840606 +871073228708257824 +871073228108484638 +871073222362271765 +871073236555796520 +871073226506272769 +871073204200964136 +871073235565940737 +871073230822207549 +871073236417380362 +871073237436620840 +871073238464213033 +871073231111606334 +871073230654406656 +871073222941081611 +871073230067228672 +871073230025273425 +871073230708932608 +871073217081671780 +871073241836433459 +871073238808158218 +871073241257615382 +871073226992812072 +871073232055328768 +871073237495345172 +871073238212546560 +871073219510140989 +871073222924337222 +871073225663205396 +871073231988207636 +871073228985077820 +871073234664169543 +871073229811372092 +871073227194110073 +871073231682015292 +871073228418859049 +871073236157358090 +871073227642925086 +871073228418842634 +871073222475530370 +871073223247298590 +871073226510446653 +871073241823862864 +871073230583132190 +871073229819772988 +871073229983334460 +871073231723962449 +871073242633363457 +871073235280740412 +871073234639003678 +871073222286802954 +871073218528706570 +871073236228657192 +871073240964034611 +871073233770782740 +871073239374393365 +871073243409313802 +871073237038145536 +871073230369194014 +871073232961282118 +871073243577086043 +871073248580890664 +871073242889199626 +871073232344719381 +871073228326596661 +871073247813333013 +871073238023798855 +871073239756062780 +871073244118155264 +871073252078911488 +871073243774197760 +871073244864733194 +871073235767271454 +871073247922368512 +871073238883643482 +871073244680179773 +871073246739591199 +871073248270487582 +871073241924509706 +871073243224735745 +871073245896531988 +871073246143991958 +871073250724171797 +871073245875544085 +871073249100980245 +871073240083222558 +871073218528706572 +871073244197830686 +871073243543531620 +871073245019926538 +871073245217054740 +871073244013285376 +871073245028315147 +871073244487245924 +871073238833328208 +871073248710909952 +871073242264248411 +871073250107596801 +871073248866078801 +871073232067911710 +871073246815072257 +871073247020593224 +871073245107978270 +871073260975058944 +871073250510245919 +871073244000690188 +871073247456821259 +871073217278779434 +871073251227471904 +871073261205725238 +871073243195375627 +871073252238295110 +871073252917792868 +871073247993671710 +871073249478455397 +871073255451152414 +871073251684679690 +871073251848253440 +871073252267663420 +871073248979333170 +871073248840929280 +871073252074721361 +871073238493560914 +871073247641337856 +871073250870984764 +871073258190012427 +871073251915362314 +871073254687793192 +871073251261030400 +871073247746220072 +871073254373208066 +871073254511628299 +871073249495236678 +871073254935236658 +871073255874773063 +871073251017756702 +871073252443820032 +871073253345615942 +871073250342490152 +871073253370785804 +871073258471047230 +871073253379158047 +871073258806607902 +871073262141063198 +871073254071218256 +871073248748646400 +871073250581553183 +871073254608093184 +871073253056204860 +871073256562642957 +871073256860442635 +871073254079623268 +871073256310984744 +871073239198220350 +871073256688484384 +871073255631515668 +871073256910774322 +871073258227773440 +871073243686142003 +871073253026832444 +871073255115603988 +871073255606321222 +871073257846087751 +871073257422471179 +871073257409892413 +871073255346290728 +871073255719600208 +871073246005571634 +871073255358861362 +871073257166626916 +871073250694803497 +871073255082065940 +871073261595787275 +871073266754789506 +871073266859651123 +871073262736646204 +871073261381894154 +871073260857614366 +871073269669847070 +871073261461573713 +871073267425898508 +871073253035237376 +871073257212768317 +871073261188939826 +871073260006178876 +871073274069659648 +871073259708379296 +871073273864130651 +871073259305725982 +871073258332651561 +871073275176976394 +871073260433965087 +871073259083423814 +871073260052295680 +871073260706627666 +871073256835280938 +871073262157848626 +871073257082740806 +871073263860744263 +871073274853998592 +871073264011739226 +871073258114543666 +871073271364337677 +871073260819865600 +871073257095311380 +871073270974255144 +871073260652101683 +871073228905398353 +871073267014852659 +871073277940994070 +871073258508812338 +871073261893595217 +871073265592967239 +871073264380833852 +871073264338878464 +871073264598933594 +871073271645364275 +871073263604858932 +871073264573767730 +871073233917595678 +871073261650337852 +871073268940030032 +871073256780755015 +871073273591513181 +871073276632391680 +871073269485305866 +871073270248636437 +871073273528606730 +871073268755476502 +871073273868320838 +871073268755476490 +871073268667383899 +871073270881976360 +871073254725546004 +871073269162340402 +871073192272355329 +871073258185830470 +871073268868735016 +871073276431065128 +871073270751977592 +871073264666050651 +871073269015535659 +871073277714509926 +871073267505565788 +871073256193556530 +871073265353900073 +871073275579613264 +871073266775777351 +871073273092403250 +871073269560803379 +871073263084785694 +871073277404119170 +871073261008613406 +871073278800826419 +871073274052898817 +871073277450260530 +871073289534070814 +871073279094427710 +871073277576097852 +871073274937901056 +871073289919954964 +871073277110517850 +871073249574936576 +871073279299944478 +871073269221032117 +871073279547437076 +871073278251380756 +871073277416702002 +871073262531145729 +871073276884037653 +871073269493678120 +871073275982274590 +871073276212961280 +871073289974448138 +871073278742126633 +871073289794093087 +871073265030955038 +871073273323069521 +871073259901296640 +871073277429284925 +871073280633749575 +871073280168169472 +871073288430956624 +871073277907464233 +871073282005286954 +871073289492111373 +871073283200680027 +871073277743857685 +871073288749731860 +871073276858892358 +871073243350573077 +871073262346600469 +871073274027733032 +871073279379669043 +871073287533379644 +871073286052778034 +871073279895543819 +871073282831581224 +871073280692473926 +871073279929094195 +871073280021372948 +871073278444310619 +871073285293617212 +871073282563129354 +871073279740358676 +871073279132196934 +871073261021196339 +871073290146422804 +871073295800344596 +871073288791654420 +871073280503713792 +871073279417401366 +871073284702220359 +871073266205343744 +871073277139894312 +871073290159030272 +871073289953480754 +871073293749321770 +871073282852552734 +871073282911252500 +871073292000325692 +871073285826289675 +871073301286494248 +871073294890184784 +871073293543821313 +871073285507514368 +871073295095713832 +871073292683976714 +871073290591014933 +871073268315066419 +871073293216677921 +871073292038070272 +871073292818198548 +871073295619989565 +871073285171974205 +871073284538654760 +871073282194022401 +871073288116383755 +871073293296349204 +871073294223290408 +871073291786399764 +871073280205930538 +871073288951050272 +871073293275365376 +871073295137648710 +871073293078249542 +871073295615819896 +871073291098550343 +871073291744464938 +871073300984524820 +871073299180949605 +871073286153457754 +871073297763278889 +871073295569674250 +871073298795102269 +871073289051709570 +871073295192178689 +871073292864335942 +871073292650426378 +871073292654612530 +871073298551812106 +871073295544487967 +871073295175385118 +871073292230995978 +871073303408828416 +871073293225050162 +871073295276077067 +871073303207477328 +871073308274200617 +871073282772832287 +871073308496494682 +871073297142526022 +871073282240172032 +871073295812952114 +871073296500805733 +871073306399371304 +871073308693655605 +871073289169158215 +871073302293151836 +871073278788268104 +871073307896729611 +871073304520323153 +871073305195601951 +871073280096862288 +871073293187285012 +871073295448043521 +871073306340655134 +871073279631294525 +871073305044611102 +871073296924426241 +871073306147709018 +871073274560405554 +871073295741624350 +871073298627301456 +871073313810702408 +871073301978566667 +871073297067049061 +871073300158251038 +871073306202230886 +871073309222129664 +871073299952697364 +871073303362699274 +871073306135134238 +871073308811087892 +871073292398788648 +871073302028890173 +871073300657369118 +871073315236757545 +871073302188277772 +871073310501388338 +871073305250132069 +871073298405031946 +871073305745055785 +871073290460991531 +871073296538562630 +871073301051609139 +871073300237938759 +871073295519346758 +871073309062737920 +871073310652375080 +871073310673350666 +871073302670614600 +871073303765352528 +871073319594651678 +871073295762620496 +871073314435629057 +871073298505674803 +871073302934872104 +871073305493397604 +871073302905516052 +871073305594064969 +871073302586736650 +871073302528008242 +871073315253534760 +871073289005576233 +871073312007139428 +871073311956819979 +871073301433286676 +871073313731018812 +871073312443351040 +871073308848832513 +871073299671695360 +871073318583812127 +871073304209940520 +871073315119321108 +871073311923273778 +871073317245825106 +871073304100884551 +871073308647518270 +871073310123900948 +871073304763572235 +871073316113354842 +871073311512207430 +871073313697464340 +871073292658827265 +871073310627205130 +871073304088297532 +871073314041389068 +871073311826784366 +871073318189547570 +871073305350799420 +871073312644665354 +871073310849531986 +871073293707403285 +871073319510761483 +871073304398671933 +871073311117955072 +871073316776067112 +871073303278792758 +871073314330775552 +871073312690831401 +871073312195879002 +871073316113379388 +871073316167884860 +871073318101467196 +871073317342294026 +871073294349115472 +871073311453487145 +871073316927070218 +871073315463233597 +871073313571627078 +871073317333893141 +871073317132578877 +871073326326480907 +871073316549570660 +871073301374574602 +871073319116480522 +871073318378295367 +871073308794310706 +871073310241337344 +871073318277615626 +871073310027431956 +871073320668377191 +871073313596792862 +871073303937286205 +871073319061971045 +871073318470557756 +871073309918388325 +871073317338107925 +871073298576994345 +871073318466367558 +871073318869032970 +871073318671888455 +871073310149058631 +871073319204569098 +871073318470557697 +871073330923438180 +871073320194408478 +871073320483815444 +871073329338015785 +871073317585575997 +871073296106549298 +871073323675697213 +871073318042734602 +871073323763769384 +871073319099711488 +871073301378781204 +871073325949001779 +871073321876332585 +871073317031927858 +871073318306975744 +871073331162542141 +871073319808557096 +871073318080483360 +871073326481690654 +871073332857020456 +871073323424034947 +871073319313637489 +871073333368746065 +871073324611027015 +871073330856353833 +871073326821408858 +871073324887867403 +871073324489379910 +871073318281818122 +871073332420821042 +871073331196076043 +871073319397494814 +871073320316047391 +871073328788570203 +871073335923068958 +871073336900354088 +871073325592485939 +871073319498178632 +871073327001780224 +871073321335271475 +871073317707194420 +871073329308651640 +871073332676669463 +871073337521082369 +871073331565166593 +871073334685745252 +871073331842015293 +871073333171609701 +871073329593872425 +871073326561370153 +871073319573651467 +871073334752850001 +871073326230032444 +871073322698432562 +871073337793708052 +871073328662724648 +871073330789224468 +871073324552318976 +871073339844730890 +871073331519033374 +871073334329245706 +871073321217835008 +871073321272356894 +871073324992692275 +871073325756063804 +871073330885697586 +871073332416643082 +871073333406482442 +871073340410961981 +871073332576026726 +871073342801723442 +871073324405510195 +871073339601461288 +871073337789513739 +871073325529575424 +871073338150248548 +871073324422275102 +871073339307855902 +871073338368348180 +871073340570337290 +871073333876228146 +871073338938765352 +871073339475652638 +871073103416021022 +871073338733244416 +871073338846486568 +871073342092886056 +871073326452314134 +871073332110458890 +871073325613449267 +871073317115822140 +871073332894765106 +871073342680084580 +871073325835755560 +871073325500223508 +871073338754224179 +871073320345432104 +871073339509186630 +871073341430177842 +871073322379657336 +871073330944413716 +871073310484598804 +871073341774135346 +871073325248561262 +871073339718893648 +871073337919553597 +871073339744092230 +871073341576998973 +871073324527128637 +871073342545854465 +871073338829717535 +871073340616499241 +871073337084891236 +871073325961588767 +871073340046057472 +871073335759499264 +871073345402179656 +871073341010772059 +871073331577770035 +871073351517491211 +871073342982082561 +871073341098852352 +871073332286595132 +871073339878309890 +871073339697934336 +871073330499825705 +871073342805934081 +871073352184377375 +871073346060681256 +871073342432628817 +871073333951746098 +871073349692977152 +871073348677959720 +871073347486756965 +871073345662226462 +871073352553476137 +871073332529889360 +871073352691892254 +871073349776838696 +871073344458477579 +871073349273542726 +871073337672101920 +871073347851669554 +871073338418688020 +871073342260654080 +871073321171709962 +871073349344833566 +871073341832822854 +871073345565765697 +871073346631106560 +871073346039717938 +871073346597584916 +871073345972621332 +871073349437120603 +871073352494743562 +871073341019160597 +871073350678638633 +871073352104689704 +871073343028199514 +871073348455632896 +871073347600011294 +871073351102238742 +871073348082360390 +871073337982472242 +871073350372438076 +871073343590264903 +871073355904741436 +871073347671322624 +871073350779305994 +871073342780760064 +871073348824756254 +871073352608006165 +871073351173541958 +871073352779989013 +871073345972625410 +871073348191420466 +871073347683889213 +871073342856261683 +871073348690542632 +871073348384333837 +871073348770230323 +871073354008903731 +871073345557377034 +871073348287864885 +871073357754408981 +871073325185646672 +871073362418475098 +871073345683214416 +871073335474274305 +871073358891057153 +871073349407764511 +871073345318318080 +871073349315493928 +871073339974758400 +871073349139312641 +871073358194815058 +871073360220680252 +871073350385012766 +871073347620970557 +871073341883162644 +871073357330804767 +871073356210896921 +871073359235014716 +871073353178443827 +871073353270714428 +871073357267861564 +871073360631701515 +871073356563230740 +871073349541953607 +871073358488436776 +871073354113773598 +871073349953019944 +871073349093175327 +871073356546441267 +871073352922595389 +871073352733851720 +871073364670840832 +871073343640584193 +871073355753738270 +871073352469602385 +871073351412637747 +871073355690803331 +871073354524786788 +871073358509391883 +871073357808955553 +871073353434271755 +871073364540792882 +871073326884352000 +871073354822586408 +871073354239582260 +871073354440921139 +871073352859660358 +871073364511424543 +871073355669831742 +871073366478577704 +871073345460903976 +871073369850785843 +871073364729544755 +871073351630729297 +871073356487737394 +871073370366672977 +871073370031128606 +871073357389500446 +871073361000804382 +871073362594627605 +871073369984999454 +871073353388146729 +871073359067238420 +871073373852160061 +871073371654328411 +871073369435557998 +871073357389525133 +871073362225532958 +871073360199704677 +871073373214625793 +871073370274410517 +871073354440921098 +871073359255982140 +871073360501682186 +871073372572889128 +871073375756370021 +871073360975650826 +871073373374001242 +871073350552813669 +871073367216779284 +871073376167428186 +871073375873794109 +871073378969202708 +871073367992721459 +871073366608601148 +871073359440515123 +871073372912640093 +871073367262896168 +871073370723188777 +871073373575348274 +871073366436642967 +871073375005573180 +871073380521099305 +871073373927645264 +871073380667891722 +871073360447168552 +871073377618645012 +871073375966068756 +871073376284839957 +871073353623044137 +871073379699007549 +871073363488034857 +871073365685858345 +871073379262791690 +871073377677369344 +871073367543939102 +871073362984726588 +871073366969307147 +871073376435851296 +871073374430973992 +871073369427177472 +871073370635141191 +871073380592410675 +871073384623112212 +871073366331768882 +871073367611043860 +871073362678538310 +871073380529479690 +871073366709256212 +871073380810522655 +871073381372551170 +871073387806588928 +871073387513004086 +871073374829441054 +871073383205453855 +871073370538663946 +871073375085289534 +871073373810229358 +871073369552982016 +871073370198904882 +871073388838387714 +871073366801547295 +871073374447738940 +871073377111126076 +871073374842007612 +871073385571045407 +871073383037693962 +871073388586750002 +871073382156877834 +871073355153952879 +871073385763995689 +871073390520332319 +871073387710136360 +871073385701064755 +871073386946789406 +871073388569968710 +871073390033784912 +871073390344167444 +871073389173932105 +871073389073268756 +871073388272164986 +871073382869913600 +871073382165270598 +871073390109278279 +871073366243704852 +871073391036227604 +871073362087125072 +871073390289625138 +871073371037782067 +871073389941514331 +871073388603527178 +871073388737724457 +871073383696199741 +871073390600024095 +871073382496632894 +871073390163820564 +871073390126043207 +871073386644787210 +871073388855193700 +871073388574175232 +871073391132704799 +871073388565762084 +871073389333323826 +871073389278806066 +871073372363182100 +871073375773134928 +871073389937328201 +871073388096004116 +871073369854992444 +871073390591627295 +871073391854100560 +871073394387468299 +871073389626921051 +871073387169087530 +871073388733542431 +871073395989684315 +871073388116987904 +871073382534357002 +871073384312754296 +871073390075732050 +871073389253636146 +871073392311287908 +871073392625856542 +871073390428033035 +871073381565489162 +871073391917015100 +871073337365905409 +871073395708669962 +871073395092127746 +871073367585861682 +871073396388167690 +871073392818782258 +871073393007558696 +871073388746137630 +871073391950585876 +871073395129843763 +871073397952618537 +871073395134046239 +871073389467557928 +871073396165853217 +871073377513791528 +871073390998458389 +871073394521681931 +871073395461193739 +871073380642738196 +871073389673082900 +871073396287479808 +871073398170746950 +871073397860364368 +871073397331873792 +871073383788449874 +871073398346878976 +871073390277038160 +871073385201934396 +871073400695713812 +871073397277335592 +871073400934764624 +871073397122166884 +871073398250405949 +871073396677558342 +871073392441298954 +871073391409524757 +871073400817328138 +871073414155227206 +871073397495443486 +871073396899864596 +871073396484632616 +871073396778217542 +871073398489509909 +871073399521288202 +871073400238510111 +871073403988242432 +871073399861051443 +871073404265070623 +871073404944543855 +871073399651328050 +871073387232002049 +871073409323388959 +871073395616407552 +871073390675513385 +871073404260843560 +871073407008137277 +871073390658727996 +871073404575449148 +871073403765948437 +871073407737954335 +871073407666634822 +871073402327277608 +871073394718818436 +871073396174241812 +871073406920032326 +871073396396531772 +871073399659712562 +871073389916332112 +871073413303762976 +871073402100797460 +871073410380357672 +871073412204879932 +871073397914865695 +871073404114063423 +871073401253535884 +871073388393795585 +871073407054262313 +871073399970086923 +871073404730613790 +871073404663517205 +871073411651215421 +871073399043149836 +871073399433211956 +871073403954671656 +871073401043816471 +871073390860050513 +871073413794496582 +871073391329824868 +871073404873224192 +871073403518451722 +871073406429298718 +871073405582057502 +871073414448824421 +871073413916164137 +871073412091617330 +871073411684769843 +871073412062253076 +871073398258802688 +871073405238124555 +871073405594660914 +871073387831754792 +871073406269927504 +871073409168179260 +871073407335288883 +871073414796935188 +871073408270626826 +871073422292176976 +871073423684681778 +871073421700759603 +871073400515346442 +871073412569776168 +871073409205927966 +871073412141948959 +871073415107330100 +871073398703423508 +871073405477212220 +871073416864739389 +871073409390477323 +871073414461390948 +871073418185936896 +871073415489028239 +871073414109093999 +871073416856354817 +871073418420818021 +871073403438788648 +871073414025191425 +871073397772255233 +871073414377508904 +871073415518375996 +871073407607910432 +871073406559346689 +871073418806710283 +871073418345332786 +871073419440046090 +871073415073767424 +871073429657362462 +871073414633357352 +871073416663404614 +871073417728786432 +871073399164788747 +871073426822025238 +871073403497508874 +871073429720268840 +871073413270208512 +871073425307877426 +871073416587927654 +871073426176106508 +871073414339760198 +871073413328949298 +871073416722141184 +871073417665871912 +871073422606762054 +871073423126839326 +871073419461029898 +871073423277842463 +871073416613085214 +871073426985607189 +871073416420130838 +871073416344649728 +871073431217659924 +871073423089090620 +871073416134934630 +871073416789233725 +871073430915657788 +871073418307575839 +871073423202349107 +871073432006197268 +871073425844744283 +871073399605166080 +871073430060019782 +871073407993778246 +871073424208969798 +871073424393515058 +871073424901042257 +871073418068520980 +871073422933884958 +871073432085885009 +871073427732168734 +871073429472825385 +871073432018751571 +871073420639600722 +871073422136983563 +871073422581579817 +871073404608970792 +871073431087628338 +871073424569675826 +871073420979359744 +871073423466582026 +871073426977198080 +871073430957588560 +871073432551456789 +871073421683990538 +871073419385503754 +871073415967150080 +871073416143339551 +871073431473516574 +871073429393117225 +871073442458382376 +871073426410967040 +871073434715684924 +871073445834817586 +871073439446880329 +871073432186540072 +871073432031342632 +871073435860758548 +871073438725459988 +871073432660500560 +871073438947753984 +871073432744394773 +871073434803798067 +871073431716757535 +871073429380563007 +871073409445011477 +871073429049212948 +871073426914279444 +871073431448354836 +871073434073985055 +871073432018763827 +871073433100877845 +871073437987246100 +871073441783087124 +871073427006582814 +871073444475863060 +871073432480120913 +871073433964904510 +871073437135818792 +871073441976037406 +871073440969412648 +871073436141772861 +871073435365822514 +871073436070469683 +871073433021206528 +871073442810720257 +871073432798916619 +871073439669166170 +871073441640488980 +871073440524800031 +871073444710731816 +871073432580800602 +871073444551356417 +871073436330496011 +871073435822985287 +871073429892243477 +871073441867006062 +871073432538853467 +871073440768069672 +871073441254621235 +871073419867877536 +871073444962390166 +871073437563617343 +871073434195607613 +871073441992818688 +871073435793633350 +871073425425330228 +871073448389148673 +871073438373146714 +871073448158449675 +871073443674734592 +871073432983465985 +871073448674349096 +871073445268557874 +871073446371680276 +871073445587333140 +871073443968339978 +871073452407279697 +871073434166231151 +871073441774727178 +871073447772569702 +871073443595059222 +871073450226221148 +871073454248579072 +871073443620225045 +871073444559724554 +871073442936553566 +871073436808642570 +871073452168187995 +871073447772586004 +871073452575039498 +871073455754321980 +871073434753462362 +871073451685855262 +871073440650653756 +871073448691138582 +871073445184692275 +871073450373021706 +871073444450672660 +871073451392253953 +871073450771480579 +871073442378682409 +871073456240885830 +871073448368169010 +871073449056030780 +871073454886109194 +871073452612800562 +871073450482081862 +871073446669459477 +871073461450199070 +871073451887185950 +871073449358016552 +871073447822913566 +871073441523073045 +871073460124786719 +871073453745242212 +871073450234634240 +871073449018294312 +871073457293656084 +871073456840667206 +871073450180116530 +871073456798724206 +871073444664602685 +871073459021697035 +871073454097592330 +871073458602278934 +871073451601981470 +871073460816867338 +871073458556129372 +871073460217065474 +871073456744198235 +871073456962306108 +871073461093695539 +871073450867978241 +871073459231420427 +871073442961694760 +871073451581009972 +871073454051459152 +871073453871099955 +871073444815601685 +871073462477783121 +871073456391872592 +871073469419368478 +871073453942378506 +871073456777756762 +871073437890785331 +871073461555060746 +871073460711989258 +871073457058746428 +871073457775980565 +871073464965005362 +871073456656101436 +871073454101762109 +871073466516926505 +871073463727693864 +871073444945604618 +871073444945604620 +871073467305435198 +871073463400558613 +871073460854620221 +871073454252781621 +871073461894803456 +871073455980806185 +871073471831097374 +871073454399561799 +871073458694549584 +871073421113573427 +871073464117760041 +871073472346992640 +871073472112099368 +871073460535824487 +871073455787872297 +871073465682239609 +871073472632217691 +871073468408533022 +871073451803299920 +871073468492431440 +871073472430895136 +871073471508152322 +871073460561010708 +871073461957709824 +871073464533004338 +871073463677374505 +871073469259976745 +871073464130371605 +871073478659420251 +871073457935351838 +871073452600217600 +871073457281069106 +871073465682247680 +871073473982779462 +871073469943656499 +871073461487960134 +871073465208279121 +871073458006675506 +871073469876543519 +871073471797538877 +871073468718915664 +871073472112128020 +871073463505387541 +871073468484042755 +871073459730518127 +871073458996523118 +871073467632590848 +871073462838497301 +871073460384858165 +871073464495267851 +871073462779797604 +871073475966693496 +871073428113879151 +871073461970284555 +871073466097479700 +871073472179208192 +871073476792950794 +871073476360941628 +871073474150539286 +871073460414214214 +871073463396368424 +871073474830016592 +871073457272672337 +871073473982783548 +871073464033873972 +871073474456723456 +871073477967351899 +871073467406090250 +871073477933821982 +871073469671022673 +871073479938699266 +871073482396540968 +871073484279795743 +871073481020821525 +871073457532723251 +871073482698526750 +871073475807309875 +871073479284383805 +871073475924738160 +871073478822998016 +871073483910688848 +871073481050165349 +871073483172511745 +871073463731900456 +871073477451477012 +871073474616123443 +871073485361922140 +871073482706919445 +871073486892838962 +871073487069011998 +871073493528215572 +871073481213771817 +871073481872252979 +871073475807285298 +871073482526580806 +871073480135815168 +871073479577960519 +871073465791307796 +871073485722640424 +871073485353549895 +871073496762023967 +871073490596425740 +871073484846030908 +871073491296854056 +871073480379101215 +871073482526568568 +871073465569017907 +871073487345811517 +871073485575815278 +871073483491258368 +871073482652393513 +871073494862008345 +871073483721957386 +871073491229741146 +871073485202526258 +871073425899278386 +871073489682071582 +871073483625484348 +871073486163046401 +871073488272785418 +871073495755419658 +871073483470303262 +871073483508039680 +871073497118568469 +871073483277340712 +871073497038872596 +871073491338821674 +871073486343397457 +871073493960228874 +871073490898411562 +871073491464618045 +871073495650545674 +871073486771224616 +871073484414013560 +871073491410092052 +871073496858517566 +871073485349355631 +871073490181189693 +871073487513612298 +871073492680990720 +871073504173371473 +871073496007065700 +871073492571947008 +871073480064503849 +871073499022770216 +871073496581697547 +871073487236776038 +871073497076609076 +871073485861027881 +871073491368177694 +871073490785153034 +871073498808877068 +871073506257948742 +871073499828084797 +871073496787206205 +871073496250318868 +871073477598273587 +871073500083925083 +871073503112220682 +871073488474099712 +871073486255325226 +871073482144878633 +871073502994767872 +871073488646066196 +871073489073872928 +871073499119226950 +871073500117471262 +871073499559657482 +871073492580327455 +871073501342203965 +871073483893919805 +871073485596803082 +871073492622278666 +871073491749863465 +871073491363966977 +871073499807121430 +871073498880155699 +871073490353135658 +871073503510667304 +871073497898705026 +871073498892763296 +871073499068923914 +871073496145461268 +871073472892244029 +871073500645982269 +871073492022493234 +871073492974592051 +871073510196404254 +871073502696984668 +871073502474678302 +871073511299514368 +871073501304459325 +871073515342811186 +871073482983763989 +871073503393243148 +871073509663727676 +871073515518971915 +871073511618252820 +871073505620418600 +871073504693461012 +871073499790319647 +871073517192491029 +871073503661666324 +871073499140202496 +871073475803086918 +871073510238322709 +871073516060020756 +871073486666342410 +871073515296653352 +871073515334426704 +871073506933219368 +871073504773144606 +871073496602660864 +871073505096130623 +871073516794044496 +871073499450597406 +871073505251295262 +871073509084905532 +871073517452541974 +871073505033199696 +871073515934208071 +871073516794044436 +871073515930026005 +871073511714721842 +871073510280290315 +871073520640217099 +871073507885334600 +871073515279908954 +871073502415966208 +871073502000742460 +871073510200602694 +871073499307970560 +871073488990003279 +871073505276481556 +871073510359973958 +871073516525609031 +871073503204507670 +871073516076818502 +871073510867476532 +871073516215205959 +871073511765078016 +871073522234032178 +871073527237865532 +871073521093201941 +871073500255912006 +871073492953608213 +871073517616111686 +871073528248664134 +871073517712572476 +871073517175734283 +871073503124791356 +871073518048133140 +871073504878014514 +871073511521808404 +871073521139318814 +871073518421422101 +871073516382990386 +871073518136209419 +871073521361645658 +871073518014578698 +871073499433820200 +871073522703818782 +871073504907374632 +871073502713774120 +871073511551164446 +871073510045417483 +871073521797828619 +871073509344956426 +871073497844162601 +871073522410221660 +871073516735303690 +871073524679315486 +871073511106543706 +871073532556234782 +871073524977107004 +871073512171929641 +871073524595441756 +871073511693770782 +871073516403949579 +871073510188011520 +871073520778625054 +871073516533985380 +871073517574185080 +871073526759718973 +871073515489624114 +871073511844765698 +871073514449424474 +871073520673751062 +871073523173572619 +871073517922308218 +871073513308577882 +871073526818410506 +871073511651819530 +871073506203418624 +871073526264791040 +871073525564313700 +871073510422876190 +871073527128793138 +871073525044228227 +871073538101100614 +871073504672481280 +871073512964640799 +871073529326612480 +871073527212703775 +871073526180892742 +871073526642274394 +871073526231236629 +871073527359483904 +871073527539859527 +871073527716020256 +871073528236097536 +871073516571725894 +871073528143822959 +871073528932348025 +871073526751322183 +871073529087533096 +871073528454189066 +871073528290607165 +871073519524524142 +871073516018090035 +871073528647131156 +871073520740876299 +871073533151821854 +871073506178261012 +871073527497908254 +871073527892172800 +871073533994885141 +871073525081985064 +871073529993527349 +871073529116885052 +871073529418907658 +871073523655909426 +871073538268885022 +871073528122835025 +871073527271415878 +871073530798825523 +871073530568114327 +871073531591540797 +871073537736204320 +871073534150053928 +871073535609667684 +871073531557990491 +871073531826421840 +871073535148322857 +871073538105282570 +871073530928857108 +871073531788660787 +871073531121770516 +871073531943845908 +871073531474116778 +871073546045104189 +871073543633403964 +871073529397923850 +871073527300776026 +871073539694948422 +871073534514962554 +871073534183624745 +871073537488748554 +871073530060619887 +871073534787588216 +871073536612126760 +871073535630659604 +871073534858911794 +871073537920753755 +871073506861940796 +871073542760964106 +871073504022392832 +871073534728876142 +871073548645568512 +871073536461119518 +871073528055746611 +871073534963748916 +871073531012718612 +871073531163705364 +871073538772201512 +871073531406979083 +871073536029098084 +871073521034481714 +871073535412563990 +871073540273766482 +871073546221269032 +871073546271612982 +871073524771614731 +871073540588339241 +871073542899396690 +871073542844842004 +871073488583155762 +871073527812456448 +871073529246928976 +871073539128717402 +871073537153187910 +871073537287413831 +871073530278740069 +871073536331120682 +871073547617968178 +871073537148993606 +871073536050098206 +871073548679135242 +871073536385617950 +871073540038885418 +871073536201093241 +871073540118552586 +871073546128982116 +871073546678460466 +871073541175513188 +871073546686832711 +871073540789637150 +871073547190140998 +871073504685092955 +871073545608917072 +871073533994889228 +871073546854608928 +871073545722142781 +871073541863387177 +871073542664519761 +871073541402009680 +871073546011557930 +871073532560429066 +871073555222241391 +871073562897834065 +871073551900344370 +871073552730849350 +871073544824578078 +871073554907693117 +871073548578463795 +871073526252199986 +871073552391077928 +871073547257262131 +871073551426412626 +871073546443563038 +871073555960451082 +871073546015764570 +871073548372934666 +871073555012526193 +871073546519056414 +871073547718656081 +871073544103145482 +871073567146668082 +871073549027270677 +871073527544045608 +871073549836755004 +871073546095452300 +871073554836361247 +871073552206561291 +871073560234450975 +871073567507370074 +871073536578564137 +871073558774841536 +871073556811890739 +871073537815879710 +871073558674153552 +871073556602159204 +871073555935264860 +871073569189273681 +871073560460939304 +871073547001430029 +871073551589982239 +871073552751812729 +871073551418019871 +871073556346339368 +871073554630864926 +871073558707720192 +871073534477238322 +871073564407779328 +871073562943967312 +871073570057494578 +871073569558372483 +871073563677958174 +871073556732215406 +871073549736083496 +871073558984540180 +871073559143919646 +871073553179607091 +871073564651057162 +871073551229267988 +871073568950190080 +871073549199224874 +871073553099935844 +871073567557709874 +871073548486193163 +871073557067759647 +871073552114266112 +871073555851386970 +871073557575262319 +871073556979654667 +871073551304757248 +871073563317239809 +871073558137286676 +871073551556411402 +871073563304673320 +871073568396570664 +871073563610869780 +871073552764391445 +871073555759108186 +871073564177092689 +871073561446596709 +871073559722745938 +871073554857357383 +871073565024329798 +871073566014181407 +871073560544821290 +871073551602573324 +871073541418799114 +871073570078482452 +871073562910412830 +871073556677660674 +871073546133200896 +871073550281367582 +871073560590975057 +871073566525902849 +871073564260970506 +871073559622090803 +871073553880084530 +871073557252280320 +871073560934895637 +871073567155052584 +871073576562864199 +871073571999453184 +871073566525890631 +871073569151528990 +871073569537421384 +871073572364374027 +871073568602083338 +871073568635641927 +871073559131349053 +871073572242739220 +871073559525593118 +871073559190069298 +871073572607639662 +871073561148801034 +871073580643921951 +871073568753082439 +871073574306336770 +871073573442301972 +871073577649209354 +871073582057406506 +871073573702336532 +871073573140316180 +871073577636610098 +871073569331904533 +871073558422499338 +871073569730363433 +871073558330232912 +871073583600918538 +871073570741178438 +871073577988935691 +871073580983672852 +871073574029496422 +871073554542772266 +871073577657577582 +871073562688106566 +871073574440554577 +871073581868671046 +871073581927378974 +871073582833356880 +871073560486101073 +871073581071753236 +871073575061291080 +871073568467853332 +871073574981632031 +871073580698447883 +871073569046687774 +871073569650655283 +871073574977413170 +871073573853351936 +871073569130549290 +871073563417907260 +871073569247998023 +871073571928158260 +871073576084701214 +871073571206758481 +871073564109987873 +871073570330140674 +871073569625501776 +871073568216199218 +871073572465020979 +871073569721946133 +871073558774820905 +871073575677861969 +871073569306710117 +871073574985809970 +871073538193383474 +871073582128705576 +871073576877457479 +871073582392959016 +871073582447493181 +871073578228011058 +871073572787978331 +871073586696314940 +871073569940045834 +871073571374514197 +871073584506896404 +871073574419591168 +871073551728381982 +871073577842118696 +871073555033489480 +871073587937812530 +871073583747715162 +871073556543442974 +871073586436263946 +871073574826414080 +871073562562277428 +871073554492452885 +871073583332483092 +871073557747228702 +871073584053882890 +871073585744191538 +871073571231899708 +871073589300953089 +871073584389455923 +871073536297553941 +871073584062296094 +871073576789356554 +871073576080535583 +871073583475089409 +871073587736477796 +871073591893049395 +871073584615915540 +871073599530872843 +871073583886114897 +871073592740294677 +871073592253767710 +871073584813068289 +871073581847683113 +871073591507161099 +871073592140513380 +871073589405827102 +871073586067144764 +871073591486189598 +871073584993415218 +871073583491870730 +871073599719616522 +871073594027954216 +871073588688588800 +871073592169885766 +871073587304489021 +871073586952155196 +871073587921043547 +871073587782639706 +871073587090559117 +871073588189478942 +871073592396365864 +871073584360067133 +871073589527457833 +871073586650161152 +871073590169194546 +871073601250545685 +871073587358990417 +871073576860659762 +871073586075549697 +871073600004849704 +871073574352482325 +871073597614071808 +871073583890313226 +871073592933240872 +871073600894038036 +871073587791024208 +871073596888461412 +871073586998304798 +871073588453711922 +871073582338408470 +871073601250525204 +871073588424351754 +871073588101406790 +871073587904282634 +871073576109867059 +871073595533692959 +871073591633010738 +871073570170744853 +871073591008047164 +871073595684696074 +871073592253747241 +871073596288671794 +871073593184886794 +871073592543178763 +871073600055173212 +871073600596226128 +871073589229654068 +871073601774817280 +871073596150259742 +871073589397426247 +871073595391098930 +871073601435074611 +871073592660602971 +871073593008734219 +871073600751435837 +871073584850825256 +871073594141208597 +871073601892266015 +871073601644789820 +871073588936056833 +871073600852082778 +871073609861447770 +871073554265956402 +871073583064039446 +871073587702935573 +871073601569300540 +871073610385723433 +871073592463458354 +871073604048154634 +871073602571743304 +871073596229963787 +871073608099840070 +871073600956928040 +871073602257178665 +871073593944080406 +871073604710858802 +871073603301568534 +871073582350999552 +871073603989405728 +871073601980366848 +871073586612420659 +871073602982801408 +871073563594076171 +871073588692783106 +871073605423865916 +871073588428562453 +871073602651422830 +871073603976830986 +871073604928933969 +871073603544813648 +871073601862918164 +871073614009622559 +871073607999193098 +871073602559148054 +871073609727238276 +871073611023282187 +871073612541620234 +871073609706262578 +871073603821633546 +871073613581787176 +871073606669594714 +871073595638562837 +871073590798336000 +871073603603550338 +871073613795721246 +871073609668493313 +871073587673583707 +871073617969033297 +871073602856964166 +871073587774246942 +871073618556235798 +871073612541603930 +871073613107847219 +871073611727917118 +871073611581096026 +871073610775793674 +871073610331193355 +871073619126677505 +871073605658771527 +871073612474490890 +871073612193468426 +871073610473828383 +871073616857550878 +871073610993897503 +871073619101507634 +871073608104038410 +871073618866634803 +871073617990004827 +871073618992459787 +871073612550004786 +871073606094970901 +871073612172500992 +871073600667549697 +871073606187221053 +871073620716310539 +871073614080913418 +871073606174642226 +871073613137207376 +871073619785187328 +871073613959274546 +871073604828278875 +871073612386435132 +871073604421435393 +871073613850218496 +871073604035567616 +871073606761844788 +871073626340859924 +871073622167523389 +871073623341924423 +871073614370308116 +871073620665978930 +871073614991089715 +871073607214825503 +871073622977020034 +871073629054582784 +871073632426790912 +871073590185971744 +871073607000932383 +871073620108144691 +871073624281452544 +871073603276406906 +871073622486286378 +871073624310825011 +871073607932067901 +871073611987943505 +871073618208129054 +871073613929914411 +871073605943963678 +871073622897360906 +871073625325854780 +871073621198659635 +871073613577609216 +871073612801646632 +871073613414031370 +871073630149312544 +871073623350341693 +871073607948836884 +871073629377552444 +871073623144816670 +871073612113784923 +871073610985533490 +871073607189667930 +871073627498483712 +871073621139922944 +871073612268970056 +871073637715804190 +871073624289845288 +871073636558184519 +871073625682366465 +871073608309551104 +871073622377259108 +871073636793073715 +871073620959588373 +871073627691429930 +871073631785066546 +871073628131852288 +871073630669402122 +871073629864099840 +871073627003564053 +871073626366042142 +871073624562499634 +871073624726073374 +871073632787505182 +871073632791691265 +871073627758559232 +871073627787890749 +871073630514208808 +871073612659048509 +871073629297840149 +871073643625590854 +871073638923771906 +871073629008457768 +871073631445340211 +871073621890699384 +871073623107063818 +871073631097204737 +871073627427184682 +871073630849740871 +871073644611239956 +871073624524718120 +871073633517326347 +871073626571546624 +871073636415574056 +871073627339112478 +871073631634092063 +871073634289086505 +871073637359296563 +871073627603341352 +871073629390110810 +871073633752219648 +871073630904270868 +871073632896581642 +871073634452652034 +871073635639627777 +871073643013234698 +871073632737165332 +871073634310041650 +871073641612337154 +871073613787304017 +871073640622477313 +871073642023387198 +871073640823783464 +871073648163844096 +871073644619644998 +871073639880085514 +871073638827327548 +871073634985345086 +871073615850909757 +871073644992933929 +871073637275406348 +871073645005512735 +871073640706359306 +871073639989149766 +871073633093693491 +871073642824499201 +871073651162771507 +871073648058978315 +871073633022390272 +871073650516836472 +871073649581506630 +871073642925146212 +871073639221571645 +871073639108325376 +871073645592727582 +871073647010394203 +871073640882507786 +871073647148810350 +871073647194951692 +871073642493120522 +871073643596218390 +871073647270432788 +871073654237184011 +871073649187254333 +871073650453909546 +871073641545207860 +871073647064907846 +871073642035961856 +871073655365455902 +871073654866346054 +871073654560149534 +871073662353150022 +871073647966695484 +871073646972645427 +871073632963682304 +871073635169894420 +871073643415875654 +871073646649692200 +871073646062493736 +871073651078889483 +871073639292883025 +871073649329836112 +871073653255725166 +871073649598275615 +871073657592627313 +871073655642288158 +871073650235805746 +871073647450808350 +871073648465817611 +871073649497620503 +871073656569229333 +871073660952272937 +871073659375222795 +871073670133600266 +871073660507684934 +871073659320692756 +871073657412259890 +871073647048159363 +871073656489525268 +871073654195241011 +871073649858347018 +871073658423111701 +871073670343311380 +871073668762058833 +871073670280400896 +871073650546204712 +871073659509424169 +871073672520142859 +871073677465239553 +871073671450615858 +871073657349353512 +871073658569916457 +871073674290143353 +871073666572632104 +871073661317156885 +871073665368854529 +871073673883316294 +871073671119253504 +871073662265094204 +871073657772998667 +871073679176515644 +871073662705491968 +871073673560354846 +871073677989523456 +871073670200717312 +871073671656140903 +871073654170079233 +871073664156708884 +871073668485246976 +871073674118176828 +871073666178355200 +871073670141968414 +871073655713583144 +871073651506675712 +871073678857744474 +871073654509805628 +871073646582591488 +871073666664890428 +871073657374511134 +871073664429350963 +871073672784392272 +871073665876394024 +871073672717287434 +871073679063285821 +871073666056728596 +871073679788867665 +871073681902817330 +871073672935407667 +871073672926990336 +871073678853570641 +871073673430319124 +871073646968438854 +871073662109888552 +871073672742449222 +871073679428173884 +871073666681671680 +871073662990700564 +871073679595946064 +871073681600831549 +871073672700510232 +871073671597391923 +871073678786461707 +871073678924853288 +871073672922820629 +871073673640026113 +871073679356874812 +871073679038119937 +871073679474319400 +871073671857451038 +871073679537213502 +871073667264675870 +871073681521127475 +871073685165994045 +871073665951883265 +871073678115364896 +871073682334826527 +871073679709188096 +871073659601711186 +871073657739423785 +871073662885822464 +871073679436578856 +871073662688694332 +871073681730838568 +871073683513425991 +871073690371121173 +871073673220620358 +871073655700979813 +871073689683230750 +871073687846154260 +871073682167070791 +871073674118201375 +871073679327498312 +871073683937046578 +871073688471081021 +871073686218739772 +871073643453620275 +871073675443568670 +871073683618291762 +871073684369072128 +871073686378127400 +871073687137321020 +871073682729095198 +871073682905251850 +871073689305747497 +871073675619754054 +871073678270558219 +871073674390806551 +871073674877341747 +871073682934595734 +871073682888482827 +871073683345653792 +871073677922422806 +871073687409946644 +871073691822354523 +871073674839617556 +871073686864666704 +871073692174671942 +871073679314939974 +871073678794838077 +871073684784300104 +871073686873059408 +871073686784987178 +871073683668598815 +871073692006883399 +871073683219808266 +871073685514125323 +871073690924757022 +871073682221584445 +871073695353962517 +871073684801093722 +871073686063562842 +871073695634964550 +871073685442822145 +871073686080331816 +871073685186969610 +871073682158682183 +871073684641693706 +871073685895782430 +871073696306065439 +871073685342142494 +871073695710449666 +871073680866811905 +871073696125685781 +871073695865667604 +871073685438595072 +871073685228892190 +871073695953731595 +871073684452954172 +871073697908273153 +871073697878925352 +871073696616431616 +871073698331893791 +871073695689490492 +871073696272498798 +871073697438519356 +871073678199242814 +871073687598673920 +871073696578687027 +871073703633502218 +871073703469924463 +871073688194277386 +871073695202963457 +871073687384752129 +871073689297362994 +871073707148320809 +871073688290725899 +871073701901258802 +871073704908566559 +871073698398998538 +871073696935202816 +871073695928561684 +871073697555959849 +871073686415872000 +871073696062791770 +871073690635354162 +871073697534992474 +871073700378730506 +871073704128430130 +871073695915999264 +871073690786332682 +871073702815608893 +871073695500738581 +871073686533341186 +871073709157396502 +871073697212031067 +871073699732815872 +871073698579370024 +871073700982689892 +871073699023958066 +871073681667948574 +871073693130948648 +871073697778237471 +871073688651436163 +871073700319993866 +871073706259144704 +871073690689892362 +871073698738761788 +871073718498099240 +871073710315020328 +871073699023970414 +871073697983758377 +871073696071176202 +871073695588814919 +871073690492760144 +871073709602009138 +871073709576847391 +871073691369369621 +871073710122106892 +871073697467879446 +871073697019076628 +871073709216104478 +871073698885562448 +871073710025621504 +871073667738632232 +871073692464078849 +871073700789760041 +871073708175945730 +871073708524044321 +871073698709385276 +871073712022093844 +871073710797389894 +871073705206366229 +871073711338434580 +871073716023484482 +871073691377754123 +871073712839987260 +871073684301971486 +871073695999881276 +871073717407612928 +871073714819706951 +871073717915103232 +871073711921446922 +871073694934528051 +871073710839324712 +871073710617030716 +871073709987856464 +871073714714857474 +871073713423024128 +871073716673601597 +871073718288408636 +871073712051458088 +871073718481350726 +871073720733683722 +871073713095839805 +871073719534108684 +871073720041607198 +871073719425044510 +871073720079355934 +871073720695930972 +871073717223034890 +871073714299625512 +871073712198270976 +871073720624631808 +871073710692499588 +871073697253965824 +871073721480265768 +871073713573990461 +871073725301280830 +871073717831204915 +871073713272012830 +871073715436265513 +871073722721783849 +871073720549122119 +871073728191135785 +871073722352681020 +871073691943972995 +871073722537222155 +871073717743128576 +871073711967567892 +871073720427487303 +871073700026388493 +871073699267227718 +871073716874919976 +871073709929168977 +871073725322244126 +871073721140543528 +871073721589329920 +871073711476854825 +871073725821353984 +871073716501643305 +871073723879415879 +871073719915790396 +871073716367425538 +871073714681307168 +871073725955571762 +871073722038116403 +871073730686771251 +871073724894445639 +871073711837560882 +871073726672797767 +871073720997904414 +871073726630854687 +871073722855981107 +871073690916364398 +871073710935769118 +871073718498099290 +871073725930426408 +871073730737078272 +871073728811892736 +871073727041908796 +871073703826456616 +871073726760898601 +871073726819602452 +871073713947312218 +871073727012569138 +871073727645900800 +871073731693400186 +871073730418339840 +871073719391506542 +871073730565132388 +871073727012556820 +871073727801085965 +871073737439604736 +871073730737086514 +871073733547261982 +871073726970613790 +871073730623836181 +871073719651545110 +871073731332681750 +871073731571744768 +871073731471114240 +871073730338639994 +871073727557812226 +871073732947509300 +871073726433730560 +871073733895393291 +871073727088050217 +871073726643458099 +871073737561227315 +871073729491374180 +871073739696140288 +871073730971971614 +871073719383097365 +871073738848870432 +871073734751047730 +871073727566184508 +871073723963297852 +871073730456092703 +871073735799607367 +871073722314944563 +871073738345553970 +871073734352576512 +871073744498593893 +871073725334835220 +871073730468646975 +871073732817477723 +871073736919507036 +871073734260310067 +871073733312380988 +871073736143556638 +871073740061044756 +871073732922343474 +871073743831728138 +871073739498983475 +871073704245874769 +871073733727649852 +871073736944652340 +871073739230576710 +871073742074302525 +871073709115453461 +871073747573022781 +871073744058200064 +871073739645788161 +871073740195237939 +871073732242858004 +871073745048076289 +871073749515010090 +871073741818458204 +871073741575192586 +871073747908587530 +871073743236132895 +871073746092449802 +871073748487372920 +871073745199071263 +871073746960646195 +871073751196893215 +871073759925268501 +871073743886241903 +871073752102866954 +871073744678952992 +871073745454907392 +871073743500361738 +871073749129130024 +871073746381848577 +871073743231942656 +871073743156420628 +871073745891106906 +871073742133002312 +871073750265769984 +871073746524463154 +871073759686168657 +871073755747713034 +871073728497328199 +871073763372978186 +871073751855398933 +871073740505636864 +871073747522691104 +871073748831330315 +871073763112931380 +871073740971212800 +871073758813782096 +871073753029808208 +871073762974531674 +871073757945532426 +871073753625419816 +871073742359507004 +871073749024251967 +871073752648126485 +871073752052547626 +871073763662364743 +871073753143054356 +871073764035670027 +871073743621996554 +871073764606115850 +871073763985354813 +871073768234172567 +871073755563175967 +871073764304113744 +871073753885470721 +871073758625013760 +871073769148534864 +871073756146176020 +871073756959866881 +871073764413165588 +871073765851815948 +871073769060450304 +871073771803533345 +871073754451689492 +871073766288023602 +871073755236016140 +871073763154886657 +871073774886350848 +871073764320903269 +871073775637119056 +871073763901452319 +871073776689872943 +871073773237993513 +871073769412771911 +871073757626781716 +871073748147638312 +871073765470138388 +871073774194290688 +871073766250283038 +871073780473143386 +871073766724223006 +871073773946810368 +871073777142874133 +871073776366932029 +871073764086022154 +871073766455787561 +871073765004558336 +871073766761955379 +871073780078878752 +871073758264320020 +871073777746841670 +871073759115763782 +871073784604557342 +871073780859011102 +871073781056143461 +871073776064937985 +871073745106796595 +871073757840687115 +871073759669399593 +871073773317656607 +871073774001324033 +871073781681115166 +871073774626299956 +871073774794067968 +871073777180639253 +871073777566507008 +871073758444683295 +871073774101995591 +871073768804610090 +871073776203362355 +871073784046702612 +871073774764716072 +871073782037622824 +871073787578306590 +871073777218379796 +871073769207255171 +871073765960855554 +871073782037610527 +871073785149800448 +871073784092823602 +871073782838730752 +871073773984563221 +871073783727919104 +871073785892196352 +871073775783919646 +871073766720032808 +871073769077235802 +871073735669608522 +871073782641598515 +871073778036264992 +871073764895514654 +871073785942536202 +871073783375622184 +871073765914734662 +871073787137900616 +871073782675177533 +871073785619570738 +871073748571287552 +871073768469057598 +871073767936360478 +871073782058590211 +871073777344196678 +871073787020460113 +871073765440757770 +871073781450440704 +871073785732816938 +871073776652140595 +871073788572360715 +871073781509128192 +871073753159835678 +871073786361954385 +871073784797474876 +871073789876764792 +871073793395785788 +871073787922235433 +871073775016353832 +871073799829864489 +871073776782147664 +871073795497148446 +871073784780718150 +871073789344092192 +871073767256891483 +871073789377658921 +871073785963479150 +871073792796000337 +871073800593244190 +871073777138688001 +871073784864575558 +871073792951209984 +871073796507963502 +871073785011396608 +871073763217801257 +871073799666270208 +871073798718382090 +871073799347527690 +871073773305073665 +871073791235731516 +871073781593026593 +871073777323241472 +871073786827505704 +871073803176931389 +871073801075560490 +871073799901163550 +871073803638284358 +871073792036835349 +871073763364581447 +871073807903911986 +871073793827831868 +871073766497730660 +871073792712126495 +871073801125904394 +871073802178686976 +871073804649103440 +871073802702970920 +871073800907800656 +871073806477828197 +871073801012662342 +871073781152641104 +871073795052552302 +871073783241388162 +871073806846943233 +871073805504749608 +871073788995981383 +871073791365763122 +871073798995214396 +871073800492576849 +871073792515002379 +871073791139282964 +871073808465952818 +871073795883040880 +871073793727156274 +871073806343622658 +871073787393740911 +871073799678857256 +871073785674104832 +871073806150684713 +871073793869774848 +871073789700616252 +871073802291908679 +871073786273861722 +871073800119275550 +871073802786840667 +871073796252106802 +871073803063664660 +871073786328416326 +871073807929065514 +871073784159936523 +871073783706955857 +871073789490913341 +871073809665519677 +871073812697980938 +871073782654173184 +871073801021050930 +871073799058116608 +871073804628135977 +871073810378530846 +871073809585807410 +871073810974117898 +871073809162190899 +871073806163263528 +871073811066408980 +871073811104137277 +871073805265682483 +871073815613038612 +871073813490716722 +871073813285191731 +871073784931688518 +871073810521161749 +871073816464461867 +871073813415211068 +871073806406516796 +871073806423322694 +871073810433048596 +871073802514202705 +871073804019990579 +871073814107283516 +871073812106596492 +871073812647645256 +871073812479873105 +871073805680914432 +871073809778769921 +871073816305102878 +871073815931801600 +871073810818945034 +871073812903501884 +871073812152725525 +871073811221594152 +871073802031890442 +871073813763330048 +871073809799716875 +871073802539376650 +871073802937839648 +871073811406131220 +871073813331312760 +871073817332686878 +871073825868103731 +871073812089798697 +871073793152524359 +871073802908495902 +871073812412784680 +871073816716132353 +871073812626673714 +871073821531197440 +871073812748312637 +871073810529525770 +871073809791340634 +871073812903514182 +871073810651152464 +871073816749686894 +871073819782160425 +871073816724537466 +871073825507405865 +871073808927318057 +871073806251356190 +871073817710198794 +871073811544543243 +871073811980771328 +871073824353951804 +871073826115563552 +871073823762546748 +871073818553241600 +871073812857368597 +871073813050298369 +871073823175368714 +871073815436873729 +871073788391985172 +871073821355049051 +871073801977352243 +871073810198188153 +871073827008946196 +871073820449054730 +871073818934919209 +871073798357647360 +871073823414423553 +871073813973053450 +871073820272898088 +871073823418617887 +871073829416480809 +871073814384095233 +871073823464767498 +871073820344209458 +871073810340773908 +871073815944388659 +871073821388574830 +871073821912870972 +871073821371797554 +871073817752129546 +871073825947791371 +871073825717104700 +871073830037237771 +871073823108259841 +871073824525930606 +871073826967015454 +871073820608446494 +871073831022907434 +871073815315226664 +871073819404664872 +871073821849968711 +871073826019086418 +871073822953062411 +871073825461252126 +871073830498611280 +871073825243136051 +871073821359230986 +871073827940085760 +871073822655275038 +871073827591970818 +871073829961728040 +871073822357467197 +871073821237600277 +871073827835236372 +871073825624834188 +871073820470050836 +871073826333655040 +871073827642294392 +871073831853383731 +871073823972274237 +871073826950230027 +871073832637706270 +871073823628353650 +871073743651360828 +871073840321663056 +871073831517843467 +871073827285786664 +871073831693996032 +871073823464763432 +871073826451095552 +871073828485365801 +871073821908684830 +871073833333948426 +871073842649522247 +871073824370741289 +871073842813075567 +871073842171379722 +871073839247945740 +871073834084761681 +871073830888693832 +871073836936871956 +871073841735139349 +871073834265108481 +871073836311912509 +871073842402041866 +871073836416782356 +871073838195175444 +871073841466707998 +871073847682666517 +871073840464277574 +871073817286574160 +871073836525821992 +871073822189690901 +871073832788709396 +871073844109115412 +871073841189904435 +871073842825658368 +871073830599290880 +871073837964468234 +871073827071864873 +871073830746062869 +871073823657697381 +871073835116560384 +871073836647456779 +871073833745006613 +871073839419908096 +871073847045132308 +871073857040167002 +871073849645604956 +871073856633319465 +871073848194367530 +871073852086689842 +871073846738944082 +871073854741696532 +871073857396670504 +871073846873182279 +871073827893944352 +871073844297891882 +871073845879119932 +871073847422636052 +871073845249998890 +871073841697402900 +871073847300997161 +871073846558588988 +871073847871406202 +871073839805763664 +871073845510021160 +871073855328907264 +871073852745211974 +871073852183162941 +871073851465945138 +871073851839217746 +871073852153806918 +871073851180732416 +871073847733002281 +871073856830464030 +871073845132533811 +871073851931517008 +871073851797274645 +871073849607852133 +871073861062512670 +871073850853560421 +871073853361770496 +871073846374043670 +871073857564459018 +871073868935213117 +871073847246463046 +871073869681811466 +871073860039086130 +871073861834272799 +871073859040837662 +871073852678094889 +871073846206267402 +871073852355125309 +871073858042601542 +871073861561626675 +871073849893072946 +871073854183841882 +871073867152637962 +871073860781506591 +871073845589733416 +871073847208734792 +871073861205110804 +871073847695253504 +871073872777195610 +871073860924088343 +871073859305095208 +871073859854544916 +871073873158893599 +871073864443117599 +871073860253020180 +871073846759919627 +871073862920568893 +871073872907206656 +871073859091197982 +871073863478435840 +871073863763648553 +871073849230381076 +871073873028841482 +871073860924092466 +871073841370243093 +871073867089707028 +871073859984584747 +871073863230976040 +871073857438642216 +871073860609515580 +871073863629410335 +871073873515405342 +871073865588166787 +871073861872001075 +871073859795820564 +871073863549734922 +871073859309281281 +871073877005058068 +871073870147383357 +871073877302837298 +871073868767453184 +871073866410246164 +871073868113125488 +871073866691268629 +871073875901964349 +871073873582493746 +871073863302270987 +871073851109437450 +871073875709009962 +871073873930633257 +871073882285670461 +871073876367519794 +871073873561526373 +871073877109923861 +871073876178792469 +871073873569914890 +871073878045245490 +871073864048848946 +871073847040954408 +871073877164453928 +871073860953460806 +871073867660144680 +871073882440867850 +871073874639454218 +871073865059676200 +871073884739338240 +871073876350730250 +871073854137729034 +871073877126701058 +871073884059893810 +871073865479114794 +871073882696716368 +871073876958912572 +871073885431423037 +871073885922131978 +871073689708417065 +871073866380886027 +871073882772226048 +871073875306369114 +871073887100760074 +871073884298952776 +871073884865183774 +871073872273879041 +871073883942420480 +871073885917949982 +871073866955522088 +871073885532094555 +871073887058817044 +871073882507984976 +871073875717419009 +871073886006038570 +871073889176940564 +871073887700541540 +871073874501046283 +871073883908886549 +871073884164718665 +871073895397085245 +871073883128725525 +871073883900502077 +871073896424685589 +871073892419125258 +871073892540755968 +871073885485953054 +871073873737682965 +871073892448501780 +871073882843537428 +871073894969270345 +871073886794559498 +871073892230385745 +871073895132844052 +871073893841002586 +871073889315352618 +871073886509367308 +871073885930528841 +871073896781197393 +871073894537244702 +871073872735264808 +871073891467034764 +871073876443017256 +871073893807448144 +871073895216713739 +871073879295164476 +871073886115074048 +871073875860013126 +871073885938933771 +871073898777681980 +871073879077048401 +871073892570128414 +871073897011896361 +871073893832601690 +871073886605815888 +871073879416766515 +871073892293292113 +871073884991004723 +871073893115371612 +871073896785379409 +871073887092371488 +871073901193601054 +871073893094400082 +871073901764038707 +871073897859141643 +871073893505433661 +871073887981555814 +871073887381757962 +871073897410351104 +871073887931232277 +871073889571209297 +871073880016584744 +871073900166013038 +871073900249874502 +871073888367427694 +871073900476379207 +871073896617639946 +871073879525838938 +871073892100374589 +871073893790662656 +871073902779068417 +871073896680546324 +871073893702598757 +871073886693900318 +871073895174778951 +871073902284128337 +871073887998328933 +871073892943405077 +871073895690686525 +871073896919617636 +871073893329281044 +871073903538229311 +871073886672920656 +871073906600054875 +871073901382352926 +871073907057254441 +871073913910739054 +871073905526321183 +871073901155844186 +871073901059395615 +871073905345966100 +871073900224741396 +871073908256800799 +871073913935888465 +871073904112832532 +871073904184156290 +871073910957936742 +871073903538241637 +871073905178210374 +871073896772825168 +871073907707355186 +871073892561748058 +871073902141517884 +871073896852496416 +871073904041549844 +871073901449461760 +871073904322576445 +871073903617908777 +871073902657437699 +871073900132462664 +871073900354764800 +871073904578396220 +871073904947515443 +871073906772025354 +871073903122980904 +871073885087477761 +871073909104082974 +871073909028569139 +871073919845683290 +871073891504771152 +871073893740318731 +871073887213985823 +871073913919139861 +871073876476583946 +871073902078615613 +871073909380902912 +871073896919597126 +871073907350835230 +871073907967426620 +871073896810561546 +871073908479131709 +871073907820621854 +871073905366937670 +871073904653893642 +871073905018822656 +871073907757707344 +871073915261288539 +871073901948575784 +871073915638796298 +871073903232028713 +871073918063108156 +871073905379528714 +871073896462417990 +871073906419699724 +871073907623460875 +871073914976108594 +871073900606418964 +871073915038998538 +871073903630487594 +871073901109727263 +871073905442451496 +871073919254294568 +871073902170894436 +871073916347617310 +871073903991214111 +871073907468300399 +871073911121514536 +871073904154787900 +871073916527972382 +871073895715848202 +871073901483016262 +871073906151284778 +871073926330073159 +871073916574134302 +871073902829391883 +871073917740154910 +871073918532878347 +871073914770579477 +871073922056077382 +871073900505755689 +871073918277013564 +871073919090716674 +871073919786942514 +871073918092476509 +871073917899518052 +871073904616157274 +871073921129132113 +871073923125612614 +871073931518423080 +871073904058318889 +871073900669309019 +871073912484667404 +871073920743243796 +871073921691172905 +871073927424802846 +871073905866067990 +871073924744642630 +871073879584550983 +871073915898826764 +871073920244137994 +871073921443725312 +871073921267556372 +871073876392697878 +871073919333957642 +871073924023210064 +871073926321688608 +871073923448598529 +871073921863155752 +871073917211656192 +871073919728230400 +871073924367151104 +871073928540475432 +871073928863420417 +871073930448871465 +871073928523685918 +871073929261875240 +871073930356621343 +871073920936202250 +871073925189226578 +871073921502412810 +871073916553166929 +871073939324014662 +871073923398254623 +871073921905086534 +871073926548185089 +871073931816239164 +871073933980467230 +871073932239847476 +871073929098330184 +871073882260533259 +871073930083987467 +871073933556862996 +871073932126597201 +871073929278681178 +871073928242679809 +871073906239348768 +871073932634099712 +871073926481063966 +871073931161919529 +871073924924973066 +871073926497845308 +871073913977847859 +871073933502349332 +871073933879803904 +871073927194099732 +871073922047700992 +871073939747635220 +871073930146902016 +871073936320909382 +871073935716913212 +871073938048962601 +871073895497744404 +871073948727640115 +871073939617644554 +871073946131394571 +871073934408302602 +871073929454833755 +871073930620829706 +871073932692848661 +871073935087767612 +871073937390448701 +871073935129735199 +871073937382055937 +871073918797111376 +871073935075180544 +871073933984694342 +871073948962529280 +871073930163662883 +871073950518620180 +871073935045828688 +871073940909482045 +871073957757980732 +871073951839834212 +871073939714089060 +871073931774275615 +871073951256809502 +871073933271654430 +871073939055587399 +871073948647972884 +871073941668638751 +871073926560755722 +871073950132752404 +871073940708139109 +871073956638109696 +871073943375740968 +871073932810268732 +871073941966454804 +871073951579779122 +871073953769226290 +871073954503217152 +871073944239738913 +871073942226497586 +871073949214179369 +871073952397664277 +871073950929678397 +871073957502144562 +871073960069054565 +871073936132173825 +871073941903536129 +871073956214505502 +871073939038801981 +871073954943606905 +871073962426241095 +871073948954148884 +871073950715760670 +871073952229883964 +871073944751468557 +871073954004099082 +871073958940774550 +871073955887321189 +871073936945856512 +871073961860026419 +871073944097148929 +871073951516868638 +871073957023989821 +871073956868808724 +871073960786284576 +871073957862866974 +871073939340800041 +871073949973373039 +871073937705037854 +871073956440973322 +871073957686689802 +871073967845298197 +871073966289203220 +871073956201906237 +871073952880013332 +871073943270879242 +871073960232648754 +871073957548273755 +871073962556276777 +871073948585050202 +871073957846085732 +871073951256838165 +871073961180540998 +871073960928874496 +871073951978229770 +871073954255732776 +871073960261980160 +871073956872982618 +871073965504860200 +871073955535011921 +871073959498620978 +871073956474519602 +871073962052964382 +871073963353178173 +871073962455597107 +871073962371739799 +871073957904797708 +871073954792607775 +871073961889394698 +871073963449651311 +871073937822462003 +871073950111793202 +871073962275250226 +871073963030249504 +871073958689124383 +871073943426043976 +871073969975992371 +871073965005754459 +871073963076378676 +871073962875060235 +871073969757909032 +871073958416515112 +871073965718794260 +871073958429069332 +871073966972891137 +871073968004669523 +871073967845290075 +871073965173514290 +871073970277978143 +871073979400585237 +871073969506242571 +871073964900900944 +871073962103296021 +871073961209892935 +871073968566706186 +871073968851914752 +871073977458651166 +871073939961557032 +871073972865892362 +871073967954337792 +871073963952967711 +871073957325975634 +871073960433967205 +871073968969383967 +871073971263651870 +871073958601064448 +871073974312923199 +871073955757318144 +871073976691068948 +871073973524394034 +871073969246195752 +871073945573527612 +871073960824045638 +871073967056764941 +871073955031707668 +871073977106333777 +871073965215481876 +871073983120961587 +871073986501570610 +871073968113733663 +871073982990917642 +871073966373109792 +871073966050136124 +871073976892391424 +871073986677714994 +871073973734113341 +871073984366645279 +871073977177628743 +871073991425675315 +871073962065555476 +871073983276134461 +871073977634787370 +871073985239085107 +871073992159666186 +871073970823237682 +871073967933390878 +871073993883521085 +871073983062237225 +871073970458357800 +871073979035705446 +871073989655662662 +871073971540459540 +871073967094501377 +871073993086623764 +871073943568674906 +871073994592387153 +871073966868009051 +871073995502530600 +871073991668936754 +871073981799759892 +871073972928778330 +871073991534723145 +871073991589257266 +871073995334774824 +871073986254086227 +871073954746490880 +871073981476798524 +871073972454826074 +871073974438735904 +871073980436606986 +871073976422653962 +871073966519898143 +871073979648073760 +871073977894862858 +871073978205224981 +871073973910253568 +871073978779828355 +871073993489268737 +871073980554047498 +871073992658808833 +871073989445951539 +871073980528865340 +871073992197423164 +871073996609843260 +871073992520388698 +871073988049260565 +871073988711968768 +871073988279926834 +871073965118988288 +871073979211841546 +871073975265017876 +871074001466830868 +871073993510240256 +871073997037658113 +871073982315626526 +871073974224846858 +871074000384704542 +871073967597846578 +871073980788920360 +871073984094036000 +871074000133062697 +871073969367810119 +871073979631276043 +871073987260719105 +871073996790173766 +871073998472089670 +871073967560069140 +871073998358839347 +871073999680049172 +871074000904798248 +871074001814974586 +871074000447619112 +871073992184840212 +871073996492386354 +871074003865985124 +871074001840136263 +871074009763155978 +871073999390662657 +871074004356710411 +871073996236541972 +871074004713222194 +871074000208531506 +871074006793609237 +871073995049553951 +871073997956190249 +871073999583608923 +871073998493085697 +871073997364822117 +871074006135078942 +871073998551810068 +871074007515021403 +871073996211367986 +871073999004794921 +871074004545454140 +871074000246304868 +871074016004309013 +871074000179191848 +871074003069046834 +871074010568466503 +871074002536398978 +871074006768435210 +871074001991110677 +871073997327044670 +871074014515314748 +871074011499618386 +871074004142784544 +871074001701707827 +871074006252523530 +871074022086017104 +871074014049742858 +871074000305025044 +871074013986816020 +871074009289224212 +871074005602426950 +871074001575895041 +871074012200075264 +871074016872521758 +871074007351443466 +871074004516094012 +871074020622221344 +871074013609336853 +871074001974345728 +871074015329026109 +871074013638709258 +871074013550641193 +871074017241624617 +871074021389774848 +871074012875358308 +871074003794690068 +871074011734474822 +871074011306655804 +871074015727452180 +871073996022636615 +871074011503812648 +871074015626821652 +871074016125931541 +871074015752630273 +871074021368799273 +871074026720727070 +871074011835142144 +871074004822278164 +871074005044576266 +871074017199673384 +871073996391710740 +871074019099676733 +871074010216148993 +871074004818079765 +871074020009857054 +871074014456610846 +871074000657350727 +871073907342471260 +871074017493274624 +871074014423048242 +871074004562214942 +871074000854454283 +871074013756133387 +871074022438350878 +871074029757411328 +871074024824909924 +871074015349981185 +871074022237024327 +871074022476116019 +871074004977451028 +871074024137039883 +871074024531316840 +871074021532377108 +871074026016096306 +871074023537250304 +871074025584082994 +871074022127980554 +871074026473283585 +871074022077644810 +871074023499505664 +871074019791732836 +871074025324036157 +871074025303072799 +871074017497452564 +871074022404800512 +871074025303060510 +871074027823829073 +871074028029370368 +871074004436402237 +871074021171691542 +871074029681922080 +871074026842390548 +871074027651874857 +871074031258992670 +871074027920293888 +871074026368417873 +871074013760348180 +871074034123698206 +871074031212826694 +871074029497360415 +871074028020961321 +871074032999624775 +871074031342874674 +871074025646993419 +871074029111496794 +871074029543489577 +871074032726986822 +871074021981184031 +871074034832539658 +871074025357602876 +871074027798659102 +871074026641051668 +871074007062032415 +871073979945865266 +871074025558921267 +871074034635395132 +871073983716528138 +871074029149241375 +871074035830763570 +871074039949574144 +871074035050627103 +871074037063893022 +871074038045376523 +871074040465490022 +871074038250897428 +871074037789511740 +871074038531887214 +871074039551107092 +871074022010552371 +871074034677346365 +871074042055102504 +871074034937397248 +871074038867431474 +871074036342464513 +871074038104076358 +871074041681809408 +871074004205711361 +871074052465377351 +871074035348414514 +871074040385773589 +871074041937682532 +871074040058609715 +871074035142893609 +871074037399420979 +871074030998925322 +871074037311344671 +871074040868118528 +871074038116655164 +871074031980392529 +871074043594432512 +871074051290972212 +871074036157915186 +871074050238205963 +871074040926834778 +871074038787735583 +871074052821905499 +871074045221814282 +871074046454923316 +871074034912211005 +871074051693608980 +871074052641525790 +871074039811149877 +871074041434357791 +871074054025654282 +871074040490623016 +871074035725910016 +871074043321802762 +871074052805111858 +871074052343730246 +871074045926461440 +871074053128073237 +871074029602230323 +871074055204261938 +871074051618123797 +871074055032287292 +871074051873964072 +871074053753024572 +871074052561862718 +871074045326655558 +871074042260619284 +871074034836717678 +871074034786377828 +871074056915525672 +871074052255658014 +871074051764945039 +871074058811363429 +871074054654816286 +871074050460495972 +871074038938746951 +871074053019021323 +871074059406962768 +871074055862759465 +871074035272925215 +871074056743567440 +871074045037252630 +871074065446739988 +871074055854358558 +871074059981582406 +871074065442562091 +871074064926658601 +871074066558242826 +871074052532502548 +871074044198420501 +871074065291542558 +871074060514250842 +871074043179175998 +871074056626130954 +871074055468482571 +871074055715962890 +871074040704544798 +871074053237121044 +871074061965479946 +871074066440802354 +871074070127591515 +871074066457567234 +871074052444414002 +871074070408593489 +871074060065468478 +871074069712339024 +871074039031033866 +871074057389498418 +871074070060494849 +871074067732647966 +871074074678407228 +871074066092658738 +871074057464983572 +871074067883630623 +871074069062225921 +871074075315945512 +871074065757122590 +871074071255851088 +871074061793513553 +871074079594135593 +871074072677724170 +871074066017173544 +871074070916128768 +871074055044861972 +871074069389402123 +871074052159205376 +871074059536957500 +871074061428600923 +871074076461006928 +871074077257912330 +871074074955243531 +871074077853507615 +871074062607220828 +871074080084873216 +871074083926843473 +871074067036393473 +871074077916397609 +871074069951434852 +871074080504299621 +871074082412699659 +871074078730117200 +871074084757311548 +871074076985294908 +871074080537837579 +871074080302960650 +871074070316335104 +871074080617549924 +871074069158715453 +871074068869308428 +871074080231686155 +871074081712275467 +871074072430276639 +871074068638605363 +871074087978553354 +871074088922275850 +871074071541080085 +871074079719952514 +871074087647199302 +871074077174034472 +871074087559118968 +871074084765720576 +871074088297300051 +871074091845693470 +871074087269695539 +871074090901975092 +871074092147679242 +871074086531530812 +871074087898873878 +871074091052974101 +871074091933773824 +871074094064476201 +871074090671276062 +871074091757621289 +871074092902670376 +871074094630703154 +871074090163798076 +871074096727859230 +871074071583014913 +871074056571588699 +871074072132468797 +871074096195182623 +871074095851266098 +871074093699563583 +871074094068695050 +871074102029479940 +871074087663960084 +871074096132272139 +871074079673843793 +871074098896318515 +871074079682232400 +871074086825123932 +871074099118637086 +871074102276935710 +871074102021070858 +871074088410574928 +871074091724079134 +871074099106033705 +871074101333217390 +871074099730993233 +871074097734512691 +871074108408991825 +871074098338463776 +871074106630619156 +871074106601242694 +871074103497465867 +871074087609434122 +871074109755387915 +871074097520603176 +871074108736163841 +871074102553767936 +871074100624363541 +871074094907555923 +871074102658596944 +871074107263954976 +871074110204158024 +871074092177043477 +871074101513551893 +871074108622909440 +871074100129460244 +871074097336045568 +871074110195777537 +871074112787857489 +871074097851945000 +871074110405480549 +871074114440405022 +871074067808141354 +871074096841121852 +871074101865889843 +871074112657846324 +871074114436202526 +871074100456607844 +871074112586534913 +871074113219854416 +871074100817317889 +871074109897977936 +871074110975914006 +871074101215780864 +871074114738212885 +871074111500222484 +871074113396019270 +871074113224065104 +871074102583128115 +871074116701138974 +871074117103788082 +871074114503344179 +871074119062552587 +871074118995419147 +871074100334977075 +871074118009753720 +871074108648095754 +871074117418365019 +871074121323266089 +871074114713047050 +871074119846887455 +871074117405773855 +871074119251275866 +871074122258612264 +871074119670702141 +871074123479154718 +871074126666817546 +871074119163191356 +871074126285115393 +871074121692348500 +871074120010461224 +871074109625352223 +871074124896821298 +871074125353988096 +871074127333720074 +871074108669067264 +871074126599688262 +871074120115318795 +871074123856617492 +871074124917784677 +871074125093933087 +871074129212764201 +871074122589929563 +871074125718904973 +871074126884917329 +871074127467917342 +871074114679480320 +871074129846083584 +871074130164871179 +871074112959832084 +871074112276160582 +871074113203085342 +871074131486056458 +871074126717145098 +871074130684940298 +871074129397288961 +871074130739482674 +871074127350489108 +871074130617856010 +871074131343462471 +871074132127784973 +871074131125346336 +871074128281624578 +871074135101567046 +871074126721318963 +871074116051034162 +871074127501479966 +871074118563397712 +871074125672751125 +871074132824051723 +871074134292049970 +871074131045646390 +871074120920604793 +871074134057173053 +871074128952709180 +871074136041095178 +871074130571714571 +871074136611520523 +871074132769533963 +871074131947433986 +871074133927137301 +871074136519241748 +871074124938760212 +871074142819078255 +871074136133349397 +871074143532093461 +871074136758317107 +871074143213334590 +871074136980590692 +871074135378370561 +871074138104676374 +871074146073845760 +871074137534251038 +871074135332225054 +871074129078546432 +871074144731680820 +871074143473397870 +871074146698813440 +871074141418168362 +871074131905486979 +871074149282484234 +871074128927526983 +871074148372316171 +871074144933011456 +871074147709644830 +871074133922959421 +871074149504782366 +871074131095982161 +871074146405204009 +871074149387358249 +871074145293725746 +871074146740736010 +871074146933694524 +871074147986464778 +871074147474739273 +871074148414271531 +871074149282496532 +871074149374787684 +871074146900115457 +871074116092969060 +871074151815852102 +871074150297522187 +871074148879839283 +871074150175875072 +871074147957096449 +871074149496418407 +871074155905314846 +871074152923148338 +871074149110513724 +871074155519418409 +871074149357994035 +871074158442872843 +871074137886556160 +871074158283460639 +871074155603324989 +871074148959539200 +871074155813040189 +871074136812830730 +871074152415629323 +871074157654335550 +871074156228280350 +871074158581284904 +871074160204468356 +871074157243301928 +871074148376530944 +871074162628767784 +871074148980494436 +871074161722806283 +871074150435946556 +871074158082129961 +871074146900135956 +871074164679794709 +871074165912911984 +871074166370078740 +871074160003129365 +871074161903165500 +871074160506454047 +871074166906974278 +871074158023430224 +871074158656757802 +871074162855247944 +871074163853512735 +871074167561285663 +871074159294308382 +871074157692076043 +871074154919653437 +871074145260171315 +871074167565475842 +871074152226893824 +871074166915358782 +871074172657369110 +871074162788139068 +871074153057370152 +871074169784238130 +871074162599419954 +871074159327842356 +871074176889389187 +871074167213158492 +871074170086227969 +871074170363084820 +871074169687789639 +871074175513681940 +871074177728249916 +871074178340630608 +871074169092202516 +871074169188679731 +871074168307855381 +871074168769224744 +871074174217641994 +871074159348813875 +871074164625252362 +871074179372417075 +871074174473502721 +871074174876155966 +871074179720577097 +871074170627326002 +871074166768545843 +871074166953111582 +871074177656950784 +871074161307570267 +871074176818089995 +871074175580790794 +871074178604863559 +871074178927820801 +871074169582936134 +871074177623396362 +871074172070154240 +871074178428731443 +871074183289896982 +871074162691698708 +871074183336038470 +871074185303183440 +871074181037584414 +871074181293441074 +871074185043148850 +871074181129834526 +871074180949508137 +871074183675781224 +871074179519221770 +871074179825405993 +871074181461196891 +871074180559437864 +871074191066148905 +871074167590637619 +871074169444515920 +871074183742881822 +871074184527237150 +871074159592112198 +871074183835177081 +871074184078458890 +871074184602734623 +871074174335090738 +871074184904716329 +871074186028802048 +871074188331479061 +871074181192769657 +871074187731697686 +871074185999421440 +871074178520997959 +871074187224166502 +871074180391632957 +871074185986859118 +871074189526839356 +871074185114452059 +871074184883765269 +871074186217525248 +871074183050838126 +871074189711396944 +871074180731392110 +871074180911755274 +871074184120377464 +871074170807676948 +871074183168270336 +871074187240939560 +871074190462165072 +871074191489789982 +871074169373229077 +871074190890004492 +871074187861708900 +871074190135009320 +871074183851950100 +871074177531142195 +871074190667706378 +871074188872523827 +871074168869883904 +871074189094846464 +871074194450972703 +871074193100398662 +871074187052191794 +871074182673346611 +871074194786492456 +871074189774303292 +871074196724281374 +871074192668381244 +871074193175875584 +871074201325424660 +871074180194517103 +871074179468906537 +871074191242330152 +871074201644187648 +871074196086718496 +871074203103793213 +871074201136685167 +871074179473088572 +871074189648490537 +871074195541463091 +871074180962070608 +871074191330381935 +871074169226420264 +871074181020807238 +871074186951553057 +871074198070648832 +871074193012322425 +871074202818596950 +871074185819086910 +871074196774596608 +871074189124194335 +871074193574334465 +871074180001566772 diff --git a/benches/parsing.rs b/benches/parsing.rs new file mode 100644 index 0000000..035480a --- /dev/null +++ b/benches/parsing.rs @@ -0,0 +1,14 @@ +use codspeed_criterion_compat::{black_box, criterion_group, criterion_main, Criterion}; +use beemo_join_time_diff::parse_join_dates; + +pub fn parse_join_dates_benchmark(c: &mut Criterion) { + // 13,518 accounts: https://logs.beemo.gg/antispam/xKbSJMc7n5X1 + let text = include_str!("log_data.txt"); + + c.bench_function("parse_join_dates", |b| { + b.iter(|| parse_join_dates(black_box(&text))) + }); +} + +criterion_group!(benches, parse_join_dates_benchmark); +criterion_main!(benches);